aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/patches-4.1/528-board_nb6.patch
blob: 8b491084c371b7bff72378c794c7d377e3e332ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
--- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
+++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
@@ -10,6 +10,8 @@
 #include <linux/init.h>
 #include <linux/kernel.h>
 #include <linux/string.h>
+#include <linux/platform_device.h>
+#include <linux/rtl8367.h>
 #include <asm/addrspace.h>
 #include <bcm63xx_board.h>
 #include <bcm63xx_cpu.h>
@@ -26,6 +28,9 @@
 
 #define HCS_OFFSET_128K			0x20000
 
+#define NB6_GPIO_RTL8367_SDA	18
+#define NB6_GPIO_RTL8367_SCK	20
+
 /*
  * known 3368 boards
  */
@@ -1313,6 +1318,69 @@ static struct board_info __initdata boar
 };
 #endif /* CONFIG_BCM63XX_CPU_6358 */
 
+#ifdef CONFIG_BCM63XX_CPU_6362
+static struct rtl8367_extif_config nb6_rtl8367_extif0_cfg = {
+	.mode = RTL8367_EXTIF_MODE_RGMII,
+	.txdelay = 1,
+	.rxdelay = 5,
+	.ability = {
+		.force_mode = 1,
+		.txpause = 1,
+		.rxpause = 1,
+		.link = 1,
+		.duplex = 1,
+		.speed = RTL8367_PORT_SPEED_1000,
+	},
+};
+
+static struct rtl8367_platform_data nb6_rtl8367_data = {
+	.gpio_sda	= NB6_GPIO_RTL8367_SDA,
+	.gpio_sck	= NB6_GPIO_RTL8367_SCK,
+	.extif0_cfg	= &nb6_rtl8367_extif0_cfg,
+};
+
+static struct platform_device nb6_rtl8367_device = {
+	.name		= RTL8367_DRIVER_NAME,
+	.id		= -1,
+	.dev = {
+		.platform_data	= &nb6_rtl8367_data,
+	}
+};
+
+static struct platform_device * __initdata nb6_devices[] = {
+	&nb6_rtl8367_device,
+};
+
+static struct board_info __initdata board_nb6 = {
+	.name				= "NB6",
+	.expected_cpu_id		= 0x6362,
+
+	.has_uart0			= 1,
+
+	.has_ohci0			= 1,
+	.has_ehci0			= 1,
+	.num_usbh_ports			= 2,
+
+	.has_enetsw			= 1,
+
+	.enetsw = {
+		.used_ports = {
+			[4] = {
+				.used	= 1,
+				.phy_id	= 0xff,
+				.bypass_link = 1,
+				.force_speed = 1000,
+				.force_duplex_full = 1,
+				.name	= "RGMII",
+			},
+		},
+	},
+
+	.devs = nb6_devices,
+	.num_devs = ARRAY_SIZE(nb6_devices),
+};
+#endif /* CONFIG_BCM63XX_CPU_6362 */
+
 /*
  * known 6368 boards
  */
@@ -1464,6 +1532,10 @@ static const struct board_info __initcon
 	&board_DVAG3810BN,
 #endif
 
+#ifdef CONFIG_BCM63XX_CPU_6362
+	&board_nb6,
+#endif
+
 #ifdef CONFIG_BCM63XX_CPU_6368
 	&board_96368mvwg,
 	&board_96368mvngr,
@@ -1532,6 +1604,9 @@ static struct of_device_id const bcm963x
 	{ .compatible = "t-com,spw303v", .data = &board_spw303v, },
 	{ .compatible = "telsey,cpva642", .data = &board_CPVA642, },
 #endif
+#ifdef CONFIG_BCM63XX_CPU_6362
+	{ .compatible = "sfr,nb6-ser-r0", .data = &board_nb6, },
+#endif
 #ifdef CONFIG_BCM63XX_CPU_6368
 	{ .compatible = "brcm,bcm96368mvngr", .data = &board_96368mvngr, },
 	{ .compatible = "brcm,bcm96368mvwg", .data = &board_96368mvwg, },