-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jamie Iles
authored and
Grant Likely
committed
Jun 27, 2011
1 parent
f63e501
commit 1e5af4a
Showing
2 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 15c3597d6ea47e8f3caf068887c4666165df63ad | ||
refs/heads/master: 61ab1a90d81b5b8a53fc221a3665715c61614fb7 |
33 changes: 33 additions & 0 deletions
33
trunk/Documentation/devicetree/bindings/tty/serial/of-serial.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
* UART (Universal Asynchronous Receiver/Transmitter) | ||
|
||
Required properties: | ||
- compatible : one of: | ||
- "ns8250" | ||
- "ns16450" | ||
- "ns16550a" | ||
- "ns16550" | ||
- "ns16750" | ||
- "ns16850" | ||
- "nvidia,tegra250-uart" | ||
- "ibm,qpace-nwp-serial" | ||
- "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. | ||
|
||
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. | ||
- used-by-rtas : set to indicate that the port is in use by the OpenFirmware | ||
RTAS and should not be registered. | ||
|
||
Example: | ||
|
||
uart@80230000 { | ||
compatible = "ns8250"; | ||
reg = <0x80230000 0x100>; | ||
clock-frequency = <3686400>; | ||
interrupts = <10>; | ||
reg-shift = <2>; | ||
}; |