forked from Minki/linux
06aa82e498
8250 uart driver currently supports only software assisted hw flow control. The software assisted hw flow control maintains a hw_stopped flag in the tty structure to stop and start transmission and use modem status interrupt for the event to drive the handshake signals. This is not needed if hw has flow control capabilities. This patch adds a DT attribute for enabling hw flow control for a uart port. Also skip stop and start if this flag is present in flag field of the port structure. Signed-off-by: Murali Karicheri <m-karicheri2@ti.com> CC: Rob Herring <robh+dt@kernel.org> CC: Pawel Moll <pawel.moll@arm.com> CC: Mark Rutland <mark.rutland@arm.com> CC: Ian Campbell <ijc+devicetree@hellion.org.uk> CC: Kumar Gala <galak@codeaurora.org> CC: Randy Dunlap <rdunlap@infradead.org> CC: Jiri Slaby <jslaby@suse.cz> CC: Santosh Shilimkar <santosh.shilimkar@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
51 lines
1.6 KiB
Plaintext
51 lines
1.6 KiB
Plaintext
* UART (Universal Asynchronous Receiver/Transmitter)
|
|
|
|
Required properties:
|
|
- compatible : one of:
|
|
- "ns8250"
|
|
- "ns16450"
|
|
- "ns16550a"
|
|
- "ns16550"
|
|
- "ns16750"
|
|
- "ns16850"
|
|
- "nvidia,tegra20-uart"
|
|
- "nxp,lpc3220-uart"
|
|
- "ibm,qpace-nwp-serial"
|
|
- "altr,16550-FIFO32"
|
|
- "altr,16550-FIFO64"
|
|
- "altr,16550-FIFO128"
|
|
- "serial" if the port type is unknown.
|
|
- reg : offset and length of the register set for the device.
|
|
- interrupts : should contain uart interrupt.
|
|
- clock-frequency : the input clock frequency for the UART
|
|
or
|
|
clocks phandle to refer to the clk used as per Documentation/devicetree
|
|
/bindings/clock/clock-bindings.txt
|
|
|
|
Optional properties:
|
|
- current-speed : the current active speed of the UART.
|
|
- reg-offset : offset to apply to the mapbase from the start of the registers.
|
|
- reg-shift : quantity to shift the register offsets by.
|
|
- reg-io-width : the size (in bytes) of the IO accesses that should be
|
|
performed on the device. There are some systems that require 32-bit
|
|
accesses to the UART (e.g. TI davinci).
|
|
- used-by-rtas : set to indicate that the port is in use by the OpenFirmware
|
|
RTAS and should not be registered.
|
|
- no-loopback-test: set to indicate that the port does not implements loopback
|
|
test mode
|
|
- fifo-size: the fifo size of the UART.
|
|
- auto-flow-control: one way to enable automatic flow control support. The
|
|
driver is allowed to detect support for the capability even without this
|
|
property.
|
|
- has-hw-flow-control: the hardware has flow control capability.
|
|
|
|
Example:
|
|
|
|
uart@80230000 {
|
|
compatible = "ns8250";
|
|
reg = <0x80230000 0x100>;
|
|
clock-frequency = <3686400>;
|
|
interrupts = <10>;
|
|
reg-shift = <2>;
|
|
};
|