blob: e7a15ba6448a7600ac5f8a077840e2e98533d2e3 [file] [log] [blame]
Stefan Roese79b2d0b2007-02-20 10:27:08 +01001/*
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +01002 * (C) Copyright 2007-2009
Stefan Roese79b2d0b2007-02-20 10:27:08 +01003 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * based on work by Anne Sophie Harnois <anne-sophie.harnois@nextream.fr>
6 *
7 * (C) Copyright 2001
8 * Bill Hunter, Wave 7 Optics, williamhunter@mediaone.net
9 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Stefan Roese79b2d0b2007-02-20 10:27:08 +010011 */
wdenkc6097192002-11-03 00:24:07 +000012
13#include <common.h>
Stefan Roeseb36df562010-09-09 19:18:00 +020014#include <asm/ppc4xx.h>
15#include <asm/ppc4xx-i2c.h>
wdenkc6097192002-11-03 00:24:07 +000016#include <i2c.h>
Peter Tyser61f2b382010-04-12 22:28:07 -050017#include <asm/io.h>
wdenkc6097192002-11-03 00:24:07 +000018
Wolfgang Denkd87080b2006-03-31 18:32:53 +020019DECLARE_GLOBAL_DATA_PTR;
20
Dirk Eibach880540d2013-04-25 02:40:01 +000021static inline struct ppc4xx_i2c *ppc4xx_get_i2c(int hwadapnr)
wdenkc6097192002-11-03 00:24:07 +000022{
Dirk Eibach880540d2013-04-25 02:40:01 +000023 unsigned long base;
24
25#if defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
26 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
27 defined(CONFIG_460EX) || defined(CONFIG_460GT)
28 base = CONFIG_SYS_PERIPHERAL_BASE + 0x00000700 + (hwadapnr * 0x100);
29#elif defined(CONFIG_440) || defined(CONFIG_405EX)
30/* all remaining 440 variants */
31 base = CONFIG_SYS_PERIPHERAL_BASE + 0x00000400 + (hwadapnr * 0x100);
32#else
33/* all 405 variants */
34 base = 0xEF600500 + (hwadapnr * 0x100);
35#endif
36 return (struct ppc4xx_i2c *)base;
37}
38
39static void _i2c_bus_reset(struct i2c_adapter *adap)
40{
41 struct ppc4xx_i2c *i2c = ppc4xx_get_i2c(adap->hwadapnr);
Stefan Roese79b2d0b2007-02-20 10:27:08 +010042 int i;
43 u8 dc;
wdenkc6097192002-11-03 00:24:07 +000044
45 /* Reset status register */
46 /* write 1 in SCMP and IRQA to clear these fields */
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +010047 out_8(&i2c->sts, 0x0A);
wdenkc6097192002-11-03 00:24:07 +000048
49 /* write 1 in IRQP IRQD LA ICT XFRA to clear these fields */
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +010050 out_8(&i2c->extsts, 0x8F);
wdenkc6097192002-11-03 00:24:07 +000051
Wolfgang Denk53677ef2008-05-20 16:00:29 +020052 /* Place chip in the reset state */
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +010053 out_8(&i2c->xtcntlss, IIC_XTCNTLSS_SRST);
wdenkc6097192002-11-03 00:24:07 +000054
Stefan Roese79b2d0b2007-02-20 10:27:08 +010055 /* Check if bus is free */
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +010056 dc = in_8(&i2c->directcntl);
Stefan Roese79b2d0b2007-02-20 10:27:08 +010057 if (!DIRCTNL_FREE(dc)){
58 /* Try to set bus free state */
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +010059 out_8(&i2c->directcntl, IIC_DIRCNTL_SDAC | IIC_DIRCNTL_SCC);
Stefan Roese79b2d0b2007-02-20 10:27:08 +010060
61 /* Wait until we regain bus control */
62 for (i = 0; i < 100; ++i) {
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +010063 dc = in_8(&i2c->directcntl);
Stefan Roese79b2d0b2007-02-20 10:27:08 +010064 if (DIRCTNL_FREE(dc))
65 break;
66
67 /* Toggle SCL line */
68 dc ^= IIC_DIRCNTL_SCC;
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +010069 out_8(&i2c->directcntl, dc);
Stefan Roese79b2d0b2007-02-20 10:27:08 +010070 udelay(10);
71 dc ^= IIC_DIRCNTL_SCC;
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +010072 out_8(&i2c->directcntl, dc);
wdenkc6097192002-11-03 00:24:07 +000073 }
74 }
Stefan Roese79b2d0b2007-02-20 10:27:08 +010075
76 /* Remove reset */
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +010077 out_8(&i2c->xtcntlss, 0);
wdenkc6097192002-11-03 00:24:07 +000078}
79
Dirk Eibach880540d2013-04-25 02:40:01 +000080static void ppc4xx_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr)
wdenkc6097192002-11-03 00:24:07 +000081{
Dirk Eibach880540d2013-04-25 02:40:01 +000082 struct ppc4xx_i2c *i2c = ppc4xx_get_i2c(adap->hwadapnr);
wdenkc6097192002-11-03 00:24:07 +000083 int val, divisor;
84
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020085#ifdef CONFIG_SYS_I2C_INIT_BOARD
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +010086 /*
87 * Call board specific i2c bus reset routine before accessing the
88 * environment, which might be in a chip on that bus. For details
89 * about this problem see doc/I2C_Edge_Conditions.
90 */
wdenk47cd00f2003-03-06 13:39:27 +000091 i2c_init_board();
92#endif
93
Dirk Eibach880540d2013-04-25 02:40:01 +000094 /* Handle possible failed I2C state */
95 /* FIXME: put this into i2c_init_board()? */
96 _i2c_bus_reset(adap);
wdenkc6097192002-11-03 00:24:07 +000097
Dirk Eibach880540d2013-04-25 02:40:01 +000098 /* clear lo master address */
99 out_8(&i2c->lmadr, 0);
Stefan Roese1a332da2010-03-29 15:30:46 +0200100
Dirk Eibach880540d2013-04-25 02:40:01 +0000101 /* clear hi master address */
102 out_8(&i2c->hmadr, 0);
wdenkc6097192002-11-03 00:24:07 +0000103
Dirk Eibach880540d2013-04-25 02:40:01 +0000104 /* clear lo slave address */
105 out_8(&i2c->lsadr, 0);
wdenkc6097192002-11-03 00:24:07 +0000106
Dirk Eibach880540d2013-04-25 02:40:01 +0000107 /* clear hi slave address */
108 out_8(&i2c->hsadr, 0);
wdenkc6097192002-11-03 00:24:07 +0000109
Dirk Eibach880540d2013-04-25 02:40:01 +0000110 /* Clock divide Register */
111 /* set divisor according to freq_opb */
112 divisor = (get_OPB_freq() - 1) / 10000000;
113 if (divisor == 0)
114 divisor = 1;
115 out_8(&i2c->clkdiv, divisor);
wdenkc6097192002-11-03 00:24:07 +0000116
Dirk Eibach880540d2013-04-25 02:40:01 +0000117 /* no interrupts */
118 out_8(&i2c->intrmsk, 0);
wdenkc6097192002-11-03 00:24:07 +0000119
Dirk Eibach880540d2013-04-25 02:40:01 +0000120 /* clear transfer count */
121 out_8(&i2c->xfrcnt, 0);
wdenkc6097192002-11-03 00:24:07 +0000122
Dirk Eibach880540d2013-04-25 02:40:01 +0000123 /* clear extended control & stat */
124 /* write 1 in SRC SRS SWC SWS to clear these fields */
125 out_8(&i2c->xtcntlss, 0xF0);
wdenkc6097192002-11-03 00:24:07 +0000126
Dirk Eibach880540d2013-04-25 02:40:01 +0000127 /* Mode Control Register
128 Flush Slave/Master data buffer */
129 out_8(&i2c->mdcntl, IIC_MDCNTL_FSDB | IIC_MDCNTL_FMDB);
wdenkc6097192002-11-03 00:24:07 +0000130
Dirk Eibach880540d2013-04-25 02:40:01 +0000131 val = in_8(&i2c->mdcntl);
wdenkc6097192002-11-03 00:24:07 +0000132
Dirk Eibach880540d2013-04-25 02:40:01 +0000133 /* Ignore General Call, slave transfers are ignored,
134 * disable interrupts, exit unknown bus state, enable hold
135 * SCL 100kHz normaly or FastMode for 400kHz and above
136 */
wdenkc6097192002-11-03 00:24:07 +0000137
Dirk Eibach880540d2013-04-25 02:40:01 +0000138 val |= IIC_MDCNTL_EUBS | IIC_MDCNTL_HSCL;
139 if (speed >= 400000)
140 val |= IIC_MDCNTL_FSM;
141 out_8(&i2c->mdcntl, val);
wdenkc6097192002-11-03 00:24:07 +0000142
Dirk Eibach880540d2013-04-25 02:40:01 +0000143 /* clear control reg */
144 out_8(&i2c->cntl, 0x00);
wdenkc6097192002-11-03 00:24:07 +0000145}
146
147/*
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100148 * This code tries to use the features of the 405GP i2c
149 * controller. It will transfer up to 4 bytes in one pass
150 * on the loop. It only does out_8((u8 *)lbz) to the buffer when it
151 * is possible to do out16(lhz) transfers.
152 *
153 * cmd_type is 0 for write 1 for read.
154 *
155 * addr_len can take any value from 0-255, it is only limited
156 * by the char, we could make it larger if needed. If it is
157 * 0 we skip the address write cycle.
158 *
159 * Typical case is a Write of an addr followd by a Read. The
160 * IBM FAQ does not cover this. On the last byte of the write
161 * we don't set the creg CHT bit, and on the first bytes of the
162 * read we set the RPST bit.
163 *
164 * It does not support address only transfers, there must be
165 * a data part. If you want to write the address yourself, put
166 * it in the data pointer.
167 *
168 * It does not support transfer to/from address 0.
169 *
170 * It does not check XFRCNT.
171 */
Dirk Eibach880540d2013-04-25 02:40:01 +0000172static int _i2c_transfer(struct i2c_adapter *adap,
173 unsigned char cmd_type,
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100174 unsigned char chip,
175 unsigned char addr[],
176 unsigned char addr_len,
177 unsigned char data[],
178 unsigned short data_len)
wdenkc6097192002-11-03 00:24:07 +0000179{
Dirk Eibach880540d2013-04-25 02:40:01 +0000180 struct ppc4xx_i2c *i2c = ppc4xx_get_i2c(adap->hwadapnr);
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100181 u8 *ptr;
wdenk8bde7f72003-06-27 21:31:46 +0000182 int reading;
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100183 int tran, cnt;
wdenk8bde7f72003-06-27 21:31:46 +0000184 int result;
185 int status;
186 int i;
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100187 u8 creg;
wdenkc6097192002-11-03 00:24:07 +0000188
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100189 if (data == 0 || data_len == 0) {
190 /* Don't support data transfer of no length or to address 0 */
wdenk8bde7f72003-06-27 21:31:46 +0000191 printf( "i2c_transfer: bad call\n" );
192 return IIC_NOK;
193 }
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100194 if (addr && addr_len) {
wdenk8bde7f72003-06-27 21:31:46 +0000195 ptr = addr;
196 cnt = addr_len;
197 reading = 0;
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100198 } else {
wdenk8bde7f72003-06-27 21:31:46 +0000199 ptr = data;
200 cnt = data_len;
201 reading = cmd_type;
202 }
wdenkc6097192002-11-03 00:24:07 +0000203
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100204 /* Clear Stop Complete Bit */
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100205 out_8(&i2c->sts, IIC_STS_SCMP);
206
wdenk8bde7f72003-06-27 21:31:46 +0000207 /* Check init */
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100208 i = 10;
wdenk8bde7f72003-06-27 21:31:46 +0000209 do {
210 /* Get status */
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100211 status = in_8(&i2c->sts);
wdenk8bde7f72003-06-27 21:31:46 +0000212 i--;
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100213 } while ((status & IIC_STS_PT) && (i > 0));
wdenkc6097192002-11-03 00:24:07 +0000214
wdenk8bde7f72003-06-27 21:31:46 +0000215 if (status & IIC_STS_PT) {
216 result = IIC_NOK_TOUT;
217 return(result);
218 }
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100219
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100220 /* flush the Master/Slave Databuffers */
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100221 out_8(&i2c->mdcntl, in_8(&i2c->mdcntl) |
222 IIC_MDCNTL_FMDB | IIC_MDCNTL_FSDB);
223
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100224 /* need to wait 4 OPB clocks? code below should take that long */
wdenkc6097192002-11-03 00:24:07 +0000225
wdenk8bde7f72003-06-27 21:31:46 +0000226 /* 7-bit adressing */
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100227 out_8(&i2c->hmadr, 0);
228 out_8(&i2c->lmadr, chip);
wdenkc6097192002-11-03 00:24:07 +0000229
wdenk8bde7f72003-06-27 21:31:46 +0000230 tran = 0;
231 result = IIC_OK;
232 creg = 0;
wdenkc6097192002-11-03 00:24:07 +0000233
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100234 while (tran != cnt && (result == IIC_OK)) {
wdenk8bde7f72003-06-27 21:31:46 +0000235 int bc,j;
wdenkc6097192002-11-03 00:24:07 +0000236
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100237 /*
238 * Control register =
239 * Normal transfer, 7-bits adressing, Transfer up to
240 * bc bytes, Normal start, Transfer is a sequence of transfers
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100241 */
wdenk8bde7f72003-06-27 21:31:46 +0000242 creg |= IIC_CNTL_PT;
243
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100244 bc = (cnt - tran) > 4 ? 4 : cnt - tran;
245 creg |= (bc - 1) << 4;
246 /* if the real cmd type is write continue trans */
247 if ((!cmd_type && (ptr == addr)) || ((tran + bc) != cnt))
wdenk8bde7f72003-06-27 21:31:46 +0000248 creg |= IIC_CNTL_CHT;
249
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100250 if (reading) {
wdenk8bde7f72003-06-27 21:31:46 +0000251 creg |= IIC_CNTL_READ;
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100252 } else {
253 for(j = 0; j < bc; j++) {
wdenk8bde7f72003-06-27 21:31:46 +0000254 /* Set buffer */
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100255 out_8(&i2c->mdbuf, ptr[tran + j]);
256 }
257 }
258 out_8(&i2c->cntl, creg);
wdenk8bde7f72003-06-27 21:31:46 +0000259
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100260 /*
261 * Transfer is in progress
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100262 * we have to wait for upto 5 bytes of data
263 * 1 byte chip address+r/w bit then bc bytes
264 * of data.
265 * udelay(10) is 1 bit time at 100khz
266 * Doubled for slop. 20 is too small.
267 */
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100268 i = 2 * 5 * 8;
wdenk8bde7f72003-06-27 21:31:46 +0000269 do {
270 /* Get status */
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100271 status = in_8(&i2c->sts);
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100272 udelay(10);
wdenk8bde7f72003-06-27 21:31:46 +0000273 i--;
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100274 } while ((status & IIC_STS_PT) && !(status & IIC_STS_ERR) &&
275 (i > 0));
wdenkc6097192002-11-03 00:24:07 +0000276
wdenk8bde7f72003-06-27 21:31:46 +0000277 if (status & IIC_STS_ERR) {
278 result = IIC_NOK;
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100279 status = in_8(&i2c->extsts);
wdenk8bde7f72003-06-27 21:31:46 +0000280 /* Lost arbitration? */
281 if (status & IIC_EXTSTS_LA)
282 result = IIC_NOK_LA;
283 /* Incomplete transfer? */
284 if (status & IIC_EXTSTS_ICT)
285 result = IIC_NOK_ICT;
286 /* Transfer aborted? */
287 if (status & IIC_EXTSTS_XFRA)
288 result = IIC_NOK_XFRA;
289 } else if ( status & IIC_STS_PT) {
290 result = IIC_NOK_TOUT;
291 }
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100292
wdenk8bde7f72003-06-27 21:31:46 +0000293 /* Command is reading => get buffer */
294 if ((reading) && (result == IIC_OK)) {
295 /* Are there data in buffer */
296 if (status & IIC_STS_MDBS) {
297 /*
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100298 * even if we have data we have to wait 4OPB
299 * clocks for it to hit the front of the FIFO,
300 * after that we can just read. We should check
301 * XFCNT here and if the FIFO is full there is
302 * no need to wait.
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100303 */
304 udelay(1);
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100305 for (j = 0; j < bc; j++)
306 ptr[tran + j] = in_8(&i2c->mdbuf);
wdenk8bde7f72003-06-27 21:31:46 +0000307 } else
308 result = IIC_NOK_DATA;
309 }
310 creg = 0;
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100311 tran += bc;
312 if (ptr == addr && tran == cnt) {
wdenk8bde7f72003-06-27 21:31:46 +0000313 ptr = data;
314 cnt = data_len;
315 tran = 0;
316 reading = cmd_type;
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100317 if (reading)
wdenk8bde7f72003-06-27 21:31:46 +0000318 creg = IIC_CNTL_RPST;
319 }
320 }
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100321 return result;
wdenkc6097192002-11-03 00:24:07 +0000322}
323
Dirk Eibach880540d2013-04-25 02:40:01 +0000324static int ppc4xx_i2c_probe(struct i2c_adapter *adap, uchar chip)
wdenkc6097192002-11-03 00:24:07 +0000325{
326 uchar buf[1];
327
328 buf[0] = 0;
329
wdenk8bde7f72003-06-27 21:31:46 +0000330 /*
331 * What is needed is to send the chip address and verify that the
332 * address was <ACK>ed (i.e. there was a chip at that address which
333 * drove the data line low).
334 */
Dirk Eibach880540d2013-04-25 02:40:01 +0000335 return (_i2c_transfer(adap, 1, chip << 1, 0, 0, buf, 1) != 0);
wdenkc6097192002-11-03 00:24:07 +0000336}
337
Dirk Eibach880540d2013-04-25 02:40:01 +0000338static int ppc4xx_i2c_transfer(struct i2c_adapter *adap, uchar chip, uint addr,
339 int alen, uchar *buffer, int len, int read)
wdenkc6097192002-11-03 00:24:07 +0000340{
wdenk8bde7f72003-06-27 21:31:46 +0000341 uchar xaddr[4];
342 int ret;
wdenkc6097192002-11-03 00:24:07 +0000343
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100344 if (alen > 4) {
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100345 printf("I2C: addr len %d not supported\n", alen);
wdenkc6097192002-11-03 00:24:07 +0000346 return 1;
347 }
348
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100349 if (alen > 0) {
wdenk8bde7f72003-06-27 21:31:46 +0000350 xaddr[0] = (addr >> 24) & 0xFF;
351 xaddr[1] = (addr >> 16) & 0xFF;
352 xaddr[2] = (addr >> 8) & 0xFF;
353 xaddr[3] = addr & 0xFF;
354 }
wdenkc6097192002-11-03 00:24:07 +0000355
356
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200357#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
wdenkc6097192002-11-03 00:24:07 +0000358 /*
wdenk8bde7f72003-06-27 21:31:46 +0000359 * EEPROM chips that implement "address overflow" are ones
360 * like Catalyst 24WC04/08/16 which has 9/10/11 bits of
361 * address and the extra bits end up in the "chip address"
362 * bit slots. This makes a 24WC08 (1Kbyte) chip look like
363 * four 256 byte chips.
wdenkc6097192002-11-03 00:24:07 +0000364 *
wdenk8bde7f72003-06-27 21:31:46 +0000365 * Note that we consider the length of the address field to
366 * still be one byte because the extra address bits are
367 * hidden in the chip address.
wdenkc6097192002-11-03 00:24:07 +0000368 */
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100369 if (alen > 0)
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100370 chip |= ((addr >> (alen * 8)) &
371 CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
wdenkc6097192002-11-03 00:24:07 +0000372#endif
Dirk Eibach880540d2013-04-25 02:40:01 +0000373 ret = _i2c_transfer(adap, read, chip << 1, &xaddr[4 - alen], alen,
374 buffer, len);
375 if (ret) {
Graeme Russe3e454c2011-08-29 02:14:05 +0000376 printf("I2C %s: failed %d\n", read ? "read" : "write", ret);
wdenk8bde7f72003-06-27 21:31:46 +0000377 return 1;
378 }
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100379
wdenk8bde7f72003-06-27 21:31:46 +0000380 return 0;
wdenkc6097192002-11-03 00:24:07 +0000381}
382
Dirk Eibach880540d2013-04-25 02:40:01 +0000383static int ppc4xx_i2c_read(struct i2c_adapter *adap, uchar chip, uint addr,
384 int alen, uchar *buffer, int len)
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100385{
Dirk Eibach880540d2013-04-25 02:40:01 +0000386 return ppc4xx_i2c_transfer(adap, chip, addr, alen, buffer, len, 1);
Stefan Roeseeb5eb2b2009-11-19 14:03:17 +0100387}
388
Dirk Eibach880540d2013-04-25 02:40:01 +0000389static int ppc4xx_i2c_write(struct i2c_adapter *adap, uchar chip, uint addr,
390 int alen, uchar *buffer, int len)
wdenkc6097192002-11-03 00:24:07 +0000391{
Dirk Eibach880540d2013-04-25 02:40:01 +0000392 return ppc4xx_i2c_transfer(adap, chip, addr, alen, buffer, len, 0);
wdenkc6097192002-11-03 00:24:07 +0000393}
394
Dirk Eibach880540d2013-04-25 02:40:01 +0000395static unsigned int ppc4xx_i2c_set_bus_speed(struct i2c_adapter *adap,
396 unsigned int speed)
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100397{
Dirk Eibach880540d2013-04-25 02:40:01 +0000398 if (speed != adap->speed)
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100399 return -1;
Dirk Eibach880540d2013-04-25 02:40:01 +0000400 return speed;
Stefan Roese79b2d0b2007-02-20 10:27:08 +0100401}
Dirk Eibach880540d2013-04-25 02:40:01 +0000402
403/*
404 * Register ppc4xx i2c adapters
405 */
406#ifdef CONFIG_SYS_I2C_PPC4XX_CH0
407U_BOOT_I2C_ADAP_COMPLETE(ppc4xx_0, ppc4xx_i2c_init, ppc4xx_i2c_probe,
408 ppc4xx_i2c_read, ppc4xx_i2c_write,
409 ppc4xx_i2c_set_bus_speed,
410 CONFIG_SYS_I2C_PPC4XX_SPEED_0,
411 CONFIG_SYS_I2C_PPC4XX_SLAVE_0, 0)
412#endif
413#ifdef CONFIG_SYS_I2C_PPC4XX_CH1
414U_BOOT_I2C_ADAP_COMPLETE(ppc4xx_1, ppc4xx_i2c_init, ppc4xx_i2c_probe,
415 ppc4xx_i2c_read, ppc4xx_i2c_write,
416 ppc4xx_i2c_set_bus_speed,
417 CONFIG_SYS_I2C_PPC4XX_SPEED_1,
418 CONFIG_SYS_I2C_PPC4XX_SLAVE_1, 1)
419#endif