2 * Copyright 2006 Freescale Semiconductor, Inc.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * Version 2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 #ifdef CONFIG_HARD_I2C
25 #include <i2c.h> /* Functional interface */
28 #include <asm/fsl_i2c.h> /* HW definitions */
30 #define I2C_TIMEOUT (CFG_HZ / 4)
32 #define I2C_READ_BIT 1
33 #define I2C_WRITE_BIT 0
35 /* Initialize the bus pointer to whatever one the SPD EEPROM is on.
36 * Default is bus 0. This is necessary because the DDR initialization
37 * runs from ROM, and we can't switch buses because we can't modify
38 * the global variables.
40 #ifdef CFG_SPD_BUS_NUM
41 static unsigned int i2c_bus_num __attribute__ ((section ("data"))) = CFG_SPD_BUS_NUM;
43 static unsigned int i2c_bus_num __attribute__ ((section ("data"))) = 0;
46 static volatile struct fsl_i2c *i2c_dev[2] = {
47 (struct fsl_i2c *) (CFG_IMMR + CFG_I2C_OFFSET),
48 #ifdef CFG_I2C2_OFFSET
49 (struct fsl_i2c *) (CFG_IMMR + CFG_I2C2_OFFSET)
54 i2c_init(int speed, int slaveadd)
56 volatile struct fsl_i2c *dev;
58 dev = (struct fsl_i2c *) (CFG_IMMR + CFG_I2C_OFFSET);
60 writeb(0, &dev->cr); /* stop I2C controller */
61 udelay(5); /* let it shutdown in peace */
62 writeb(0x3F, &dev->fdr); /* set bus speed */
63 writeb(0x3F, &dev->dfsrr); /* set default filter */
64 writeb(slaveadd << 1, &dev->adr); /* write slave address */
65 writeb(0x0, &dev->sr); /* clear status register */
66 writeb(I2C_CR_MEN, &dev->cr); /* start I2C controller */
68 #ifdef CFG_I2C2_OFFSET
69 dev = (struct fsl_i2c *) (CFG_IMMR + CFG_I2C2_OFFSET);
71 writeb(0, &dev->cr); /* stop I2C controller */
72 writeb(0x3F, &dev->fdr); /* set bus speed */
73 writeb(0x3F, &dev->dfsrr); /* set default filter */
74 writeb(slaveadd, &dev->adr); /* write slave address */
75 writeb(0x0, &dev->sr); /* clear status register */
76 writeb(I2C_CR_MEN, &dev->cr); /* start I2C controller */
77 #endif /* CFG_I2C2_OFFSET */
83 ulong timeval = get_timer(0);
85 while (readb(&i2c_dev[i2c_bus_num]->sr) & I2C_SR_MBB) {
86 if (get_timer(timeval) > I2C_TIMEOUT) {
98 ulong timeval = get_timer(0);
101 csr = readb(&i2c_dev[i2c_bus_num]->sr);
102 if (!(csr & I2C_SR_MIF))
105 writeb(0x0, &i2c_dev[i2c_bus_num]->sr);
107 if (csr & I2C_SR_MAL) {
108 debug("i2c_wait: MAL\n");
112 if (!(csr & I2C_SR_MCF)) {
113 debug("i2c_wait: unfinished\n");
117 if (write == I2C_WRITE_BIT && (csr & I2C_SR_RXAK)) {
118 debug("i2c_wait: No RXACK\n");
123 } while (get_timer (timeval) < I2C_TIMEOUT);
125 debug("i2c_wait: timed out\n");
129 static __inline__ int
130 i2c_write_addr (u8 dev, u8 dir, int rsta)
132 writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_MTX
133 | (rsta ? I2C_CR_RSTA : 0),
134 &i2c_dev[i2c_bus_num]->cr);
136 writeb((dev << 1) | dir, &i2c_dev[i2c_bus_num]->dr);
138 if (i2c_wait(I2C_WRITE_BIT) < 0)
144 static __inline__ int
145 __i2c_write(u8 *data, int length)
149 writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_MTX,
150 &i2c_dev[i2c_bus_num]->cr);
152 for (i = 0; i < length; i++) {
153 writeb(data[i], &i2c_dev[i2c_bus_num]->dr);
155 if (i2c_wait(I2C_WRITE_BIT) < 0)
162 static __inline__ int
163 __i2c_read(u8 *data, int length)
167 writeb(I2C_CR_MEN | I2C_CR_MSTA | ((length == 1) ? I2C_CR_TXAK : 0),
168 &i2c_dev[i2c_bus_num]->cr);
171 readb(&i2c_dev[i2c_bus_num]->dr);
173 for (i = 0; i < length; i++) {
174 if (i2c_wait(I2C_READ_BIT) < 0)
177 /* Generate ack on last next to last byte */
179 writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_TXAK,
180 &i2c_dev[i2c_bus_num]->cr);
182 /* Generate stop on last byte */
184 writeb(I2C_CR_MEN | I2C_CR_TXAK, &i2c_dev[i2c_bus_num]->cr);
186 data[i] = readb(&i2c_dev[i2c_bus_num]->dr);
193 i2c_read(u8 dev, uint addr, int alen, u8 *data, int length)
195 int i = -1; /* signal error */
198 if (i2c_wait4bus() >= 0
199 && i2c_write_addr(dev, I2C_WRITE_BIT, 0) != 0
200 && __i2c_write(&a[4 - alen], alen) == alen)
201 i = 0; /* No error so far */
204 && i2c_write_addr(dev, I2C_READ_BIT, 1) != 0)
205 i = __i2c_read(data, length);
207 writeb(I2C_CR_MEN, &i2c_dev[i2c_bus_num]->cr);
216 i2c_write(u8 dev, uint addr, int alen, u8 *data, int length)
218 int i = -1; /* signal error */
221 if (i2c_wait4bus() >= 0
222 && i2c_write_addr(dev, I2C_WRITE_BIT, 0) != 0
223 && __i2c_write(&a[4 - alen], alen) == alen) {
224 i = __i2c_write(data, length);
227 writeb(I2C_CR_MEN, &i2c_dev[i2c_bus_num]->cr);
236 i2c_probe(uchar chip)
238 /* For unknow reason the controller will ACK when
239 * probing for a slave with the same address, so skip
242 if (chip == (readb(&i2c_dev[i2c_bus_num]->adr) >> 1))
245 return i2c_read(chip, 0, 0, NULL, 0);
249 i2c_reg_read(uchar i2c_addr, uchar reg)
253 i2c_read(i2c_addr, reg, 1, buf, 1);
259 i2c_reg_write(uchar i2c_addr, uchar reg, uchar val)
261 i2c_write(i2c_addr, reg, 1, &val, 1);
264 int i2c_set_bus_num(unsigned int bus)
266 #ifdef CFG_I2C2_OFFSET
279 int i2c_set_bus_speed(unsigned int speed)
284 unsigned int i2c_get_bus_num(void)
289 unsigned int i2c_get_bus_speed(void)
293 #endif /* CONFIG_HARD_I2C */
294 #endif /* CONFIG_FSL_I2C */