mirror of https://github.com/hak5/openwrt-owl.git
brcm63xx: add DT support for F5D7633
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> SVN-Revision: 43574owl
parent
d5f1dd9079
commit
218582e8ea
|
@ -0,0 +1,30 @@
|
||||||
|
/dts-v1/;
|
||||||
|
|
||||||
|
/include/ "bcm6348.dtsi"
|
||||||
|
|
||||||
|
/ {
|
||||||
|
model = "Belkin F5D7633";
|
||||||
|
compatible = "belkin,f5d7633", "brcm,bcm6348";
|
||||||
|
};
|
||||||
|
|
||||||
|
&pflash {
|
||||||
|
status = "ok";
|
||||||
|
|
||||||
|
linux,part-probe = "bcm63xxpart";
|
||||||
|
|
||||||
|
cfe@0 {
|
||||||
|
label = "CFE";
|
||||||
|
reg = <0x000000 0x020000>;
|
||||||
|
read-only;
|
||||||
|
};
|
||||||
|
|
||||||
|
linux@20000 {
|
||||||
|
label = "linux";
|
||||||
|
reg = <0x020000 0x3c0000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
nvram@3e0000 {
|
||||||
|
label = "nvram";
|
||||||
|
reg = <0x3e0000 0x020000>;
|
||||||
|
};
|
||||||
|
};
|
|
@ -202,8 +202,6 @@ define Image/Build
|
||||||
|
|
||||||
# USR 9108
|
# USR 9108
|
||||||
$(call Image/Build/CFE,$(1),96348GW-A,6348,USR9108)
|
$(call Image/Build/CFE,$(1),96348GW-A,6348,USR9108)
|
||||||
# Belkin f5d7633
|
|
||||||
$(call Image/Build/CFE,$(1),96348GW-10,6348,F5D7633)
|
|
||||||
|
|
||||||
# Inventel Livebox
|
# Inventel Livebox
|
||||||
$(call Image/Build/RedBoot,livebox)
|
$(call Image/Build/RedBoot,livebox)
|
||||||
|
@ -260,6 +258,8 @@ $(eval $(call ImageDTB,CFEDTB,A4001N1,a4001n1,963281T_TEF,6328,A4001N1,--pad 8))
|
||||||
$(eval $(call ImageDTB,CFEDTB,RG100A,rg100a,96358VW2,6358,RG100A,--block-size 0x20000 --image-offset 0x20000))
|
$(eval $(call ImageDTB,CFEDTB,RG100A,rg100a,96358VW2,6358,RG100A,--block-size 0x20000 --image-offset 0x20000))
|
||||||
# Asmax AR 1004g
|
# Asmax AR 1004g
|
||||||
$(eval $(call ImageDTB,CFEDTB,AR1004G,ar1004g,96348GW-10,6348,AR1004G))
|
$(eval $(call ImageDTB,CFEDTB,AR1004G,ar1004g,96348GW-10,6348,AR1004G))
|
||||||
|
# Belkin F5D7633
|
||||||
|
$(eval $(call ImageDTB,CFEDTB,F5D7633,f5d7633,96348GW-10,6348,F5D7633,--block-size 0x20000 --image-offset 0x20000))
|
||||||
# Comtrend AR-5381u
|
# Comtrend AR-5381u
|
||||||
$(eval $(call ImageDTB,CFEDTB,AR5381u,ar-5381u,96328A-1241N,6328,AR-5381u,--pad 8))
|
$(eval $(call ImageDTB,CFEDTB,AR5381u,ar-5381u,96328A-1241N,6328,AR-5381u,--pad 8))
|
||||||
# Comtrend AR-5387un
|
# Comtrend AR-5387un
|
||||||
|
|
|
@ -14,7 +14,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
|
||||||
|
|
||||||
--- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
--- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
||||||
+++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
+++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
||||||
@@ -736,6 +736,47 @@ static const struct board_info __initcon
|
@@ -736,6 +736,48 @@ static const struct board_info __initcon
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct of_device_id const bcm963xx_boards_dt[] = {
|
static struct of_device_id const bcm963xx_boards_dt[] = {
|
||||||
|
@ -33,6 +33,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
|
||||||
+ { .compatible = "brcm,bcm96345gw2", .data = &board_96345gw2, },
|
+ { .compatible = "brcm,bcm96345gw2", .data = &board_96345gw2, },
|
||||||
+#endif
|
+#endif
|
||||||
+#ifdef CONFIG_BCM63XX_CPU_6348
|
+#ifdef CONFIG_BCM63XX_CPU_6348
|
||||||
|
+ { .compatible = "belkin,f5d7633", .data = &board_96348gw_10, },
|
||||||
+ { .compatible = "brcm,bcm96348r", .data = &board_96348r, },
|
+ { .compatible = "brcm,bcm96348r", .data = &board_96348r, },
|
||||||
+ { .compatible = "brcm,bcm96348gw-10", .data = &board_96348gw_10, },
|
+ { .compatible = "brcm,bcm96348gw-10", .data = &board_96348gw_10, },
|
||||||
+ { .compatible = "brcm,bcm96348gw-11", .data = &board_96348gw_11, },
|
+ { .compatible = "brcm,bcm96348gw-11", .data = &board_96348gw_11, },
|
||||||
|
|
|
@ -73,6 +73,6 @@ Signed-off-by: Adrian Feliks <mexit@o2.pl>
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_BCM63XX_CPU_6348
|
#ifdef CONFIG_BCM63XX_CPU_6348
|
||||||
+ { .compatible = "asmax,ar1004g", .data = &board_96348gw_10_AR1004G, },
|
+ { .compatible = "asmax,ar1004g", .data = &board_96348gw_10_AR1004G, },
|
||||||
|
{ .compatible = "belkin,f5d7633", .data = &board_96348gw_10, },
|
||||||
{ .compatible = "brcm,bcm96348r", .data = &board_96348r, },
|
{ .compatible = "brcm,bcm96348r", .data = &board_96348r, },
|
||||||
{ .compatible = "brcm,bcm96348gw-10", .data = &board_96348gw_10, },
|
{ .compatible = "brcm,bcm96348gw-10", .data = &board_96348gw_10, },
|
||||||
{ .compatible = "brcm,bcm96348gw-11", .data = &board_96348gw_11, },
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
|
||||||
|
|
||||||
--- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
--- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
||||||
+++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
+++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
||||||
@@ -736,6 +736,47 @@ static const struct board_info __initcon
|
@@ -736,6 +736,48 @@ static const struct board_info __initcon
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct of_device_id const bcm963xx_boards_dt[] = {
|
static struct of_device_id const bcm963xx_boards_dt[] = {
|
||||||
|
@ -33,6 +33,7 @@ Signed-off-by: Jonas Gorski <jogo@openwrt.org>
|
||||||
+ { .compatible = "brcm,bcm96345gw2", .data = &board_96345gw2, },
|
+ { .compatible = "brcm,bcm96345gw2", .data = &board_96345gw2, },
|
||||||
+#endif
|
+#endif
|
||||||
+#ifdef CONFIG_BCM63XX_CPU_6348
|
+#ifdef CONFIG_BCM63XX_CPU_6348
|
||||||
|
+ { .compatible = "belkin,f5d7633", .data = &board_96348gw_10, },
|
||||||
+ { .compatible = "brcm,bcm96348r", .data = &board_96348r, },
|
+ { .compatible = "brcm,bcm96348r", .data = &board_96348r, },
|
||||||
+ { .compatible = "brcm,bcm96348gw-10", .data = &board_96348gw_10, },
|
+ { .compatible = "brcm,bcm96348gw-10", .data = &board_96348gw_10, },
|
||||||
+ { .compatible = "brcm,bcm96348gw-11", .data = &board_96348gw_11, },
|
+ { .compatible = "brcm,bcm96348gw-11", .data = &board_96348gw_11, },
|
||||||
|
|
|
@ -73,6 +73,6 @@ Signed-off-by: Adrian Feliks <mexit@o2.pl>
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_BCM63XX_CPU_6348
|
#ifdef CONFIG_BCM63XX_CPU_6348
|
||||||
+ { .compatible = "asmax,ar1004g", .data = &board_96348gw_10_AR1004G, },
|
+ { .compatible = "asmax,ar1004g", .data = &board_96348gw_10_AR1004G, },
|
||||||
|
{ .compatible = "belkin,f5d7633", .data = &board_96348gw_10, },
|
||||||
{ .compatible = "brcm,bcm96348r", .data = &board_96348r, },
|
{ .compatible = "brcm,bcm96348r", .data = &board_96348r, },
|
||||||
{ .compatible = "brcm,bcm96348gw-10", .data = &board_96348gw_10, },
|
{ .compatible = "brcm,bcm96348gw-10", .data = &board_96348gw_10, },
|
||||||
{ .compatible = "brcm,bcm96348gw-11", .data = &board_96348gw_11, },
|
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
#
|
||||||
|
# Copyright (C) 2014 OpenWrt.org
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
|
||||||
|
define Profile/F5D7633
|
||||||
|
NAME:=Belkin F5D7633
|
||||||
|
PACKAGES:=kmod-b43 wpad-mini
|
||||||
|
endef
|
||||||
|
define Profile/F5D7633/Description
|
||||||
|
Package set optimized for F5D7633.
|
||||||
|
endef
|
||||||
|
$(eval $(call Profile,F5D7633))
|
Loading…
Reference in New Issue