public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] 85xx, 86xx: Determine I2C clock frequencies and store in global_data
@ 2008-01-09 20:35 Timur Tabi
  2008-01-23 20:29 ` Timur Tabi
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Timur Tabi @ 2008-01-09 20:35 UTC (permalink / raw)
  To: u-boot

Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.

Update the get_clocks() function in 85xx and 86xx to determine the I2C
clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.

Signed-off-by: Timur Tabi <timur@freescale.com>
---
 cpu/mpc85xx/speed.c           |    3 +++
 cpu/mpc86xx/speed.c           |    2 ++
 include/asm-ppc/global_data.h |    6 ++++--
 3 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/cpu/mpc85xx/speed.c b/cpu/mpc85xx/speed.c
index 27de37a..952f30c 100644
--- a/cpu/mpc85xx/speed.c
+++ b/cpu/mpc85xx/speed.c
@@ -75,6 +75,9 @@ int get_clocks (void)
 	get_sys_info (&sys_info);
 	gd->cpu_clk = sys_info.freqProcessor;
 	gd->bus_clk = sys_info.freqSystemBus;
+	gd->i2c1_clk = sys_info.freqSystemBus;
+	gd->i2c2_clk = sys_info.freqSystemBus;
+
 #if defined(CONFIG_CPM2)
 	gd->vco_out = 2*sys_info.freqSystemBus;
 	gd->cpm_clk = gd->vco_out / 2;
diff --git a/cpu/mpc86xx/speed.c b/cpu/mpc86xx/speed.c
index 4f7e8f1..7e884f8 100644
--- a/cpu/mpc86xx/speed.c
+++ b/cpu/mpc86xx/speed.c
@@ -105,6 +105,8 @@ int get_clocks(void)
 	get_sys_info(&sys_info);
 	gd->cpu_clk = sys_info.freqProcessor;
 	gd->bus_clk = sys_info.freqSystemBus;
+	gd->i2c1_clk = sys_info.freqSystemBus;
+	gd->i2c2_clk = sys_info.freqSystemBus;
 
 	if (gd->cpu_clk != 0)
 		return 0;
diff --git a/include/asm-ppc/global_data.h b/include/asm-ppc/global_data.h
index 91acf9b..d796c53 100644
--- a/include/asm-ppc/global_data.h
+++ b/include/asm-ppc/global_data.h
@@ -70,8 +70,6 @@ typedef	struct	global_data {
 	u32 sdhc_clk;
 #endif
 	u32 core_clk;
-	u32 i2c1_clk;
-	u32 i2c2_clk;
 	u32 enc_clk;
 	u32 lbiu_clk;
 	u32 lclk_clk;
@@ -88,6 +86,10 @@ typedef	struct	global_data {
 	u32  ddr_sec_clk;
 #endif /* CONFIG_MPC8360 */
 #endif
+#if defined(CONFIG_MPC83XX) || defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
+	u32 i2c1_clk;
+	u32 i2c2_clk;
+#endif
 #if defined(CONFIG_QE)
 	u32 qe_clk;
 	u32 brg_clk;
-- 
1.5.2.4

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [U-Boot-Users] 85xx, 86xx: Determine I2C clock frequencies and store in global_data
  2008-01-09 20:35 [U-Boot-Users] 85xx, 86xx: Determine I2C clock frequencies and store in global_data Timur Tabi
@ 2008-01-23 20:29 ` Timur Tabi
  2008-01-23 22:02 ` Andy Fleming
  2008-02-14 22:32 ` Wolfgang Denk
  2 siblings, 0 replies; 8+ messages in thread
From: Timur Tabi @ 2008-01-23 20:29 UTC (permalink / raw)
  To: u-boot

Timur Tabi wrote:
> Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
> 
> Update the get_clocks() function in 85xx and 86xx to determine the I2C
> clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.

Is there a reason why this patch was never picked up for the 1.3.2 merge window? 
  I posted it on the ninth and emailed both of you a couple times about it.

-- 
Timur Tabi
Linux kernel developer at Freescale

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot-Users] 85xx, 86xx: Determine I2C clock frequencies and store in global_data
  2008-01-09 20:35 [U-Boot-Users] 85xx, 86xx: Determine I2C clock frequencies and store in global_data Timur Tabi
  2008-01-23 20:29 ` Timur Tabi
@ 2008-01-23 22:02 ` Andy Fleming
  2008-01-23 22:12   ` Jon Loeliger
  2008-02-14 22:32 ` Wolfgang Denk
  2 siblings, 1 reply; 8+ messages in thread
From: Andy Fleming @ 2008-01-23 22:02 UTC (permalink / raw)
  To: u-boot

On Jan 9, 2008 2:35 PM, Timur Tabi <timur@freescale.com> wrote:
> Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
>
> Update the get_clocks() function in 85xx and 86xx to determine the I2C
> clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
>
> Signed-off-by: Timur Tabi <timur@freescale.com>

Acked-by: Andy Fleming <afleming@freescale.com>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot-Users] 85xx, 86xx: Determine I2C clock frequencies and store in global_data
  2008-01-23 22:02 ` Andy Fleming
@ 2008-01-23 22:12   ` Jon Loeliger
  2008-02-04 23:20     ` Wolfgang Denk
  0 siblings, 1 reply; 8+ messages in thread
From: Jon Loeliger @ 2008-01-23 22:12 UTC (permalink / raw)
  To: u-boot

Andy Fleming wrote:
> On Jan 9, 2008 2:35 PM, Timur Tabi <timur@freescale.com> wrote:
>> Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
>>
>> Update the get_clocks() function in 85xx and 86xx to determine the I2C
>> clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
>>
>> Signed-off-by: Timur Tabi <timur@freescale.com>
> 
> Acked-by: Andy Fleming <afleming@freescale.com>

Acked-by: Jon Loeliger <jdl@freescale.com>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot-Users] 85xx, 86xx: Determine I2C clock frequencies and store in global_data
  2008-01-23 22:12   ` Jon Loeliger
