SWCU195A December 2024 – May 2025 CC2744R7-Q1 , CC2745P10-Q1 , CC2745R10-Q1 , CC2745R7-Q1 , CC2755P10 , CC2755R10
Table 23-2 lists the memory-mapped registers for the UART registers. All register offset addresses not listed in Table 23-2 should be considered as reserved locations and the register contents should not be modified.
| Offset | Acronym | Register Name | Section |
|---|---|---|---|
| 0h | DR | Data | Section 23.7.1 |
| 4h | RSR_ECR | Status | Section 23.7.2 |
| 18h | FR | Flag | Section 23.7.3 |
| 20h | UARTILPR | IrDA Low-Power Counter Register | Section 23.7.4 |
| 24h | IBRD | Integer Baud-Rate Divisor | Section 23.7.5 |
| 28h | FBRD | Fractional Baud-Rate Divisor | Section 23.7.6 |
| 2Ch | LCRH | Line Control | Section 23.7.7 |
| 30h | CTL | Control | Section 23.7.8 |
| 34h | IFLS | Interrupt FIFO Level Select | Section 23.7.9 |
| 38h | IMSC | Interrupt Mask Set/Clear | Section 23.7.10 |
| 3Ch | RIS | Raw Interrupt Status | Section 23.7.11 |
| 40h | MIS | Masked Interrupt Status | Section 23.7.12 |
| 44h | ICR | Interrupt Clear | Section 23.7.13 |
| 48h | DMACTL | DMA Control | Section 23.7.14 |
Complex bit access types are encoded to fit into small table cells. Table 23-3 shows the codes that are used for access types in this section.
| Access Type | Code | Description |
|---|---|---|
| Read Type | ||
| R | R | Read |
| Write Type | ||
| W | W | Write |
| Reset or Default Value | ||
| -n | Value after reset or the default value | |
DR is shown in Table 23-4.
Return to the Summary Table.
Data
For words to be transmitted:
- if the FIFOs are enabled (LCRH.FEN = 1), data written to this location is pushed onto the transmit FIFO
- if the FIFOs are not enabled (LCRH.FEN = 0), data is stored in the transmitter holding register (the bottom word of the transmit FIFO).
The write operation initiates transmission from the UART. The data is prefixed with a start bit, appended with the appropriate parity bit (if parity is enabled), and a stop bit.
The resultant word is then transmitted.
For received words:
- if the FIFOs are enabled (LCRH.FEN = 1), the data byte and the 4-bit status (break, frame, parity, and overrun) is pushed onto the 12-bit wide receive FIFO
- if the FIFOs are not enabled (LCRH.FEN = 0), the data byte and status are stored in the receiving holding register (the bottom word of the receive FIFO).
The received data byte is read by performing reads from this register along with the corresponding status information. The status information can also be read by a read of the RSR_ECR register.
| Bit | Field | Type | Reset | Description |
|---|---|---|---|---|
| 31-12 | RESERVED | R | 0h | Reserved |
| 11 | OE | R | 0h | UART Overrun Error: This bit is set to 1 if data is received and the receive FIFO is already full. The FIFO contents remain valid because no more data is written when the FIFO is full, only the contents of the shift register are overwritten. This is cleared to 0 once there is an empty space in the FIFO and a new character can be written to it. |
| 10 | BE | R | 0h | UART Break Error: This bit is set to 1 if a break condition was detected, indicating that the received data input (UARTRXD input pin) was held LOW for longer than a full-word transmission time (defined as start, data, parity and stop bits). In FIFO mode, this error is associated with the character at the top of the FIFO (i.e., the oldest received data character since last read). When a break occurs, a 0 character is loaded into the FIFO. The next character is enabled after the receive data input (UARTRXD input pin) goes to a 1 (marking state), and the next valid start bit is received. |
| 9 | PE | R | 0h | UART Parity Error: When set to 1, it indicates that the parity of the received data character does not match the parity that the LCRH.EPS and LCRH.SPS select. In FIFO mode, this error is associated with the character at the top of the FIFO (i.e., the oldest received data character since last read). |
| 8 | FE | R | 0h | UART Framing Error: When set to 1, it indicates that the received character did not have a valid stop bit (a valid stop bit is 1). In FIFO mode, this error is associated with the character at the top of the FIFO (i.e., the oldest received data character since last read). |
| 7-0 | DATA | R/W | 0h | Data transmitted or received: On writes, the transmit data character is pushed into the FIFO. On reads, the oldest received data character since the last read is returned. |
RSR_ECR is shown in Table 23-5.
Return to the Summary Table.
Status
This register is mapped to the same address as ECR register. Reads from this address are associated with RSR_ECR register and return the receive status. Writes to this address are associated with ECR register and clear the receive status flags (framing, parity, break, and overrun errors).
If the status is read from this register, then the status information for break, framing and parity corresponds to the data character read from the Data Register DR, prior to reading the RSR_ECR. The status information for overrun is set immediately when an overrun condition occurs.
| Bit | Field | Type | Reset | Description |
|---|---|---|---|---|
| 31-4 | RESERVED | R | 0h | Reserved |
| 3 | OE | R/W | 0h | UART Overrun Error: This bit is set to 1 if data is received and the receive FIFO is already full. The FIFO contents remain valid because no more data is written when the FIFO is full, only the contents of the shift register are overwritten. This is cleared to 0 once there is an empty space in the FIFO and a new character can be written to it.
|
| 2 | BE | R/W | 0h | UART Break Error: This bit is set to 1 if a break condition was detected, indicating that the received data input (UARTRXD input pin) was held LOW for longer than a full-word transmission time (defined as start, data, parity and stop bits). When a break occurs, a 0 character is loaded into the FIFO. The next character is enabled after the receive data input (UARTRXD input pin) goes to a 1 (marking state), and the next valid start bit is received.
|
| 1 | PE | R/W | 0h | UART Parity Error: When set to 1, it indicates that the parity of the received data character does not match the parity that the LCRH.EPS and LCRH.SPS select.
|
| 0 | FE | R/W | 0h | UART Framing Error: When set to 1, it indicates that the received character did not have a valid stop bit (a valid stop bit is 1).
|
FR is shown in Table 23-6.
Return to the Summary Table.
Flag
Reads from this register return the UART flags.
| Bit | Field | Type | Reset | Description |
|---|---|---|---|---|
| 31-8 | RESERVED | R | 0h | Reserved |
| 7 | TXFE | R | 1h | UART Transmit FIFO Empty: The meaning of this bit depends on the state of LCRH.FEN . - If the FIFO is disabled, this bit is set when the transmit holding register is empty. - If the FIFO is enabled, this bit is set when the transmit FIFO is empty. This bit does not indicate if there is data in the transmit shift register. |
| 6 | RXFF | R | 0h | UART Receive FIFO Full: The meaning of this bit depends on the state of LCRH.FEN. - If the FIFO is disabled, this bit is set when the receive holding register is full. - If the FIFO is enabled, this bit is set when the receive FIFO is full. |
| 5 | TXFF | R | 0h | UART Transmit FIFO Full: Transmit FIFO full. The meaning of this bit depends on the state of LCRH.FEN. - If the FIFO is disabled, this bit is set when the transmit holding register is full. - If the FIFO is enabled, this bit is set when the transmit FIFO is full. |
| 4 | RXFE | R | 1h | UART Receive FIFO Empty: Receive FIFO empty. The meaning of this bit depends on the state of LCRH.FEN. - If the FIFO is disabled, this bit is set when the receive holding register is empty. - If the FIFO is enabled, this bit is set when the receive FIFO is empty. |
| 3 | BUSY | R | 0h | UART Busy: If this bit is set to 1, the UART is busy transmitting data. This bit remains set until the complete byte, including all the stop bits, has been sent from the shift register. This bit is set as soon as the transmit FIFO becomes non-empty, regardless of whether the UART is enabled or not. |
| 2-1 | RESERVED | R | 0h | Reserved |
| 0 | CTS | R | 1h | Clear To Send: This bit is the complement of the active-low UART CTS input pin. That is, the bit is 1 when CTS input pin is LOW. |
UARTILPR is shown in Table 23-7.
Return to the Summary Table.
IrDA Low-Power Counter Register.
This is an 8-bit register that stores the low-power counter divisor value used to generate the IrLPBaud16 signal by dividing down of UARTCLK.
| Bit | Field | Type | Reset | Description |
|---|---|---|---|---|
| 31-8 | RESERVED | R | 0h | Reserved |
| 7-0 | ILPDVSR | R/W | 0h | 8 bit low-power divisor value. In low-power IrDA mode the UART rejects random noise on the received serial data input by ignoring SIRIN pulses that are less than 3 periods of IrLPBaud16. |
IBRD is shown in Table 23-8.
Return to the Summary Table.
Integer Baud-Rate Divisor
If this register is modified while trasmission or reception is on-going, the baudrate will not be updated until transmission or reception of the current character is complete.
| Bit | Field | Type | Reset | Description |
|---|---|---|---|---|
| 31-16 | RESERVED | R | 0h | Reserved |
| 15-0 | DIVINT | R/W | 0h | The integer baud rate divisor: The baud rate divisor is calculated using the formula below: Baud rate divisor = (UART reference clock frequency) / (16 * Baud rate) Baud rate divisor must be minimum 1 and maximum 65535. That is, DIVINT=0 does not give a valid baud rate. Similarly, if DIVINT=0xFFFF, any non-zero values in FBRD.DIVFRAC will be illegal. A valid value must be written to this field before the UART can be used for RX or TX operations. |
FBRD is shown in Table 23-9.
Return to the Summary Table.
Fractional Baud-Rate Divisor
If this register is modified while trasmission or reception is on-going, the baudrate will not be updated until transmission or reception of the current character is complete.
| Bit | Field | Type | Reset | Description |
|---|---|---|---|---|
| 31-6 | RESERVED | R | 0h | Reserved |
| 5-0 | DIVFRAC | R/W | 0h | Fractional Baud-Rate Divisor: The baud rate divisor is calculated using the formula below: Baud rate divisor = (UART reference clock frequency) / (16 * Baud rate) Baud rate divisor must be minimum 1 and maximum 65535. That is, IBRD.DIVINT=0 does not give a valid baud rate. Similarly, if IBRD.DIVINT=0xFFFF, any non-zero values in DIVFRAC will be illegal. A valid value must be written to this field before the UART can be used for RX or TX operations. |
LCRH is shown in Table 23-10.
Return to the Summary Table.
Line Control
| Bit | Field | Type | Reset | Description |
|---|---|---|---|---|
| 31-11 | RESERVED | R | 0h | Reserved |
| 10-9 | DELIM | R/W | 0h | In UART LIN defines the length of DELIM field that has to be sent
|
| 8 | TXBRKSYNC | R/W | 0h | UART LIN mode TXBRKSYNC: 0: In LIN mode TXBRKSYNC will not be sent. 1: In LIN mode send TXBRKSYNC field and reset the LCRH.TXBRKSYNC bit. This bit has no effect when PEN disables parity checking and generation. |
| 7 | SPS | R/W | 0h | UART Stick Parity Select: 0: Stick parity is disabled 1: The parity bit is transmitted and checked as invert of EPS field (i.e. the parity bit is transmitted and checked as 1 when EPS = 0). This bit has no effect when PEN disables parity checking and generation. |
| 6-5 | WLEN | R/W | 0h | UART Word Length: These bits indicate the number of data bits transmitted or received in a frame.
|
| 4 | FEN | R/W | 0h | UART Enable FIFOs
|
| 3 | STP2 | R/W | 0h | UART Two Stop Bits Select: If this bit is set to 1, two stop bits are transmitted at the end of the frame. The receive logic does not check for two stop bits being received. |
| 2 | EPS | R/W | 0h | UART Even Parity Select
|
| 1 | PEN | R/W | 0h | UART Parity Enable This bit controls generation and checking of parity bit.
|
| 0 | BRK | R/W | 0h | UART Send Break If this bit is set to 1, a low-level is continually output on the UARTTXD output pin, after completing transmission of the current character. For the proper execution of the break command, the software must set this bit for at least two complete frames. For normal use, this bit must be cleared to 0. |
CTL is shown in Table 23-11.
Return to the Summary Table.
Control
| Bit | Field | Type | Reset | Description |
|---|---|---|---|---|
| 31-16 | RESERVED | R | 0h | Reserved |
| 15 | CTSEN | R/W | 0h | CTS hardware flow control enable
|
| 14 | RTSEN | R/W | 0h | RTS hardware flow control enable
|
| 13-12 | RESERVED | R | 0h | Reserved |
| 11 | RTS | R/W | 0h | Request to Send This bit is the complement of the active-low UART RTS output. That is, when the bit is programmed to a 1 then RTS output on the pins is LOW. |
| 10 | RESERVED | R | 0h | Reserved |
| 9 | RXE | R/W | 1h | UART Receive Enable If the UART is disabled in the middle of reception, it completes the current character before stopping.
|
| 8 | TXE | R/W | 1h | UART Transmit Enable If the UART is disabled in the middle of transmission, it completes the current character before stopping.
|
| 7 | LBE | R/W | 0h | UART Loop Back Enable Enabling the loop-back mode connects the UARTTXD output from the UART to UARTRXD input of the UART.
|
| 6 | FCEN | R/W | 0h | UART FIFO Concatenation Enable Enabling the FIFO concatenation in TX mode resulting in 16 TX buffers.
|
| 5 | DORMEN | R/W | 0h | DORMEN bit is only functionally makes sense for LIN mode of operation. When dormant mode is disabled, break and synch data shall be loaded to RX FIFO and associated interrupt flags shall be set as in normal UART operation. When dormant mode is enabled, break and synch data shall not be loaded to RX FIFO and RX FIFO shall be updated with actual data (PID) only after successful reception of break/synch fields.
|
| 4 | ABDEN | R/W | 0h | This configuration bit defines whether we want automatic baud rate detection enabled or not in the LIN mode of operation.
|
| 3 | LINEN | R/W | 0h | This is the LIN Mode of operation configuration bit.
|
| 2 | SIRLP | R/W | 0h | SIR low power IrDA mode This bit selects the IrDA encoding mode
|
| 1 | SIREN | R/W | 0h | SIR Enable This bit has no effect if UARTEN bit disables the UART.
|
| 0 | UARTEN | R/W | 0h | UART Enable
|
IFLS is shown in Table 23-12.
Return to the Summary Table.
Interrupt FIFO Level Select
| Bit | Field | Type | Reset | Description |
|---|---|---|---|---|
| 31-6 | RESERVED | R | 0h | Reserved |
| 5-3 | RXSEL | R/W | 2h | Receive interrupt FIFO level select: This field sets the trigger points for the receive interrupt. Values 0b101-0b111 are reserved.
|
| 2-0 | TXSEL | R/W | 2h | Transmit interrupt FIFO level select: This field sets the trigger points for the transmit interrupt. Values 0b101-0b111 are reserved.
|
IMSC is shown in Table 23-13.
Return to the Summary Table.
Interrupt Mask Set/Clear
| Bit | Field | Type | Reset | Description |
|---|---|---|---|---|
| 31-17 | RESERVED | R | 0h | Reserved |
| 16 | LINSYNCTOE | R/W | 0h | LIN Sync Time out error interrupt mask. A read returns the current mask for UART's LINSYNCTOE interrupt. On a write of 1, the mask of the LINSYNCTOE interrupt is set which means the interrupt state will be reflected in MIS.LINSYNCTOE. A write of 0 clears the mask which means MIS.LINSYNCTOE will not reflect the interrupt. |
| 15 | LINBRKTOE | R/W | 0h | LIN Break field Time out error interrupt mask. A read returns the current mask for UART's LINBRKTOE interrupt. On a write of 1, the mask of the LINBRKTOE interrupt is set which means the interrupt state will be reflected in MIS.LINBRKTOE. A write of 0 clears the mask which means MIS.LINBRKTOE will not reflect the interrupt. |
| 14 | LINBRK | R/W | 0h | LIN Break field recieved/detected interrupt mask. A read returns the current mask for UART's LINBRK interrupt. On a write of 1, the mask of the LINBRK interrupt is set which means the interrupt state will be reflected in MIS.LINBRK. A write of 0 clears the mask which means MIS.LINBRK will not reflect the interrupt. |
| 13 | RXDMADONE | R/W | 0h | RX DMA done interrupt mask. A read returns the current mask for UART's RXDMADONE interrupt. On a write of 1, the mask of the RXDMADONE interrupt is set which means the interrupt state will be reflected in MIS.RXDMADONE. A write of 0 clears the mask which means MIS.RXDMADONE will not reflect the interrupt. |
| 12 | TXDMADONE | R/W | 0h | TX DMA done interrupt mask. A read returns the current mask for UART's TXDMADONE interrupt. On a write of 1, the mask of the TXDMADONE interrupt is set which means the interrupt state will be reflected in MIS.TXDMADONE. A write of 0 clears the mask which means MIS.TXDMADONE will not reflect the interrupt. |
| 11 | EOT | R/W | 0h | End of Transmission interrupt mask. A read returns the current mask for UART's EoT interrupt. On a write of 1, the mask of the EoT interrupt is set which means the interrupt state will be reflected in MIS.EOT. A write of 0 clears the mask which means MIS.EOT will not reflect the interrupt. |
| 10 | OE | R/W | 0h | Overrun error interrupt mask. A read returns the current mask for UART's overrun error interrupt. On a write of 1, the mask of the overrun error interrupt is set which means the interrupt state will be reflected in MIS.OE. A write of 0 clears the mask which means MIS.OE will not reflect the interrupt. |
| 9 | BE | R/W | 0h | Break error interrupt mask. A read returns the current mask for UART's break error interrupt. On a write of 1, the mask of the overrun error interrupt is set which means the interrupt state will be reflected in MIS.BE. A write of 0 clears the mask which means MIS.BE will not reflect the interrupt. |
| 8 | PE | R/W | 0h | Parity error interrupt mask. A read returns the current mask for UART's parity error interrupt. On a write of 1, the mask of the overrun error interrupt is set which means the interrupt state will be reflected in MIS.PE. A write of 0 clears the mask which means MIS.PE will not reflect the interrupt. |
| 7 | FE | R/W | 0h | Framing error interrupt mask. A read returns the current mask for UART's framing error interrupt. On a write of 1, the mask of the overrun error interrupt is set which means the interrupt state will be reflected in MIS.FE. A write of 0 clears the mask which means MIS.FE will not reflect the interrupt. |
| 6 | RT | R/W | 0h | Receive timeout interrupt mask. A read returns the current mask for UART's receive timeout interrupt. On a write of 1, the mask of the overrun error interrupt is set which means the interrupt state will be reflected in MIS.RT. A write of 0 clears the mask which means this bitfield will not reflect the interrupt. The raw interrupt for receive timeout RIS.RT cannot be set unless the mask is set (RT = 1). This is because the mask acts as an enable for power saving. That is, the same status can be read from MIS.RT and RIS.RT. |
| 5 | TX | R/W | 0h | Transmit interrupt mask. A read returns the current mask for UART's transmit interrupt. On a write of 1, the mask of the overrun error interrupt is set which means the interrupt state will be reflected in MIS.TX. A write of 0 clears the mask which means MIS.TX will not reflect the interrupt. |
| 4 | RX | R/W | 0h | Receive interrupt mask. A read returns the current mask for UART's receive interrupt. On a write of 1, the mask of the overrun error interrupt is set which means the interrupt state will be reflected in MIS.RX. A write of 0 clears the mask which means MIS.RX will not reflect the interrupt. |
| 3-2 | RESERVED | R | 0h | Reserved |
| 1 | CTSM | R/W | 0h | Clear to Send (CTS) modem interrupt mask. A read returns the current mask for UART's clear to send interrupt. On a write of 1, the mask of the overrun error interrupt is set which means the interrupt state will be reflected in MIS.CTSM. A write of 0 clears the mask which means MIS.CTSM will not reflect the interrupt. |
| 0 | RESERVED | R | 0h | Reserved |
RIS is shown in Table 23-14.
Return to the Summary Table.
Raw Interrupt Status
| Bit | Field | Type | Reset | Description |
|---|---|---|---|---|
| 31-17 | RESERVED | R | 0h | Reserved |
| 16 | LINSYNCTOE | R | 0h | LIN SYNC field time out interrupt status: This field returns the raw interrupt state of whether sync field is measurable in UART's LIN mode of operation. This is set when the timer measuring the SYNC field overflows. |
| 15 | LINBRKTOE | R | 0h | LIN BRK field time out interrupt status: This field returns the raw interrupt state of whether break field is measurable in UART's LIN mode of operation. This is set when the timer measuring the Break field overflows. |
| 14 | LINBRK | R | 0h | LIN BRK detected interrupt status: This field returns the raw interrupt state of whether break field is recieved/detected in UART's LIN mode of operation. |
| 13 | RXDMADONE | R | 0h | RX DMA done interrupt status: This field returns the raw interrupt state of UART's RX DMA done interrupt. RX DMA done flag is set when you recieve RX DMA done status from dma module. |
| 12 | TXDMADONE | R | 0h | TX DMA done interrupt status: This field returns the raw interrupt state of UART's TX DMA done interrupt. TX DMA done flag is set when you recieve TX DMA done status from dma module. |
| 11 | EOT | R | 0h | End of Transmission interrupt status: This field returns the raw interrupt state of UART's end of transmission interrupt. End of transmission flag is set when all the Transmit data in the FIFO and on the TX Line is tranmitted. |
| 10 | OE | R | 0h | Overrun error interrupt status: This field returns the raw interrupt state of UART's overrun error interrupt. Overrun error occurs if data is received and the receive FIFO is full. |
| 9 | BE | R | 0h | Break error interrupt status: This field returns the raw interrupt state of UART's break error interrupt. Break error is set when a break condition is detected, indicating that the received data input (UARTRXD input pin) was held LOW for longer than a full-word transmission time (defined as start, data, parity and stop bits). |
| 8 | PE | R | 0h | Parity error interrupt status: This field returns the raw interrupt state of UART's parity error interrupt. Parity error is set if the parity of the received data character does not match the parity that the LCRH.EPS and LCRH.SPS select. |
| 7 | FE | R | 0h | Framing error interrupt status: This field returns the raw interrupt state of UART's framing error interrupt. Framing error is set if the received character does not have a valid stop bit (a valid stop bit is 1). |
| 6 | RT | R | 0h | Receive timeout interrupt status: This field returns the raw interrupt state of UART's receive timeout interrupt. The receive timeout interrupt is asserted when the receive FIFO is not empty, and no more data is received during a 32-bit period. The receive timeout interrupt is cleared either when the FIFO becomes empty through reading all the data, or when a 1 is written to ICR.RT. The raw interrupt for receive timeout cannot be set unless the mask is set (IMSC.RT = 1). This is because the mask acts as an enable for power saving. That is, the same status can be read from MIS.RT and RT. |
| 5 | TX | R | 0h | Transmit interrupt status: This field returns the raw interrupt state of UART's transmit interrupt. When FIFOs are enabled (LCRH.FEN = 1), the transmit interrupt is asserted if the number of bytes in transmit FIFO is equal to or lower than the programmed trigger level (IFLS.TXSEL). The transmit interrupt is cleared by writing data to the transmit FIFO until it becomes greater than the trigger level, or by clearing the interrupt through ICR.TX. When FIFOs are disabled (LCRH.FEN = 0), that is they have a depth of one location, the transmit interrupt is asserted if there is no data present in the transmitters single location. It is cleared by performing a single write to the transmit FIFO, or by clearing the interrupt through ICR.TX. |
| 4 | RX | R | 0h | Receive interrupt status: This field returns the raw interrupt state of UART's receive interrupt. When FIFOs are enabled (LCRH.FEN = 1), the receive interrupt is asserted if the receive FIFO reaches the programmed trigger level (IFLS.RXSEL). The receive interrupt is cleared by reading data from the receive FIFO until it becomes less than the trigger level, or by clearing the interrupt through ICR.RX. When FIFOs are disabled (LCRH.FEN = 0), that is they have a depth of one location, the receive interrupt is asserted if data is received thereby filling the location. The receive interrupt is cleared by performing a single read of the receive FIFO, or by clearing the interrupt through ICR.RX. |
| 3-2 | RESERVED | R | 0h | Reserved |
| 1 | CTSM | R | 0h | Clear to Send (CTS) modem interrupt status: This field returns the raw interrupt state of UART's clear to send interrupt. |
| 0 | RESERVED | R | 0h | Reserved |
MIS is shown in Table 23-15.
Return to the Summary Table.
Masked Interrupt Status
| Bit | Field | Type | Reset | Description |
|---|---|---|---|---|
| 31-17 | RESERVED | R | 0h | Reserved |
| 16 | LINSYNCTOE | R | 0h | LIN sync field time out error interrupt status: This field returns the masked interrupt state of the LIN sync timeout error interrupt which is the AND product of raw interrupt state RIS.LINSYNCTOERIS and the mask setting IMSC.LINSYNCTOEIM. |
| 15 | LINBRKTOE | R | 0h | LIN BRK field time out error interrupt status: This field returns the masked interrupt state of the LIN BRK timeout error interrupt which is the AND product of raw interrupt state RIS.LINBRKTOERIS and the mask setting IMSC.LINBRKTOEIM. |
| 14 | LINBRK | R | 0h | LIN BRK field detected interrupt status: This field returns the masked interrupt state of the LIN BRK detected interrupt which is the AND product of raw interrupt state RIS.LINBRKRIS and the mask setting IMSC.LINBRKIM. |
| 13 | RXDMADONE | R | 0h | RX DMA done interrupt status: This field returns the masked interrupt state of the RX DMA done interrupt which is the bitiwse AND product of raw interrupt state RIS.RXDMADONE and the mask setting IMSC.RXDMADONE. |
| 12 | TXDMADONE | R | 0h | TX DMA done interrupt status: This field returns the masked interrupt state of the TX DMA done interrupt which is the bitwise AND product of raw interrupt state RIS.TXDMADONE and the mask setting IMSC.TXDMADONE. |
| 11 | EOT | R | 0h | End of Transmission interrupt status: This field returns the masked interrupt state of the End of transmission interrupt which is the bitwise AND product of raw interrupt state RIS.EOT and the mask setting IMSC.EOT. |
| 10 | OE | R | 0h | Overrun error masked interrupt status: This field returns the masked interrupt state of the overrun interrupt which is the bitwise AND product of raw interrupt state RIS.OE and the mask setting IMSC.OE. |
| 9 | BE | R | 0h | Break error masked interrupt status: This field returns the masked interrupt state of the break error interrupt which is the bitiwse AND product of raw interrupt state RIS.BE and the mask setting IMSC.BE. |
| 8 | PE | R | 0h | Parity error masked interrupt status: This field returns the masked interrupt state of the parity error interrupt which is the bitiwise AND product of raw interrupt state RIS.PE and the mask setting IMSC.PE. |
| 7 | FE | R | 0h | Framing error masked interrupt status: Returns the masked interrupt state of the framing error interrupt which is the bitiwse AND product of raw interrupt state RIS.FE and the mask setting IMSC.FE. |
| 6 | RT | R | 0h | Receive timeout masked interrupt status: Returns the masked interrupt state of the receive timeout interrupt. The raw interrupt for receive timeout cannot be set unless the mask is set (IMSC.RT = 1). This is because the mask acts as an enable for power saving. That is, the same status can be read from MIS.RT and RIS.RT. |
| 5 | TX | R | 0h | Transmit masked interrupt status: This field returns the masked interrupt state of the transmit interrupt which is the bitiwse AND product of raw interrupt state RIS.TX and the mask setting IMSC.TX. |
| 4 | RX | R | 0h | Receive masked interrupt status: This field returns the masked interrupt state of the receive interrupt which is the bitwise AND product of raw interrupt state RIS.RX and the mask setting IMSC.RX. |
| 3-2 | RESERVED | R | 0h | Reserved |
| 1 | CTSM | R | 0h | Clear to Send (CTS) modem masked interrupt status: This field returns the masked interrupt state of the clear to send interrupt which is the bitwise AND product of raw interrupt state RIS.CTS and the mask setting IMSC.CTS. |
| 0 | RESERVED | R | 0h | Reserved |
ICR is shown in Table 23-16.
Return to the Summary Table.
Interrupt Clear
On a write of 1, the corresponding interrupt is cleared. A write of 0 has no effect.
| Bit | Field | Type | Reset | Description |
|---|---|---|---|---|
| 31-17 | RESERVED | R | 0h | Reserved |
| 16 | LINSYNCTOE | W | 0h | LIN SYNC timeout interrupt clear: Writing 1 to this field clears the rxdma done interrupt (RIS.LINSYNCTOE). Writing 0 has no effect. |
| 15 | LINBRKTOE | W | 0h | LIN BRK field timeout interrupt clear: Writing 1 to this field clears the rxdma done interrupt (RIS.LINBRKTOE). Writing 0 has no effect. |
| 14 | LINBRK | W | 0h | LIN BRK field detected interrupt clear: Writing 1 to this field clears the rxdma done interrupt (RIS.LINBRK). Writing 0 has no effect. |
| 13 | RXDMADONE | W | 0h | RX DMA Done interrupt clear: Writing 1 to this field clears the RX DMA done interrupt (RIS.RXDMADONE). Writing 0 has no effect. |
| 12 | TXDMADONE | W | 0h | TX DMA Done interrupt clear: Writing 1 to this field clears the TX DMA done interrupt (RIS.TXDMADONE). Writing 0 has no effect. |
| 11 | EOT | W | 0h | End of Transmission interrupt clear: Writing 1 to this field clears the End of Transmission interrupt (RIS.EOT). Writing 0 has no effect. |
| 10 | OE | W | 0h | Overrun error interrupt clear: Writing 1 to this field clears the overrun error interrupt (RIS.OE). Writing 0 has no effect. |
| 9 | BE | W | 0h | Break error interrupt clear: Writing 1 to this field clears the break error interrupt (RIS.BE). Writing 0 has no effect. |
| 8 | PE | W | 0h | Parity error interrupt clear: Writing 1 to this field clears the parity error interrupt (RIS.PE). Writing 0 has no effect. |
| 7 | FE | W | 0h | Framing error interrupt clear: Writing 1 to this field clears the framing error interrupt (RIS.FE). Writing 0 has no effect. |
| 6 | RT | W | 0h | Receive timeout interrupt clear: Writing 1 to this field clears the receive timeout interrupt (RIS.RT). Writing 0 has no effect. |
| 5 | TX | W | 0h | Transmit interrupt clear: Writing 1 to this field clears the transmit interrupt (RIS.TX). Writing 0 has no effect. |
| 4 | RX | W | 0h | Receive interrupt clear: Writing 1 to this field clears the receive interrupt (RIS.RX). Writing 0 has no effect. |
| 3-2 | RESERVED | R | 0h | Reads to this field return zero, writes to this field are ignored. Write 0 |
| 1 | CTSM | W | 0h | Clear to Send (CTS) modem interrupt clear: Writing 1 to this field clears the clear to send interrupt (RIS.CTS). Writing 0 has no effect. |
| 0 | RESERVED | R | 0h | Reads to this field return zero, writes to this field are ignored. Write 0. |
DMACTL is shown in Table 23-17.
Return to the Summary Table.
DMA Control
| Bit | Field | Type | Reset | Description |
|---|---|---|---|---|
| 31-3 | RESERVED | R | 0h | Reserved |
| 2 | DMAONERR | R/W | 0h | DMA on error. If this bit is set to 1, the DMA receive request outputs (for single and burst requests) are disabled when the UART error interrupt is asserted (more specifically if any of the error interrupts RIS.PERIS, RIS.BERIS, RIS.FERIS or RIS.OERIS are asserted). |
| 1 | TXDMAE | R/W | 0h | Transmit DMA enable. If this bit is set to 1, DMA for the transmit FIFO is enabled. |
| 0 | RXDMAE | R/W | 0h | Receive DMA enable. If this bit is set to 1, DMA for the receive FIFO is enabled. |