blob: f0c1aa34066f93d064a71852d3ea1d8df0dbc9cf [file] [log] [blame]
wdenk1cb8e982003-03-06 21:55:29 +00001/*
2 * (C) Copyright 2002
3 * David Mueller, ELSOFT AG, d.mueller@elsoft.ch
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24/* This code should work for both the S3C2400 and the S3C2410
25 * as they seem to have the same I2C controller inside.
26 * The different address mapping is handled by the s3c24xx.h files below.
27 */
28
29#include <common.h>
wdenk1cb8e982003-03-06 21:55:29 +000030#if defined(CONFIG_S3C2400)
31#include <s3c2400.h>
32#elif defined(CONFIG_S3C2410)
33#include <s3c2410.h>
34#endif
35#include <i2c.h>
36
37#ifdef CONFIG_HARD_I2C
38
wdenk48b42612003-06-19 23:01:32 +000039#define I2C_WRITE 0
40#define I2C_READ 1
wdenk1cb8e982003-03-06 21:55:29 +000041
wdenk48b42612003-06-19 23:01:32 +000042#define I2C_OK 0
43#define I2C_NOK 1
44#define I2C_NACK 2
45#define I2C_NOK_LA 3 /* Lost arbitration */
46#define I2C_NOK_TOUT 4 /* time out */
wdenk1cb8e982003-03-06 21:55:29 +000047
wdenk48b42612003-06-19 23:01:32 +000048#define I2CSTAT_BSY 0x20 /* Busy bit */
49#define I2CSTAT_NACK 0x01 /* Nack bit */
50#define I2CCON_IRPND 0x10 /* Interrupt pending bit */
51#define I2C_MODE_MT 0xC0 /* Master Transmit Mode */
52#define I2C_MODE_MR 0x80 /* Master Receive Mode */
53#define I2C_START_STOP 0x20 /* START / STOP */
54#define I2C_TXRX_ENA 0x10 /* I2C Tx/Rx enable */
wdenk1cb8e982003-03-06 21:55:29 +000055
wdenkb56ddc62003-09-15 21:14:37 +000056#define I2C_TIMEOUT 1 /* 1 second */
wdenk1cb8e982003-03-06 21:55:29 +000057
58
wdenk48b42612003-06-19 23:01:32 +000059static int GetI2CSDA(void)
wdenk1cb8e982003-03-06 21:55:29 +000060{
wdenk48b42612003-06-19 23:01:32 +000061 S3C24X0_GPIO * const gpio = S3C24X0_GetBase_GPIO();
62
wdenk6dff5522003-07-15 07:45:49 +000063#ifdef CONFIG_S3C2410
wdenk48b42612003-06-19 23:01:32 +000064 return (gpio->GPEDAT & 0x8000) >> 15;
wdenk6dff5522003-07-15 07:45:49 +000065#endif
66#ifdef CONFIG_S3C2400
67 return (gpio->PGDAT & 0x0020) >> 5;
68#endif
wdenk1cb8e982003-03-06 21:55:29 +000069}
70
wdenk06d01db2003-03-14 20:47:52 +000071#if 0
wdenk48b42612003-06-19 23:01:32 +000072static void SetI2CSDA(int x)
wdenk1cb8e982003-03-06 21:55:29 +000073{
74 rGPEDAT = (rGPEDAT & ~0x8000) | (x&1) << 15;
75}
wdenk06d01db2003-03-14 20:47:52 +000076#endif
wdenk1cb8e982003-03-06 21:55:29 +000077
wdenk48b42612003-06-19 23:01:32 +000078static void SetI2CSCL(int x)
wdenk1cb8e982003-03-06 21:55:29 +000079{
wdenk48b42612003-06-19 23:01:32 +000080 S3C24X0_GPIO * const gpio = S3C24X0_GetBase_GPIO();
81
wdenk6dff5522003-07-15 07:45:49 +000082#ifdef CONFIG_S3C2410
wdenk48b42612003-06-19 23:01:32 +000083 gpio->GPEDAT = (gpio->GPEDAT & ~0x4000) | (x&1) << 14;
wdenk6dff5522003-07-15 07:45:49 +000084#endif
85#ifdef CONFIG_S3C2400
86 gpio->PGDAT = (gpio->PGDAT & ~0x0040) | (x&1) << 6;
87#endif
wdenk1cb8e982003-03-06 21:55:29 +000088}
89
90
wdenkfc3e2162003-10-08 22:33:00 +000091static int WaitForXfer (void)
wdenk1cb8e982003-03-06 21:55:29 +000092{
wdenkfc3e2162003-10-08 22:33:00 +000093 S3C24X0_I2C *const i2c = S3C24X0_GetBase_I2C ();
94 int i, status;
wdenk1cb8e982003-03-06 21:55:29 +000095
wdenkfc3e2162003-10-08 22:33:00 +000096 i = I2C_TIMEOUT * 10000;
wdenk48b42612003-06-19 23:01:32 +000097 status = i2c->IICCON;
wdenkfc3e2162003-10-08 22:33:00 +000098 while ((i > 0) && !(status & I2CCON_IRPND)) {
99 udelay (100);
100 status = i2c->IICCON;
101 i--;
102 }
wdenk1cb8e982003-03-06 21:55:29 +0000103
wdenkfc3e2162003-10-08 22:33:00 +0000104 return (status & I2CCON_IRPND) ? I2C_OK : I2C_NOK_TOUT;
wdenk1cb8e982003-03-06 21:55:29 +0000105}
106
wdenkfc3e2162003-10-08 22:33:00 +0000107static int IsACK (void)
wdenk1cb8e982003-03-06 21:55:29 +0000108{
wdenkfc3e2162003-10-08 22:33:00 +0000109 S3C24X0_I2C *const i2c = S3C24X0_GetBase_I2C ();
wdenk48b42612003-06-19 23:01:32 +0000110
wdenkfc3e2162003-10-08 22:33:00 +0000111 return (!(i2c->IICSTAT & I2CSTAT_NACK));
wdenk1cb8e982003-03-06 21:55:29 +0000112}
113
wdenkfc3e2162003-10-08 22:33:00 +0000114static void ReadWriteByte (void)
wdenk1cb8e982003-03-06 21:55:29 +0000115{
wdenkfc3e2162003-10-08 22:33:00 +0000116 S3C24X0_I2C *const i2c = S3C24X0_GetBase_I2C ();
wdenk48b42612003-06-19 23:01:32 +0000117
wdenkfc3e2162003-10-08 22:33:00 +0000118 i2c->IICCON &= ~I2CCON_IRPND;
wdenk1cb8e982003-03-06 21:55:29 +0000119}
120
121void i2c_init (int speed, int slaveadd)
122{
wdenkfc3e2162003-10-08 22:33:00 +0000123 S3C24X0_I2C *const i2c = S3C24X0_GetBase_I2C ();
124 S3C24X0_GPIO *const gpio = S3C24X0_GetBase_GPIO ();
125 ulong freq, pres = 16, div;
126 int i, status;
wdenk1cb8e982003-03-06 21:55:29 +0000127
wdenkfc3e2162003-10-08 22:33:00 +0000128 /* wait for some time to give previous transfer a chance to finish */
wdenk1cb8e982003-03-06 21:55:29 +0000129
wdenkfc3e2162003-10-08 22:33:00 +0000130 i = I2C_TIMEOUT * 1000;
wdenk48b42612003-06-19 23:01:32 +0000131 status = i2c->IICSTAT;
wdenkfc3e2162003-10-08 22:33:00 +0000132 while ((i > 0) && (status & I2CSTAT_BSY)) {
133 udelay (1000);
134 status = i2c->IICSTAT;
wdenk1cb8e982003-03-06 21:55:29 +0000135 i--;
136 }
wdenk1cb8e982003-03-06 21:55:29 +0000137
wdenkfc3e2162003-10-08 22:33:00 +0000138 if ((status & I2CSTAT_BSY) || GetI2CSDA () == 0) {
wdenk6dff5522003-07-15 07:45:49 +0000139#ifdef CONFIG_S3C2410
wdenkfc3e2162003-10-08 22:33:00 +0000140 ulong old_gpecon = gpio->GPECON;
wdenk6dff5522003-07-15 07:45:49 +0000141#endif
142#ifdef CONFIG_S3C2400
wdenkfc3e2162003-10-08 22:33:00 +0000143 ulong old_gpecon = gpio->PGCON;
wdenk6dff5522003-07-15 07:45:49 +0000144#endif
wdenkfc3e2162003-10-08 22:33:00 +0000145 /* bus still busy probably by (most) previously interrupted transfer */
wdenk1cb8e982003-03-06 21:55:29 +0000146
wdenkfc3e2162003-10-08 22:33:00 +0000147#ifdef CONFIG_S3C2410
148 /* set I2CSDA and I2CSCL (GPE15, GPE14) to GPIO */
149 gpio->GPECON = (gpio->GPECON & ~0xF0000000) | 0x10000000;
150#endif
151#ifdef CONFIG_S3C2400
152 /* set I2CSDA and I2CSCL (PG5, PG6) to GPIO */
Wolfgang Denk30a43cc2006-06-16 16:57:18 +0200153 gpio->PGCON = (gpio->PGCON & ~0x00003c00) | 0x00001000;
wdenkfc3e2162003-10-08 22:33:00 +0000154#endif
wdenk1cb8e982003-03-06 21:55:29 +0000155
wdenkfc3e2162003-10-08 22:33:00 +0000156 /* toggle I2CSCL until bus idle */
157 SetI2CSCL (0);
158 udelay (1000);
159 i = 10;
160 while ((i > 0) && (GetI2CSDA () != 1)) {
161 SetI2CSCL (1);
162 udelay (1000);
163 SetI2CSCL (0);
164 udelay (1000);
165 i--;
166 }
167 SetI2CSCL (1);
168 udelay (1000);
wdenk1cb8e982003-03-06 21:55:29 +0000169
wdenkfc3e2162003-10-08 22:33:00 +0000170 /* restore pin functions */
171#ifdef CONFIG_S3C2410
172 gpio->GPECON = old_gpecon;
173#endif
174#ifdef CONFIG_S3C2400
175 gpio->PGCON = old_gpecon;
176#endif
177 }
wdenk1cb8e982003-03-06 21:55:29 +0000178
wdenkfc3e2162003-10-08 22:33:00 +0000179 /* calculate prescaler and divisor values */
180 freq = get_PCLK ();
181 if ((freq / pres / (16 + 1)) > speed)
182 /* set prescaler to 512 */
183 pres = 512;
184
185 div = 0;
186 while ((freq / pres / (div + 1)) > speed)
187 div++;
188
189 /* set prescaler, divisor according to freq, also set
190 * ACKGEN, IRQ */
191 i2c->IICCON = (div & 0x0F) | 0xA0 | ((pres == 512) ? 0x40 : 0);
192
193 /* init to SLAVE REVEIVE and set slaveaddr */
194 i2c->IICSTAT = 0;
195 i2c->IICADD = slaveadd;
196 /* program Master Transmit (and implicit STOP) */
197 i2c->IICSTAT = I2C_MODE_MT | I2C_TXRX_ENA;
wdenk1cb8e982003-03-06 21:55:29 +0000198
199}
200
201/*
wdenkfc3e2162003-10-08 22:33:00 +0000202 * cmd_type is 0 for write, 1 for read.
203 *
204 * addr_len can take any value from 0-255, it is only limited
205 * by the char, we could make it larger if needed. If it is
206 * 0 we skip the address write cycle.
207 */
wdenk1cb8e982003-03-06 21:55:29 +0000208static
wdenkfc3e2162003-10-08 22:33:00 +0000209int i2c_transfer (unsigned char cmd_type,
210 unsigned char chip,
211 unsigned char addr[],
212 unsigned char addr_len,
213 unsigned char data[], unsigned short data_len)
wdenk1cb8e982003-03-06 21:55:29 +0000214{
wdenkfc3e2162003-10-08 22:33:00 +0000215 S3C24X0_I2C *const i2c = S3C24X0_GetBase_I2C ();
216 int i, status, result;
wdenk1cb8e982003-03-06 21:55:29 +0000217
wdenkfc3e2162003-10-08 22:33:00 +0000218 if (data == 0 || data_len == 0) {
219 /*Don't support data transfer of no length or to address 0 */
220 printf ("i2c_transfer: bad call\n");
221 return I2C_NOK;
222 }
wdenk1cb8e982003-03-06 21:55:29 +0000223
wdenkfc3e2162003-10-08 22:33:00 +0000224 /* Check I2C bus idle */
225 i = I2C_TIMEOUT * 1000;
wdenk48b42612003-06-19 23:01:32 +0000226 status = i2c->IICSTAT;
wdenkfc3e2162003-10-08 22:33:00 +0000227 while ((i > 0) && (status & I2CSTAT_BSY)) {
228 udelay (1000);
229 status = i2c->IICSTAT;
230 i--;
231 }
wdenk1cb8e982003-03-06 21:55:29 +0000232
wdenkfc3e2162003-10-08 22:33:00 +0000233 if (status & I2CSTAT_BSY)
234 return I2C_NOK_TOUT;
wdenk1cb8e982003-03-06 21:55:29 +0000235
wdenkfc3e2162003-10-08 22:33:00 +0000236 i2c->IICCON |= 0x80;
237 result = I2C_OK;
wdenk1cb8e982003-03-06 21:55:29 +0000238
wdenkfc3e2162003-10-08 22:33:00 +0000239 switch (cmd_type) {
wdenk48b42612003-06-19 23:01:32 +0000240 case I2C_WRITE:
wdenkfc3e2162003-10-08 22:33:00 +0000241 if (addr && addr_len) {
242 i2c->IICDS = chip;
243 /* send START */
244 i2c->IICSTAT = I2C_MODE_MT | I2C_TXRX_ENA | I2C_START_STOP;
245 i = 0;
246 while ((i < addr_len) && (result == I2C_OK)) {
247 result = WaitForXfer ();
248 i2c->IICDS = addr[i];
249 ReadWriteByte ();
250 i++;
251 }
252 i = 0;
253 while ((i < data_len) && (result == I2C_OK)) {
254 result = WaitForXfer ();
255 i2c->IICDS = data[i];
256 ReadWriteByte ();
257 i++;
258 }
259 } else {
260 i2c->IICDS = chip;
261 /* send START */
262 i2c->IICSTAT = I2C_MODE_MT | I2C_TXRX_ENA | I2C_START_STOP;
263 i = 0;
264 while ((i < data_len) && (result = I2C_OK)) {
265 result = WaitForXfer ();
266 i2c->IICDS = data[i];
267 ReadWriteByte ();
268 i++;
269 }
wdenk1cb8e982003-03-06 21:55:29 +0000270 }
wdenk1cb8e982003-03-06 21:55:29 +0000271
wdenkfc3e2162003-10-08 22:33:00 +0000272 if (result == I2C_OK)
273 result = WaitForXfer ();
wdenk1cb8e982003-03-06 21:55:29 +0000274
wdenkfc3e2162003-10-08 22:33:00 +0000275 /* send STOP */
276 i2c->IICSTAT = I2C_MODE_MR | I2C_TXRX_ENA;
277 ReadWriteByte ();
278 break;
wdenk1cb8e982003-03-06 21:55:29 +0000279
wdenk48b42612003-06-19 23:01:32 +0000280 case I2C_READ:
wdenkfc3e2162003-10-08 22:33:00 +0000281 if (addr && addr_len) {
282 i2c->IICSTAT = I2C_MODE_MT | I2C_TXRX_ENA;
283 i2c->IICDS = chip;
284 /* send START */
285 i2c->IICSTAT |= I2C_START_STOP;
286 result = WaitForXfer ();
287 if (IsACK ()) {
288 i = 0;
289 while ((i < addr_len) && (result == I2C_OK)) {
290 i2c->IICDS = addr[i];
291 ReadWriteByte ();
292 result = WaitForXfer ();
293 i++;
294 }
wdenk1cb8e982003-03-06 21:55:29 +0000295
wdenkfc3e2162003-10-08 22:33:00 +0000296 i2c->IICDS = chip;
297 /* resend START */
298 i2c->IICSTAT = I2C_MODE_MR | I2C_TXRX_ENA |
299 I2C_START_STOP;
300 ReadWriteByte ();
301 result = WaitForXfer ();
302 i = 0;
303 while ((i < data_len) && (result == I2C_OK)) {
304 /* disable ACK for final READ */
305 if (i == data_len - 1)
306 i2c->IICCON &= ~0x80;
307 ReadWriteByte ();
308 result = WaitForXfer ();
309 data[i] = i2c->IICDS;
310 i++;
311 }
312 } else {
313 result = I2C_NACK;
314 }
315
wdenk1cb8e982003-03-06 21:55:29 +0000316 } else {
wdenkfc3e2162003-10-08 22:33:00 +0000317 i2c->IICSTAT = I2C_MODE_MR | I2C_TXRX_ENA;
318 i2c->IICDS = chip;
319 /* send START */
320 i2c->IICSTAT |= I2C_START_STOP;
321 result = WaitForXfer ();
322
323 if (IsACK ()) {
324 i = 0;
325 while ((i < data_len) && (result == I2C_OK)) {
326 /* disable ACK for final READ */
327 if (i == data_len - 1)
328 i2c->IICCON &= ~0x80;
329 ReadWriteByte ();
330 result = WaitForXfer ();
331 data[i] = i2c->IICDS;
332 i++;
333 }
334 } else {
335 result = I2C_NACK;
336 }
wdenk1cb8e982003-03-06 21:55:29 +0000337 }
338
wdenkfc3e2162003-10-08 22:33:00 +0000339 /* send STOP */
wdenk48b42612003-06-19 23:01:32 +0000340 i2c->IICSTAT = I2C_MODE_MR | I2C_TXRX_ENA;
wdenkfc3e2162003-10-08 22:33:00 +0000341 ReadWriteByte ();
342 break;
wdenk1cb8e982003-03-06 21:55:29 +0000343
344 default:
wdenkfc3e2162003-10-08 22:33:00 +0000345 printf ("i2c_transfer: bad call\n");
346 result = I2C_NOK;
347 break;
348 }
wdenk1cb8e982003-03-06 21:55:29 +0000349
wdenkfc3e2162003-10-08 22:33:00 +0000350 return (result);
wdenk1cb8e982003-03-06 21:55:29 +0000351}
352
353int i2c_probe (uchar chip)
354{
wdenkfc3e2162003-10-08 22:33:00 +0000355 uchar buf[1];
wdenk1cb8e982003-03-06 21:55:29 +0000356
wdenkfc3e2162003-10-08 22:33:00 +0000357 buf[0] = 0;
wdenk1cb8e982003-03-06 21:55:29 +0000358
wdenkfc3e2162003-10-08 22:33:00 +0000359 /*
360 * What is needed is to send the chip address and verify that the
361 * address was <ACK>ed (i.e. there was a chip at that address which
362 * drove the data line low).
363 */
364 return (i2c_transfer (I2C_READ, chip << 1, 0, 0, buf, 1) != I2C_OK);
wdenk1cb8e982003-03-06 21:55:29 +0000365}
366
367int i2c_read (uchar chip, uint addr, int alen, uchar * buffer, int len)
368{
wdenkfc3e2162003-10-08 22:33:00 +0000369 uchar xaddr[4];
370 int ret;
wdenk1cb8e982003-03-06 21:55:29 +0000371
wdenkfc3e2162003-10-08 22:33:00 +0000372 if (alen > 4) {
373 printf ("I2C read: addr len %d not supported\n", alen);
374 return 1;
375 }
wdenk1cb8e982003-03-06 21:55:29 +0000376
wdenkfc3e2162003-10-08 22:33:00 +0000377 if (alen > 0) {
378 xaddr[0] = (addr >> 24) & 0xFF;
379 xaddr[1] = (addr >> 16) & 0xFF;
380 xaddr[2] = (addr >> 8) & 0xFF;
381 xaddr[3] = addr & 0xFF;
382 }
wdenk1cb8e982003-03-06 21:55:29 +0000383
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200384#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
wdenkfc3e2162003-10-08 22:33:00 +0000385 /*
386 * EEPROM chips that implement "address overflow" are ones
387 * like Catalyst 24WC04/08/16 which has 9/10/11 bits of
388 * address and the extra bits end up in the "chip address"
389 * bit slots. This makes a 24WC08 (1Kbyte) chip look like
390 * four 256 byte chips.
391 *
392 * Note that we consider the length of the address field to
393 * still be one byte because the extra address bits are
394 * hidden in the chip address.
395 */
396 if (alen > 0)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200397 chip |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
wdenk1cb8e982003-03-06 21:55:29 +0000398#endif
wdenkfc3e2162003-10-08 22:33:00 +0000399 if ((ret =
400 i2c_transfer (I2C_READ, chip << 1, &xaddr[4 - alen], alen,
401 buffer, len)) != 0) {
402 printf ("I2c read: failed %d\n", ret);
403 return 1;
404 }
405 return 0;
wdenk1cb8e982003-03-06 21:55:29 +0000406}
407
408int i2c_write (uchar chip, uint addr, int alen, uchar * buffer, int len)
409{
wdenkfc3e2162003-10-08 22:33:00 +0000410 uchar xaddr[4];
wdenk1cb8e982003-03-06 21:55:29 +0000411
wdenkfc3e2162003-10-08 22:33:00 +0000412 if (alen > 4) {
413 printf ("I2C write: addr len %d not supported\n", alen);
414 return 1;
415 }
wdenk1cb8e982003-03-06 21:55:29 +0000416
wdenkfc3e2162003-10-08 22:33:00 +0000417 if (alen > 0) {
418 xaddr[0] = (addr >> 24) & 0xFF;
419 xaddr[1] = (addr >> 16) & 0xFF;
420 xaddr[2] = (addr >> 8) & 0xFF;
421 xaddr[3] = addr & 0xFF;
422 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200423#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
wdenkfc3e2162003-10-08 22:33:00 +0000424 /*
425 * EEPROM chips that implement "address overflow" are ones
426 * like Catalyst 24WC04/08/16 which has 9/10/11 bits of
427 * address and the extra bits end up in the "chip address"
428 * bit slots. This makes a 24WC08 (1Kbyte) chip look like
429 * four 256 byte chips.
430 *
431 * Note that we consider the length of the address field to
432 * still be one byte because the extra address bits are
433 * hidden in the chip address.
434 */
435 if (alen > 0)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200436 chip |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
wdenk1cb8e982003-03-06 21:55:29 +0000437#endif
wdenkfc3e2162003-10-08 22:33:00 +0000438 return (i2c_transfer
439 (I2C_WRITE, chip << 1, &xaddr[4 - alen], alen, buffer,
440 len) != 0);
wdenk1cb8e982003-03-06 21:55:29 +0000441}
wdenk1cb8e982003-03-06 21:55:29 +0000442#endif /* CONFIG_HARD_I2C */