mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-18 06:26:49 +07:00
aad2d4952d
Add selective auto-flow-control support for UniPhier serial driver. Signed-off-by: Dai Okamura <okamura.dai@socionext.com> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
23 lines
520 B
Plaintext
23 lines
520 B
Plaintext
UniPhier UART controller
|
|
|
|
Required properties:
|
|
- compatible: should be "socionext,uniphier-uart".
|
|
- reg: offset and length of the register set for the device.
|
|
- interrupts: a single interrupt specifier.
|
|
- clocks: phandle to the input clock.
|
|
|
|
Optional properties:
|
|
-auto-flow-control: enable automatic flow control support.
|
|
|
|
Example:
|
|
aliases {
|
|
serial0 = &serial0;
|
|
};
|
|
|
|
serial0: serial@54006800 {
|
|
compatible = "socionext,uniphier-uart";
|
|
reg = <0x54006800 0x40>;
|
|
interrupts = <0 33 4>;
|
|
clocks = <&uart_clk>;
|
|
};
|