1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16#include <common.h>
17#ifdef CONFIG_MPC8260
18#include <ioports.h>
19#include <asm/io.h>
20#endif
21#if defined(CONFIG_AVR32)
22#include <asm/arch/portmux.h>
23#endif
24#if defined(CONFIG_AT91FAMILY)
25#include <asm/io.h>
26#include <asm/arch/hardware.h>
27#include <asm/arch/at91_pio.h>
28#ifdef CONFIG_ATMEL_LEGACY
29#include <asm/arch/gpio.h>
30#endif
31#endif
32#if defined(CONFIG_MPC852T) || defined(CONFIG_MPC866)
33#include <asm/io.h>
34#endif
35#include <i2c.h>
36
37#if defined(CONFIG_SOFT_I2C_GPIO_SCL)
38# include <asm/gpio.h>
39
40# ifndef I2C_GPIO_SYNC
41# define I2C_GPIO_SYNC
42# endif
43
44# ifndef I2C_INIT
45# define I2C_INIT \
46 do { \
47 gpio_request(CONFIG_SOFT_I2C_GPIO_SCL, "soft_i2c"); \
48 gpio_request(CONFIG_SOFT_I2C_GPIO_SDA, "soft_i2c"); \
49 } while (0)
50# endif
51
52# ifndef I2C_ACTIVE
53# define I2C_ACTIVE do { } while (0)
54# endif
55
56# ifndef I2C_TRISTATE
57# define I2C_TRISTATE do { } while (0)
58# endif
59
60# ifndef I2C_READ
61# define I2C_READ gpio_get_value(CONFIG_SOFT_I2C_GPIO_SDA)
62# endif
63
64# ifndef I2C_SDA
65# define I2C_SDA(bit) \
66 do { \
67 if (bit) \
68 gpio_direction_input(CONFIG_SOFT_I2C_GPIO_SDA); \
69 else \
70 gpio_direction_output(CONFIG_SOFT_I2C_GPIO_SDA, 0); \
71 I2C_GPIO_SYNC; \
72 } while (0)
73# endif
74
75# ifndef I2C_SCL
76# define I2C_SCL(bit) \
77 do { \
78 gpio_direction_output(CONFIG_SOFT_I2C_GPIO_SCL, bit); \
79 I2C_GPIO_SYNC; \
80 } while (0)
81# endif
82
83# ifndef I2C_DELAY
84# define I2C_DELAY udelay(5)
85# endif
86
87#endif
88
89
90
91DECLARE_GLOBAL_DATA_PTR;
92
93#ifndef I2C_SOFT_DECLARATIONS
94# if defined(CONFIG_MPC8260)
95# define I2C_SOFT_DECLARATIONS volatile ioport_t *iop = \
96 ioport_addr((immap_t *)CONFIG_SYS_IMMR, I2C_PORT);
97# elif defined(CONFIG_8xx)
98# define I2C_SOFT_DECLARATIONS volatile immap_t *immr = \
99 (immap_t *)CONFIG_SYS_IMMR;
100# else
101# define I2C_SOFT_DECLARATIONS
102# endif
103#endif
104
105#if !defined(CONFIG_SYS_I2C_SOFT_SPEED)
106#define CONFIG_SYS_I2C_SOFT_SPEED CONFIG_SYS_I2C_SPEED
107#endif
108#if !defined(CONFIG_SYS_I2C_SOFT_SLAVE)
109#define CONFIG_SYS_I2C_SOFT_SLAVE CONFIG_SYS_I2C_SLAVE
110#endif
111
112
113
114
115#define RETRIES 0
116
117#define I2C_ACK 0
118#define I2C_NOACK 1
119
120
121#ifdef DEBUG_I2C
122#define PRINTD(fmt,args...) do { \
123 printf (fmt ,##args); \
124 } while (0)
125#else
126#define PRINTD(fmt,args...)
127#endif
128
129
130
131
132#if !defined(CONFIG_SYS_I2C_INIT_BOARD)
133static void send_reset (void);
134#endif
135static void send_start (void);
136static void send_stop (void);
137static void send_ack (int);
138static int write_byte (uchar byte);
139static uchar read_byte (int);
140
141#if !defined(CONFIG_SYS_I2C_INIT_BOARD)
142
143
144
145
146
147static void send_reset(void)
148{
149 I2C_SOFT_DECLARATIONS
150 int j;
151
152 I2C_SCL(1);
153 I2C_SDA(1);
154#ifdef I2C_INIT
155 I2C_INIT;
156#endif
157 I2C_TRISTATE;
158 for(j = 0; j < 9; j++) {
159 I2C_SCL(0);
160 I2C_DELAY;
161 I2C_DELAY;
162 I2C_SCL(1);
163 I2C_DELAY;
164 I2C_DELAY;
165 }
166 send_stop();
167 I2C_TRISTATE;
168}
169#endif
170
171
172
173
174static void send_start(void)
175{
176 I2C_SOFT_DECLARATIONS
177
178 I2C_DELAY;
179 I2C_SDA(1);
180 I2C_ACTIVE;
181 I2C_DELAY;
182 I2C_SCL(1);
183 I2C_DELAY;
184 I2C_SDA(0);
185 I2C_DELAY;
186}
187
188
189
190
191static void send_stop(void)
192{
193 I2C_SOFT_DECLARATIONS
194
195 I2C_SCL(0);
196 I2C_DELAY;
197 I2C_SDA(0);
198 I2C_ACTIVE;
199 I2C_DELAY;
200 I2C_SCL(1);
201 I2C_DELAY;
202 I2C_SDA(1);
203 I2C_DELAY;
204 I2C_TRISTATE;
205}
206
207
208
209
210static void send_ack(int ack)
211{
212 I2C_SOFT_DECLARATIONS
213
214 I2C_SCL(0);
215 I2C_DELAY;
216 I2C_ACTIVE;
217 I2C_SDA(ack);
218 I2C_DELAY;
219 I2C_SCL(1);
220 I2C_DELAY;
221 I2C_DELAY;
222 I2C_SCL(0);
223 I2C_DELAY;
224}
225
226
227
228
229static int write_byte(uchar data)
230{
231 I2C_SOFT_DECLARATIONS
232 int j;
233 int nack;
234
235 I2C_ACTIVE;
236 for(j = 0; j < 8; j++) {
237 I2C_SCL(0);
238 I2C_DELAY;
239 I2C_SDA(data & 0x80);
240 I2C_DELAY;
241 I2C_SCL(1);
242 I2C_DELAY;
243 I2C_DELAY;
244
245 data <<= 1;
246 }
247
248
249
250
251 I2C_SCL(0);
252 I2C_DELAY;
253 I2C_SDA(1);
254 I2C_TRISTATE;
255 I2C_DELAY;
256 I2C_SCL(1);
257 I2C_DELAY;
258 I2C_DELAY;
259 nack = I2C_READ;
260 I2C_SCL(0);
261 I2C_DELAY;
262 I2C_ACTIVE;
263
264 return(nack);
265}
266
267
268
269
270
271static uchar read_byte(int ack)
272{
273 I2C_SOFT_DECLARATIONS
274 int data;
275 int j;
276
277
278
279
280 I2C_TRISTATE;
281 I2C_SDA(1);
282 data = 0;
283 for(j = 0; j < 8; j++) {
284 I2C_SCL(0);
285 I2C_DELAY;
286 I2C_SCL(1);
287 I2C_DELAY;
288 data <<= 1;
289 data |= I2C_READ;
290 I2C_DELAY;
291 }
292 send_ack(ack);
293
294 return(data);
295}
296
297
298
299
300static void soft_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr)
301{
302#if defined(CONFIG_SYS_I2C_INIT_BOARD)
303
304
305
306 i2c_init_board();
307#else
308
309
310
311
312
313
314 send_reset ();
315#endif
316}
317
318
319
320
321
322
323static int soft_i2c_probe(struct i2c_adapter *adap, uint8_t addr)
324{
325 int rc;
326
327
328
329
330
331 send_start();
332 rc = write_byte ((addr << 1) | 0);
333 send_stop();
334
335 return (rc ? 1 : 0);
336}
337
338
339
340
341static int soft_i2c_read(struct i2c_adapter *adap, uchar chip, uint addr,
342 int alen, uchar *buffer, int len)
343{
344 int shift;
345 PRINTD("i2c_read: chip %02X addr %02X alen %d buffer %p len %d\n",
346 chip, addr, alen, buffer, len);
347
348#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
349
350
351
352
353
354
355
356
357
358
359
360 chip |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
361
362 PRINTD("i2c_read: fix addr_overflow: chip %02X addr %02X\n",
363 chip, addr);
364#endif
365
366
367
368
369
370
371
372 send_start();
373 if(alen > 0) {
374 if(write_byte(chip << 1)) {
375 send_stop();
376 PRINTD("i2c_read, no chip responded %02X\n", chip);
377 return(1);
378 }
379 shift = (alen-1) * 8;
380 while(alen-- > 0) {
381 if(write_byte(addr >> shift)) {
382 PRINTD("i2c_read, address not <ACK>ed\n");
383 return(1);
384 }
385 shift -= 8;
386 }
387
388
389
390
391
392
393#ifdef CONFIG_SOFT_I2C_READ_REPEATED_START
394 send_start();
395#else
396 send_stop();
397 send_start();
398#endif
399 }
400
401
402
403
404
405 write_byte((chip << 1) | 1);
406 while(len-- > 0) {
407 *buffer++ = read_byte(len == 0);
408 }
409 send_stop();
410 return(0);
411}
412
413
414
415
416static int soft_i2c_write(struct i2c_adapter *adap, uchar chip, uint addr,
417 int alen, uchar *buffer, int len)
418{
419 int shift, failures = 0;
420
421 PRINTD("i2c_write: chip %02X addr %02X alen %d buffer %p len %d\n",
422 chip, addr, alen, buffer, len);
423
424 send_start();
425 if(write_byte(chip << 1)) {
426 send_stop();
427 PRINTD("i2c_write, no chip responded %02X\n", chip);
428 return(1);
429 }
430 shift = (alen-1) * 8;
431 while(alen-- > 0) {
432 if(write_byte(addr >> shift)) {
433 PRINTD("i2c_write, address not <ACK>ed\n");
434 return(1);
435 }
436 shift -= 8;
437 }
438
439 while(len-- > 0) {
440 if(write_byte(*buffer++)) {
441 failures++;
442 }
443 }
444 send_stop();
445 return(failures);
446}
447
448
449
450
451U_BOOT_I2C_ADAP_COMPLETE(soft0, soft_i2c_init, soft_i2c_probe,
452 soft_i2c_read, soft_i2c_write, NULL,
453 CONFIG_SYS_I2C_SOFT_SPEED, CONFIG_SYS_I2C_SOFT_SLAVE,
454 0)
455#if defined(I2C_SOFT_DECLARATIONS2)
456U_BOOT_I2C_ADAP_COMPLETE(soft1, soft_i2c_init, soft_i2c_probe,
457 soft_i2c_read, soft_i2c_write, NULL,
458 CONFIG_SYS_I2C_SOFT_SPEED_2,
459 CONFIG_SYS_I2C_SOFT_SLAVE_2,
460 1)
461#endif
462#if defined(I2C_SOFT_DECLARATIONS3)
463U_BOOT_I2C_ADAP_COMPLETE(soft2, soft_i2c_init, soft_i2c_probe,
464 soft_i2c_read, soft_i2c_write, NULL,
465 CONFIG_SYS_I2C_SOFT_SPEED_3,
466 CONFIG_SYS_I2C_SOFT_SLAVE_3,
467 2)
468#endif
469#if defined(I2C_SOFT_DECLARATIONS4)
470U_BOOT_I2C_ADAP_COMPLETE(soft3, soft_i2c_init, soft_i2c_probe,
471 soft_i2c_read, soft_i2c_write, NULL,
472 CONFIG_SYS_I2C_SOFT_SPEED_4,
473 CONFIG_SYS_I2C_SOFT_SLAVE_4,
474 3)
475#endif
476