aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/patches-3.3/526-board_CT6373-1.patch
blob: 58b209ed38144f1aa47efa8a916ddb421956c521 (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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
--- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
+++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
@@ -51,6 +51,13 @@
 #define NB4_SPI_GPIO_CLK	6
 #define NB4_74HC64_GPIO(X)	(NB4_74X164_GPIO_BASE + (X))
 
+#define CT6373_PID_OFFSET		0xff80
+#define CT6373_74X164_GPIO_BASE	64
+#define CT6373_SPI_GPIO_MOSI	7
+#define CT6373_SPI_GPIO_CLK		6
+#define CT6373_74HC64_GPIO(X)	(CT6373_74X164_GPIO_BASE + (X))
+
+
 static struct board_info board;
 
 /*
@@ -2261,6 +2268,111 @@ static struct board_info __initdata boar
 	.num_spis = ARRAY_SIZE(nb4_spi_devices),
 };
 
+
+struct spi_gpio_platform_data ct6373_spi_gpio_data = {
+	.sck		= CT6373_SPI_GPIO_CLK,
+	.mosi		= CT6373_SPI_GPIO_MOSI,
+	.miso		= SPI_GPIO_NO_MISO,
+	.num_chipselect	= 1,
+};
+
+static struct platform_device ct6373_spi_gpio = {
+	.name = "spi_gpio",
+	.id   = 1,
+	.dev = {
+		.platform_data = &ct6373_spi_gpio_data,
+	},
+};
+
+static struct platform_device * __initdata ct6373_devices[] = {
+	&ct6373_spi_gpio,
+};
+
+const struct gen_74x164_chip_platform_data ct6373_74x164_platform_data = {
+	.base = CT6373_74X164_GPIO_BASE
+};
+
+static struct spi_board_info ct6373_spi_devices[] = {
+	{
+		.modalias = "74x164",
+		.max_speed_hz = 781000,
+		.bus_num = 1,
+		.controller_data = (void *) SPI_GPIO_NO_CHIPSELECT,
+		.mode = SPI_MODE_0,
+		.platform_data = &ct6373_74x164_platform_data
+	}
+};
+
+static struct board_info __initdata board_ct6373_1 = {
+	.name				= "CT6373-1",
+	.expected_cpu_id	= 0x6358,
+
+	.has_uart0			= 1,
+	.has_pci			= 1,
+	.has_ohci0			= 1,
+	.has_ehci0			= 1,
+
+	.has_enet1			= 1,
+	.enet1 = {
+		.force_speed_100	= 1,
+		.force_duplex_full	= 1,
+	},
+
+	.leds = {
+		{
+			.name		= "CT6373-1:green:power",
+			.gpio		= 0,
+			.default_trigger = "default-on",
+		},
+		{
+			.name		= "CT6373-1:green:usb",
+			.gpio		= 3,
+			.active_low	= 1,
+		},
+		{
+			.name		= "CT6373-1:green:wlan",
+			.gpio		= 9,
+			.active_low	= 1,
+		},
+		{
+			.name		= "CT6373-1:green:adsl",
+			.gpio		= CT6373_74HC64_GPIO(0),
+			.active_low	= 1,
+		},
+		{
+			.name		= "CT6373-1:green:line",
+			.gpio		= CT6373_74HC64_GPIO(1),
+			.active_low	= 1,
+		},
+		{
+			.name		= "CT6373-1:green:fxs1",
+			.gpio		= CT6373_74HC64_GPIO(2),
+			.active_low	= 1,
+		},
+		{
+			.name		= "CT6373-1:green:fxs2",
+			.gpio		= CT6373_74HC64_GPIO(3),
+			.active_low	= 1,
+		},
+	},
+
+	.buttons = {
+		{
+			.desc		= "reset",
+			.gpio		= 35,
+			.active_low	= 1,
+			.type		= EV_KEY,
+			.code		= KEY_RESTART,
+			.debounce_interval = BCM963XX_KEYS_DEBOUNCE_INTERVAL,
+		},
+	},
+
+	.devs = ct6373_devices,
+	.num_devs = ARRAY_SIZE(ct6373_devices),
+	.spis = ct6373_spi_devices,
+	.num_spis = ARRAY_SIZE(ct6373_spi_devices),
+};
+
 static struct board_info __initdata board_HW553 = {
 	.name                           = "HW553",
 	.expected_cpu_id                = 0x6358,
@@ -2592,6 +2704,7 @@ static const struct board_info __initdat
 	&board_nb4_ser_r2,
 	&board_nb4_fxc_r1,
 	&board_nb4_fxc_r2,
+	&board_ct6373_1,
 	&board_HW553,
 	&board_spw303v,
 #endif