mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
791d3ef2e1
'interrupt-parent' is often documented as part of define bindings, but it is really outside the scope of a device binding. It's never required in a given node as it is often inherited from a parent node. Or it can be implicit if a parent node is an 'interrupt-controller' node. So remove it from all the binding files. Cc: Mark Rutland <mark.rutland@arm.com> Cc: devicetree@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
26 lines
611 B
Plaintext
26 lines
611 B
Plaintext
Samsung tm2-touchkey
|
|
|
|
Required properties:
|
|
- compatible: must be "cypress,tm2-touchkey"
|
|
- reg: I2C address of the chip.
|
|
- interrupts: interrupt to which the chip is connected (see interrupt
|
|
binding[0]).
|
|
- vcc-supply : internal regulator output. 1.8V
|
|
- vdd-supply : power supply for IC 3.3V
|
|
|
|
[0]: Documentation/devicetree/bindings/interrupt-controller/interrupts.txt
|
|
|
|
Example:
|
|
&i2c0 {
|
|
/* ... */
|
|
|
|
touchkey@20 {
|
|
compatible = "cypress,tm2-touchkey";
|
|
reg = <0x20>;
|
|
interrupt-parent = <&gpa3>;
|
|
interrupts = <2 IRQ_TYPE_EDGE_FALLING>;
|
|
vcc-supply=<&ldo32_reg>;
|
|
vdd-supply=<&ldo33_reg>;
|
|
};
|
|
};
|