All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] powerpc/inka4x0: Remove left-over ide reset code.
@ 2009-05-05 14:04 Detlev Zundel
  2009-05-13  9:30 ` Detlev Zundel
  2009-05-15 19:31 ` Wolfgang Denk
  0 siblings, 2 replies; 5+ messages in thread
From: Detlev Zundel @ 2009-05-05 14:04 UTC (permalink / raw)
  To: u-boot

The pin which was used in preliminary versions of the board for ide
reset is really connected to the rtc clock.

Signed-off-by: Detlev Zundel <dzu@denx.de>
---
 board/inka4x0/inka4x0.c   |   33 ---------------------------------
 include/configs/inka4x0.h |    1 -
 2 files changed, 0 insertions(+), 34 deletions(-)

diff --git a/board/inka4x0/inka4x0.c b/board/inka4x0/inka4x0.c
index 7428b92..c645b05 100644
--- a/board/inka4x0/inka4x0.c
+++ b/board/inka4x0/inka4x0.c
@@ -274,36 +274,3 @@ void pci_init_board(void)
 	pci_mpc5xxx_init(&hose);
 }
 #endif
-
-#if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_RESET)
-
-void init_ide_reset (void)
-{
-	volatile struct mpc5xxx_wu_gpio	*wu_gpio =
-		(struct mpc5xxx_wu_gpio *)MPC5XXX_WU_GPIO;
-
-	debug ("init_ide_reset\n");
-
-	/* Configure PSC1_4 as GPIO output for ATA reset */
-	setbits_8(&wu_gpio->enable, MPC5XXX_GPIO_WKUP_PSC1_4);
-	setbits_8(&wu_gpio->ddr,    MPC5XXX_GPIO_WKUP_PSC1_4);
-	/* Deassert reset */
-	setbits_8(&wu_gpio->dvo,    MPC5XXX_GPIO_WKUP_PSC1_4);
-}
-
-void ide_set_reset (int idereset)
-{
-	volatile struct mpc5xxx_wu_gpio	*wu_gpio =
-		(struct mpc5xxx_wu_gpio *)MPC5XXX_WU_GPIO;
-
-	debug ("ide_reset(%d)\n", idereset);
-
-	if (idereset) {
-		clrbits_8(&wu_gpio->dvo, MPC5XXX_GPIO_WKUP_PSC1_4);
-		/* Make a delay. MPC5200 spec says 25 usec min */
-		udelay(500000);
-	} else {
-		setbits_8(&wu_gpio->dvo, MPC5XXX_GPIO_WKUP_PSC1_4);
-	}
-}
-#endif
diff --git a/include/configs/inka4x0.h b/include/configs/inka4x0.h
index 5f06b09..46606ca 100644
--- a/include/configs/inka4x0.h
+++ b/include/configs/inka4x0.h
@@ -418,7 +418,6 @@ static inline void tws_data_config_output(unsigned output)
 #undef	CONFIG_IDE_8xx_DIRECT		/* Direct IDE    not supported	*/
 #undef	CONFIG_IDE_LED			/* LED   for ide not supported	*/
 
-#define	CONFIG_IDE_RESET		/* reset for ide supported	*/
 #define CONFIG_IDE_PREINIT
 
 #define CONFIG_SYS_IDE_MAXBUS		1	/* max. 1 IDE bus		*/
-- 
1.6.0.6

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] powerpc/inka4x0: Remove left-over ide reset code.
  2009-05-05 14:04 [U-Boot] [PATCH] powerpc/inka4x0: Remove left-over ide reset code Detlev Zundel
