1 // SPDX-License-Identifier: GPL-2.0+
5 * Changes for multibus/multiadapter I2C support.
7 * (C) Copyright 2001, 2002
10 * This has been changed substantially by Gerald Van Baren, Custom IDEAS,
14 * NOTE: This driver should be converted to driver model before June 2017.
15 * Please see doc/driver-model/i2c-howto.rst for instructions.
19 #if defined(CONFIG_AT91FAMILY)
21 #include <asm/arch/hardware.h>
22 #include <asm/arch/at91_pio.h>
23 #ifdef CONFIG_ATMEL_LEGACY
24 #include <asm/arch/gpio.h>
28 #include <asm/global_data.h>
29 #include <linux/delay.h>
31 #if defined(CONFIG_SOFT_I2C_GPIO_SCL)
32 # include <asm/gpio.h>
34 # ifndef I2C_GPIO_SYNC
35 # define I2C_GPIO_SYNC
41 gpio_request(CONFIG_SOFT_I2C_GPIO_SCL, "soft_i2c"); \
42 gpio_request(CONFIG_SOFT_I2C_GPIO_SDA, "soft_i2c"); \
47 # define I2C_ACTIVE do { } while (0)
51 # define I2C_TRISTATE do { } while (0)
55 # define I2C_READ gpio_get_value(CONFIG_SOFT_I2C_GPIO_SDA)
59 # define I2C_SDA(bit) \
62 gpio_direction_input(CONFIG_SOFT_I2C_GPIO_SDA); \
64 gpio_direction_output(CONFIG_SOFT_I2C_GPIO_SDA, 0); \
70 # define I2C_SCL(bit) \
72 gpio_direction_output(CONFIG_SOFT_I2C_GPIO_SCL, bit); \
78 # define I2C_DELAY udelay(5) /* 1/4 I2C clock duration */
83 /* #define DEBUG_I2C */
85 DECLARE_GLOBAL_DATA_PTR;
87 #ifndef I2C_SOFT_DECLARATIONS
88 # define I2C_SOFT_DECLARATIONS
91 /*-----------------------------------------------------------------------
96 #define I2C_ACK 0 /* PD_SDA level to ack a byte */
97 #define I2C_NOACK 1 /* PD_SDA level to noack a byte */
101 #define PRINTD(fmt,args...) do { \
102 printf (fmt ,##args); \
105 #define PRINTD(fmt,args...)
108 /*-----------------------------------------------------------------------
111 #if !defined(CONFIG_SYS_I2C_INIT_BOARD)
112 static void send_reset (void);
114 static void send_start (void);
115 static void send_stop (void);
116 static void send_ack (int);
117 static int write_byte (uchar byte);
118 static uchar read_byte (int);
120 #if !defined(CONFIG_SYS_I2C_INIT_BOARD)
121 /*-----------------------------------------------------------------------
122 * Send a reset sequence consisting of 9 clocks with the data signal high
123 * to clock any confused device back into an idle state. Also send a
124 * <stop> at the end of the sequence for belts & suspenders.
126 static void send_reset(void)
128 I2C_SOFT_DECLARATIONS /* intentional without ';' */
137 for(j = 0; j < 9; j++) {
150 /*-----------------------------------------------------------------------
151 * START: High -> Low on SDA while SCL is High
153 static void send_start(void)
155 I2C_SOFT_DECLARATIONS /* intentional without ';' */
167 /*-----------------------------------------------------------------------
168 * STOP: Low -> High on SDA while SCL is High
170 static void send_stop(void)
172 I2C_SOFT_DECLARATIONS /* intentional without ';' */
186 /*-----------------------------------------------------------------------
187 * ack should be I2C_ACK or I2C_NOACK
189 static void send_ack(int ack)
191 I2C_SOFT_DECLARATIONS /* intentional without ';' */
205 /*-----------------------------------------------------------------------
206 * Send 8 bits and look for an acknowledgement.
208 static int write_byte(uchar data)
210 I2C_SOFT_DECLARATIONS /* intentional without ';' */
215 for(j = 0; j < 8; j++) {
218 I2C_SDA(data & 0x80);
228 * Look for an <ACK>(negative logic) and return it.
243 return(nack); /* not a nack is an ack */
246 /*-----------------------------------------------------------------------
247 * if ack == I2C_ACK, ACK the byte so can continue reading, else
248 * send I2C_NOACK to end the read.
250 static uchar read_byte(int ack)
252 I2C_SOFT_DECLARATIONS /* intentional without ';' */
257 * Read 8 bits, MSB first.
262 for(j = 0; j < 8; j++) {
276 /*-----------------------------------------------------------------------
279 static void soft_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr)
281 #if defined(CONFIG_SYS_I2C_INIT_BOARD)
282 /* call board specific i2c bus reset routine before accessing the */
283 /* environment, which might be in a chip on that bus. For details */
284 /* about this problem see doc/I2C_Edge_Conditions. */
288 * WARNING: Do NOT save speed in a static variable: if the
289 * I2C routines are called before RAM is initialized (to read
290 * the DIMM SPD, for instance), RAM won't be usable and your
297 /*-----------------------------------------------------------------------
298 * Probe to see if a chip is present. Also good for checking for the
299 * completion of EEPROM writes since the chip stops responding until
300 * the write completes (typically 10mSec).
302 static int soft_i2c_probe(struct i2c_adapter *adap, uint8_t addr)
307 * perform 1 byte write transaction with just address byte
311 rc = write_byte ((addr << 1) | 0);
317 /*-----------------------------------------------------------------------
320 static int soft_i2c_read(struct i2c_adapter *adap, uchar chip, uint addr,
321 int alen, uchar *buffer, int len)
324 PRINTD("i2c_read: chip %02X addr %02X alen %d buffer %p len %d\n",
325 chip, addr, alen, buffer, len);
327 #ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
329 * EEPROM chips that implement "address overflow" are ones
330 * like Catalyst 24WC04/08/16 which has 9/10/11 bits of
331 * address and the extra bits end up in the "chip address"
332 * bit slots. This makes a 24WC08 (1Kbyte) chip look like
333 * four 256 byte chips.
335 * Note that we consider the length of the address field to
336 * still be one byte because the extra address bits are
337 * hidden in the chip address.
339 chip |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
341 PRINTD("i2c_read: fix addr_overflow: chip %02X addr %02X\n",
346 * Do the addressing portion of a write cycle to set the
347 * chip's address pointer. If the address length is zero,
348 * don't do the normal write cycle to set the address pointer,
349 * there is no address pointer in this chip.
353 if(write_byte(chip << 1)) { /* write cycle */
355 PRINTD("i2c_read, no chip responded %02X\n", chip);
358 shift = (alen-1) * 8;
360 if(write_byte(addr >> shift)) {
361 PRINTD("i2c_read, address not <ACK>ed\n");
367 /* Some I2C chips need a stop/start sequence here,
368 * other chips don't work with a full stop and need
369 * only a start. Default behaviour is to send the
370 * stop/start sequence.
372 #ifdef CONFIG_SOFT_I2C_READ_REPEATED_START
380 * Send the chip address again, this time for a read cycle.
381 * Then read the data. On the last byte, we do a NACK instead
382 * of an ACK(len == 0) to terminate the read.
384 write_byte((chip << 1) | 1); /* read cycle */
386 *buffer++ = read_byte(len == 0);
392 /*-----------------------------------------------------------------------
395 static int soft_i2c_write(struct i2c_adapter *adap, uchar chip, uint addr,
396 int alen, uchar *buffer, int len)
398 int shift, failures = 0;
400 PRINTD("i2c_write: chip %02X addr %02X alen %d buffer %p len %d\n",
401 chip, addr, alen, buffer, len);
404 if(write_byte(chip << 1)) { /* write cycle */
406 PRINTD("i2c_write, no chip responded %02X\n", chip);
409 shift = (alen-1) * 8;
411 if(write_byte(addr >> shift)) {
412 PRINTD("i2c_write, address not <ACK>ed\n");
419 if(write_byte(*buffer++)) {
428 * Register soft i2c adapters
430 U_BOOT_I2C_ADAP_COMPLETE(soft00, soft_i2c_init, soft_i2c_probe,
431 soft_i2c_read, soft_i2c_write, NULL,
432 CONFIG_SYS_I2C_SOFT_SPEED, CONFIG_SYS_I2C_SOFT_SLAVE,