mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
596f93f50e
This patch adds a driver for the 3 High Speed UARTs of the LPC32xx SoC that support up to 921600bps. These UARTs are different from the 4 "Standard" UARTs of the LPC32xx. Signed-off-by: Roland Stigge <stigge@antcom.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
15 lines
322 B
Plaintext
15 lines
322 B
Plaintext
* NXP LPC32xx SoC High Speed UART
|
|
|
|
Required properties:
|
|
- compatible: Should be "nxp,lpc3220-hsuart"
|
|
- reg: Should contain registers location and length
|
|
- interrupts: Should contain interrupt
|
|
|
|
Example:
|
|
|
|
uart1: serial@40014000 {
|
|
compatible = "nxp,lpc3220-hsuart";
|
|
reg = <0x40014000 0x1000>;
|
|
interrupts = <26 0>;
|
|
};
|