mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 21:02:19 +00: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>
18 lines
518 B
Plaintext
18 lines
518 B
Plaintext
Bindings, specific for the sh_mobile_ceu_camera.c driver:
|
|
- compatible: Should be "renesas,sh-mobile-ceu"
|
|
- reg: register base and size
|
|
- interrupts: the interrupt number
|
|
- renesas,max-width: maximum image width, supported on this SoC
|
|
- renesas,max-height: maximum image height, supported on this SoC
|
|
|
|
Example:
|
|
|
|
ceu0: ceu@fe910000 {
|
|
compatible = "renesas,sh-mobile-ceu";
|
|
reg = <0xfe910000 0xa0>;
|
|
interrupt-parent = <&intcs>;
|
|
interrupts = <0x880>;
|
|
renesas,max-width = <8188>;
|
|
renesas,max-height = <8188>;
|
|
};
|