]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
[ARM] Orion: Use the sata_mv driver for the integrated SATA controller
authorSaeed Bishara <saeed@marvell.com>
Tue, 29 Jan 2008 22:33:32 +0000 (11:33 -1100)
committerNicolas Pitre <nico@cam.org>
Fri, 8 Feb 2008 16:52:23 +0000 (11:52 -0500)
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>
arch/arm/mach-orion/common.c
arch/arm/mach-orion/common.h
arch/arm/mach-orion/rd88f5182-setup.c

index 5e20b6b3250872a9d1e968cccbfe449bbe4053fa..5f41fc537fa5e0e6f23684719bb760915ff18f0a 100644 (file)
@@ -19,7 +19,7 @@
 #include <asm/page.h>
 #include <asm/timex.h>
 #include <asm/mach/map.h>
-#include <asm/arch/orion.h>
+#include <asm/arch/hardware.h>
 #include "common.h"
 
 /*****************************************************************************
@@ -249,6 +249,40 @@ static struct platform_device orion_i2c = {
        },
 };
 
+/*****************************************************************************
+ * Sata port
+ ****************************************************************************/
+static struct resource orion_sata_resources[] = {
+        {
+                .name   = "sata base",
+                .start  = ORION_SATA_REG_BASE,
+                .end    = ORION_SATA_REG_BASE + 0x5000 - 1,
+                .flags  = IORESOURCE_MEM,
+        },
+       {
+                .name   = "sata irq",
+                .start  = IRQ_ORION_SATA,
+                .end    = IRQ_ORION_SATA,
+                .flags  = IORESOURCE_IRQ,
+        },
+};
+
+static struct platform_device orion_sata = {
+       .name           = "sata_mv",
+       .id             = 0,
+       .dev            = {
+               .coherent_dma_mask      = 0xffffffff,
+       },
+       .num_resources  = ARRAY_SIZE(orion_sata_resources),
+       .resource       = orion_sata_resources,
+};
+
+void __init orion_sata_init(struct mv_sata_platform_data *sata_data)
+{
+       orion_sata.dev.platform_data = sata_data;
+       platform_device_register(&orion_sata);
+}
+
 /*****************************************************************************
  * General
  ****************************************************************************/
index 06c10c06f03ebbe7b6c55b576237cf0866e59e8a..10154ec885dfb1c08339732710e59d2c3d9f333a 100644 (file)
@@ -75,4 +75,12 @@ struct mv643xx_eth_platform_data;
 
 void __init orion_eth_init(struct mv643xx_eth_platform_data *eth_data);
 
+/*
+ * Orion Sata platform_data, used by machine-setup
+ */
+
+struct mv_sata_platform_data;
+
+void __init orion_sata_init(struct mv_sata_platform_data *sata_data);
+
 #endif /* __ARCH_ORION_COMMON_H__ */
index 026d74325d0190f8e31e6201da1f862402949403..797c54c80c2b013749dc126ce0722a7d99ee18f7 100644 (file)
@@ -17,6 +17,7 @@
 #include <linux/irq.h>
 #include <linux/mtd/physmap.h>
 #include <linux/mv643xx_eth.h>
+#include <linux/ata_platform.h>
 #include <linux/i2c.h>
 #include <asm/mach-types.h>
 #include <asm/gpio.h>
@@ -229,6 +230,13 @@ static struct i2c_board_info __initdata rd88f5182_i2c_rtc = {
        .addr           = 0x68,
 };
 
+/*****************************************************************************
+ * Sata
+ ****************************************************************************/
+static struct mv_sata_platform_data rd88f5182_sata_data = {
+       .n_ports        = 2,
+};
+
 /*****************************************************************************
  * General Setup
  ****************************************************************************/
@@ -292,6 +300,7 @@ static void __init rd88f5182_init(void)
        platform_add_devices(rd88f5182_devices, ARRAY_SIZE(rd88f5182_devices));
        i2c_register_board_info(0, &rd88f5182_i2c_rtc, 1);
        orion_eth_init(&rd88f5182_eth_data);
+       orion_sata_init(&rd88f5182_sata_data);
 }
 
 MACHINE_START(RD88F5182, "Marvell Orion-NAS Reference Design")