search for: com_line_status_reg

Displaying 2 results from an estimated 2 matches for "com_line_status_reg".

2013 Jul 12
0
[PATCH 001/001] core/serial: Add support for serial output functions.
.../* Interrupt Enable Register */ +#define COM_INTR_ID_REG 2 /* Interrupt Ident Register (IN) */ +#define COM_FIFO_CTRL_REG 2 /* FIFO Control Register (OUT) */ +#define COM_LINE_CTRL_REG 3 /* Line Control Register */ +#define COM_MODEM_CTRL_REG 4 /* Modem Control Register */ +#define COM_LINE_STATUS_REG 5 /* Line Status Register */ + +/* Line status register fields */ +#define COM_LINE_STATUS_DATA 0x01 /* Data available */ +#define COM_LINE_STATUS_RDY 0x20 /* Transmitter ready */ +#define COM_LINE_STATUS_OFF 0x40 /* Transmitter off */ + +/* Modem ctrl register fields */ +#define COM...
2013 Jul 12
2
[PATCH 001/001] core/serial: Add support for serial output functions.
...TR_ENABLE_REG 1 /* Interrupt Enable Register */ +#define COM_INTR_ID_REG 2 /* Interrupt Ident Register (IN) */ +#define COM_FIFO_CTRL_REG 2 /* FIFO Control Register (OUT) */ +#define COM_LINE_CTRL_REG 3 /* Line Control Register */ +#define COM_MODEM_CTRL_REG 4 /* Modem Control Register */ +#define COM_LINE_STATUS_REG 5 /* Line Status Register */ + +/* Line status register fields */ +#define COM_LINE_STATUS_DATA 0x01 /* Data available */ +#define COM_LINE_STATUS_RDY 0x20 /* Transmitter ready */ +#define COM_LINE_STATUS_OFF 0x40 /* Transmitter off */ + +/* Modem ctrl register fields */ +#define COM_MODEM_CTRL_RTS...