blob: 296589c28261f3f0153db37896704c94f7406e70 [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 */
Simon Glass9569c402015-03-05 12:25:26 -070013#define SANDBOX_I2C_TEST_ADDR 0x59
14
15#define SANDBOX_PCI_VENDOR_ID 0x1234
16#define SANDBOX_PCI_DEVICE_ID 0x5678
17#define SANDBOX_PCI_CLASS_CODE PCI_CLASS_CODE_COMM
18#define SANDBOX_PCI_CLASS_SUB_CODE PCI_CLASS_SUB_CODE_COMM_SERIAL
Simon Glass6ec1b752014-12-10 08:55:51 -070019
20enum sandbox_i2c_eeprom_test_mode {
21 SIE_TEST_MODE_NONE,
22 /* Permits read/write of only one byte per I2C transaction */
23 SIE_TEST_MODE_SINGLE_BYTE,
24};
25
26void sandbox_i2c_eeprom_set_test_mode(struct udevice *dev,
27 enum sandbox_i2c_eeprom_test_mode mode);
28
29void sandbox_i2c_eeprom_set_offset_len(struct udevice *dev, int offset_len);
30
Joe Hershberger909bd6d2015-04-21 13:57:18 -050031/*
32 * sandbox_timer_add_offset()
33 *
34 * Allow tests to add to the time reported through lib/time.c functions
35 * offset: number of milliseconds to advance the system time
36 */
37void sandbox_timer_add_offset(unsigned long offset);
38
Simon Glass6ec1b752014-12-10 08:55:51 -070039#endif