diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2012-09-17 06:48:33 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-06-21 15:25:08 -0400 |
commit | 812e8b22ea55218449de310a666dd1ce16f924ed (patch) | |
tree | 02a82ccee3b390bb4aeceb9b51f861fbb61af7fe /Documentation/devicetree/bindings/media | |
parent | f146e4e79a6f5d457553dfe2ac66b93c7a39f676 (diff) |
[media] sh-mobile-ceu-driver: support max width and height in DT
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>
Diffstat (limited to 'Documentation/devicetree/bindings/media')
-rw-r--r-- | Documentation/devicetree/bindings/media/sh_mobile_ceu.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/media/sh_mobile_ceu.txt b/Documentation/devicetree/bindings/media/sh_mobile_ceu.txt new file mode 100644 index 000000000000..1ce4e46bcbb7 --- /dev/null +++ b/Documentation/devicetree/bindings/media/sh_mobile_ceu.txt | |||
@@ -0,0 +1,18 @@ | |||
1 | Bindings, specific for the sh_mobile_ceu_camera.c driver: | ||
2 | - compatible: Should be "renesas,sh-mobile-ceu" | ||
3 | - reg: register base and size | ||
4 | - interrupts: the interrupt number | ||
5 | - interrupt-parent: the interrupt controller | ||
6 | - renesas,max-width: maximum image width, supported on this SoC | ||
7 | - renesas,max-height: maximum image height, supported on this SoC | ||
8 | |||
9 | Example: | ||
10 | |||
11 | ceu0: ceu@0xfe910000 { | ||
12 | compatible = "renesas,sh-mobile-ceu"; | ||
13 | reg = <0xfe910000 0xa0>; | ||
14 | interrupt-parent = <&intcs>; | ||
15 | interrupts = <0x880>; | ||
16 | renesas,max-width = <8188>; | ||
17 | renesas,max-height = <8188>; | ||
18 | }; | ||