Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/sh/boards/sh03/setup.c |
| 3 | * |
| 4 | * Copyright (C) 2004 Interface Co.,Ltd. Saito.K |
| 5 | * |
| 6 | */ |
| 7 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/init.h> |
| 9 | #include <linux/irq.h> |
Paul Mundt | 711fa80 | 2006-10-03 13:14:04 +0900 | [diff] [blame] | 10 | #include <linux/pci.h> |
Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 11 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <asm/io.h> |
Paul Mundt | 373e68b | 2006-09-27 15:41:24 +0900 | [diff] [blame] | 13 | #include <asm/rtc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <asm/sh03/io.h> |
| 15 | #include <asm/sh03/sh03.h> |
| 16 | #include <asm/addrspace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 18 | static void __init init_sh03_IRQ(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | { |
Magnus Damm | d59645d | 2007-08-03 14:23:35 +0900 | [diff] [blame] | 20 | plat_irq_setup_pins(IRQ_MODE_IRQ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | } |
| 22 | |
| 23 | extern void *cf_io_base; |
| 24 | |
Paul Mundt | 373e68b | 2006-09-27 15:41:24 +0900 | [diff] [blame] | 25 | static void __iomem *sh03_ioport_map(unsigned long port, unsigned int size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | { |
| 27 | if (PXSEG(port)) |
Paul Mundt | 373e68b | 2006-09-27 15:41:24 +0900 | [diff] [blame] | 28 | return (void __iomem *)port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | /* CompactFlash (IDE) */ |
Paul Mundt | 373e68b | 2006-09-27 15:41:24 +0900 | [diff] [blame] | 30 | if (((port >= 0x1f0) && (port <= 0x1f7)) || (port == 0x3f6)) |
| 31 | return (void __iomem *)((unsigned long)cf_io_base + port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 33 | return (void __iomem *)(port + PCI_IO_BASE); |
Paul Mundt | 373e68b | 2006-09-27 15:41:24 +0900 | [diff] [blame] | 34 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 36 | /* arch/sh/boards/sh03/rtc.c */ |
| 37 | void sh03_time_init(void); |
| 38 | |
| 39 | static void __init sh03_setup(char **cmdline_p) |
| 40 | { |
| 41 | board_time_init = sh03_time_init; |
| 42 | } |
| 43 | |
Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 44 | static struct resource heartbeat_resources[] = { |
| 45 | [0] = { |
| 46 | .start = 0xa0800000, |
Paul Mundt | a1fd306 | 2007-08-23 15:11:44 +0900 | [diff] [blame^] | 47 | .end = 0xa0800000, |
Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 48 | .flags = IORESOURCE_MEM, |
| 49 | }, |
| 50 | }; |
| 51 | |
| 52 | static struct platform_device heartbeat_device = { |
| 53 | .name = "heartbeat", |
| 54 | .id = -1, |
| 55 | .num_resources = ARRAY_SIZE(heartbeat_resources), |
| 56 | .resource = heartbeat_resources, |
| 57 | }; |
| 58 | |
| 59 | static struct platform_device *sh03_devices[] __initdata = { |
| 60 | &heartbeat_device, |
| 61 | }; |
| 62 | |
| 63 | static int __init sh03_devices_setup(void) |
| 64 | { |
| 65 | return platform_add_devices(sh03_devices, ARRAY_SIZE(sh03_devices)); |
| 66 | } |
| 67 | __initcall(sh03_devices_setup); |
| 68 | |
Paul Mundt | 82f81f4 | 2007-05-15 15:19:34 +0900 | [diff] [blame] | 69 | static struct sh_machine_vector mv_sh03 __initmv = { |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 70 | .mv_name = "Interface (CTP/PCI-SH03)", |
| 71 | .mv_setup = sh03_setup, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | .mv_nr_irqs = 48, |
Paul Mundt | 373e68b | 2006-09-27 15:41:24 +0900 | [diff] [blame] | 73 | .mv_ioport_map = sh03_ioport_map, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | .mv_init_irq = init_sh03_IRQ, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | }; |