@ 2009-05-13  9:30 ` Detlev Zundel
  2009-05-13 13:49   ` Grant Likely
  2009-05-15 19:31 ` Wolfgang Denk
  1 sibling, 1 reply; 5+ messages in thread
From: Detlev Zundel @ 2009-05-13  9:30 UTC (permalink / raw)
  To: u-boot

Hi Grant,

realizing that I forgot to CC you on the original mail[1], I now formally
ask you to pull the patch into your repo as it fixes a real bug.

Thanks
  Detlev

[1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/59148

> The pin which was used in preliminary versions of the board for ide
> reset is really connected to the rtc clock.
>
> Signed-off-by: Detlev Zundel <dzu@denx.de>
> ---
>  board/inka4x0/inka4x0.c   |   33 ---------------------------------
>  include/configs/inka4x0.h |    1 -
>  2 files changed, 0 insertions(+), 34 deletions(-)
>
> diff --git a/board/inka4x0/inka4x0.c b/board/inka4x0/inka4x0.c
> index 7428b92..c645b05 100644
> --- a/board/inka4x0/inka4x0.c
> +++ b/board/inka4x0/inka4x0.c
> @@ -274,36 +274,3 @@ void pci_init_board(void)
>  	pci_mpc5xxx_init(&hose);
>  }
>  #endif
> -
> -#if defined(CONFIG_CMD_IDE) && defined(CONFIG_IDE_RESET)
> -
> -void init_ide_reset (void)
> -{
> -	volatile struct mpc5xxx_wu_gpio	*wu_gpio =
> -		(struct mpc5xxx_wu_gpio *)MPC5XXX_WU_GPIO;
> -
> -	debug ("init_ide_reset\n");
> -
> -	/* Configure PSC1_4 as GPIO output for ATA reset */
> -	setbits_8(&wu_gpio->enable, MPC5XXX_GPIO_WKUP_PSC1_4);
> -	setbits_8(&wu_gpio->ddr,    MPC5XXX_GPIO_WKUP_PSC1_4);
> -	/* Deassert reset */
> -	setbits_8(&wu_gpio->dvo,    MPC5XXX_GPIO_WKUP_PSC1_4);
> -}
> -
> -void ide_set_reset (int idereset)
> -{
> -	volatile struct mpc5xxx_wu_gpio	*wu_gpio =
> -		(struct mpc5xxx_wu_gpio *)MPC5XXX_WU_GPIO;
> -
> -	debug ("ide_reset(%d)\n", idereset);
> -
> -	if (idereset) {
> -		clrbits_8(&wu_gpio->dvo, MPC5XXX_GPIO_WKUP_PSC1_4);
> -		/* Make a delay. MPC5200 spec says 25 usec min */
> -		udelay(500000);
> -	} else {
> -		setbits_8(&wu_gpio->dvo, MPC5XXX_GPIO_WKUP_PSC1_4);
> -	}
> -}
> -#endif
> diff --git a/include/configs/inka4x0.h b/include/configs/inka4x0.h
> index 5f06b09..46606ca 100644
> --- a/include/configs/inka4x0.h
> +++ b/include/configs/inka4x0.h
> @@ -418,7 +418,6 @@ static inline void tws_data_config_output(unsigned output)
>  #undef	CONFIG_IDE_8xx_DIRECT		/* Direct IDE    not supported	*/
>  #undef	CONFIG_IDE_LED			/* LED   for ide not supported	*/
>  
> -#define	CONFIG_IDE_RESET		/* reset for ide supported	*/
>  #define CONFIG_IDE_PREINIT
>  
>  #define CONFIG_SYS_IDE_MAXBUS		1	/* max. 1 IDE bus		*/

-- 
Old mathematicians never die; they just lose some of their functions.
--
DENX Software Engineering GmbH,      MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich,  Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-40 Fax: (+49)-8142-66989-80 Email: dzu at denx.de

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] powerpc/inka4x0: Remove left-over ide reset code.
  2009-05-13  9:30 ` Detlev Zundel
@ 2009-05-13 13:49   ` Grant Likely
  2009-05-13 15:26     ` Detlev Zundel
  0 siblings, 1 reply; 5+ messages in thread
From: Grant Likely @ 2009-05-13 13:49 UTC (permalink / raw)
  To: u-boot

On Wed, May 13, 2009 at 3:30 AM, Detlev Zundel <dzu@denx.de> wrote:
> Hi Grant,
>
> realizing that I forgot to CC you on the original mail[1], I now formally
> ask you to pull the patch into your repo as it fixes a real bug.

Hi Detlev,

I'm not the u-boot mpc5xxx maintainer anymore.  I didn't have time to
keep up with it.  John Rigby is the current maintainer.

g.

-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] powerpc/inka4x0: Remove left-over ide reset code.
  2009-05-13 13:49   ` Grant Likely
@ 2009-05-13 15:26     ` Detlev Zundel
  0 siblings, 0 replies; 5+ messages in thread
From: Detlev Zundel @ 2009-05-13 15:26 UTC (permalink / raw)
  To: u-boot

Hi Grant,

> I'm not the u-boot mpc5xxx maintainer anymore.  I didn't have time to
> keep up with it.  John Rigby is the current maintainer.

Argh, my fault, I should have known better.  Sorry for the noise.

Cheers
  Detlev

-- 
#define KSAMTIB_CIGAM_2SFFJ 0x8519 /* For detecting wrong-endian fs */
                              -- include/linux/jffs2.h
--
DENX Software Engineering GmbH,      MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich,  Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-40 Fax: (+49)-8142-66989-80 Email: dzu at denx.de

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH] powerpc/inka4x0: Remove left-over ide reset code.
  2009-05-05 14:04 [U-Boot] [PATCH] powerpc/inka4x0: Remove left-over ide reset code Detlev Zundel
  2009-05-13  9:30 ` Detlev Zundel
@ 2009-05-15 19:31 ` Wolfgang Denk
  1 sibling, 0 replies; 5+ messages in thread
From: Wolfgang Denk @ 2009-05-15 19:31 UTC (permalink / raw)
  To: u-boot

Dear Detlev Zundel,

In message <1241532246-9399-1-git-send-email-dzu@denx.de> you wrote:
> The pin which was used in preliminary versions of the board for ide
> reset is really connected to the rtc clock.
> 
> Signed-off-by: Detlev Zundel <dzu@denx.de>
> ---
>  board/inka4x0/inka4x0.c   |   33 ---------------------------------
>  include/configs/inka4x0.h |    1 -
>  2 files changed, 0 insertions(+), 34 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"This is a test of the Emergency Broadcast System. If this had been an
actual emergency, do you really think we'd stick around to tell you?"

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-05-15 19:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-05-05 14:04 [U-Boot] [PATCH] powerpc/inka4x0: Remove left-over ide reset code Detlev Zundel
2009-05-13  9:30 ` Detlev Zundel
2009-05-13 13:49   ` Grant Likely
2009-05-13 15:26     ` Detlev Zundel
2009-05-15 19:31 ` Wolfgang Denk

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.