]> begriffs open source - cmsis/blob - CMSIS/Driver/Include/Driver_USART.h
5.0.1-dev1: http:// removed. PACK schema relaxed
[cmsis] / CMSIS / Driver / Include / Driver_USART.h
1 /*
2  * Copyright (c) 2013-2016 ARM Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Licensed under the Apache License, Version 2.0 (the License); you may
7  * not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an AS IS BASIS, WITHOUT
14  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * $Date:        24. Nov 2014
19  * $Revision:    V2.02
20  *
21  * Project:      USART (Universal Synchronous Asynchronous Receiver Transmitter)
22  *               Driver definitions
23  */
24
25 /* History:
26  *  Version 2.02
27  *    Corrected ARM_USART_CPOL_Pos and ARM_USART_CPHA_Pos definitions 
28  *  Version 2.01
29  *    Removed optional argument parameter from Signal Event
30  *  Version 2.00
31  *    New simplified driver:
32  *      complexity moved to upper layer (especially data handling)
33  *      more unified API for different communication interfaces
34  *      renamed driver UART -> USART (Asynchronous & Synchronous)
35  *    Added modes:
36  *      Synchronous
37  *      Single-wire
38  *      IrDA
39  *      Smart Card  
40  *    Changed prefix ARM_DRV -> ARM_DRIVER
41  *  Version 1.10
42  *    Namespace prefix ARM_ added
43  *  Version 1.01
44  *    Added events:
45  *      ARM_UART_EVENT_TX_EMPTY,     ARM_UART_EVENT_RX_TIMEOUT
46  *      ARM_UART_EVENT_TX_THRESHOLD, ARM_UART_EVENT_RX_THRESHOLD
47  *    Added functions: SetTxThreshold, SetRxThreshold
48  *    Added "rx_timeout_event" to capabilities
49  *  Version 1.00
50  *    Initial release
51  */
52
53 #ifndef DRIVER_USART_H_
54 #define DRIVER_USART_H_
55
56 #ifdef  __cplusplus
57 extern "C"
58 {
59 #endif
60
61 #include "Driver_Common.h"
62
63 #define ARM_USART_API_VERSION ARM_DRIVER_VERSION_MAJOR_MINOR(2,02)  /* API version */
64
65
66 /****** USART Control Codes *****/
67
68 #define ARM_USART_CONTROL_Pos                0
69 #define ARM_USART_CONTROL_Msk               (0xFFUL << ARM_USART_CONTROL_Pos)
70
71 /*----- USART Control Codes: Mode -----*/
72 #define ARM_USART_MODE_ASYNCHRONOUS         (0x01UL << ARM_USART_CONTROL_Pos)   ///< UART (Asynchronous); arg = Baudrate
73 #define ARM_USART_MODE_SYNCHRONOUS_MASTER   (0x02UL << ARM_USART_CONTROL_Pos)   ///< Synchronous Master (generates clock signal); arg = Baudrate
74 #define ARM_USART_MODE_SYNCHRONOUS_SLAVE    (0x03UL << ARM_USART_CONTROL_Pos)   ///< Synchronous Slave (external clock signal)
75 #define ARM_USART_MODE_SINGLE_WIRE          (0x04UL << ARM_USART_CONTROL_Pos)   ///< UART Single-wire (half-duplex); arg = Baudrate
76 #define ARM_USART_MODE_IRDA                 (0x05UL << ARM_USART_CONTROL_Pos)   ///< UART IrDA; arg = Baudrate
77 #define ARM_USART_MODE_SMART_CARD           (0x06UL << ARM_USART_CONTROL_Pos)   ///< UART Smart Card; arg = Baudrate
78
79 /*----- USART Control Codes: Mode Parameters: Data Bits -----*/
80 #define ARM_USART_DATA_BITS_Pos              8
81 #define ARM_USART_DATA_BITS_Msk             (7UL << ARM_USART_DATA_BITS_Pos)
82 #define ARM_USART_DATA_BITS_5               (5UL << ARM_USART_DATA_BITS_Pos)    ///< 5 Data bits
83 #define ARM_USART_DATA_BITS_6               (6UL << ARM_USART_DATA_BITS_Pos)    ///< 6 Data bit
84 #define ARM_USART_DATA_BITS_7               (7UL << ARM_USART_DATA_BITS_Pos)    ///< 7 Data bits
85 #define ARM_USART_DATA_BITS_8               (0UL << ARM_USART_DATA_BITS_Pos)    ///< 8 Data bits (default)
86 #define ARM_USART_DATA_BITS_9               (1UL << ARM_USART_DATA_BITS_Pos)    ///< 9 Data bits
87
88 /*----- USART Control Codes: Mode Parameters: Parity -----*/
89 #define ARM_USART_PARITY_Pos                 12
90 #define ARM_USART_PARITY_Msk                (3UL << ARM_USART_PARITY_Pos)
91 #define ARM_USART_PARITY_NONE               (0UL << ARM_USART_PARITY_Pos)       ///< No Parity (default)
92 #define ARM_USART_PARITY_EVEN               (1UL << ARM_USART_PARITY_Pos)       ///< Even Parity
93 #define ARM_USART_PARITY_ODD                (2UL << ARM_USART_PARITY_Pos)       ///< Odd Parity
94
95 /*----- USART Control Codes: Mode Parameters: Stop Bits -----*/
96 #define ARM_USART_STOP_BITS_Pos              14
97 #define ARM_USART_STOP_BITS_Msk             (3UL << ARM_USART_STOP_BITS_Pos)
98 #define ARM_USART_STOP_BITS_1               (0UL << ARM_USART_STOP_BITS_Pos)    ///< 1 Stop bit (default)
99 #define ARM_USART_STOP_BITS_2               (1UL << ARM_USART_STOP_BITS_Pos)    ///< 2 Stop bits
100 #define ARM_USART_STOP_BITS_1_5             (2UL << ARM_USART_STOP_BITS_Pos)    ///< 1.5 Stop bits
101 #define ARM_USART_STOP_BITS_0_5             (3UL << ARM_USART_STOP_BITS_Pos)    ///< 0.5 Stop bits
102
103 /*----- USART Control Codes: Mode Parameters: Flow Control -----*/
104 #define ARM_USART_FLOW_CONTROL_Pos           16
105 #define ARM_USART_FLOW_CONTROL_Msk          (3UL << ARM_USART_FLOW_CONTROL_Pos)
106 #define ARM_USART_FLOW_CONTROL_NONE         (0UL << ARM_USART_FLOW_CONTROL_Pos) ///< No Flow Control (default)
107 #define ARM_USART_FLOW_CONTROL_RTS          (1UL << ARM_USART_FLOW_CONTROL_Pos) ///< RTS Flow Control
108 #define ARM_USART_FLOW_CONTROL_CTS          (2UL << ARM_USART_FLOW_CONTROL_Pos) ///< CTS Flow Control
109 #define ARM_USART_FLOW_CONTROL_RTS_CTS      (3UL << ARM_USART_FLOW_CONTROL_Pos) ///< RTS/CTS Flow Control
110
111 /*----- USART Control Codes: Mode Parameters: Clock Polarity (Synchronous mode) -----*/
112 #define ARM_USART_CPOL_Pos                   18
113 #define ARM_USART_CPOL_Msk                  (1UL << ARM_USART_CPOL_Pos)
114 #define ARM_USART_CPOL0                     (0UL << ARM_USART_CPOL_Pos)         ///< CPOL = 0 (default)
115 #define ARM_USART_CPOL1                     (1UL << ARM_USART_CPOL_Pos)         ///< CPOL = 1
116
117 /*----- USART Control Codes: Mode Parameters: Clock Phase (Synchronous mode) -----*/
118 #define ARM_USART_CPHA_Pos                   19
119 #define ARM_USART_CPHA_Msk                  (1UL << ARM_USART_CPHA_Pos)
120 #define ARM_USART_CPHA0                     (0UL << ARM_USART_CPHA_Pos)         ///< CPHA = 0 (default)
121 #define ARM_USART_CPHA1                     (1UL << ARM_USART_CPHA_Pos)         ///< CPHA = 1
122
123
124 /*----- USART Control Codes: Miscellaneous Controls  -----*/
125 #define ARM_USART_SET_DEFAULT_TX_VALUE      (0x10UL << ARM_USART_CONTROL_Pos)   ///< Set default Transmit value (Synchronous Receive only); arg = value
126 #define ARM_USART_SET_IRDA_PULSE            (0x11UL << ARM_USART_CONTROL_Pos)   ///< Set IrDA Pulse in ns; arg: 0=3/16 of bit period  
127 #define ARM_USART_SET_SMART_CARD_GUARD_TIME (0x12UL << ARM_USART_CONTROL_Pos)   ///< Set Smart Card Guard Time; arg = number of bit periods
128 #define ARM_USART_SET_SMART_CARD_CLOCK      (0x13UL << ARM_USART_CONTROL_Pos)   ///< Set Smart Card Clock in Hz; arg: 0=Clock not generated
129 #define ARM_USART_CONTROL_SMART_CARD_NACK   (0x14UL << ARM_USART_CONTROL_Pos)   ///< Smart Card NACK generation; arg: 0=disabled, 1=enabled
130 #define ARM_USART_CONTROL_TX                (0x15UL << ARM_USART_CONTROL_Pos)   ///< Transmitter; arg: 0=disabled, 1=enabled
131 #define ARM_USART_CONTROL_RX                (0x16UL << ARM_USART_CONTROL_Pos)   ///< Receiver; arg: 0=disabled, 1=enabled
132 #define ARM_USART_CONTROL_BREAK             (0x17UL << ARM_USART_CONTROL_Pos)   ///< Continuous Break transmission; arg: 0=disabled, 1=enabled
133 #define ARM_USART_ABORT_SEND                (0x18UL << ARM_USART_CONTROL_Pos)   ///< Abort \ref ARM_USART_Send
134 #define ARM_USART_ABORT_RECEIVE             (0x19UL << ARM_USART_CONTROL_Pos)   ///< Abort \ref ARM_USART_Receive
135 #define ARM_USART_ABORT_TRANSFER            (0x1AUL << ARM_USART_CONTROL_Pos)   ///< Abort \ref ARM_USART_Transfer
136
137
138
139 /****** USART specific error codes *****/
140 #define ARM_USART_ERROR_MODE                (ARM_DRIVER_ERROR_SPECIFIC - 1)     ///< Specified Mode not supported
141 #define ARM_USART_ERROR_BAUDRATE            (ARM_DRIVER_ERROR_SPECIFIC - 2)     ///< Specified baudrate not supported
142 #define ARM_USART_ERROR_DATA_BITS           (ARM_DRIVER_ERROR_SPECIFIC - 3)     ///< Specified number of Data bits not supported
143 #define ARM_USART_ERROR_PARITY              (ARM_DRIVER_ERROR_SPECIFIC - 4)     ///< Specified Parity not supported
144 #define ARM_USART_ERROR_STOP_BITS           (ARM_DRIVER_ERROR_SPECIFIC - 5)     ///< Specified number of Stop bits not supported
145 #define ARM_USART_ERROR_FLOW_CONTROL        (ARM_DRIVER_ERROR_SPECIFIC - 6)     ///< Specified Flow Control not supported
146 #define ARM_USART_ERROR_CPOL                (ARM_DRIVER_ERROR_SPECIFIC - 7)     ///< Specified Clock Polarity not supported
147 #define ARM_USART_ERROR_CPHA                (ARM_DRIVER_ERROR_SPECIFIC - 8)     ///< Specified Clock Phase not supported
148
149
150 /**
151 \brief USART Status
152 */
153 typedef struct _ARM_USART_STATUS {
154   uint32_t tx_busy          : 1;        ///< Transmitter busy flag
155   uint32_t rx_busy          : 1;        ///< Receiver busy flag
156   uint32_t tx_underflow     : 1;        ///< Transmit data underflow detected (cleared on start of next send operation)
157   uint32_t rx_overflow      : 1;        ///< Receive data overflow detected (cleared on start of next receive operation)
158   uint32_t rx_break         : 1;        ///< Break detected on receive (cleared on start of next receive operation)
159   uint32_t rx_framing_error : 1;        ///< Framing error detected on receive (cleared on start of next receive operation)
160   uint32_t rx_parity_error  : 1;        ///< Parity error detected on receive (cleared on start of next receive operation)
161 } ARM_USART_STATUS;
162
163 /**
164 \brief USART Modem Control
165 */
166 typedef enum _ARM_USART_MODEM_CONTROL {
167   ARM_USART_RTS_CLEAR,                  ///< Deactivate RTS
168   ARM_USART_RTS_SET,                    ///< Activate RTS
169   ARM_USART_DTR_CLEAR,                  ///< Deactivate DTR
170   ARM_USART_DTR_SET                     ///< Activate DTR
171 } ARM_USART_MODEM_CONTROL;
172
173 /**
174 \brief USART Modem Status
175 */
176 typedef struct _ARM_USART_MODEM_STATUS {
177   uint32_t cts : 1;                     ///< CTS state: 1=Active, 0=Inactive
178   uint32_t dsr : 1;                     ///< DSR state: 1=Active, 0=Inactive
179   uint32_t dcd : 1;                     ///< DCD state: 1=Active, 0=Inactive
180   uint32_t ri  : 1;                     ///< RI  state: 1=Active, 0=Inactive
181 } ARM_USART_MODEM_STATUS;
182
183
184 /****** USART Event *****/
185 #define ARM_USART_EVENT_SEND_COMPLETE       (1UL << 0)  ///< Send completed; however USART may still transmit data
186 #define ARM_USART_EVENT_RECEIVE_COMPLETE    (1UL << 1)  ///< Receive completed
187 #define ARM_USART_EVENT_TRANSFER_COMPLETE   (1UL << 2)  ///< Transfer completed
188 #define ARM_USART_EVENT_TX_COMPLETE         (1UL << 3)  ///< Transmit completed (optional)
189 #define ARM_USART_EVENT_TX_UNDERFLOW        (1UL << 4)  ///< Transmit data not available (Synchronous Slave)
190 #define ARM_USART_EVENT_RX_OVERFLOW         (1UL << 5)  ///< Receive data overflow
191 #define ARM_USART_EVENT_RX_TIMEOUT          (1UL << 6)  ///< Receive character timeout (optional)
192 #define ARM_USART_EVENT_RX_BREAK            (1UL << 7)  ///< Break detected on receive
193 #define ARM_USART_EVENT_RX_FRAMING_ERROR    (1UL << 8)  ///< Framing error detected on receive
194 #define ARM_USART_EVENT_RX_PARITY_ERROR     (1UL << 9)  ///< Parity error detected on receive
195 #define ARM_USART_EVENT_CTS                 (1UL << 10) ///< CTS state changed (optional)
196 #define ARM_USART_EVENT_DSR                 (1UL << 11) ///< DSR state changed (optional)
197 #define ARM_USART_EVENT_DCD                 (1UL << 12) ///< DCD state changed (optional)
198 #define ARM_USART_EVENT_RI                  (1UL << 13) ///< RI  state changed (optional)
199
200
201 // Function documentation
202 /**
203   \fn          ARM_DRIVER_VERSION ARM_USART_GetVersion (void)
204   \brief       Get driver version.
205   \return      \ref ARM_DRIVER_VERSION
206
207   \fn          ARM_USART_CAPABILITIES ARM_USART_GetCapabilities (void)
208   \brief       Get driver capabilities
209   \return      \ref ARM_USART_CAPABILITIES
210
211   \fn          int32_t ARM_USART_Initialize (ARM_USART_SignalEvent_t cb_event)
212   \brief       Initialize USART Interface.
213   \param[in]   cb_event  Pointer to \ref ARM_USART_SignalEvent
214   \return      \ref execution_status
215
216   \fn          int32_t ARM_USART_Uninitialize (void)
217   \brief       De-initialize USART Interface.
218   \return      \ref execution_status
219
220   \fn          int32_t ARM_USART_PowerControl (ARM_POWER_STATE state)
221   \brief       Control USART Interface Power.
222   \param[in]   state  Power state
223   \return      \ref execution_status
224
225   \fn          int32_t ARM_USART_Send (const void *data, uint32_t num)
226   \brief       Start sending data to USART transmitter.
227   \param[in]   data  Pointer to buffer with data to send to USART transmitter
228   \param[in]   num   Number of data items to send
229   \return      \ref execution_status
230
231   \fn          int32_t ARM_USART_Receive (void *data, uint32_t num)
232   \brief       Start receiving data from USART receiver.
233   \param[out]  data  Pointer to buffer for data to receive from USART receiver
234   \param[in]   num   Number of data items to receive
235   \return      \ref execution_status
236
237   \fn          int32_t ARM_USART_Transfer (const void *data_out,
238                                                  void *data_in,
239                                            uint32_t    num)
240   \brief       Start sending/receiving data to/from USART transmitter/receiver.
241   \param[in]   data_out  Pointer to buffer with data to send to USART transmitter
242   \param[out]  data_in   Pointer to buffer for data to receive from USART receiver
243   \param[in]   num       Number of data items to transfer
244   \return      \ref execution_status
245
246   \fn          uint32_t ARM_USART_GetTxCount (void)
247   \brief       Get transmitted data count.
248   \return      number of data items transmitted
249
250   \fn          uint32_t ARM_USART_GetRxCount (void)
251   \brief       Get received data count.
252   \return      number of data items received
253
254   \fn          int32_t ARM_USART_Control (uint32_t control, uint32_t arg)
255   \brief       Control USART Interface.
256   \param[in]   control  Operation
257   \param[in]   arg      Argument of operation (optional)
258   \return      common \ref execution_status and driver specific \ref usart_execution_status
259
260   \fn          ARM_USART_STATUS ARM_USART_GetStatus (void)
261   \brief       Get USART status.
262   \return      USART status \ref ARM_USART_STATUS
263
264   \fn          int32_t ARM_USART_SetModemControl (ARM_USART_MODEM_CONTROL control)
265   \brief       Set USART Modem Control line state.
266   \param[in]   control  \ref ARM_USART_MODEM_CONTROL
267   \return      \ref execution_status 
268
269   \fn          ARM_USART_MODEM_STATUS ARM_USART_GetModemStatus (void)
270   \brief       Get USART Modem Status lines state.
271   \return      modem status \ref ARM_USART_MODEM_STATUS
272
273   \fn          void ARM_USART_SignalEvent (uint32_t event)
274   \brief       Signal USART Events.
275   \param[in]   event  \ref USART_events notification mask
276   \return      none
277 */
278
279 typedef void (*ARM_USART_SignalEvent_t) (uint32_t event);  ///< Pointer to \ref ARM_USART_SignalEvent : Signal USART Event.
280
281
282 /**
283 \brief USART Device Driver Capabilities.
284 */
285 typedef struct _ARM_USART_CAPABILITIES {
286   uint32_t asynchronous       : 1;      ///< supports UART (Asynchronous) mode 
287   uint32_t synchronous_master : 1;      ///< supports Synchronous Master mode
288   uint32_t synchronous_slave  : 1;      ///< supports Synchronous Slave mode
289   uint32_t single_wire        : 1;      ///< supports UART Single-wire mode
290   uint32_t irda               : 1;      ///< supports UART IrDA mode
291   uint32_t smart_card         : 1;      ///< supports UART Smart Card mode
292   uint32_t smart_card_clock   : 1;      ///< Smart Card Clock generator available
293   uint32_t flow_control_rts   : 1;      ///< RTS Flow Control available
294   uint32_t flow_control_cts   : 1;      ///< CTS Flow Control available
295   uint32_t event_tx_complete  : 1;      ///< Transmit completed event: \ref ARM_USART_EVENT_TX_COMPLETE
296   uint32_t event_rx_timeout   : 1;      ///< Signal receive character timeout event: \ref ARM_USART_EVENT_RX_TIMEOUT
297   uint32_t rts                : 1;      ///< RTS Line: 0=not available, 1=available
298   uint32_t cts                : 1;      ///< CTS Line: 0=not available, 1=available
299   uint32_t dtr                : 1;      ///< DTR Line: 0=not available, 1=available
300   uint32_t dsr                : 1;      ///< DSR Line: 0=not available, 1=available
301   uint32_t dcd                : 1;      ///< DCD Line: 0=not available, 1=available
302   uint32_t ri                 : 1;      ///< RI Line: 0=not available, 1=available
303   uint32_t event_cts          : 1;      ///< Signal CTS change event: \ref ARM_USART_EVENT_CTS
304   uint32_t event_dsr          : 1;      ///< Signal DSR change event: \ref ARM_USART_EVENT_DSR
305   uint32_t event_dcd          : 1;      ///< Signal DCD change event: \ref ARM_USART_EVENT_DCD
306   uint32_t event_ri           : 1;      ///< Signal RI change event: \ref ARM_USART_EVENT_RI
307 } ARM_USART_CAPABILITIES;
308
309
310 /**
311 \brief Access structure of the USART Driver.
312 */
313 typedef struct _ARM_DRIVER_USART {
314   ARM_DRIVER_VERSION     (*GetVersion)      (void);                              ///< Pointer to \ref ARM_USART_GetVersion : Get driver version.
315   ARM_USART_CAPABILITIES (*GetCapabilities) (void);                              ///< Pointer to \ref ARM_USART_GetCapabilities : Get driver capabilities.
316   int32_t                (*Initialize)      (ARM_USART_SignalEvent_t cb_event);  ///< Pointer to \ref ARM_USART_Initialize : Initialize USART Interface.
317   int32_t                (*Uninitialize)    (void);                              ///< Pointer to \ref ARM_USART_Uninitialize : De-initialize USART Interface.
318   int32_t                (*PowerControl)    (ARM_POWER_STATE state);             ///< Pointer to \ref ARM_USART_PowerControl : Control USART Interface Power.
319   int32_t                (*Send)            (const void *data, uint32_t num);    ///< Pointer to \ref ARM_USART_Send : Start sending data to USART transmitter.
320   int32_t                (*Receive)         (      void *data, uint32_t num);    ///< Pointer to \ref ARM_USART_Receive : Start receiving data from USART receiver.
321   int32_t                (*Transfer)        (const void *data_out,
322                                                    void *data_in,
323                                              uint32_t    num);                   ///< Pointer to \ref ARM_USART_Transfer : Start sending/receiving data to/from USART.
324   uint32_t               (*GetTxCount)      (void);                              ///< Pointer to \ref ARM_USART_GetTxCount : Get transmitted data count.
325   uint32_t               (*GetRxCount)      (void);                              ///< Pointer to \ref ARM_USART_GetRxCount : Get received data count.
326   int32_t                (*Control)         (uint32_t control, uint32_t arg);    ///< Pointer to \ref ARM_USART_Control : Control USART Interface.
327   ARM_USART_STATUS       (*GetStatus)       (void);                              ///< Pointer to \ref ARM_USART_GetStatus : Get USART status.
328   int32_t                (*SetModemControl) (ARM_USART_MODEM_CONTROL control);   ///< Pointer to \ref ARM_USART_SetModemControl : Set USART Modem Control line state.
329   ARM_USART_MODEM_STATUS (*GetModemStatus)  (void);                              ///< Pointer to \ref ARM_USART_GetModemStatus : Get USART Modem Status lines state.
330 } const ARM_DRIVER_USART;
331
332 #ifdef  __cplusplus
333 }
334 #endif
335
336 #endif /* DRIVER_USART_H_ */