-
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.
Input: lpc32xx_ts - add device tree support
This change implements device tree support for the LPC32xx SoC's touchscreen controller. Signed-off-by: Roland Stigge <stigge@antcom.de> Reviewed-by: Thierry Reding <thierry.reding@avionic-design.de> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
- Loading branch information
Roland Stigge
authored and
Dmitry Torokhov
committed
Apr 21, 2012
1 parent
b5e9528
commit 5cb727a
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
Documentation/devicetree/bindings/input/touchscreen/lpc32xx-tsc.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,16 @@ | ||
* NXP LPC32xx SoC Touchscreen Controller (TSC) | ||
|
||
Required properties: | ||
- compatible: must be "nxp,lpc32xx-tsc" | ||
- reg: physical base address of the controller and length of memory mapped | ||
region. | ||
- interrupts: The TSC/ADC interrupt | ||
|
||
Example: | ||
|
||
tsc@40048000 { | ||
compatible = "nxp,lpc32xx-tsc"; | ||
reg = <0x40048000 0x1000>; | ||
interrupt-parent = <&mic>; | ||
interrupts = <39 0>; | ||
}; |
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