aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips
diff options
context:
space:
mode:
authorAtsushi Nemoto <anemo@mba.ocn.ne.jp>2008-07-23 11:25:20 -0400
committerRalf Baechle <ralf@linux-mips.org>2008-07-30 16:54:39 -0400
commitc49f91f51e3cca796494f69fd967a7f72df5d457 (patch)
treee61f4835373a274af951782dd5f314031b2c8e38 /arch/mips
parentf6727fb889c664be094fa041a0fdf0f1a1caefb6 (diff)
[MIPS] TXx9: Make tx4938-specific code more independent
Make some TX4938 SoC specific code independent from board specific code. Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r--arch/mips/txx9/generic/setup.c27
-rw-r--r--arch/mips/txx9/generic/setup_tx4938.c16
-rw-r--r--arch/mips/txx9/rbtx4938/setup.c34
3 files changed, 45 insertions, 32 deletions
diff --git a/arch/mips/txx9/generic/setup.c b/arch/mips/txx9/generic/setup.c
index 7b5705d18deb..b136c6692a5f 100644
--- a/arch/mips/txx9/generic/setup.c
+++ b/arch/mips/txx9/generic/setup.c
@@ -220,6 +220,33 @@ void __init txx9_wdt_init(unsigned long base)
220 platform_device_register_simple("txx9wdt", -1, &res, 1); 220 platform_device_register_simple("txx9wdt", -1, &res, 1);
221} 221}
222 222
223/* SPI support */
224void __init txx9_spi_init(int busid, unsigned long base, int irq)
225{
226 struct resource res[] = {
227 {
228 .start = base,
229 .end = base + 0x20 - 1,
230 .flags = IORESOURCE_MEM,
231 }, {
232 .start = irq,
233 .flags = IORESOURCE_IRQ,
234 },
235 };
236 platform_device_register_simple("spi_txx9", busid,
237 res, ARRAY_SIZE(res));
238}
239
240void __init txx9_ethaddr_init(unsigned int id, unsigned char *ethaddr)
241{
242 struct platform_device *pdev =
243 platform_device_alloc("tc35815-mac", id);
244 if (!pdev ||
245 platform_device_add_data(pdev, ethaddr, 6) ||
246 platform_device_add(pdev))
247 platform_device_put(pdev);
248}
249
223/* wrappers */ 250/* wrappers */
224void __init plat_mem_setup(void) 251void __init plat_mem_setup(void)
225{ 252{
diff --git a/arch/mips/txx9/generic/setup_tx4938.c b/arch/mips/txx9/generic/setup_tx4938.c
index b0a3dc8863fd..1ceace45ef6a 100644
--- a/arch/mips/txx9/generic/setup_tx4938.c
+++ b/arch/mips/txx9/generic/setup_tx4938.c
@@ -262,3 +262,19 @@ void __init tx4938_setup_serial(void)
262 } 262 }
263#endif /* CONFIG_SERIAL_TXX9 */ 263#endif /* CONFIG_SERIAL_TXX9 */
264} 264}
265
266void __init tx4938_spi_init(int busid)
267{
268 txx9_spi_init(busid, TX4938_SPI_REG & 0xfffffffffULL,
269 TXX9_IRQ_BASE + TX4938_IR_SPI);
270}
271
272void __init tx4938_ethaddr_init(unsigned char *addr0, unsigned char *addr1)
273{
274 u64 pcfg = __raw_readq(&tx4938_ccfgptr->pcfg);
275
276 if (addr0 && (pcfg & TX4938_PCFG_ETH0_SEL))
277 txx9_ethaddr_init(TXX9_IRQ_BASE + TX4938_IR_ETH0, addr0);
278 if (addr1 && (pcfg & TX4938_PCFG_ETH1_SEL))
279 txx9_ethaddr_init(TXX9_IRQ_BASE + TX4938_IR_ETH1, addr1);
280}
diff --git a/arch/mips/txx9/rbtx4938/setup.c b/arch/mips/txx9/rbtx4938/setup.c
index ff5fda2151f2..3324a70a6b7a 100644
--- a/arch/mips/txx9/rbtx4938/setup.c
+++ b/arch/mips/txx9/rbtx4938/setup.c
@@ -132,19 +132,7 @@ static int __init rbtx4938_ethaddr_init(void)
132 if (sum) 132 if (sum)
133 printk(KERN_WARNING "seeprom: bad checksum.\n"); 133 printk(KERN_WARNING "seeprom: bad checksum.\n");
134 } 134 }
135 for (i = 0; i < 2; i++) { 135 tx4938_ethaddr_init(&dat[4], &dat[4 + 6]);
136 unsigned int id =
137 TXX9_IRQ_BASE + (i ? TX4938_IR_ETH1 : TX4938_IR_ETH0);
138 struct platform_device *pdev;
139 if (!(__raw_readq(&tx4938_ccfgptr->pcfg) &
140 (i ? TX4938_PCFG_ETH1_SEL : TX4938_PCFG_ETH0_SEL)))
141 continue;
142 pdev = platform_device_alloc("tc35815-mac", id);
143 if (!pdev ||
144 platform_device_add_data(pdev, &dat[4 + 6 * i], 6) ||
145 platform_device_add(pdev))
146 platform_device_put(pdev);
147 }
148#endif /* CONFIG_PCI */ 136#endif /* CONFIG_PCI */
149 return 0; 137 return 0;
150} 138}
@@ -301,24 +289,6 @@ static struct gpio_chip rbtx4938_spi_gpio_chip = {
301 .ngpio = 3, 289 .ngpio = 3,
302}; 290};
303 291
304/* SPI support */
305
306static void __init txx9_spi_init(unsigned long base, int irq)
307{
308 struct resource res[] = {
309 {
310 .start = base,
311 .end = base + 0x20 - 1,
312 .flags = IORESOURCE_MEM,
313 }, {
314 .start = irq,
315 .flags = IORESOURCE_IRQ,
316 },
317 };
318 platform_device_register_simple("spi_txx9", 0,
319 res, ARRAY_SIZE(res));
320}
321
322static int __init rbtx4938_spi_init(void) 292static int __init rbtx4938_spi_init(void)
323{ 293{
324 struct spi_board_info srtc_info = { 294 struct spi_board_info srtc_info = {
@@ -341,7 +311,7 @@ static int __init rbtx4938_spi_init(void)
341 gpio_direction_output(16 + SEEPROM2_CS, 1); 311 gpio_direction_output(16 + SEEPROM2_CS, 1);
342 gpio_request(16 + SEEPROM3_CS, "seeprom3"); 312 gpio_request(16 + SEEPROM3_CS, "seeprom3");
343 gpio_direction_output(16 + SEEPROM3_CS, 1); 313 gpio_direction_output(16 + SEEPROM3_CS, 1);
344 txx9_spi_init(TX4938_SPI_REG & 0xfffffffffULL, RBTX4938_IRQ_IRC_SPI); 314 tx4938_spi_init(0);
345 return 0; 315 return 0;
346} 316}
347 317