@ 2008-02-04 23:20     ` Wolfgang Denk
  2008-02-04 23:22       ` Jon Loeliger
  0 siblings, 1 reply; 8+ messages in thread
From: Wolfgang Denk @ 2008-02-04 23:20 UTC (permalink / raw)
  To: u-boot

Hello Andy & Jon,

in message <4797BBB7.4040207@freescale.com> Jon wrote:
> Andy Fleming wrote:
> > On Jan 9, 2008 2:35 PM, Timur Tabi <timur@freescale.com> wrote:
> >> Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
> >>
> >> Update the get_clocks() function in 85xx and 86xx to determine the I2C
> >> clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
> >>
> >> Signed-off-by: Timur Tabi <timur@freescale.com>
> > 
> > Acked-by: Andy Fleming <afleming@freescale.com>
> 
> Acked-by: Jon Loeliger <jdl@freescale.com>

I rely on either of you picking this up and applying it to his
custodian repo. Please confirm.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"If anything can go wrong, it will."                   - Edsel Murphy

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot-Users] 85xx, 86xx: Determine I2C clock frequencies and store in global_data
  2008-02-04 23:20     ` Wolfgang Denk
@ 2008-02-04 23:22       ` Jon Loeliger
  2008-02-05  0:59         ` Andy Fleming
  0 siblings, 1 reply; 8+ messages in thread
From: Jon Loeliger @ 2008-02-04 23:22 UTC (permalink / raw)
  To: u-boot

Wolfgang Denk wrote:
> Hello Andy & Jon,
> 
> in message <4797BBB7.4040207@freescale.com> Jon wrote:
>> Andy Fleming wrote:
>>> On Jan 9, 2008 2:35 PM, Timur Tabi <timur@freescale.com> wrote:
>>>> Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
>>>>
>>>> Update the get_clocks() function in 85xx and 86xx to determine the I2C
>>>> clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
>>>>
>>>> Signed-off-by: Timur Tabi <timur@freescale.com>
>>> Acked-by: Andy Fleming <afleming@freescale.com>
>> Acked-by: Jon Loeliger <jdl@freescale.com>
> 
> I rely on either of you picking this up and applying it to his
> custodian repo. Please confirm.
> 
> Best regards,
> 
> Wolfgang Denk
> 

Andy, Can you get this one please?

Thanks,
jdl

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot-Users] 85xx, 86xx: Determine I2C clock frequencies and store in global_data
  2008-02-04 23:22       ` Jon Loeliger
@ 2008-02-05  0:59         ` Andy Fleming
  0 siblings, 0 replies; 8+ messages in thread
From: Andy Fleming @ 2008-02-05  0:59 UTC (permalink / raw)
  To: u-boot

On Feb 4, 2008 5:22 PM, Jon Loeliger <jdl@freescale.com> wrote:
> >>> On Jan 9, 2008 2:35 PM, Timur Tabi <timur@freescale.com> wrote:
> >>>> Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
> >>>>
> >>>> Update the get_clocks() function in 85xx and 86xx to determine the I2C
> >>>> clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
> >>>>
> >>>> Signed-off-by: Timur Tabi <timur@freescale.com>


>
> Andy, Can you get this one please?

Applied, thanks

>
> Thanks,
> jdl
>
>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [U-Boot-Users] 85xx, 86xx: Determine I2C clock frequencies and store in global_data
  2008-01-09 20:35 [U-Boot-Users] 85xx, 86xx: Determine I2C clock frequencies and store in global_data Timur Tabi
  2008-01-23 20:29 ` Timur Tabi
  2008-01-23 22:02 ` Andy Fleming
@ 2008-02-14 22:32 ` Wolfgang Denk
  2 siblings, 0 replies; 8+ messages in thread
From: Wolfgang Denk @ 2008-02-14 22:32 UTC (permalink / raw)
  To: u-boot

In message <11999109263282-git-send-email-timur@freescale.com> you wrote:
> Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
> 
> Update the get_clocks() function in 85xx and 86xx to determine the I2C
> clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
> 
> Signed-off-by: Timur Tabi <timur@freescale.com>
> ---
>  cpu/mpc85xx/speed.c           |    3 +++
>  cpu/mpc86xx/speed.c           |    2 ++
>  include/asm-ppc/global_data.h |    6 ++++--
>  3 files changed, 9 insertions(+), 2 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Of all the things I've lost, I miss my mind the most.

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2008-02-14 22:32 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-09 20:35 [U-Boot-Users] 85xx, 86xx: Determine I2C clock frequencies and store in global_data Timur Tabi
2008-01-23 20:29 ` Timur Tabi
2008-01-23 22:02 ` Andy Fleming
2008-01-23 22:12   ` Jon Loeliger
2008-02-04 23:20     ` Wolfgang Denk
2008-02-04 23:22       ` Jon Loeliger
2008-02-05  0:59         ` Andy Fleming
2008-02-14 22:32 ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox