test.h 2.3 KB

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