dts: add reg-shift property to all ns16550 devices
The ns16550 flags reg-shift property as optional. In case it is not supplied, the ns16550 driver relies on a value defined in <soc.h>, or, by default it takes 4 (shift by 2). This patch adds the property to all ns16550 nodes, with the following values: - 2 if SoC did not have any custom value defined by UART_REG_ADDR_INTERVAL (corresponds to 1 << 2 = 4) - If SoC defined DEFAULT_REG_INTERVAL (snps_arc_iot/it8xxx2), use such value (4=2, 2=1, 1=0). These changes will allow simplifying the ns16550 driver. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
5774228819
commit
4c8a8149de
19 changed files with 45 additions and 15 deletions
|
@ -29,6 +29,7 @@
|
|||
label = "UART_0";
|
||||
interrupt-parent = <&intc>;
|
||||
interrupts = <24 1>;
|
||||
reg-shift = <2>;
|
||||
};
|
||||
|
||||
chosen {
|
||||
|
|
|
@ -43,6 +43,7 @@
|
|||
label = "UART_0";
|
||||
interrupt-parent = <&intc>;
|
||||
interrupts = <24 1>;
|
||||
reg-shift = <2>;
|
||||
};
|
||||
|
||||
uart@f0002000 {
|
||||
|
@ -53,6 +54,7 @@
|
|||
label = "UART_1";
|
||||
interrupt-parent = <&intc>;
|
||||
interrupts = <25 1>;
|
||||
reg-shift = <2>;
|
||||
};
|
||||
|
||||
chosen {
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
interrupts = <4 IRQ_TYPE_LOWEST_EDGE_RISING 3>;
|
||||
interrupt-parent = <&intc>;
|
||||
current-speed = <115200>;
|
||||
|
||||
reg-shift = <2>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
|
|
|
@ -72,6 +72,7 @@
|
|||
reg = <0xf0005000 0x1000>;
|
||||
label = "UART_0";
|
||||
interrupts = <30 1>;
|
||||
reg-shift = <2>;
|
||||
};
|
||||
|
||||
uart1: uart@f0026000{
|
||||
|
@ -80,7 +81,7 @@
|
|||
reg = <0xf0026000 0x1000>;
|
||||
label = "UART_1";
|
||||
interrupts = <46 1>;
|
||||
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
@ -90,7 +91,7 @@
|
|||
reg = <0xf0027000 0x1000>;
|
||||
label = "UART_2";
|
||||
interrupts = <47 1>;
|
||||
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
@ -100,7 +101,7 @@
|
|||
reg = <0xf0028000 0x1000>;
|
||||
label = "UART_3";
|
||||
interrupts = <48 1>;
|
||||
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
|
|
@ -69,6 +69,7 @@
|
|||
interrupts = <86 0>;
|
||||
interrupt-parent = <&intc>;
|
||||
dlf = <0x01>;
|
||||
reg-shift = <2>;
|
||||
};
|
||||
|
||||
uart1: uart@80014100 {
|
||||
|
@ -78,7 +79,7 @@
|
|||
label = "UART_1";
|
||||
interrupts = <87 0>;
|
||||
interrupt-parent = <&intc>;
|
||||
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
@ -89,7 +90,7 @@
|
|||
label = "UART_2";
|
||||
interrupts = <88 0>;
|
||||
interrupt-parent = <&intc>;
|
||||
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
@ -100,7 +101,7 @@
|
|||
label = "UART_3";
|
||||
interrupts = <89 0>;
|
||||
interrupt-parent = <&intc>;
|
||||
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
|
|
@ -59,6 +59,7 @@
|
|||
reg = <0xf0004000 0x1000>;
|
||||
label = "UART_0";
|
||||
interrupt-parent = <&intc>;
|
||||
reg-shift = <2>;
|
||||
};
|
||||
|
||||
gpio0: gpio@f0002000 {
|
||||
|
|
|
@ -72,6 +72,7 @@
|
|||
reg = <0xf0008000 0x1000>;
|
||||
label = "UART_0";
|
||||
interrupt-parent = <&intc>;
|
||||
reg-shift = <2>;
|
||||
};
|
||||
|
||||
uart1: uart@f0009000 {
|
||||
|
@ -80,7 +81,7 @@
|
|||
reg = <0xf0009000 0x1000>;
|
||||
label = "UART_1";
|
||||
interrupt-parent = <&intc>;
|
||||
|
||||
reg-shift = <2>;
|
||||
};
|
||||
|
||||
uart2: uart@f000a000 {
|
||||
|
@ -89,7 +90,7 @@
|
|||
reg = <0xf000a000 0x1000>;
|
||||
label = "UART_2";
|
||||
interrupt-parent = <&intc>;
|
||||
|
||||
reg-shift = <2>;
|
||||
};
|
||||
|
||||
gpio0: gpio@f0002000 {
|
||||
|
|
|
@ -35,6 +35,7 @@
|
|||
interrupts = <8 0>;
|
||||
status = "disabled";
|
||||
label = "UART_5";
|
||||
reg-shift = <2>;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
clock-frequency = <25000000>;
|
||||
interrupts = <MCU_AON_UART_INTR 3>;
|
||||
label = "UART_0";
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
@ -47,6 +48,7 @@
|
|||
clock-frequency = <100000000>;
|
||||
interrupts = <UART0_INTR 3>;
|
||||
label = "UART_1";
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
reg = <0x40020000 0x400>;
|
||||
clock-frequency = <25000000>;
|
||||
label = "CRMU_UART";
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
@ -24,6 +25,7 @@
|
|||
reg = <0x48100000 0x400>;
|
||||
clock-frequency = <100000000>;
|
||||
label = "CCG_UART0";
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
uart0: uart@40020000 {
|
||||
compatible = "ns16550";
|
||||
reg = <0x40020000 0x400>;
|
||||
reg-shift = <2>;
|
||||
clock-frequency = <25000000>;
|
||||
label = "CRMU_UART";
|
||||
status = "disabled";
|
||||
|
@ -22,6 +23,7 @@
|
|||
uart1: uart@48100000 {
|
||||
compatible = "ns16550";
|
||||
reg = <0x48100000 0x400>;
|
||||
reg-shift = <2>;
|
||||
clock-frequency = <100000000>;
|
||||
label = "CCG_UART0";
|
||||
status = "disabled";
|
||||
|
|
|
@ -78,6 +78,7 @@
|
|||
interrupts = <GIC_SPI 54 IRQ_TYPE_LEVEL IRQ_DEFAULT_PRIORITY>;
|
||||
clock-frequency = <350000000>;
|
||||
label = "UART_1";
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
interrupts = <1>;
|
||||
clock-frequency = <50000000>;
|
||||
label = "UART_0";
|
||||
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
clock-frequency = <50000000>;
|
||||
interrupts = <1 0>;
|
||||
label = "UART_0";
|
||||
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
|
|
@ -505,6 +505,7 @@
|
|||
clock-frequency = <1804800>;
|
||||
interrupts = <38 IRQ_TYPE_EDGE_RISING>;
|
||||
interrupt-parent = <&intc>;
|
||||
reg-shift = <0>;
|
||||
};
|
||||
uart2: uart@f02800 {
|
||||
compatible = "ns16550";
|
||||
|
@ -515,6 +516,7 @@
|
|||
clock-frequency = <1804800>;
|
||||
interrupts = <39 IRQ_TYPE_EDGE_RISING>;
|
||||
interrupt-parent = <&intc>;
|
||||
reg-shift = <0>;
|
||||
};
|
||||
|
||||
ite_uart1_wrapper: uartwrapper@f02720 {
|
||||
|
|
|
@ -46,6 +46,7 @@
|
|||
compatible = "ns16550";
|
||||
|
||||
reg = <PCIE_BDF(0,0x18,0) PCIE_ID(0x8086,0x5abc)>;
|
||||
reg-shift = <2>;
|
||||
|
||||
label = "UART_0";
|
||||
clock-frequency = <1843200>;
|
||||
|
@ -59,6 +60,7 @@
|
|||
compatible = "ns16550";
|
||||
|
||||
reg = <PCIE_BDF(0,0x18,1) PCIE_ID(0x8086,0x5abe)>;
|
||||
reg-shift = <2>;
|
||||
|
||||
label = "UART_1";
|
||||
clock-frequency = <1843200>;
|
||||
|
@ -73,6 +75,7 @@
|
|||
compatible = "ns16550";
|
||||
|
||||
reg = <PCIE_BDF(0,0x18,2) PCIE_ID(0x8086,0x5ac0)>;
|
||||
reg-shift = <2>;
|
||||
|
||||
label = "UART_2";
|
||||
clock-frequency = <1843200>;
|
||||
|
@ -87,6 +90,7 @@
|
|||
compatible = "ns16550";
|
||||
|
||||
reg = <PCIE_BDF(0,0x18,3) PCIE_ID(0x8086,0x5aee)>;
|
||||
reg-shift = <2>;
|
||||
|
||||
label = "UART_3";
|
||||
clock-frequency = <1843200>;
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
clock-frequency = <1843200>;
|
||||
interrupts = <4 IRQ_TYPE_LOWEST_EDGE_RISING 3>;
|
||||
interrupt-parent = <&intc>;
|
||||
|
||||
reg-shift = <0>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
@ -57,7 +57,7 @@
|
|||
clock-frequency = <1843200>;
|
||||
interrupts = <3 IRQ_TYPE_LOWEST_EDGE_RISING 3>;
|
||||
interrupt-parent = <&intc>;
|
||||
|
||||
reg-shift = <0>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
|
|
@ -61,6 +61,7 @@
|
|||
compatible = "ns16550";
|
||||
|
||||
reg = <PCIE_BDF(0,0x1e,0) PCIE_ID(0x8086,0x4b28)>;
|
||||
reg-shift = <2>;
|
||||
|
||||
label = "UART_0";
|
||||
clock-frequency = <1843200>;
|
||||
|
@ -74,6 +75,7 @@
|
|||
compatible = "ns16550";
|
||||
|
||||
reg = <PCIE_BDF(0,0x1e,1) PCIE_ID(0x8086,0x4b29)>;
|
||||
reg-shift = <2>;
|
||||
|
||||
label = "UART_1";
|
||||
clock-frequency = <1843200>;
|
||||
|
@ -88,6 +90,7 @@
|
|||
compatible = "ns16550";
|
||||
|
||||
reg = <PCIE_BDF(0,0x19,2) PCIE_ID(0x8086,0x4b4d)>;
|
||||
reg-shift = <2>;
|
||||
|
||||
label = "UART_2";
|
||||
clock-frequency = <1843200>;
|
||||
|
@ -102,6 +105,7 @@
|
|||
compatible = "ns16550";
|
||||
|
||||
reg = <PCIE_BDF(0,0x11,0) PCIE_ID(0x8086,0x4b96)>;
|
||||
reg-shift = <2>;
|
||||
|
||||
label = "UART_PSE_0";
|
||||
clock-frequency = <1843200>;
|
||||
|
@ -116,6 +120,7 @@
|
|||
compatible = "ns16550";
|
||||
|
||||
reg = <PCIE_BDF(0,0x11,1) PCIE_ID(0x8086,0x4b97)>;
|
||||
reg-shift = <2>;
|
||||
|
||||
label = "UART_PSE_1";
|
||||
clock-frequency = <1843200>;
|
||||
|
@ -130,6 +135,7 @@
|
|||
compatible = "ns16550";
|
||||
|
||||
reg = <PCIE_BDF(0,0x11,2) PCIE_ID(0x8086,0x4b98)>;
|
||||
reg-shift = <2>;
|
||||
|
||||
label = "UART_PSE_2";
|
||||
clock-frequency = <1843200>;
|
||||
|
@ -144,6 +150,7 @@
|
|||
compatible = "ns16550";
|
||||
|
||||
reg = <PCIE_BDF(0,0x11,3) PCIE_ID(0x8086,0x4b99)>;
|
||||
reg-shift = <2>;
|
||||
|
||||
label = "UART_PSE_3";
|
||||
clock-frequency = <1843200>;
|
||||
|
@ -158,6 +165,7 @@
|
|||
compatible = "ns16550";
|
||||
|
||||
reg = <PCIE_BDF(0,0x11,4) PCIE_ID(0x8086,0x4b9a)>;
|
||||
reg-shift = <2>;
|
||||
|
||||
label = "UART_PSE_4";
|
||||
clock-frequency = <1843200>;
|
||||
|
@ -172,6 +180,7 @@
|
|||
compatible = "ns16550";
|
||||
|
||||
reg = <PCIE_BDF(0,0x11,5) PCIE_ID(0x8086,0x4b9b)>;
|
||||
reg-shift = <2>;
|
||||
|
||||
label = "UART_PSE_5";
|
||||
clock-frequency = <1843200>;
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
clock-frequency = <1843200>;
|
||||
interrupts = <4 IRQ_TYPE_LOWEST_EDGE_RISING 3>;
|
||||
interrupt-parent = <&intc>;
|
||||
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
@ -57,7 +57,7 @@
|
|||
clock-frequency = <1843200>;
|
||||
interrupts = <3 IRQ_TYPE_LOWEST_EDGE_RISING 3>;
|
||||
interrupt-parent = <&intc>;
|
||||
|
||||
reg-shift = <2>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue