From: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] Fix USB init sequence for the lwmon5 board.
Date: Thu, 9 Oct 2008 16:04:15 +0200 [thread overview]
Message-ID: <200810091604.15632.matthias.fuchs@esd-electronics.com> (raw)
In-Reply-To: <1223551521194-git-send-email-sascha.laue@liebherr.com>
On Thursday 09 October 2008 13:25, sascha.laue at liebherr.com wrote:
> From: Sascha Laue <sascha.laue@liebherr.com>
>
> Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
> ---
> 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
-------------------------------------------------------------------------
prev parent reply other threads:[~2008-10-09 14:04 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-10-09 11:25 [U-Boot] [PATCH] Fix USB init sequence for the lwmon5 board sascha.laue at liebherr.com
2008-10-09 13:18 ` Wolfgang Denk
2008-10-09 14:04 ` Matthias Fuchs [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200810091604.15632.matthias.fuchs@esd-electronics.com \
--to=matthias.fuchs@esd-electronics.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox