hwinfo.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /**
  2. * @file
  3. *
  4. * @brief Public APIs to get device Information.
  5. */
  6. /*
  7. * Copyright (c) 2018 Alexander Wachter
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_HWINFO_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_HWINFO_H_
  13. /**
  14. * @brief Hardware Information Interface
  15. * @defgroup hwinfo_interface Hardware Info Interface
  16. * @ingroup io_interfaces
  17. * @{
  18. */
  19. #include <zephyr/types.h>
  20. #include <sys/types.h>
  21. #include <stddef.h>
  22. #include <errno.h>
  23. #include <kernel.h>
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. #define RESET_PIN BIT(0)
  28. #define RESET_SOFTWARE BIT(1)
  29. #define RESET_BROWNOUT BIT(2)
  30. #define RESET_POR BIT(3)
  31. #define RESET_WATCHDOG BIT(4)
  32. #define RESET_DEBUG BIT(5)
  33. #define RESET_SECURITY BIT(6)
  34. #define RESET_LOW_POWER_WAKE BIT(7)
  35. #define RESET_CPU_LOCKUP BIT(8)
  36. #define RESET_PARITY BIT(9)
  37. #define RESET_PLL BIT(10)
  38. #define RESET_CLOCK BIT(11)
  39. /**
  40. * @brief Copy the device id to a buffer
  41. *
  42. * This routine copies "length" number of bytes of the device ID to the buffer.
  43. * If the device ID is smaller then length, the rest of the buffer is left unchanged.
  44. * The ID depends on the hardware and is not guaranteed unique.
  45. *
  46. * Drivers are responsible for ensuring that the ID data structure is a
  47. * sequence of bytes. The returned ID value is not supposed to be interpreted
  48. * based on vendor-specific assumptions of byte order. It should express the
  49. * identifier as a raw byte sequence, doing any endian conversion necessary so
  50. * that a hex representation of the bytes produces the intended serial number.
  51. *
  52. * @param buffer Buffer to write the ID to.
  53. * @param length Max length of the buffer.
  54. *
  55. * @retval size of the device ID copied.
  56. * @retval -ENOTSUP if there is no implementation for the particular device.
  57. * @retval any negative value on driver specific errors.
  58. */
  59. __syscall ssize_t hwinfo_get_device_id(uint8_t *buffer, size_t length);
  60. ssize_t z_impl_hwinfo_get_device_id(uint8_t *buffer, size_t length);
  61. /**
  62. * @brief Retrieve cause of device reset.
  63. *
  64. * @param cause OR'd `reset_cause` flags
  65. *
  66. * This routine retrieves the flags that indicate why the device was reset.
  67. *
  68. * On some platforms the reset cause flags accumulate between successive resets
  69. * and this routine may return multiple flags indicating all reset causes
  70. * since the device was powered on. If you need to retrieve the cause only for
  71. * the most recent reset call `hwinfo_clear_reset_cause` after calling this
  72. * routine to clear the hardware flags before the next reset event.
  73. *
  74. * Successive calls to this routine will return the same value, unless
  75. * `hwinfo_clear_reset_cause` has been called.
  76. *
  77. * @retval zero if successful.
  78. * @retval -ENOTSUP if there is no implementation for the particular device.
  79. * @retval any negative value on driver specific errors.
  80. */
  81. __syscall int hwinfo_get_reset_cause(uint32_t *cause);
  82. int z_impl_hwinfo_get_reset_cause(uint32_t *cause);
  83. /**
  84. * @brief Clear cause of device reset.
  85. *
  86. * Clears reset cause flags.
  87. *
  88. * @retval zero if successful.
  89. * @retval -ENOTSUP if there is no implementation for the particular device.
  90. * @retval any negative value on driver specific errors.
  91. */
  92. __syscall int hwinfo_clear_reset_cause(void);
  93. int z_impl_hwinfo_clear_reset_cause(void);
  94. /**
  95. * @brief Get supported reset cause flags
  96. *
  97. * @param supported OR'd `reset_cause` flags that are supported
  98. *
  99. * Retrieves all `reset_cause` flags that are supported by this device.
  100. *
  101. * @retval zero if successful.
  102. * @retval -ENOTSUP if there is no implementation for the particular device.
  103. * @retval any negative value on driver specific errors.
  104. */
  105. __syscall int hwinfo_get_supported_reset_cause(uint32_t *supported);
  106. int z_impl_hwinfo_get_supported_reset_cause(uint32_t *supported);
  107. /**
  108. * @}
  109. */
  110. #ifdef __cplusplus
  111. }
  112. #endif
  113. #include <syscalls/hwinfo.h>
  114. #endif /* ZEPHYR_INCLUDE_DRIVERS_HWINFO_H_ */