mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
4da722ca19
Pretty much any node can have a status property, so it doesn't need to be in examples. Converted with the following command and removed examples with SoC and board specific splits: git grep -l -E 'status.*=.*' Documentation/devicetree/ | xargs sed -i -E '/\sstatus.*=.*"(disabled|ok|okay)/d' Acked-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Rob Herring <robh@kernel.org>
23 lines
555 B
Plaintext
23 lines
555 B
Plaintext
ETRAX FS UART
|
|
|
|
Required properties:
|
|
- compatible : "axis,etraxfs-uart"
|
|
- reg: offset and length of the register set for the device.
|
|
- interrupts: device interrupt
|
|
|
|
Optional properties:
|
|
- {dtr,dsr,rng,dcd}-gpios: specify a GPIO for DTR/DSR/RI/DCD
|
|
line respectively.
|
|
|
|
Example:
|
|
|
|
serial@b00260000 {
|
|
compatible = "axis,etraxfs-uart";
|
|
reg = <0xb0026000 0x1000>;
|
|
interrupts = <68>;
|
|
dtr-gpios = <&sysgpio 0 GPIO_ACTIVE_LOW>;
|
|
dsr-gpios = <&sysgpio 1 GPIO_ACTIVE_LOW>;
|
|
rng-gpios = <&sysgpio 2 GPIO_ACTIVE_LOW>;
|
|
dcd-gpios = <&sysgpio 3 GPIO_ACTIVE_LOW>;
|
|
};
|