]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
ppc4xx: Fix i2c repeated start
authorDirk Eibach <dirk.eibach@gdsys.cc>
Wed, 29 Oct 2014 14:56:43 +0000 (15:56 +0100)
committerHeiko Schocher <hs@denx.de>
Mon, 10 Nov 2014 05:44:15 +0000 (06:44 +0100)
commit7e78f7ad7f7f666598bc2ff115ea7a35f8e059f1
tree32f580faeeed7ad52997208493dd936b54c80313
parent11ada9225a16ed2d8ddbf0715a2416245a777cbc
ppc4xx: Fix i2c repeated start

Debugging some i2c trouble I saw on my scope that repeated
start is not working properply. The 4xx even held clock pulled down
after transfers. Having a look in the driver I realized
that IIC_CNTL_RPST is set on that part of the transfer that should
begin with a repeated start. But repeated start is about not sending a
stop condition, so IIC_CNTL_RPST has to be set on the last transfer
before the repeated start happens.

Signed-off-by: Dirk Eibach <dirk.eibach@gdsys.cc>
Reviewed-by: Stefan Roese <sr@denx.de>
drivers/i2c/ppc4xx_i2c.c