mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 06:26:58 +07:00
34604086be
During the device tree integration of the various LPC32xx drivers, we agreed on using non-wildcard "compatible" strings. This change switches lpc32xx_ts touchscreen driver to use "nxp,lpc3220-tsc". Signed-off-by: Roland Stigge <stigge@antcom.de> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
17 lines
376 B
Plaintext
17 lines
376 B
Plaintext
* NXP LPC32xx SoC Touchscreen Controller (TSC)
|
|
|
|
Required properties:
|
|
- compatible: must be "nxp,lpc3220-tsc"
|
|
- reg: physical base address of the controller and length of memory mapped
|
|
region.
|
|
- interrupts: The TSC/ADC interrupt
|
|
|
|
Example:
|
|
|
|
tsc@40048000 {
|
|
compatible = "nxp,lpc3220-tsc";
|
|
reg = <0x40048000 0x1000>;
|
|
interrupt-parent = <&mic>;
|
|
interrupts = <39 0>;
|
|
};
|