2 * i2c.c - driver for Blackfin on-chip TWI/I2C
4 * Copyright (c) 2006-2010 Analog Devices Inc.
6 * Licensed under the GPL-2 or later.
12 #include <asm/blackfin.h>
13 #include <asm/clock.h>
14 #include <asm/mach-common/bits/twi.h>
16 /* Every register is 32bit aligned, but only 16bits in size */
17 #define ureg(name) u16 name; u16 __pad_##name;
39 /* U-Boot I2C framework allows only one active device at a time. */
41 #define TWI0_CLKDIV TWI_CLKDIV
43 static volatile struct twi_regs
*twi
= (void *)TWI0_CLKDIV
;
46 # define dmemset(s, c, n) memset(s, c, n)
48 # define dmemset(s, c, n)
50 #define debugi(fmt, args...) \
52 "MSTAT:0x%03x FSTAT:0x%x ISTAT:0x%02x\t%-20s:%-3i: " fmt "\n", \
53 twi->master_stat, twi->fifo_stat, twi->int_stat, \
54 __func__, __LINE__, ## args)
56 #ifdef CONFIG_TWICLK_KHZ
57 # error do not define CONFIG_TWICLK_KHZ ... use CONFIG_SYS_I2C_SPEED
61 * The way speed is changed into duty often results in integer truncation
62 * with 50% duty, so we'll force rounding up to the next duty by adding 1
63 * to the max. In practice this will get us a speed of something like
64 * 385 KHz. The other limit is easy to handle as it is only 8 bits.
66 #define I2C_SPEED_MAX 400000
67 #define I2C_SPEED_TO_DUTY(speed) (5000000 / (speed))
68 #define I2C_DUTY_MAX (I2C_SPEED_TO_DUTY(I2C_SPEED_MAX) + 1)
69 #define I2C_DUTY_MIN 0xff /* 8 bit limited */
70 #define SYS_I2C_DUTY I2C_SPEED_TO_DUTY(CONFIG_SYS_I2C_SPEED)
71 /* Note: duty is inverse of speed, so the comparisons below are correct */
72 #if SYS_I2C_DUTY < I2C_DUTY_MAX || SYS_I2C_DUTY > I2C_DUTY_MIN
73 # error "The Blackfin I2C hardware can only operate 20KHz - 400KHz"
76 /* All transfers are described by this data structure */
79 #define I2C_M_COMBO 0x4
80 #define I2C_M_STOP 0x2
81 #define I2C_M_READ 0x1
82 int len
; /* msg length */
83 u8
*buf
; /* pointer to msg data */
84 int alen
; /* addr length */
85 u8
*abuf
; /* addr buffer */
88 /* Allow msec timeout per ~byte transfer */
89 #define I2C_TIMEOUT 10
92 * wait_for_completion - manage the actual i2c transfer
95 static int wait_for_completion(struct i2c_msg
*msg
)
98 ulong timebase
= get_timer(0);
101 int_stat
= twi
->int_stat
;
103 if (int_stat
& XMTSERV
) {
104 debugi("processing XMTSERV");
105 twi
->int_stat
= XMTSERV
;
108 twi
->xmt_data8
= *(msg
->abuf
++);
110 } else if (!(msg
->flags
& I2C_M_COMBO
) && msg
->len
) {
111 twi
->xmt_data8
= *(msg
->buf
++);
114 twi
->master_ctl
|= (msg
->flags
& I2C_M_COMBO
) ? RSTART
| MDIR
: STOP
;
118 if (int_stat
& RCVSERV
) {
119 debugi("processing RCVSERV");
120 twi
->int_stat
= RCVSERV
;
123 *(msg
->buf
++) = twi
->rcv_data8
;
125 } else if (msg
->flags
& I2C_M_STOP
) {
126 twi
->master_ctl
|= STOP
;
130 if (int_stat
& MERR
) {
131 debugi("processing MERR");
132 twi
->int_stat
= MERR
;
136 if (int_stat
& MCOMP
) {
137 debugi("processing MCOMP");
138 twi
->int_stat
= MCOMP
;
140 if (msg
->flags
& I2C_M_COMBO
&& msg
->len
) {
141 twi
->master_ctl
= (twi
->master_ctl
& ~RSTART
) |
142 (min(msg
->len
, 0xff) << 6) | MEN
| MDIR
;
148 /* If we were able to do something, reset timeout */
150 timebase
= get_timer(0);
152 } while (get_timer(timebase
) < I2C_TIMEOUT
);
158 * i2c_transfer - setup an i2c transfer
159 * @return: 0 if things worked, non-0 if things failed
161 * Here we just get the i2c stuff all prepped and ready, and then tail off
162 * into wait_for_completion() for all the bits to go.
164 static int i2c_transfer(uchar chip
, uint addr
, int alen
, uchar
*buffer
, int len
, u8 flags
)
166 uchar addr_buffer
[] = {
171 struct i2c_msg msg
= {
172 .flags
= flags
| (len
>= 0xff ? I2C_M_STOP
: 0),
180 dmemset(buffer
, 0xff, len
);
181 debugi("chip=0x%x addr=0x%02x alen=%i buf[0]=0x%02x len=%i flags=0x%02x[%s] ",
182 chip
, addr
, alen
, buffer
[0], len
, flags
, (flags
& I2C_M_READ
? "rd" : "wr"));
184 /* wait for things to settle */
185 while (twi
->master_stat
& BUSBUSY
)
189 /* Set Transmit device address */
190 twi
->master_addr
= chip
;
192 /* Clear the FIFO before starting things */
193 twi
->fifo_ctl
= XMTFLUSH
| RCVFLUSH
;
200 len
= (msg
.flags
& I2C_M_COMBO
) ? msg
.alen
: msg
.alen
+ len
;
201 debugi("first byte=0x%02x", *msg
.abuf
);
202 twi
->xmt_data8
= *(msg
.abuf
++);
204 } else if (!(msg
.flags
& I2C_M_READ
) && msg
.len
) {
205 debugi("first byte=0x%02x", *msg
.buf
);
206 twi
->xmt_data8
= *(msg
.buf
++);
211 twi
->master_stat
= -1;
218 (twi
->master_ctl
& FAST
) |
219 (min(len
, 0xff) << 6) | MEN
|
220 ((msg
.flags
& I2C_M_READ
) ? MDIR
: 0);
222 debugi("CTL=0x%04x", twi
->master_ctl
);
224 /* process the rest */
225 ret
= wait_for_completion(&msg
);
226 debugi("ret=%d", ret
);
229 twi
->master_ctl
&= ~MEN
;
230 twi
->control
&= ~TWI_ENA
;
232 twi
->control
|= TWI_ENA
;
240 * i2c_set_bus_speed - set i2c bus speed
241 * @speed: bus speed (in HZ)
243 int i2c_set_bus_speed(unsigned int speed
)
245 u16 clkdiv
= I2C_SPEED_TO_DUTY(speed
);
247 /* Set TWI interface clock */
248 if (clkdiv
< I2C_DUTY_MAX
|| clkdiv
> I2C_DUTY_MIN
)
250 twi
->clkdiv
= (clkdiv
<< 8) | (clkdiv
& 0xff);
252 /* Don't turn it on */
253 twi
->master_ctl
= (speed
> 100000 ? FAST
: 0);
259 * i2c_get_bus_speed - get i2c bus speed
260 * @speed: bus speed (in HZ)
262 unsigned int i2c_get_bus_speed(void)
264 /* 10 MHz / (2 * CLKDIV) -> 5 MHz / CLKDIV */
265 return 5000000 / (twi
->clkdiv
& 0xff);
269 * i2c_init - initialize the i2c bus
270 * @speed: bus speed (in HZ)
271 * @slaveaddr: address of device in slave mode (0 - not slave)
273 * Slave mode isn't actually implemented. It'll stay that way until
274 * we get a real request for it.
276 void i2c_init(int speed
, int slaveaddr
)
278 uint8_t prescale
= ((get_i2c_clk() / 1000 / 1000 + 5) / 10) & 0x7F;
280 /* Set TWI internal clock as 10MHz */
281 twi
->control
= prescale
;
283 /* Set TWI interface clock as specified */
284 i2c_set_bus_speed(speed
);
287 twi
->control
= TWI_ENA
| prescale
;
290 debugi("CONTROL:0x%04x CLKDIV:0x%04x", twi
->control
, twi
->clkdiv
);
292 #if CONFIG_SYS_I2C_SLAVE
293 # error I2C slave support not tested/supported
294 /* If they want us as a slave, do it */
296 twi
->slave_addr
= slaveaddr
;
297 twi
->slave_ctl
= SEN
;
303 * i2c_probe - test if a chip exists at a given i2c address
304 * @chip: i2c chip addr to search for
305 * @return: 0 if found, non-0 if not found
307 int i2c_probe(uchar chip
)
310 return i2c_read(chip
, 0, 0, &byte
, 1);
314 * i2c_read - read data from an i2c device
315 * @chip: i2c chip addr
316 * @addr: memory (register) address in the chip
317 * @alen: byte size of address
318 * @buffer: buffer to store data read from chip
319 * @len: how many bytes to read
320 * @return: 0 on success, non-0 on failure
322 int i2c_read(uchar chip
, uint addr
, int alen
, uchar
*buffer
, int len
)
324 return i2c_transfer(chip
, addr
, alen
, buffer
, len
, (alen
? I2C_M_COMBO
: I2C_M_READ
));
328 * i2c_write - write data to an i2c device
329 * @chip: i2c chip addr
330 * @addr: memory (register) address in the chip
331 * @alen: byte size of address
332 * @buffer: buffer holding data to write to chip
333 * @len: how many bytes to write
334 * @return: 0 on success, non-0 on failure
336 int i2c_write(uchar chip
, uint addr
, int alen
, uchar
*buffer
, int len
)
338 return i2c_transfer(chip
, addr
, alen
, buffer
, len
, 0);
342 * i2c_set_bus_num - change active I2C bus
343 * @bus: bus index, zero based
344 * @returns: 0 on success, non-0 on failure
346 int i2c_set_bus_num(unsigned int bus
)
349 #if CONFIG_SYS_MAX_I2C_BUS > 0
350 case 0: twi
= (void *)TWI0_CLKDIV
; return 0;
352 #if CONFIG_SYS_MAX_I2C_BUS > 1
353 case 1: twi
= (void *)TWI1_CLKDIV
; return 0;
355 #if CONFIG_SYS_MAX_I2C_BUS > 2
356 case 2: twi
= (void *)TWI2_CLKDIV
; return 0;
363 * i2c_get_bus_num - returns index of active I2C bus
365 unsigned int i2c_get_bus_num(void)
367 switch ((unsigned long)twi
) {
368 #if CONFIG_SYS_MAX_I2C_BUS > 0
369 case TWI0_CLKDIV
: return 0;
371 #if CONFIG_SYS_MAX_I2C_BUS > 1
372 case TWI1_CLKDIV
: return 1;
374 #if CONFIG_SYS_MAX_I2C_BUS > 2
375 case TWI2_CLKDIV
: return 2;