1Device-Tree bindings for Mediatek consumer IR controller
2found in Mediatek SoC family
3
4Required properties:
5- compatible	    : "mediatek,mt7623-cir"
6- clocks	    : list of clock specifiers, corresponding to
7		      entries in clock-names property;
8- clock-names	    : should contain "clk" entries;
9- interrupts	    : should contain IR IRQ number;
10- reg		    : should contain IO map address for IR.
11
12Optional properties:
13- linux,rc-map-name : see rc.txt file in the same directory.
14
15Example:
16
17cir: cir@10013000 {
18	compatible = "mediatek,mt7623-cir";
19	reg = <0 0x10013000 0 0x1000>;
20	interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_LOW>;
21	clocks = <&infracfg CLK_INFRA_IRRX>;
22	clock-names = "clk";
23	linux,rc-map-name = "rc-rc6-mce";
24};
25