diff options
author | Byron Bradley <byron.bbradley@gmail.com> | 2008-04-09 16:50:16 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-04-10 10:27:11 -0400 |
commit | 875492511a4afce7880c9dd0ca71462c299b40e6 (patch) | |
tree | 007b6c73548e3754f0a6d0220f4838b2072bc0b8 /arch/arm/mach-orion5x/kurobox_pro-setup.c | |
parent | b488a5ed12c0d8417884d8c33fc0a1701a16c951 (diff) |
[ARM] 4955/1: Orion: Support the Buffalo Linkstation Pro/Live Platform
The Buffalo Linkstation Pro/Live is the same hardware as the
Kurobox Pro but without the NAND flash. This patch adds a
second MACHINE_START macro to the Kurobox setup file to minimise
code duplication.
Signed-off-by: Byron Bradley <byron.bbradley@gmail.com>
Acked-by: Nicolas Pitre <nico@marvell.com>
Acked-by: Lennert Buytenhek <buytenh@marvell.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-orion5x/kurobox_pro-setup.c')
-rw-r--r-- | arch/arm/mach-orion5x/kurobox_pro-setup.c | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/arch/arm/mach-orion5x/kurobox_pro-setup.c b/arch/arm/mach-orion5x/kurobox_pro-setup.c index 8ad4390b4b7b..91413455beba 100644 --- a/arch/arm/mach-orion5x/kurobox_pro-setup.c +++ b/arch/arm/mach-orion5x/kurobox_pro-setup.c | |||
@@ -178,11 +178,6 @@ static struct mv_sata_platform_data kurobox_pro_sata_data = { | |||
178 | * General Setup | 178 | * General Setup |
179 | ****************************************************************************/ | 179 | ****************************************************************************/ |
180 | 180 | ||
181 | static struct platform_device *kurobox_pro_devices[] __initdata = { | ||
182 | &kurobox_pro_nor_flash, | ||
183 | &kurobox_pro_nand_flash, | ||
184 | }; | ||
185 | |||
186 | static void __init kurobox_pro_init(void) | 181 | static void __init kurobox_pro_init(void) |
187 | { | 182 | { |
188 | /* | 183 | /* |
@@ -224,12 +219,15 @@ static void __init kurobox_pro_init(void) | |||
224 | 219 | ||
225 | orion5x_gpio_set_valid_pins(0x0000000c); | 220 | orion5x_gpio_set_valid_pins(0x0000000c); |
226 | 221 | ||
227 | platform_add_devices(kurobox_pro_devices, ARRAY_SIZE(kurobox_pro_devices)); | 222 | platform_device_register(&kurobox_pro_nor_flash); |
223 | if (machine_is_kurobox_pro()) | ||
224 | platform_device_register(&kurobox_pro_nand_flash); | ||
228 | i2c_register_board_info(0, &kurobox_pro_i2c_rtc, 1); | 225 | i2c_register_board_info(0, &kurobox_pro_i2c_rtc, 1); |
229 | orion5x_eth_init(&kurobox_pro_eth_data); | 226 | orion5x_eth_init(&kurobox_pro_eth_data); |
230 | orion5x_sata_init(&kurobox_pro_sata_data); | 227 | orion5x_sata_init(&kurobox_pro_sata_data); |
231 | } | 228 | } |
232 | 229 | ||
230 | #ifdef CONFIG_MACH_KUROBOX_PRO | ||
233 | MACHINE_START(KUROBOX_PRO, "Buffalo/Revogear Kurobox Pro") | 231 | MACHINE_START(KUROBOX_PRO, "Buffalo/Revogear Kurobox Pro") |
234 | /* Maintainer: Ronen Shitrit <rshitrit@marvell.com> */ | 232 | /* Maintainer: Ronen Shitrit <rshitrit@marvell.com> */ |
235 | .phys_io = ORION5X_REGS_PHYS_BASE, | 233 | .phys_io = ORION5X_REGS_PHYS_BASE, |
@@ -241,3 +239,18 @@ MACHINE_START(KUROBOX_PRO, "Buffalo/Revogear Kurobox Pro") | |||
241 | .timer = &orion5x_timer, | 239 | .timer = &orion5x_timer, |
242 | .fixup = tag_fixup_mem32, | 240 | .fixup = tag_fixup_mem32, |
243 | MACHINE_END | 241 | MACHINE_END |
242 | #endif | ||
243 | |||
244 | #ifdef CONFIG_MACH_LINKSTATION_PRO | ||
245 | MACHINE_START(LINKSTATION_PRO, "Buffalo Linkstation Pro/Live") | ||
246 | /* Maintainer: Byron Bradley <byron.bbradley@gmail.com> */ | ||
247 | .phys_io = ORION5X_REGS_PHYS_BASE, | ||
248 | .io_pg_offst = ((ORION5X_REGS_VIRT_BASE) >> 18) & 0xFFFC, | ||
249 | .boot_params = 0x00000100, | ||
250 | .init_machine = kurobox_pro_init, | ||
251 | .map_io = orion5x_map_io, | ||
252 | .init_irq = orion5x_init_irq, | ||
253 | .timer = &orion5x_timer, | ||
254 | .fixup = tag_fixup_mem32, | ||
255 | MACHINE_END | ||
256 | #endif | ||