* [U-Boot] [PATCH] ARM: S3C64XX: fix clock setup
@ 2010-11-12 18:05 Darius Augulis
2010-11-19 8:32 ` Minkyu Kang
0 siblings, 1 reply; 7+ messages in thread
From: Darius Augulis @ 2010-11-12 18:05 UTC (permalink / raw)
To: u-boot
Fix pll divider values to standard ones described
in "S3C6410X RISC Microprocessor User's Manual,
Revision 1.20", p. 3-21.
Signed-off-by: Darius Augulis <augulis.darius@gmail.com>
---
arch/arm/include/asm/arch-s3c64xx/s3c6400.h | 17 ++++++-----------
1 files changed, 6 insertions(+), 11 deletions(-)
diff --git a/arch/arm/include/asm/arch-s3c64xx/s3c6400.h b/arch/arm/include/asm/arch-s3c64xx/s3c6400.h
index 10b3324..a197b4e 100644
--- a/arch/arm/include/asm/arch-s3c64xx/s3c6400.h
+++ b/arch/arm/include/asm/arch-s3c64xx/s3c6400.h
@@ -762,24 +762,19 @@
#define TIMER3_ON (TCON_3_ONOFF * 1)
#define TIMER3_OFF (FClrBit(TCON, TCON_3_ONOFF))
-#if defined(CONFIG_CLK_400_100_50)
+#if defined(CONFIG_CLK_400_133_66)
#define STARTUP_AMDIV 400
#define STARTUP_MDIV 400
-#define STARTUP_PDIV 6
-#define STARTUP_SDIV 1
-#elif defined(CONFIG_CLK_400_133_66)
-#define STARTUP_AMDIV 400
-#define STARTUP_MDIV 533
-#define STARTUP_PDIV 6
-#define STARTUP_SDIV 1
+#define STARTUP_PDIV 3
+#define STARTUP_SDIV 2
#elif defined(CONFIG_CLK_533_133_66)
#define STARTUP_AMDIV 533
-#define STARTUP_MDIV 533
-#define STARTUP_PDIV 6
+#define STARTUP_MDIV 266
+#define STARTUP_PDIV 3
#define STARTUP_SDIV 1
#elif defined(CONFIG_CLK_667_133_66)
#define STARTUP_AMDIV 667
-#define STARTUP_MDIV 533
+#define STARTUP_MDIV 333
#define STARTUP_PDIV 6
#define STARTUP_SDIV 1
#endif
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH] ARM: S3C64XX: fix clock setup
2010-11-12 18:05 [U-Boot] [PATCH] ARM: S3C64XX: fix clock setup Darius Augulis
@ 2010-11-19 8:32 ` Minkyu Kang
2010-11-19 8:54 ` Darius Augulis
0 siblings, 1 reply; 7+ messages in thread
From: Minkyu Kang @ 2010-11-19 8:32 UTC (permalink / raw)
To: u-boot
Dear Darius Augulis,
On 13 November 2010 03:05, Darius Augulis <augulis.darius@gmail.com> wrote:
> Fix pll divider values to standard ones described
> in "S3C6410X RISC Microprocessor User's Manual,
> Revision 1.20", p. 3-21.
>
> Signed-off-by: Darius Augulis <augulis.darius@gmail.com>
> ---
> ?arch/arm/include/asm/arch-s3c64xx/s3c6400.h | ? 17 ++++++-----------
> ?1 files changed, 6 insertions(+), 11 deletions(-)
>
Hm, no..
Please consider s3c6400.
Those values are fit with s3c6400.
Thanks
Minkyu Kang
--
from. prom.
www.promsoft.net
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH] ARM: S3C64XX: fix clock setup
2010-11-19 8:32 ` Minkyu Kang
@ 2010-11-19 8:54 ` Darius Augulis
2010-11-22 8:48 ` Minkyu Kang
0 siblings, 1 reply; 7+ messages in thread
From: Darius Augulis @ 2010-11-19 8:54 UTC (permalink / raw)
To: u-boot
Hi,
On Fri, Nov 19, 2010 at 10:32 AM, Minkyu Kang <promsoft@gmail.com> wrote:
> Dear Darius Augulis,
>
> On 13 November 2010 03:05, Darius Augulis <augulis.darius@gmail.com> wrote:
>> Fix pll divider values to standard ones described
>> in "S3C6410X RISC Microprocessor User's Manual,
>> Revision 1.20", p. 3-21.
>>
>> Signed-off-by: Darius Augulis <augulis.darius@gmail.com>
>> ---
>> ?arch/arm/include/asm/arch-s3c64xx/s3c6400.h | ? 17 ++++++-----------
>> ?1 files changed, 6 insertions(+), 11 deletions(-)
>>
>
> Hm, no..
> Please consider s3c6400.
> Those values are fit with s3c6400.
does s3c6400 have different clock controller compared to s3c6410?
I have only old manual of s3c6400 and it has the same equation for pll
clock setting.
Please take a look into arch/arm/cpu/arm1176/s3c64xx/speed.c. There
are common functions for both CPU's and
they work ok. So i guess my patch should not break s3c6400 operation.
Btw, we don't have any working s3c6400 board in main line and it seems
nobody is interested to have one.
Darius.
>
> Thanks
> Minkyu Kang
> --
> from. prom.
> www.promsoft.net
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH] ARM: S3C64XX: fix clock setup
2010-11-19 8:54 ` Darius Augulis
@ 2010-11-22 8:48 ` Minkyu Kang
2010-11-22 17:44 ` Darius Augulis
0 siblings, 1 reply; 7+ messages in thread
From: Minkyu Kang @ 2010-11-22 8:48 UTC (permalink / raw)
To: u-boot
Dear Darius Augulis,
On 19 November 2010 17:54, Darius Augulis <augulis.darius@gmail.com> wrote:
> Hi,
>
> On Fri, Nov 19, 2010 at 10:32 AM, Minkyu Kang <promsoft@gmail.com> wrote:
>> Dear Darius Augulis,
>>
>> On 13 November 2010 03:05, Darius Augulis <augulis.darius@gmail.com> wrote:
>>> Fix pll divider values to standard ones described
>>> in "S3C6410X RISC Microprocessor User's Manual,
>>> Revision 1.20", p. 3-21.
>>>
>>> Signed-off-by: Darius Augulis <augulis.darius@gmail.com>
>>> ---
>>> ?arch/arm/include/asm/arch-s3c64xx/s3c6400.h | ? 17 ++++++-----------
>>> ?1 files changed, 6 insertions(+), 11 deletions(-)
>>>
>>
>> Hm, no..
>> Please consider s3c6400.
>> Those values are fit with s3c6400.
>
> does s3c6400 have different clock controller compared to s3c6410?
> I have only old manual of s3c6400 and it has the same equation for pll
> clock setting.
> Please take a look into arch/arm/cpu/arm1176/s3c64xx/speed.c. There
> are common functions for both CPU's and
> they work ok. So i guess my patch should not break s3c6400 operation.
According to the TRM...
Equations are same. but, recommended values are different.
Your patch is no guarantee with s3c6400.
Did you tested with s3c6400?
> Btw, we don't have any working s3c6400 board in main line and it seems
> nobody is interested to have one.
We have the SMDK6400.
Thanks
Minkyu Kang
--
from. prom.
www.promsoft.net
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH] ARM: S3C64XX: fix clock setup
2010-11-22 8:48 ` Minkyu Kang
@ 2010-11-22 17:44 ` Darius Augulis
2010-11-22 17:55 ` Albert ARIBAUD
2010-11-23 8:51 ` Minkyu Kang
0 siblings, 2 replies; 7+ messages in thread
From: Darius Augulis @ 2010-11-22 17:44 UTC (permalink / raw)
To: u-boot
Hi,
On 11/22/2010 10:48 AM, Minkyu Kang wrote:
> Dear Darius Augulis,
>
> On 19 November 2010 17:54, Darius Augulis<augulis.darius@gmail.com> wrote:
>> Hi,
>>
>> On Fri, Nov 19, 2010 at 10:32 AM, Minkyu Kang<promsoft@gmail.com> wrote:
>>> Dear Darius Augulis,
>>>
>>> On 13 November 2010 03:05, Darius Augulis<augulis.darius@gmail.com> wrote:
>>>> Fix pll divider values to standard ones described
>>>> in "S3C6410X RISC Microprocessor User's Manual,
>>>> Revision 1.20", p. 3-21.
>>>>
>>>> Signed-off-by: Darius Augulis<augulis.darius@gmail.com>
>>>> ---
>>>> arch/arm/include/asm/arch-s3c64xx/s3c6400.h | 17 ++++++-----------
>>>> 1 files changed, 6 insertions(+), 11 deletions(-)
>>>>
>>>
>>> Hm, no..
>>> Please consider s3c6400.
>>> Those values are fit with s3c6400.
>>
>> does s3c6400 have different clock controller compared to s3c6410?
>> I have only old manual of s3c6400 and it has the same equation for pll
>> clock setting.
>> Please take a look into arch/arm/cpu/arm1176/s3c64xx/speed.c. There
>> are common functions for both CPU's and
>> they work ok. So i guess my patch should not break s3c6400 operation.
>
> According to the TRM...
what does this abbreviation mean?
> Equations are same. but, recommended values are different.
you are wrong. There is table in s3c6400 manual, but it doesn't contain
recommended values, only examples how to calculate. Please find default
values in APLL_CON, MPLL_CON and EPLL_CON0 registers. After reset,
default frequency of APLL/MPLL for both s3c6400 and s3c6410 are
400MHz/133MHz respectively. But values in table in s3c6400 manual do not
fit default register values for these frequencies. And recommended
values in s3c6410 manual do. Therefore I suggest to use values from
s3c6410 manual.
> Your patch is no guarantee with s3c6400.
> Did you tested with s3c6400?
no. please see next comment below.
>
>> Btw, we don't have any working s3c6400 board in main line and it seems
>> nobody is interested to have one.
>
> We have the SMDK6400.
you are wrong there again. it does not compile at all. for a long time
enough.
Darius.
>
> Thanks
> Minkyu Kang
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH] ARM: S3C64XX: fix clock setup
2010-11-22 17:44 ` Darius Augulis
@ 2010-11-22 17:55 ` Albert ARIBAUD
2010-11-23 8:51 ` Minkyu Kang
1 sibling, 0 replies; 7+ messages in thread
From: Albert ARIBAUD @ 2010-11-22 17:55 UTC (permalink / raw)
To: u-boot
Le 22/11/2010 18:44, Darius Augulis a ?crit :
>> According to the TRM...
>
> what does this abbreviation mean?
Technical Reference Manual.
Amicalement,
--
Albert.
^ permalink raw reply [flat|nested] 7+ messages in thread
* [U-Boot] [PATCH] ARM: S3C64XX: fix clock setup
2010-11-22 17:44 ` Darius Augulis
2010-11-22 17:55 ` Albert ARIBAUD
@ 2010-11-23 8:51 ` Minkyu Kang
1 sibling, 0 replies; 7+ messages in thread
From: Minkyu Kang @ 2010-11-23 8:51 UTC (permalink / raw)
To: u-boot
Dear Darius Augulis,
On 23 November 2010 02:44, Darius Augulis <augulis.darius@gmail.com> wrote:
> Hi,
>
> On 11/22/2010 10:48 AM, Minkyu Kang wrote:
>>
>> Dear Darius Augulis,
>>
>> On 19 November 2010 17:54, Darius Augulis<augulis.darius@gmail.com>
>> ?wrote:
>>>
>>> Hi,
>>>
>>> On Fri, Nov 19, 2010 at 10:32 AM, Minkyu Kang<promsoft@gmail.com> ?wrote:
>>>>
>>>> Dear Darius Augulis,
>>>>
>>>> On 13 November 2010 03:05, Darius Augulis<augulis.darius@gmail.com>
>>>> ?wrote:
>>>>>
>>>>> Fix pll divider values to standard ones described
>>>>> in "S3C6410X RISC Microprocessor User's Manual,
>>>>> Revision 1.20", p. 3-21.
>>>>>
>>>>> Signed-off-by: Darius Augulis<augulis.darius@gmail.com>
>>>>> ---
>>>>> ?arch/arm/include/asm/arch-s3c64xx/s3c6400.h | ? 17 ++++++-----------
>>>>> ?1 files changed, 6 insertions(+), 11 deletions(-)
>>>>>
>>>>
>>>> Hm, no..
>>>> Please consider s3c6400.
>>>> Those values are fit with s3c6400.
>>>
>>> does s3c6400 have different clock controller compared to s3c6410?
>>> I have only old manual of s3c6400 and it has the same equation for pll
>>> clock setting.
>>> Please take a look into arch/arm/cpu/arm1176/s3c64xx/speed.c. There
>>> are common functions for both CPU's and
>>> they work ok. So i guess my patch should not break s3c6400 operation.
>>
>> According to the TRM...
>
> what does this abbreviation mean?
>
>> Equations are same. but, recommended values are different.
>
> you are wrong. There is table in s3c6400 manual, but it doesn't contain
> recommended values, only examples how to calculate. Please find default
> values in APLL_CON, MPLL_CON and EPLL_CON0 registers. After reset, default
> frequency of APLL/MPLL for both s3c6400 and s3c6410 are 400MHz/133MHz
> respectively. But values in table in s3c6400 manual do not fit default
> register values for these frequencies. And recommended values in s3c6410
> manual do. Therefore I suggest to use values from s3c6410 manual.
It's not clear.
I didn't said that your patch is wrong.
I just asked you please consider s3c6400.
If you or someone else do test your patch on s3c6400 then I'll accept
your patch.
Or, if you separate setup values from s3c6400 then I'll accept your patch.
In this case, when somebody test your patch, then we can share values
between s3c6400 and s3c6410.
>
>> Your patch is no guarantee with s3c6400.
>> Did you tested with s3c6400?
>
> no. please see next comment below.
>
>>
>>> Btw, we don't have any working s3c6400 board in main line and it seems
>>> nobody is interested to have one.
>>
>> We have the SMDK6400.
>
> you are wrong there again. it does not compile at all. for a long time
> enough.
So we should drop this board?
No. I don't think so.
We (me or you or someone else) must fix it.
Thanks
Minkyu Kang
--
from. prom.
www.promsoft.net
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2010-11-23 8:51 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-12 18:05 [U-Boot] [PATCH] ARM: S3C64XX: fix clock setup Darius Augulis
2010-11-19 8:32 ` Minkyu Kang
2010-11-19 8:54 ` Darius Augulis
2010-11-22 8:48 ` Minkyu Kang
2010-11-22 17:44 ` Darius Augulis
2010-11-22 17:55 ` Albert ARIBAUD
2010-11-23 8:51 ` Minkyu Kang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox