led.h 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. /*
  2. * Copyright (c) 2018 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public LED driver APIs
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_LED_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_LED_H_
  12. /**
  13. * @brief LED Interface
  14. * @defgroup led_interface LED Interface
  15. * @ingroup io_interfaces
  16. * @{
  17. */
  18. #include <zephyr/types.h>
  19. #include <device.h>
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /**
  24. * @brief LED information structure
  25. *
  26. * This structure gathers useful information about LED controller.
  27. *
  28. * @param label LED label.
  29. * @param num_colors Number of colors per LED.
  30. * @param index Index of the LED on the controller.
  31. * @param color_mapping Mapping of the LED colors.
  32. */
  33. struct led_info {
  34. const char *label;
  35. uint32_t index;
  36. uint8_t num_colors;
  37. const uint8_t *color_mapping;
  38. };
  39. /**
  40. * @typedef led_api_blink()
  41. * @brief Callback API for blinking an LED
  42. *
  43. * @see led_blink() for argument descriptions.
  44. */
  45. typedef int (*led_api_blink)(const struct device *dev, uint32_t led,
  46. uint32_t delay_on, uint32_t delay_off);
  47. /**
  48. * @typedef led_api_get_info()
  49. * @brief Optional API callback to get LED information
  50. *
  51. * @see led_get_info() for argument descriptions.
  52. */
  53. typedef int (*led_api_get_info)(const struct device *dev, uint32_t led,
  54. const struct led_info **info);
  55. /**
  56. * @typedef led_api_set_brightness()
  57. * @brief Callback API for setting brightness of an LED
  58. *
  59. * @see led_set_brightness() for argument descriptions.
  60. */
  61. typedef int (*led_api_set_brightness)(const struct device *dev, uint32_t led,
  62. uint8_t value);
  63. /**
  64. * @typedef led_api_set_color()
  65. * @brief Optional API callback to set the colors of a LED.
  66. *
  67. * @see led_set_color() for argument descriptions.
  68. */
  69. typedef int (*led_api_set_color)(const struct device *dev, uint32_t led,
  70. uint8_t num_colors, const uint8_t *color);
  71. /**
  72. * @typedef led_api_on()
  73. * @brief Callback API for turning on an LED
  74. *
  75. * @see led_on() for argument descriptions.
  76. */
  77. typedef int (*led_api_on)(const struct device *dev, uint32_t led);
  78. /**
  79. * @typedef led_api_off()
  80. * @brief Callback API for turning off an LED
  81. *
  82. * @see led_off() for argument descriptions.
  83. */
  84. typedef int (*led_api_off)(const struct device *dev, uint32_t led);
  85. /**
  86. * @typedef led_api_write_channels()
  87. * @brief Callback API for writing a strip of LED channels
  88. *
  89. * @see led_api_write_channels() for arguments descriptions.
  90. */
  91. typedef int (*led_api_write_channels)(const struct device *dev,
  92. uint32_t start_channel,
  93. uint32_t num_channels,
  94. const uint8_t *buf);
  95. /**
  96. * @brief LED driver API
  97. */
  98. __subsystem struct led_driver_api {
  99. /* Mandatory callbacks. */
  100. led_api_on on;
  101. led_api_off off;
  102. /* Optional callbacks. */
  103. led_api_blink blink;
  104. led_api_get_info get_info;
  105. led_api_set_brightness set_brightness;
  106. led_api_set_color set_color;
  107. led_api_write_channels write_channels;
  108. };
  109. /**
  110. * @brief Blink an LED
  111. *
  112. * This optional routine starts blinking a LED forever with the given time
  113. * period.
  114. *
  115. * @param dev LED device
  116. * @param led LED number
  117. * @param delay_on Time period (in milliseconds) an LED should be ON
  118. * @param delay_off Time period (in milliseconds) an LED should be OFF
  119. * @return 0 on success, negative on error
  120. */
  121. __syscall int led_blink(const struct device *dev, uint32_t led,
  122. uint32_t delay_on, uint32_t delay_off);
  123. static inline int z_impl_led_blink(const struct device *dev, uint32_t led,
  124. uint32_t delay_on, uint32_t delay_off)
  125. {
  126. const struct led_driver_api *api =
  127. (const struct led_driver_api *)dev->api;
  128. if (api->blink == NULL) {
  129. return -ENOSYS;
  130. }
  131. return api->blink(dev, led, delay_on, delay_off);
  132. }
  133. /**
  134. * @brief Get LED information
  135. *
  136. * This optional routine provides information about a LED.
  137. *
  138. * @param dev LED device
  139. * @param led LED number
  140. * @param info Pointer to a pointer filled with LED information
  141. * @return 0 on success, negative on error
  142. */
  143. __syscall int led_get_info(const struct device *dev, uint32_t led,
  144. const struct led_info **info);
  145. static inline int z_impl_led_get_info(const struct device *dev, uint32_t led,
  146. const struct led_info **info)
  147. {
  148. const struct led_driver_api *api =
  149. (const struct led_driver_api *)dev->api;
  150. if (api->get_info == NULL) {
  151. *info = NULL;
  152. return -ENOSYS;
  153. }
  154. return api->get_info(dev, led, info);
  155. }
  156. /**
  157. * @brief Set LED brightness
  158. *
  159. * This optional routine sets the brightness of a LED to the given value.
  160. * Calling this function after led_blink() won't affect blinking.
  161. *
  162. * LEDs which can only be turned on or off may provide this function.
  163. * These should simply turn the LED on if @p value is nonzero, and off
  164. * if @p value is zero.
  165. *
  166. * @param dev LED device
  167. * @param led LED number
  168. * @param value Brightness value to set in percent
  169. * @return 0 on success, negative on error
  170. */
  171. __syscall int led_set_brightness(const struct device *dev, uint32_t led,
  172. uint8_t value);
  173. static inline int z_impl_led_set_brightness(const struct device *dev,
  174. uint32_t led,
  175. uint8_t value)
  176. {
  177. const struct led_driver_api *api =
  178. (const struct led_driver_api *)dev->api;
  179. if (api->set_brightness == NULL) {
  180. return -ENOSYS;
  181. }
  182. return api->set_brightness(dev, led, value);
  183. }
  184. /**
  185. * @brief Write/update a strip of LED channels
  186. *
  187. * This optional routine writes a strip of LED channels to the given array of
  188. * levels. Therefore it can be used to configure several LEDs at the same time.
  189. *
  190. * Calling this function after led_blink() won't affect blinking.
  191. *
  192. * @param dev LED device
  193. * @param start_channel Absolute number (i.e. not relative to a LED) of the
  194. * first channel to update.
  195. * @param num_channels The number of channels to write/update.
  196. * @param buf array of values to configure the channels with. num_channels
  197. * entries must be provided.
  198. * @return 0 on success, negative on error
  199. */
  200. __syscall int led_write_channels(const struct device *dev,
  201. uint32_t start_channel,
  202. uint32_t num_channels, const uint8_t *buf);
  203. static inline int
  204. z_impl_led_write_channels(const struct device *dev, uint32_t start_channel,
  205. uint32_t num_channels, const uint8_t *buf)
  206. {
  207. const struct led_driver_api *api =
  208. (const struct led_driver_api *)dev->api;
  209. if (api->write_channels == NULL) {
  210. return -ENOSYS;
  211. }
  212. return api->write_channels(dev, start_channel, num_channels, buf);
  213. }
  214. /**
  215. * @brief Set a single LED channel
  216. *
  217. * This optional routine sets a single LED channel to the given value.
  218. *
  219. * Calling this function after led_blink() won't affect blinking.
  220. *
  221. * @param dev LED device
  222. * @param channel Absolute channel number (i.e. not relative to a LED)
  223. * @param value Value to configure the channel with
  224. * @return 0 on success, negative on error
  225. */
  226. __syscall int led_set_channel(const struct device *dev,
  227. uint32_t channel, uint8_t value);
  228. static inline int z_impl_led_set_channel(const struct device *dev,
  229. uint32_t channel, uint8_t value)
  230. {
  231. return z_impl_led_write_channels(dev, channel, 1, &value);
  232. }
  233. /**
  234. * @brief Set LED color
  235. *
  236. * This routine configures all the color channels of a LED with the given
  237. * color array.
  238. *
  239. * Calling this function after led_blink() won't affect blinking.
  240. *
  241. * @param dev LED device
  242. * @param led LED number
  243. * @param num_colors Number of colors in the array.
  244. * @param color Array of colors. It must be ordered following the color
  245. * mapping of the LED controller. See the the color_mapping member
  246. * in struct led_info.
  247. * @return 0 on success, negative on error
  248. */
  249. __syscall int led_set_color(const struct device *dev, uint32_t led,
  250. uint8_t num_colors, const uint8_t *color);
  251. static inline int z_impl_led_set_color(const struct device *dev, uint32_t led,
  252. uint8_t num_colors, const uint8_t *color)
  253. {
  254. const struct led_driver_api *api =
  255. (const struct led_driver_api *)dev->api;
  256. if (api->set_color == NULL) {
  257. return -ENOSYS;
  258. }
  259. return api->set_color(dev, led, num_colors, color);
  260. }
  261. /**
  262. * @brief Turn on an LED
  263. *
  264. * This routine turns on an LED
  265. *
  266. * @param dev LED device
  267. * @param led LED number
  268. * @return 0 on success, negative on error
  269. */
  270. __syscall int led_on(const struct device *dev, uint32_t led);
  271. static inline int z_impl_led_on(const struct device *dev, uint32_t led)
  272. {
  273. const struct led_driver_api *api =
  274. (const struct led_driver_api *)dev->api;
  275. return api->on(dev, led);
  276. }
  277. /**
  278. * @brief Turn off an LED
  279. *
  280. * This routine turns off an LED
  281. *
  282. * @param dev LED device
  283. * @param led LED number
  284. * @return 0 on success, negative on error
  285. */
  286. __syscall int led_off(const struct device *dev, uint32_t led);
  287. static inline int z_impl_led_off(const struct device *dev, uint32_t led)
  288. {
  289. const struct led_driver_api *api =
  290. (const struct led_driver_api *)dev->api;
  291. return api->off(dev, led);
  292. }
  293. /**
  294. * @}
  295. */
  296. #ifdef __cplusplus
  297. }
  298. #endif
  299. #include <syscalls/led.h>
  300. #endif /* ZEPHYR_INCLUDE_DRIVERS_LED_H_ */