2020-10-04 16:00:28 +00:00
|
|
|
--- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
|
|
|
+++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
|
bcm63xx: add support for Technicolor TG582n
Technicolor TG582n has a similar PCB as the OpenWrt's ADB P.DG A4001N1
with LEDs connected to different GPIO PINs in active low configuration.
Hardware:
* Board ID: DANT-1
* SoC: Broadcom BCM6328 (rev b0) @ 320MHz, CPU BMIPS4350
* RAM DDR2: 64 Mbyte - Winbond W9751G6KB-25
* Serial flash: 16 Mbyte - MXIC MX25L6445EMI
* Ethernet: 4x Ethernet 10/100 baseT
* Wifi 2.4GHz: Broadcom Corporation BCM43227 Wireless Network Adapter (rev 30)
* LEDs: 2x Power, 1x Ethernet, 1x Broadband, 2x Wi-Fi, 2x WPS, 4x ethernet
* Buttons: 1x Reset, 1x WPS, 1x WiFi
* UART: 1x TTL 115200n8, VCC GND TX RX, on J3 connector (short R62 and R63)
Installation via CFE:
* Stock CFE has to be overwritten with a generic 6328 one that can upload
.bin images with no signature check (cfe6328_configured.bin)
* Connect a serial port to the board
* Stop the CFE boot process after power on by pressing enter
* Set static IP 192.168.2.10 and subnet mask 255.255.255.0
* Navigate to http://192.168.2.50/
* Upload the OpenWrt image file
PCB: |GPIO: |TG582n:
LED2R |488(08) |red Power
LED2G |484(04) |green Power
LED10R |486(06) |
LED13G |485(05) |green Ethernet
LED11R |494(14) |
LED14G |491(11) |green Broadband
LED5R |487(07) |red Internet
LED5G |481(01) |green Internet
LED12R |498(18) |
LED12G |499(19) |
LED6R |482(02) |red Wi-Fi
LED6G |483(03) |green Wi-Fi
LED7R |490(10) |red WPS
LED7G |489(09) |green WPS
LED4 |508(28) |ethernet port 4
LED3 |507(27) |ethernet port 3
LED9 |506(26) |ethernet port 2
LED8 |505(25) |ethernet port 1
SW3 |503(23) |key Reset
SW5 |504(24) |key WPS
SW4 |495(15) |key Wi-Fi
SW6 |493(13) |
SW1 |492(12) |
Signed-off-by: Daniele Castro <danielecastro@hotmail.it>
[Fix base-files, refresh patch]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2020-09-10 19:14:11 +00:00
|
|
|
@@ -2671,6 +2671,273 @@ static struct board_info __initdata boar
|
2020-10-04 16:00:28 +00:00
|
|
|
#endif /* CONFIG_BCM63XX_CPU_6368 */
|
|
|
|
|
|
|
|
/*
|
|
|
|
+ * known 63268/63269 boards
|
|
|
|
+ */
|
|
|
|
+#ifdef CONFIG_BCM63XX_CPU_63268
|
|
|
|
+static struct board_info __initdata board_963268bu_p300 = {
|
|
|
|
+ .name = "963268BU_P300",
|
|
|
|
+ .expected_cpu_id = 0x63268,
|
|
|
|
+
|
|
|
|
+ .has_ohci0 = 1,
|
|
|
|
+ .has_ehci0 = 1,
|
|
|
|
+ .num_usbh_ports = 1,
|
|
|
|
+
|
|
|
|
+ .has_usbd = 1,
|
|
|
|
+ .usbd = {
|
|
|
|
+ .use_fullspeed = 0,
|
|
|
|
+ .port_no = 0,
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ .has_enetsw = 1,
|
|
|
|
+ .enetsw = {
|
|
|
|
+ .used_ports = {
|
|
|
|
+ [0] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 17,
|
|
|
|
+ .name = "FE1",
|
|
|
|
+ },
|
|
|
|
+ [3] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 4,
|
|
|
|
+ .name = "GbE2",
|
|
|
|
+ },
|
|
|
|
+ [4] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 0,
|
|
|
|
+ .name = "GbE3",
|
|
|
|
+ .mii_override = 1,
|
|
|
|
+ .timing_sel = 1,
|
|
|
|
+ },
|
|
|
|
+ [5] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 1,
|
|
|
|
+ .name = "GbE1",
|
|
|
|
+ .mii_override = 1,
|
|
|
|
+ .timing_sel = 1,
|
|
|
|
+ },
|
|
|
|
+ [6] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 24,
|
|
|
|
+ .name = "GbE4",
|
|
|
|
+ .mii_override = 1,
|
|
|
|
+ .timing_sel = 1,
|
|
|
|
+ },
|
|
|
|
+ [7] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 25,
|
|
|
|
+ .name = "GbE5",
|
|
|
|
+ .mii_override = 1,
|
|
|
|
+ .timing_sel = 1,
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct board_info __initdata board_963269bhr = {
|
|
|
|
+ .name = "963269BHR",
|
|
|
|
+ .expected_cpu_id = 0x63268,
|
|
|
|
+
|
|
|
|
+ .has_pci = 1,
|
|
|
|
+ .has_ohci0 = 1,
|
|
|
|
+ .has_ehci0 = 1,
|
|
|
|
+
|
|
|
|
+ .has_enetsw = 1,
|
|
|
|
+ .enetsw = {
|
|
|
|
+ .used_ports = {
|
|
|
|
+ [0] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 1,
|
|
|
|
+ .name = "port1",
|
|
|
|
+ },
|
|
|
|
+ [1] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 2,
|
|
|
|
+ .name = "port2",
|
|
|
|
+ },
|
|
|
|
+ [2] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 3,
|
|
|
|
+ .name = "port3",
|
|
|
|
+ },
|
|
|
|
+ [3] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 4,
|
|
|
|
+ .name = "port4",
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct board_info __initdata board_BSKYB_63168 = {
|
|
|
|
+ .name = "BSKYB_63168",
|
|
|
|
+ .expected_cpu_id = 0x63268,
|
|
|
|
+
|
|
|
|
+ .has_pci = 1,
|
|
|
|
+ .has_ohci0 = 1,
|
|
|
|
+ .has_ehci0 = 1,
|
|
|
|
+ .num_usbh_ports = 2,
|
|
|
|
+
|
|
|
|
+ .has_enetsw = 1,
|
|
|
|
+ .enetsw = {
|
|
|
|
+ .used_ports = {
|
|
|
|
+ [0] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 1,
|
|
|
|
+ .name = "Port 1",
|
|
|
|
+ },
|
|
|
|
+ [1] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 2,
|
|
|
|
+ .name = "Port 2",
|
|
|
|
+ },
|
|
|
|
+ [2] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 3,
|
|
|
|
+ .name = "Port 3",
|
|
|
|
+ },
|
|
|
|
+ [3] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 4,
|
|
|
|
+ .name = "Port 4",
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct board_info __initdata board_H500s = {
|
|
|
|
+ .name = "BXK00C-1.6",
|
|
|
|
+ .expected_cpu_id = 0x63268,
|
|
|
|
+
|
|
|
|
+ .has_ohci0 = 1,
|
|
|
|
+ .has_ehci0 = 1,
|
|
|
|
+ .num_usbh_ports = 1,
|
|
|
|
+
|
|
|
|
+ .has_enetsw = 1,
|
|
|
|
+ .enetsw = {
|
|
|
|
+ .used_ports = {
|
|
|
|
+ [3] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 12,
|
|
|
|
+ .name = "WAN",
|
|
|
|
+ },
|
|
|
|
+ [4] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 0,
|
|
|
|
+ .bypass_link = 1,
|
|
|
|
+ .force_speed = 1000,
|
|
|
|
+ .force_duplex_full = 1,
|
|
|
|
+ .mii_override = 1,
|
|
|
|
+ .timing_sel = 1,
|
|
|
|
+ .name = "RGMII",
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct board_info __initdata board_VG8050 = {
|
|
|
|
+ .name = "963169P-1861N5",
|
|
|
|
+ .expected_cpu_id = 0x63268,
|
|
|
|
+
|
|
|
|
+ .has_ohci0 = 1,
|
|
|
|
+ .has_ehci0 = 1,
|
|
|
|
+ .num_usbh_ports = 2,
|
|
|
|
+
|
|
|
|
+ .has_enetsw = 1,
|
|
|
|
+ .enetsw = {
|
|
|
|
+ .used_ports = {
|
|
|
|
+ [6] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 0xff,
|
|
|
|
+ .bypass_link = 1,
|
|
|
|
+ .force_speed = 1000,
|
|
|
|
+ .force_duplex_full = 1,
|
|
|
|
+ .mii_override = 1,
|
|
|
|
+ .timing_sel = 1,
|
|
|
|
+ .name = "RGMII",
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct board_info __initdata board_VR3032u = {
|
|
|
|
+ .name = "963168M-1841N1",
|
|
|
|
+ .expected_cpu_id = 0x63268,
|
|
|
|
+
|
|
|
|
+ .has_ohci0 = 1,
|
|
|
|
+ .has_ehci0 = 1,
|
|
|
|
+ .num_usbh_ports = 1,
|
|
|
|
+
|
|
|
|
+ .has_enetsw = 1,
|
|
|
|
+ .enetsw = {
|
|
|
|
+ .used_ports = {
|
|
|
|
+ [0] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 1,
|
|
|
|
+ .name = "LAN2",
|
|
|
|
+ },
|
|
|
|
+ [1] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 2,
|
|
|
|
+ .name = "LAN3",
|
|
|
|
+ },
|
|
|
|
+ [2] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 3,
|
|
|
|
+ .name = "LAN4",
|
|
|
|
+ },
|
|
|
|
+ [3] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 4,
|
|
|
|
+ .name = "LAN1",
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static struct board_info __initdata board_vw6339gu = {
|
|
|
|
+ .name = "VW6339GU",
|
|
|
|
+ .expected_cpu_id = 0x63268,
|
|
|
|
+
|
|
|
|
+ .has_ohci0 = 1,
|
|
|
|
+ .has_ehci0 = 1,
|
|
|
|
+ .num_usbh_ports = 1,
|
|
|
|
+
|
|
|
|
+ .has_enetsw = 1,
|
|
|
|
+ .enetsw = {
|
|
|
|
+ .used_ports = {
|
|
|
|
+ [0] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 1,
|
|
|
|
+ .name = "LAN2",
|
|
|
|
+ },
|
|
|
|
+ [1] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 2,
|
|
|
|
+ .name = "LAN3",
|
|
|
|
+ },
|
|
|
|
+ [2] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 3,
|
|
|
|
+ .name = "LAN4",
|
|
|
|
+ },
|
|
|
|
+ [3] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 4,
|
|
|
|
+ .name = "LAN1",
|
|
|
|
+ },
|
|
|
|
+ [4] = {
|
|
|
|
+ .used = 1,
|
|
|
|
+ .phy_id = 7,
|
|
|
|
+ .name = "WAN",
|
|
|
|
+ .mii_override = 1,
|
|
|
|
+ .timing_sel = 1,
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+};
|
|
|
|
+#endif /* CONFIG_BCM63XX_CPU_63268 */
|
|
|
|
+
|
|
|
|
+/*
|
|
|
|
* all boards
|
|
|
|
*/
|
|
|
|
static const struct board_info __initconst *bcm963xx_boards[] = {
|
bcm63xx: add support for Technicolor TG582n
Technicolor TG582n has a similar PCB as the OpenWrt's ADB P.DG A4001N1
with LEDs connected to different GPIO PINs in active low configuration.
Hardware:
* Board ID: DANT-1
* SoC: Broadcom BCM6328 (rev b0) @ 320MHz, CPU BMIPS4350
* RAM DDR2: 64 Mbyte - Winbond W9751G6KB-25
* Serial flash: 16 Mbyte - MXIC MX25L6445EMI
* Ethernet: 4x Ethernet 10/100 baseT
* Wifi 2.4GHz: Broadcom Corporation BCM43227 Wireless Network Adapter (rev 30)
* LEDs: 2x Power, 1x Ethernet, 1x Broadband, 2x Wi-Fi, 2x WPS, 4x ethernet
* Buttons: 1x Reset, 1x WPS, 1x WiFi
* UART: 1x TTL 115200n8, VCC GND TX RX, on J3 connector (short R62 and R63)
Installation via CFE:
* Stock CFE has to be overwritten with a generic 6328 one that can upload
.bin images with no signature check (cfe6328_configured.bin)
* Connect a serial port to the board
* Stop the CFE boot process after power on by pressing enter
* Set static IP 192.168.2.10 and subnet mask 255.255.255.0
* Navigate to http://192.168.2.50/
* Upload the OpenWrt image file
PCB: |GPIO: |TG582n:
LED2R |488(08) |red Power
LED2G |484(04) |green Power
LED10R |486(06) |
LED13G |485(05) |green Ethernet
LED11R |494(14) |
LED14G |491(11) |green Broadband
LED5R |487(07) |red Internet
LED5G |481(01) |green Internet
LED12R |498(18) |
LED12G |499(19) |
LED6R |482(02) |red Wi-Fi
LED6G |483(03) |green Wi-Fi
LED7R |490(10) |red WPS
LED7G |489(09) |green WPS
LED4 |508(28) |ethernet port 4
LED3 |507(27) |ethernet port 3
LED9 |506(26) |ethernet port 2
LED8 |505(25) |ethernet port 1
SW3 |503(23) |key Reset
SW5 |504(24) |key WPS
SW4 |495(15) |key Wi-Fi
SW6 |493(13) |
SW1 |492(12) |
Signed-off-by: Daniele Castro <danielecastro@hotmail.it>
[Fix base-files, refresh patch]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2020-09-10 19:14:11 +00:00
|
|
|
@@ -2774,6 +3041,15 @@ static const struct board_info __initcon
|
2020-10-04 16:00:28 +00:00
|
|
|
&board_VR3026e,
|
|
|
|
&board_WAP5813n,
|
|
|
|
#endif /* CONFIG_BCM63XX_CPU_6368 */
|
|
|
|
+#ifdef CONFIG_BCM63XX_CPU_63268
|
|
|
|
+ &board_963268bu_p300,
|
|
|
|
+ &board_963269bhr,
|
|
|
|
+ &board_BSKYB_63168,
|
|
|
|
+ &board_H500s,
|
|
|
|
+ &board_VG8050,
|
|
|
|
+ &board_VR3032u,
|
|
|
|
+ &board_vw6339gu,
|
|
|
|
+#endif /* CONFIG_BCM63XX_CPU_63268 */
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct of_device_id const bcm963xx_boards_dt[] = {
|
bcm63xx: add support for Technicolor TG582n
Technicolor TG582n has a similar PCB as the OpenWrt's ADB P.DG A4001N1
with LEDs connected to different GPIO PINs in active low configuration.
Hardware:
* Board ID: DANT-1
* SoC: Broadcom BCM6328 (rev b0) @ 320MHz, CPU BMIPS4350
* RAM DDR2: 64 Mbyte - Winbond W9751G6KB-25
* Serial flash: 16 Mbyte - MXIC MX25L6445EMI
* Ethernet: 4x Ethernet 10/100 baseT
* Wifi 2.4GHz: Broadcom Corporation BCM43227 Wireless Network Adapter (rev 30)
* LEDs: 2x Power, 1x Ethernet, 1x Broadband, 2x Wi-Fi, 2x WPS, 4x ethernet
* Buttons: 1x Reset, 1x WPS, 1x WiFi
* UART: 1x TTL 115200n8, VCC GND TX RX, on J3 connector (short R62 and R63)
Installation via CFE:
* Stock CFE has to be overwritten with a generic 6328 one that can upload
.bin images with no signature check (cfe6328_configured.bin)
* Connect a serial port to the board
* Stop the CFE boot process after power on by pressing enter
* Set static IP 192.168.2.10 and subnet mask 255.255.255.0
* Navigate to http://192.168.2.50/
* Upload the OpenWrt image file
PCB: |GPIO: |TG582n:
LED2R |488(08) |red Power
LED2G |484(04) |green Power
LED10R |486(06) |
LED13G |485(05) |green Ethernet
LED11R |494(14) |
LED14G |491(11) |green Broadband
LED5R |487(07) |red Internet
LED5G |481(01) |green Internet
LED12R |498(18) |
LED12G |499(19) |
LED6R |482(02) |red Wi-Fi
LED6G |483(03) |green Wi-Fi
LED7R |490(10) |red WPS
LED7G |489(09) |green WPS
LED4 |508(28) |ethernet port 4
LED3 |507(27) |ethernet port 3
LED9 |506(26) |ethernet port 2
LED8 |505(25) |ethernet port 1
SW3 |503(23) |key Reset
SW5 |504(24) |key WPS
SW4 |495(15) |key Wi-Fi
SW6 |493(13) |
SW1 |492(12) |
Signed-off-by: Daniele Castro <danielecastro@hotmail.it>
[Fix base-files, refresh patch]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2020-09-10 19:14:11 +00:00
|
|
|
@@ -2890,6 +3166,14 @@ static struct of_device_id const bcm963x
|
2020-10-04 16:00:28 +00:00
|
|
|
{ .compatible = "zyxel,p870hw-51a-v2", .data = &board_P870HW51A_V2, },
|
|
|
|
#endif /* CONFIG_BCM63XX_CPU_6368 */
|
|
|
|
#ifdef CONFIG_BCM63XX_CPU_63268
|
|
|
|
+ { .compatible = "brcm,bcm963268bu-p300", .data = &board_963268bu_p300, },
|
|
|
|
+ { .compatible = "brcm,bcm963269bhr", .data = &board_963269bhr, },
|
|
|
|
+ { .compatible = "comtrend,vg-8050", .data = &board_VG8050, },
|
|
|
|
+ { .compatible = "comtrend,vr-3032u", .data = &board_VR3032u, },
|
|
|
|
+ { .compatible = "inteno,vg50", .data = &board_vw6339gu, },
|
|
|
|
+ { .compatible = "sercomm,h500-s-lowi", .data = &board_H500s, },
|
|
|
|
+ { .compatible = "sercomm,h500-s-vfes", .data = &board_H500s, },
|
|
|
|
+ { .compatible = "sky,sr102", .data = &board_BSKYB_63168, },
|
|
|
|
#endif /* CONFIG_BCM63XX_CPU_63268 */
|
|
|
|
#endif /* CONFIG_OF */
|
|
|
|
{ },
|