driver: serial: fixed the buffer underflow issue when clearing the port.
Set DLAB bit before reading RDR to avoid buffer underflow. Signed-off-by: Peng Li <lipengit@gmail.com>
This commit is contained in:
parent
5540fa0028
commit
e28b7e04e2
1 changed files with 4 additions and 1 deletions
|
@ -339,7 +339,7 @@ static int uart_ns16550_configure(const struct device *dev,
|
||||||
{
|
{
|
||||||
struct uart_ns16550_dev_data_t * const dev_data = DEV_DATA(dev);
|
struct uart_ns16550_dev_data_t * const dev_data = DEV_DATA(dev);
|
||||||
const struct uart_ns16550_device_config * const dev_cfg = DEV_CFG(dev);
|
const struct uart_ns16550_device_config * const dev_cfg = DEV_CFG(dev);
|
||||||
|
uint8_t lcr_cache;
|
||||||
uint8_t mdc = 0U;
|
uint8_t mdc = 0U;
|
||||||
|
|
||||||
/* temp for return value if error occurs in this locked region */
|
/* temp for return value if error occurs in this locked region */
|
||||||
|
@ -466,7 +466,10 @@ static int uart_ns16550_configure(const struct device *dev,
|
||||||
);
|
);
|
||||||
|
|
||||||
/* clear the port */
|
/* clear the port */
|
||||||
|
lcr_cache = INBYTE(LCR(dev));
|
||||||
|
OUTBYTE(LCR(dev), LCR_DLAB | lcr_cache);
|
||||||
INBYTE(RDR(dev));
|
INBYTE(RDR(dev));
|
||||||
|
OUTBYTE(LCR(dev), lcr_cache);
|
||||||
|
|
||||||
/* disable interrupts */
|
/* disable interrupts */
|
||||||
OUTBYTE(IER(dev), 0x00);
|
OUTBYTE(IER(dev), 0x00);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue