[ARM] Orion: Use the sata_mv driver for the Kurobox SATA
The Kurobox has a two port integrated SATA controller. Use the sata_mv driver for this. Signed-off-by: Byron Bradley <byron.bbradley@gmail.com> Signed-off-by: Nicolas Pitre <nico@marvell.com>
This commit is contained in:
parent
8c42da46f3
commit
3b277c2965
1 changed files with 9 additions and 0 deletions
|
@ -17,6 +17,7 @@
|
||||||
#include <linux/mtd/nand.h>
|
#include <linux/mtd/nand.h>
|
||||||
#include <linux/mv643xx_eth.h>
|
#include <linux/mv643xx_eth.h>
|
||||||
#include <linux/i2c.h>
|
#include <linux/i2c.h>
|
||||||
|
#include <linux/ata_platform.h>
|
||||||
#include <asm/mach-types.h>
|
#include <asm/mach-types.h>
|
||||||
#include <asm/gpio.h>
|
#include <asm/gpio.h>
|
||||||
#include <asm/mach/arch.h>
|
#include <asm/mach/arch.h>
|
||||||
|
@ -166,6 +167,13 @@ static struct i2c_board_info __initdata kurobox_pro_i2c_rtc = {
|
||||||
.addr = 0x32,
|
.addr = 0x32,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*****************************************************************************
|
||||||
|
* SATA
|
||||||
|
****************************************************************************/
|
||||||
|
static struct mv_sata_platform_data kurobox_pro_sata_data = {
|
||||||
|
.n_ports = 2,
|
||||||
|
};
|
||||||
|
|
||||||
/*****************************************************************************
|
/*****************************************************************************
|
||||||
* General Setup
|
* General Setup
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
@ -220,6 +228,7 @@ static void __init kurobox_pro_init(void)
|
||||||
platform_add_devices(kurobox_pro_devices, ARRAY_SIZE(kurobox_pro_devices));
|
platform_add_devices(kurobox_pro_devices, ARRAY_SIZE(kurobox_pro_devices));
|
||||||
i2c_register_board_info(0, &kurobox_pro_i2c_rtc, 1);
|
i2c_register_board_info(0, &kurobox_pro_i2c_rtc, 1);
|
||||||
orion_eth_init(&kurobox_pro_eth_data);
|
orion_eth_init(&kurobox_pro_eth_data);
|
||||||
|
orion_sata_init(&kurobox_pro_sata_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
MACHINE_START(KUROBOX_PRO, "Buffalo/Revogear Kurobox Pro")
|
MACHINE_START(KUROBOX_PRO, "Buffalo/Revogear Kurobox Pro")
|
||||||
|
|
Loading…
Add table
Reference in a new issue