blob: 0e6f2414f0c96d61dcea283134a247ebb030bfe1 [file] [log] [blame]
wdenk1cb8e982003-03-06 21:55:29 +00001/*
2 * (C) Copyright 2002
3 * David Mueller, ELSOFT AG, d.mueller@elsoft.ch
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk1cb8e982003-03-06 21:55:29 +00006 */
7
8/* This code should work for both the S3C2400 and the S3C2410
9 * as they seem to have the same I2C controller inside.
10 * The different address mapping is handled by the s3c24xx.h files below.
11 */
12
13#include <common.h>
Rajeshwari Shindea9d2ae72012-12-26 20:03:12 +000014#include <fdtdec.h>
Piotr Wilczekc86d9ed2012-11-20 02:19:05 +000015#if (defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5)
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +000016#include <asm/arch/clk.h>
17#include <asm/arch/cpu.h>
Rajeshwari Shindea9d2ae72012-12-26 20:03:12 +000018#include <asm/arch/pinmux.h>
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +000019#else
kevin.morfitt@fearnside-systems.co.ukac678042009-11-17 18:30:34 +090020#include <asm/arch/s3c24x0_cpu.h>
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +000021#endif
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +090022#include <asm/io.h>
wdenk1cb8e982003-03-06 21:55:29 +000023#include <i2c.h>
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +000024#include "s3c24x0_i2c.h"
wdenk1cb8e982003-03-06 21:55:29 +000025
26#ifdef CONFIG_HARD_I2C
27
wdenk48b42612003-06-19 23:01:32 +000028#define I2C_WRITE 0
29#define I2C_READ 1
wdenk1cb8e982003-03-06 21:55:29 +000030
wdenk48b42612003-06-19 23:01:32 +000031#define I2C_OK 0
32#define I2C_NOK 1
33#define I2C_NACK 2
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +090034#define I2C_NOK_LA 3 /* Lost arbitration */
35#define I2C_NOK_TOUT 4 /* time out */
wdenk1cb8e982003-03-06 21:55:29 +000036
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +090037#define I2CSTAT_BSY 0x20 /* Busy bit */
38#define I2CSTAT_NACK 0x01 /* Nack bit */
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +000039#define I2CCON_ACKGEN 0x80 /* Acknowledge generation */
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +090040#define I2CCON_IRPND 0x10 /* Interrupt pending bit */
41#define I2C_MODE_MT 0xC0 /* Master Transmit Mode */
42#define I2C_MODE_MR 0x80 /* Master Receive Mode */
43#define I2C_START_STOP 0x20 /* START / STOP */
44#define I2C_TXRX_ENA 0x10 /* I2C Tx/Rx enable */
wdenk1cb8e982003-03-06 21:55:29 +000045
Naveen Krishna Che4e24022013-10-15 16:01:43 +053046#define I2C_TIMEOUT_MS 1000 /* 1 second */
wdenk1cb8e982003-03-06 21:55:29 +000047
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +000048
Rajeshwari Shindea9d2ae72012-12-26 20:03:12 +000049/*
50 * For SPL boot some boards need i2c before SDRAM is initialised so force
51 * variables to live in SRAM
52 */
53static unsigned int g_current_bus __attribute__((section(".data")));
Rajeshwari Shinded04df3c2013-01-13 19:49:36 +000054#ifdef CONFIG_OF_CONTROL
Rajeshwari Shindea9d2ae72012-12-26 20:03:12 +000055static struct s3c24x0_i2c_bus i2c_bus[CONFIG_MAX_I2C_NUM]
56 __attribute__((section(".data")));
Rajeshwari Shinded04df3c2013-01-13 19:49:36 +000057#endif
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +000058
Piotr Wilczekc86d9ed2012-11-20 02:19:05 +000059#if !(defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5)
wdenk48b42612003-06-19 23:01:32 +000060static int GetI2CSDA(void)
wdenk1cb8e982003-03-06 21:55:29 +000061{
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +090062 struct s3c24x0_gpio *gpio = s3c24x0_get_base_gpio();
wdenk48b42612003-06-19 23:01:32 +000063
wdenk6dff5522003-07-15 07:45:49 +000064#ifdef CONFIG_S3C2410
C Naumand9abba82010-10-26 23:04:31 +090065 return (readl(&gpio->gpedat) & 0x8000) >> 15;
wdenk6dff5522003-07-15 07:45:49 +000066#endif
67#ifdef CONFIG_S3C2400
C Naumand9abba82010-10-26 23:04:31 +090068 return (readl(&gpio->pgdat) & 0x0020) >> 5;
wdenk6dff5522003-07-15 07:45:49 +000069#endif
wdenk1cb8e982003-03-06 21:55:29 +000070}
71
wdenk48b42612003-06-19 23:01:32 +000072static void SetI2CSCL(int x)
wdenk1cb8e982003-03-06 21:55:29 +000073{
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +090074 struct s3c24x0_gpio *gpio = s3c24x0_get_base_gpio();
wdenk48b42612003-06-19 23:01:32 +000075
wdenk6dff5522003-07-15 07:45:49 +000076#ifdef CONFIG_S3C2410
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +000077 writel((readl(&gpio->gpedat) & ~0x4000) |
78 (x & 1) << 14, &gpio->gpedat);
wdenk6dff5522003-07-15 07:45:49 +000079#endif
80#ifdef CONFIG_S3C2400
C Naumand9abba82010-10-26 23:04:31 +090081 writel((readl(&gpio->pgdat) & ~0x0040) | (x & 1) << 6, &gpio->pgdat);
wdenk6dff5522003-07-15 07:45:49 +000082#endif
wdenk1cb8e982003-03-06 21:55:29 +000083}
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +000084#endif
wdenk1cb8e982003-03-06 21:55:29 +000085
Naveen Krishna Che4e24022013-10-15 16:01:43 +053086/*
87 * Wait til the byte transfer is completed.
88 *
89 * @param i2c- pointer to the appropriate i2c register bank.
90 * @return I2C_OK, if transmission was ACKED
91 * I2C_NACK, if transmission was NACKED
92 * I2C_NOK_TIMEOUT, if transaction did not complete in I2C_TIMEOUT_MS
93 */
94
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +000095static int WaitForXfer(struct s3c24x0_i2c *i2c)
wdenk1cb8e982003-03-06 21:55:29 +000096{
Naveen Krishna Che4e24022013-10-15 16:01:43 +053097 ulong start_time = get_timer(0);
wdenk1cb8e982003-03-06 21:55:29 +000098
Naveen Krishna Che4e24022013-10-15 16:01:43 +053099 do {
100 if (readl(&i2c->iiccon) & I2CCON_IRPND)
101 return (readl(&i2c->iicstat) & I2CSTAT_NACK) ?
102 I2C_NACK : I2C_OK;
103 } while (get_timer(start_time) < I2C_TIMEOUT_MS);
wdenk1cb8e982003-03-06 21:55:29 +0000104
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530105 return I2C_NOK_TOUT;
wdenk1cb8e982003-03-06 21:55:29 +0000106}
107
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000108static void ReadWriteByte(struct s3c24x0_i2c *i2c)
wdenk1cb8e982003-03-06 21:55:29 +0000109{
C Naumand9abba82010-10-26 23:04:31 +0900110 writel(readl(&i2c->iiccon) & ~I2CCON_IRPND, &i2c->iiccon);
wdenk1cb8e982003-03-06 21:55:29 +0000111}
112
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000113static struct s3c24x0_i2c *get_base_i2c(void)
114{
Piotr Wilczekc86d9ed2012-11-20 02:19:05 +0000115#ifdef CONFIG_EXYNOS4
116 struct s3c24x0_i2c *i2c = (struct s3c24x0_i2c *)(samsung_get_base_i2c()
117 + (EXYNOS4_I2C_SPACING
118 * g_current_bus));
119 return i2c;
120#elif defined CONFIG_EXYNOS5
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000121 struct s3c24x0_i2c *i2c = (struct s3c24x0_i2c *)(samsung_get_base_i2c()
122 + (EXYNOS5_I2C_SPACING
123 * g_current_bus));
124 return i2c;
125#else
126 return s3c24x0_get_base_i2c();
127#endif
128}
129
130static void i2c_ch_init(struct s3c24x0_i2c *i2c, int speed, int slaveadd)
131{
132 ulong freq, pres = 16, div;
Piotr Wilczekc86d9ed2012-11-20 02:19:05 +0000133#if (defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5)
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000134 freq = get_i2c_clk();
135#else
136 freq = get_PCLK();
137#endif
138 /* calculate prescaler and divisor values */
139 if ((freq / pres / (16 + 1)) > speed)
140 /* set prescaler to 512 */
141 pres = 512;
142
143 div = 0;
144 while ((freq / pres / (div + 1)) > speed)
145 div++;
146
147 /* set prescaler, divisor according to freq, also set ACKGEN, IRQ */
148 writel((div & 0x0F) | 0xA0 | ((pres == 512) ? 0x40 : 0), &i2c->iiccon);
149
150 /* init to SLAVE REVEIVE and set slaveaddr */
151 writel(0, &i2c->iicstat);
152 writel(slaveadd, &i2c->iicadd);
153 /* program Master Transmit (and implicit STOP) */
154 writel(I2C_MODE_MT | I2C_TXRX_ENA, &i2c->iicstat);
155}
156
Rajeshwari Shinde178239d2012-07-23 21:23:54 +0000157/*
158 * MULTI BUS I2C support
159 */
160
161#ifdef CONFIG_I2C_MULTI_BUS
162int i2c_set_bus_num(unsigned int bus)
163{
164 struct s3c24x0_i2c *i2c;
165
Simon Glass940dd162013-10-15 16:02:10 +0530166 i2c_bus = get_bus(bus);
167 if (!i2c_bus)
Rajeshwari Shinde178239d2012-07-23 21:23:54 +0000168 return -1;
169 }
170
171 g_current_bus = bus;
172 i2c = get_base_i2c();
173 i2c_ch_init(i2c, CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
174
175 return 0;
176}
177
178unsigned int i2c_get_bus_num(void)
179{
180 return g_current_bus;
181}
182#endif
183
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900184void i2c_init(int speed, int slaveadd)
wdenk1cb8e982003-03-06 21:55:29 +0000185{
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530186 int i;
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000187 struct s3c24x0_i2c *i2c;
Piotr Wilczekc86d9ed2012-11-20 02:19:05 +0000188#if !(defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5)
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900189 struct s3c24x0_gpio *gpio = s3c24x0_get_base_gpio();
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000190#endif
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530191 ulong start_time = get_timer(0);
wdenk1cb8e982003-03-06 21:55:29 +0000192
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000193 /* By default i2c channel 0 is the current bus */
194 g_current_bus = 0;
195 i2c = get_base_i2c();
wdenk1cb8e982003-03-06 21:55:29 +0000196
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530197 /*
198 * In case the previous transfer is still going, wait to give it a
199 * chance to finish.
200 */
201 while (readl(&i2c->iicstat) & I2CSTAT_BSY) {
202 if (get_timer(start_time) > I2C_TIMEOUT_MS) {
203 printf("%s: I2C bus busy for %p\n", __func__,
204 &i2c->iicstat);
205 return;
206 }
wdenk1cb8e982003-03-06 21:55:29 +0000207 }
wdenk1cb8e982003-03-06 21:55:29 +0000208
Piotr Wilczekc86d9ed2012-11-20 02:19:05 +0000209#if !(defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5)
C Naumand9abba82010-10-26 23:04:31 +0900210 if ((readl(&i2c->iicstat) & I2CSTAT_BSY) || GetI2CSDA() == 0) {
wdenk6dff5522003-07-15 07:45:49 +0000211#ifdef CONFIG_S3C2410
C Naumand9abba82010-10-26 23:04:31 +0900212 ulong old_gpecon = readl(&gpio->gpecon);
wdenk6dff5522003-07-15 07:45:49 +0000213#endif
214#ifdef CONFIG_S3C2400
C Naumand9abba82010-10-26 23:04:31 +0900215 ulong old_gpecon = readl(&gpio->pgcon);
wdenk6dff5522003-07-15 07:45:49 +0000216#endif
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900217 /* bus still busy probably by (most) previously interrupted
218 transfer */
wdenk1cb8e982003-03-06 21:55:29 +0000219
wdenkfc3e2162003-10-08 22:33:00 +0000220#ifdef CONFIG_S3C2410
221 /* set I2CSDA and I2CSCL (GPE15, GPE14) to GPIO */
C Naumand9abba82010-10-26 23:04:31 +0900222 writel((readl(&gpio->gpecon) & ~0xF0000000) | 0x10000000,
223 &gpio->gpecon);
wdenkfc3e2162003-10-08 22:33:00 +0000224#endif
225#ifdef CONFIG_S3C2400
226 /* set I2CSDA and I2CSCL (PG5, PG6) to GPIO */
C Naumand9abba82010-10-26 23:04:31 +0900227 writel((readl(&gpio->pgcon) & ~0x00003c00) | 0x00001000,
228 &gpio->pgcon);
wdenkfc3e2162003-10-08 22:33:00 +0000229#endif
wdenk1cb8e982003-03-06 21:55:29 +0000230
wdenkfc3e2162003-10-08 22:33:00 +0000231 /* toggle I2CSCL until bus idle */
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900232 SetI2CSCL(0);
233 udelay(1000);
wdenkfc3e2162003-10-08 22:33:00 +0000234 i = 10;
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900235 while ((i > 0) && (GetI2CSDA() != 1)) {
236 SetI2CSCL(1);
237 udelay(1000);
238 SetI2CSCL(0);
239 udelay(1000);
wdenkfc3e2162003-10-08 22:33:00 +0000240 i--;
241 }
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900242 SetI2CSCL(1);
243 udelay(1000);
wdenk1cb8e982003-03-06 21:55:29 +0000244
wdenkfc3e2162003-10-08 22:33:00 +0000245 /* restore pin functions */
246#ifdef CONFIG_S3C2410
C Naumand9abba82010-10-26 23:04:31 +0900247 writel(old_gpecon, &gpio->gpecon);
wdenkfc3e2162003-10-08 22:33:00 +0000248#endif
249#ifdef CONFIG_S3C2400
C Naumand9abba82010-10-26 23:04:31 +0900250 writel(old_gpecon, &gpio->pgcon);
wdenkfc3e2162003-10-08 22:33:00 +0000251#endif
252 }
Piotr Wilczekc86d9ed2012-11-20 02:19:05 +0000253#endif /* #if !(defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5) */
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000254 i2c_ch_init(i2c, speed, slaveadd);
wdenk1cb8e982003-03-06 21:55:29 +0000255}
256
257/*
wdenkfc3e2162003-10-08 22:33:00 +0000258 * cmd_type is 0 for write, 1 for read.
259 *
260 * addr_len can take any value from 0-255, it is only limited
261 * by the char, we could make it larger if needed. If it is
262 * 0 we skip the address write cycle.
263 */
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000264static int i2c_transfer(struct s3c24x0_i2c *i2c,
265 unsigned char cmd_type,
266 unsigned char chip,
267 unsigned char addr[],
268 unsigned char addr_len,
269 unsigned char data[],
270 unsigned short data_len)
wdenk1cb8e982003-03-06 21:55:29 +0000271{
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530272 int i = 0, result;
273 ulong start_time = get_timer(0);
wdenk1cb8e982003-03-06 21:55:29 +0000274
wdenkfc3e2162003-10-08 22:33:00 +0000275 if (data == 0 || data_len == 0) {
276 /*Don't support data transfer of no length or to address 0 */
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000277 debug("i2c_transfer: bad call\n");
wdenkfc3e2162003-10-08 22:33:00 +0000278 return I2C_NOK;
279 }
wdenk1cb8e982003-03-06 21:55:29 +0000280
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530281 while (readl(&i2c->iicstat) & I2CSTAT_BSY) {
282 if (get_timer(start_time) > I2C_TIMEOUT_MS)
283 return I2C_NOK_TOUT;
wdenkfc3e2162003-10-08 22:33:00 +0000284 }
wdenk1cb8e982003-03-06 21:55:29 +0000285
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000286 writel(readl(&i2c->iiccon) | I2CCON_ACKGEN, &i2c->iiccon);
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530287
288 /* Get the slave chip address going */
289 writel(chip, &i2c->iicds);
290 if ((cmd_type == I2C_WRITE) || (addr && addr_len))
291 writel(I2C_MODE_MT | I2C_TXRX_ENA | I2C_START_STOP,
292 &i2c->iicstat);
293 else
294 writel(I2C_MODE_MR | I2C_TXRX_ENA | I2C_START_STOP,
295 &i2c->iicstat);
296
297 /* Wait for chip address to transmit. */
298 result = WaitForXfer(i2c);
299 if (result != I2C_OK)
300 goto bailout;
301
302 /* If register address needs to be transmitted - do it now. */
303 if (addr && addr_len) {
304 while ((i < addr_len) && (result == I2C_OK)) {
305 writel(addr[i++], &i2c->iicds);
306 ReadWriteByte(i2c);
307 result = WaitForXfer(i2c);
308 }
309 i = 0;
310 if (result != I2C_OK)
311 goto bailout;
312 }
wdenk1cb8e982003-03-06 21:55:29 +0000313
wdenkfc3e2162003-10-08 22:33:00 +0000314 switch (cmd_type) {
wdenk48b42612003-06-19 23:01:32 +0000315 case I2C_WRITE:
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530316 while ((i < data_len) && (result == I2C_OK)) {
317 writel(data[i++], &i2c->iicds);
318 ReadWriteByte(i2c);
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000319 result = WaitForXfer(i2c);
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530320 }
wdenkfc3e2162003-10-08 22:33:00 +0000321 break;
wdenk1cb8e982003-03-06 21:55:29 +0000322
wdenk48b42612003-06-19 23:01:32 +0000323 case I2C_READ:
wdenkfc3e2162003-10-08 22:33:00 +0000324 if (addr && addr_len) {
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530325 /*
326 * Register address has been sent, now send slave chip
327 * address again to start the actual read transaction.
328 */
C Naumand9abba82010-10-26 23:04:31 +0900329 writel(chip, &i2c->iicds);
wdenk1cb8e982003-03-06 21:55:29 +0000330
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530331 /* Generate a re-START. */
Rajeshwari Shindecb466c02013-02-19 02:19:45 +0000332 writel(I2C_MODE_MR | I2C_TXRX_ENA | I2C_START_STOP,
333 &i2c->iicstat);
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530334 ReadWriteByte(i2c);
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000335 result = WaitForXfer(i2c);
wdenkfc3e2162003-10-08 22:33:00 +0000336
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530337 if (result != I2C_OK)
338 goto bailout;
wdenk1cb8e982003-03-06 21:55:29 +0000339 }
340
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530341 while ((i < data_len) && (result == I2C_OK)) {
342 /* disable ACK for final READ */
343 if (i == data_len - 1)
344 writel(readl(&i2c->iiccon)
345 & ~I2CCON_ACKGEN,
346 &i2c->iiccon);
347 ReadWriteByte(i2c);
348 result = WaitForXfer(i2c);
349 data[i++] = readl(&i2c->iicds);
350 }
351 if (result == I2C_NACK)
352 result = I2C_OK; /* Normal terminated read. */
wdenkfc3e2162003-10-08 22:33:00 +0000353 break;
wdenk1cb8e982003-03-06 21:55:29 +0000354
355 default:
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000356 debug("i2c_transfer: bad call\n");
wdenkfc3e2162003-10-08 22:33:00 +0000357 result = I2C_NOK;
358 break;
359 }
wdenk1cb8e982003-03-06 21:55:29 +0000360
Naveen Krishna Che4e24022013-10-15 16:01:43 +0530361bailout:
362 /* Send STOP. */
363 writel(I2C_MODE_MR | I2C_TXRX_ENA, &i2c->iicstat);
364 ReadWriteByte(i2c);
365
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000366 return result;
wdenk1cb8e982003-03-06 21:55:29 +0000367}
368
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900369int i2c_probe(uchar chip)
wdenk1cb8e982003-03-06 21:55:29 +0000370{
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000371 struct s3c24x0_i2c *i2c;
wdenkfc3e2162003-10-08 22:33:00 +0000372 uchar buf[1];
wdenk1cb8e982003-03-06 21:55:29 +0000373
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000374 i2c = get_base_i2c();
wdenkfc3e2162003-10-08 22:33:00 +0000375 buf[0] = 0;
wdenk1cb8e982003-03-06 21:55:29 +0000376
wdenkfc3e2162003-10-08 22:33:00 +0000377 /*
378 * What is needed is to send the chip address and verify that the
379 * address was <ACK>ed (i.e. there was a chip at that address which
380 * drove the data line low).
381 */
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000382 return i2c_transfer(i2c, I2C_READ, chip << 1, 0, 0, buf, 1) != I2C_OK;
wdenk1cb8e982003-03-06 21:55:29 +0000383}
384
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900385int i2c_read(uchar chip, uint addr, int alen, uchar *buffer, int len)
wdenk1cb8e982003-03-06 21:55:29 +0000386{
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000387 struct s3c24x0_i2c *i2c;
wdenkfc3e2162003-10-08 22:33:00 +0000388 uchar xaddr[4];
389 int ret;
wdenk1cb8e982003-03-06 21:55:29 +0000390
wdenkfc3e2162003-10-08 22:33:00 +0000391 if (alen > 4) {
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000392 debug("I2C read: addr len %d not supported\n", alen);
wdenkfc3e2162003-10-08 22:33:00 +0000393 return 1;
394 }
wdenk1cb8e982003-03-06 21:55:29 +0000395
wdenkfc3e2162003-10-08 22:33:00 +0000396 if (alen > 0) {
397 xaddr[0] = (addr >> 24) & 0xFF;
398 xaddr[1] = (addr >> 16) & 0xFF;
399 xaddr[2] = (addr >> 8) & 0xFF;
400 xaddr[3] = addr & 0xFF;
401 }
wdenk1cb8e982003-03-06 21:55:29 +0000402
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200403#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
wdenkfc3e2162003-10-08 22:33:00 +0000404 /*
405 * EEPROM chips that implement "address overflow" are ones
406 * like Catalyst 24WC04/08/16 which has 9/10/11 bits of
407 * address and the extra bits end up in the "chip address"
408 * bit slots. This makes a 24WC08 (1Kbyte) chip look like
409 * four 256 byte chips.
410 *
411 * Note that we consider the length of the address field to
412 * still be one byte because the extra address bits are
413 * hidden in the chip address.
414 */
415 if (alen > 0)
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900416 chip |= ((addr >> (alen * 8)) &
417 CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
wdenk1cb8e982003-03-06 21:55:29 +0000418#endif
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000419 i2c = get_base_i2c();
420 ret = i2c_transfer(i2c, I2C_READ, chip << 1, &xaddr[4 - alen], alen,
421 buffer, len);
422 if (ret != 0) {
423 debug("I2c read: failed %d\n", ret);
wdenkfc3e2162003-10-08 22:33:00 +0000424 return 1;
425 }
426 return 0;
wdenk1cb8e982003-03-06 21:55:29 +0000427}
428
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900429int i2c_write(uchar chip, uint addr, int alen, uchar *buffer, int len)
wdenk1cb8e982003-03-06 21:55:29 +0000430{
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000431 struct s3c24x0_i2c *i2c;
wdenkfc3e2162003-10-08 22:33:00 +0000432 uchar xaddr[4];
wdenk1cb8e982003-03-06 21:55:29 +0000433
wdenkfc3e2162003-10-08 22:33:00 +0000434 if (alen > 4) {
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000435 debug("I2C write: addr len %d not supported\n", alen);
wdenkfc3e2162003-10-08 22:33:00 +0000436 return 1;
437 }
wdenk1cb8e982003-03-06 21:55:29 +0000438
wdenkfc3e2162003-10-08 22:33:00 +0000439 if (alen > 0) {
440 xaddr[0] = (addr >> 24) & 0xFF;
441 xaddr[1] = (addr >> 16) & 0xFF;
442 xaddr[2] = (addr >> 8) & 0xFF;
443 xaddr[3] = addr & 0xFF;
444 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200445#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
wdenkfc3e2162003-10-08 22:33:00 +0000446 /*
447 * EEPROM chips that implement "address overflow" are ones
448 * like Catalyst 24WC04/08/16 which has 9/10/11 bits of
449 * address and the extra bits end up in the "chip address"
450 * bit slots. This makes a 24WC08 (1Kbyte) chip look like
451 * four 256 byte chips.
452 *
453 * Note that we consider the length of the address field to
454 * still be one byte because the extra address bits are
455 * hidden in the chip address.
456 */
457 if (alen > 0)
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900458 chip |= ((addr >> (alen * 8)) &
459 CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
wdenk1cb8e982003-03-06 21:55:29 +0000460#endif
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000461 i2c = get_base_i2c();
wdenkfc3e2162003-10-08 22:33:00 +0000462 return (i2c_transfer
Rajeshwari Shindeab7e52b2012-07-23 21:23:53 +0000463 (i2c, I2C_WRITE, chip << 1, &xaddr[4 - alen], alen, buffer,
wdenkfc3e2162003-10-08 22:33:00 +0000464 len) != 0);
wdenk1cb8e982003-03-06 21:55:29 +0000465}
Rajeshwari Shindea9d2ae72012-12-26 20:03:12 +0000466
Amar1ae76d42013-07-10 10:42:29 +0530467#ifdef CONFIG_OF_CONTROL
Rajeshwari Shindea9d2ae72012-12-26 20:03:12 +0000468void board_i2c_init(const void *blob)
469{
Amar2c07bb92013-04-04 02:27:06 -0400470 int i;
Rajeshwari Shindea9d2ae72012-12-26 20:03:12 +0000471 int node_list[CONFIG_MAX_I2C_NUM];
Amar2c07bb92013-04-04 02:27:06 -0400472 int count;
Rajeshwari Shindea9d2ae72012-12-26 20:03:12 +0000473
474 count = fdtdec_find_aliases_for_id(blob, "i2c",
475 COMPAT_SAMSUNG_S3C2440_I2C, node_list,
476 CONFIG_MAX_I2C_NUM);
477
478 for (i = 0; i < count; i++) {
479 struct s3c24x0_i2c_bus *bus;
480 int node = node_list[i];
481
482 if (node <= 0)
483 continue;
484 bus = &i2c_bus[i];
Simon Glass940dd162013-10-15 16:02:10 +0530485 bus->active = true;
Rajeshwari Shindea9d2ae72012-12-26 20:03:12 +0000486 bus->regs = (struct s3c24x0_i2c *)
487 fdtdec_get_addr(blob, node, "reg");
488 bus->id = pinmux_decode_periph_id(blob, node);
489 bus->node = node;
Simon Glass940dd162013-10-15 16:02:10 +0530490 bus->bus_num = i;
Rajeshwari Shindea9d2ae72012-12-26 20:03:12 +0000491 exynos_pinmux_config(bus->id, 0);
492 }
493}
494
Simon Glass940dd162013-10-15 16:02:10 +0530495/**
496 * Get a pointer to the given bus index
497 *
498 * @bus_idx: Bus index to look up
499 * @return pointer to bus, or NULL if invalid or not available
500 */
Rajeshwari Shindea9d2ae72012-12-26 20:03:12 +0000501static struct s3c24x0_i2c_bus *get_bus(unsigned int bus_idx)
502{
Simon Glass940dd162013-10-15 16:02:10 +0530503 if (bus_idx < ARRAY_SIZE(i2c_bus)) {
504 struct s3c24x0_i2c_bus *bus;
505
506 bus = &i2c_bus[bus_idx];
507 if (bus->active)
508 return bus;
509 }
Rajeshwari Shindea9d2ae72012-12-26 20:03:12 +0000510
511 debug("Undefined bus: %d\n", bus_idx);
512 return NULL;
513}
514
515int i2c_get_bus_num_fdt(int node)
516{
517 int i;
518
Simon Glass940dd162013-10-15 16:02:10 +0530519 for (i = 0; i < ARRAY_SIZE(i2c_bus); i++) {
Rajeshwari Shindea9d2ae72012-12-26 20:03:12 +0000520 if (node == i2c_bus[i].node)
521 return i;
522 }
523
524 debug("%s: Can't find any matched I2C bus\n", __func__);
525 return -1;
526}
527
528int i2c_reset_port_fdt(const void *blob, int node)
529{
530 struct s3c24x0_i2c_bus *i2c;
531 int bus;
532
533 bus = i2c_get_bus_num_fdt(node);
534 if (bus < 0) {
535 debug("could not get bus for node %d\n", node);
536 return -1;
537 }
538
539 i2c = get_bus(bus);
540 if (!i2c) {
541 debug("get_bus() failed for node node %d\n", node);
542 return -1;
543 }
544
545 i2c_ch_init(i2c->regs, CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
546
547 return 0;
548}
549#endif
550
kevin.morfitt@fearnside-systems.co.ukeb0ae7f2009-10-10 13:33:11 +0900551#endif /* CONFIG_HARD_I2C */