public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 2/3] Reset interrupted i2c slaves (galaxy5200)
@ 2009-08-25 15:26 Eric Millbrandt
  2009-08-26  6:57 ` Heiko Schocher
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Millbrandt @ 2009-08-25 15:26 UTC (permalink / raw)
  To: u-boot

Reset any i2c devices that may have been interrupted by a system reset.
Normally this would be accomplished by clocking the line until SCL and SDA
are released and then sending a start condtiion (From an Atmel datasheet).
But since there is only write access to these lines on the MPC5200 we can
only attempt to reset any slave devices by sending more start commands than
bits the slave is attempting to transmit.

Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
---

Changes since v1:
- Remove non-related modifications to a different patch per Peter's suggestion

 board/galaxy5200/galaxy5200.c |   41 +++++++++++++++++++++++++++++++++++++++++
 include/configs/galaxy5200.h  |    1 +
 2 files changed, 42 insertions(+), 0 deletions(-)

diff --git a/board/galaxy5200/galaxy5200.c b/board/galaxy5200/galaxy5200.c
index 5aa9d3a..c38e7de 100644
--- a/board/galaxy5200/galaxy5200.c
+++ b/board/galaxy5200/galaxy5200.c
@@ -155,6 +155,47 @@ phys_size_t initdram(int board_type)
 	return dramsize + dramsize2;
 }
 
+/*
+ * Reset any i2c devices that may have been interrupted by a system reset.
+ * Normally this would be accomplished by clocking the line until SCL and SDA
+ * are released and then sending a start condtiion (From an Atmel datasheet).
+ * But since there is only write access to these lines on the MPC5200 we can
+ * only attempt to reset any slave devices by sending more start commands than
+ * bits the slave is attempting to transmit.
+ */
+int misc_init_f(void)
+{
+	volatile struct mpc5xxx_gpio *gpio =
+		(struct mpc5xxx_gpio *)MPC5XXX_GPIO;
+	int i;
+	u16 state;
+
+	state = gpio->outo_gpioe;
+
+	/* Enable gpio on i2c1 and i2c2 */
+	gpio->outo_gpioe |= 0xf;
+
+	/*
+	 * Send an i2c start command 16 times to reset the state machines on
+	 * any slave devices transmitting on the bus.
+	 */
+	for (i = 0; i < 16; i++) {
+		gpio->outo_dvo = 0x5;
+		udelay(5);
+		gpio->outo_dvo |= 0xa;
+		udelay(5);
+		gpio->outo_dvo &= 0xa;
+		udelay(5);
+		gpio->outo_dvo = 0x0;
+		udelay(5);
+	}
+
+	/* Return control of i2c1 and i2c2 */
+	gpio->outo_gpioe = state;
+
+	return 0;
+}
+
 int checkboard(void)
 {
 	puts("Board: galaxy5200\n");
diff --git a/include/configs/galaxy5200.h b/include/configs/galaxy5200.h
index 8d530d8..eb2cae6 100644
--- a/include/configs/galaxy5200.h
+++ b/include/configs/galaxy5200.h
@@ -110,6 +110,7 @@
 #define CONFIG_SYS_I2C_MODULE 2		/* Select I2C module #1 or #2 */
 #define CONFIG_SYS_I2C_SPEED 100000	/* 100 kHz */
 #define CONFIG_SYS_I2C_SLAVE 0x7F
+#define CONFIG_MISC_INIT_F 1           /* Reset i2c busses */
 
 /*
  * EEPROM CAT24WC32 configuration
-- 
1.6.3.1

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

* [U-Boot] [PATCH v2 2/3] Reset interrupted i2c slaves (galaxy5200)
  2009-08-25 15:26 [U-Boot] [PATCH v2 2/3] Reset interrupted i2c slaves (galaxy5200) Eric Millbrandt
@ 2009-08-26  6:57 ` Heiko Schocher
  2009-08-26 18:38   ` Eric Millbrandt
  0 siblings, 1 reply; 3+ messages in thread
From: Heiko Schocher @ 2009-08-26  6:57 UTC (permalink / raw)
  To: u-boot

Hello Eric,

Eric Millbrandt wrote:
> Reset any i2c devices that may have been interrupted by a system reset.
> Normally this would be accomplished by clocking the line until SCL and SDA
> are released and then sending a start condtiion (From an Atmel datasheet).
> But since there is only write access to these lines on the MPC5200 we can
> only attempt to reset any slave devices by sending more start commands than
> bits the slave is attempting to transmit.
> 
> Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
> ---
> 
> Changes since v1:
> - Remove non-related modifications to a different patch per Peter's suggestion

one common comment:

Can you please use in_*/out_* accessors for accessing mpc52xx registers.

> 
>  board/galaxy5200/galaxy5200.c |   41 +++++++++++++++++++++++++++++++++++++++++
>  include/configs/galaxy5200.h  |    1 +
>  2 files changed, 42 insertions(+), 0 deletions(-)
> 
> diff --git a/board/galaxy5200/galaxy5200.c b/board/galaxy5200/galaxy5200.c
> index 5aa9d3a..c38e7de 100644
> --- a/board/galaxy5200/galaxy5200.c
> +++ b/board/galaxy5200/galaxy5200.c
> @@ -155,6 +155,47 @@ phys_size_t initdram(int board_type)
>  	return dramsize + dramsize2;
>  }
>  
> +/*
> + * Reset any i2c devices that may have been interrupted by a system reset.
> + * Normally this would be accomplished by clocking the line until SCL and SDA
> + * are released and then sending a start condtiion (From an Atmel datasheet).
> + * But since there is only write access to these lines on the MPC5200 we can
> + * only attempt to reset any slave devices by sending more start commands than
> + * bits the slave is attempting to transmit.
> + */
> +int misc_init_f(void)

Hmm.. why in misc_init_f? Can you move this function to the mpc52xx i2c
driver, and add this in a manner like the send_reset() function
in drivers/i2c/soft_i2c.c? And call this send_reset() in the
i2c_init() from the mpc52xx i2c driver. As I don;t know, if this
is valid for all mpc52xx boards, it should be then also per
CONFIG_SYS_* define selectable.

thanks.

bye
Heiko
-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

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

* [U-Boot] [PATCH v2 2/3] Reset interrupted i2c slaves (galaxy5200)
  2009-08-26  6:57 ` Heiko Schocher
