test.h 2.2 KB

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