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
570 B
Plaintext
26 lines
570 B
Plaintext
Timer64
|
|
-------
|
|
|
|
The timer64 node describes C6X event timers.
|
|
|
|
Required properties:
|
|
|
|
- compatible: must be "ti,c64x+timer64"
|
|
- reg: base address and size of register region
|
|
- interrupts: interrupt id
|
|
|
|
Optional properties:
|
|
|
|
- ti,dscr-dev-enable: Device ID used to enable timer IP through DSCR interface.
|
|
|
|
- ti,core-mask: on multi-core SoCs, bitmask of cores allowed to use this timer.
|
|
|
|
Example:
|
|
timer0: timer@25e0000 {
|
|
compatible = "ti,c64x+timer64";
|
|
ti,core-mask = < 0x01 >;
|
|
reg = <0x25e0000 0x40>;
|
|
interrupt-parent = <&megamod_pic>;
|
|
interrupts = < 16 >;
|
|
};
|