Commit | Line | Data |
---|---|---|
42452b77 LB |
1 | /* |
2 | * arch/arm/mach-orion5x/wrt350n-v2-setup.c | |
3 | * | |
4 | * This file is licensed under the terms of the GNU General Public | |
5 | * License version 2. This program is licensed "as is" without any | |
6 | * warranty of any kind, whether express or implied. | |
7 | */ | |
8 | ||
9 | #include <linux/kernel.h> | |
10 | #include <linux/init.h> | |
11 | #include <linux/platform_device.h> | |
12 | #include <linux/pci.h> | |
13 | #include <linux/irq.h> | |
14 | #include <linux/delay.h> | |
15 | #include <linux/mtd/physmap.h> | |
16 | #include <linux/mv643xx_eth.h> | |
81600eea | 17 | #include <linux/ethtool.h> |
dcf1cece | 18 | #include <net/dsa.h> |
42452b77 LB |
19 | #include <asm/mach-types.h> |
20 | #include <asm/gpio.h> | |
21 | #include <asm/mach/arch.h> | |
22 | #include <asm/mach/pci.h> | |
a09e64fb | 23 | #include <mach/orion5x.h> |
42452b77 LB |
24 | #include "common.h" |
25 | #include "mpp.h" | |
26 | ||
27 | static struct orion5x_mpp_mode wrt350n_v2_mpp_modes[] __initdata = { | |
28 | { 0, MPP_GPIO }, /* Power LED green (0=on) */ | |
29 | { 1, MPP_GPIO }, /* Security LED (0=on) */ | |
30 | { 2, MPP_GPIO }, /* Internal Button (0=on) */ | |
31 | { 3, MPP_GPIO }, /* Reset Button (0=on) */ | |
32 | { 4, MPP_GPIO }, /* PCI int */ | |
33 | { 5, MPP_GPIO }, /* Power LED orange (0=on) */ | |
34 | { 6, MPP_GPIO }, /* USB LED (0=on) */ | |
35 | { 7, MPP_GPIO }, /* Wireless LED (0=on) */ | |
36 | { 8, MPP_UNUSED }, /* ??? */ | |
37 | { 9, MPP_GIGE }, /* GE_RXERR */ | |
38 | { 10, MPP_UNUSED }, /* ??? */ | |
39 | { 11, MPP_UNUSED }, /* ??? */ | |
40 | { 12, MPP_GIGE }, /* GE_TXD[4] */ | |
41 | { 13, MPP_GIGE }, /* GE_TXD[5] */ | |
42 | { 14, MPP_GIGE }, /* GE_TXD[6] */ | |
43 | { 15, MPP_GIGE }, /* GE_TXD[7] */ | |
44 | { 16, MPP_GIGE }, /* GE_RXD[4] */ | |
45 | { 17, MPP_GIGE }, /* GE_RXD[5] */ | |
46 | { 18, MPP_GIGE }, /* GE_RXD[6] */ | |
47 | { 19, MPP_GIGE }, /* GE_RXD[7] */ | |
48 | { -1 }, | |
49 | }; | |
50 | ||
51 | /* | |
52 | * 8M NOR flash Device bus boot chip select | |
53 | */ | |
54 | #define WRT350N_V2_NOR_BOOT_BASE 0xf4000000 | |
55 | #define WRT350N_V2_NOR_BOOT_SIZE SZ_8M | |
56 | ||
57 | static struct mtd_partition wrt350n_v2_nor_flash_partitions[] = { | |
58 | { | |
59 | .name = "kernel", | |
60 | .offset = 0x00000000, | |
61 | .size = 0x00760000, | |
62 | }, { | |
63 | .name = "rootfs", | |
64 | .offset = 0x001a0000, | |
65 | .size = 0x005c0000, | |
66 | }, { | |
67 | .name = "lang", | |
68 | .offset = 0x00760000, | |
69 | .size = 0x00040000, | |
70 | }, { | |
71 | .name = "nvram", | |
72 | .offset = 0x007a0000, | |
73 | .size = 0x00020000, | |
74 | }, { | |
75 | .name = "u-boot", | |
76 | .offset = 0x007c0000, | |
77 | .size = 0x00040000, | |
78 | }, | |
79 | }; | |
80 | ||
81 | static struct physmap_flash_data wrt350n_v2_nor_flash_data = { | |
82 | .width = 1, | |
83 | .parts = wrt350n_v2_nor_flash_partitions, | |
84 | .nr_parts = ARRAY_SIZE(wrt350n_v2_nor_flash_partitions), | |
85 | }; | |
86 | ||
87 | static struct resource wrt350n_v2_nor_flash_resource = { | |
88 | .flags = IORESOURCE_MEM, | |
89 | .start = WRT350N_V2_NOR_BOOT_BASE, | |
90 | .end = WRT350N_V2_NOR_BOOT_BASE + WRT350N_V2_NOR_BOOT_SIZE - 1, | |
91 | }; | |
92 | ||
93 | static struct platform_device wrt350n_v2_nor_flash = { | |
94 | .name = "physmap-flash", | |
95 | .id = 0, | |
96 | .dev = { | |
97 | .platform_data = &wrt350n_v2_nor_flash_data, | |
98 | }, | |
99 | .num_resources = 1, | |
100 | .resource = &wrt350n_v2_nor_flash_resource, | |
101 | }; | |
102 | ||
103 | static struct mv643xx_eth_platform_data wrt350n_v2_eth_data = { | |
ac840605 | 104 | .phy_addr = MV643XX_ETH_PHY_NONE, |
81600eea LB |
105 | .speed = SPEED_1000, |
106 | .duplex = DUPLEX_FULL, | |
42452b77 LB |
107 | }; |
108 | ||
dcf1cece LB |
109 | static struct dsa_platform_data wrt350n_v2_switch_data = { |
110 | .port_names[0] = "lan2", | |
111 | .port_names[1] = "lan1", | |
112 | .port_names[2] = "wan", | |
113 | .port_names[3] = "cpu", | |
114 | .port_names[5] = "lan3", | |
115 | .port_names[7] = "lan4", | |
116 | }; | |
117 | ||
42452b77 LB |
118 | static void __init wrt350n_v2_init(void) |
119 | { | |
120 | /* | |
121 | * Setup basic Orion functions. Need to be called early. | |
122 | */ | |
123 | orion5x_init(); | |
124 | ||
125 | orion5x_mpp_conf(wrt350n_v2_mpp_modes); | |
126 | ||
127 | /* | |
128 | * Configure peripherals. | |
129 | */ | |
130 | orion5x_ehci0_init(); | |
131 | orion5x_eth_init(&wrt350n_v2_eth_data); | |
dcf1cece | 132 | orion5x_eth_switch_init(&wrt350n_v2_switch_data, NO_IRQ); |
42452b77 LB |
133 | orion5x_uart0_init(); |
134 | ||
135 | orion5x_setup_dev_boot_win(WRT350N_V2_NOR_BOOT_BASE, | |
136 | WRT350N_V2_NOR_BOOT_SIZE); | |
137 | platform_device_register(&wrt350n_v2_nor_flash); | |
138 | } | |
139 | ||
140 | static int __init wrt350n_v2_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | |
141 | { | |
142 | int irq; | |
143 | ||
144 | /* | |
145 | * Check for devices with hard-wired IRQs. | |
146 | */ | |
147 | irq = orion5x_pci_map_irq(dev, slot, pin); | |
148 | if (irq != -1) | |
149 | return irq; | |
150 | ||
151 | /* | |
152 | * Mini-PCI slot. | |
153 | */ | |
154 | if (slot == 7) | |
155 | return gpio_to_irq(4); | |
156 | ||
157 | return -1; | |
158 | } | |
159 | ||
160 | static struct hw_pci wrt350n_v2_pci __initdata = { | |
161 | .nr_controllers = 2, | |
162 | .swizzle = pci_std_swizzle, | |
163 | .setup = orion5x_pci_sys_setup, | |
164 | .scan = orion5x_pci_sys_scan_bus, | |
165 | .map_irq = wrt350n_v2_pci_map_irq, | |
166 | }; | |
167 | ||
168 | static int __init wrt350n_v2_pci_init(void) | |
169 | { | |
170 | if (machine_is_wrt350n_v2()) | |
171 | pci_common_init(&wrt350n_v2_pci); | |
172 | ||
173 | return 0; | |
174 | } | |
175 | subsys_initcall(wrt350n_v2_pci_init); | |
176 | ||
177 | MACHINE_START(WRT350N_V2, "Linksys WRT350N v2") | |
178 | /* Maintainer: Lennert Buytenhek <buytenh@marvell.com> */ | |
179 | .phys_io = ORION5X_REGS_PHYS_BASE, | |
180 | .io_pg_offst = ((ORION5X_REGS_VIRT_BASE) >> 18) & 0xFFFC, | |
181 | .boot_params = 0x00000100, | |
182 | .init_machine = wrt350n_v2_init, | |
183 | .map_io = orion5x_map_io, | |
184 | .init_irq = orion5x_init_irq, | |
185 | .timer = &orion5x_timer, | |
186 | .fixup = tag_fixup_mem32, | |
187 | MACHINE_END |