uart.h 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298
  1. /*
  2. * Copyright (c) 2018-2019 Nordic Semiconductor ASA
  3. * Copyright (c) 2015 Wind River Systems, Inc.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /**
  8. * @file
  9. * @brief Public APIs for UART drivers
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_UART_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_UART_H_
  13. /**
  14. * @brief UART Interface
  15. * @defgroup uart_interface UART Interface
  16. * @ingroup io_interfaces
  17. * @{
  18. */
  19. #include <errno.h>
  20. #include <stddef.h>
  21. #include <device.h>
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /** @brief Line control signals. */
  26. enum uart_line_ctrl {
  27. UART_LINE_CTRL_BAUD_RATE = BIT(0),
  28. UART_LINE_CTRL_RTS = BIT(1),
  29. UART_LINE_CTRL_DTR = BIT(2),
  30. UART_LINE_CTRL_DCD = BIT(3),
  31. UART_LINE_CTRL_DSR = BIT(4),
  32. };
  33. /**
  34. * @brief Types of events passed to callback in UART_ASYNC_API
  35. *
  36. * Receiving:
  37. * 1. To start receiving, uart_rx_enable has to be called with first buffer
  38. * 2. When receiving starts to current buffer,
  39. * @ref uart_event_type::UART_RX_BUF_REQUEST will be generated, in response
  40. * to that user can either:
  41. *
  42. * - Provide second buffer using uart_rx_buf_rsp, when first buffer is
  43. * filled, receiving will automatically start to second buffer.
  44. * - Ignore the event, this way when current buffer is filled
  45. * @ref uart_event_type::UART_RX_RDY event will be generated and
  46. * receiving will be stopped.
  47. *
  48. * 3. If some data was received and timeout occurred
  49. * @ref uart_event_type::UART_RX_RDY event will be generated. It can happen
  50. * multiples times for the same buffer. RX timeout is counted from last byte
  51. * received i.e. if no data was received, there won't be any timeout event.
  52. * 4. After buffer is filled @ref uart_event_type::UART_RX_RDY will be
  53. * generated, immediately followed by
  54. * @ref uart_event_type::UART_RX_BUF_RELEASED indicating that current buffer
  55. * is no longer used.
  56. * 5. If there was second buffer provided, it will become current buffer and
  57. * we start again at point 2.
  58. * If no second buffer was specified receiving is stopped and
  59. * @ref uart_event_type::UART_RX_DISABLED event is generated. After that
  60. * whole process can be repeated.
  61. *
  62. * Any time during reception @ref uart_event_type::UART_RX_STOPPED event can
  63. * occur. if there is any data received, @ref uart_event_type::UART_RX_RDY
  64. * event will be generated. It will be followed by
  65. * @ref uart_event_type::UART_RX_BUF_RELEASED event for every buffer currently
  66. * passed to driver and finally by @ref uart_event_type::UART_RX_DISABLED event.
  67. *
  68. * Receiving can be disabled using uart_rx_disable, after calling that
  69. * function, if there is any data received,
  70. * @ref uart_event_type::UART_RX_RDY event will be generated.
  71. * @ref uart_event_type::UART_RX_BUF_RELEASED event will be generated for every
  72. * buffer currently passed to driver and finally
  73. * @ref uart_event_type::UART_RX_DISABLED event will occur.
  74. *
  75. * Transmitting:
  76. * 1. Transmitting starts by uart_tx function.
  77. * 2. If whole buffer was transmitted @ref uart_event_type::UART_TX_DONE is
  78. * generated. If timeout occurred @ref uart_event_type::UART_TX_ABORTED will
  79. * be generated.
  80. *
  81. * Transmitting can be aborted using @ref uart_tx_abort, after calling that
  82. * function @ref uart_event_type::UART_TX_ABORTED event will be generated.
  83. *
  84. */
  85. enum uart_event_type {
  86. /** @brief Whole TX buffer was transmitted. */
  87. UART_TX_DONE,
  88. /**
  89. * @brief Transmitting aborted due to timeout or uart_tx_abort call
  90. *
  91. * When flow control is enabled, there is a possibility that TX transfer
  92. * won't finish in the allotted time. Some data may have been
  93. * transferred, information about it can be found in event data.
  94. */
  95. UART_TX_ABORTED,
  96. /**
  97. * @brief Received data is ready for processing.
  98. *
  99. * This event is generated in the following cases:
  100. * - When RX timeout occurred, and data was stored in provided buffer.
  101. * This can happen multiple times in the same buffer.
  102. * - When provided buffer is full.
  103. * - After uart_rx_disable().
  104. * - After stopping due to external event
  105. * (@ref uart_event_type::UART_RX_STOPPED).
  106. */
  107. UART_RX_RDY,
  108. /**
  109. * @brief Driver requests next buffer for continuous reception.
  110. *
  111. * This event is triggered when receiving has started for a new buffer,
  112. * i.e. it's time to provide a next buffer for a seamless switchover to
  113. * it. For continuous reliable receiving, user should provide another RX
  114. * buffer in response to this event, using uart_rx_buf_rsp function
  115. *
  116. * If uart_rx_buf_rsp is not called before current buffer
  117. * is filled up, receiving will stop.
  118. */
  119. UART_RX_BUF_REQUEST,
  120. /**
  121. * @brief Buffer is no longer used by UART driver.
  122. */
  123. UART_RX_BUF_RELEASED,
  124. /**
  125. * @brief RX has been disabled and can be reenabled.
  126. *
  127. * This event is generated whenever receiver has been stopped, disabled
  128. * or finished its operation and can be enabled again using
  129. * uart_rx_enable
  130. */
  131. UART_RX_DISABLED,
  132. /**
  133. * @brief RX has stopped due to external event.
  134. *
  135. * Reason is one of uart_rx_stop_reason.
  136. */
  137. UART_RX_STOPPED,
  138. };
  139. /**
  140. * @brief Reception stop reasons.
  141. *
  142. * Values that correspond to events or errors responsible for stopping
  143. * receiving.
  144. */
  145. enum uart_rx_stop_reason {
  146. /** @brief Overrun error */
  147. UART_ERROR_OVERRUN = (1 << 0),
  148. /** @brief Parity error */
  149. UART_ERROR_PARITY = (1 << 1),
  150. /** @brief Framing error */
  151. UART_ERROR_FRAMING = (1 << 2),
  152. /**
  153. * @brief Break interrupt
  154. *
  155. * A break interrupt was received. This happens when the serial input
  156. * is held at a logic '0' state for longer than the sum of
  157. * start time + data bits + parity + stop bits.
  158. */
  159. UART_BREAK = (1 << 3),
  160. /**
  161. * @brief Collision error
  162. *
  163. * This error is raised when transmitted data does not match
  164. * received data. Typically this is useful in scenarios where
  165. * the TX and RX lines maybe connected together such as
  166. * RS-485 half-duplex. This error is only valid on UARTs that
  167. * support collision checking.
  168. */
  169. UART_ERROR_COLLISION = (1 << 4),
  170. };
  171. /** @brief UART TX event data. */
  172. struct uart_event_tx {
  173. /** @brief Pointer to current buffer. */
  174. const uint8_t *buf;
  175. /** @brief Number of bytes sent. */
  176. size_t len;
  177. };
  178. /**
  179. * @brief UART RX event data.
  180. *
  181. * The data represented by the event is stored in rx.buf[rx.offset] to
  182. * rx.buf[rx.offset+rx.len]. That is, the length is relative to the offset.
  183. */
  184. struct uart_event_rx {
  185. /** @brief Pointer to current buffer. */
  186. uint8_t *buf;
  187. /** @brief Currently received data offset in bytes. */
  188. size_t offset;
  189. /** @brief Number of new bytes received. */
  190. size_t len;
  191. };
  192. /** @brief UART RX buffer released event data. */
  193. struct uart_event_rx_buf {
  194. /* @brief Pointer to buffer that is no longer in use. */
  195. uint8_t *buf;
  196. };
  197. /** @brief UART RX stopped data. */
  198. struct uart_event_rx_stop {
  199. /** @brief Reason why receiving stopped */
  200. enum uart_rx_stop_reason reason;
  201. /** @brief Last received data. */
  202. struct uart_event_rx data;
  203. };
  204. /** @brief Structure containing information about current event. */
  205. struct uart_event {
  206. /** @brief Type of event */
  207. enum uart_event_type type;
  208. /** @brief Event data */
  209. union uart_event_data {
  210. /** @brief @ref uart_event_type::UART_TX_DONE and
  211. * @ref uart_event_type::UART_TX_ABORTED events data.
  212. */
  213. struct uart_event_tx tx;
  214. /** @brief @ref uart_event_type::UART_RX_RDY event data. */
  215. struct uart_event_rx rx;
  216. /** @brief @ref uart_event_type::UART_RX_BUF_RELEASED event
  217. * data.
  218. */
  219. struct uart_event_rx_buf rx_buf;
  220. /** @brief @ref uart_event_type::UART_RX_STOPPED event data. */
  221. struct uart_event_rx_stop rx_stop;
  222. } data;
  223. };
  224. /**
  225. * @typedef uart_callback_t
  226. * @brief Define the application callback function signature for
  227. * uart_callback_set() function.
  228. *
  229. * @param dev UART device structure.
  230. * @param evt Pointer to uart_event structure.
  231. * @param user_data Pointer to data specified by user.
  232. */
  233. typedef void (*uart_callback_t)(const struct device *dev,
  234. struct uart_event *evt, void *user_data);
  235. /**
  236. * @brief UART controller configuration structure
  237. *
  238. * @param baudrate Baudrate setting in bps
  239. * @param parity Parity bit, use @ref uart_config_parity
  240. * @param stop_bits Stop bits, use @ref uart_config_stop_bits
  241. * @param data_bits Data bits, use @ref uart_config_data_bits
  242. * @param flow_ctrl Flow control setting, use @ref uart_config_flow_control
  243. */
  244. struct uart_config {
  245. uint32_t baudrate;
  246. uint8_t parity;
  247. uint8_t stop_bits;
  248. uint8_t data_bits;
  249. uint8_t flow_ctrl;
  250. };
  251. /** @brief Parity modes */
  252. enum uart_config_parity {
  253. UART_CFG_PARITY_NONE,
  254. UART_CFG_PARITY_ODD,
  255. UART_CFG_PARITY_EVEN,
  256. UART_CFG_PARITY_MARK,
  257. UART_CFG_PARITY_SPACE,
  258. };
  259. /** @brief Number of stop bits. */
  260. enum uart_config_stop_bits {
  261. UART_CFG_STOP_BITS_0_5,
  262. UART_CFG_STOP_BITS_1,
  263. UART_CFG_STOP_BITS_1_5,
  264. UART_CFG_STOP_BITS_2,
  265. };
  266. /** @brief Number of data bits. */
  267. enum uart_config_data_bits {
  268. UART_CFG_DATA_BITS_5,
  269. UART_CFG_DATA_BITS_6,
  270. UART_CFG_DATA_BITS_7,
  271. UART_CFG_DATA_BITS_8,
  272. UART_CFG_DATA_BITS_9,
  273. };
  274. /**
  275. * @brief Hardware flow control options.
  276. *
  277. * With flow control set to none, any operations related to flow control
  278. * signals can be managed by user with uart_line_ctrl functions.
  279. * In other cases, flow control is managed by hardware/driver.
  280. */
  281. enum uart_config_flow_control {
  282. UART_CFG_FLOW_CTRL_NONE,
  283. UART_CFG_FLOW_CTRL_RTS_CTS,
  284. UART_CFG_FLOW_CTRL_DTR_DSR,
  285. };
  286. /**
  287. * @typedef uart_irq_callback_user_data_t
  288. * @brief Define the application callback function signature for
  289. * uart_irq_callback_user_data_set() function.
  290. *
  291. * @param dev UART device structure.
  292. * @param user_data Arbitrary user data.
  293. */
  294. typedef void (*uart_irq_callback_user_data_t)(const struct device *dev,
  295. void *user_data);
  296. /**
  297. * @typedef uart_irq_config_func_t
  298. * @brief For configuring IRQ on each individual UART device.
  299. *
  300. * @param dev UART device structure.
  301. *
  302. * @internal
  303. */
  304. typedef void (*uart_irq_config_func_t)(const struct device *dev);
  305. /**
  306. * @brief UART device configuration.
  307. *
  308. * @param port Base port number
  309. * @param base Memory mapped base address
  310. * @param regs Register address
  311. * @param sys_clk_freq System clock frequency in Hz
  312. */
  313. struct uart_device_config {
  314. union {
  315. uint32_t port;
  316. uint8_t *base;
  317. uint32_t regs;
  318. };
  319. uint32_t sys_clk_freq;
  320. #if defined(CONFIG_UART_INTERRUPT_DRIVEN) || defined(CONFIG_UART_ASYNC_API)
  321. uart_irq_config_func_t irq_config_func;
  322. #endif
  323. };
  324. /** @brief Driver API structure. */
  325. __subsystem struct uart_driver_api {
  326. #ifdef CONFIG_UART_ASYNC_API
  327. int (*callback_set)(const struct device *dev,
  328. uart_callback_t callback,
  329. void *user_data);
  330. int (*tx)(const struct device *dev, const uint8_t *buf, size_t len,
  331. int32_t timeout);
  332. int (*tx_abort)(const struct device *dev);
  333. int (*rx_enable)(const struct device *dev, uint8_t *buf, size_t len,
  334. int32_t timeout);
  335. int (*rx_buf_rsp)(const struct device *dev, uint8_t *buf, size_t len);
  336. int (*rx_disable)(const struct device *dev);
  337. #endif
  338. /** Console I/O function */
  339. int (*poll_in)(const struct device *dev, unsigned char *p_char);
  340. void (*poll_out)(const struct device *dev, unsigned char out_char);
  341. /** Console I/O function */
  342. int (*err_check)(const struct device *dev);
  343. /** UART configuration functions */
  344. int (*configure)(const struct device *dev,
  345. const struct uart_config *cfg);
  346. int (*config_get)(const struct device *dev, struct uart_config *cfg);
  347. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  348. /** Interrupt driven FIFO fill function */
  349. int (*fifo_fill)(const struct device *dev, const uint8_t *tx_data,
  350. int len);
  351. /** Interrupt driven FIFO read function */
  352. int (*fifo_read)(const struct device *dev, uint8_t *rx_data,
  353. const int size);
  354. /** Interrupt driven transfer enabling function */
  355. void (*irq_tx_enable)(const struct device *dev);
  356. /** Interrupt driven transfer disabling function */
  357. void (*irq_tx_disable)(const struct device *dev);
  358. /** Interrupt driven transfer ready function */
  359. int (*irq_tx_ready)(const struct device *dev);
  360. /** Interrupt driven receiver enabling function */
  361. void (*irq_rx_enable)(const struct device *dev);
  362. /** Interrupt driven receiver disabling function */
  363. void (*irq_rx_disable)(const struct device *dev);
  364. /** Interrupt driven transfer complete function */
  365. int (*irq_tx_complete)(const struct device *dev);
  366. /** Interrupt driven receiver ready function */
  367. int (*irq_rx_ready)(const struct device *dev);
  368. /** Interrupt driven error enabling function */
  369. void (*irq_err_enable)(const struct device *dev);
  370. /** Interrupt driven error disabling function */
  371. void (*irq_err_disable)(const struct device *dev);
  372. /** Interrupt driven pending status function */
  373. int (*irq_is_pending)(const struct device *dev);
  374. /** Interrupt driven interrupt update function */
  375. int (*irq_update)(const struct device *dev);
  376. /** Set the irq callback function */
  377. void (*irq_callback_set)(const struct device *dev,
  378. uart_irq_callback_user_data_t cb,
  379. void *user_data);
  380. #endif
  381. #ifdef CONFIG_UART_LINE_CTRL
  382. int (*line_ctrl_set)(const struct device *dev, uint32_t ctrl,
  383. uint32_t val);
  384. int (*line_ctrl_get)(const struct device *dev, uint32_t ctrl,
  385. uint32_t *val);
  386. #endif
  387. #ifdef CONFIG_UART_DRV_CMD
  388. int (*drv_cmd)(const struct device *dev, uint32_t cmd, uint32_t p);
  389. #endif
  390. };
  391. /**
  392. * @brief Set event handler function.
  393. *
  394. * Since it is mandatory to set callback to use other asynchronous functions,
  395. * it can be used to detect if the device supports asynchronous API. Remaining
  396. * API does not have that detection.
  397. *
  398. * @param dev UART device structure.
  399. * @param callback Event handler.
  400. * @param user_data Data to pass to event handler function.
  401. *
  402. * @retval -ENOSYS If not supported by the device.
  403. * @retval -ENOTSUP If API not enabled.
  404. * @retval 0 If successful, negative errno code otherwise.
  405. */
  406. static inline int uart_callback_set(const struct device *dev,
  407. uart_callback_t callback,
  408. void *user_data)
  409. {
  410. #ifdef CONFIG_UART_ASYNC_API
  411. const struct uart_driver_api *api =
  412. (const struct uart_driver_api *)dev->api;
  413. if (api->callback_set == NULL) {
  414. return -ENOSYS;
  415. }
  416. return api->callback_set(dev, callback, user_data);
  417. #else
  418. return -ENOTSUP;
  419. #endif
  420. }
  421. /**
  422. * @brief Send given number of bytes from buffer through UART.
  423. *
  424. * Function returns immediately and event handler,
  425. * set using @ref uart_callback_set, is called after transfer is finished.
  426. *
  427. * @param dev UART device structure.
  428. * @param buf Pointer to transmit buffer.
  429. * @param len Length of transmit buffer.
  430. * @param timeout Timeout in milliseconds. Valid only if flow control is
  431. * enabled. @ref SYS_FOREVER_MS disables timeout.
  432. *
  433. * @retval -ENOTSUP If not supported.
  434. * @retval -EBUSY There is already an ongoing transfer.
  435. * @retval 0 If successful, negative errno code otherwise.
  436. */
  437. __syscall int uart_tx(const struct device *dev, const uint8_t *buf,
  438. size_t len,
  439. int32_t timeout);
  440. static inline int z_impl_uart_tx(const struct device *dev, const uint8_t *buf,
  441. size_t len, int32_t timeout)
  442. {
  443. #ifdef CONFIG_UART_ASYNC_API
  444. const struct uart_driver_api *api =
  445. (const struct uart_driver_api *)dev->api;
  446. return api->tx(dev, buf, len, timeout);
  447. #else
  448. return -ENOTSUP;
  449. #endif
  450. }
  451. /**
  452. * @brief Abort current TX transmission.
  453. *
  454. * @ref uart_event_type::UART_TX_DONE event will be generated with amount of
  455. * data sent.
  456. *
  457. * @param dev UART device structure.
  458. *
  459. * @retval -ENOTSUP If not supported.
  460. * @retval -EFAULT There is no active transmission.
  461. * @retval 0 If successful, negative errno code otherwise.
  462. */
  463. __syscall int uart_tx_abort(const struct device *dev);
  464. static inline int z_impl_uart_tx_abort(const struct device *dev)
  465. {
  466. #ifdef CONFIG_UART_ASYNC_API
  467. const struct uart_driver_api *api =
  468. (const struct uart_driver_api *)dev->api;
  469. return api->tx_abort(dev);
  470. #else
  471. return -ENOTSUP;
  472. #endif
  473. }
  474. /**
  475. * @brief Start receiving data through UART.
  476. *
  477. * Function sets given buffer as first buffer for receiving and returns
  478. * immediately. After that event handler, set using @ref uart_callback_set,
  479. * is called with @ref uart_event_type::UART_RX_RDY or
  480. * @ref uart_event_type::UART_RX_BUF_REQUEST events.
  481. *
  482. * @param dev UART device structure.
  483. * @param buf Pointer to receive buffer.
  484. * @param len Buffer length.
  485. * @param timeout Inactivity period after receiving at least a byte which
  486. * triggers @ref uart_event_type::UART_RX_RDY event. Given in
  487. * milliseconds. @ref SYS_FOREVER_MS disables timeout. See
  488. * @ref uart_event_type for details.
  489. *
  490. * @retval -ENOTSUP If not supported.
  491. * @retval -EBUSY RX already in progress.
  492. * @retval 0 If successful, negative errno code otherwise.
  493. *
  494. */
  495. __syscall int uart_rx_enable(const struct device *dev, uint8_t *buf,
  496. size_t len,
  497. int32_t timeout);
  498. static inline int z_impl_uart_rx_enable(const struct device *dev,
  499. uint8_t *buf,
  500. size_t len, int32_t timeout)
  501. {
  502. #ifdef CONFIG_UART_ASYNC_API
  503. const struct uart_driver_api *api =
  504. (const struct uart_driver_api *)dev->api;
  505. return api->rx_enable(dev, buf, len, timeout);
  506. #else
  507. return -ENOTSUP;
  508. #endif
  509. }
  510. /**
  511. * @brief Provide receive buffer in response to
  512. * @ref uart_event_type::UART_RX_BUF_REQUEST event.
  513. *
  514. * Provide pointer to RX buffer, which will be used when current buffer is
  515. * filled.
  516. *
  517. * @note Providing buffer that is already in usage by driver leads to
  518. * undefined behavior. Buffer can be reused when it has been released
  519. * by driver.
  520. *
  521. * @param dev UART device structure.
  522. * @param buf Pointer to receive buffer.
  523. * @param len Buffer length.
  524. *
  525. * @retval -ENOTSUP If not supported.
  526. * @retval -EBUSY Next buffer already set.
  527. * @retval -EACCES Receiver is already disabled (function called too late?).
  528. * @retval 0 If successful, negative errno code otherwise.
  529. *
  530. */
  531. static inline int uart_rx_buf_rsp(const struct device *dev, uint8_t *buf,
  532. size_t len)
  533. {
  534. #ifdef CONFIG_UART_ASYNC_API
  535. const struct uart_driver_api *api =
  536. (const struct uart_driver_api *)dev->api;
  537. return api->rx_buf_rsp(dev, buf, len);
  538. #else
  539. return -ENOTSUP;
  540. #endif
  541. }
  542. /**
  543. * @brief Disable RX
  544. *
  545. * @ref uart_event_type::UART_RX_BUF_RELEASED event will be generated for every
  546. * buffer scheduled, after that @ref uart_event_type::UART_RX_DISABLED event
  547. * will be generated. Additionally, if there is any pending received data, the
  548. * @ref uart_event_type::UART_RX_RDY event for that data will be generated
  549. * before the @ref uart_event_type::UART_RX_BUF_RELEASED events.
  550. *
  551. * @param dev UART device structure.
  552. *
  553. * @retval -ENOTSUP If not supported.
  554. * @retval -EFAULT There is no active reception.
  555. * @retval 0 If successful, negative errno code otherwise.
  556. */
  557. __syscall int uart_rx_disable(const struct device *dev);
  558. static inline int z_impl_uart_rx_disable(const struct device *dev)
  559. {
  560. #ifdef CONFIG_UART_ASYNC_API
  561. const struct uart_driver_api *api =
  562. (const struct uart_driver_api *)dev->api;
  563. return api->rx_disable(dev);
  564. #else
  565. return -ENOTSUP;
  566. #endif
  567. }
  568. /**
  569. * @brief Check whether an error was detected.
  570. *
  571. * @param dev UART device structure.
  572. *
  573. * @retval uart_rx_stop_reason If error during receiving occurred.
  574. * @retval 0 Otherwise.
  575. * @retval -ENOSYS If this function is not supported.
  576. */
  577. __syscall int uart_err_check(const struct device *dev);
  578. static inline int z_impl_uart_err_check(const struct device *dev)
  579. {
  580. const struct uart_driver_api *api =
  581. (const struct uart_driver_api *)dev->api;
  582. if (api->err_check == NULL) {
  583. return -ENOSYS;
  584. }
  585. return api->err_check(dev);
  586. }
  587. /**
  588. * @brief Poll the device for input.
  589. *
  590. * @param dev UART device structure.
  591. * @param p_char Pointer to character.
  592. *
  593. * @retval 0 If a character arrived.
  594. * @retval -1 If no character was available to read (i.e., the UART
  595. * input buffer was empty).
  596. * @retval -ENOSYS If the operation is not supported.
  597. * @retval -EBUSY If reception was enabled using uart_rx_enabled
  598. */
  599. __syscall int uart_poll_in(const struct device *dev, unsigned char *p_char);
  600. static inline int z_impl_uart_poll_in(const struct device *dev,
  601. unsigned char *p_char)
  602. {
  603. const struct uart_driver_api *api =
  604. (const struct uart_driver_api *)dev->api;
  605. if (api->poll_in == NULL) {
  606. return -ENOSYS;
  607. }
  608. return api->poll_in(dev, p_char);
  609. }
  610. /**
  611. * @brief Output a character in polled mode.
  612. *
  613. * This routine checks if the transmitter is empty.
  614. * When the transmitter is empty, it writes a character to the data
  615. * register.
  616. *
  617. * To send a character when hardware flow control is enabled, the handshake
  618. * signal CTS must be asserted.
  619. *
  620. * @param dev UART device structure.
  621. * @param out_char Character to send.
  622. */
  623. __syscall void uart_poll_out(const struct device *dev,
  624. unsigned char out_char);
  625. static inline void z_impl_uart_poll_out(const struct device *dev,
  626. unsigned char out_char)
  627. {
  628. const struct uart_driver_api *api =
  629. (const struct uart_driver_api *)dev->api;
  630. api->poll_out(dev, out_char);
  631. }
  632. /**
  633. * @brief Set UART configuration.
  634. *
  635. * Sets UART configuration using data from *cfg.
  636. *
  637. * @param dev UART device structure.
  638. * @param cfg UART configuration structure.
  639. *
  640. *
  641. * @retval -ENOSYS If configuration is not supported by device.
  642. * or driver does not support setting configuration in runtime.
  643. * @retval 0 If successful, negative errno code otherwise.
  644. */
  645. __syscall int uart_configure(const struct device *dev,
  646. const struct uart_config *cfg);
  647. static inline int z_impl_uart_configure(const struct device *dev,
  648. const struct uart_config *cfg)
  649. {
  650. const struct uart_driver_api *api =
  651. (const struct uart_driver_api *)dev->api;
  652. if (api->configure == NULL) {
  653. return -ENOSYS;
  654. }
  655. return api->configure(dev, cfg);
  656. }
  657. /**
  658. * @brief Get UART configuration.
  659. *
  660. * Stores current UART configuration to *cfg, can be used to retrieve initial
  661. * configuration after device was initialized using data from DTS.
  662. *
  663. * @param dev UART device structure.
  664. * @param cfg UART configuration structure.
  665. *
  666. * @retval -ENOSYS If driver does not support getting current configuration.
  667. * @retval 0 If successful, negative errno code otherwise.
  668. */
  669. __syscall int uart_config_get(const struct device *dev,
  670. struct uart_config *cfg);
  671. static inline int z_impl_uart_config_get(const struct device *dev,
  672. struct uart_config *cfg)
  673. {
  674. const struct uart_driver_api *api =
  675. (const struct uart_driver_api *)dev->api;
  676. if (api->config_get == NULL) {
  677. return -ENOSYS;
  678. }
  679. return api->config_get(dev, cfg);
  680. }
  681. /**
  682. * @brief Fill FIFO with data.
  683. *
  684. * @details This function is expected to be called from UART
  685. * interrupt handler (ISR), if uart_irq_tx_ready() returns true.
  686. * Result of calling this function not from an ISR is undefined
  687. * (hardware-dependent). Likewise, *not* calling this function
  688. * from an ISR if uart_irq_tx_ready() returns true may lead to
  689. * undefined behavior, e.g. infinite interrupt loops. It's
  690. * mandatory to test return value of this function, as different
  691. * hardware has different FIFO depth (oftentimes just 1).
  692. *
  693. * @param dev UART device structure.
  694. * @param tx_data Data to transmit.
  695. * @param size Number of bytes to send.
  696. *
  697. * @return Number of bytes sent.
  698. * @retval -ENOSYS if this function is not supported
  699. * @retval -ENOTSUP if API is not enabled.
  700. */
  701. static inline int uart_fifo_fill(const struct device *dev,
  702. const uint8_t *tx_data,
  703. int size)
  704. {
  705. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  706. const struct uart_driver_api *api =
  707. (const struct uart_driver_api *)dev->api;
  708. if (api->fifo_fill == NULL) {
  709. return -ENOSYS;
  710. }
  711. return api->fifo_fill(dev, tx_data, size);
  712. #endif
  713. return -ENOTSUP;
  714. }
  715. /**
  716. * @brief Read data from FIFO.
  717. *
  718. * @details This function is expected to be called from UART
  719. * interrupt handler (ISR), if uart_irq_rx_ready() returns true.
  720. * Result of calling this function not from an ISR is undefined
  721. * (hardware-dependent). It's unspecified whether "RX ready"
  722. * condition as returned by uart_irq_rx_ready() is level- or
  723. * edge- triggered. That means that once uart_irq_rx_ready() is
  724. * detected, uart_fifo_read() must be called until it reads all
  725. * available data in the FIFO (i.e. until it returns less data
  726. * than was requested).
  727. *
  728. * Note that the calling context only applies to physical UARTs and
  729. * no to the virtual ones found in USB CDC ACM code.
  730. *
  731. * @param dev UART device structure.
  732. * @param rx_data Data container.
  733. * @param size Container size.
  734. *
  735. * @return Number of bytes read.
  736. * @retval -ENOSYS if this function is not supported.
  737. * @retval -ENOTSUP if API is not enabled.
  738. */
  739. static inline int uart_fifo_read(const struct device *dev, uint8_t *rx_data,
  740. const int size)
  741. {
  742. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  743. const struct uart_driver_api *api =
  744. (const struct uart_driver_api *)dev->api;
  745. if (api->fifo_read == NULL) {
  746. return -ENOSYS;
  747. }
  748. return api->fifo_read(dev, rx_data, size);
  749. #endif
  750. return -ENOTSUP;
  751. }
  752. /**
  753. * @brief Enable TX interrupt in IER.
  754. *
  755. * @param dev UART device structure.
  756. *
  757. * @return N/A
  758. */
  759. __syscall void uart_irq_tx_enable(const struct device *dev);
  760. static inline void z_impl_uart_irq_tx_enable(const struct device *dev)
  761. {
  762. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  763. const struct uart_driver_api *api =
  764. (const struct uart_driver_api *)dev->api;
  765. if (api->irq_tx_enable != NULL) {
  766. api->irq_tx_enable(dev);
  767. }
  768. #endif
  769. }
  770. /**
  771. * @brief Disable TX interrupt in IER.
  772. *
  773. * @param dev UART device structure.
  774. *
  775. * @return N/A
  776. */
  777. __syscall void uart_irq_tx_disable(const struct device *dev);
  778. static inline void z_impl_uart_irq_tx_disable(const struct device *dev)
  779. {
  780. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  781. const struct uart_driver_api *api =
  782. (const struct uart_driver_api *)dev->api;
  783. if (api->irq_tx_disable != NULL) {
  784. api->irq_tx_disable(dev);
  785. }
  786. #endif
  787. }
  788. /**
  789. * @brief Check if UART TX buffer can accept a new char
  790. *
  791. * @details Check if UART TX buffer can accept at least one character
  792. * for transmission (i.e. uart_fifo_fill() will succeed and return
  793. * non-zero). This function must be called in a UART interrupt
  794. * handler, or its result is undefined. Before calling this function
  795. * in the interrupt handler, uart_irq_update() must be called once per
  796. * the handler invocation.
  797. *
  798. * @param dev UART device structure.
  799. *
  800. * @retval 1 If at least one char can be written to UART.
  801. * @retval 0 If device is not ready to write a new byte.
  802. * @retval -ENOSYS if this function is not supported.
  803. * @retval -ENOTSUP if API is not enabled.
  804. */
  805. static inline int uart_irq_tx_ready(const struct device *dev)
  806. {
  807. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  808. const struct uart_driver_api *api =
  809. (const struct uart_driver_api *)dev->api;
  810. if (api->irq_tx_ready == NULL) {
  811. return -ENOSYS;
  812. }
  813. return api->irq_tx_ready(dev);
  814. #endif
  815. return -ENOTSUP;
  816. }
  817. /**
  818. * @brief Enable RX interrupt.
  819. *
  820. * @param dev UART device structure.
  821. *
  822. * @return N/A
  823. */
  824. __syscall void uart_irq_rx_enable(const struct device *dev);
  825. static inline void z_impl_uart_irq_rx_enable(const struct device *dev)
  826. {
  827. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  828. const struct uart_driver_api *api =
  829. (const struct uart_driver_api *)dev->api;
  830. if (api->irq_rx_enable != NULL) {
  831. api->irq_rx_enable(dev);
  832. }
  833. #endif
  834. }
  835. /**
  836. * @brief Disable RX interrupt.
  837. *
  838. * @param dev UART device structure.
  839. *
  840. * @return N/A
  841. */
  842. __syscall void uart_irq_rx_disable(const struct device *dev);
  843. static inline void z_impl_uart_irq_rx_disable(const struct device *dev)
  844. {
  845. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  846. const struct uart_driver_api *api =
  847. (const struct uart_driver_api *)dev->api;
  848. if (api->irq_rx_disable != NULL) {
  849. api->irq_rx_disable(dev);
  850. }
  851. #endif
  852. }
  853. /**
  854. * @brief Check if UART TX block finished transmission
  855. *
  856. * @details Check if any outgoing data buffered in UART TX block was
  857. * fully transmitted and TX block is idle. When this condition is
  858. * true, UART device (or whole system) can be power off. Note that
  859. * this function is *not* useful to check if UART TX can accept more
  860. * data, use uart_irq_tx_ready() for that. This function must be called
  861. * in a UART interrupt handler, or its result is undefined. Before
  862. * calling this function in the interrupt handler, uart_irq_update()
  863. * must be called once per the handler invocation.
  864. *
  865. * @param dev UART device structure.
  866. *
  867. * @retval 1 If nothing remains to be transmitted.
  868. * @retval 0 If transmission is not completed.
  869. * @retval -ENOSYS if this function is not supported.
  870. * @retval -ENOTSUP if API is not enabled.
  871. */
  872. static inline int uart_irq_tx_complete(const struct device *dev)
  873. {
  874. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  875. const struct uart_driver_api *api =
  876. (const struct uart_driver_api *)dev->api;
  877. if (api->irq_tx_complete == NULL) {
  878. return -ENOSYS;
  879. }
  880. return api->irq_tx_complete(dev);
  881. #endif
  882. return -ENOTSUP;
  883. }
  884. /**
  885. * @brief Check if UART RX buffer has a received char
  886. *
  887. * @details Check if UART RX buffer has at least one pending character
  888. * (i.e. uart_fifo_read() will succeed and return non-zero). This function
  889. * must be called in a UART interrupt handler, or its result is undefined.
  890. * Before calling this function in the interrupt handler, uart_irq_update()
  891. * must be called once per the handler invocation. It's unspecified whether
  892. * condition as returned by this function is level- or edge- triggered (i.e.
  893. * if this function returns true when RX FIFO is non-empty, or when a new
  894. * char was received since last call to it). See description of
  895. * uart_fifo_read() for implication of this.
  896. *
  897. * @param dev UART device structure.
  898. *
  899. * @retval 1 If a received char is ready.
  900. * @retval 0 If a received char is not ready.
  901. * @retval -ENOSYS if this function is not supported.
  902. * @retval -ENOTSUP if API is not enabled.
  903. */
  904. static inline int uart_irq_rx_ready(const struct device *dev)
  905. {
  906. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  907. const struct uart_driver_api *api =
  908. (const struct uart_driver_api *)dev->api;
  909. if (api->irq_rx_ready == NULL) {
  910. return -ENOSYS;
  911. }
  912. return api->irq_rx_ready(dev);
  913. #endif
  914. return -ENOTSUP;
  915. }
  916. /**
  917. * @brief Enable error interrupt.
  918. *
  919. * @param dev UART device structure.
  920. *
  921. * @return N/A
  922. */
  923. __syscall void uart_irq_err_enable(const struct device *dev);
  924. static inline void z_impl_uart_irq_err_enable(const struct device *dev)
  925. {
  926. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  927. const struct uart_driver_api *api =
  928. (const struct uart_driver_api *)dev->api;
  929. if (api->irq_err_enable) {
  930. api->irq_err_enable(dev);
  931. }
  932. #endif
  933. }
  934. /**
  935. * @brief Disable error interrupt.
  936. *
  937. * @param dev UART device structure.
  938. *
  939. * @retval 1 If an IRQ is ready.
  940. * @retval 0 Otherwise.
  941. */
  942. __syscall void uart_irq_err_disable(const struct device *dev);
  943. static inline void z_impl_uart_irq_err_disable(const struct device *dev)
  944. {
  945. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  946. const struct uart_driver_api *api =
  947. (const struct uart_driver_api *)dev->api;
  948. if (api->irq_err_disable) {
  949. api->irq_err_disable(dev);
  950. }
  951. #endif
  952. }
  953. /**
  954. * @brief Check if any IRQs is pending.
  955. *
  956. * @param dev UART device structure.
  957. *
  958. * @retval 1 If an IRQ is pending.
  959. * @retval 0 If an IRQ is not pending.
  960. * @retval -ENOSYS if this function is not supported.
  961. * @retval -ENOTSUP if API is not enabled.
  962. */
  963. __syscall int uart_irq_is_pending(const struct device *dev);
  964. static inline int z_impl_uart_irq_is_pending(const struct device *dev)
  965. {
  966. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  967. const struct uart_driver_api *api =
  968. (const struct uart_driver_api *)dev->api;
  969. if (api->irq_is_pending == NULL) {
  970. return -ENOSYS;
  971. }
  972. return api->irq_is_pending(dev);
  973. #endif
  974. return -ENOTSUP;
  975. }
  976. /**
  977. * @brief Start processing interrupts in ISR.
  978. *
  979. * This function should be called the first thing in the ISR. Calling
  980. * uart_irq_rx_ready(), uart_irq_tx_ready(), uart_irq_tx_complete()
  981. * allowed only after this.
  982. *
  983. * The purpose of this function is:
  984. *
  985. * * For devices with auto-acknowledge of interrupt status on register
  986. * read to cache the value of this register (rx_ready, etc. then use
  987. * this case).
  988. * * For devices with explicit acknowledgement of interrupts, to ack
  989. * any pending interrupts and likewise to cache the original value.
  990. * * For devices with implicit acknowledgement, this function will be
  991. * empty. But the ISR must perform the actions needs to ack the
  992. * interrupts (usually, call uart_fifo_read() on rx_ready, and
  993. * uart_fifo_fill() on tx_ready).
  994. *
  995. * @param dev UART device structure.
  996. *
  997. * @retval -ENOSYS if this function is not supported.
  998. * @retval -ENOTSUP if API is not enabled.
  999. * @retval 1 On success.
  1000. */
  1001. __syscall int uart_irq_update(const struct device *dev);
  1002. static inline int z_impl_uart_irq_update(const struct device *dev)
  1003. {
  1004. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  1005. const struct uart_driver_api *api =
  1006. (const struct uart_driver_api *)dev->api;
  1007. if (api->irq_update == NULL) {
  1008. return -ENOSYS;
  1009. }
  1010. return api->irq_update(dev);
  1011. #endif
  1012. return -ENOTSUP;
  1013. }
  1014. /**
  1015. * @brief Set the IRQ callback function pointer.
  1016. *
  1017. * This sets up the callback for IRQ. When an IRQ is triggered,
  1018. * the specified function will be called with specified user data.
  1019. * See description of uart_irq_update() for the requirements on ISR.
  1020. *
  1021. * @param dev UART device structure.
  1022. * @param cb Pointer to the callback function.
  1023. * @param user_data Data to pass to callback function.
  1024. *
  1025. * @return N/A
  1026. */
  1027. static inline void uart_irq_callback_user_data_set(const struct device *dev,
  1028. uart_irq_callback_user_data_t cb,
  1029. void *user_data)
  1030. {
  1031. #ifdef CONFIG_UART_INTERRUPT_DRIVEN
  1032. const struct uart_driver_api *api =
  1033. (const struct uart_driver_api *)dev->api;
  1034. if ((api != NULL) && (api->irq_callback_set != NULL)) {
  1035. api->irq_callback_set(dev, cb, user_data);
  1036. }
  1037. #endif
  1038. }
  1039. /**
  1040. * @brief Set the IRQ callback function pointer (legacy).
  1041. *
  1042. * This sets up the callback for IRQ. When an IRQ is triggered,
  1043. * the specified function will be called with the device pointer.
  1044. *
  1045. * @param dev UART device structure.
  1046. * @param cb Pointer to the callback function.
  1047. *
  1048. * @return N/A
  1049. */
  1050. static inline void uart_irq_callback_set(const struct device *dev,
  1051. uart_irq_callback_user_data_t cb)
  1052. {
  1053. uart_irq_callback_user_data_set(dev, cb, NULL);
  1054. }
  1055. /**
  1056. * @brief Manipulate line control for UART.
  1057. *
  1058. * @param dev UART device structure.
  1059. * @param ctrl The line control to manipulate (see enum uart_line_ctrl).
  1060. * @param val Value to set to the line control.
  1061. *
  1062. * @retval 0 If successful.
  1063. * @retval -ENOSYS if this function is not supported.
  1064. * @retval -ENOTSUP if API is not enabled.
  1065. * @retval negative value if failed.
  1066. */
  1067. __syscall int uart_line_ctrl_set(const struct device *dev,
  1068. uint32_t ctrl, uint32_t val);
  1069. static inline int z_impl_uart_line_ctrl_set(const struct device *dev,
  1070. uint32_t ctrl, uint32_t val)
  1071. {
  1072. #ifdef CONFIG_UART_LINE_CTRL
  1073. const struct uart_driver_api *api =
  1074. (const struct uart_driver_api *)dev->api;
  1075. if (api->line_ctrl_set == NULL) {
  1076. return -ENOSYS;
  1077. }
  1078. return api->line_ctrl_set(dev, ctrl, val);
  1079. #endif
  1080. return -ENOTSUP;
  1081. }
  1082. /**
  1083. * @brief Retrieve line control for UART.
  1084. *
  1085. * @param dev UART device structure.
  1086. * @param ctrl The line control to retrieve (see enum uart_line_ctrl).
  1087. * @param val Pointer to variable where to store the line control value.
  1088. *
  1089. * @retval 0 If successful.
  1090. * @retval -ENOSYS if this function is not supported.
  1091. * @retval -ENOTSUP if API is not enabled.
  1092. * @retval negative value if failed.
  1093. */
  1094. __syscall int uart_line_ctrl_get(const struct device *dev, uint32_t ctrl,
  1095. uint32_t *val);
  1096. static inline int z_impl_uart_line_ctrl_get(const struct device *dev,
  1097. uint32_t ctrl, uint32_t *val)
  1098. {
  1099. #ifdef CONFIG_UART_LINE_CTRL
  1100. const struct uart_driver_api *api =
  1101. (const struct uart_driver_api *)dev->api;
  1102. if (api->line_ctrl_get == NULL) {
  1103. return -ENOSYS;
  1104. }
  1105. return api->line_ctrl_get(dev, ctrl, val);
  1106. #endif
  1107. return -ENOTSUP;
  1108. }
  1109. /**
  1110. * @brief Send extra command to driver.
  1111. *
  1112. * Implementation and accepted commands are driver specific.
  1113. * Refer to the drivers for more information.
  1114. *
  1115. * @param dev UART device structure.
  1116. * @param cmd Command to driver.
  1117. * @param p Parameter to the command.
  1118. *
  1119. * @retval 0 If successful.
  1120. * @retval -ENOSYS if this function is not supported.
  1121. * @retval -ENOTSUP if API is not enabled.
  1122. * @retval negative value if failed.
  1123. */
  1124. __syscall int uart_drv_cmd(const struct device *dev, uint32_t cmd, uint32_t p);
  1125. static inline int z_impl_uart_drv_cmd(const struct device *dev, uint32_t cmd,
  1126. uint32_t p)
  1127. {
  1128. #ifdef CONFIG_UART_DRV_CMD
  1129. const struct uart_driver_api *api =
  1130. (const struct uart_driver_api *)dev->api;
  1131. if (api->drv_cmd == NULL) {
  1132. return -ENOSYS;
  1133. }
  1134. return api->drv_cmd(dev, cmd, p);
  1135. #endif
  1136. return -ENOTSUP;
  1137. }
  1138. #ifdef __cplusplus
  1139. }
  1140. #endif
  1141. /**
  1142. * @}
  1143. */
  1144. #include <syscalls/uart.h>
  1145. #endif /* ZEPHYR_INCLUDE_DRIVERS_UART_H_ */