1Inno audio codec for RK3036
2
3Inno audio codec is integrated inside RK3036 SoC.
4
5Required properties:
6- compatible : Should be "rockchip,rk3036-codec".
7- reg : The registers of codec.
8- clock-names : Should be "acodec_pclk".
9- clocks : The clock of codec.
10- rockchip,grf : The phandle of grf device node.
11
12Example:
13
14	acodec: acodec-ana@20030000 {
15		compatible = "rk3036-codec";
16		reg = <0x20030000 0x4000>;
17		rockchip,grf = <&grf>;
18		clock-names = "acodec_pclk";
19		clocks = <&cru ACLK_VCODEC>;
20	};
21