diff options
author | Nobuhiro Iwamatsu <hemamu@t-base.ne.jp> | 2007-03-12 02:12:27 -0400 |
---|---|---|
committer | Paul Mundt <lethal@hera.kernel.org> | 2007-05-06 22:10:53 -0400 |
commit | f987fc880d191bf2ef66ac17e9d524aee6afa02e (patch) | |
tree | 7d5ffd062f81a28ab572fcf9575eab92075030ba /arch/sh/boards/se | |
parent | 32351a28a7e1f2c68afbe559dd35e1ad0301be6d (diff) |
sh: pata_platform pcmcia support for SolutionEngine boards.
This enables pata_platform support for the PCMCIA slot on the
SolutionEngine.
Signed-off-by: Nobuhiro Iwamatsu <hemamu@t-base.ne.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards/se')
-rw-r--r-- | arch/sh/boards/se/770x/setup.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/arch/sh/boards/se/770x/setup.c b/arch/sh/boards/se/770x/setup.c index 45cbc36b9fb7..dab5510699a0 100644 --- a/arch/sh/boards/se/770x/setup.c +++ b/arch/sh/boards/se/770x/setup.c | |||
@@ -63,6 +63,31 @@ static void __init smsc_setup(char **cmdline_p) | |||
63 | outb_p(CONFIG_EXIT, CONFIG_PORT); | 63 | outb_p(CONFIG_EXIT, CONFIG_PORT); |
64 | } | 64 | } |
65 | 65 | ||
66 | |||
67 | static struct resource cf_ide_resources[] = { | ||
68 | [0] = { | ||
69 | .start = PA_MRSHPC_IO + 0x1f0, | ||
70 | .end = PA_MRSHPC_IO + 0x1f0 + 8, | ||
71 | .flags = IORESOURCE_MEM, | ||
72 | }, | ||
73 | [1] = { | ||
74 | .start = PA_MRSHPC_IO + 0x1f0 + 0x206, | ||
75 | .end = PA_MRSHPC_IO + 0x1f0 +8 + 0x206 + 8, | ||
76 | .flags = IORESOURCE_MEM, | ||
77 | }, | ||
78 | [2] = { | ||
79 | .start = 7, | ||
80 | .flags = IORESOURCE_IRQ, | ||
81 | }, | ||
82 | }; | ||
83 | |||
84 | static struct platform_device cf_ide_device = { | ||
85 | .name = "pata_platform", | ||
86 | .id = -1, | ||
87 | .num_resources = ARRAY_SIZE(cf_ide_resources), | ||
88 | .resource = cf_ide_resources, | ||
89 | }; | ||
90 | |||
66 | static unsigned char heartbeat_bit_pos[] = { 8, 9, 10, 11, 12, 13, 14, 15 }; | 91 | static unsigned char heartbeat_bit_pos[] = { 8, 9, 10, 11, 12, 13, 14, 15 }; |
67 | 92 | ||
68 | static struct resource heartbeat_resources[] = { | 93 | static struct resource heartbeat_resources[] = { |
@@ -85,6 +110,7 @@ static struct platform_device heartbeat_device = { | |||
85 | 110 | ||
86 | static struct platform_device *se_devices[] __initdata = { | 111 | static struct platform_device *se_devices[] __initdata = { |
87 | &heartbeat_device, | 112 | &heartbeat_device, |
113 | &cf_ide_device, | ||
88 | }; | 114 | }; |
89 | 115 | ||
90 | static int __init se_devices_setup(void) | 116 | static int __init se_devices_setup(void) |