1 /**************************************************************************//**
2  * @file     qspi_reg.h
3  * @version  V1.00
4  * @brief    QSPI register definition header file
5  *
6  * SPDX-License-Identifier: Apache-2.0
7  * @copyright (C) 2017-2020 Nuvoton Technology Corp. All rights reserved.
8  *****************************************************************************/
9 #ifndef __QSPI_REG_H__
10 #define __QSPI_REG_H__
11 
12 #if defined ( __CC_ARM   )
13 #pragma anon_unions
14 #endif
15 
16 /**
17    @addtogroup REGISTER Control Register
18    @{
19 */
20 
21 /**
22     @addtogroup QSPI Serial Peripheral Interface Controller(QSPI)
23     Memory Mapped Structure for QSPI Controller
24 @{ */
25 
26 typedef struct
27 {
28 
29 
30     /**
31      * @var QSPI_T::CTL
32      * Offset: 0x00  QSPI Control Register
33      * ---------------------------------------------------------------------------------------------------
34      * |Bits    |Field     |Descriptions
35      * | :----: | :----:   | :---- |
36      * |[0]     |QSPIEN    |QSPI Transfer Control Enable Bit
37      * |        |          |In Master mode, the transfer will start when there is data in the FIFO buffer after this bit is set to 1
38      * |        |          |In Slave mode, this device is ready to receive data when this bit is set to 1.
39      * |        |          |0 = Transfer control Disabled.
40      * |        |          |1 = Transfer control Enabled.
41      * |        |          |Note: Before changing the configurations of QSPIx_CTL, QSPIx_CLKDIV, QSPIx_SSCTL and QSPIx_FIFOCTL registers, user shall clear the QSPIEN (QSPIx_CTL[0]) and confirm the QSPIENSTS (QSPIx_STATUS[15]) is 0.
42      * |[1]     |RXNEG     |Receive on Negative Edge
43      * |        |          |0 = Received data input signal is latched on the rising edge of QSPI bus clock.
44      * |        |          |1 = Received data input signal is latched on the falling edge of QSPI bus clock.
45      * |[2]     |TXNEG     |Transmit on Negative Edge
46      * |        |          |0 = Transmitted data output signal is changed on the rising edge of QSPI bus clock.
47      * |        |          |1 = Transmitted data output signal is changed on the falling edge of QSPI bus clock.
48      * |[3]     |CLKPOL    |Clock Polarity
49      * |        |          |0 = QSPI bus clock is idle low.
50      * |        |          |1 = QSPI bus clock is idle high.
51      * |[7:4]   |SUSPITV   |Suspend Interval (Master Only)
52      * |        |          |The four bits provide configurable suspend interval between two successive transmit/receive transaction in a transfer
53      * |        |          |The definition of the suspend interval is the interval between the last clock edge of the preceding transaction word and the first clock edge of the following transaction word
54      * |        |          |The default value is 0x3
55      * |        |          |The period of the suspend interval is obtained according to the following equation.
56      * |        |          |(SUSPITV[3:0] + 0.5) * period of QSPICLK clock cycle
57      * |        |          |Example:
58      * |        |          |SUSPITV = 0x0 .... 0.5 QSPICLK clock cycle.
59      * |        |          |SUSPITV = 0x1 .... 1.5 QSPICLK clock cycle.
60      * |        |          |.....
61      * |        |          |SUSPITV = 0xE .... 14.5 QSPICLK clock cycle.
62      * |        |          |SUSPITV = 0xF .... 15.5 QSPICLK clock cycle.
63      * |[12:8]  |DWIDTH    |Data Width
64      * |        |          |This field specifies how many bits can be transmitted / received in one transaction
65      * |        |          |The minimum bit length is 8 bits and can up to 32 bits.
66      * |        |          |DWIDTH = 0x08 .... 8 bits.
67      * |        |          |DWIDTH = 0x09 .... 9 bits.
68      * |        |          |.....
69      * |        |          |DWIDTH = 0x1F .... 31 bits.
70      * |        |          |DWIDTH = 0x00 .... 32 bits.
71      * |[13]    |LSB       |Send LSB First
72      * |        |          |0 = The MSB, which bit of transmit/receive register depends on the setting of DWIDTH, is transmitted/received first.
73      * |        |          |1 = The LSB, bit 0 of the QSPI TX register, is sent first to the QSPI data output pin, and the first bit received from the QSPI data input pin will be put in the LSB position of the RX register (bit 0 of QSPI_RX).
74      * |[14]    |HALFDPX   |QSPI Half-duplex Transfer Enable Bit
75      * |        |          |This bit is used to select full-duplex or half-duplex for QSPI transfer
76      * |        |          |The bit field DATDIR (QSPIx_CTL[20]) can be used to set the data direction in half-duplex transfer.
77      * |        |          |0 = QSPI operates in full-duplex transfer.
78      * |        |          |1 = QSPI operates in half-duplex transfer.
79      * |[15]    |RXONLY    |Receive-only Mode Enable Bit (Master Only)
80      * |        |          |This bit field is only available in Master mode
81      * |        |          |In receive-only mode, QSPI Master will generate QSPI bus clock continuously for receiving data bit from QSPI slave device and assert the BUSY status.
82      * |        |          |0 = Receive-only mode Disabled.
83      * |        |          |1 = Receive-only mode Enabled.
84      * |[16]    |TWOBIT    |2-bit Transfer Mode Enable Bit (Only Supported in QSPI0)
85      * |        |          |0 = 2-Bit Transfer mode Disabled.
86      * |        |          |1 = 2-Bit Transfer mode Enabled.
87      * |        |          |Note: When 2-Bit Transfer mode is enabled, the first serial transmitted bit data is from the first FIFO buffer data, and the 2nd serial transmitted bit data is from the second FIFO buffer data
88      * |        |          |As the same as transmitted function, the first received bit data is stored into the first FIFO buffer and the 2nd received bit data is stored into the second FIFO buffer at the same time.
89      * |[17]    |UNITIEN   |Unit Transfer Interrupt Enable Bit
90      * |        |          |0 = QSPI unit transfer interrupt Disabled.
91      * |        |          |1 = QSPI unit transfer interrupt Enabled.
92      * |[18]    |SLAVE     |Slave Mode Control
93      * |        |          |0 = Master mode.
94      * |        |          |1 = Slave mode.
95      * |[19]    |REORDER   |Byte Reorder Function Enable Bit
96      * |        |          |0 = Byte Reorder function Disabled.
97      * |        |          |1 = Byte Reorder function Enabled
98      * |        |          |A byte suspend interval will be inserted among each byte
99      * |        |          |The period of the byte suspend interval depends on the setting of SUSPITV.
100      * |        |          |Note: Byte Reorder function is only available if DWIDTH is defined as 16, 24, and 32 bits.
101      * |[20]    |DATDIR    |Data Port Direction Control
102      * |        |          |This bit is used to select the data input/output direction in half-duplex transfer and Dual/Quad transfer
103      * |        |          |0 = QSPI data is input direction.
104      * |        |          |1 = QSPI data is output direction.
105      * |[21]    |DUALIOEN  |Dual I/O Mode Enable Bit (Only Supported in QSPI0)
106      * |        |          |0 = Dual I/O mode Disabled.
107      * |        |          |1 = Dual I/O mode Enabled.
108      * |[22]    |QUADIOEN  |Quad I/O Mode Enable Bit (Only Supported in QSPI0)
109      * |        |          |0 = Quad I/O mode Disabled.
110      * |        |          |1 = Quad I/O mode Enabled.
111      * @var QSPI_T::CLKDIV
112      * Offset: 0x04  QSPI Clock Divider Register
113      * ---------------------------------------------------------------------------------------------------
114      * |Bits    |Field     |Descriptions
115      * | :----: | :----:   | :---- |
116      * |[8:0]   |DIVIDER   |Clock Divider
117      * |        |          |The value in this field is the frequency divider for generating the peripheral clock, fspi_eclk, and the QSPI bus clock of QSPI Master
118      * |        |          |The frequency is obtained according to the following equation.
119      * |        |          |where
120      * |        |          |is the peripheral clock source, which is defined in the clock control register, CLK_CLKSEL2.
121      * @var QSPI_T::SSCTL
122      * Offset: 0x08  QSPI Slave Select Control Register
123      * ---------------------------------------------------------------------------------------------------
124      * |Bits    |Field     |Descriptions
125      * | :----: | :----:   | :---- |
126      * |[0]     |SS        |Slave Selection Control (Master Only)
127      * |        |          |If AUTOSS bit is cleared to 0,
128      * |        |          |0 = set the QSPIx_SS line to inactive state.
129      * |        |          |1 = set the QSPIx_SS line to active state.
130      * |        |          |If the AUTOSS bit is set to 1,
131      * |        |          |0 = Keep the QSPIx_SS line at inactive state.
132      * |        |          |1 = QSPIx_SS line will be automatically driven to active state for the duration of data transfer, and will be driven to inactive state for the rest of the time
133      * |        |          |The active state of QSPIx_SS is specified in SSACTPOL (QSPIx_SSCTL[2]).
134      * |[2]     |SSACTPOL  |Slave Selection Active Polarity
135      * |        |          |This bit defines the active polarity of slave selection signal (QSPIx_SS).
136      * |        |          |0 = The slave selection signal QSPIx_SS is active low.
137      * |        |          |1 = The slave selection signal QSPIx_SS is active high.
138      * |[3]     |AUTOSS    |Automatic Slave Selection Function Enable Bit (Master Only)
139      * |        |          |0 = Automatic slave selection function Disabled
140      * |        |          |Slave selection signal will be asserted/de-asserted according to SS (QSPIx_SSCTL[0]).
141      * |        |          |1 = Automatic slave selection function Enabled.
142      * |[4]     |SLV3WIRE  |Slave 3-wire Mode Enable Bit (Only Supported in QSPI0)
143      * |        |          |Slave 3-wire mode is only available in QSPI0
144      * |        |          |In Slave 3-wire mode, the QSPI controller can work with 3-wire interface including QSPI0_CLK, QSPI0_MISO and QSPI0_MOSI pins.
145      * |        |          |0 = 4-wire bi-direction interface.
146      * |        |          |1 = 3-wire bi-direction interface.
147      * |[5]     |SLVTOIEN  |Slave Mode Time-out Interrupt Enable Bit (Only Supported in QSPI0)
148      * |        |          |0 = Slave mode time-out interrupt Disabled.
149      * |        |          |1 = Slave mode time-out interrupt Enabled.
150      * |[6]     |SLVTORST  |Slave Mode Time-out Reset Control (Only Supported in QSPI0)
151      * |        |          |0 = When Slave mode time-out event occurs, the TX and RX control circuit will not be reset.
152      * |        |          |1 = When Slave mode time-out event occurs, the TX and RX control circuit will be reset by hardware.
153      * |[8]     |SLVBEIEN  |Slave Mode Bit Count Error Interrupt Enable Bit
154      * |        |          |0 = Slave mode bit count error interrupt Disabled.
155      * |        |          |1 = Slave mode bit count error interrupt Enabled.
156      * |[9]     |SLVURIEN  |Slave Mode TX Under Run Interrupt Enable Bit
157      * |        |          |0 = Slave mode TX under run interrupt Disabled.
158      * |        |          |1 = Slave mode TX under run interrupt Enabled.
159      * |[12]    |SSACTIEN  |Slave Select Active Interrupt Enable Bit
160      * |        |          |0 = Slave select active interrupt Disabled.
161      * |        |          |1 = Slave select active interrupt Enabled.
162      * |[13]    |SSINAIEN  |Slave Select Inactive Interrupt Enable Bit
163      * |        |          |0 = Slave select inactive interrupt Disabled.
164      * |        |          |1 = Slave select inactive interrupt Enabled.
165      * |[31:16] |SLVTOCNT  |Slave Mode Time-out Period (Only Supported in QSPI0)
166      * |        |          |In Slave mode, these bits indicate the time-out period when there is bus clock input during slave select active
167      * |        |          |The clock source of the time-out counter is Slave peripheral clock
168      * |        |          |If the value is 0, it indicates the slave mode time-out function is disabled.
169      * @var QSPI_T::PDMACTL
170      * Offset: 0x0C  QSPI PDMA Control Register
171      * ---------------------------------------------------------------------------------------------------
172      * |Bits    |Field     |Descriptions
173      * | :----: | :----:   | :---- |
174      * |[0]     |TXPDMAEN  |Transmit PDMA Enable Bit
175      * |        |          |0 = Transmit PDMA function Disabled.
176      * |        |          |1 = Transmit PDMA function Enabled.
177      * |        |          |Note: In QSPI Master mode with full duplex transfer, if both TX and RX PDMA functions are enabled, RX PDMA function cannot be enabled prior to TX PDMA function
178      * |        |          |User can enable TX PDMA function firstly or enable both functions simultaneously.
179      * |[1]     |RXPDMAEN  |Receive PDMA Enable Bit
180      * |        |          |0 = Receive PDMA function Disabled.
181      * |        |          |1 = Receive PDMA function Enabled.
182      * |[2]     |PDMARST   |PDMA Reset
183      * |        |          |0 = No effect.
184      * |        |          |1 = Reset the PDMA control logic of the QSPI controller. This bit will be automatically cleared to 0.
185      * @var QSPI_T::FIFOCTL
186      * Offset: 0x10  QSPI FIFO Control Register
187      * ---------------------------------------------------------------------------------------------------
188      * |Bits    |Field     |Descriptions
189      * | :----: | :----:   | :---- |
190      * |[0]     |RXRST     |Receive Reset
191      * |        |          |0 = No effect.
192      * |        |          |1 = Reset receive FIFO pointer and receive circuit
193      * |        |          |The RXFULL bit will be cleared to 0 and the RXEMPTY bit will be set to 1
194      * |        |          |This bit will be cleared to 0 by hardware about 3 system clock cycles + 2 peripheral clock cycles after it is set to 1
195      * |        |          |User can read TXRXRST (QSPIx_STATUS[23]) to check if reset is accomplished or not.
196      * |[1]     |TXRST     |Transmit Reset
197      * |        |          |0 = No effect.
198      * |        |          |1 = Reset transmit FIFO pointer and transmit circuit
199      * |        |          |The TXFULL bit will be cleared to 0 and the TXEMPTY bit will be set to 1
200      * |        |          |This bit will be cleared to 0 by hardware about 3 system clock cycles + 2 peripheral clock cycles after it is set to 1
201      * |        |          |User can read TXRXRST (QSPIx_STATUS[23]) to check if reset is accomplished or not.
202      * |        |          |Note: If TX underflow event occurs in QSPI Slave mode, this bit can be used to make QSPI return to idle state.
203      * |[2]     |RXTHIEN   |Receive FIFO Threshold Interrupt Enable Bit
204      * |        |          |0 = RX FIFO threshold interrupt Disabled.
205      * |        |          |1 = RX FIFO threshold interrupt Enabled.
206      * |[3]     |TXTHIEN   |Transmit FIFO Threshold Interrupt Enable Bit
207      * |        |          |0 = TX FIFO threshold interrupt Disabled.
208      * |        |          |1 = TX FIFO threshold interrupt Enabled.
209      * |[4]     |RXTOIEN   |Slave Receive Time-out Interrupt Enable Bit
210      * |        |          |0 = Receive time-out interrupt Disabled.
211      * |        |          |1 = Receive time-out interrupt Enabled.
212      * |[5]     |RXOVIEN   |Receive FIFO Overrun Interrupt Enable Bit
213      * |        |          |0 = Receive FIFO overrun interrupt Disabled.
214      * |        |          |1 = Receive FIFO overrun interrupt Enabled.
215      * |[6]     |TXUFPOL   |TX Underflow Data Polarity
216      * |        |          |0 = The QSPI data out is keep 0 if there is TX underflow event in Slave mode.
217      * |        |          |1 = The QSPI data out is keep 1 if there is TX underflow event in Slave mode.
218      * |        |          |Note:
219      * |        |          |1. The TX underflow event occurs if there is no any data in TX FIFO when the slave selection signal is active.
220      * |        |          |2. When TX underflow event occurs, QSPIx_MISO pin state will be determined by this setting even though TX FIFO is not empty afterward
221      * |        |          |Data stored in TX FIFO will be sent through QSPIx_MISO pin in the next transfer frame.
222      * |[7]     |TXUFIEN   |TX Underflow Interrupt Enable Bit
223      * |        |          |When TX underflow event occurs in Slave mode, TXUFIF (QSPIx_STATUS[19]) will be set to 1
224      * |        |          |This bit is used to enable the TX underflow interrupt.
225      * |        |          |0 = Slave TX underflow interrupt Disabled.
226      * |        |          |1 = Slave TX underflow interrupt Enabled.
227      * |[8]     |RXFBCLR   |Receive FIFO Buffer Clear
228      * |        |          |0 = No effect.
229      * |        |          |1 = Clear receive FIFO pointer
230      * |        |          |The RXFULL bit will be cleared to 0 and the RXEMPTY bit will be set to 1
231      * |        |          |This bit will be cleared to 0 by hardware about 1 system clock after it is set to 1.
232      * |        |          |Note: The RX shift register will not be cleared.
233      * |[9]     |TXFBCLR   |Transmit FIFO Buffer Clear
234      * |        |          |0 = No effect.
235      * |        |          |1 = Clear transmit FIFO pointer
236      * |        |          |The TXFULL bit will be cleared to 0 and the TXEMPTY bit will be set to 1
237      * |        |          |This bit will be cleared to 0 by hardware about 1 system clock after it is set to 1.
238      * |        |          |Note: The TX shift register will not be cleared.
239      * |[26:24] |RXTH      |Receive FIFO Threshold
240      * |        |          |If the valid data count of the receive FIFO buffer is larger than the RXTH setting, the RXTHIF bit will be set to 1, else the RXTHIF bit will be cleared to 0
241      * |[30:28] |TXTH      |Transmit FIFO Threshold
242      * |        |          |If the valid data count of the transmit FIFO buffer is less than or equal to the TXTH setting, the TXTHIF bit will be set to 1, else the TXTHIF bit will be cleared to 0
243      * @var QSPI_T::STATUS
244      * Offset: 0x14  QSPI Status Register
245      * ---------------------------------------------------------------------------------------------------
246      * |Bits    |Field     |Descriptions
247      * | :----: | :----:   | :---- |
248      * |[0]     |BUSY      |Busy Status (Read Only)
249      * |        |          |0 = QSPI controller is in idle state.
250      * |        |          |1 = QSPI controller is in busy state.
251      * |        |          |The following listing are the bus busy conditions:
252      * |        |          |a. QSPIx_CTL[0] = 1 and TXEMPTY = 0.
253      * |        |          |b
254      * |        |          |For QSPI Master mode, QSPIx_CTL[0] = 1 and TXEMPTY = 1 but the current transaction is not finished yet.
255      * |        |          |c. For QSPI Master mode, QSPIx_CTL[0] = 1 and RXONLY = 1.
256      * |        |          |d
257      * |        |          |For QSPI Slave mode, the QSPIx_CTL[0] = 1 and there is serial clock input into the QSPI core logic when slave select is active.
258      * |        |          |For QSPI Slave mode, the QSPIx_CTL[0] = 1 and the transmit buffer or transmit shift register is not empty even if the slave select is inactive.
259      * |[1]     |UNITIF    |Unit Transfer Interrupt Flag
260      * |        |          |0 = No transaction has been finished since this bit was cleared to 0.
261      * |        |          |1 = QSPI controller has finished one unit transfer.
262      * |        |          |Note: This bit will be cleared by writing 1 to it.
263      * |[2]     |SSACTIF   |Slave Select Active Interrupt Flag
264      * |        |          |0 = Slave select active interrupt was cleared or not occurred.
265      * |        |          |1 = Slave select active interrupt event occurred.
266      * |        |          |Note: Only available in Slave mode. This bit will be cleared by writing 1 to it.
267      * |[3]     |SSINAIF   |Slave Select Inactive Interrupt Flag
268      * |        |          |0 = Slave select inactive interrupt was cleared or not occurred.
269      * |        |          |1 = Slave select inactive interrupt event occurred.
270      * |        |          |Note: Only available in Slave mode. This bit will be cleared by writing 1 to it.
271      * |[4]     |SSLINE    |Slave Select Line Bus Status (Read Only)
272      * |        |          |0 = The slave select line status is 0.
273      * |        |          |1 = The slave select line status is 1.
274      * |        |          |Note: This bit is only available in Slave mode
275      * |        |          |If SSACTPOL (QSPIx_SSCTL[2]) is set 0, and the SSLINE is 1, the QSPI slave select is in inactive status.
276      * |[5]     |SLVTOIF   |Slave Time-out Interrupt Flag (Only Supported in QSPI0)
277      * |        |          |When the slave select is active and the value of SLVTOCNT is not 0, as the bus clock is detected, the slave time-out counter in QSPI controller logic will be started
278      * |        |          |When the value of time-out counter is greater than or equal to the value of SLVTOCNT (QSPI_SSCTL[31:16]) before one transaction is done, the slave time-out interrupt event will be asserted.
279      * |        |          |0 = Slave time-out is not active.
280      * |        |          |1 = Slave time-out is active.
281      * |        |          |Note: This bit will be cleared by writing 1 to it.
282      * |[6]     |SLVBEIF   |Slave Mode Bit Count Error Interrupt Flag
283      * |        |          |In Slave mode, when the slave select line goes to inactive state, if bit counter is mismatch with DWIDTH, this interrupt flag will be set to 1.
284      * |        |          |0 = No Slave mode bit count error event.
285      * |        |          |1 = Slave mode bit count error event occurs.
286      * |        |          |Note: If the slave select active but there is no any bus clock input, the SLVBEIF also active when the slave select goes to inactive state
287      * |        |          |This bit will be cleared by writing 1 to it.
288      * |[7]     |SLVURIF   |Slave Mode TX Under Run Interrupt Flag
289      * |        |          |In Slave mode, if TX underflow event occurs and the slave select line goes to inactive state, this interrupt flag will be set to 1.
290      * |        |          |0 = No Slave TX under run event.
291      * |        |          |1 = Slave TX under run event occurs.
292      * |        |          |Note: This bit will be cleared by writing 1 to it.
293      * |[8]     |RXEMPTY   |Receive FIFO Buffer Empty Indicator (Read Only)
294      * |        |          |0 = Receive FIFO buffer is not empty.
295      * |        |          |1 = Receive FIFO buffer is empty.
296      * |[9]     |RXFULL    |Receive FIFO Buffer Full Indicator (Read Only)
297      * |        |          |0 = Receive FIFO buffer is not full.
298      * |        |          |1 = Receive FIFO buffer is full.
299      * |[10]    |RXTHIF    |Receive FIFO Threshold Interrupt Flag (Read Only)
300      * |        |          |0 = The valid data count within the receive FIFO buffer is smaller than or equal to the setting value of RXTH.
301      * |        |          |1 = The valid data count within the receive FIFO buffer is larger than the setting value of RXTH.
302      * |[11]    |RXOVIF    |Receive FIFO Overrun Interrupt Flag
303      * |        |          |When the receive FIFO buffer is full, the follow-up data will be dropped and this bit will be set to 1.
304      * |        |          |0 = No FIFO is overrun.
305      * |        |          |1 = Receive FIFO is overrun.
306      * |        |          |Note: This bit will be cleared by writing 1 to it.
307      * |[12]    |RXTOIF    |Receive Time-out Interrupt Flag
308      * |        |          |0 = No receive FIFO time-out event.
309      * |        |          |1 = Receive FIFO buffer is not empty and no read operation on receive FIFO buffer over 64 QSPI peripheral clock periods in Master mode or over 576 QSPI peripheral clock periods in Slave mode
310      * |        |          |When the received FIFO buffer is read by software, the time-out status will be cleared automatically.
311      * |        |          |Note: This bit will be cleared by writing 1 to it.
312      * |[15]    |QSPIENSTS |QSPI Enable Status (Read Only)
313      * |        |          |0 = The QSPI controller is disabled.
314      * |        |          |1 = The QSPI controller is enabled.
315      * |        |          |Note: The QSPI peripheral clock is asynchronous with the system clock
316      * |        |          |In order to make sure the QSPI control logic is disabled, this bit indicates the real status of QSPI controller.
317      * |[16]    |TXEMPTY   |Transmit FIFO Buffer Empty Indicator (Read Only)
318      * |        |          |0 = Transmit FIFO buffer is not empty.
319      * |        |          |1 = Transmit FIFO buffer is empty.
320      * |[17]    |TXFULL    |Transmit FIFO Buffer Full Indicator (Read Only)
321      * |        |          |0 = Transmit FIFO buffer is not full.
322      * |        |          |1 = Transmit FIFO buffer is full.
323      * |[18]    |TXTHIF    |Transmit FIFO Threshold Interrupt Flag (Read Only)
324      * |        |          |0 = The valid data count within the transmit FIFO buffer is larger than the setting value of TXTH.
325      * |        |          |1 = The valid data count within the transmit FIFO buffer is less than or equal to the setting value of TXTH.
326      * |[19]    |TXUFIF    |TX Underflow Interrupt Flag
327      * |        |          |When the TX underflow event occurs, this bit will be set to 1, the state of data output pin depends on the setting of TXUFPOL.
328      * |        |          |0 = No effect.
329      * |        |          |1 = No data in Transmit FIFO and TX shift register when the slave selection signal is active.
330      * |        |          |Note 1: This bit will be cleared by writing 1 to it.
331      * |        |          |Note 2: If reset slave's transmission circuit when slave selection signal is active, this flag will be set to 1 after 2 peripheral clock cycles + 3 system clock cycles since the reset operation is done.
332      * |[23]    |TXRXRST   |TX or RX Reset Status (Read Only)
333      * |        |          |0 = The reset function of TXRST or RXRST is done.
334      * |        |          |1 = Doing the reset function of TXRST or RXRST.
335      * |        |          |Note: Both the reset operations of TXRST and RXRST need 3 system clock cycles + 2 peripheral clock cycles
336      * |        |          |User can check the status of this bit to monitor the reset function is doing or done.
337      * |[27:24] |RXCNT     |Receive FIFO Data Count (Read Only)
338      * |        |          |This bit field indicates the valid data count of receive FIFO buffer.
339      * |[31:28] |TXCNT     |Transmit FIFO Data Count (Read Only)
340      * |        |          |This bit field indicates the valid data count of transmit FIFO buffer.
341      * @var QSPI_T::TX
342      * Offset: 0x20  QSPI Data Transmit Register
343      * ---------------------------------------------------------------------------------------------------
344      * |Bits    |Field     |Descriptions
345      * | :----: | :----:   | :---- |
346      * |[31:0]  |TX        |Data Transmit Register
347      * |        |          |The data transmit registers pass through the transmitted data into the 4-level transmit FIFO buffers
348      * |        |          |The number of valid bits depends on the setting of DWIDTH (QSPIx_CTL[12:8]) in SPI mode.
349      * |        |          |In SPI mode, if DWIDTH is set to 0x08, the bits TX[7:0] will be transmitted
350      * |        |          |If DWIDTH is set to 0x00 , the QSPI controller will perform a 32-bit transfer.
351      * |        |          |If WDWIDTH is set as 0x0, 0x1, or 0x3, all bits of this field are valid
352      * |        |          |Note: In Master mode, QSPI controller will start to transfer the QSPI bus clock after 1 APB clock and 6 peripheral clock cycles after user writes to this register.
353      * @var QSPI_T::RX
354      * Offset: 0x30  QSPI Data Receive Register
355      * ---------------------------------------------------------------------------------------------------
356      * |Bits    |Field     |Descriptions
357      * | :----: | :----:   | :---- |
358      * |[31:0]  |RX        |Data Receive Register
359      * |        |          |There are 4-level FIFO buffers in this controller
360      * |        |          |The data receive register holds the data received from QSPI data input pin
361      * |        |          |This is a read only register.
362      */
363     __IO uint32_t CTL;                   /*!< [0x0000] QSPI Control Register                                             */
364     __IO uint32_t CLKDIV;                /*!< [0x0004] QSPI Clock Divider Register                                       */
365     __IO uint32_t SSCTL;                 /*!< [0x0008] QSPI Slave Select Control Register                                */
366     __IO uint32_t PDMACTL;               /*!< [0x000c] QSPI PDMA Control Register                                        */
367     __IO uint32_t FIFOCTL;               /*!< [0x0010] QSPI FIFO Control Register                                        */
368     __IO uint32_t STATUS;                /*!< [0x0014] QSPI Status Register                                              */
369     /// @cond HIDDEN_SYMBOLS
370     __I  uint32_t RESERVE0[2];
371     /// @endcond //HIDDEN_SYMBOLS
372     __O  uint32_t TX;                    /*!< [0x0020] QSPI Data Transmit Register                                       */
373     /// @cond HIDDEN_SYMBOLS
374     __I  uint32_t RESERVE1[3];
375     /// @endcond //HIDDEN_SYMBOLS
376     __I  uint32_t RX;                    /*!< [0x0030] QSPI Data Receive Register                                        */
377 
378 } QSPI_T;
379 
380 /**
381     @addtogroup QSPI_CONST QSPI Bit Field Definition
382     Constant Definitions for QSPI Controller
383 @{ */
384 
385 #define QSPI_CTL_QSPIEN_Pos               (0)                                                /*!< QSPI_T::CTL: QSPIEN Position             */
386 #define QSPI_CTL_QSPIEN_Msk               (0x1ul << QSPI_CTL_QSPIEN_Pos)                     /*!< QSPI_T::CTL: QSPIEN Mask                 */
387 
388 #define QSPI_CTL_RXNEG_Pos                (1)                                                /*!< QSPI_T::CTL: RXNEG Position             */
389 #define QSPI_CTL_RXNEG_Msk                (0x1ul << QSPI_CTL_RXNEG_Pos)                      /*!< QSPI_T::CTL: RXNEG Mask                 */
390 
391 #define QSPI_CTL_TXNEG_Pos                (2)                                                /*!< QSPI_T::CTL: TXNEG Position             */
392 #define QSPI_CTL_TXNEG_Msk                (0x1ul << QSPI_CTL_TXNEG_Pos)                      /*!< QSPI_T::CTL: TXNEG Mask                 */
393 
394 #define QSPI_CTL_CLKPOL_Pos               (3)                                                /*!< QSPI_T::CTL: CLKPOL Position            */
395 #define QSPI_CTL_CLKPOL_Msk               (0x1ul << QSPI_CTL_CLKPOL_Pos)                     /*!< QSPI_T::CTL: CLKPOL Mask                */
396 
397 #define QSPI_CTL_SUSPITV_Pos              (4)                                                /*!< QSPI_T::CTL: SUSPITV Position           */
398 #define QSPI_CTL_SUSPITV_Msk              (0xful << QSPI_CTL_SUSPITV_Pos)                    /*!< QSPI_T::CTL: SUSPITV Mask               */
399 
400 #define QSPI_CTL_DWIDTH_Pos               (8)                                                /*!< QSPI_T::CTL: DWIDTH Position            */
401 #define QSPI_CTL_DWIDTH_Msk               (0x1ful << QSPI_CTL_DWIDTH_Pos)                    /*!< QSPI_T::CTL: DWIDTH Mask                */
402 
403 #define QSPI_CTL_LSB_Pos                  (13)                                               /*!< QSPI_T::CTL: LSB Position               */
404 #define QSPI_CTL_LSB_Msk                  (0x1ul << QSPI_CTL_LSB_Pos)                        /*!< QSPI_T::CTL: LSB Mask                   */
405 
406 #define QSPI_CTL_HALFDPX_Pos              (14)                                               /*!< QSPI_T::CTL: HALFDPX Position           */
407 #define QSPI_CTL_HALFDPX_Msk              (0x1ul << QSPI_CTL_HALFDPX_Pos)                    /*!< QSPI_T::CTL: HALFDPX Mask               */
408 
409 #define QSPI_CTL_RXONLY_Pos               (15)                                               /*!< QSPI_T::CTL: RXONLY Position            */
410 #define QSPI_CTL_RXONLY_Msk               (0x1ul << QSPI_CTL_RXONLY_Pos)                     /*!< QSPI_T::CTL: RXONLY Mask                */
411 
412 #define QSPI_CTL_TWOBIT_Pos               (16)                                               /*!< QSPI_T::CTL: TWOBIT Position            */
413 #define QSPI_CTL_TWOBIT_Msk               (0x1ul << QSPI_CTL_TWOBIT_Pos)                     /*!< QSPI_T::CTL: TWOBIT Mask                */
414 
415 #define QSPI_CTL_UNITIEN_Pos              (17)                                               /*!< QSPI_T::CTL: UNITIEN Position           */
416 #define QSPI_CTL_UNITIEN_Msk              (0x1ul << QSPI_CTL_UNITIEN_Pos)                    /*!< QSPI_T::CTL: UNITIEN Mask               */
417 
418 #define QSPI_CTL_SLAVE_Pos                (18)                                               /*!< QSPI_T::CTL: SLAVE Position             */
419 #define QSPI_CTL_SLAVE_Msk                (0x1ul << QSPI_CTL_SLAVE_Pos)                      /*!< QSPI_T::CTL: SLAVE Mask                 */
420 
421 #define QSPI_CTL_REORDER_Pos              (19)                                               /*!< QSPI_T::CTL: REORDER Position           */
422 #define QSPI_CTL_REORDER_Msk              (0x1ul << QSPI_CTL_REORDER_Pos)                    /*!< QSPI_T::CTL: REORDER Mask               */
423 
424 #define QSPI_CTL_DATDIR_Pos               (20)                                               /*!< QSPI_T::CTL: DATDIR Position            */
425 #define QSPI_CTL_DATDIR_Msk               (0x1ul << QSPI_CTL_DATDIR_Pos)                     /*!< QSPI_T::CTL: DATDIR Mask                */
426 
427 #define QSPI_CTL_DUALIOEN_Pos             (21)                                               /*!< QSPI_T::CTL: DUALIOEN Position          */
428 #define QSPI_CTL_DUALIOEN_Msk             (0x1ul << QSPI_CTL_DUALIOEN_Pos)                   /*!< QSPI_T::CTL: DUALIOEN Mask              */
429 
430 #define QSPI_CTL_QUADIOEN_Pos             (22)                                               /*!< QSPI_T::CTL: QUADIOEN Position          */
431 #define QSPI_CTL_QUADIOEN_Msk             (0x1ul << QSPI_CTL_QUADIOEN_Pos)                   /*!< QSPI_T::CTL: QUADIOEN Mask              */
432 
433 #define QSPI_CLKDIV_DIVIDER_Pos           (0)                                                /*!< QSPI_T::CLKDIV: DIVIDER Position        */
434 #define QSPI_CLKDIV_DIVIDER_Msk           (0x1fful << QSPI_CLKDIV_DIVIDER_Pos)               /*!< QSPI_T::CLKDIV: DIVIDER Mask            */
435 
436 #define QSPI_SSCTL_SS_Pos                 (0)                                                /*!< QSPI_T::SSCTL: SS Position              */
437 #define QSPI_SSCTL_SS_Msk                 (0x1ul << QSPI_SSCTL_SS_Pos)                       /*!< QSPI_T::SSCTL: SS Mask                  */
438 
439 #define QSPI_SSCTL_SSACTPOL_Pos           (2)                                                /*!< QSPI_T::SSCTL: SSACTPOL Position        */
440 #define QSPI_SSCTL_SSACTPOL_Msk           (0x1ul << QSPI_SSCTL_SSACTPOL_Pos)                 /*!< QSPI_T::SSCTL: SSACTPOL Mask            */
441 
442 #define QSPI_SSCTL_AUTOSS_Pos             (3)                                                /*!< QSPI_T::SSCTL: AUTOSS Position          */
443 #define QSPI_SSCTL_AUTOSS_Msk             (0x1ul << QSPI_SSCTL_AUTOSS_Pos)                   /*!< QSPI_T::SSCTL: AUTOSS Mask              */
444 
445 #define QSPI_SSCTL_SLV3WIRE_Pos           (4)                                                /*!< QSPI_T::SSCTL: SLV3WIRE Position        */
446 #define QSPI_SSCTL_SLV3WIRE_Msk           (0x1ul << QSPI_SSCTL_SLV3WIRE_Pos)                 /*!< QSPI_T::SSCTL: SLV3WIRE Mask            */
447 
448 #define QSPI_SSCTL_SLVTOIEN_Pos           (5)                                                /*!< QSPI_T::SSCTL: SLVTOIEN Position        */
449 #define QSPI_SSCTL_SLVTOIEN_Msk           (0x1ul << QSPI_SSCTL_SLVTOIEN_Pos)                 /*!< QSPI_T::SSCTL: SLVTOIEN Mask            */
450 
451 #define QSPI_SSCTL_SLVTORST_Pos           (6)                                                /*!< QSPI_T::SSCTL: SLVTORST Position        */
452 #define QSPI_SSCTL_SLVTORST_Msk           (0x1ul << QSPI_SSCTL_SLVTORST_Pos)                 /*!< QSPI_T::SSCTL: SLVTORST Mask            */
453 
454 #define QSPI_SSCTL_SLVBEIEN_Pos           (8)                                                /*!< QSPI_T::SSCTL: SLVBEIEN Position        */
455 #define QSPI_SSCTL_SLVBEIEN_Msk           (0x1ul << QSPI_SSCTL_SLVBEIEN_Pos)                 /*!< QSPI_T::SSCTL: SLVBEIEN Mask            */
456 
457 #define QSPI_SSCTL_SLVURIEN_Pos           (9)                                                /*!< QSPI_T::SSCTL: SLVURIEN Position        */
458 #define QSPI_SSCTL_SLVURIEN_Msk           (0x1ul << QSPI_SSCTL_SLVURIEN_Pos)                 /*!< QSPI_T::SSCTL: SLVURIEN Mask            */
459 
460 #define QSPI_SSCTL_SSACTIEN_Pos           (12)                                               /*!< QSPI_T::SSCTL: SSACTIEN Position        */
461 #define QSPI_SSCTL_SSACTIEN_Msk           (0x1ul << QSPI_SSCTL_SSACTIEN_Pos)                 /*!< QSPI_T::SSCTL: SSACTIEN Mask            */
462 
463 #define QSPI_SSCTL_SSINAIEN_Pos           (13)                                               /*!< QSPI_T::SSCTL: SSINAIEN Position        */
464 #define QSPI_SSCTL_SSINAIEN_Msk           (0x1ul << QSPI_SSCTL_SSINAIEN_Pos)                 /*!< QSPI_T::SSCTL: SSINAIEN Mask            */
465 
466 #define QSPI_SSCTL_SLVTOCNT_Pos           (16)                                               /*!< QSPI_T::SSCTL: SLVTOCNT Position        */
467 #define QSPI_SSCTL_SLVTOCNT_Msk           (0xfffful << QSPI_SSCTL_SLVTOCNT_Pos)              /*!< QSPI_T::SSCTL: SLVTOCNT Mask            */
468 
469 #define QSPI_PDMACTL_TXPDMAEN_Pos         (0)                                                /*!< QSPI_T::PDMACTL: TXPDMAEN Position      */
470 #define QSPI_PDMACTL_TXPDMAEN_Msk         (0x1ul << QSPI_PDMACTL_TXPDMAEN_Pos)               /*!< QSPI_T::PDMACTL: TXPDMAEN Mask          */
471 
472 #define QSPI_PDMACTL_RXPDMAEN_Pos         (1)                                                /*!< QSPI_T::PDMACTL: RXPDMAEN Position      */
473 #define QSPI_PDMACTL_RXPDMAEN_Msk         (0x1ul << QSPI_PDMACTL_RXPDMAEN_Pos)               /*!< QSPI_T::PDMACTL: RXPDMAEN Mask          */
474 
475 #define QSPI_PDMACTL_PDMARST_Pos          (2)                                                /*!< QSPI_T::PDMACTL: PDMARST Position       */
476 #define QSPI_PDMACTL_PDMARST_Msk          (0x1ul << QSPI_PDMACTL_PDMARST_Pos)                /*!< QSPI_T::PDMACTL: PDMARST Mask           */
477 
478 #define QSPI_FIFOCTL_RXRST_Pos            (0)                                                /*!< QSPI_T::FIFOCTL: RXRST Position         */
479 #define QSPI_FIFOCTL_RXRST_Msk            (0x1ul << QSPI_FIFOCTL_RXRST_Pos)                  /*!< QSPI_T::FIFOCTL: RXRST Mask             */
480 
481 #define QSPI_FIFOCTL_TXRST_Pos            (1)                                                /*!< QSPI_T::FIFOCTL: TXRST Position         */
482 #define QSPI_FIFOCTL_TXRST_Msk            (0x1ul << QSPI_FIFOCTL_TXRST_Pos)                  /*!< QSPI_T::FIFOCTL: TXRST Mask             */
483 
484 #define QSPI_FIFOCTL_RXTHIEN_Pos          (2)                                                /*!< QSPI_T::FIFOCTL: RXTHIEN Position       */
485 #define QSPI_FIFOCTL_RXTHIEN_Msk          (0x1ul << QSPI_FIFOCTL_RXTHIEN_Pos)                /*!< QSPI_T::FIFOCTL: RXTHIEN Mask           */
486 
487 #define QSPI_FIFOCTL_TXTHIEN_Pos          (3)                                                /*!< QSPI_T::FIFOCTL: TXTHIEN Position       */
488 #define QSPI_FIFOCTL_TXTHIEN_Msk          (0x1ul << QSPI_FIFOCTL_TXTHIEN_Pos)                /*!< QSPI_T::FIFOCTL: TXTHIEN Mask           */
489 
490 #define QSPI_FIFOCTL_RXTOIEN_Pos          (4)                                                /*!< QSPI_T::FIFOCTL: RXTOIEN Position       */
491 #define QSPI_FIFOCTL_RXTOIEN_Msk          (0x1ul << QSPI_FIFOCTL_RXTOIEN_Pos)                /*!< QSPI_T::FIFOCTL: RXTOIEN Mask           */
492 
493 #define QSPI_FIFOCTL_RXOVIEN_Pos          (5)                                                /*!< QSPI_T::FIFOCTL: RXOVIEN Position       */
494 #define QSPI_FIFOCTL_RXOVIEN_Msk          (0x1ul << QSPI_FIFOCTL_RXOVIEN_Pos)                /*!< QSPI_T::FIFOCTL: RXOVIEN Mask           */
495 
496 #define QSPI_FIFOCTL_TXUFPOL_Pos          (6)                                                /*!< QSPI_T::FIFOCTL: TXUFPOL Position       */
497 #define QSPI_FIFOCTL_TXUFPOL_Msk          (0x1ul << QSPI_FIFOCTL_TXUFPOL_Pos)                /*!< QSPI_T::FIFOCTL: TXUFPOL Mask           */
498 
499 #define QSPI_FIFOCTL_TXUFIEN_Pos          (7)                                                /*!< QSPI_T::FIFOCTL: TXUFIEN Position       */
500 #define QSPI_FIFOCTL_TXUFIEN_Msk          (0x1ul << QSPI_FIFOCTL_TXUFIEN_Pos)                /*!< QSPI_T::FIFOCTL: TXUFIEN Mask           */
501 
502 #define QSPI_FIFOCTL_RXFBCLR_Pos          (8)                                                /*!< QSPI_T::FIFOCTL: RXFBCLR Position       */
503 #define QSPI_FIFOCTL_RXFBCLR_Msk          (0x1ul << QSPI_FIFOCTL_RXFBCLR_Pos)                /*!< QSPI_T::FIFOCTL: RXFBCLR Mask           */
504 
505 #define QSPI_FIFOCTL_TXFBCLR_Pos          (9)                                                /*!< QSPI_T::FIFOCTL: TXFBCLR Position       */
506 #define QSPI_FIFOCTL_TXFBCLR_Msk          (0x1ul << QSPI_FIFOCTL_TXFBCLR_Pos)                /*!< QSPI_T::FIFOCTL: TXFBCLR Mask           */
507 
508 #define QSPI_FIFOCTL_RXTH_Pos             (24)                                               /*!< QSPI_T::FIFOCTL: RXTH Position          */
509 #define QSPI_FIFOCTL_RXTH_Msk             (0x7ul << QSPI_FIFOCTL_RXTH_Pos)                   /*!< QSPI_T::FIFOCTL: RXTH Mask              */
510 
511 #define QSPI_FIFOCTL_TXTH_Pos             (28)                                               /*!< QSPI_T::FIFOCTL: TXTH Position          */
512 #define QSPI_FIFOCTL_TXTH_Msk             (0x7ul << QSPI_FIFOCTL_TXTH_Pos)                   /*!< QSPI_T::FIFOCTL: TXTH Mask              */
513 
514 #define QSPI_STATUS_BUSY_Pos              (0)                                                /*!< QSPI_T::STATUS: BUSY Position           */
515 #define QSPI_STATUS_BUSY_Msk              (0x1ul << QSPI_STATUS_BUSY_Pos)                    /*!< QSPI_T::STATUS: BUSY Mask               */
516 
517 #define QSPI_STATUS_UNITIF_Pos            (1)                                                /*!< QSPI_T::STATUS: UNITIF Position         */
518 #define QSPI_STATUS_UNITIF_Msk            (0x1ul << QSPI_STATUS_UNITIF_Pos)                  /*!< QSPI_T::STATUS: UNITIF Mask             */
519 
520 #define QSPI_STATUS_SSACTIF_Pos           (2)                                                /*!< QSPI_T::STATUS: SSACTIF Position        */
521 #define QSPI_STATUS_SSACTIF_Msk           (0x1ul << QSPI_STATUS_SSACTIF_Pos)                 /*!< QSPI_T::STATUS: SSACTIF Mask            */
522 
523 #define QSPI_STATUS_SSINAIF_Pos           (3)                                                /*!< QSPI_T::STATUS: SSINAIF Position        */
524 #define QSPI_STATUS_SSINAIF_Msk           (0x1ul << QSPI_STATUS_SSINAIF_Pos)                 /*!< QSPI_T::STATUS: SSINAIF Mask            */
525 
526 #define QSPI_STATUS_SSLINE_Pos            (4)                                                /*!< QSPI_T::STATUS: SSLINE Position         */
527 #define QSPI_STATUS_SSLINE_Msk            (0x1ul << QSPI_STATUS_SSLINE_Pos)                  /*!< QSPI_T::STATUS: SSLINE Mask             */
528 
529 #define QSPI_STATUS_SLVTOIF_Pos           (5)                                                /*!< QSPI_T::STATUS: SLVTOIF Position        */
530 #define QSPI_STATUS_SLVTOIF_Msk           (0x1ul << QSPI_STATUS_SLVTOIF_Pos)                 /*!< QSPI_T::STATUS: SLVTOIF Mask            */
531 
532 #define QSPI_STATUS_SLVBEIF_Pos           (6)                                                /*!< QSPI_T::STATUS: SLVBEIF Position        */
533 #define QSPI_STATUS_SLVBEIF_Msk           (0x1ul << QSPI_STATUS_SLVBEIF_Pos)                 /*!< QSPI_T::STATUS: SLVBEIF Mask            */
534 
535 #define QSPI_STATUS_SLVURIF_Pos           (7)                                                /*!< QSPI_T::STATUS: SLVURIF Position        */
536 #define QSPI_STATUS_SLVURIF_Msk           (0x1ul << QSPI_STATUS_SLVURIF_Pos)                 /*!< QSPI_T::STATUS: SLVURIF Mask            */
537 
538 #define QSPI_STATUS_RXEMPTY_Pos           (8)                                                /*!< QSPI_T::STATUS: RXEMPTY Position        */
539 #define QSPI_STATUS_RXEMPTY_Msk           (0x1ul << QSPI_STATUS_RXEMPTY_Pos)                 /*!< QSPI_T::STATUS: RXEMPTY Mask            */
540 
541 #define QSPI_STATUS_RXFULL_Pos            (9)                                                /*!< QSPI_T::STATUS: RXFULL Position         */
542 #define QSPI_STATUS_RXFULL_Msk            (0x1ul << QSPI_STATUS_RXFULL_Pos)                  /*!< QSPI_T::STATUS: RXFULL Mask             */
543 
544 #define QSPI_STATUS_RXTHIF_Pos            (10)                                               /*!< QSPI_T::STATUS: RXTHIF Position         */
545 #define QSPI_STATUS_RXTHIF_Msk            (0x1ul << QSPI_STATUS_RXTHIF_Pos)                  /*!< QSPI_T::STATUS: RXTHIF Mask             */
546 
547 #define QSPI_STATUS_RXOVIF_Pos            (11)                                               /*!< QSPI_T::STATUS: RXOVIF Position         */
548 #define QSPI_STATUS_RXOVIF_Msk            (0x1ul << QSPI_STATUS_RXOVIF_Pos)                  /*!< QSPI_T::STATUS: RXOVIF Mask             */
549 
550 #define QSPI_STATUS_RXTOIF_Pos            (12)                                               /*!< QSPI_T::STATUS: RXTOIF Position         */
551 #define QSPI_STATUS_RXTOIF_Msk            (0x1ul << QSPI_STATUS_RXTOIF_Pos)                  /*!< QSPI_T::STATUS: RXTOIF Mask             */
552 
553 #define QSPI_STATUS_QSPIENSTS_Pos          (15)                                              /*!< QSPI_T::STATUS: QSPIENSTS Position       */
554 #define QSPI_STATUS_QSPIENSTS_Msk          (0x1ul << QSPI_STATUS_QSPIENSTS_Pos)              /*!< QSPI_T::STATUS: QSPIENSTS Mask           */
555 
556 #define QSPI_STATUS_TXEMPTY_Pos           (16)                                               /*!< QSPI_T::STATUS: TXEMPTY Position        */
557 #define QSPI_STATUS_TXEMPTY_Msk           (0x1ul << QSPI_STATUS_TXEMPTY_Pos)                 /*!< QSPI_T::STATUS: TXEMPTY Mask            */
558 
559 #define QSPI_STATUS_TXFULL_Pos            (17)                                               /*!< QSPI_T::STATUS: TXFULL Position         */
560 #define QSPI_STATUS_TXFULL_Msk            (0x1ul << QSPI_STATUS_TXFULL_Pos)                  /*!< QSPI_T::STATUS: TXFULL Mask             */
561 
562 #define QSPI_STATUS_TXTHIF_Pos            (18)                                               /*!< QSPI_T::STATUS: TXTHIF Position         */
563 #define QSPI_STATUS_TXTHIF_Msk            (0x1ul << QSPI_STATUS_TXTHIF_Pos)                  /*!< QSPI_T::STATUS: TXTHIF Mask             */
564 
565 #define QSPI_STATUS_TXUFIF_Pos            (19)                                               /*!< QSPI_T::STATUS: TXUFIF Position         */
566 #define QSPI_STATUS_TXUFIF_Msk            (0x1ul << QSPI_STATUS_TXUFIF_Pos)                  /*!< QSPI_T::STATUS: TXUFIF Mask             */
567 
568 #define QSPI_STATUS_TXRXRST_Pos           (23)                                               /*!< QSPI_T::STATUS: TXRXRST Position        */
569 #define QSPI_STATUS_TXRXRST_Msk           (0x1ul << QSPI_STATUS_TXRXRST_Pos)                 /*!< QSPI_T::STATUS: TXRXRST Mask            */
570 
571 #define QSPI_STATUS_RXCNT_Pos             (24)                                               /*!< QSPI_T::STATUS: RXCNT Position          */
572 #define QSPI_STATUS_RXCNT_Msk             (0xful << QSPI_STATUS_RXCNT_Pos)                   /*!< QSPI_T::STATUS: RXCNT Mask              */
573 
574 #define QSPI_STATUS_TXCNT_Pos             (28)                                               /*!< QSPI_T::STATUS: TXCNT Position          */
575 #define QSPI_STATUS_TXCNT_Msk             (0xful << QSPI_STATUS_TXCNT_Pos)                   /*!< QSPI_T::STATUS: TXCNT Mask              */
576 
577 #define QSPI_TX_TX_Pos                    (0)                                                /*!< QSPI_T::TX: TX Position                 */
578 #define QSPI_TX_TX_Msk                    (0xfffffffful << QSPI_TX_TX_Pos)                   /*!< QSPI_T::TX: TX Mask                     */
579 
580 #define QSPI_RX_RX_Pos                    (0)                                                /*!< QSPI_T::RX: RX Position                 */
581 #define QSPI_RX_RX_Msk                    (0xfffffffful << QSPI_RX_RX_Pos)                   /*!< QSPI_T::RX: RX Mask                     */
582 
583 
584 /**@}*/ /* QSPI_CONST */
585 /**@}*/ /* end of QSPI register group */
586 /**@}*/ /* end of REGISTER group */
587 
588 #if defined ( __CC_ARM   )
589 #pragma no_anon_unions
590 #endif
591 
592 #endif /* __QSPI_REG_H__ */
593