[openwrt/openwrt] bcm4908: fix Asus GT-AX6000 image

LEDE Commits lede-commits at lists.infradead.org
Thu Dec 1 07:20:38 PST 2022


rmilecki pushed a commit to openwrt/openwrt.git, branch openwrt-21.02:
https://git.openwrt.org/940adf4b6725f834e6fade3ed0ddbcf14c4d6ef2

commit 940adf4b6725f834e6fade3ed0ddbcf14c4d6ef2
Author: Rafał Miłecki <rafal at milecki.pl>
AuthorDate: Sat Sep 3 20:41:00 2022 +0200

    bcm4908: fix Asus GT-AX6000 image
    
    1. Include Linux DTB
    2. Add 50991 variant (seems to differ by 1 PHY we don't support yet)
    
    Signed-off-by: Rafał Miłecki <rafal at milecki.pl>
    (cherry picked from commit b8f8c6f2dd8d47216117cb5b78184531ab21dddd)
---
 target/linux/bcm4908/config-5.4                    |  2 +-
 target/linux/bcm4908/image/Makefile                |  2 +-
 target/linux/bcm4908/image/bootfs-bcm4912.its      | 35 ++++++++++++++++++++--
 ...rm64-bcmbca-add-arch-bcmbca-machine-entry.patch | 31 +++++++++++++++++++
 4 files changed, 66 insertions(+), 4 deletions(-)

diff --git a/target/linux/bcm4908/config-5.4 b/target/linux/bcm4908/config-5.4
index e051e900df..e6e40f96a9 100644
--- a/target/linux/bcm4908/config-5.4
+++ b/target/linux/bcm4908/config-5.4
@@ -1,5 +1,6 @@
 CONFIG_64BIT=y
 CONFIG_ARCH_BCM4908=y
+CONFIG_ARCH_BCMBCA=y
 CONFIG_ARCH_CLOCKSOURCE_DATA=y
 CONFIG_ARCH_DMA_ADDR_T_64BIT=y
 CONFIG_ARCH_KEEP_MEMBLOCK=y
@@ -203,7 +204,6 @@ CONFIG_QUEUED_SPINLOCKS=y
 CONFIG_RATIONAL=y
 CONFIG_RCU_NEED_SEGCBLIST=y
 CONFIG_RCU_STALL_COMMON=y
-CONFIG_REFCOUNT_FULL=y
 CONFIG_REGMAP=y
 CONFIG_REGMAP_MMIO=y
 CONFIG_RFS_ACCEL=y
diff --git a/target/linux/bcm4908/image/Makefile b/target/linux/bcm4908/image/Makefile
index aba4d377f8..a6c31d50ee 100644
--- a/target/linux/bcm4908/image/Makefile
+++ b/target/linux/bcm4908/image/Makefile
@@ -90,7 +90,7 @@ TARGET_DEVICES += asus_gt-ac5300
 define Device/asus_gt-ax6000
   DEVICE_VENDOR := Asus
   DEVICE_MODEL := GT-AX6000
-  DEVICE_DTS := broadcom/bcmbca/bcm4912-asus-gt-ax6000
+  KERNEL := kernel-bin | bootfs
   IMAGES := pkgtb
   IMAGE/pkgtb := append-rootfs | pkgtb
   SOC := bcm4912
diff --git a/target/linux/bcm4908/image/bootfs-bcm4912.its b/target/linux/bcm4908/image/bootfs-bcm4912.its
index 6f4548956c..3d671f9d00 100644
--- a/target/linux/bcm4908/image/bootfs-bcm4912.its
+++ b/target/linux/bcm4908/image/bootfs-bcm4912.its
@@ -12,9 +12,22 @@
 			data = /incbin/("${images_dir}/u-boot/u-boot-bcm4912.dtb");
 		};
 
-		fdt_GTAX6000 {
+		fdt_uboot_GTAX6000 {
 			description = "dtb";
 			data = /incbin/("${images_dir}/u-boot/GTAX6000.dtb");
+			arch = "arm64";
+			type = "flat_dt";
+			compression = "none";
+
+			hash-1 {
+				algo = "sha256";
+			};
+		};
+
+		fdt_linux_GTAX6000 {
+			description = "dtb";
+			data = /incbin/("${dts_dir}/broadcom/bcmbca/bcm4912-asus-gt-ax6000.dtb");
+			arch = "arm64";
 			type = "flat_dt";
 			compression = "none";
 
@@ -27,8 +40,26 @@
 	configurations {
 		conf_ub_GTAX6000 {
 			description = "GTAX6000";
-			fdt = "fdt_GTAX6000";
+			fdt = "fdt_uboot_GTAX6000";
+			loadables = "atf", "uboot";
+		};
+
+		conf_lx_GTAX6000 {
+			description = "BRCM 63xxx linux";
+			kernel = "kernel";
+			fdt = "fdt_linux_GTAX6000";
+		};
+
+		conf_ub_GTAX6000_50991 {
+			description = "GTAX6000_50991";
+			fdt = "fdt_uboot_GTAX6000";
 			loadables = "atf", "uboot";
 		};
+
+		conf_lx_GTAX6000_50991 {
+			description = "BRCM 63xxx linux";
+			kernel = "kernel";
+			fdt = "fdt_linux_GTAX6000";
+		};
 	};
 };
diff --git a/target/linux/bcm4908/patches-5.4/037-v5.20-0011-arm64-bcmbca-add-arch-bcmbca-machine-entry.patch b/target/linux/bcm4908/patches-5.4/037-v5.20-0011-arm64-bcmbca-add-arch-bcmbca-machine-entry.patch
new file mode 100644
index 0000000000..1b9a32e30a
--- /dev/null
+++ b/target/linux/bcm4908/patches-5.4/037-v5.20-0011-arm64-bcmbca-add-arch-bcmbca-machine-entry.patch
@@ -0,0 +1,31 @@
+From fdcd652ce2b6b819f5c4dc3cead5215c84ee6933 Mon Sep 17 00:00:00 2001
+From: William Zhang <william.zhang at broadcom.com>
+Date: Wed, 1 Jun 2022 15:56:50 -0700
+Subject: [PATCH] arm64: bcmbca: add arch bcmbca machine entry
+
+Add ARCH_BCMBCA config for Broadcom Broadband SoC chipsets
+
+Signed-off-by: William Zhang <william.zhang at broadcom.com>
+Signed-off-by: Florian Fainelli <f.fainelli at gmail.com>
+---
+ arch/arm64/Kconfig.platforms | 9 +++++++++
+ 1 file changed, 9 insertions(+)
+
+--- a/arch/arm64/Kconfig.platforms
++++ b/arch/arm64/Kconfig.platforms
+@@ -59,6 +59,15 @@ config ARCH_BCM_IPROC
+ 	help
+ 	  This enables support for Broadcom iProc based SoCs
+ 
++config ARCH_BCMBCA
++	bool "Broadcom Broadband SoC"
++	help
++	  Say Y if you intend to run the kernel on a Broadcom Broadband ARM-based
++	  BCA chipset.
++
++	  This enables support for Broadcom BCA ARM-based broadband chipsets,
++	  including the DSL, PON and Wireless family of chips.
++
+ config ARCH_BERLIN
+ 	bool "Marvell Berlin SoC Family"
+ 	select DW_APB_ICTL




More information about the lede-commits mailing list