eeprom.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * Copyright (c) 2019 Vestas Wind Systems A/S
  3. *
  4. * Heavily based on drivers/flash.h which is:
  5. * Copyright (c) 2017 Nordic Semiconductor ASA
  6. * Copyright (c) 2016 Intel Corporation
  7. *
  8. * SPDX-License-Identifier: Apache-2.0
  9. */
  10. /**
  11. * @file
  12. * @brief Public API for EEPROM drivers
  13. */
  14. #ifndef ZEPHYR_INCLUDE_DRIVERS_EEPROM_H_
  15. #define ZEPHYR_INCLUDE_DRIVERS_EEPROM_H_
  16. /**
  17. * @brief EEPROM Interface
  18. * @defgroup eeprom_interface EEPROM Interface
  19. * @ingroup io_interfaces
  20. * @{
  21. */
  22. #include <zephyr/types.h>
  23. #include <stddef.h>
  24. #include <sys/types.h>
  25. #include <device.h>
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. typedef int (*eeprom_api_read)(const struct device *dev, off_t offset,
  30. void *data,
  31. size_t len);
  32. typedef int (*eeprom_api_write)(const struct device *dev, off_t offset,
  33. const void *data, size_t len);
  34. typedef size_t (*eeprom_api_size)(const struct device *dev);
  35. __subsystem struct eeprom_driver_api {
  36. eeprom_api_read read;
  37. eeprom_api_write write;
  38. eeprom_api_size size;
  39. };
  40. /**
  41. * @brief Read data from EEPROM
  42. *
  43. * @param dev EEPROM device
  44. * @param offset Address offset to read from.
  45. * @param data Buffer to store read data.
  46. * @param len Number of bytes to read.
  47. *
  48. * @return 0 on success, negative errno code on failure.
  49. */
  50. __syscall int eeprom_read(const struct device *dev, off_t offset, void *data,
  51. size_t len);
  52. static inline int z_impl_eeprom_read(const struct device *dev, off_t offset,
  53. void *data, size_t len)
  54. {
  55. const struct eeprom_driver_api *api =
  56. (const struct eeprom_driver_api *)dev->api;
  57. return api->read(dev, offset, data, len);
  58. }
  59. /**
  60. * @brief Write data to EEPROM
  61. *
  62. * @param dev EEPROM device
  63. * @param offset Address offset to write data to.
  64. * @param data Buffer with data to write.
  65. * @param len Number of bytes to write.
  66. *
  67. * @return 0 on success, negative errno code on failure.
  68. */
  69. __syscall int eeprom_write(const struct device *dev, off_t offset,
  70. const void *data,
  71. size_t len);
  72. static inline int z_impl_eeprom_write(const struct device *dev, off_t offset,
  73. const void *data, size_t len)
  74. {
  75. const struct eeprom_driver_api *api =
  76. (const struct eeprom_driver_api *)dev->api;
  77. return api->write(dev, offset, data, len);
  78. }
  79. /**
  80. * @brief Get the size of the EEPROM in bytes
  81. *
  82. * @param dev EEPROM device.
  83. *
  84. * @return EEPROM size in bytes.
  85. */
  86. __syscall size_t eeprom_get_size(const struct device *dev);
  87. static inline size_t z_impl_eeprom_get_size(const struct device *dev)
  88. {
  89. const struct eeprom_driver_api *api =
  90. (const struct eeprom_driver_api *)dev->api;
  91. return api->size(dev);
  92. }
  93. #ifdef __cplusplus
  94. }
  95. #endif
  96. /**
  97. * @}
  98. */
  99. #include <syscalls/eeprom.h>
  100. #endif /* ZEPHYR_INCLUDE_DRIVERS_EEPROM_H_ */