1* Samsung Image Rotator
2
3Required properties:
4  - compatible : value should be one of the following:
5	* "samsung,s5pv210-rotator" for Rotator IP in S5PV210
6	* "samsung,exynos4210-rotator" for Rotator IP in Exynos4210
7	* "samsung,exynos4212-rotator" for Rotator IP in Exynos4212/4412
8	* "samsung,exynos5250-rotator" for Rotator IP in Exynos5250
9
10  - reg : Physical base address of the IP registers and length of memory
11	  mapped region.
12
13  - interrupts : Interrupt specifier for rotator interrupt, according to format
14		 specific to interrupt parent.
15
16  - clocks : Clock specifier for rotator clock, according to generic clock
17	     bindings. (See Documentation/devicetree/bindings/clock/exynos*.txt)
18
19  - clock-names : Names of clocks. For exynos rotator, it should be "rotator".
20
21Example:
22	rotator@12810000 {
23		compatible = "samsung,exynos4210-rotator";
24		reg = <0x12810000 0x1000>;
25		interrupts = <0 83 0>;
26		clocks = <&clock 278>;
27		clock-names = "rotator";
28	};
29