diff options
author | Hemant Pedanekar | 2009-07-09 16:13:20 +0200 |
---|---|---|
committer | Kevin Hilman | 2009-08-26 09:57:02 +0200 |
commit | 1c92a554fcad141f8c73eecdb1cc5ac0527a5c15 (patch) | |
tree | fee7c293f5c39e192b7c8fae3357e20029bea139 /arch/arm/mach-davinci/include/mach/dm646x.h | |
parent | davinci: make arch_idle and arch_reset as inline functions (diff) | |
download | kernel-qcow2-linux-1c92a554fcad141f8c73eecdb1cc5ac0527a5c15.tar.gz kernel-qcow2-linux-1c92a554fcad141f8c73eecdb1cc5ac0527a5c15.tar.xz kernel-qcow2-linux-1c92a554fcad141f8c73eecdb1cc5ac0527a5c15.zip |
davinci: dm646x: Add IDE setup
This patch adds platform data and init function for IDE which could be called
from board specific file to register IDE device.
Note that for 594MHz device the transfer mode is limited to UDMA4 since ideclk
rate is less than 100 MHz, which forces udma_mask in palm_bk3710.c to UDMA4,
while for 729MHz device, it is UDMA5.
Signed-off-by: Hemant Pedanekar <hemantp@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/include/mach/dm646x.h')
-rw-r--r-- | arch/arm/mach-davinci/include/mach/dm646x.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/include/mach/dm646x.h b/arch/arm/mach-davinci/include/mach/dm646x.h index 05854846242a..feb1e02cdbd8 100644 --- a/arch/arm/mach-davinci/include/mach/dm646x.h +++ b/arch/arm/mach-davinci/include/mach/dm646x.h @@ -22,7 +22,10 @@ #define DM646X_EMAC_MDIO_OFFSET (0x4000) #define DM646X_EMAC_CNTRL_RAM_SIZE (0x2000) +#define DM646X_ATA_REG_BASE (0x01C66000) + void __init dm646x_init(void); +void __init dm646x_init_ide(void); void __init dm646x_init_mcasp0(struct snd_platform_data *pdata); void __init dm646x_init_mcasp1(struct snd_platform_data *pdata); |