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>
17 lines
467 B
Plaintext
17 lines
467 B
Plaintext
Marvell Orion SoC timer
|
|
|
|
Required properties:
|
|
- compatible: shall be "marvell,orion-timer"
|
|
- reg: base address of the timer register starting with TIMERS CONTROL register
|
|
- interrupts: should contain the interrupts for Timer0 and Timer1
|
|
- clocks: phandle of timer reference clock (tclk)
|
|
|
|
Example:
|
|
timer: timer {
|
|
compatible = "marvell,orion-timer";
|
|
reg = <0x20300 0x20>;
|
|
interrupt-parent = <&bridge_intc>;
|
|
interrupts = <1>, <2>;
|
|
clocks = <&core_clk 0>;
|
|
};
|