* [U-Boot-Users] [PATCH] ARM: I2C Init function call in lib_arm/board.c
@ 2007-12-18 23:34 Hebbar
2007-12-18 23:48 ` Wolfgang Denk
2007-12-19 0:00 ` Hebbar
0 siblings, 2 replies; 4+ messages in thread
From: Hebbar @ 2007-12-18 23:34 UTC (permalink / raw)
To: u-boot
Hi,
we are working on a Customized ARM 926ejs Board. I am trying to port Uboot
for the same board. I found that few patches/changes/updates were required
for arm & ARM926 Specidifc Modules. Below are the Patches for the same
This Patch adds I2C init func call to init sequence for arm boards. This is
present in ppc,blackfin and other processor init sequence.
--- u-boot-1.3.1/lib_arm/board.c 2007-12-06 01:21:19.000000000 -0800
+++ uboot/lib_arm/board.c 2007-12-12 19:57:51.296875000 -0800
@@ -84,6 +84,11 @@ extern void cs8900_get_enetaddr (uchar *
extern void rtl8019_get_enetaddr (uchar * addr);
#endif
+#if defined(CONFIG_HARD_I2C) || \
+ defined(CONFIG_SOFT_I2C)
+#include <i2c.h>
+#endif
+
/*
* Begin and End of memory area for malloc(), and current "brk"
*/
@@ -209,6 +214,16 @@ static void display_flash_config (ulong
}
#endif /* CFG_NO_FLASH */
+#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
+static int init_func_i2c (void)
+{
+ puts ("I2C: ");
+ i2c_init (CFG_I2C_SPEED, CFG_I2C_SLAVE);
+ puts ("ready\n");
+ return (0);
+}
+#endif
+
/*
* Breathe some life into the board...
*
@@ -251,6 +266,9 @@ init_fnc_t *init_sequence[] = {
#if defined(CONFIG_DISPLAY_BOARDINFO)
checkboard, /* display board info */
#endif
+#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
+ init_func_i2c,
+#endif
dram_init, /* configure available RAM banks */
display_dram_config,
NULL,
Signed-off-by: Hebbar
I welcome comments, complaints, suggestions and advices.
Regards
Gururaja
--
View this message in context: http://www.nabble.com/-PATCH--ARM%3A-I2C-Init-function-call-in-lib_arm-board.c-tp14408151p14408151.html
Sent from the Uboot - Users mailing list archive at Nabble.com.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot-Users] [PATCH] ARM: I2C Init function call in lib_arm/board.c
2007-12-18 23:34 [U-Boot-Users] [PATCH] ARM: I2C Init function call in lib_arm/board.c Hebbar
@ 2007-12-18 23:48 ` Wolfgang Denk
2007-12-19 0:00 ` Hebbar
1 sibling, 0 replies; 4+ messages in thread
From: Wolfgang Denk @ 2007-12-18 23:48 UTC (permalink / raw)
To: u-boot
In message <14408151.post@talk.nabble.com> you wrote:
>
> This Patch adds I2C init func call to init sequence for arm boards. This is
> present in ppc,blackfin and other processor init sequence.
...
>
> Signed-off-by: Hebbar
Please provide a correct S-o-b line; it must contain your full name
and mail address. Please see
http://www.denx.de/cgi-bin/gitweb.cgi?p=linux-2.6-denx.git;a=blob;f=Documentation/SubmittingPatches
for details.
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
All your people must learn before you can reach for the stars.
-- Kirk, "The Gamesters of Triskelion", stardate 3259.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot-Users] [PATCH] ARM: I2C Init function call in lib_arm/board.c
2007-12-18 23:34 [U-Boot-Users] [PATCH] ARM: I2C Init function call in lib_arm/board.c Hebbar
2007-12-18 23:48 ` Wolfgang Denk
@ 2007-12-19 0:00 ` Hebbar
2008-02-04 22:02 ` Wolfgang Denk
1 sibling, 1 reply; 4+ messages in thread
From: Hebbar @ 2007-12-19 0:00 UTC (permalink / raw)
To: u-boot
Hi,
we are working on a Customized ARM 926ejs Board. I am trying to port Uboot
for the same board. I found that few patches/changes/updates were required
for arm & ARM926 Specidifc Modules. Below are the Patches for the same
This Patch adds I2C init func call to init sequence for arm boards. This is
present in ppc,blackfin and other processor init sequence.
Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
--- u-boot-1.3.1/lib_arm/board.c 2007-12-06 01:21:19.000000000 -0800
+++ uboot/lib_arm/board.c 2007-12-12 19:57:51.296875000 -0800
@@ -84,6 +84,11 @@ extern void cs8900_get_enetaddr (uchar *
extern void rtl8019_get_enetaddr (uchar * addr);
#endif
+#if defined(CONFIG_HARD_I2C) || \
+ defined(CONFIG_SOFT_I2C)
+#include <i2c.h>
+#endif
+
/*
* Begin and End of memory area for malloc(), and current "brk"
*/
@@ -209,6 +214,16 @@ static void display_flash_config (ulong
}
#endif /* CFG_NO_FLASH */
+#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
+static int init_func_i2c (void)
+{
+ puts ("I2C: ");
+ i2c_init (CFG_I2C_SPEED, CFG_I2C_SLAVE);
+ puts ("ready\n");
+ return (0);
+}
+#endif
+
/*
* Breathe some life into the board...
*
@@ -251,6 +266,9 @@ init_fnc_t *init_sequence[] = {
#if defined(CONFIG_DISPLAY_BOARDINFO)
checkboard, /* display board info */
#endif
+#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
+ init_func_i2c,
+#endif
dram_init, /* configure available RAM banks */
display_dram_config,
NULL,
I welcome comments, complaints, suggestions and advices.
Regards
Gururaja
--
View this message in context: http://www.nabble.com/-PATCH--ARM%3A-I2C-Init-function-call-in-lib_arm-board.c-tp14408151p14408494.html
Sent from the Uboot - Users mailing list archive at Nabble.com.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot-Users] [PATCH] ARM: I2C Init function call in lib_arm/board.c
2007-12-19 0:00 ` Hebbar
@ 2008-02-04 22:02 ` Wolfgang Denk
0 siblings, 0 replies; 4+ messages in thread
From: Wolfgang Denk @ 2008-02-04 22:02 UTC (permalink / raw)
To: u-boot
In message <14408494.post@talk.nabble.com> you wrote:
>
> This Patch adds I2C init func call to init sequence for arm boards. This is
> present in ppc,blackfin and other processor init sequence.
>
> Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
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
2000 pounds of chinese soup = 1 Won Ton
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-02-04 22:02 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-18 23:34 [U-Boot-Users] [PATCH] ARM: I2C Init function call in lib_arm/board.c Hebbar
2007-12-18 23:48 ` Wolfgang Denk
2007-12-19 0:00 ` Hebbar
2008-02-04 22:02 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox