1# SPDX-License-Identifier: GPL-2.0 2menuconfig WL_ROCKCHIP 3 tristate "Rockchip Wireless LAN support" 4 select WIRELESS_EXT 5 select WEXT_PRIV 6 select CFG80211 7 select MAC80211 8 help 9 Enable compatible Wifi drivers for Rockchip platform. 10 11if WL_ROCKCHIP 12 13config WIFI_BUILD_MODULE 14 bool "build wifi ko modules" 15 default n 16 help 17 Wifi drivers will compile as ko module 18 19config WIFI_LOAD_DRIVER_WHEN_KERNEL_BOOTUP 20 bool "Wifi load driver when kernel bootup" 21 default n 22 help 23 Wifi driver will be load (use late_initcall) when kernel bootup 24 25config WIFI_GENERATE_RANDOM_MAC_ADDR 26 bool "Wifi generate random mac address and save to vendor storage for cob chip" 27 default n 28 help 29 Wifi generate random mac address and save to vendor storage for cob chip 30 31menuconfig BCMDHD 32 bool "Broadcom Wireless Device Driver Support" 33 default y 34 35if BCMDHD 36source "drivers/net/wireless/rockchip_wlan/rkwifi/Kconfig" 37endif 38 39endif # WL_ROCKCHIP 40