blob: dd1c7e59e4b886fcb638d7e270cdfc78dcf34f23 [file] [log] [blame]
Simon Glassd19de0d2014-12-10 08:55:50 -07001/*
2 * Simulate an I2C port
3 *
4 * Copyright (c) 2014 Google, Inc
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <common.h>
10#include <dm.h>
11#include <errno.h>
12#include <fdtdec.h>
13#include <i2c.h>
14#include <asm/test.h>
15#include <dm/lists.h>
16#include <dm/device-internal.h>
17#include <dm/root.h>
18
19DECLARE_GLOBAL_DATA_PTR;
20
Simon Glass182bf922015-04-20 12:37:15 -060021struct sandbox_i2c_priv {
22 bool test_mode;
Simon Glassd19de0d2014-12-10 08:55:50 -070023};
24
25static int get_emul(struct udevice *dev, struct udevice **devp,
26 struct dm_i2c_ops **opsp)
27{
Simon Glasse6f66ec2015-01-25 08:27:13 -070028 struct dm_i2c_chip *plat;
Simon Glassd19de0d2014-12-10 08:55:50 -070029 int ret;
30
31 *devp = NULL;
32 *opsp = NULL;
Simon Glasse6f66ec2015-01-25 08:27:13 -070033 plat = dev_get_parent_platdata(dev);
34 if (!plat->emul) {
Simon Glassd19de0d2014-12-10 08:55:50 -070035 ret = dm_scan_fdt_node(dev, gd->fdt_blob, dev->of_offset,
36 false);
37 if (ret)
38 return ret;
39
Simon Glasse6f66ec2015-01-25 08:27:13 -070040 ret = device_get_child(dev, 0, &plat->emul);
Simon Glassd19de0d2014-12-10 08:55:50 -070041 if (ret)
42 return ret;
43 }
Simon Glasse6f66ec2015-01-25 08:27:13 -070044 *devp = plat->emul;
45 *opsp = i2c_get_ops(plat->emul);
Simon Glassd19de0d2014-12-10 08:55:50 -070046
47 return 0;
48}
49
Simon Glass182bf922015-04-20 12:37:15 -060050void sandbox_i2c_set_test_mode(struct udevice *bus, bool test_mode)
51{
52 struct sandbox_i2c_priv *priv = dev_get_priv(bus);
53
54 priv->test_mode = test_mode;
55}
56
Simon Glassd19de0d2014-12-10 08:55:50 -070057static int sandbox_i2c_xfer(struct udevice *bus, struct i2c_msg *msg,
58 int nmsgs)
59{
Simon Glasse564f052015-03-05 12:25:20 -070060 struct dm_i2c_bus *i2c = dev_get_uclass_priv(bus);
Simon Glass182bf922015-04-20 12:37:15 -060061 struct sandbox_i2c_priv *priv = dev_get_priv(bus);
Simon Glassd19de0d2014-12-10 08:55:50 -070062 struct dm_i2c_ops *ops;
63 struct udevice *emul, *dev;
64 bool is_read;
65 int ret;
66
67 /* Special test code to return success but with no emulation */
Simon Glass182bf922015-04-20 12:37:15 -060068 if (priv->test_mode && msg->addr == SANDBOX_I2C_TEST_ADDR)
Simon Glassd19de0d2014-12-10 08:55:50 -070069 return 0;
70
Simon Glass25ab4b02015-01-25 08:26:55 -070071 ret = i2c_get_chip(bus, msg->addr, 1, &dev);
Simon Glassd19de0d2014-12-10 08:55:50 -070072 if (ret)
73 return ret;
74
75 ret = get_emul(dev, &emul, &ops);
76 if (ret)
77 return ret;
78
Simon Glass182bf922015-04-20 12:37:15 -060079 if (priv->test_mode) {
80 /*
81 * For testing, don't allow writing above 100KHz for writes and
82 * 400KHz for reads.
83 */
84 is_read = nmsgs > 1;
85 if (i2c->speed_hz > (is_read ? 400000 : 100000)) {
86 debug("%s: Max speed exceeded\n", __func__);
87 return -EINVAL;
88 }
Simon Glass1bde67b2015-04-20 12:37:13 -060089 }
Simon Glass182bf922015-04-20 12:37:15 -060090
Simon Glassd19de0d2014-12-10 08:55:50 -070091 return ops->xfer(emul, msg, nmsgs);
92}
93
94static const struct dm_i2c_ops sandbox_i2c_ops = {
95 .xfer = sandbox_i2c_xfer,
96};
97
Simon Glassd19de0d2014-12-10 08:55:50 -070098static const struct udevice_id sandbox_i2c_ids[] = {
99 { .compatible = "sandbox,i2c" },
100 { }
101};
102
103U_BOOT_DRIVER(i2c_sandbox) = {
104 .name = "i2c_sandbox",
105 .id = UCLASS_I2C,
106 .of_match = sandbox_i2c_ids,
Simon Glassd19de0d2014-12-10 08:55:50 -0700107 .ops = &sandbox_i2c_ops,
Simon Glass182bf922015-04-20 12:37:15 -0600108 .priv_auto_alloc_size = sizeof(struct sandbox_i2c_priv),
Simon Glassd19de0d2014-12-10 08:55:50 -0700109};