diff options
Diffstat (limited to 'Documentation/devicetree/bindings/media/sunxi-ir.txt')
-rw-r--r-- | Documentation/devicetree/bindings/media/sunxi-ir.txt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/media/sunxi-ir.txt b/Documentation/devicetree/bindings/media/sunxi-ir.txt new file mode 100644 index 000000000000..23dd5ad07b7c --- /dev/null +++ b/Documentation/devicetree/bindings/media/sunxi-ir.txt | |||
@@ -0,0 +1,23 @@ | |||
1 | Device-Tree bindings for SUNXI IR controller found in sunXi SoC family | ||
2 | |||
3 | Required properties: | ||
4 | - compatible : should be "allwinner,sun4i-a10-ir"; | ||
5 | - clocks : list of clock specifiers, corresponding to | ||
6 | entries in clock-names property; | ||
7 | - clock-names : should contain "apb" and "ir" entries; | ||
8 | - interrupts : should contain IR IRQ number; | ||
9 | - reg : should contain IO map address for IR. | ||
10 | |||
11 | Optional properties: | ||
12 | - linux,rc-map-name : Remote control map name. | ||
13 | |||
14 | Example: | ||
15 | |||
16 | ir0: ir@01c21800 { | ||
17 | compatible = "allwinner,sun4i-a10-ir"; | ||
18 | clocks = <&apb0_gates 6>, <&ir0_clk>; | ||
19 | clock-names = "apb", "ir"; | ||
20 | interrupts = <0 5 1>; | ||
21 | reg = <0x01C21800 0x40>; | ||
22 | linux,rc-map-name = "rc-rc6-mce"; | ||
23 | }; | ||