From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthias Fuchs Date: Thu, 9 Oct 2008 16:04:15 +0200 Subject: [U-Boot] [PATCH] Fix USB init sequence for the lwmon5 board. In-Reply-To: <1223551521194-git-send-email-sascha.laue@liebherr.com> References: <1223551521194-git-send-email-sascha.laue@liebherr.com> Message-ID: <200810091604.15632.matthias.fuchs@esd-electronics.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Thursday 09 October 2008 13:25, sascha.laue at liebherr.com wrote: > From: Sascha Laue > > Signed-off-by: Sascha Laue > --- > board/lwmon5/lwmon5.c | 44 +++++++++++++++++++++++++++++++++++++++----- > 1 files changed, 39 insertions(+), 5 deletions(-) > > diff --git a/board/lwmon5/lwmon5.c b/board/lwmon5/lwmon5.c > index 8975bfd..5e310f4 100644 > --- a/board/lwmon5/lwmon5.c > +++ b/board/lwmon5/lwmon5.c > @@ -145,7 +145,7 @@ int misc_init_r(void) > u32 reg; > unsigned long usb2d0cr = 0; > unsigned long usb2phy0cr, usb2h0cr = 0; > - unsigned long sdr0_pfc1; > + unsigned long sdr0_pfc1, sdr0_srst; > > /* > * FLASH stuff... > @@ -207,6 +207,15 @@ int misc_init_r(void) > /* > * USB suff... > */ > + > + /* Reset USB peripherie */ > + mtsdr(SDR0_SRST0, SDR0_SRST0_USB2H | SDR0_SRST0_USB2D ); > + mtsdr(SDR0_SRST1, SDR0_SRST1_USB20PHY | SDR0_SRST1_USB2HUTMI \ > + | SDR0_SRST1_USB2HPHY | SDR0_SRST1_OPBA2 \ > + | SDR0_SRST1_PLB42OPB1 | SDR0_SRST1_OPB2PLB40 ); > + I think these mtsdrs are not needed. These bits are all set after CPU reset. So setting them again makes no sense. But this reset sequence is full of magic at all. So I could imagine that it's needed :-) Matthias > + udelay(100); > + > /* SDR Setting */ > mfsdr(SDR0_PFC1, sdr0_pfc1); > mfsdr(SDR0_USB0, usb2d0cr); > @@ -234,13 +243,38 @@ int misc_init_r(void) > mtsdr(SDR0_USB2PHY0CR, usb2phy0cr); > mtsdr(SDR0_USB2H0CR, usb2h0cr); > > - /* > - * Clear resets > - */ > + /* the 440EPx controllers need this sequence to initiate the EHCI */ > + > + /* deassert reset to USBPHY */ > + mfsdr(SDR0_SRST1, sdr0_srst); > + sdr0_srst &= ~SDR0_SRST1_USB20PHY; > + mtsdr(SDR0_SRST1, sdr0_srst); > + > udelay (1000); > - mtsdr(SDR0_SRST1, 0x00000000); > + > + /* deassert reset to HOST*/ > + mfsdr(SDR0_SRST1, sdr0_srst); > + sdr0_srst &= ~( SDR0_SRST0_USB2H ); > + mtsdr(SDR0_SRST1, sdr0_srst); > + > + udelay(4000); > + > + /* deassert reset to OPB1, P4OPB0, OPB2, PLB42OPB1, OPB2PLB40 cores */ > + mfsdr(SDR0_SRST1, sdr0_srst); > + sdr0_srst &= ~( SDR0_SRST1_OPBA1 | \ > + SDR0_SRST1_P4OPB0 | \ > + SDR0_SRST1_OPBA2 | \ > + SDR0_SRST1_PLB42OPB1 | \ > + SDR0_SRST1_OPB2PLB40); > + mtsdr(SDR0_SRST1, sdr0_srst); > + > udelay (1000); > + > + /* deassert all other resets */ > mtsdr(SDR0_SRST0, 0x00000000); > + mtsdr(SDR0_SRST1, 0x00000000); > + > + udelay(1000); > > printf("USB: Host(int phy) Device(ext phy)\n"); > -- ------------------------------------------------------------------------- Dipl.-Ing. Matthias Fuchs Head of System Design esd electronic system design gmbh Vahrenwalder Str. 207 - 30165 Hannover - GERMANY Phone: +49-511-37298-0 - Fax: +49-511-37298-68 Please visit our homepage http://www.esd.eu Quality Products - Made in Germany ------------------------------------------------------------------------- Gesch?ftsf?hrer: Klaus Detering, Dr. Werner Schulze Amtsgericht Hannover HRB 51373 - VAT-ID DE 115672832 -------------------------------------------------------------------------