eeprom.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /**
  2. * @file
  3. *
  4. * @brief Public APIs for the I2C EEPROM Slave driver.
  5. */
  6. /*
  7. * Copyright (c) 2017 BayLibre, SAS
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_I2C_SLAVE_EEPROM_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_I2C_SLAVE_EEPROM_H_
  13. /**
  14. * @brief I2C EEPROM Slave Driver API
  15. * @defgroup i2c_eeprom_slave_api I2C EEPROM Slave Driver API
  16. * @ingroup io_interfaces
  17. * @{
  18. */
  19. /**
  20. * @brief Program memory of the virtual EEPROM
  21. *
  22. * @param dev Pointer to the device structure for the driver instance.
  23. * @param eeprom_data Pointer of data to program into the virtual eeprom memory
  24. * @param length Length of data to program into the virtual eeprom memory
  25. *
  26. * @retval 0 If successful.
  27. * @retval -EINVAL Invalid data size
  28. */
  29. int eeprom_slave_program(const struct device *dev, const uint8_t *eeprom_data,
  30. unsigned int length);
  31. /**
  32. * @brief Read single byte of virtual EEPROM memory
  33. *
  34. * @param dev Pointer to the device structure for the driver instance.
  35. * @param eeprom_data Pointer of byte where to store the virtual eeprom memory
  36. * @param offset Offset into EEPROM memory where to read the byte
  37. *
  38. * @retval 0 If successful.
  39. * @retval -EINVAL Invalid data pointer or offset
  40. */
  41. int eeprom_slave_read(const struct device *dev, uint8_t *eeprom_data,
  42. unsigned int offset);
  43. /**
  44. * @}
  45. */
  46. #endif /* ZEPHYR_INCLUDE_DRIVERS_I2C_SLAVE_EEPROM_H_ */