blob: 568738c16d51f7ed0bcca3fbb6266ab56e0ee8f3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass6ec1b752014-12-10 08:55:51 -07002/*
3 * Test-related constants for sandbox
4 *
5 * Copyright (c) 2014 Google, Inc
Simon Glass6ec1b752014-12-10 08:55:51 -07006 */
7
8#ifndef __ASM_TEST_H
9#define __ASM_TEST_H
10
Simon Glass8657ad42021-11-19 13:23:50 -070011#include <video.h>
Pali Rohárf02b3962022-02-18 13:16:18 +010012#include <pci_ids.h>
Simon Glass8657ad42021-11-19 13:23:50 -070013
Simon Glass756c0142022-09-06 20:27:10 -060014struct unit_test_state;
15
Simon Glass6ec1b752014-12-10 08:55:51 -070016/* The sandbox driver always permits an I2C device with this address */
Simon Glass9569c402015-03-05 12:25:26 -070017#define SANDBOX_I2C_TEST_ADDR 0x59
18
19#define SANDBOX_PCI_VENDOR_ID 0x1234
Simon Glass34145812019-09-25 08:56:01 -060020#define SANDBOX_PCI_SWAP_CASE_EMUL_ID 0x5678
Simon Glass3b65ee32019-12-06 21:41:54 -070021#define SANDBOX_PCI_PMC_EMUL_ID 0x5677
Simon Glass3e17ffb2019-12-06 21:41:57 -070022#define SANDBOX_PCI_P2SB_EMUL_ID 0x5676
Pali Rohárf02b3962022-02-18 13:16:18 +010023#define SANDBOX_PCI_CLASS_CODE (PCI_CLASS_COMMUNICATION_SERIAL >> 8)
24#define SANDBOX_PCI_CLASS_SUB_CODE (PCI_CLASS_COMMUNICATION_SERIAL & 0xff)
Simon Glass6ec1b752014-12-10 08:55:51 -070025
Bin Meng95e11062018-08-03 01:14:53 -070026#define PCI_CAP_ID_PM_OFFSET 0x50
27#define PCI_CAP_ID_EXP_OFFSET 0x60
28#define PCI_CAP_ID_MSIX_OFFSET 0x70
Alex Marginean21ebbaf2019-06-07 11:24:24 +030029#define PCI_CAP_ID_EA_OFFSET 0x80
Bin Meng95e11062018-08-03 01:14:53 -070030
31#define PCI_EXT_CAP_ID_ERR_OFFSET 0x100
32#define PCI_EXT_CAP_ID_VC_OFFSET 0x200
33#define PCI_EXT_CAP_ID_DSN_OFFSET 0x300
34
Bin Meng59a160e2018-08-03 01:14:46 -070035/* Useful for PCI_VDEVICE() macro */
36#define PCI_VENDOR_ID_SANDBOX SANDBOX_PCI_VENDOR_ID
37#define SWAP_CASE_DRV_DATA 0x55aa
38
Simon Glass6a1c7ce2015-07-06 12:54:24 -060039#define SANDBOX_CLK_RATE 32768
40
Alex Marginean21ebbaf2019-06-07 11:24:24 +030041/* Macros used to test PCI EA capability structure */
42#define PCI_CAP_EA_BASE_LO0 0x00100000
43#define PCI_CAP_EA_BASE_LO1 0x00110000
44#define PCI_CAP_EA_BASE_LO2 0x00120000
45#define PCI_CAP_EA_BASE_LO4 0x00140000
46#define PCI_CAP_EA_BASE_HI2 0x00020000ULL
47#define PCI_CAP_EA_BASE_HI4 0x00040000ULL
48#define PCI_CAP_EA_SIZE_LO 0x0000ffff
49#define PCI_CAP_EA_SIZE_HI 0x00000010ULL
50#define PCI_EA_BAR2_MAGIC 0x72727272
51#define PCI_EA_BAR4_MAGIC 0x74747474
52
Simon Glassba876072020-02-06 09:54:57 -070053enum {
54 SANDBOX_IRQN_PEND = 1, /* Interrupt number for 'pending' test */
55};
56
Simon Glass04035fd2015-07-06 12:54:35 -060057/* System controller driver data */
58enum {
59 SYSCON0 = 32,
60 SYSCON1,
61
62 SYSCON_COUNT
63};
64
Simon Glass182bf922015-04-20 12:37:15 -060065/**
Simon Glassd8e9a932021-01-16 14:52:22 -070066 */
67enum cros_ec_test_t {
68 CROSECT_BREAK_HELLO = BIT(1),
Simon Glass3a6c9942021-01-16 14:52:28 -070069 CROSECT_LID_OPEN = BIT(2),
Simon Glassd8e9a932021-01-16 14:52:22 -070070};
71
72/**
Simon Glass182bf922015-04-20 12:37:15 -060073 * sandbox_i2c_set_test_mode() - set test mode for running unit tests
74 *
75 * See sandbox_i2c_xfer() for the behaviour changes.
76 *
77 * @bus: sandbox I2C bus to adjust
78 * @test_mode: true to select test mode, false to run normally
79 */
80void sandbox_i2c_set_test_mode(struct udevice *bus, bool test_mode);
81
Simon Glass6ec1b752014-12-10 08:55:51 -070082enum sandbox_i2c_eeprom_test_mode {
83 SIE_TEST_MODE_NONE,
84 /* Permits read/write of only one byte per I2C transaction */
85 SIE_TEST_MODE_SINGLE_BYTE,
86};
87
88void sandbox_i2c_eeprom_set_test_mode(struct udevice *dev,
89 enum sandbox_i2c_eeprom_test_mode mode);
90
91void sandbox_i2c_eeprom_set_offset_len(struct udevice *dev, int offset_len);
92
Robert Beckett951674a2019-10-28 17:44:59 +000093void sandbox_i2c_eeprom_set_chip_addr_offset_mask(struct udevice *dev,
94 uint mask);
95
Robert Beckett22e93512019-10-28 17:44:58 +000096uint sanbox_i2c_eeprom_get_prev_addr(struct udevice *dev);
97
98uint sanbox_i2c_eeprom_get_prev_offset(struct udevice *dev);
99
Simon Glassdd18e5d2015-04-20 12:37:24 -0600100/**
101 * sandbox_i2c_rtc_set_offset() - set the time offset from system/base time
102 *
103 * @dev: RTC device to adjust
104 * @use_system_time: true to use system time, false to use @base_time
105 * @offset: RTC offset from current system/base time (-1 for no
106 * change)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100107 * Return: old value of RTC offset
Simon Glassdd18e5d2015-04-20 12:37:24 -0600108 */
109long sandbox_i2c_rtc_set_offset(struct udevice *dev, bool use_system_time,
110 int offset);
111
112/**
113 * sandbox_i2c_rtc_get_set_base_time() - get and set the base time
114 *
115 * @dev: RTC device to adjust
116 * @base_time: New base system time (set to -1 for no change)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100117 * Return: old base time
Simon Glassdd18e5d2015-04-20 12:37:24 -0600118 */
119long sandbox_i2c_rtc_get_set_base_time(struct udevice *dev, long base_time);
120
Simon Glassd8a26f02015-11-08 23:48:06 -0700121int sandbox_usb_keyb_add_string(struct udevice *dev, const char *str);
122
Mario Six4eea5312018-09-27 09:19:31 +0200123/**
124 * sandbox_osd_get_mem() - get the internal memory of a sandbox OSD
125 *
126 * @dev: OSD device for which to access the internal memory for
127 * @buf: pointer to buffer to receive the OSD memory data
128 * @buflen: length of buffer in bytes
129 */
130int sandbox_osd_get_mem(struct udevice *dev, u8 *buf, size_t buflen);
Simon Glass5d9a88f2018-10-01 12:22:40 -0600131
132/**
133 * sandbox_pwm_get_config() - get the PWM config for a channel
134 *
135 * @dev: Device to check
136 * @channel: Channel number to check
137 * @period_ns: Period of the PWM in nanoseconds
138 * @duty_ns: Current duty cycle of the PWM in nanoseconds
139 * @enable: true if the PWM is enabled
140 * @polarity: true if the PWM polarity is active high
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100141 * Return: 0 if OK, -ENOSPC if the PWM number is invalid
Simon Glass5d9a88f2018-10-01 12:22:40 -0600142 */
143int sandbox_pwm_get_config(struct udevice *dev, uint channel, uint *period_nsp,
144 uint *duty_nsp, bool *enablep, bool *polarityp);
145
Simon Glassa58986c2018-11-06 15:21:41 -0700146/**
147 * sandbox_sf_set_block_protect() - Set the BP bits of the status register
148 *
149 * @dev: Device to update
150 * @bp_mask: BP bits to set (bits 2:0, so a value of 0 to 7)
151 */
152void sandbox_sf_set_block_protect(struct udevice *dev, int bp_mask);
153
Simon Glassce6d99a2018-12-10 10:37:33 -0700154/**
155 * sandbox_get_codec_params() - Read back codec parameters
156 *
157 * This reads back the parameters set by audio_codec_set_params() for the
158 * sandbox audio driver. Arguments are as for that function.
159 */
160void sandbox_get_codec_params(struct udevice *dev, int *interfacep, int *ratep,
161 int *mclk_freqp, int *bits_per_samplep,
162 uint *channelsp);
163
Simon Glasse96fa6c2018-12-10 10:37:34 -0700164/**
165 * sandbox_get_i2s_sum() - Read back the sum of the audio data so far
166 *
167 * This data is provided to the sandbox driver by the I2S tx_data() method.
168 *
169 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100170 * Return: sum of audio data
Simon Glasse96fa6c2018-12-10 10:37:34 -0700171 */
172int sandbox_get_i2s_sum(struct udevice *dev);
173
Simon Glassd4901892018-12-10 10:37:36 -0700174/**
175 * sandbox_get_setup_called() - Returns the number of times setup(*) was called
176 *
177 * This is used in the sound test
178 *
179 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100180 * Return: call count for the setup() method
Simon Glassd4901892018-12-10 10:37:36 -0700181 */
182int sandbox_get_setup_called(struct udevice *dev);
183
184/**
Simon Glass3062cd12020-02-03 07:36:06 -0700185 * sandbox_get_sound_active() - Returns whether sound play is in progress
186 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100187 * Return: true if active, false if not
Simon Glass3062cd12020-02-03 07:36:06 -0700188 */
189int sandbox_get_sound_active(struct udevice *dev);
190
191/**
Heinrich Schuchardt968eaae2022-12-04 17:11:41 +0100192 * sandbox_get_sound_count() - Read back the count of the sound data so far
193 *
194 * This data is provided to the sandbox driver by the sound play() method.
195 *
196 * @dev: Device to check
197 * Return: count of audio data
198 */
199int sandbox_get_sound_count(struct udevice *dev);
200
201/**
Simon Glassd4901892018-12-10 10:37:36 -0700202 * sandbox_get_sound_sum() - Read back the sum of the sound data so far
203 *
204 * This data is provided to the sandbox driver by the sound play() method.
205 *
206 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100207 * Return: sum of audio data
Simon Glassd4901892018-12-10 10:37:36 -0700208 */
209int sandbox_get_sound_sum(struct udevice *dev);
210
Simon Glassb45c8332019-02-16 20:24:50 -0700211/**
Simon Glass28502662019-02-16 20:24:54 -0700212 * sandbox_set_allow_beep() - Set whether the 'beep' interface is supported
213 *
214 * @dev: Device to update
215 * @allow: true to allow the start_beep() method, false to disallow it
216 */
217void sandbox_set_allow_beep(struct udevice *dev, bool allow);
218
219/**
220 * sandbox_get_beep_frequency() - Get the frequency of the current beep
221 *
222 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100223 * Return: frequency of beep, if there is an active beep, else 0
Simon Glass28502662019-02-16 20:24:54 -0700224 */
225int sandbox_get_beep_frequency(struct udevice *dev);
226
227/**
Ovidiu Panaitadd685f2020-12-14 19:06:49 +0200228 * sandbox_spi_get_speed() - Get current speed setting of a sandbox spi bus
229 *
230 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100231 * Return: current bus speed
Ovidiu Panaitadd685f2020-12-14 19:06:49 +0200232 */
233uint sandbox_spi_get_speed(struct udevice *dev);
234
235/**
236 * sandbox_spi_get_mode() - Get current mode setting of a sandbox spi bus
237 *
238 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100239 * Return: current mode
Ovidiu Panaitadd685f2020-12-14 19:06:49 +0200240 */
241uint sandbox_spi_get_mode(struct udevice *dev);
242
243/**
Simon Glassb45c8332019-02-16 20:24:50 -0700244 * sandbox_get_pch_spi_protect() - Get the PCI SPI protection status
245 *
246 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100247 * Return: 0 if not protected, 1 if protected
Simon Glassb45c8332019-02-16 20:24:50 -0700248 */
249int sandbox_get_pch_spi_protect(struct udevice *dev);
250
Ramon Friedf2a55ac2019-04-27 11:15:24 +0300251/**
252 * sandbox_get_pci_ep_irq_count() - Get the PCI EP IRQ count
253 *
254 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100255 * Return: irq count
Ramon Friedf2a55ac2019-04-27 11:15:24 +0300256 */
257int sandbox_get_pci_ep_irq_count(struct udevice *dev);
258
Simon Glass75d8f492019-09-25 08:56:42 -0600259/**
260 * sandbox_pci_read_bar() - Read the BAR value for a read_config operation
261 *
262 * This is used in PCI emulators to read a base address reset. This has special
263 * rules because when the register is set to 0xffffffff it can be used to
264 * discover the type and size of the BAR.
265 *
266 * @barval: Current value of the BAR
267 * @type: Type of BAR (PCI_BASE_ADDRESS_SPACE_IO or
268 * PCI_BASE_ADDRESS_MEM_TYPE_32)
269 * @size: Size of BAR in bytes
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100270 * Return: BAR value to return from emulator
Simon Glass75d8f492019-09-25 08:56:42 -0600271 */
272uint sandbox_pci_read_bar(u32 barval, int type, uint size);
273
Simon Glass619025b2019-10-11 16:16:48 -0600274/**
275 * sandbox_set_enable_memio() - Enable readl/writel() for sandbox
276 *
277 * Normally these I/O functions do nothing with sandbox. Certain tests need them
278 * to work as for other architectures, so this function can be used to enable
279 * them.
280 *
281 * @enable: true to enable, false to disable
282 */
283void sandbox_set_enable_memio(bool enable);
284
Simon Glassd8e9a932021-01-16 14:52:22 -0700285/**
286 * sandbox_cros_ec_set_test_flags() - Set behaviour for testing purposes
287 *
288 * @dev: Device to check
289 * @flags: Flags to control behaviour (CROSECT_...)
290 */
291void sandbox_cros_ec_set_test_flags(struct udevice *dev, uint flags);
292
Alper Nebi Yasake7122452021-05-19 19:33:31 +0300293/**
294 * sandbox_cros_ec_get_pwm_duty() - Get EC PWM config for testing purposes
295 *
296 * @dev: Device to check
297 * @index: PWM channel index
298 * @duty: Current duty cycle in 0..EC_PWM_MAX_DUTY range.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100299 * Return: 0 if OK, -ENOSPC if the PWM number is invalid
Alper Nebi Yasake7122452021-05-19 19:33:31 +0300300 */
301int sandbox_cros_ec_get_pwm_duty(struct udevice *dev, uint index, uint *duty);
302
Simon Glass8657ad42021-11-19 13:23:50 -0700303/**
304 * sandbox_sdl_set_bpp() - Set the depth of the sandbox display
305 *
306 * The device must not be active when this function is called. It activiates it
307 * before returning.
308 *
309 * This updates the depth value and adjusts a few other settings accordingly.
310 * It must be called before the display is probed.
311 *
312 * @dev: Device to adjust
313 * @l2bpp: depth to set
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100314 * Return: 0 if the device was already active, other error if it fails to probe
Simon Glass8657ad42021-11-19 13:23:50 -0700315 * after the change
316 */
317int sandbox_sdl_set_bpp(struct udevice *dev, enum video_log2_bpp l2bpp);
318
Simon Glass2662b542022-07-30 15:52:22 -0600319/**
320 * sandbox_set_fake_efi_mgr_dev() - Control EFI bootmgr producing valid bootflow
321 *
322 * This is only used for testing.
323 *
324 * @dev: efi_mgr bootmeth device
325 * @fake_dev: true to produce a valid bootflow when requested, false to produce
326 * an error
327 */
328void sandbox_set_fake_efi_mgr_dev(struct udevice *dev, bool fake_dev);
329
Simon Glass756c0142022-09-06 20:27:10 -0600330/**
331 * sandbox_load_other_fdt() - load the 'other' FDT into the test state
332 *
333 * This copies the other.dtb file into the test state, so that a fresh version
334 * can be used for a test that is about to run.
335 *
336 * If @uts->other_fdt is NULL, as it is when first set up, this allocates a
337 * buffer for the other FDT and sets @uts->other_fdt_size to its size.
338 *
339 * In any case, the other FDT is copied from the sandbox state into
340 * @uts->other_fdt ready for use.
341 *
342 * @uts: Unit test state
343 * @return 0 if OK, -ve on error
344 */
345int sandbox_load_other_fdt(void **fdtp, int *sizep);
346
Simon Glass6ec1b752014-12-10 08:55:51 -0700347#endif