blob: ef88372d56361ab40186a34787cc6c7a8e0c40d4 [file] [log] [blame]
Simon Glassecc2ed52014-12-10 08:55:55 -07001/*
2 * Copyright (C) 2013 Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 *
6 * Note: Test coverage does not include 10-bit addressing
7 */
8
9#include <common.h>
10#include <dm.h>
11#include <fdtdec.h>
12#include <i2c.h>
13#include <dm/device-internal.h>
14#include <dm/test.h>
15#include <dm/uclass-internal.h>
16#include <dm/ut.h>
17#include <dm/util.h>
18#include <asm/state.h>
19#include <asm/test.h>
20
21static const int busnum;
22static const int chip = 0x2c;
23
24/* Test that we can find buses and chips */
25static int dm_test_i2c_find(struct dm_test_state *dms)
26{
27 struct udevice *bus, *dev;
28 const int no_chip = 0x10;
29
30 ut_asserteq(-ENODEV, uclass_find_device_by_seq(UCLASS_I2C, busnum,
31 false, &bus));
32
33 /*
34 * i2c_post_bind() will bind devices to chip selects. Check this then
35 * remove the emulation and the slave device.
36 */
37 ut_assertok(uclass_get_device_by_seq(UCLASS_I2C, busnum, &bus));
Simon Glassf9a4c2d2015-01-12 18:02:07 -070038 ut_assertok(dm_i2c_probe(bus, chip, 0, &dev));
39 ut_asserteq(-ENODEV, dm_i2c_probe(bus, no_chip, 0, &dev));
Simon Glassecc2ed52014-12-10 08:55:55 -070040 ut_asserteq(-ENODEV, uclass_get_device_by_seq(UCLASS_I2C, 1, &bus));
41
42 return 0;
43}
44DM_TEST(dm_test_i2c_find, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
45
46static int dm_test_i2c_read_write(struct dm_test_state *dms)
47{
48 struct udevice *bus, *dev;
49 uint8_t buf[5];
50
51 ut_assertok(uclass_get_device_by_seq(UCLASS_I2C, busnum, &bus));
Simon Glass25ab4b02015-01-25 08:26:55 -070052 ut_assertok(i2c_get_chip(bus, chip, 1, &dev));
Simon Glassf9a4c2d2015-01-12 18:02:07 -070053 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -070054 ut_assertok(memcmp(buf, "\0\0\0\0\0", sizeof(buf)));
Simon Glassf9a4c2d2015-01-12 18:02:07 -070055 ut_assertok(dm_i2c_write(dev, 2, (uint8_t *)"AB", 2));
56 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -070057 ut_assertok(memcmp(buf, "\0\0AB\0", sizeof(buf)));
58
59 return 0;
60}
61DM_TEST(dm_test_i2c_read_write, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
62
63static int dm_test_i2c_speed(struct dm_test_state *dms)
64{
65 struct udevice *bus, *dev;
66 uint8_t buf[5];
67
68 ut_assertok(uclass_get_device_by_seq(UCLASS_I2C, busnum, &bus));
Simon Glass25ab4b02015-01-25 08:26:55 -070069 ut_assertok(i2c_get_chip(bus, chip, 1, &dev));
Simon Glassecc2ed52014-12-10 08:55:55 -070070 ut_assertok(i2c_set_bus_speed(bus, 100000));
Simon Glassf9a4c2d2015-01-12 18:02:07 -070071 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -070072 ut_assertok(i2c_set_bus_speed(bus, 400000));
73 ut_asserteq(400000, i2c_get_bus_speed(bus));
Simon Glassf9a4c2d2015-01-12 18:02:07 -070074 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
75 ut_asserteq(-EINVAL, dm_i2c_write(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -070076
77 return 0;
78}
79DM_TEST(dm_test_i2c_speed, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
80
81static int dm_test_i2c_offset_len(struct dm_test_state *dms)
82{
83 struct udevice *bus, *dev;
84 uint8_t buf[5];
85
86 ut_assertok(uclass_get_device_by_seq(UCLASS_I2C, busnum, &bus));
Simon Glass25ab4b02015-01-25 08:26:55 -070087 ut_assertok(i2c_get_chip(bus, chip, 1, &dev));
Simon Glassecc2ed52014-12-10 08:55:55 -070088 ut_assertok(i2c_set_chip_offset_len(dev, 1));
Simon Glassf9a4c2d2015-01-12 18:02:07 -070089 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -070090
91 /* This is not supported by the uclass */
92 ut_asserteq(-EINVAL, i2c_set_chip_offset_len(dev, 5));
93
94 return 0;
95}
96DM_TEST(dm_test_i2c_offset_len, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
97
98static int dm_test_i2c_probe_empty(struct dm_test_state *dms)
99{
100 struct udevice *bus, *dev;
101
102 ut_assertok(uclass_get_device_by_seq(UCLASS_I2C, busnum, &bus));
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700103 ut_assertok(dm_i2c_probe(bus, SANDBOX_I2C_TEST_ADDR, 0, &dev));
Simon Glassecc2ed52014-12-10 08:55:55 -0700104
105 return 0;
106}
107DM_TEST(dm_test_i2c_probe_empty, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
108
109static int dm_test_i2c_bytewise(struct dm_test_state *dms)
110{
111 struct udevice *bus, *dev;
112 struct udevice *eeprom;
113 uint8_t buf[5];
114
115 ut_assertok(uclass_get_device_by_seq(UCLASS_I2C, busnum, &bus));
Simon Glass25ab4b02015-01-25 08:26:55 -0700116 ut_assertok(i2c_get_chip(bus, chip, 1, &dev));
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700117 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -0700118 ut_assertok(memcmp(buf, "\0\0\0\0\0", sizeof(buf)));
119
120 /* Tell the EEPROM to only read/write one register at a time */
121 ut_assertok(uclass_first_device(UCLASS_I2C_EMUL, &eeprom));
122 ut_assertnonnull(eeprom);
123 sandbox_i2c_eeprom_set_test_mode(eeprom, SIE_TEST_MODE_SINGLE_BYTE);
124
125 /* Now we only get the first byte - the rest will be 0xff */
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700126 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -0700127 ut_assertok(memcmp(buf, "\0\xff\xff\xff\xff", sizeof(buf)));
128
129 /* If we do a separate transaction for each byte, it works */
130 ut_assertok(i2c_set_chip_flags(dev, DM_I2C_CHIP_RD_ADDRESS));
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700131 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -0700132 ut_assertok(memcmp(buf, "\0\0\0\0\0", sizeof(buf)));
133
134 /* This will only write A */
135 ut_assertok(i2c_set_chip_flags(dev, 0));
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700136 ut_assertok(dm_i2c_write(dev, 2, (uint8_t *)"AB", 2));
137 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -0700138 ut_assertok(memcmp(buf, "\0\xff\xff\xff\xff", sizeof(buf)));
139
140 /* Check that the B was ignored */
141 ut_assertok(i2c_set_chip_flags(dev, DM_I2C_CHIP_RD_ADDRESS));
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700142 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -0700143 ut_assertok(memcmp(buf, "\0\0A\0\0\0", sizeof(buf)));
144
145 /* Now write it again with the new flags, it should work */
146 ut_assertok(i2c_set_chip_flags(dev, DM_I2C_CHIP_WR_ADDRESS));
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700147 ut_assertok(dm_i2c_write(dev, 2, (uint8_t *)"AB", 2));
148 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -0700149 ut_assertok(memcmp(buf, "\0\xff\xff\xff\xff", sizeof(buf)));
150
151 ut_assertok(i2c_set_chip_flags(dev, DM_I2C_CHIP_WR_ADDRESS |
152 DM_I2C_CHIP_RD_ADDRESS));
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700153 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -0700154 ut_assertok(memcmp(buf, "\0\0AB\0\0", sizeof(buf)));
155
156 /* Restore defaults */
157 sandbox_i2c_eeprom_set_test_mode(eeprom, SIE_TEST_MODE_NONE);
158 ut_assertok(i2c_set_chip_flags(dev, 0));
159
160 return 0;
161}
162DM_TEST(dm_test_i2c_bytewise, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
163
164static int dm_test_i2c_offset(struct dm_test_state *dms)
165{
166 struct udevice *eeprom;
167 struct udevice *dev;
168 uint8_t buf[5];
169
Simon Glass25ab4b02015-01-25 08:26:55 -0700170 ut_assertok(i2c_get_chip_for_busnum(busnum, chip, 1, &dev));
Simon Glassecc2ed52014-12-10 08:55:55 -0700171
172 /* Do a transfer so we can find the emulator */
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700173 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -0700174 ut_assertok(uclass_first_device(UCLASS_I2C_EMUL, &eeprom));
175
176 /* Offset length 0 */
177 sandbox_i2c_eeprom_set_offset_len(eeprom, 0);
178 ut_assertok(i2c_set_chip_offset_len(dev, 0));
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700179 ut_assertok(dm_i2c_write(dev, 10 /* ignored */, (uint8_t *)"AB", 2));
180 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -0700181 ut_assertok(memcmp(buf, "AB\0\0\0\0", sizeof(buf)));
182
183 /* Offset length 1 */
184 sandbox_i2c_eeprom_set_offset_len(eeprom, 1);
185 ut_assertok(i2c_set_chip_offset_len(dev, 1));
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700186 ut_assertok(dm_i2c_write(dev, 2, (uint8_t *)"AB", 2));
187 ut_assertok(dm_i2c_read(dev, 0, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -0700188 ut_assertok(memcmp(buf, "ABAB\0", sizeof(buf)));
189
190 /* Offset length 2 */
191 sandbox_i2c_eeprom_set_offset_len(eeprom, 2);
192 ut_assertok(i2c_set_chip_offset_len(dev, 2));
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700193 ut_assertok(dm_i2c_write(dev, 0x210, (uint8_t *)"AB", 2));
194 ut_assertok(dm_i2c_read(dev, 0x210, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -0700195 ut_assertok(memcmp(buf, "AB\0\0\0", sizeof(buf)));
196
197 /* Offset length 3 */
198 sandbox_i2c_eeprom_set_offset_len(eeprom, 2);
199 ut_assertok(i2c_set_chip_offset_len(dev, 2));
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700200 ut_assertok(dm_i2c_write(dev, 0x410, (uint8_t *)"AB", 2));
201 ut_assertok(dm_i2c_read(dev, 0x410, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -0700202 ut_assertok(memcmp(buf, "AB\0\0\0", sizeof(buf)));
203
204 /* Offset length 4 */
205 sandbox_i2c_eeprom_set_offset_len(eeprom, 2);
206 ut_assertok(i2c_set_chip_offset_len(dev, 2));
Simon Glassf9a4c2d2015-01-12 18:02:07 -0700207 ut_assertok(dm_i2c_write(dev, 0x420, (uint8_t *)"AB", 2));
208 ut_assertok(dm_i2c_read(dev, 0x420, buf, 5));
Simon Glassecc2ed52014-12-10 08:55:55 -0700209 ut_assertok(memcmp(buf, "AB\0\0\0", sizeof(buf)));
210
211 /* Restore defaults */
212 sandbox_i2c_eeprom_set_offset_len(eeprom, 1);
213
214 return 0;
215}
216DM_TEST(dm_test_i2c_offset, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);