mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
812e8b22ea
Some CEU implementations have non-standard (larger) maximum supported width and height values. Add two OF properties to specify them. Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
18 lines
566 B
Text
18 lines
566 B
Text
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
|
|
- interrupt-parent: the interrupt controller
|
|
- renesas,max-width: maximum image width, supported on this SoC
|
|
- renesas,max-height: maximum image height, supported on this SoC
|
|
|
|
Example:
|
|
|
|
ceu0: ceu@0xfe910000 {
|
|
compatible = "renesas,sh-mobile-ceu";
|
|
reg = <0xfe910000 0xa0>;
|
|
interrupt-parent = <&intcs>;
|
|
interrupts = <0x880>;
|
|
renesas,max-width = <8188>;
|
|
renesas,max-height = <8188>;
|
|
};
|