diff options
author | roy zang <tie-fei.zang@freescale.com> | 2006-11-03 13:40:03 +0800 |
---|---|---|
committer | Zang Tiefei <roy@bus.ap.freescale.net> | 2006-11-03 13:40:03 +0800 |
commit | 1f2c5c5385f5bd7849b88e761c6e201ff7fefe8b (patch) | |
tree | 28502219ab085dda7febe844a4050874b938cbc2 /board/esd/cpci5200/cpci5200.c | |
parent | c1fbe4103a0d6c8957f912af902d705ba67836f2 (diff) | |
parent | ee58ea2689930669678fdcb27bf0cc5c341e18eb (diff) | |
download | u-boot-imx-1f2c5c5385f5bd7849b88e761c6e201ff7fefe8b.zip u-boot-imx-1f2c5c5385f5bd7849b88e761c6e201ff7fefe8b.tar.gz u-boot-imx-1f2c5c5385f5bd7849b88e761c6e201ff7fefe8b.tar.bz2 |
Merge /home/roy/CVS/7448/Open_Source/u-boot.git.dev
Diffstat (limited to 'board/esd/cpci5200/cpci5200.c')
-rw-r--r-- | board/esd/cpci5200/cpci5200.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/board/esd/cpci5200/cpci5200.c b/board/esd/cpci5200/cpci5200.c index 6c98f13..f14331b 100644 --- a/board/esd/cpci5200/cpci5200.c +++ b/board/esd/cpci5200/cpci5200.c @@ -199,8 +199,6 @@ void pci_init_board(void #if defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) -#define GPIO_PSC1_4 0x01000000UL - void init_ide_reset(void) { debug("init_ide_reset\n"); @@ -215,9 +213,9 @@ void ide_set_reset(int idereset) debug("ide_reset(%d)\n", idereset); if (idereset) { - *(vu_long *) MPC5XXX_WU_GPIO_DATA &= ~GPIO_PSC1_4; + *(vu_long *) MPC5XXX_WU_GPIO_DATA_O &= ~GPIO_PSC1_4; } else { - *(vu_long *) MPC5XXX_WU_GPIO_DATA |= GPIO_PSC1_4; + *(vu_long *) MPC5XXX_WU_GPIO_DATA_O |= GPIO_PSC1_4; } } #endif /* defined (CFG_CMD_IDE) && defined (CONFIG_IDE_RESET) */ @@ -242,7 +240,7 @@ void init_ata_reset(void) debug("init_ata_reset\n"); /* Configure GPIO_WU6 as GPIO output for ATA reset */ - *(vu_long *) MPC5XXX_WU_GPIO_DATA |= GPIO_WU6; + *(vu_long *) MPC5XXX_WU_GPIO_DATA_O |= GPIO_WU6; *(vu_long *) MPC5XXX_WU_GPIO_ENABLE |= GPIO_WU6; *(vu_long *) MPC5XXX_WU_GPIO_DIR |= GPIO_WU6; __asm__ volatile ("sync"); |