3 * David Mueller, ELSOFT AG, d.mueller@elsoft.ch
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
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.
30 #if (defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5)
31 #include <asm/arch/clk.h>
32 #include <asm/arch/cpu.h>
34 #include <asm/arch/s3c24x0_cpu.h>
38 #include "s3c24x0_i2c.h"
40 #ifdef CONFIG_HARD_I2C
48 #define I2C_NOK_LA 3 /* Lost arbitration */
49 #define I2C_NOK_TOUT 4 /* time out */
51 #define I2CSTAT_BSY 0x20 /* Busy bit */
52 #define I2CSTAT_NACK 0x01 /* Nack bit */
53 #define I2CCON_ACKGEN 0x80 /* Acknowledge generation */
54 #define I2CCON_IRPND 0x10 /* Interrupt pending bit */
55 #define I2C_MODE_MT 0xC0 /* Master Transmit Mode */
56 #define I2C_MODE_MR 0x80 /* Master Receive Mode */
57 #define I2C_START_STOP 0x20 /* START / STOP */
58 #define I2C_TXRX_ENA 0x10 /* I2C Tx/Rx enable */
60 #define I2C_TIMEOUT 1 /* 1 second */
63 static unsigned int g_current_bus; /* Stores Current I2C Bus */
65 #if !(defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5)
66 static int GetI2CSDA(void)
68 struct s3c24x0_gpio *gpio = s3c24x0_get_base_gpio();
71 return (readl(&gpio->gpedat) & 0x8000) >> 15;
74 return (readl(&gpio->pgdat) & 0x0020) >> 5;
79 static void SetI2CSDA(int x)
81 rGPEDAT = (rGPEDAT & ~0x8000) | (x & 1) << 15;
85 static void SetI2CSCL(int x)
87 struct s3c24x0_gpio *gpio = s3c24x0_get_base_gpio();
90 writel((readl(&gpio->gpedat) & ~0x4000) |
91 (x & 1) << 14, &gpio->gpedat);
94 writel((readl(&gpio->pgdat) & ~0x0040) | (x & 1) << 6, &gpio->pgdat);
99 static int WaitForXfer(struct s3c24x0_i2c *i2c)
103 i = I2C_TIMEOUT * 10000;
104 while (!(readl(&i2c->iiccon) & I2CCON_IRPND) && (i > 0)) {
109 return (readl(&i2c->iiccon) & I2CCON_IRPND) ? I2C_OK : I2C_NOK_TOUT;
112 static int IsACK(struct s3c24x0_i2c *i2c)
114 return !(readl(&i2c->iicstat) & I2CSTAT_NACK);
117 static void ReadWriteByte(struct s3c24x0_i2c *i2c)
119 writel(readl(&i2c->iiccon) & ~I2CCON_IRPND, &i2c->iiccon);
122 static struct s3c24x0_i2c *get_base_i2c(void)
124 #ifdef CONFIG_EXYNOS4
125 struct s3c24x0_i2c *i2c = (struct s3c24x0_i2c *)(samsung_get_base_i2c()
126 + (EXYNOS4_I2C_SPACING
129 #elif defined CONFIG_EXYNOS5
130 struct s3c24x0_i2c *i2c = (struct s3c24x0_i2c *)(samsung_get_base_i2c()
131 + (EXYNOS5_I2C_SPACING
135 return s3c24x0_get_base_i2c();
139 static void i2c_ch_init(struct s3c24x0_i2c *i2c, int speed, int slaveadd)
141 ulong freq, pres = 16, div;
142 #if (defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5)
143 freq = get_i2c_clk();
147 /* calculate prescaler and divisor values */
148 if ((freq / pres / (16 + 1)) > speed)
149 /* set prescaler to 512 */
153 while ((freq / pres / (div + 1)) > speed)
156 /* set prescaler, divisor according to freq, also set ACKGEN, IRQ */
157 writel((div & 0x0F) | 0xA0 | ((pres == 512) ? 0x40 : 0), &i2c->iiccon);
159 /* init to SLAVE REVEIVE and set slaveaddr */
160 writel(0, &i2c->iicstat);
161 writel(slaveadd, &i2c->iicadd);
162 /* program Master Transmit (and implicit STOP) */
163 writel(I2C_MODE_MT | I2C_TXRX_ENA, &i2c->iicstat);
167 * MULTI BUS I2C support
170 #ifdef CONFIG_I2C_MULTI_BUS
171 int i2c_set_bus_num(unsigned int bus)
173 struct s3c24x0_i2c *i2c;
175 if ((bus < 0) || (bus >= CONFIG_MAX_I2C_NUM)) {
176 debug("Bad bus: %d\n", bus);
181 i2c = get_base_i2c();
182 i2c_ch_init(i2c, CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
187 unsigned int i2c_get_bus_num(void)
189 return g_current_bus;
193 void i2c_init(int speed, int slaveadd)
195 struct s3c24x0_i2c *i2c;
196 #if !(defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5)
197 struct s3c24x0_gpio *gpio = s3c24x0_get_base_gpio();
201 /* By default i2c channel 0 is the current bus */
203 i2c = get_base_i2c();
205 /* wait for some time to give previous transfer a chance to finish */
206 i = I2C_TIMEOUT * 1000;
207 while ((readl(&i2c->iicstat) & I2CSTAT_BSY) && (i > 0)) {
212 #if !(defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5)
213 if ((readl(&i2c->iicstat) & I2CSTAT_BSY) || GetI2CSDA() == 0) {
214 #ifdef CONFIG_S3C2410
215 ulong old_gpecon = readl(&gpio->gpecon);
217 #ifdef CONFIG_S3C2400
218 ulong old_gpecon = readl(&gpio->pgcon);
220 /* bus still busy probably by (most) previously interrupted
223 #ifdef CONFIG_S3C2410
224 /* set I2CSDA and I2CSCL (GPE15, GPE14) to GPIO */
225 writel((readl(&gpio->gpecon) & ~0xF0000000) | 0x10000000,
228 #ifdef CONFIG_S3C2400
229 /* set I2CSDA and I2CSCL (PG5, PG6) to GPIO */
230 writel((readl(&gpio->pgcon) & ~0x00003c00) | 0x00001000,
234 /* toggle I2CSCL until bus idle */
238 while ((i > 0) && (GetI2CSDA() != 1)) {
248 /* restore pin functions */
249 #ifdef CONFIG_S3C2410
250 writel(old_gpecon, &gpio->gpecon);
252 #ifdef CONFIG_S3C2400
253 writel(old_gpecon, &gpio->pgcon);
256 #endif /* #if !(defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5) */
257 i2c_ch_init(i2c, speed, slaveadd);
261 * cmd_type is 0 for write, 1 for read.
263 * addr_len can take any value from 0-255, it is only limited
264 * by the char, we could make it larger if needed. If it is
265 * 0 we skip the address write cycle.
267 static int i2c_transfer(struct s3c24x0_i2c *i2c,
268 unsigned char cmd_type,
270 unsigned char addr[],
271 unsigned char addr_len,
272 unsigned char data[],
273 unsigned short data_len)
277 if (data == 0 || data_len == 0) {
278 /*Don't support data transfer of no length or to address 0 */
279 debug("i2c_transfer: bad call\n");
283 /* Check I2C bus idle */
284 i = I2C_TIMEOUT * 1000;
285 while ((readl(&i2c->iicstat) & I2CSTAT_BSY) && (i > 0)) {
290 if (readl(&i2c->iicstat) & I2CSTAT_BSY)
293 writel(readl(&i2c->iiccon) | I2CCON_ACKGEN, &i2c->iiccon);
298 if (addr && addr_len) {
299 writel(chip, &i2c->iicds);
301 writel(I2C_MODE_MT | I2C_TXRX_ENA | I2C_START_STOP,
304 while ((i < addr_len) && (result == I2C_OK)) {
305 result = WaitForXfer(i2c);
306 writel(addr[i], &i2c->iicds);
311 while ((i < data_len) && (result == I2C_OK)) {
312 result = WaitForXfer(i2c);
313 writel(data[i], &i2c->iicds);
318 writel(chip, &i2c->iicds);
320 writel(I2C_MODE_MT | I2C_TXRX_ENA | I2C_START_STOP,
323 while ((i < data_len) && (result = I2C_OK)) {
324 result = WaitForXfer(i2c);
325 writel(data[i], &i2c->iicds);
331 if (result == I2C_OK)
332 result = WaitForXfer(i2c);
335 writel(I2C_MODE_MR | I2C_TXRX_ENA, &i2c->iicstat);
340 if (addr && addr_len) {
341 writel(I2C_MODE_MT | I2C_TXRX_ENA, &i2c->iicstat);
342 writel(chip, &i2c->iicds);
344 writel(readl(&i2c->iicstat) | I2C_START_STOP,
346 result = WaitForXfer(i2c);
349 while ((i < addr_len) && (result == I2C_OK)) {
350 writel(addr[i], &i2c->iicds);
352 result = WaitForXfer(i2c);
356 writel(chip, &i2c->iicds);
358 writel(I2C_MODE_MR | I2C_TXRX_ENA |
359 I2C_START_STOP, &i2c->iicstat);
361 result = WaitForXfer(i2c);
363 while ((i < data_len) && (result == I2C_OK)) {
364 /* disable ACK for final READ */
365 if (i == data_len - 1)
366 writel(readl(&i2c->iiccon)
370 result = WaitForXfer(i2c);
371 data[i] = readl(&i2c->iicds);
379 writel(I2C_MODE_MR | I2C_TXRX_ENA, &i2c->iicstat);
380 writel(chip, &i2c->iicds);
382 writel(readl(&i2c->iicstat) | I2C_START_STOP,
384 result = WaitForXfer(i2c);
388 while ((i < data_len) && (result == I2C_OK)) {
389 /* disable ACK for final READ */
390 if (i == data_len - 1)
391 writel(readl(&i2c->iiccon) &
395 result = WaitForXfer(i2c);
396 data[i] = readl(&i2c->iicds);
405 writel(I2C_MODE_MR | I2C_TXRX_ENA, &i2c->iicstat);
410 debug("i2c_transfer: bad call\n");
418 int i2c_probe(uchar chip)
420 struct s3c24x0_i2c *i2c;
423 i2c = get_base_i2c();
427 * What is needed is to send the chip address and verify that the
428 * address was <ACK>ed (i.e. there was a chip at that address which
429 * drove the data line low).
431 return i2c_transfer(i2c, I2C_READ, chip << 1, 0, 0, buf, 1) != I2C_OK;
434 int i2c_read(uchar chip, uint addr, int alen, uchar *buffer, int len)
436 struct s3c24x0_i2c *i2c;
441 debug("I2C read: addr len %d not supported\n", alen);
446 xaddr[0] = (addr >> 24) & 0xFF;
447 xaddr[1] = (addr >> 16) & 0xFF;
448 xaddr[2] = (addr >> 8) & 0xFF;
449 xaddr[3] = addr & 0xFF;
452 #ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
454 * EEPROM chips that implement "address overflow" are ones
455 * like Catalyst 24WC04/08/16 which has 9/10/11 bits of
456 * address and the extra bits end up in the "chip address"
457 * bit slots. This makes a 24WC08 (1Kbyte) chip look like
458 * four 256 byte chips.
460 * Note that we consider the length of the address field to
461 * still be one byte because the extra address bits are
462 * hidden in the chip address.
465 chip |= ((addr >> (alen * 8)) &
466 CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
468 i2c = get_base_i2c();
469 ret = i2c_transfer(i2c, I2C_READ, chip << 1, &xaddr[4 - alen], alen,
472 debug("I2c read: failed %d\n", ret);
478 int i2c_write(uchar chip, uint addr, int alen, uchar *buffer, int len)
480 struct s3c24x0_i2c *i2c;
484 debug("I2C write: addr len %d not supported\n", alen);
489 xaddr[0] = (addr >> 24) & 0xFF;
490 xaddr[1] = (addr >> 16) & 0xFF;
491 xaddr[2] = (addr >> 8) & 0xFF;
492 xaddr[3] = addr & 0xFF;
494 #ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
496 * EEPROM chips that implement "address overflow" are ones
497 * like Catalyst 24WC04/08/16 which has 9/10/11 bits of
498 * address and the extra bits end up in the "chip address"
499 * bit slots. This makes a 24WC08 (1Kbyte) chip look like
500 * four 256 byte chips.
502 * Note that we consider the length of the address field to
503 * still be one byte because the extra address bits are
504 * hidden in the chip address.
507 chip |= ((addr >> (alen * 8)) &
508 CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
510 i2c = get_base_i2c();
512 (i2c, I2C_WRITE, chip << 1, &xaddr[4 - alen], alen, buffer,
515 #endif /* CONFIG_HARD_I2C */