1* Rockchip RK1000 codec 2 3Required properties: 4 5- compatible: "rockchip,rk1000-codec" 6- reg : the I2C address of the device. 7- rockchip,spk-en-gpio: the enable gpio of spk. 8- rockchip,pa-en-time-ms: pa enable dealy time(ms). 9- rockchip,ctl: phandle to the rk1000 core controller. 10 11Example for rk1000 codec: 12 13rk1000_codec: rk1000-codec@60 { 14 compatible = "rockchip,rk1000_codec"; 15 reg = <0x60>; 16 rockchip,spk-en-gpio = <&gpio3 31 GPIO_ACTIVE_LOW>; 17 rockchip,pa-en-time-ms = <5000>; 18 rockchip,ctl = <&rk1000_ctl>; 19 status = "okay"; 20}; 21