blob: be56785217c3bc51d7da1e7647a845034f2b05eb [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassc6202d82014-12-10 08:55:47 -07002/*
3 * Copyright (c) 2014 Google, Inc
Simon Glassc6202d82014-12-10 08:55:47 -07004 */
5
6#include <common.h>
7#include <dm.h>
8#include <errno.h>
Simon Glassc6202d82014-12-10 08:55:47 -07009#include <i2c.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Simon Glassc6202d82014-12-10 08:55:47 -070011#include <malloc.h>
Simon Glassfd42f262020-09-22 12:45:01 -060012#include <acpi/acpi_device.h>
13#include <dm/acpi.h>
Simon Glassc6202d82014-12-10 08:55:47 -070014#include <dm/device-internal.h>
15#include <dm/lists.h>
Alexander Kochetkovaa541922018-03-27 17:52:27 +030016#include <dm/pinctrl.h>
Simon Glassbcee8d62019-12-06 21:41:35 -070017#if CONFIG_IS_ENABLED(DM_GPIO)
Alexander Kochetkovaa541922018-03-27 17:52:27 +030018#include <asm/gpio.h>
19#endif
Simon Glassc05ed002020-05-10 11:40:11 -060020#include <linux/delay.h>
Simon Glassfd42f262020-09-22 12:45:01 -060021#include "acpi_i2c.h"
Simon Glassc6202d82014-12-10 08:55:47 -070022
Simon Glassc6202d82014-12-10 08:55:47 -070023#define I2C_MAX_OFFSET_LEN 4
24
Alexander Kochetkovaa541922018-03-27 17:52:27 +030025enum {
26 PIN_SDA = 0,
27 PIN_SCL,
28 PIN_COUNT,
29};
30
Simon Glass7d7db222015-07-02 18:15:39 -060031/* Useful debugging function */
32void i2c_dump_msgs(struct i2c_msg *msg, int nmsgs)
33{
34 int i;
35
36 for (i = 0; i < nmsgs; i++) {
37 struct i2c_msg *m = &msg[i];
38
39 printf(" %s %x len=%x", m->flags & I2C_M_RD ? "R" : "W",
40 msg->addr, msg->len);
41 if (!(m->flags & I2C_M_RD))
42 printf(": %x", m->buf[0]);
43 printf("\n");
44 }
45}
46
Simon Glassc6202d82014-12-10 08:55:47 -070047/**
48 * i2c_setup_offset() - Set up a new message with a chip offset
49 *
50 * @chip: Chip to use
51 * @offset: Byte offset within chip
52 * @offset_buf: Place to put byte offset
53 * @msg: Message buffer
54 * @return 0 if OK, -EADDRNOTAVAIL if the offset length is 0. In that case the
55 * message is still set up but will not contain an offset.
56 */
57static int i2c_setup_offset(struct dm_i2c_chip *chip, uint offset,
58 uint8_t offset_buf[], struct i2c_msg *msg)
59{
Robert Beckett85968522019-10-28 17:44:57 +000060 int offset_len = chip->offset_len;
Simon Glassc6202d82014-12-10 08:55:47 -070061
62 msg->addr = chip->chip_addr;
Robert Beckett85968522019-10-28 17:44:57 +000063 if (chip->chip_addr_offset_mask)
64 msg->addr |= (offset >> (8 * offset_len)) &
65 chip->chip_addr_offset_mask;
Simon Glassc6202d82014-12-10 08:55:47 -070066 msg->flags = chip->flags & DM_I2C_CHIP_10BIT ? I2C_M_TEN : 0;
67 msg->len = chip->offset_len;
68 msg->buf = offset_buf;
Robert Beckett85968522019-10-28 17:44:57 +000069 if (!offset_len)
Simon Glassc6202d82014-12-10 08:55:47 -070070 return -EADDRNOTAVAIL;
Robert Beckett85968522019-10-28 17:44:57 +000071 assert(offset_len <= I2C_MAX_OFFSET_LEN);
72
Simon Glassc6202d82014-12-10 08:55:47 -070073 while (offset_len--)
74 *offset_buf++ = offset >> (8 * offset_len);
75
76 return 0;
77}
78
79static int i2c_read_bytewise(struct udevice *dev, uint offset,
80 uint8_t *buffer, int len)
81{
Simon Glasscaa4daa2020-12-03 16:55:18 -070082 struct dm_i2c_chip *chip = dev_get_parent_plat(dev);
Simon Glassc6202d82014-12-10 08:55:47 -070083 struct udevice *bus = dev_get_parent(dev);
84 struct dm_i2c_ops *ops = i2c_get_ops(bus);
85 struct i2c_msg msg[2], *ptr;
86 uint8_t offset_buf[I2C_MAX_OFFSET_LEN];
87 int ret;
88 int i;
89
90 for (i = 0; i < len; i++) {
91 if (i2c_setup_offset(chip, offset + i, offset_buf, msg))
92 return -EINVAL;
93 ptr = msg + 1;
Robert Beckett85968522019-10-28 17:44:57 +000094 ptr->addr = msg->addr;
Simon Glassc6202d82014-12-10 08:55:47 -070095 ptr->flags = msg->flags | I2C_M_RD;
96 ptr->len = 1;
97 ptr->buf = &buffer[i];
98 ptr++;
99
100 ret = ops->xfer(bus, msg, ptr - msg);
101 if (ret)
102 return ret;
103 }
104
105 return 0;
106}
107
108static int i2c_write_bytewise(struct udevice *dev, uint offset,
109 const uint8_t *buffer, int len)
110{
Simon Glasscaa4daa2020-12-03 16:55:18 -0700111 struct dm_i2c_chip *chip = dev_get_parent_plat(dev);
Simon Glassc6202d82014-12-10 08:55:47 -0700112 struct udevice *bus = dev_get_parent(dev);
113 struct dm_i2c_ops *ops = i2c_get_ops(bus);
114 struct i2c_msg msg[1];
115 uint8_t buf[I2C_MAX_OFFSET_LEN + 1];
116 int ret;
117 int i;
118
119 for (i = 0; i < len; i++) {
120 if (i2c_setup_offset(chip, offset + i, buf, msg))
121 return -EINVAL;
122 buf[msg->len++] = buffer[i];
123
124 ret = ops->xfer(bus, msg, 1);
125 if (ret)
126 return ret;
127 }
128
129 return 0;
130}
131
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700132int dm_i2c_read(struct udevice *dev, uint offset, uint8_t *buffer, int len)
Simon Glassc6202d82014-12-10 08:55:47 -0700133{
Simon Glasscaa4daa2020-12-03 16:55:18 -0700134 struct dm_i2c_chip *chip = dev_get_parent_plat(dev);
Simon Glassc6202d82014-12-10 08:55:47 -0700135 struct udevice *bus = dev_get_parent(dev);
136 struct dm_i2c_ops *ops = i2c_get_ops(bus);
137 struct i2c_msg msg[2], *ptr;
138 uint8_t offset_buf[I2C_MAX_OFFSET_LEN];
139 int msg_count;
140
141 if (!ops->xfer)
142 return -ENOSYS;
143 if (chip->flags & DM_I2C_CHIP_RD_ADDRESS)
144 return i2c_read_bytewise(dev, offset, buffer, len);
145 ptr = msg;
146 if (!i2c_setup_offset(chip, offset, offset_buf, ptr))
147 ptr++;
148
149 if (len) {
Robert Beckett85968522019-10-28 17:44:57 +0000150 ptr->addr = msg->addr;
Simon Glassc6202d82014-12-10 08:55:47 -0700151 ptr->flags = chip->flags & DM_I2C_CHIP_10BIT ? I2C_M_TEN : 0;
152 ptr->flags |= I2C_M_RD;
153 ptr->len = len;
154 ptr->buf = buffer;
155 ptr++;
156 }
157 msg_count = ptr - msg;
158
159 return ops->xfer(bus, msg, msg_count);
160}
161
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700162int dm_i2c_write(struct udevice *dev, uint offset, const uint8_t *buffer,
163 int len)
Simon Glassc6202d82014-12-10 08:55:47 -0700164{
Simon Glasscaa4daa2020-12-03 16:55:18 -0700165 struct dm_i2c_chip *chip = dev_get_parent_plat(dev);
Simon Glassc6202d82014-12-10 08:55:47 -0700166 struct udevice *bus = dev_get_parent(dev);
167 struct dm_i2c_ops *ops = i2c_get_ops(bus);
168 struct i2c_msg msg[1];
169
170 if (!ops->xfer)
171 return -ENOSYS;
172
173 if (chip->flags & DM_I2C_CHIP_WR_ADDRESS)
174 return i2c_write_bytewise(dev, offset, buffer, len);
175 /*
176 * The simple approach would be to send two messages here: one to
177 * set the offset and one to write the bytes. However some drivers
178 * will not be expecting this, and some chips won't like how the
179 * driver presents this on the I2C bus.
180 *
181 * The API does not support separate offset and data. We could extend
182 * it with a flag indicating that there is data in the next message
183 * that needs to be processed in the same transaction. We could
184 * instead add an additional buffer to each message. For now, handle
185 * this in the uclass since it isn't clear what the impact on drivers
186 * would be with this extra complication. Unfortunately this means
187 * copying the message.
188 *
189 * Use the stack for small messages, malloc() for larger ones. We
190 * need to allow space for the offset (up to 4 bytes) and the message
191 * itself.
192 */
193 if (len < 64) {
194 uint8_t buf[I2C_MAX_OFFSET_LEN + len];
195
196 i2c_setup_offset(chip, offset, buf, msg);
197 msg->len += len;
198 memcpy(buf + chip->offset_len, buffer, len);
199
200 return ops->xfer(bus, msg, 1);
201 } else {
202 uint8_t *buf;
203 int ret;
204
205 buf = malloc(I2C_MAX_OFFSET_LEN + len);
206 if (!buf)
207 return -ENOMEM;
208 i2c_setup_offset(chip, offset, buf, msg);
209 msg->len += len;
210 memcpy(buf + chip->offset_len, buffer, len);
211
212 ret = ops->xfer(bus, msg, 1);
213 free(buf);
214 return ret;
215 }
216}
217
Simon Glassdf358c62015-07-02 18:15:42 -0600218int dm_i2c_xfer(struct udevice *dev, struct i2c_msg *msg, int nmsgs)
219{
220 struct udevice *bus = dev_get_parent(dev);
221 struct dm_i2c_ops *ops = i2c_get_ops(bus);
222
223 if (!ops->xfer)
224 return -ENOSYS;
225
226 return ops->xfer(bus, msg, nmsgs);
227}
228
Simon Glassba3864f2015-04-20 12:37:14 -0600229int dm_i2c_reg_read(struct udevice *dev, uint offset)
230{
231 uint8_t val;
232 int ret;
233
234 ret = dm_i2c_read(dev, offset, &val, 1);
235 if (ret < 0)
236 return ret;
237
238 return val;
239}
240
241int dm_i2c_reg_write(struct udevice *dev, uint offset, uint value)
242{
243 uint8_t val = value;
244
245 return dm_i2c_write(dev, offset, &val, 1);
246}
247
Simon Glassc6202d82014-12-10 08:55:47 -0700248/**
249 * i2c_probe_chip() - probe for a chip on a bus
250 *
251 * @bus: Bus to probe
252 * @chip_addr: Chip address to probe
253 * @flags: Flags for the chip
254 * @return 0 if found, -ENOSYS if the driver is invalid, -EREMOTEIO if the chip
255 * does not respond to probe
256 */
257static int i2c_probe_chip(struct udevice *bus, uint chip_addr,
258 enum dm_i2c_chip_flags chip_flags)
259{
260 struct dm_i2c_ops *ops = i2c_get_ops(bus);
261 struct i2c_msg msg[1];
262 int ret;
263
264 if (ops->probe_chip) {
265 ret = ops->probe_chip(bus, chip_addr, chip_flags);
266 if (!ret || ret != -ENOSYS)
267 return ret;
268 }
269
270 if (!ops->xfer)
271 return -ENOSYS;
272
273 /* Probe with a zero-length message */
274 msg->addr = chip_addr;
275 msg->flags = chip_flags & DM_I2C_CHIP_10BIT ? I2C_M_TEN : 0;
276 msg->len = 0;
277 msg->buf = NULL;
278
279 return ops->xfer(bus, msg, 1);
280}
281
Simon Glass25ab4b02015-01-25 08:26:55 -0700282static int i2c_bind_driver(struct udevice *bus, uint chip_addr, uint offset_len,
Simon Glassc6202d82014-12-10 08:55:47 -0700283 struct udevice **devp)
284{
Simon Glasse6f66ec2015-01-25 08:27:13 -0700285 struct dm_i2c_chip *chip;
Simon Glassc6202d82014-12-10 08:55:47 -0700286 char name[30], *str;
287 struct udevice *dev;
288 int ret;
289
290 snprintf(name, sizeof(name), "generic_%x", chip_addr);
291 str = strdup(name);
Simon Glass5c2d23b2015-02-18 14:10:28 -0700292 if (!str)
293 return -ENOMEM;
Simon Glassc6202d82014-12-10 08:55:47 -0700294 ret = device_bind_driver(bus, "i2c_generic_chip_drv", str, &dev);
295 debug("%s: device_bind_driver: ret=%d\n", __func__, ret);
296 if (ret)
297 goto err_bind;
298
299 /* Tell the device what we know about it */
Simon Glasscaa4daa2020-12-03 16:55:18 -0700300 chip = dev_get_parent_plat(dev);
Simon Glasse6f66ec2015-01-25 08:27:13 -0700301 chip->chip_addr = chip_addr;
302 chip->offset_len = offset_len;
303 ret = device_probe(dev);
304 debug("%s: device_probe: ret=%d\n", __func__, ret);
Simon Glassc6202d82014-12-10 08:55:47 -0700305 if (ret)
306 goto err_probe;
307
308 *devp = dev;
309 return 0;
310
311err_probe:
Simon Glasse6f66ec2015-01-25 08:27:13 -0700312 /*
313 * If the device failed to probe, unbind it. There is nothing there
314 * on the bus so we don't want to leave it lying around
315 */
Simon Glassc6202d82014-12-10 08:55:47 -0700316 device_unbind(dev);
317err_bind:
318 free(str);
319 return ret;
320}
321
Simon Glass25ab4b02015-01-25 08:26:55 -0700322int i2c_get_chip(struct udevice *bus, uint chip_addr, uint offset_len,
323 struct udevice **devp)
Simon Glassc6202d82014-12-10 08:55:47 -0700324{
325 struct udevice *dev;
326
327 debug("%s: Searching bus '%s' for address %02x: ", __func__,
328 bus->name, chip_addr);
329 for (device_find_first_child(bus, &dev); dev;
330 device_find_next_child(&dev)) {
Simon Glasscaa4daa2020-12-03 16:55:18 -0700331 struct dm_i2c_chip *chip = dev_get_parent_plat(dev);
Simon Glassc6202d82014-12-10 08:55:47 -0700332 int ret;
333
Robert Beckett85968522019-10-28 17:44:57 +0000334 if (chip->chip_addr == (chip_addr &
335 ~chip->chip_addr_offset_mask)) {
Simon Glassc6202d82014-12-10 08:55:47 -0700336 ret = device_probe(dev);
337 debug("found, ret=%d\n", ret);
338 if (ret)
339 return ret;
340 *devp = dev;
341 return 0;
342 }
343 }
344 debug("not found\n");
Simon Glass25ab4b02015-01-25 08:26:55 -0700345 return i2c_bind_driver(bus, chip_addr, offset_len, devp);
Simon Glassc6202d82014-12-10 08:55:47 -0700346}
347
Simon Glass25ab4b02015-01-25 08:26:55 -0700348int i2c_get_chip_for_busnum(int busnum, int chip_addr, uint offset_len,
349 struct udevice **devp)
Simon Glassc6202d82014-12-10 08:55:47 -0700350{
351 struct udevice *bus;
352 int ret;
353
354 ret = uclass_get_device_by_seq(UCLASS_I2C, busnum, &bus);
355 if (ret) {
356 debug("Cannot find I2C bus %d\n", busnum);
357 return ret;
358 }
Jean-Jacques Hiblotf32a8002018-12-07 14:50:38 +0100359
360 /* detect the presence of the chip on the bus */
361 ret = i2c_probe_chip(bus, chip_addr, 0);
362 debug("%s: bus='%s', address %02x, ret=%d\n", __func__, bus->name,
363 chip_addr, ret);
364 if (ret) {
365 debug("Cannot detect I2C chip %02x on bus %d\n", chip_addr,
366 busnum);
367 return ret;
368 }
369
Simon Glass25ab4b02015-01-25 08:26:55 -0700370 ret = i2c_get_chip(bus, chip_addr, offset_len, devp);
Simon Glassc6202d82014-12-10 08:55:47 -0700371 if (ret) {
372 debug("Cannot find I2C chip %02x on bus %d\n", chip_addr,
373 busnum);
374 return ret;
375 }
376
377 return 0;
378}
379
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700380int dm_i2c_probe(struct udevice *bus, uint chip_addr, uint chip_flags,
381 struct udevice **devp)
Simon Glassc6202d82014-12-10 08:55:47 -0700382{
383 int ret;
384
385 *devp = NULL;
386
387 /* First probe that chip */
388 ret = i2c_probe_chip(bus, chip_addr, chip_flags);
389 debug("%s: bus='%s', address %02x, ret=%d\n", __func__, bus->name,
390 chip_addr, ret);
391 if (ret)
392 return ret;
393
394 /* The chip was found, see if we have a driver, and probe it */
Simon Glass25ab4b02015-01-25 08:26:55 -0700395 ret = i2c_get_chip(bus, chip_addr, 1, devp);
Simon Glassc6202d82014-12-10 08:55:47 -0700396 debug("%s: i2c_get_chip: ret=%d\n", __func__, ret);
397
398 return ret;
399}
400
Simon Glassca88b9b2015-02-05 21:41:32 -0700401int dm_i2c_set_bus_speed(struct udevice *bus, unsigned int speed)
Simon Glassc6202d82014-12-10 08:55:47 -0700402{
403 struct dm_i2c_ops *ops = i2c_get_ops(bus);
Simon Glasse564f052015-03-05 12:25:20 -0700404 struct dm_i2c_bus *i2c = dev_get_uclass_priv(bus);
Simon Glassc6202d82014-12-10 08:55:47 -0700405 int ret;
406
407 /*
408 * If we have a method, call it. If not then the driver probably wants
409 * to deal with speed changes on the next transfer. It can easily read
410 * the current speed from this uclass
411 */
412 if (ops->set_bus_speed) {
413 ret = ops->set_bus_speed(bus, speed);
414 if (ret)
415 return ret;
416 }
417 i2c->speed_hz = speed;
418
419 return 0;
420}
421
Simon Glassca88b9b2015-02-05 21:41:32 -0700422int dm_i2c_get_bus_speed(struct udevice *bus)
Simon Glassc6202d82014-12-10 08:55:47 -0700423{
424 struct dm_i2c_ops *ops = i2c_get_ops(bus);
Simon Glasse564f052015-03-05 12:25:20 -0700425 struct dm_i2c_bus *i2c = dev_get_uclass_priv(bus);
Simon Glassc6202d82014-12-10 08:55:47 -0700426
427 if (!ops->get_bus_speed)
428 return i2c->speed_hz;
429
430 return ops->get_bus_speed(bus);
431}
432
433int i2c_set_chip_flags(struct udevice *dev, uint flags)
434{
435 struct udevice *bus = dev->parent;
Simon Glasscaa4daa2020-12-03 16:55:18 -0700436 struct dm_i2c_chip *chip = dev_get_parent_plat(dev);
Simon Glassc6202d82014-12-10 08:55:47 -0700437 struct dm_i2c_ops *ops = i2c_get_ops(bus);
438 int ret;
439
440 if (ops->set_flags) {
441 ret = ops->set_flags(dev, flags);
442 if (ret)
443 return ret;
444 }
445 chip->flags = flags;
446
447 return 0;
448}
449
450int i2c_get_chip_flags(struct udevice *dev, uint *flagsp)
451{
Simon Glasscaa4daa2020-12-03 16:55:18 -0700452 struct dm_i2c_chip *chip = dev_get_parent_plat(dev);
Simon Glassc6202d82014-12-10 08:55:47 -0700453
454 *flagsp = chip->flags;
455
456 return 0;
457}
458
459int i2c_set_chip_offset_len(struct udevice *dev, uint offset_len)
460{
Simon Glasscaa4daa2020-12-03 16:55:18 -0700461 struct dm_i2c_chip *chip = dev_get_parent_plat(dev);
Simon Glassc6202d82014-12-10 08:55:47 -0700462
463 if (offset_len > I2C_MAX_OFFSET_LEN)
Simon Glassc61c8ef2020-07-07 21:32:28 -0600464 return log_ret(-EINVAL);
Simon Glassc6202d82014-12-10 08:55:47 -0700465 chip->offset_len = offset_len;
466
467 return 0;
468}
469
Simon Glass01501802015-05-04 11:30:58 -0600470int i2c_get_chip_offset_len(struct udevice *dev)
471{
Simon Glasscaa4daa2020-12-03 16:55:18 -0700472 struct dm_i2c_chip *chip = dev_get_parent_plat(dev);
Simon Glass01501802015-05-04 11:30:58 -0600473
474 return chip->offset_len;
475}
476
Robert Beckett85968522019-10-28 17:44:57 +0000477int i2c_set_chip_addr_offset_mask(struct udevice *dev, uint mask)
478{
Simon Glasscaa4daa2020-12-03 16:55:18 -0700479 struct dm_i2c_chip *chip = dev_get_parent_plat(dev);
Robert Beckett85968522019-10-28 17:44:57 +0000480
481 chip->chip_addr_offset_mask = mask;
482
483 return 0;
484}
485
486uint i2c_get_chip_addr_offset_mask(struct udevice *dev)
487{
Simon Glasscaa4daa2020-12-03 16:55:18 -0700488 struct dm_i2c_chip *chip = dev_get_parent_plat(dev);
Robert Beckett85968522019-10-28 17:44:57 +0000489
490 return chip->chip_addr_offset_mask;
491}
492
Simon Glassbcee8d62019-12-06 21:41:35 -0700493#if CONFIG_IS_ENABLED(DM_GPIO)
Alexander Kochetkovaa541922018-03-27 17:52:27 +0300494static void i2c_gpio_set_pin(struct gpio_desc *pin, int bit)
495{
496 if (bit)
497 dm_gpio_set_dir_flags(pin, GPIOD_IS_IN);
498 else
499 dm_gpio_set_dir_flags(pin, GPIOD_IS_OUT |
500 GPIOD_ACTIVE_LOW |
501 GPIOD_IS_OUT_ACTIVE);
502}
503
504static int i2c_gpio_get_pin(struct gpio_desc *pin)
505{
506 return dm_gpio_get_value(pin);
507}
508
Marek Vasut72315222020-02-07 16:57:50 +0100509int i2c_deblock_gpio_loop(struct gpio_desc *sda_pin,
510 struct gpio_desc *scl_pin,
511 unsigned int scl_count,
Marek Vasuta1917282020-02-07 16:57:51 +0100512 unsigned int start_count,
Marek Vasut72315222020-02-07 16:57:50 +0100513 unsigned int delay)
Alexander Kochetkovaa541922018-03-27 17:52:27 +0300514{
Marek Vasuta1917282020-02-07 16:57:51 +0100515 int i, ret = -EREMOTEIO;
Alexander Kochetkovaa541922018-03-27 17:52:27 +0300516
517 i2c_gpio_set_pin(sda_pin, 1);
518 i2c_gpio_set_pin(scl_pin, 1);
Marek Vasut1f746a22020-02-07 16:57:49 +0100519 udelay(delay);
Alexander Kochetkovaa541922018-03-27 17:52:27 +0300520
521 /* Toggle SCL until slave release SDA */
Heinrich Schuchardtda585c32020-05-09 18:20:18 +0200522 for (; scl_count; --scl_count) {
Alexander Kochetkovaa541922018-03-27 17:52:27 +0300523 i2c_gpio_set_pin(scl_pin, 1);
Marek Vasut1f746a22020-02-07 16:57:49 +0100524 udelay(delay);
Alexander Kochetkovaa541922018-03-27 17:52:27 +0300525 i2c_gpio_set_pin(scl_pin, 0);
Marek Vasut1f746a22020-02-07 16:57:49 +0100526 udelay(delay);
Marek Vasuta1917282020-02-07 16:57:51 +0100527 if (i2c_gpio_get_pin(sda_pin)) {
528 ret = 0;
Alexander Kochetkovaa541922018-03-27 17:52:27 +0300529 break;
Marek Vasuta1917282020-02-07 16:57:51 +0100530 }
531 }
532
533 if (!ret && start_count) {
534 for (i = 0; i < start_count; i++) {
535 /* Send start condition */
536 udelay(delay);
537 i2c_gpio_set_pin(sda_pin, 1);
538 udelay(delay);
539 i2c_gpio_set_pin(scl_pin, 1);
540 udelay(delay);
541 i2c_gpio_set_pin(sda_pin, 0);
542 udelay(delay);
543 i2c_gpio_set_pin(scl_pin, 0);
544 }
Alexander Kochetkovaa541922018-03-27 17:52:27 +0300545 }
546
547 /* Then, send I2C stop */
548 i2c_gpio_set_pin(sda_pin, 0);
Marek Vasut1f746a22020-02-07 16:57:49 +0100549 udelay(delay);
Alexander Kochetkovaa541922018-03-27 17:52:27 +0300550
551 i2c_gpio_set_pin(scl_pin, 1);
Marek Vasut1f746a22020-02-07 16:57:49 +0100552 udelay(delay);
Alexander Kochetkovaa541922018-03-27 17:52:27 +0300553
554 i2c_gpio_set_pin(sda_pin, 1);
Marek Vasut1f746a22020-02-07 16:57:49 +0100555 udelay(delay);
Alexander Kochetkovaa541922018-03-27 17:52:27 +0300556
557 if (!i2c_gpio_get_pin(sda_pin) || !i2c_gpio_get_pin(scl_pin))
558 ret = -EREMOTEIO;
559
560 return ret;
561}
562
563static int i2c_deblock_gpio(struct udevice *bus)
564{
565 struct gpio_desc gpios[PIN_COUNT];
566 int ret, ret0;
567
568 ret = gpio_request_list_by_name(bus, "gpios", gpios,
569 ARRAY_SIZE(gpios), GPIOD_IS_IN);
570 if (ret != ARRAY_SIZE(gpios)) {
571 debug("%s: I2C Node '%s' has no 'gpios' property %s\n",
572 __func__, dev_read_name(bus), bus->name);
573 if (ret >= 0) {
574 gpio_free_list(bus, gpios, ret);
575 ret = -ENOENT;
576 }
577 goto out;
578 }
579
580 ret = pinctrl_select_state(bus, "gpio");
581 if (ret) {
582 debug("%s: I2C Node '%s' has no 'gpio' pinctrl state. %s\n",
583 __func__, dev_read_name(bus), bus->name);
584 goto out_no_pinctrl;
585 }
586
Marek Vasuta1917282020-02-07 16:57:51 +0100587 ret0 = i2c_deblock_gpio_loop(&gpios[PIN_SDA], &gpios[PIN_SCL], 9, 0, 5);
Alexander Kochetkovaa541922018-03-27 17:52:27 +0300588
589 ret = pinctrl_select_state(bus, "default");
590 if (ret) {
591 debug("%s: I2C Node '%s' has no 'default' pinctrl state. %s\n",
592 __func__, dev_read_name(bus), bus->name);
593 }
594
595 ret = !ret ? ret0 : ret;
596
597out_no_pinctrl:
598 gpio_free_list(bus, gpios, ARRAY_SIZE(gpios));
599out:
600 return ret;
601}
602#else
603static int i2c_deblock_gpio(struct udevice *bus)
604{
605 return -ENOSYS;
606}
Simon Glassbcee8d62019-12-06 21:41:35 -0700607#endif /* DM_GPIO */
Alexander Kochetkovaa541922018-03-27 17:52:27 +0300608
Simon Glassc6202d82014-12-10 08:55:47 -0700609int i2c_deblock(struct udevice *bus)
610{
611 struct dm_i2c_ops *ops = i2c_get_ops(bus);
612
Simon Glassc6202d82014-12-10 08:55:47 -0700613 if (!ops->deblock)
Alexander Kochetkovaa541922018-03-27 17:52:27 +0300614 return i2c_deblock_gpio(bus);
Simon Glassc6202d82014-12-10 08:55:47 -0700615
616 return ops->deblock(bus);
617}
618
Adam Fordafa8cdd2018-08-20 20:24:34 -0500619#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassd1998a92020-12-03 16:55:21 -0700620int i2c_chip_of_to_plat(struct udevice *dev, struct dm_i2c_chip *chip)
Simon Glassc6202d82014-12-10 08:55:47 -0700621{
Simon Glass17043082017-05-18 20:09:30 -0600622 int addr;
623
624 chip->offset_len = dev_read_u32_default(dev, "u-boot,i2c-offset-len",
625 1);
Simon Glassc6202d82014-12-10 08:55:47 -0700626 chip->flags = 0;
Simon Glass17043082017-05-18 20:09:30 -0600627 addr = dev_read_u32_default(dev, "reg", -1);
628 if (addr == -1) {
629 debug("%s: I2C Node '%s' has no 'reg' property %s\n", __func__,
630 dev_read_name(dev), dev->name);
Simon Glassc61c8ef2020-07-07 21:32:28 -0600631 return log_ret(-EINVAL);
Simon Glassc6202d82014-12-10 08:55:47 -0700632 }
Simon Glass17043082017-05-18 20:09:30 -0600633 chip->chip_addr = addr;
Simon Glassc6202d82014-12-10 08:55:47 -0700634
635 return 0;
636}
Mugunthan V N5142ac72016-07-18 15:10:58 +0530637#endif
Simon Glassc6202d82014-12-10 08:55:47 -0700638
Lukasz Majewskia40fe212019-04-04 12:35:34 +0200639static int i2c_pre_probe(struct udevice *dev)
640{
641#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
642 struct dm_i2c_bus *i2c = dev_get_uclass_priv(dev);
643 unsigned int max = 0;
644 ofnode node;
645 int ret;
646
647 i2c->max_transaction_bytes = 0;
648 dev_for_each_subnode(node, dev) {
649 ret = ofnode_read_u32(node,
650 "u-boot,i2c-transaction-bytes",
651 &max);
652 if (!ret && max > i2c->max_transaction_bytes)
653 i2c->max_transaction_bytes = max;
654 }
655
656 debug("%s: I2C bus: %s max transaction bytes: %d\n", __func__,
657 dev->name, i2c->max_transaction_bytes);
658#endif
659 return 0;
660}
661
Simon Glassc6202d82014-12-10 08:55:47 -0700662static int i2c_post_probe(struct udevice *dev)
663{
Adam Fordafa8cdd2018-08-20 20:24:34 -0500664#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glasse564f052015-03-05 12:25:20 -0700665 struct dm_i2c_bus *i2c = dev_get_uclass_priv(dev);
Simon Glassc6202d82014-12-10 08:55:47 -0700666
Simon Glassf3d46152020-01-23 11:48:22 -0700667 i2c->speed_hz = dev_read_u32_default(dev, "clock-frequency",
668 I2C_SPEED_STANDARD_RATE);
Simon Glassc6202d82014-12-10 08:55:47 -0700669
Simon Glassca88b9b2015-02-05 21:41:32 -0700670 return dm_i2c_set_bus_speed(dev, i2c->speed_hz);
Mugunthan V N5142ac72016-07-18 15:10:58 +0530671#else
672 return 0;
673#endif
Simon Glassc6202d82014-12-10 08:55:47 -0700674}
675
Simon Glasse6f66ec2015-01-25 08:27:13 -0700676static int i2c_child_post_bind(struct udevice *dev)
677{
Adam Fordafa8cdd2018-08-20 20:24:34 -0500678#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glasscaa4daa2020-12-03 16:55:18 -0700679 struct dm_i2c_chip *plat = dev_get_parent_plat(dev);
Simon Glasse6f66ec2015-01-25 08:27:13 -0700680
Simon Glass7d14ee42020-12-19 10:40:13 -0700681 if (!dev_has_ofnode(dev))
Simon Glasse6f66ec2015-01-25 08:27:13 -0700682 return 0;
Simon Glassd1998a92020-12-03 16:55:21 -0700683 return i2c_chip_of_to_plat(dev, plat);
Mugunthan V N5142ac72016-07-18 15:10:58 +0530684#else
685 return 0;
686#endif
Simon Glasse6f66ec2015-01-25 08:27:13 -0700687}
688
Michal Simek61607222019-01-31 16:31:02 +0100689static int i2c_post_bind(struct udevice *dev)
690{
Michal Simek61607222019-01-31 16:31:02 +0100691 int ret = 0;
692
Simon Glass16df9932020-12-16 21:20:15 -0700693 debug("%s: %s, seq=%d\n", __func__, dev->name, dev_seq(dev));
Michal Simek61607222019-01-31 16:31:02 +0100694
695#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
696 ret = dm_scan_fdt_dev(dev);
697#endif
698 return ret;
699}
700
Simon Glassc6202d82014-12-10 08:55:47 -0700701UCLASS_DRIVER(i2c) = {
702 .id = UCLASS_I2C,
703 .name = "i2c",
Simon Glass9cc36a22015-01-25 08:27:05 -0700704 .flags = DM_UC_FLAG_SEQ_ALIAS,
Michal Simek61607222019-01-31 16:31:02 +0100705 .post_bind = i2c_post_bind,
Lukasz Majewskia40fe212019-04-04 12:35:34 +0200706 .pre_probe = i2c_pre_probe,
Simon Glassc6202d82014-12-10 08:55:47 -0700707 .post_probe = i2c_post_probe,
Simon Glass41575d82020-12-03 16:55:17 -0700708 .per_device_auto = sizeof(struct dm_i2c_bus),
Simon Glasscaa4daa2020-12-03 16:55:18 -0700709 .per_child_plat_auto = sizeof(struct dm_i2c_chip),
Simon Glasse6f66ec2015-01-25 08:27:13 -0700710 .child_post_bind = i2c_child_post_bind,
Simon Glassc6202d82014-12-10 08:55:47 -0700711};
712
713UCLASS_DRIVER(i2c_generic) = {
714 .id = UCLASS_I2C_GENERIC,
715 .name = "i2c_generic",
716};
717
Simon Glassfd42f262020-09-22 12:45:01 -0600718static const struct udevice_id generic_chip_i2c_ids[] = {
719 { .compatible = "i2c-chip", .data = I2C_DEVICE_GENERIC },
720#if CONFIG_IS_ENABLED(ACPIGEN)
721 { .compatible = "hid-over-i2c", .data = I2C_DEVICE_HID_OVER_I2C },
722#endif
723 { }
724};
725
Simon Glassc6202d82014-12-10 08:55:47 -0700726U_BOOT_DRIVER(i2c_generic_chip_drv) = {
727 .name = "i2c_generic_chip_drv",
728 .id = UCLASS_I2C_GENERIC,
Simon Glassfd42f262020-09-22 12:45:01 -0600729 .of_match = generic_chip_i2c_ids,
730#if CONFIG_IS_ENABLED(ACPIGEN)
Simon Glassd1998a92020-12-03 16:55:21 -0700731 .of_to_plat = acpi_i2c_of_to_plat,
Simon Glass41575d82020-12-03 16:55:17 -0700732 .priv_auto = sizeof(struct acpi_i2c_priv),
Simon Glassfd42f262020-09-22 12:45:01 -0600733#endif
734 ACPI_OPS_PTR(&acpi_i2c_ops)
Simon Glassc6202d82014-12-10 08:55:47 -0700735};