mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2026-01-20 05:43:47 +00:00
The Allwinner A31 SoC (sun6i) has the same resistive touchpanel controller as on other sunxi platforms. The only difference between the variants is the control bits for enabling operations are left-shifted by 1 on the A31. Also update the comment for the original temperature sensor with information from Allwinner. Signed-off-by: Chen-Yu Tsai <wens@csie.org> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
23 lines
611 B
Plaintext
23 lines
611 B
Plaintext
sun4i resistive touchscreen controller
|
|
--------------------------------------
|
|
|
|
Required properties:
|
|
- compatible: "allwinner,sun4i-a10-ts" or "allwinner,sun6i-a31-ts"
|
|
- reg: mmio address range of the chip
|
|
- interrupts: interrupt to which the chip is connected
|
|
- #thermal-sensor-cells: shall be 0
|
|
|
|
Optional properties:
|
|
- allwinner,ts-attached: boolean indicating that an actual touchscreen is
|
|
attached to the controller
|
|
|
|
Example:
|
|
|
|
rtp: rtp@01c25000 {
|
|
compatible = "allwinner,sun4i-a10-ts";
|
|
reg = <0x01c25000 0x100>;
|
|
interrupts = <29>;
|
|
allwinner,ts-attached;
|
|
#thermal-sensor-cells = <0>;
|
|
};
|