Commit 3696fc97 authored by Eugeniy Paltsev's avatar Eugeniy Paltsev Committed by Vineet Gupta

ARC: HAPS: use same UART configuration everywhere

For some reason we use ns8250 UART compatible on UP HAPS
configuration and ns16550a (which is ns8250 with FIFO support)
on SMP HAPS configuration.
Given that we have same UART IP with same IP configuration
on both HAPS configuration use ns16550a compatible everywhere.
Signed-off-by: default avatarEugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
Signed-off-by: default avatarVineet Gupta <vgupta@synopsys.com>
parent 4c36543e
...@@ -47,7 +47,7 @@ core_intc: interrupt-controller { ...@@ -47,7 +47,7 @@ core_intc: interrupt-controller {
}; };
uart0: serial@f0000000 { uart0: serial@f0000000 {
compatible = "ns8250"; compatible = "ns16550a";
reg = <0xf0000000 0x2000>; reg = <0xf0000000 0x2000>;
interrupts = <24>; interrupts = <24>;
clock-frequency = <50000000>; clock-frequency = <50000000>;
......
...@@ -54,7 +54,6 @@ idu_intc: idu-interrupt-controller { ...@@ -54,7 +54,6 @@ idu_intc: idu-interrupt-controller {
}; };
uart0: serial@f0000000 { uart0: serial@f0000000 {
/* compatible = "ns8250"; Doesn't use FIFOs */
compatible = "ns16550a"; compatible = "ns16550a";
reg = <0xf0000000 0x2000>; reg = <0xf0000000 0x2000>;
interrupt-parent = <&idu_intc>; interrupt-parent = <&idu_intc>;
......
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