blob: 25a0c85971493bc65dfd3041736f336a0f931d04 [file] [log] [blame]
Simon Glass6ec1b752014-12-10 08:55:51 -07001/*
2 * Test-related constants for sandbox
3 *
4 * Copyright (c) 2014 Google, Inc
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#ifndef __ASM_TEST_H
10#define __ASM_TEST_H
11
12/* The sandbox driver always permits an I2C device with this address */
13#define SANDBOX_I2C_TEST_ADDR 0x59
14
15enum sandbox_i2c_eeprom_test_mode {
16 SIE_TEST_MODE_NONE,
17 /* Permits read/write of only one byte per I2C transaction */
18 SIE_TEST_MODE_SINGLE_BYTE,
19};
20
21void sandbox_i2c_eeprom_set_test_mode(struct udevice *dev,
22 enum sandbox_i2c_eeprom_test_mode mode);
23
24void sandbox_i2c_eeprom_set_offset_len(struct udevice *dev, int offset_len);
25
26#endif