From: Gabriel Huau <contact@huau-gabriel.fr>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/2] S3C2440 : PLL Initialization should be SoC specific
Date: Sun, 22 Apr 2012 22:55:10 +0200 [thread overview]
Message-ID: <20120422204327.GA8106@debian> (raw)
In-Reply-To: <201204222230.53429.marex@denx.de>
On Sun, Apr 22, 2012 at 10:30:52PM +0200, Marek Vasut wrote:
> Dear Gabriel Huau,
>
> > Signed-off-by: Gabriel Huau <contact@huau-gabriel.fr>
> > ---
> > arch/arm/cpu/arm920t/s3c24x0/timer.c | 36
> > ++++++++++++++++++++++++++++++++++ board/mpl/vcma9/lowlevel_init.S |
> > 22 --------------------- board/samsung/smdk2410/smdk2410.c | 19
> > ------------------
> > 3 files changed, 36 insertions(+), 41 deletions(-)
> >
> > diff --git a/arch/arm/cpu/arm920t/s3c24x0/timer.c
> > b/arch/arm/cpu/arm920t/s3c24x0/timer.c index d8668be..7ff687c 100644
> > --- a/arch/arm/cpu/arm920t/s3c24x0/timer.c
> > +++ b/arch/arm/cpu/arm920t/s3c24x0/timer.c
> > @@ -37,8 +37,27 @@
> >
> > DECLARE_GLOBAL_DATA_PTR;
> >
> > +#ifdef CONFIG_S3C2440
> > +/*
> > + * PLL/Clock configuration
> > + */
> > +/* FCLK = 405 MHz, HCLK = 101 MHz, PCLK = 50 MHz, UCLK = 48 MHz */
> > +#define CLKDIVN_VAL 7
> > +#define M_MDIV 0x7f
> > +#define M_PDIV 0x2
> > +#define M_SDIV 0x1
> > +
> > +#define U_M_MDIV 0x38
> > +#define U_M_PDIV 0x2
> > +#define U_M_SDIV 0x2
> > +#endif
>
> So after applying your patch, timer driver won't build for 2410 ?
>
Yes it will build, This patch is only for s3c2440. I just moved PLL
initialization of s3c2440 board to this file. I don't know if theses
values are correct for s3c2410 too.
> > +
> > + /* configure MPLL */
> > + clk_power->mpllcon = ((M_MDIV << 12) + (M_PDIV << 4) + M_SDIV);
> > +
> > + /* some delay between MPLL and UPLL */
> > + __udelay(8000);
> > +#endif
> > +
> > return 0;
> > }
> >
> > diff --git a/board/mpl/vcma9/lowlevel_init.S
> > b/board/mpl/vcma9/lowlevel_init.S index dadaac7..4deb451 100644
> > --- a/board/mpl/vcma9/lowlevel_init.S
> > +++ b/board/mpl/vcma9/lowlevel_init.S
> > @@ -262,28 +262,6 @@ lowlevel_init:
> > cmp r3, r4
> > bne 0b
> >
> > - /* setup MPLL registers */
> > - ldr r1, =CLKBASE
> > - ldr r4, =0xFFFFFF
> > - add r3, r2, #4 /* r3 points to PLL values */
> > - str r4, [r1, #LOCKTIME]
> > - ldmia r3, {r4,r5}
> > - str r5, [r1, #UPLLCON] /* writing PLL register */
> > - /* !! order seems to be important !! */
> > - /* a little delay */
> > - ldr r3, =0x4000
> > -0:
> > - subs r3, r3, #1
> > - bne 0b
> > -
> > - str r4, [r1, #MPLLCON] /* writing PLL register */
> > - /* !! order seems to be important !! */
> > - /* a little delay */
> > - ldr r3, =0x4000
> > -0:
> > - subs r3, r3, #1
> > - bne 0b
> > -
> > /* everything is fine now */
> > mov pc, lr
> >
> > diff --git a/board/samsung/smdk2410/smdk2410.c
> > b/board/samsung/smdk2410/smdk2410.c index e9ba922..3beb587 100644
> > --- a/board/samsung/smdk2410/smdk2410.c
> > +++ b/board/samsung/smdk2410/smdk2410.c
> > @@ -69,27 +69,8 @@ static inline void pll_delay(unsigned long loops)
> >
> > int board_early_init_f(void)
> > {
> > - struct s3c24x0_clock_power * const clk_power =
> > - s3c24x0_get_base_clock_power();
> > struct s3c24x0_gpio * const gpio = s3c24x0_get_base_gpio();
> >
> > - /* to reduce PLL lock time, adjust the LOCKTIME register */
> > - writel(0xFFFFFF, &clk_power->locktime);
> > -
> > - /* configure MPLL */
> > - writel((M_MDIV << 12) + (M_PDIV << 4) + M_SDIV,
> > - &clk_power->mpllcon);
> > -
> > - /* some delay between MPLL and UPLL */
> > - pll_delay(4000);
> > -
> > - /* configure UPLL */
> > - writel((U_M_MDIV << 12) + (U_M_PDIV << 4) + U_M_SDIV,
> > - &clk_power->upllcon);
> > -
> > - /* some delay between MPLL and UPLL */
> > - pll_delay(8000);
> > -
> > /* set up the I/O ports */
> > writel(0x007FFFFF, &gpio->gpacon);
> > writel(0x00044555, &gpio->gpbcon);
>
> Magic?
>
I don't maintain theses boards, I just removed PLL initialization
because I moved it. So for magic values in I/O port, we have to contact
the maintainers :).
> Best regards,
> Marek Vasut
next prev parent reply other threads:[~2012-04-22 20:55 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-22 8:33 [U-Boot] [PATCH 0/2] Add support for MINI2440 Gabriel Huau
2012-04-22 8:33 ` [U-Boot] [PATCH 1/2] S3C2440 : PLL Initialization should be SoC specific Gabriel Huau
2012-04-22 20:30 ` Marek Vasut
2012-04-22 20:55 ` Gabriel Huau [this message]
2012-04-22 21:32 ` Marek Vasut
2012-04-22 22:07 ` Gabriel Huau
2012-04-22 8:33 ` [U-Boot] [PATCH 2/2 v4] Add support for MINI2440 (s3c2440) Gabriel Huau
2012-04-22 20:33 ` Marek Vasut
2012-04-23 20:52 ` Wolfgang Denk
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=20120422204327.GA8106@debian \
--to=contact@huau-gabriel.fr \
--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