Commit ac5ced91 authored by Roland Stigge's avatar Roland Stigge

ARM: LPC32xx: High Speed UART configuration via DT

This patch fixes the DTS files for the High Speed UARTs 1, 2 and 7 of the
LPC32xx SoC, adjusting the compatible strings, adding interrupts and status
configuration. On the PHY3250 reference board, UART2 is enabled.
Signed-off-by: default avatarRoland Stigge <stigge@antcom.de>
Acked-by: default avatarAlexandre Pereira da Silva <aletes.xgr@gmail.com>
parent c70426f1
...@@ -212,18 +212,24 @@ mic: interrupt-controller@40008000 { ...@@ -212,18 +212,24 @@ mic: interrupt-controller@40008000 {
}; };
uart1: serial@40014000 { uart1: serial@40014000 {
compatible = "nxp,serial"; compatible = "nxp,lpc3220-hsuart";
reg = <0x40014000 0x1000>; reg = <0x40014000 0x1000>;
interrupts = <26 0>;
status = "disabled";
}; };
uart2: serial@40018000 { uart2: serial@40018000 {
compatible = "nxp,serial"; compatible = "nxp,lpc3220-hsuart";
reg = <0x40018000 0x1000>; reg = <0x40018000 0x1000>;
interrupts = <25 0>;
status = "disabled";
}; };
uart7: serial@4001C000 { uart7: serial@4001c000 {
compatible = "nxp,serial"; compatible = "nxp,lpc3220-hsuart";
reg = <0x4001C000 0x1000>; reg = <0x4001c000 0x1000>;
interrupts = <24 0>;
status = "disabled";
}; };
rtc@40024000 { rtc@40024000 {
......
...@@ -148,6 +148,10 @@ sd@20098000 { ...@@ -148,6 +148,10 @@ sd@20098000 {
}; };
fab { fab {
uart2: serial@40018000 {
status = "okay";
};
tsc@40048000 { tsc@40048000 {
status = "okay"; status = "okay";
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment