* [U-Boot] [PATCH] am33xx: add SSC enable macro
@ 2014-04-10 9:35 yegorslists at googlemail.com
2014-04-17 18:31 ` Tom Rini
0 siblings, 1 reply; 4+ messages in thread
From: yegorslists at googlemail.com @ 2014-04-10 9:35 UTC (permalink / raw)
To: u-boot
From: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
arch/arm/include/asm/arch-am33xx/clock.h | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/arch/arm/include/asm/arch-am33xx/clock.h b/arch/arm/include/asm/arch-am33xx/clock.h
index 7637457..f00fad3 100644
--- a/arch/arm/include/asm/arch-am33xx/clock.h
+++ b/arch/arm/include/asm/arch-am33xx/clock.h
@@ -42,6 +42,8 @@
#define MODULE_CLKCTRL_IDLEST_DISABLED 3
/* CM_CLKMODE_DPLL */
+#define CM_CLKMODE_DPLL_SSC_EN_SHIFT 12
+#define CM_CLKMODE_DPLL_SSC_EN_MASK (1 << 12)
#define CM_CLKMODE_DPLL_REGM4XEN_SHIFT 11
#define CM_CLKMODE_DPLL_REGM4XEN_MASK (1 << 11)
#define CM_CLKMODE_DPLL_LPMODE_EN_SHIFT 10
--
1.7.7
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] am33xx: add SSC enable macro
2014-04-10 9:35 [U-Boot] [PATCH] am33xx: add SSC enable macro yegorslists at googlemail.com
@ 2014-04-17 18:31 ` Tom Rini
2014-04-18 14:29 ` Yegor Yefremov
0 siblings, 1 reply; 4+ messages in thread
From: Tom Rini @ 2014-04-17 18:31 UTC (permalink / raw)
To: u-boot
On Thu, Apr 10, 2014 at 11:35:25AM +0200, yegorslists at googlemail.com wrote:
> From: Yegor Yefremov <yegorslists@googlemail.com>
>
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> ---
> arch/arm/include/asm/arch-am33xx/clock.h | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/include/asm/arch-am33xx/clock.h b/arch/arm/include/asm/arch-am33xx/clock.h
> index 7637457..f00fad3 100644
> --- a/arch/arm/include/asm/arch-am33xx/clock.h
> +++ b/arch/arm/include/asm/arch-am33xx/clock.h
> @@ -42,6 +42,8 @@
> #define MODULE_CLKCTRL_IDLEST_DISABLED 3
>
> /* CM_CLKMODE_DPLL */
> +#define CM_CLKMODE_DPLL_SSC_EN_SHIFT 12
> +#define CM_CLKMODE_DPLL_SSC_EN_MASK (1 << 12)
> #define CM_CLKMODE_DPLL_REGM4XEN_SHIFT 11
> #define CM_CLKMODE_DPLL_REGM4XEN_MASK (1 << 11)
> #define CM_CLKMODE_DPLL_LPMODE_EN_SHIFT 10
OK, but what's going to use this? Thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140417/c10ab3ee/attachment.pgp>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] am33xx: add SSC enable macro
2014-04-17 18:31 ` Tom Rini
@ 2014-04-18 14:29 ` Yegor Yefremov
2014-04-18 14:39 ` Tom Rini
0 siblings, 1 reply; 4+ messages in thread
From: Yegor Yefremov @ 2014-04-18 14:29 UTC (permalink / raw)
To: u-boot
On Thu, Apr 17, 2014 at 8:31 PM, Tom Rini <trini@ti.com> wrote:
> On Thu, Apr 10, 2014 at 11:35:25AM +0200, yegorslists at googlemail.com wrote:
>
>> From: Yegor Yefremov <yegorslists@googlemail.com>
>>
>> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
>> ---
>> arch/arm/include/asm/arch-am33xx/clock.h | 2 ++
>> 1 files changed, 2 insertions(+), 0 deletions(-)
>>
>> diff --git a/arch/arm/include/asm/arch-am33xx/clock.h b/arch/arm/include/asm/arch-am33xx/clock.h
>> index 7637457..f00fad3 100644
>> --- a/arch/arm/include/asm/arch-am33xx/clock.h
>> +++ b/arch/arm/include/asm/arch-am33xx/clock.h
>> @@ -42,6 +42,8 @@
>> #define MODULE_CLKCTRL_IDLEST_DISABLED 3
>>
>> /* CM_CLKMODE_DPLL */
>> +#define CM_CLKMODE_DPLL_SSC_EN_SHIFT 12
>> +#define CM_CLKMODE_DPLL_SSC_EN_MASK (1 << 12)
>> #define CM_CLKMODE_DPLL_REGM4XEN_SHIFT 11
>> #define CM_CLKMODE_DPLL_REGM4XEN_MASK (1 << 11)
>> #define CM_CLKMODE_DPLL_LPMODE_EN_SHIFT 10
>
> OK, but what's going to use this? Thanks!
First of all me and Siemens folks. See
http://git.denx.de/?p=u-boot.git;a=blob;f=board/siemens/rut/board.c;h=e0ada3f6a5fa6edaabb29e5c87c62582f7ee7ea7;hb=HEAD
conf_disp_pll(). I'll send v2 with modified board.c file.
Yegor
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH] am33xx: add SSC enable macro
2014-04-18 14:29 ` Yegor Yefremov
@ 2014-04-18 14:39 ` Tom Rini
0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2014-04-18 14:39 UTC (permalink / raw)
To: u-boot
On Fri, Apr 18, 2014 at 04:29:41PM +0200, Yegor Yefremov wrote:
> On Thu, Apr 17, 2014 at 8:31 PM, Tom Rini <trini@ti.com> wrote:
> > On Thu, Apr 10, 2014 at 11:35:25AM +0200, yegorslists at googlemail.com wrote:
> >
> >> From: Yegor Yefremov <yegorslists@googlemail.com>
> >>
> >> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> >> ---
> >> arch/arm/include/asm/arch-am33xx/clock.h | 2 ++
> >> 1 files changed, 2 insertions(+), 0 deletions(-)
> >>
> >> diff --git a/arch/arm/include/asm/arch-am33xx/clock.h b/arch/arm/include/asm/arch-am33xx/clock.h
> >> index 7637457..f00fad3 100644
> >> --- a/arch/arm/include/asm/arch-am33xx/clock.h
> >> +++ b/arch/arm/include/asm/arch-am33xx/clock.h
> >> @@ -42,6 +42,8 @@
> >> #define MODULE_CLKCTRL_IDLEST_DISABLED 3
> >>
> >> /* CM_CLKMODE_DPLL */
> >> +#define CM_CLKMODE_DPLL_SSC_EN_SHIFT 12
> >> +#define CM_CLKMODE_DPLL_SSC_EN_MASK (1 << 12)
> >> #define CM_CLKMODE_DPLL_REGM4XEN_SHIFT 11
> >> #define CM_CLKMODE_DPLL_REGM4XEN_MASK (1 << 11)
> >> #define CM_CLKMODE_DPLL_LPMODE_EN_SHIFT 10
> >
> > OK, but what's going to use this? Thanks!
>
> First of all me and Siemens folks. See
> http://git.denx.de/?p=u-boot.git;a=blob;f=board/siemens/rut/board.c;h=e0ada3f6a5fa6edaabb29e5c87c62582f7ee7ea7;hb=HEAD
> conf_disp_pll(). I'll send v2 with modified board.c file.
Thanks!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140418/193511ec/attachment.pgp>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-04-18 14:39 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-10 9:35 [U-Boot] [PATCH] am33xx: add SSC enable macro yegorslists at googlemail.com
2014-04-17 18:31 ` Tom Rini
2014-04-18 14:29 ` Yegor Yefremov
2014-04-18 14:39 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox