Skip to content

Commit 2667465

Browse files
committed
uart8250: add IIR and LCR
1 parent b7c2c8c commit 2667465

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/périphériques/communication-serie/UART8250.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
| 0x0 (DLAB == 0) | Transmit Holding Register (THR) | ✔️ ||
1414
| 0x0 (DLAB == 0) | Receive Buffer Register (RBR) || ✔️ |
1515
| 0x1 (DLAB == 0) | Interrupt Enable Register (IER) | ✔️ | ✔️ |
16-
| 0x2 (⚠️UART16550 seulement) | FIFO Control Register (FCR) | ✔️ ||
16+
| 0x2 (⚠️UART16550 seulement) | FIFO Control Register (FCR) | ✔️ ||
1717
| 0x2 | Interrupt Identification Register (IIR) || ✔️ |
1818
| 0x3 | Line Control Register (LCR) | ✔️ | ✔️ |
1919
| 0x4 | Modem Control Register (MCR) | ✔️ | ✔️ |
@@ -42,8 +42,16 @@ Tout ce qui est reçu par l'UART sur la laison série sera accessible sur ce reg
4242

4343
### Interrupt Identification Register (IIR)
4444

45+
| 7-3 | 2-1 | 0 |
46+
|---------|--------------|-------------------|
47+
| reservé | Interrupt ID | Interrupt pending |
48+
4549
### Line Control Register (LCR)
4650

51+
| 7 | 6 | 5 | 4 | 3 | 2 | 1-0 |
52+
|------|-----------|--------------|--------------------|---------------|-----------|-----------------|
53+
| DLAB | Set Break | Stick parity | Even Parity Select | Parity enable | Stop Bits | Word length |
54+
4755
### Modem Control Register (MCR)
4856

4957
### Line Status Register (LSR)

0 commit comments

Comments
 (0)