mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
e687abfe9d
Add devicetree binding documentations. Signed-off-by: Sangwon Jee <jeesw@melfas.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
22 lines
589 B
Plaintext
22 lines
589 B
Plaintext
* MELFAS MIP4 Touchscreen
|
|
|
|
Required properties:
|
|
- compatible: must be "melfas,mip4_ts"
|
|
- reg: I2C slave address of the chip (0x48 or 0x34)
|
|
- interrupt-parent: interrupt controller to which the chip is connected
|
|
- interrupts: interrupt to which the chip is connected
|
|
|
|
Optional properties:
|
|
- ce-gpios: GPIO connected to the CE (chip enable) pin of the chip
|
|
|
|
Example:
|
|
i2c@00000000 {
|
|
touchscreen: melfas_mip4@48 {
|
|
compatible = "melfas,mip4_ts";
|
|
reg = <0x48>;
|
|
interrupt-parent = <&gpio>;
|
|
interrupts = <0 IRQ_TYPE_EDGE_FALLING>;
|
|
ce-gpios = <&gpio 0 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
};
|