1* Samsung Exynos Image Scaler
2
3Required properties:
4  - compatible : value should be one of the following:
5	(a) "samsung,exynos5420-scaler" for Scaler IP in Exynos5420
6	(b) "samsung,exynos5433-scaler" for Scaler IP in Exynos5433
7
8  - reg : Physical base address of the IP registers and length of memory
9	  mapped region.
10
11  - interrupts : Interrupt specifier for scaler interrupt, according to format
12		 specific to interrupt parent.
13
14  - clocks : Clock specifier for scaler clock, according to generic clock
15	     bindings. (See Documentation/devicetree/bindings/clock/exynos*.txt)
16
17  - clock-names : Names of clocks. For exynos scaler, it should be "mscl"
18		  on 5420 and "pclk", "aclk" and "aclk_xiu" on 5433.
19
20Example:
21	scaler@12800000 {
22		compatible = "samsung,exynos5420-scaler";
23		reg = <0x12800000 0x1294>;
24		interrupts = <0 220 IRQ_TYPE_LEVEL_HIGH>;
25		clocks = <&clock CLK_MSCL0>;
26		clock-names = "mscl";
27	};
28