1 // SPDX-License-Identifier: GPL-2.0+
5 * Copyright (c) 2014 Google, Inc
14 #include <dm/device-internal.h>
16 struct sandbox_i2c_priv {
20 static int get_emul(struct udevice *dev, struct udevice **devp,
21 struct dm_i2c_ops **opsp)
23 struct dm_i2c_chip *plat;
28 plat = dev_get_parent_platdata(dev);
30 ret = i2c_emul_find(dev, &plat->emul);
35 *opsp = i2c_get_ops(plat->emul);
40 void sandbox_i2c_set_test_mode(struct udevice *bus, bool test_mode)
42 struct sandbox_i2c_priv *priv = dev_get_priv(bus);
44 priv->test_mode = test_mode;
47 static int sandbox_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
50 struct dm_i2c_bus *i2c = dev_get_uclass_priv(bus);
51 struct sandbox_i2c_priv *priv = dev_get_priv(bus);
52 struct dm_i2c_ops *ops;
53 struct udevice *emul, *dev;
57 /* Special test code to return success but with no emulation */
58 if (priv->test_mode && msg->addr == SANDBOX_I2C_TEST_ADDR)
61 ret = i2c_get_chip(bus, msg->addr, 1, &dev);
65 ret = get_emul(dev, &emul, &ops);
69 if (priv->test_mode) {
71 * For testing, don't allow writing above 100KHz for writes and
75 if (i2c->speed_hz > (is_read ? 400000 : 100000)) {
76 debug("%s: Max speed exceeded\n", __func__);
81 return ops->xfer(emul, msg, nmsgs);
84 static const struct dm_i2c_ops sandbox_i2c_ops = {
85 .xfer = sandbox_i2c_xfer,
88 static const struct udevice_id sandbox_i2c_ids[] = {
89 { .compatible = "sandbox,i2c" },
93 U_BOOT_DRIVER(i2c_sandbox) = {
94 .name = "i2c_sandbox",
96 .of_match = sandbox_i2c_ids,
97 .ops = &sandbox_i2c_ops,
98 .priv_auto_alloc_size = sizeof(struct sandbox_i2c_priv),