brcmfamc: add the feature-disable property
authorJaehoon Chung <jh80.chung@samsung.com>
Fri, 27 Mar 2020 09:07:28 +0000 (18:07 +0900)
committerHoegeun Kwon <hoegeun.kwon@samsung.com>
Thu, 3 Aug 2023 08:43:59 +0000 (17:43 +0900)
Add the feature-disable property.
It will be parsed when brcmfmac is probed.
If someone want to disable some features by default, it's possible to
use this property.

Change-Id: Id9062624d5bc87055295209a329a817103fd11f5
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c

index c2d6b8a..15ed5ec 100644 (file)
@@ -101,6 +101,11 @@ void brcmf_of_probe(struct device *dev, enum brcmf_bus_type bus_type,
        if (bus_type != BRCMF_BUSTYPE_SDIO)
                return;
 
+       if (of_property_read_u32(np, "brcm,feature-disable", &val) == 0) {
+               settings->feature_disable |= val;
+               brcmf_info("Disabled feature 0x%x\n", settings->feature_disable);
+       }
+
        if (of_property_read_u32(np, "brcm,drive-strength", &val) == 0)
                sdio->drive_strength = val;