From: Martin Krause Date: Thu, 3 Apr 2008 12:29:01 +0000 (+0200) Subject: TQM5200: fix default IDE reset level X-Git-Tag: v1.3.3-rc1~70 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8f2a68a07c058fca1d413e54f71c2e7e78a74ed4;p=u-boot TQM5200: fix default IDE reset level Before the first call of ide_reset(), the level of the IDE reset signal on the TQM5200 is low (reset asserted). This patch sets the default value to high (reset not asserted). Currently this patch fixes no real problem, but it is cleaner to assert the reset signal only on demand, and not permanently. Signed-off-by: Martin Krause --- diff --git a/board/tqm5200/tqm5200.c b/board/tqm5200/tqm5200.c index e67145eb5b..f9891dbb74 100644 --- a/board/tqm5200/tqm5200.c +++ b/board/tqm5200/tqm5200.c @@ -316,6 +316,9 @@ void init_ide_reset (void) /* Configure PSC1_4 as GPIO output for ATA reset */ *(vu_long *) MPC5XXX_WU_GPIO_ENABLE |= GPIO_PSC1_4; *(vu_long *) MPC5XXX_WU_GPIO_DIR |= GPIO_PSC1_4; + + /* by default the ATA reset is de-asserted */ + *(vu_long *) MPC5XXX_WU_GPIO_DATA_O |= GPIO_PSC1_4; #endif }