-
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.
yaml --- r: 272927 b: refs/heads/master c: cfdad2a h: refs/heads/master i: 272925: 22e8880 272923: 3608494 272919: 9a410c7 272911: 3e02649 272895: 6dc06f5 v: v3
- Loading branch information
David Brown
committed
Aug 29, 2011
1 parent
d484782
commit bba289f
Showing
3 changed files
with
42 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: 886a451bd2491de3551c2aea2a2f155f159716c8 | ||
refs/heads/master: cfdad2aba7398021f6eec415b9271b9cb40065f9 |
27 changes: 27 additions & 0 deletions
27
trunk/Documentation/devicetree/bindings/tty/serial/msm_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,27 @@ | ||
* Qualcomm MSM UART | ||
|
||
Required properties: | ||
- compatible : | ||
- "qcom,msm-uart", and one of "qcom,msm-hsuart" or | ||
"qcom,msm-lsuart". | ||
- reg : offset and length of the register set for the device | ||
for the hsuart operating in compatible mode, there should be a | ||
second pair describing the gsbi registers. | ||
- interrupts : should contain the uart interrupt. | ||
|
||
There are two different UART blocks used in MSM devices, | ||
"qcom,msm-hsuart" and "qcom,msm-lsuart". The msm-serial driver is | ||
able to handle both of these, and matches against the "qcom,msm-uart" | ||
as the compatibility. | ||
|
||
The registers for the "qcom,msm-hsuart" device need to specify both | ||
register blocks, even for the common driver. | ||
|
||
Example: | ||
|
||
uart@19c400000 { | ||
compatible = "qcom,msm-hsuart", "qcom,msm-uart"; | ||
reg = <0x19c40000 0x1000>, | ||
<0x19c00000 0x1000>; | ||
interrupts = <195>; | ||
}; |
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