VSF Documented
usart.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Copyright(C)2009-2022 by VSF Team *
3 * *
4 * Licensed under the Apache License, Version 2.0 (the "License"); *
5 * you may not use this file except in compliance with the License. *
6 * You may obtain a copy of the License at *
7 * *
8 * http://www.apache.org/licenses/LICENSE-2.0 *
9 * *
10 * Unless required by applicable law or agreed to in writing, software *
11 * distributed under the License is distributed on an "AS IS" BASIS, *
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
13 * See the License for the specific language governing permissions and *
14 * limitations under the License. *
15 * *
16 ****************************************************************************/
17
18#ifndef __HAL_DRIVER_${SERIES/USART_IP}_USART_H__
19#define __HAL_DRIVER_${SERIES/USART_IP}_USART_H__
20
21/*============================ INCLUDES ======================================*/
22
23#include "hal/vsf_hal_cfg.h"
24
25#if VSF_HAL_USE_USART == ENABLED
26
27#include "../../__device.h"
28
29/*\note Refer to template/README.md for usage cases.
30 * For peripheral drivers, blackbox mode is recommended but not required, reimplementation part MUST be open.
31 * For IPCore drivers, class structure, MULTI_CLASS configuration, reimplementation and class APIs should be open to user.
32 * For emulated drivers, **** No reimplementation ****.
33 */
34
35/*\note Includes CAN ONLY be put here. */
36/*\note If current header is for a peripheral driver(hw driver), and inherit from an IPCore driver, include IPCore header here. */
37
38// IPCore
39#if defined(__VSF_HAL_${USART_IP}_USART_CLASS_IMPLEMENT)
40# define __VSF_CLASS_IMPLEMENT__
41#elif defined(__VSF_HAL_${USART_IP}_USART_CLASS_INHERIT__)
42# define __VSF_CLASS_INHERIT__
43#endif
44
45#include "utilities/ooc_class.h"
46// IPCore end
47
48#ifdef __cplusplus
49extern "C" {
50#endif
51
52/*============================ MACROS ========================================*/
53
54/*\note VSF_${USART_IP}_USART_CFG_MULTI_CLASS should be implemented for IP drives and open to user,
55 * while VSF_HW_USART_CFG_MULTI_CLASS should be in usart.c.
56 */
57
58// IPCore
59#ifndef VSF_${USART_IP}_USART_CFG_MULTI_CLASS
60# define VSF_${USART_IP}_USART_CFG_MULTI_CLASS VSF_USART_CFG_MULTI_CLASS
61#endif
62// IPCore end
63
64// HW
65/*\note hw USART driver can reimplement vsf_usart_mode_t/vsf_usart_irq_mask_t/vsf_usart_status_t.
66 * To enable reimplementation, please enable macro below:
67 * VSF_USART_CFG_REIMPLEMENT_TYPE_MODE for vsf_usart_mode_t
68 * VSF_USART_CFG_REIMPLEMENT_TYPE_STATUS for vsf_usart_status_t
69 * VSF_USART_CFG_REIMPLEMENT_TYPE_IRQ_MASK for vsf_usart_irq_mask_t
70 * VSF_USART_CFG_REIMPLEMENT_TYPE_CMD for vsf_usart_cmd_t
71 * Reimplementation is used for optimization hw/IPCore drivers, reimplement the bit mask according to hw registers.
72 * *** DO NOT reimplement these in emulated drivers. ***
73 */
74
75#define VSF_USART_CFG_REIMPLEMENT_TYPE_MODE ENABLED
76#define VSF_USART_CFG_REIMPLEMENT_TYPE_STATUS ENABLED
77#define VSF_USART_CFG_REIMPLEMENT_TYPE_IRQ_MASK ENABLED
78#define VSF_USART_CFG_REIMPLEMENT_TYPE_CMD ENABLED
79#define VSF_USART_CFG_REIMPLEMENT_TYPE_CFG ENABLED
80#define VSF_USART_CFG_REIMPLEMENT_TYPE_CAPABILITY ENABLED
81// HW end
82
83// TODO: add comments about fifo2req
84
85/*============================ TYPES =========================================*/
86
87// IPCore
88vsf_class(vsf_${usart_ip}_usart_t) {
89#if VSF_${USART_IP}_CFG_MULTI_CLASS == ENABLED
90 public_member(
91 vsf_usart_t vsf_usart;
92 )
93#endif
94
95/*\note You can add more member in vsf_${usart_ip}_usart_t instance.
96 * For members accessible from child, put in protected_member.
97 * Else, put in private_member.
98 */
99
100 protected_member(
101 vsf_${usart_ip}_iwc_reg_t *reg;
104};
105// IPCore end
106
107// HW/IPCore, not for emulated drivers
108typedef enum vsf_usart_mode_t {
109 VSF_USART_NO_PARITY = (0x0ul << 0),
110 VSF_USART_EVEN_PARITY = (0x1ul << 0),
111 VSF_USART_ODD_PARITY = (0x2ul << 0),
114
115 VSF_USART_1_STOPBIT = (0x0ul << 3),
116 VSF_USART_1_5_STOPBIT = (0x1ul << 3),
117 VSF_USART_0_5_STOPBIT = (0x2ul << 3),
118 VSF_USART_2_STOPBIT = (0x3ul << 3),
119
126
131
132 VSF_USART_TX_ENABLE = (0x0ul << 9),
133 VSF_USART_TX_DISABLE = (0x1ul << 9),
134
135 VSF_USART_RX_ENABLE = (0x0ul << 10),
136 VSF_USART_RX_DISABLE = (0x1ul << 10),
137
140
143
150
155
156 // more vendor specified modes can be added here
158
160 // request_rx/request_tx complete
163
164 // TX/RX reach fifo threshold, thres hold on some devices is bound to 1
165 VSF_USART_IRQ_MASK_TX = (0x1ul << 2),
166 VSF_USART_IRQ_MASK_RX = (0x1ul << 3),
168
169 // clear to send interrupt
171
172 // Error interrupt
177
178 // more vendor specified irq_masks can be added here
180
181
182typedef enum vsf_usart_cmd_t {
183 // usart default command
185 VSF_USART_CMD_SET_BREAK = (0x01ul << 1),
187
188 // more vendor specified commnad can be added here
190
191/*\note It's not obligated to inherit from vsf_peripheral_status_t.
192 * If not, there MUST be a is_busy bit in vsf_usart_status_t.
193 */
194
195typedef struct vsf_usart_status_t {
196 union {
199 };
201// HW/IPCore end
202
203/*============================ GLOBAL VARIABLES ==============================*/
204/*============================ PROTOTYPES ====================================*/
205
206// IPCore
207/*\note Extern APIs for ip core diriver.
208 * There is no requirement about how APIs of IPCore drivers should be implemented.
209 * Just consider the simplicity for actual peripheral drivers.
210 */
211// IPCore end
212
213#ifdef __cplusplus
214}
215#endif
216
217// IPCore
218#undef __VSF_HAL_${USART_IP}_USART_CLASS_IMPLEMENT
219#undef __VSF_HAL_${USART_IP}_USART_CLASS_INHERIT__
220// IPCore end
221
222#endif // VSF_HAL_USE_USART
223#endif // __HAL_DRIVER_${SERIES/USART_IP}_USART_H__
224/* EOF */
vsf_usart_mode_t
Definition uart.h:32
vsf_usart_irq_mask_t
Definition uart.h:105
@ VSF_USART_HALF_DUPLEX_DISABLE
Definition usart.h:108
@ VSF_USART_SYNC_CLOCK_ENABLE
Definition usart.h:116
@ VSF_USART_SYNC_CLOCK_PHASE_1_EDGE
Definition usart.h:122
@ VSF_USART_NO_PARITY
Definition usart.h:111
@ VSF_USART_10_BIT_LENGTH
Definition usart.h:132
@ VSF_USART_RTS_HWCONTROL
Definition usart.h:101
@ VSF_USART_RX_ENABLE
Definition usart.h:96
@ VSF_USART_TX_ENABLE
Definition usart.h:94
@ VSF_USART_SYNC_CLOCK_POLARITY_HIGH
Definition usart.h:120
@ VSF_USART_SYNC_CLOCK_POLARITY_LOW
Definition usart.h:119
@ VSF_USART_RX_DISABLE
Definition usart.h:97
@ VSF_USART_CTS_HWCONTROL
Definition usart.h:102
@ VSF_USART_SYNC_CLOCK_DISABLE
Definition usart.h:117
@ VSF_USART_RTS_CTS_HWCONTROL
Definition usart.h:103
@ VSF_USART_SYNC_CLOCK_PHASE_2_EDGE
Definition usart.h:123
@ VSF_USART_HALF_DUPLEX_ENABLE
Definition usart.h:107
@ VSF_USART_TX_DISABLE
Definition usart.h:95
@ VSF_USART_0_5_STOPBIT
Definition usart.h:88
@ VSF_USART_NO_HWCONTROL
Definition usart.h:100
@ VSF_USART_IRQ_MASK_CTS
Definition usart.h:212
vsf_usart_mode_t
Definition usart.h:42
@ VSF_USART_8_BIT_LENGTH
Definition usart.h:43
@ VSF_USART_EVEN_PARITY
Definition usart.h:62
@ VSF_USART_ODD_PARITY
Definition usart.h:61
@ VSF_USART_7_BIT_LENGTH
Definition usart.h:44
@ VSF_USART_1_STOPBIT
Definition usart.h:52
@ VSF_USART_2_STOPBIT
Definition usart.h:55
@ VSF_USART_5_BIT_LENGTH
Definition usart.h:46
@ VSF_USART_6_BIT_LENGTH
Definition usart.h:45
@ VSF_USART_1_5_STOPBIT
Definition usart.h:53
vsf_usart_irq_mask_t
Definition usart.h:86
@ VSF_USART_IRQ_MASK_TX_CPL
Definition usart.h:90
@ VSF_USART_IRQ_MASK_TX
Definition usart.h:88
@ VSF_USART_IRQ_MASK_RX
Definition usart.h:87
@ VSF_USART_IRQ_MASK_RX_TIMEOUT
Definition usart.h:98
@ VSF_USART_IRQ_MASK_RX_CPL
Definition usart.h:89
struct vsf_usart_status_t vsf_usart_status_t
@ VSF_USART_TX_FIFO_THRESH_HALF_FULL
Definition usart.h:166
@ VSF_USART_RX_FIFO_THRESH_FULL
Definition usart.h:171
@ VSF_USART_RX_FIFO_THRESH_ONE
Definition usart.h:169
@ VSF_USART_FORCE_0_PARITY
Definition usart.h:162
@ VSF_USART_TX_FIFO_THRESH_ONE
Definition usart.h:165
@ VSF_USART_9_BIT_LENGTH
Definition usart.h:119
@ VSF_USART_FORCE_1_PARITY
Definition usart.h:163
@ VSF_USART_RX_FIFO_THRESH_HALF_FULL
Definition usart.h:170
@ VSF_USART_TX_FIFO_THRESH_FULL
Definition usart.h:167
vsf_usart_cmd_t
Definition usart.h:217
@ VSF_USART_CMD_SET_BREAK
Definition usart.h:220
@ VSF_USART_CMD_CLEAR_BREAK
Definition usart.h:221
@ VSF_USART_CMD_SEND_BREAK
Definition usart.h:218
@ VSF_USART_IRQ_MASK_OVERFLOW_ERR
Definition usart.h:210
@ VSF_USART_IRQ_MASK_BREAK_ERR
Definition usart.h:209
@ VSF_USART_IRQ_MASK_PARITY_ERR
Definition usart.h:195
@ VSF_USART_IRQ_MASK_FRAME_ERR
Definition usart.h:208
Definition adc.h:68
#define vsf_class(__name)
Definition ooc_class.h:48
unsigned uint32_t
Definition stdint.h:9
Definition vsf_template_hal_driver.h:196
Definition vsf_template_usart.h:550
Definition uart.h:156
uint32_t value
Definition usart.h:279
Definition vsf_template_usart.h:661
class vsf_$ * reg
vsf_usart_isr_t isr
Definition usart.h:103
vsf_usart_cmd_t
Predefined VSF USART command that can be reimplemented in specific hal drivers.
Definition vsf_template_usart.h:582