diff options
author | Saeed Bishara <saeed@marvell.com> | 2008-01-29 17:33:32 -0500 |
---|---|---|
committer | Nicolas Pitre <nico@cam.org> | 2008-02-08 11:52:23 -0500 |
commit | f244baa3cafb4a49934d1fd944e29885a0fdbc3e (patch) | |
tree | f638d21639490add6959cd396f9a8b996add9cb7 /arch/arm/mach-orion/rd88f5182-setup.c | |
parent | a4ffc0a0b240a29cbe489f6db9dae112a49ef1c1 (diff) |
[ARM] Orion: Use the sata_mv driver for the integrated SATA controller
This patch adds instantiation for the sata_mv driver, enabling the
integrated SATA controller.
Signed-off-by: Saeed Bishara <saeed@marvell.com>
Signed-off-by: Nicolas Pitre <nico@marvell.com>
Diffstat (limited to 'arch/arm/mach-orion/rd88f5182-setup.c')
-rw-r--r-- | arch/arm/mach-orion/rd88f5182-setup.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-orion/rd88f5182-setup.c b/arch/arm/mach-orion/rd88f5182-setup.c index 026d74325d01..797c54c80c2b 100644 --- a/arch/arm/mach-orion/rd88f5182-setup.c +++ b/arch/arm/mach-orion/rd88f5182-setup.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/irq.h> | 17 | #include <linux/irq.h> |
18 | #include <linux/mtd/physmap.h> | 18 | #include <linux/mtd/physmap.h> |
19 | #include <linux/mv643xx_eth.h> | 19 | #include <linux/mv643xx_eth.h> |
20 | #include <linux/ata_platform.h> | ||
20 | #include <linux/i2c.h> | 21 | #include <linux/i2c.h> |
21 | #include <asm/mach-types.h> | 22 | #include <asm/mach-types.h> |
22 | #include <asm/gpio.h> | 23 | #include <asm/gpio.h> |
@@ -230,6 +231,13 @@ static struct i2c_board_info __initdata rd88f5182_i2c_rtc = { | |||
230 | }; | 231 | }; |
231 | 232 | ||
232 | /***************************************************************************** | 233 | /***************************************************************************** |
234 | * Sata | ||
235 | ****************************************************************************/ | ||
236 | static struct mv_sata_platform_data rd88f5182_sata_data = { | ||
237 | .n_ports = 2, | ||
238 | }; | ||
239 | |||
240 | /***************************************************************************** | ||
233 | * General Setup | 241 | * General Setup |
234 | ****************************************************************************/ | 242 | ****************************************************************************/ |
235 | 243 | ||
@@ -292,6 +300,7 @@ static void __init rd88f5182_init(void) | |||
292 | platform_add_devices(rd88f5182_devices, ARRAY_SIZE(rd88f5182_devices)); | 300 | platform_add_devices(rd88f5182_devices, ARRAY_SIZE(rd88f5182_devices)); |
293 | i2c_register_board_info(0, &rd88f5182_i2c_rtc, 1); | 301 | i2c_register_board_info(0, &rd88f5182_i2c_rtc, 1); |
294 | orion_eth_init(&rd88f5182_eth_data); | 302 | orion_eth_init(&rd88f5182_eth_data); |
303 | orion_sata_init(&rd88f5182_sata_data); | ||
295 | } | 304 | } |
296 | 305 | ||
297 | MACHINE_START(RD88F5182, "Marvell Orion-NAS Reference Design") | 306 | MACHINE_START(RD88F5182, "Marvell Orion-NAS Reference Design") |