mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 08:46:49 +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>
19 lines
508 B
Plaintext
19 lines
508 B
Plaintext
* Xillybus driver for generic FPGA interface
|
|
|
|
Required properties:
|
|
- compatible: Should be "xillybus,xillybus-1.00.a"
|
|
- reg: Address and length of the register set for the device
|
|
- interrupts: Contains one interrupt node, typically consisting of three cells.
|
|
|
|
Optional properties:
|
|
- dma-coherent: Present if DMA operations are coherent
|
|
|
|
Example:
|
|
|
|
xillybus@ff200400 {
|
|
compatible = "xillybus,xillybus-1.00.a";
|
|
reg = < 0xff200400 0x00000080 >;
|
|
interrupts = < 0 40 1 >;
|
|
interrupt-parent = <&intc>;
|
|
} ;
|