test.h 818 B

12345678910111213141516171819202122232425262728293031
  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. enum sandbox_i2c_eeprom_test_mode {
  17. SIE_TEST_MODE_NONE,
  18. /* Permits read/write of only one byte per I2C transaction */
  19. SIE_TEST_MODE_SINGLE_BYTE,
  20. };
  21. void sandbox_i2c_eeprom_set_test_mode(struct udevice *dev,
  22. enum sandbox_i2c_eeprom_test_mode mode);
  23. void sandbox_i2c_eeprom_set_offset_len(struct udevice *dev, int offset_len);
  24. #endif