diff --git a/core/board_config.mk b/core/board_config.mk index d2803490f8..a0c16ca7b5 100644 --- a/core/board_config.mk +++ b/core/board_config.mk @@ -283,6 +283,8 @@ $(foreach var,$(_board_true_false_vars), \ $(if $(filter-out true false,$($(var))), \ $(error Valid values of $(var) are "true", "false", and "". Not "$($(var))"))) +include $(BUILD_SYSTEM)/board_config_wifi.mk + # Default *_CPU_VARIANT_RUNTIME to CPU_VARIANT if unspecified. TARGET_CPU_VARIANT_RUNTIME := $(or $(TARGET_CPU_VARIANT_RUNTIME),$(TARGET_CPU_VARIANT)) TARGET_2ND_CPU_VARIANT_RUNTIME := $(or $(TARGET_2ND_CPU_VARIANT_RUNTIME),$(TARGET_2ND_CPU_VARIANT)) diff --git a/core/board_config_wifi.mk b/core/board_config_wifi.mk new file mode 100644 index 0000000000..ddeb0d7d6d --- /dev/null +++ b/core/board_config_wifi.mk @@ -0,0 +1,77 @@ +# +# Copyright (C) 2022 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +# ############################################################### +# This file adds WIFI variables into soong config namespace (`wifi`) +# ############################################################### + +ifdef BOARD_WLAN_DEVICE + $(call soong_config_set,wifi,board_wlan_device,$(BOARD_WLAN_DEVICE)) +endif +ifdef WIFI_DRIVER_MODULE_PATH + $(call soong_config_set,wifi,driver_module_path,$(WIFI_DRIVER_MODULE_PATH)) +endif +ifdef WIFI_DRIVER_MODULE_ARG + $(call soong_config_set,wifi,driver_module_arg,$(WIFI_DRIVER_MODULE_ARG)) +endif +ifdef WIFI_DRIVER_MODULE_NAME + $(call soong_config_set,wifi,driver_module_name,$(WIFI_DRIVER_MODULE_NAME)) +endif +ifdef WIFI_DRIVER_FW_PATH_STA + $(call soong_config_set,wifi,driver_fw_path_sta,$(WIFI_DRIVER_FW_PATH_STA)) +endif +ifdef WIFI_DRIVER_FW_PATH_AP + $(call soong_config_set,wifi,driver_fw_path_ap,$(WIFI_DRIVER_FW_PATH_AP)) +endif +ifdef WIFI_DRIVER_FW_PATH_P2P + $(call soong_config_set,wifi,driver_fw_path_p2p,$(WIFI_DRIVER_FW_PATH_P2P)) +endif +ifdef WIFI_DRIVER_FW_PATH_PARAM + $(call soong_config_set,wifi,driver_fw_path_param,$(WIFI_DRIVER_FW_PATH_PARAM)) +endif +ifdef WIFI_DRIVER_STATE_CTRL_PARAM + $(call soong_config_set,wifi,driver_state_ctrl_param,$(WIFI_DRIVER_STATE_CTRL_PARAM)) +endif +ifdef WIFI_DRIVER_STATE_ON + $(call soong_config_set,wifi,driver_state_on,$(WIFI_DRIVER_STATE_ON)) +endif +ifdef WIFI_DRIVER_STATE_OFF + $(call soong_config_set,wifi,driver_state_off,$(WIFI_DRIVER_STATE_OFF)) +endif +ifdef WIFI_MULTIPLE_VENDOR_HALS + $(call soong_config_set,wifi,multiple_vendor_hals,$(WIFI_MULTIPLE_VENDOR_HALS)) +endif +ifneq ($(wildcard vendor/google/libraries/GoogleWifiConfigLib),) + $(call soong_config_set,wifi,google_wifi_config_lib,true) +endif +ifdef WIFI_HAL_INTERFACE_COMBINATIONS + $(call soong_config_set,wifi,hal_interface_combinations,$(WIFI_HAL_INTERFACE_COMBINATIONS)) +endif +ifdef WIFI_HIDL_FEATURE_AWARE + $(call soong_config_set,wifi,hidl_feature_aware,true) +endif +ifdef WIFI_HIDL_FEATURE_DUAL_INTERFACE + $(call soong_config_set,wifi,hidl_feature_dual_interface,true) +endif +ifdef WIFI_HIDL_FEATURE_DISABLE_AP + $(call soong_config_set,wifi,hidl_feature_disable_ap,true) +endif +ifdef WIFI_HIDL_FEATURE_DISABLE_AP_MAC_RANDOMIZATION + $(call soong_config_set,wifi,hidl_feature_disable_ap_mac_randomization,true) +endif +ifdef WIFI_AVOID_IFACE_RESET_MAC_CHANGE + $(call soong_config_set,wifi,avoid_iface_reset_mac_change,true) +endif \ No newline at end of file diff --git a/core/soong_config.mk b/core/soong_config.mk index c4a40af0c7..e975d8adc5 100644 --- a/core/soong_config.mk +++ b/core/soong_config.mk @@ -250,7 +250,7 @@ $(call add_json_map, VendorVars) $(foreach namespace,$(SOONG_CONFIG_NAMESPACES),\ $(call add_json_map, $(namespace))\ $(foreach key,$(SOONG_CONFIG_$(namespace)),\ - $(call add_json_str,$(key),$(SOONG_CONFIG_$(namespace)_$(key))))\ + $(call add_json_str,$(key),$(subst ",\",$(SOONG_CONFIG_$(namespace)_$(key)))))\ $(call end_json_map)) $(call end_json_map)