1
2
3
4
5
6
7
8#include <common.h>
9#include <dm.h>
10#include <i2c.h>
11#include <pci.h>
12#include <asm/io.h>
13#include "designware_i2c.h"
14
15struct dw_scl_sda_cfg {
16 u32 ss_hcnt;
17 u32 fs_hcnt;
18 u32 ss_lcnt;
19 u32 fs_lcnt;
20 u32 sda_hold;
21};
22
23#ifdef CONFIG_X86
24
25static struct dw_scl_sda_cfg byt_config = {
26 .ss_hcnt = 0x200,
27 .fs_hcnt = 0x55,
28 .ss_lcnt = 0x200,
29 .fs_lcnt = 0x99,
30 .sda_hold = 0x6,
31};
32#endif
33
34struct dw_i2c {
35 struct i2c_regs *regs;
36 struct dw_scl_sda_cfg *scl_sda_cfg;
37};
38
39#ifdef CONFIG_SYS_I2C_DW_ENABLE_STATUS_UNSUPPORTED
40static void dw_i2c_enable(struct i2c_regs *i2c_base, bool enable)
41{
42 u32 ena = enable ? IC_ENABLE_0B : 0;
43
44 writel(ena, &i2c_base->ic_enable);
45}
46#else
47static void dw_i2c_enable(struct i2c_regs *i2c_base, bool enable)
48{
49 u32 ena = enable ? IC_ENABLE_0B : 0;
50 int timeout = 100;
51
52 do {
53 writel(ena, &i2c_base->ic_enable);
54 if ((readl(&i2c_base->ic_enable_status) & IC_ENABLE_0B) == ena)
55 return;
56
57
58
59
60
61
62 udelay(25);
63 } while (timeout--);
64
65 printf("timeout in %sabling I2C adapter\n", enable ? "en" : "dis");
66}
67#endif
68
69
70
71
72
73
74
75static unsigned int __dw_i2c_set_bus_speed(struct i2c_regs *i2c_base,
76 struct dw_scl_sda_cfg *scl_sda_cfg,
77 unsigned int speed)
78{
79 unsigned int cntl;
80 unsigned int hcnt, lcnt;
81 int i2c_spd;
82
83 if (speed >= I2C_MAX_SPEED)
84 i2c_spd = IC_SPEED_MODE_MAX;
85 else if (speed >= I2C_FAST_SPEED)
86 i2c_spd = IC_SPEED_MODE_FAST;
87 else
88 i2c_spd = IC_SPEED_MODE_STANDARD;
89
90
91 dw_i2c_enable(i2c_base, false);
92
93 cntl = (readl(&i2c_base->ic_con) & (~IC_CON_SPD_MSK));
94
95 switch (i2c_spd) {
96#ifndef CONFIG_X86
97 case IC_SPEED_MODE_MAX:
98 cntl |= IC_CON_SPD_SS;
99 if (scl_sda_cfg) {
100 hcnt = scl_sda_cfg->fs_hcnt;
101 lcnt = scl_sda_cfg->fs_lcnt;
102 } else {
103 hcnt = (IC_CLK * MIN_HS_SCL_HIGHTIME) / NANO_TO_MICRO;
104 lcnt = (IC_CLK * MIN_HS_SCL_LOWTIME) / NANO_TO_MICRO;
105 }
106 writel(hcnt, &i2c_base->ic_hs_scl_hcnt);
107 writel(lcnt, &i2c_base->ic_hs_scl_lcnt);
108 break;
109#endif
110
111 case IC_SPEED_MODE_STANDARD:
112 cntl |= IC_CON_SPD_SS;
113 if (scl_sda_cfg) {
114 hcnt = scl_sda_cfg->ss_hcnt;
115 lcnt = scl_sda_cfg->ss_lcnt;
116 } else {
117 hcnt = (IC_CLK * MIN_SS_SCL_HIGHTIME) / NANO_TO_MICRO;
118 lcnt = (IC_CLK * MIN_SS_SCL_LOWTIME) / NANO_TO_MICRO;
119 }
120 writel(hcnt, &i2c_base->ic_ss_scl_hcnt);
121 writel(lcnt, &i2c_base->ic_ss_scl_lcnt);
122 break;
123
124 case IC_SPEED_MODE_FAST:
125 default:
126 cntl |= IC_CON_SPD_FS;
127 if (scl_sda_cfg) {
128 hcnt = scl_sda_cfg->fs_hcnt;
129 lcnt = scl_sda_cfg->fs_lcnt;
130 } else {
131 hcnt = (IC_CLK * MIN_FS_SCL_HIGHTIME) / NANO_TO_MICRO;
132 lcnt = (IC_CLK * MIN_FS_SCL_LOWTIME) / NANO_TO_MICRO;
133 }
134 writel(hcnt, &i2c_base->ic_fs_scl_hcnt);
135 writel(lcnt, &i2c_base->ic_fs_scl_lcnt);
136 break;
137 }
138
139 writel(cntl, &i2c_base->ic_con);
140
141
142 if (scl_sda_cfg)
143 writel(scl_sda_cfg->sda_hold, &i2c_base->ic_sda_hold);
144
145
146 dw_i2c_enable(i2c_base, true);
147
148 return 0;
149}
150
151
152
153
154
155
156
157static void i2c_setaddress(struct i2c_regs *i2c_base, unsigned int i2c_addr)
158{
159
160 dw_i2c_enable(i2c_base, false);
161
162 writel(i2c_addr, &i2c_base->ic_tar);
163
164
165 dw_i2c_enable(i2c_base, true);
166}
167
168
169
170
171
172
173static void i2c_flush_rxfifo(struct i2c_regs *i2c_base)
174{
175 while (readl(&i2c_base->ic_status) & IC_STATUS_RFNE)
176 readl(&i2c_base->ic_cmd_data);
177}
178
179
180
181
182
183
184static int i2c_wait_for_bb(struct i2c_regs *i2c_base)
185{
186 unsigned long start_time_bb = get_timer(0);
187
188 while ((readl(&i2c_base->ic_status) & IC_STATUS_MA) ||
189 !(readl(&i2c_base->ic_status) & IC_STATUS_TFE)) {
190
191
192 if (get_timer(start_time_bb) > (unsigned long)(I2C_BYTE_TO_BB))
193 return 1;
194 }
195
196 return 0;
197}
198
199static int i2c_xfer_init(struct i2c_regs *i2c_base, uchar chip, uint addr,
200 int alen)
201{
202 if (i2c_wait_for_bb(i2c_base))
203 return 1;
204
205 i2c_setaddress(i2c_base, chip);
206 while (alen) {
207 alen--;
208
209 writel((addr >> (alen * 8)) & 0xff,
210 &i2c_base->ic_cmd_data);
211 }
212 return 0;
213}
214
215static int i2c_xfer_finish(struct i2c_regs *i2c_base)
216{
217 ulong start_stop_det = get_timer(0);
218
219 while (1) {
220 if ((readl(&i2c_base->ic_raw_intr_stat) & IC_STOP_DET)) {
221 readl(&i2c_base->ic_clr_stop_det);
222 break;
223 } else if (get_timer(start_stop_det) > I2C_STOPDET_TO) {
224 break;
225 }
226 }
227
228 if (i2c_wait_for_bb(i2c_base)) {
229 printf("Timed out waiting for bus\n");
230 return 1;
231 }
232
233 i2c_flush_rxfifo(i2c_base);
234
235 return 0;
236}
237
238
239
240
241
242
243
244
245
246
247
248static int __dw_i2c_read(struct i2c_regs *i2c_base, u8 dev, uint addr,
249 int alen, u8 *buffer, int len)
250{
251 unsigned long start_time_rx;
252 unsigned int active = 0;
253
254#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
255
256
257
258
259
260
261
262
263
264
265
266 dev |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
267 addr &= ~(CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW << (alen * 8));
268
269 debug("%s: fix addr_overflow: dev %02x addr %02x\n", __func__, dev,
270 addr);
271#endif
272
273 if (i2c_xfer_init(i2c_base, dev, addr, alen))
274 return 1;
275
276 start_time_rx = get_timer(0);
277 while (len) {
278 if (!active) {
279
280
281
282
283
284
285
286 if (len == 1)
287 writel(IC_CMD | IC_STOP, &i2c_base->ic_cmd_data);
288 else
289 writel(IC_CMD, &i2c_base->ic_cmd_data);
290 active = 1;
291 }
292
293 if (readl(&i2c_base->ic_status) & IC_STATUS_RFNE) {
294 *buffer++ = (uchar)readl(&i2c_base->ic_cmd_data);
295 len--;
296 start_time_rx = get_timer(0);
297 active = 0;
298 } else if (get_timer(start_time_rx) > I2C_BYTE_TO) {
299 return 1;
300 }
301 }
302
303 return i2c_xfer_finish(i2c_base);
304}
305
306
307
308
309
310
311
312
313
314
315
316static int __dw_i2c_write(struct i2c_regs *i2c_base, u8 dev, uint addr,
317 int alen, u8 *buffer, int len)
318{
319 int nb = len;
320 unsigned long start_time_tx;
321
322#ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW
323
324
325
326
327
328
329
330
331
332
333
334 dev |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW);
335 addr &= ~(CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW << (alen * 8));
336
337 debug("%s: fix addr_overflow: dev %02x addr %02x\n", __func__, dev,
338 addr);
339#endif
340
341 if (i2c_xfer_init(i2c_base, dev, addr, alen))
342 return 1;
343
344 start_time_tx = get_timer(0);
345 while (len) {
346 if (readl(&i2c_base->ic_status) & IC_STATUS_TFNF) {
347 if (--len == 0) {
348 writel(*buffer | IC_STOP,
349 &i2c_base->ic_cmd_data);
350 } else {
351 writel(*buffer, &i2c_base->ic_cmd_data);
352 }
353 buffer++;
354 start_time_tx = get_timer(0);
355
356 } else if (get_timer(start_time_tx) > (nb * I2C_BYTE_TO)) {
357 printf("Timed out. i2c write Failed\n");
358 return 1;
359 }
360 }
361
362 return i2c_xfer_finish(i2c_base);
363}
364
365
366
367
368
369
370
371
372static void __dw_i2c_init(struct i2c_regs *i2c_base, int speed, int slaveaddr)
373{
374
375 dw_i2c_enable(i2c_base, false);
376
377 writel(IC_CON_SD | IC_CON_RE | IC_CON_SPD_FS | IC_CON_MM,
378 &i2c_base->ic_con);
379 writel(IC_RX_TL, &i2c_base->ic_rx_tl);
380 writel(IC_TX_TL, &i2c_base->ic_tx_tl);
381 writel(IC_STOP_DET, &i2c_base->ic_intr_mask);
382#ifndef CONFIG_DM_I2C
383 __dw_i2c_set_bus_speed(i2c_base, NULL, speed);
384 writel(slaveaddr, &i2c_base->ic_sar);
385#endif
386
387
388 dw_i2c_enable(i2c_base, true);
389}
390
391#ifndef CONFIG_DM_I2C
392
393
394
395
396static struct i2c_regs *i2c_get_base(struct i2c_adapter *adap)
397{
398 switch (adap->hwadapnr) {
399#if CONFIG_SYS_I2C_BUS_MAX >= 4
400 case 3:
401 return (struct i2c_regs *)CONFIG_SYS_I2C_BASE3;
402#endif
403#if CONFIG_SYS_I2C_BUS_MAX >= 3
404 case 2:
405 return (struct i2c_regs *)CONFIG_SYS_I2C_BASE2;
406#endif
407#if CONFIG_SYS_I2C_BUS_MAX >= 2
408 case 1:
409 return (struct i2c_regs *)CONFIG_SYS_I2C_BASE1;
410#endif
411 case 0:
412 return (struct i2c_regs *)CONFIG_SYS_I2C_BASE;
413 default:
414 printf("Wrong I2C-adapter number %d\n", adap->hwadapnr);
415 }
416
417 return NULL;
418}
419
420static unsigned int dw_i2c_set_bus_speed(struct i2c_adapter *adap,
421 unsigned int speed)
422{
423 adap->speed = speed;
424 return __dw_i2c_set_bus_speed(i2c_get_base(adap), NULL, speed);
425}
426
427static void dw_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr)
428{
429 __dw_i2c_init(i2c_get_base(adap), speed, slaveaddr);
430}
431
432static int dw_i2c_read(struct i2c_adapter *adap, u8 dev, uint addr,
433 int alen, u8 *buffer, int len)
434{
435 return __dw_i2c_read(i2c_get_base(adap), dev, addr, alen, buffer, len);
436}
437
438static int dw_i2c_write(struct i2c_adapter *adap, u8 dev, uint addr,
439 int alen, u8 *buffer, int len)
440{
441 return __dw_i2c_write(i2c_get_base(adap), dev, addr, alen, buffer, len);
442}
443
444
445static int dw_i2c_probe(struct i2c_adapter *adap, u8 dev)
446{
447 struct i2c_regs *i2c_base = i2c_get_base(adap);
448 u32 tmp;
449 int ret;
450
451
452
453
454 ret = __dw_i2c_read(i2c_base, dev, 0, 1, (uchar *)&tmp, 1);
455 if (ret)
456 dw_i2c_init(adap, adap->speed, adap->slaveaddr);
457
458 return ret;
459}
460
461U_BOOT_I2C_ADAP_COMPLETE(dw_0, dw_i2c_init, dw_i2c_probe, dw_i2c_read,
462 dw_i2c_write, dw_i2c_set_bus_speed,
463 CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE, 0)
464
465#if CONFIG_SYS_I2C_BUS_MAX >= 2
466U_BOOT_I2C_ADAP_COMPLETE(dw_1, dw_i2c_init, dw_i2c_probe, dw_i2c_read,
467 dw_i2c_write, dw_i2c_set_bus_speed,
468 CONFIG_SYS_I2C_SPEED1, CONFIG_SYS_I2C_SLAVE1, 1)
469#endif
470
471#if CONFIG_SYS_I2C_BUS_MAX >= 3
472U_BOOT_I2C_ADAP_COMPLETE(dw_2, dw_i2c_init, dw_i2c_probe, dw_i2c_read,
473 dw_i2c_write, dw_i2c_set_bus_speed,
474 CONFIG_SYS_I2C_SPEED2, CONFIG_SYS_I2C_SLAVE2, 2)
475#endif
476
477#if CONFIG_SYS_I2C_BUS_MAX >= 4
478U_BOOT_I2C_ADAP_COMPLETE(dw_3, dw_i2c_init, dw_i2c_probe, dw_i2c_read,
479 dw_i2c_write, dw_i2c_set_bus_speed,
480 CONFIG_SYS_I2C_SPEED3, CONFIG_SYS_I2C_SLAVE3, 3)
481#endif
482
483#else
484
485
486static int designware_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
487 int nmsgs)
488{
489 struct dw_i2c *i2c = dev_get_priv(bus);
490 int ret;
491
492 debug("i2c_xfer: %d messages\n", nmsgs);
493 for (; nmsgs > 0; nmsgs--, msg++) {
494 debug("i2c_xfer: chip=0x%x, len=0x%x\n", msg->addr, msg->len);
495 if (msg->flags & I2C_M_RD) {
496 ret = __dw_i2c_read(i2c->regs, msg->addr, 0, 0,
497 msg->buf, msg->len);
498 } else {
499 ret = __dw_i2c_write(i2c->regs, msg->addr, 0, 0,
500 msg->buf, msg->len);
501 }
502 if (ret) {
503 debug("i2c_write: error sending\n");
504 return -EREMOTEIO;
505 }
506 }
507
508 return 0;
509}
510
511static int designware_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
512{
513 struct dw_i2c *i2c = dev_get_priv(bus);
514
515 return __dw_i2c_set_bus_speed(i2c->regs, i2c->scl_sda_cfg, speed);
516}
517
518static int designware_i2c_probe_chip(struct udevice *bus, uint chip_addr,
519 uint chip_flags)
520{
521 struct dw_i2c *i2c = dev_get_priv(bus);
522 struct i2c_regs *i2c_base = i2c->regs;
523 u32 tmp;
524 int ret;
525
526
527 ret = __dw_i2c_read(i2c_base, chip_addr, 0, 1, (uchar *)&tmp, 1);
528 if (ret)
529 __dw_i2c_init(i2c_base, 0, 0);
530
531 return ret;
532}
533
534static int designware_i2c_probe(struct udevice *bus)
535{
536 struct dw_i2c *priv = dev_get_priv(bus);
537
538 if (device_is_on_pci_bus(bus)) {
539#ifdef CONFIG_DM_PCI
540
541 priv->regs = (struct i2c_regs *)
542 dm_pci_map_bar(bus, PCI_BASE_ADDRESS_0, PCI_REGION_MEM);
543#ifdef CONFIG_X86
544
545 priv->scl_sda_cfg = &byt_config;
546#endif
547#endif
548 } else {
549 priv->regs = (struct i2c_regs *)devfdt_get_addr_ptr(bus);
550 }
551
552 __dw_i2c_init(priv->regs, 0, 0);
553
554 return 0;
555}
556
557static int designware_i2c_bind(struct udevice *dev)
558{
559 static int num_cards;
560 char name[20];
561
562
563 if (device_is_on_pci_bus(dev)) {
564
565
566
567
568
569
570
571
572 dev->req_seq = num_cards;
573 sprintf(name, "i2c_designware#%u", num_cards++);
574 device_set_name(dev, name);
575 }
576
577 return 0;
578}
579
580static const struct dm_i2c_ops designware_i2c_ops = {
581 .xfer = designware_i2c_xfer,
582 .probe_chip = designware_i2c_probe_chip,
583 .set_bus_speed = designware_i2c_set_bus_speed,
584};
585
586static const struct udevice_id designware_i2c_ids[] = {
587 { .compatible = "snps,designware-i2c" },
588 { }
589};
590
591U_BOOT_DRIVER(i2c_designware) = {
592 .name = "i2c_designware",
593 .id = UCLASS_I2C,
594 .of_match = designware_i2c_ids,
595 .bind = designware_i2c_bind,
596 .probe = designware_i2c_probe,
597 .priv_auto_alloc_size = sizeof(struct dw_i2c),
598 .ops = &designware_i2c_ops,
599};
600
601#ifdef CONFIG_X86
602static struct pci_device_id designware_pci_supported[] = {
603
604 { PCI_VDEVICE(INTEL, 0x0f41) },
605 { PCI_VDEVICE(INTEL, 0x0f42) },
606 { PCI_VDEVICE(INTEL, 0x0f43) },
607 { PCI_VDEVICE(INTEL, 0x0f44) },
608 { PCI_VDEVICE(INTEL, 0x0f45) },
609 { PCI_VDEVICE(INTEL, 0x0f46) },
610 { PCI_VDEVICE(INTEL, 0x0f47) },
611 {},
612};
613
614U_BOOT_PCI_DEVICE(i2c_designware, designware_pci_supported);
615#endif
616
617#endif
618