@ 2009-08-26 18:38   ` Eric Millbrandt
  0 siblings, 0 replies; 3+ messages in thread
From: Eric Millbrandt @ 2009-08-26 18:38 UTC (permalink / raw)
  To: u-boot

Hi Heiko,

On Wed, 26 Aug 2009 08:57:46 +0200, Heiko Schocher wrote
> Hello Eric,
> 
> Eric Millbrandt wrote:
> > Reset any i2c devices that may have been interrupted by a system reset.
> > Normally this would be accomplished by clocking the line until SCL and SDA
> > are released and then sending a start condtiion (From an Atmel datasheet).
> > But since there is only write access to these lines on the MPC5200 we can
> > only attempt to reset any slave devices by sending more start commands than
> > bits the slave is attempting to transmit.
> > 
> > Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
> > ---
> > 
> > Changes since v1:
> > - Remove non-related modifications to a different patch per Peter's suggestion
> 
> one common comment:
> 
> Can you please use in_*/out_* accessors for accessing mpc52xx registers.

Ok.  I will do that.
> > 
> >  board/galaxy5200/galaxy5200.c |   41
+++++++++++++++++++++++++++++++++++++++++
> >  include/configs/galaxy5200.h  |    1 +
> >  2 files changed, 42 insertions(+), 0 deletions(-)
> > 
> > diff --git a/board/galaxy5200/galaxy5200.c b/board/galaxy5200/galaxy5200.c
> > index 5aa9d3a..c38e7de 100644
> > --- a/board/galaxy5200/galaxy5200.c
> > +++ b/board/galaxy5200/galaxy5200.c
> > @@ -155,6 +155,47 @@ phys_size_t initdram(int board_type)
> >  	return dramsize + dramsize2;
> >  }
> >  
> > +/*
> > + * Reset any i2c devices that may have been interrupted by a system reset.
> > + * Normally this would be accomplished by clocking the line until SCL and SDA
> > + * are released and then sending a start condtiion (From an Atmel datasheet).
> > + * But since there is only write access to these lines on the MPC5200 we can
> > + * only attempt to reset any slave devices by sending more start commands
than
> > + * bits the slave is attempting to transmit.
> > + */
> > +int misc_init_f(void)
> 
> Hmm.. why in misc_init_f? Can you move this function to the mpc52xx i2c
> driver, and add this in a manner like the send_reset() function
> in drivers/i2c/soft_i2c.c? And call this send_reset() in the
> i2c_init() from the mpc52xx i2c driver. As I don;t know, if this
> is valid for all mpc52xx boards, it should be then also per
> CONFIG_SYS_* define selectable.

The i2c registers that I used are only on the MPC5200B, not the MPC5200.  I
put the reset function under misc_init_f for that reason.  Is adding a single
cpu dependent function appropriate for the entire cpu/5xxx family branch?  If
it is then I will move the reset function to the mpc5xxx i2c driver.

Thanks

http://openwebmail.org - eem

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

end of thread, other threads:[~2009-08-26 18:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-25 15:26 [U-Boot] [PATCH v2 2/3] Reset interrupted i2c slaves (galaxy5200) Eric Millbrandt
2009-08-26  6:57 ` Heiko Schocher
2009-08-26 18:38   ` Eric Millbrandt

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