scsi: MAINTAINERS: Update qla2xxx driver
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / media / sunxi-ir.txt
1 Device-Tree bindings for SUNXI IR controller found in sunXi SoC family
2
3 Required properties:
4 - compatible        : "allwinner,sun4i-a10-ir" or "allwinner,sun5i-a13-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: see rc.txt file in the same directory.
13 - resets : phandle + reset specifier pair
14 - clock-frequency  : IR Receiver clock frequency, in Hertz. Defaults to 8 MHz
15                      if missing.
16
17 Example:
18
19 ir0: ir@1c21800 {
20         compatible = "allwinner,sun4i-a10-ir";
21         clocks = <&apb0_gates 6>, <&ir0_clk>;
22         clock-names = "apb", "ir";
23         clock-frequency = <3000000>;
24         resets = <&apb0_rst 1>;
25         interrupts = <0 5 1>;
26         reg = <0x01C21800 0x40>;
27         linux,rc-map-name = "rc-rc6-mce";
28 };