From: Rajendra Nayak <rnayak@ti.com>
To: Kevin Hilman <khilman@ti.com>
Cc: linux-omap@vger.kernel.org, paul@pwsan.com
Subject: RE: [RFC 2/3] OMAP3: PM: Fix CLK_SRC mask for IVA2 and MPU on 3430ES2PLUS
Date: Tue, 25 Jan 2011 12:54:05 +0530 [thread overview]
Message-ID: <d1d35c9cad65b4eb1eade2e7bf93125d@mail.gmail.com> (raw)
In-Reply-To: <877hdu6jjg.fsf@ti.com>
Hi Kevin,
> -----Original Message-----
> From: Kevin Hilman [mailto:khilman@ti.com]
> Sent: Tuesday, January 25, 2011 3:39 AM
> To: Rajendra Nayak
> Cc: linux-omap@vger.kernel.org; paul@pwsan.com
> Subject: Re: [RFC 2/3] OMAP3: PM: Fix CLK_SRC mask for IVA2 and MPU on
3430ES2PLUS
>
> Rajendra Nayak <rnayak@ti.com> writes:
>
> > The IVA2_CLK_SRC and MPU_CLK_SRC for OMAP3430 ES2
> > and above are 3 bit fields.
> > Define new masks for them, and since they are used
> > in a couple of clock nodes, model separate clock
> > nodes for 3430ES1 and 3430ES2+.
>
> This part should probably be separated out as a fix for the -rc cycle.
The reason I clubbed this fix here was because it had a dependency on the
'reference by name' approach added by the previous patch.
Else I was looking at creating too many duplicate nodes, since the clock
nodes which get added in this patch (dpll1_fck_3430es2/dpll2_fck_3430es2)
are part of dpll_data.
Regards,
Rajendra
>
> Kevin
>
> > Also change reference to these new clock nodes
> > from clk pointers to clk name and make a call
> > to omap_init_clk_pts to init the pointers at
> > run time.
> >
> > Signed-off-by: Rajendra Nayak <rnayak@ti.com>
> > ---
> > arch/arm/mach-omap2/clock3xxx_data.c | 39
++++++++++++++++++++++++++------
> > arch/arm/mach-omap2/cm-regbits-34xx.h | 2 +
> > 2 files changed, 33 insertions(+), 8 deletions(-)
> >
> > diff --git a/arch/arm/mach-omap2/clock3xxx_data.c
b/arch/arm/mach-omap2/clock3xxx_data.c
> > index 9c87adb..c3a7ff5 100644
> > --- a/arch/arm/mach-omap2/clock3xxx_data.c
> > +++ b/arch/arm/mach-omap2/clock3xxx_data.c
> > @@ -53,10 +53,6 @@
> > * DPLL5 supplies other peripheral clocks (USBHOST, USIM).
> > */
> >
> > -/* Forward declarations for DPLL bypass clocks */
> > -static struct clk dpll1_fck;
> > -static struct clk dpll2_fck;
> > -
> > /* PRM CLOCKS */
> >
> > /* According to timer32k.c, this is a 32768Hz clock, not a 32000Hz
clock. */
> > @@ -275,7 +271,7 @@ static struct dpll_data dpll1_dd = {
> > .mult_div1_reg = OMAP_CM_REGADDR(MPU_MOD,
OMAP3430_CM_CLKSEL1_PLL),
> > .mult_mask = OMAP3430_MPU_DPLL_MULT_MASK,
> > .div1_mask = OMAP3430_MPU_DPLL_DIV_MASK,
> > - .clk_bypass = &dpll1_fck,
> > + .clk_bypass_name = "dpll1_fck",
> > .clk_ref = &sys_ck,
> > .freqsel_mask = OMAP3430_MPU_DPLL_FREQSEL_MASK,
> > .control_reg = OMAP_CM_REGADDR(MPU_MOD, OMAP3430_CM_CLKEN_PLL),
> > @@ -347,7 +343,7 @@ static struct dpll_data dpll2_dd = {
> > .mult_div1_reg = OMAP_CM_REGADDR(OMAP3430_IVA2_MOD,
OMAP3430_CM_CLKSEL1_PLL),
> > .mult_mask = OMAP3430_IVA2_DPLL_MULT_MASK,
> > .div1_mask = OMAP3430_IVA2_DPLL_DIV_MASK,
> > - .clk_bypass = &dpll2_fck,
> > + .clk_bypass_name = "dpll2_fck",
> > .clk_ref = &sys_ck,
> > .freqsel_mask = OMAP3430_IVA2_DPLL_FREQSEL_MASK,
> > .control_reg = OMAP_CM_REGADDR(OMAP3430_IVA2_MOD,
OMAP3430_CM_CLKEN_PLL),
> > @@ -1077,6 +1073,17 @@ static struct clk dpll1_fck = {
> > .recalc = &omap2_clksel_recalc,
> > };
> >
> > +static struct clk dpll1_fck_3430es2 = {
> > + .name = "dpll1_fck",
> > + .ops = &clkops_null,
> > + .parent = &core_ck,
> > + .init = &omap2_init_clksel_parent,
> > + .clksel_reg = OMAP_CM_REGADDR(MPU_MOD,
OMAP3430_CM_CLKSEL1_PLL),
> > + .clksel_mask = OMAP3430ES2_MPU_CLK_SRC_MASK,
> > + .clksel = div4_core_clksel,
> > + .recalc = &omap2_clksel_recalc,
> > +};
> > +
> > static struct clk mpu_ck = {
> > .name = "mpu_ck",
> > .ops = &clkops_null,
> > @@ -1133,6 +1140,17 @@ static struct clk dpll2_fck = {
> > .recalc = &omap2_clksel_recalc,
> > };
> >
> > +static struct clk dpll2_fck_3430es2 = {
> > + .name = "dpll2_fck",
> > + .ops = &clkops_null,
> > + .parent = &core_ck,
> > + .init = &omap2_init_clksel_parent,
> > + .clksel_reg = OMAP_CM_REGADDR(OMAP3430_IVA2_MOD,
OMAP3430_CM_CLKSEL1_PLL),
> > + .clksel_mask = OMAP3430ES2_IVA2_CLK_SRC_MASK,
> > + .clksel = div4_core_clksel,
> > + .recalc = &omap2_clksel_recalc,
> > +};
> > +
> > static struct clk iva2_ck = {
> > .name = "iva2_ck",
> > .ops = &clkops_omap2_dflt_wait,
> > @@ -3261,11 +3279,13 @@ static struct omap_clk omap3xxx_clks[] = {
> > CLK(NULL, "clkout2_src_ck", &clkout2_src_ck, CK_3XXX),
> > CLK(NULL, "sys_clkout2", &sys_clkout2, CK_3XXX),
> > CLK(NULL, "corex2_fck", &corex2_fck, CK_3XXX),
> > - CLK(NULL, "dpll1_fck", &dpll1_fck, CK_3XXX),
> > + CLK(NULL, "dpll1_fck", &dpll1_fck, CK_3430ES1),
> > + CLK(NULL, "dpll1_fck", &dpll1_fck_3430es2,
CK_3430ES2PLUS | CK_AM35XX | CK_36XX),
> > CLK(NULL, "mpu_ck", &mpu_ck, CK_3XXX),
> > CLK(NULL, "arm_fck", &arm_fck, CK_3XXX),
> > CLK("etb", "emu_mpu_alwon_ck", &emu_mpu_alwon_ck, CK_3XXX),
> > - CLK(NULL, "dpll2_fck", &dpll2_fck, CK_34XX |
CK_36XX),
> > + CLK(NULL, "dpll2_fck", &dpll2_fck, CK_3430ES1),
> > + CLK(NULL, "dpll2_fck", &dpll2_fck_3430es2,
CK_3430ES2PLUS | CK_36XX),
> > CLK(NULL, "iva2_ck", &iva2_ck, CK_34XX |
CK_36XX),
> > CLK(NULL, "l3_ick", &l3_ick, CK_3XXX),
> > CLK(NULL, "l4_ick", &l4_ick, CK_3XXX),
> > @@ -3535,6 +3555,9 @@ int __init omap3xxx_clk_init(void)
> > omap2_init_clk_clkdm(c->lk.clk);
> > }
> >
> > + /* Initialise clk pointers for parent/ref/bypass clks */
> > + omap_init_clk_pts();
> > +
> > recalculate_root_clocks();
> >
> > pr_info("Clocking rate (Crystal/Core/MPU): %ld.%01ld/%ld/%ld
MHz\n",
> > diff --git a/arch/arm/mach-omap2/cm-regbits-34xx.h
b/arch/arm/mach-omap2/cm-regbits-34xx.h
> > index b912759..fd80872 100644
> > --- a/arch/arm/mach-omap2/cm-regbits-34xx.h
> > +++ b/arch/arm/mach-omap2/cm-regbits-34xx.h
> > @@ -80,6 +80,7 @@
> > /* CM_CLKSEL1_PLL_IVA2 */
> > #define OMAP3430_IVA2_CLK_SRC_SHIFT 19
> > #define OMAP3430_IVA2_CLK_SRC_MASK (0x3 << 19)
> > +#define OMAP3430ES2_IVA2_CLK_SRC_MASK (0x7 <<
19)
> > #define OMAP3430_IVA2_DPLL_MULT_SHIFT 8
> > #define OMAP3430_IVA2_DPLL_MULT_MASK (0x7ff <<
8)
> > #define OMAP3430_IVA2_DPLL_DIV_SHIFT 0
> > @@ -125,6 +126,7 @@
> > /* CM_CLKSEL1_PLL_MPU */
> > #define OMAP3430_MPU_CLK_SRC_SHIFT 19
> > #define OMAP3430_MPU_CLK_SRC_MASK (0x3 << 19)
> > +#define OMAP3430ES2_MPU_CLK_SRC_MASK (0x7 <<
19)
> > #define OMAP3430_MPU_DPLL_MULT_SHIFT 8
> > #define OMAP3430_MPU_DPLL_MULT_MASK (0x7ff <<
8)
> > #define OMAP3430_MPU_DPLL_DIV_SHIFT 0
next prev parent reply other threads:[~2011-01-25 7:30 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-19 14:14 [RFC 0/3] Use clknames to reference parent/bypass/ref clks Rajendra Nayak
2011-01-19 14:14 ` [RFC 1/3] OMAP: clocks: Use clk names instead of clk pointers Rajendra Nayak
2011-01-19 14:14 ` [RFC 2/3] OMAP3: PM: Fix CLK_SRC mask for IVA2 and MPU on 3430ES2PLUS Rajendra Nayak
2011-01-19 14:14 ` [RFC 3/3] OMAP4: clocks: Remove unused clksel definitions Rajendra Nayak
2011-01-24 22:09 ` [RFC 2/3] OMAP3: PM: Fix CLK_SRC mask for IVA2 and MPU on 3430ES2PLUS Kevin Hilman
2011-01-25 7:24 ` Rajendra Nayak [this message]
2011-01-25 15:58 ` Kevin Hilman
2011-01-27 2:43 ` Rajendra Nayak
2011-01-19 15:19 ` [RFC 1/3] OMAP: clocks: Use clk names instead of clk pointers Felipe Balbi
2011-01-20 5:33 ` Rajendra Nayak
2011-01-20 6:26 ` Felipe Balbi
2011-01-20 6:28 ` Rajendra Nayak
2011-01-24 22:08 ` Kevin Hilman
2011-01-25 7:21 ` Rajendra Nayak
2011-01-25 15:57 ` Kevin Hilman
2011-01-27 2:42 ` Rajendra Nayak
2011-02-16 12:22 ` [RFC 0/3] Use clknames to reference parent/bypass/ref clks Rajendra Nayak
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=d1d35c9cad65b4eb1eade2e7bf93125d@mail.gmail.com \
--to=rnayak@ti.com \
--cc=khilman@ti.com \
--cc=linux-omap@vger.kernel.org \
--cc=paul@pwsan.com \
/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