mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
69 lines
2.6 KiB
Diff
69 lines
2.6 KiB
Diff
From 59a447e856db9a2c8312d617a6a4f89a629d1bff Mon Sep 17 00:00:00 2001
|
|
From: Hector Martin <marcan@marcan.st>
|
|
Date: Tue, 21 Dec 2021 17:27:19 +0900
|
|
Subject: [PATCH 090/171] brcmfmac: of: Fetch Apple properties
|
|
|
|
On Apple ARM64 platforms, firmware selection requires two properties
|
|
that come from system firmware: the module-instance (aka "island", a
|
|
codename representing a given hardware platform) and the antenna-sku.
|
|
We map Apple's module codenames to board_types in the form
|
|
"apple,<module-instance>".
|
|
|
|
The mapped board_type is added to the DTS file in that form, while the
|
|
antenna-sku is forwarded by our bootloader from the Apple Device Tree
|
|
into the FDT. Grab them from the DT so firmware selection can use
|
|
them.
|
|
|
|
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
|
|
Signed-off-by: Hector Martin <marcan@marcan.st>
|
|
---
|
|
.../wireless/broadcom/brcm80211/brcmfmac/common.h | 1 +
|
|
.../net/wireless/broadcom/brcm80211/brcmfmac/of.c | 12 +++++++++++-
|
|
2 files changed, 12 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/common.h b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/common.h
|
|
index 15accc88d5c0..1f678bbd87aa 100644
|
|
--- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/common.h
|
|
+++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/common.h
|
|
@@ -51,6 +51,7 @@ struct brcmf_mp_device {
|
|
struct brcmfmac_pd_cc *country_codes;
|
|
const char *board_type;
|
|
unsigned char mac[ETH_ALEN];
|
|
+ const char *antenna_sku;
|
|
union {
|
|
struct brcmfmac_sdio_pd sdio;
|
|
} bus;
|
|
diff --git a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c
|
|
index 083ac58f466d..644cc48eae40 100644
|
|
--- a/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c
|
|
+++ b/drivers/net/wireless/broadcom/brcm80211/brcmfmac/of.c
|
|
@@ -64,14 +64,24 @@ void brcmf_of_probe(struct device *dev, enum brcmf_bus_type bus_type,
|
|
{
|
|
struct brcmfmac_sdio_pd *sdio = &settings->bus.sdio;
|
|
struct device_node *root, *np = dev->of_node;
|
|
+ const char *prop;
|
|
int irq;
|
|
int err;
|
|
u32 irqf;
|
|
u32 val;
|
|
|
|
+ /* Apple ARM64 platforms have their own idea of board type, passed in
|
|
+ * via the device tree. They also have an antenna SKU parameter
|
|
+ */
|
|
+ if (!of_property_read_string(np, "brcm,board-type", &prop))
|
|
+ settings->board_type = prop;
|
|
+
|
|
+ if (!of_property_read_string(np, "apple,antenna-sku", &prop))
|
|
+ settings->antenna_sku = prop;
|
|
+
|
|
/* Set board-type to the first string of the machine compatible prop */
|
|
root = of_find_node_by_path("/");
|
|
- if (root) {
|
|
+ if (root && !settings->board_type) {
|
|
int i;
|
|
char *board_type;
|
|
const char *tmp;
|
|
--
|
|
2.34.1
|
|
|