57aeca840236f194d03c2116e46d51d307ddc6f1
[oweals/u-boot.git] / arch / sandbox / include / asm / test.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Test-related constants for sandbox
4  *
5  * Copyright (c) 2014 Google, Inc
6  */
7
8 #ifndef __ASM_TEST_H
9 #define __ASM_TEST_H
10
11 /* The sandbox driver always permits an I2C device with this address */
12 #define SANDBOX_I2C_TEST_ADDR           0x59
13
14 #define SANDBOX_PCI_VENDOR_ID           0x1234
15 #define SANDBOX_PCI_DEVICE_ID           0x5678
16 #define SANDBOX_PCI_CLASS_CODE          PCI_CLASS_CODE_COMM
17 #define SANDBOX_PCI_CLASS_SUB_CODE      PCI_CLASS_SUB_CODE_COMM_SERIAL
18
19 /* Useful for PCI_VDEVICE() macro */
20 #define PCI_VENDOR_ID_SANDBOX           SANDBOX_PCI_VENDOR_ID
21 #define SWAP_CASE_DRV_DATA              0x55aa
22
23 #define SANDBOX_CLK_RATE                32768
24
25 /* System controller driver data */
26 enum {
27         SYSCON0         = 32,
28         SYSCON1,
29
30         SYSCON_COUNT
31 };
32
33 /**
34  * sandbox_i2c_set_test_mode() - set test mode for running unit tests
35  *
36  * See sandbox_i2c_xfer() for the behaviour changes.
37  *
38  * @bus:        sandbox I2C bus to adjust
39  * @test_mode:  true to select test mode, false to run normally
40  */
41 void sandbox_i2c_set_test_mode(struct udevice *bus, bool test_mode);
42
43 enum sandbox_i2c_eeprom_test_mode {
44         SIE_TEST_MODE_NONE,
45         /* Permits read/write of only one byte per I2C transaction */
46         SIE_TEST_MODE_SINGLE_BYTE,
47 };
48
49 void sandbox_i2c_eeprom_set_test_mode(struct udevice *dev,
50                                       enum sandbox_i2c_eeprom_test_mode mode);
51
52 void sandbox_i2c_eeprom_set_offset_len(struct udevice *dev, int offset_len);
53
54 /*
55  * sandbox_timer_add_offset()
56  *
57  * Allow tests to add to the time reported through lib/time.c functions
58  * offset: number of milliseconds to advance the system time
59  */
60 void sandbox_timer_add_offset(unsigned long offset);
61
62 /**
63  * sandbox_i2c_rtc_set_offset() - set the time offset from system/base time
64  *
65  * @dev:                RTC device to adjust
66  * @use_system_time:    true to use system time, false to use @base_time
67  * @offset:             RTC offset from current system/base time (-1 for no
68  *                      change)
69  * @return old value of RTC offset
70  */
71 long sandbox_i2c_rtc_set_offset(struct udevice *dev, bool use_system_time,
72                                 int offset);
73
74 /**
75  * sandbox_i2c_rtc_get_set_base_time() - get and set the base time
76  *
77  * @dev:                RTC device to adjust
78  * @base_time:          New base system time (set to -1 for no change)
79  * @return old base time
80  */
81 long sandbox_i2c_rtc_get_set_base_time(struct udevice *dev, long base_time);
82
83 int sandbox_usb_keyb_add_string(struct udevice *dev, const char *str);
84
85 #endif