mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 05:55:18 +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>
27 lines
582 B
Plaintext
27 lines
582 B
Plaintext
Spreadtrum SC27xx Real Time Clock
|
|
|
|
Required properties:
|
|
- compatible: should be "sprd,sc2731-rtc".
|
|
- reg: address offset of rtc register.
|
|
- interrupts: rtc alarm interrupt.
|
|
|
|
Example:
|
|
|
|
sc2731_pmic: pmic@0 {
|
|
compatible = "sprd,sc2731";
|
|
reg = <0>;
|
|
spi-max-frequency = <26000000>;
|
|
interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
|
|
interrupt-controller;
|
|
#interrupt-cells = <2>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
rtc@280 {
|
|
compatible = "sprd,sc2731-rtc";
|
|
reg = <0x280>;
|
|
interrupt-parent = <&sc2731_pmic>;
|
|
interrupts = <2 IRQ_TYPE_LEVEL_HIGH>;
|
|
};
|
|
};
|