1Device-Tree bindings for Rockchip RK618 MFD driver 2 3Required properties: 4 - compatible: value should be one of the following: 5 "rockchip,rk618" 6 - reg: I2C device address. 7 - clocks: phandle to the clkin clock provider 8 - clock-names: Must be "clkin" 9 - reset-gpios: a GPIO spec for the reset pin 10 11Optional properties: 12 - power-supply: regulator to provide the supply voltage 13 - enable-gpios: a GPIO spec for the enable pin 14 15Example: 16 17&i2c5 { 18 status = "okay"; 19 20 rk618: rk618@50 { 21 compatible = "rockchip,rk618"; 22 reg = <0x50>; 23 pinctrl-names = "default"; 24 pinctrl-0 = <&i2s_8ch_mclk>; 25 clocks = <&cru SCLK_I2S_8CH_OUT>; 26 clock-names = "clkin"; 27 reset-gpios = <&gpio3 14 GPIO_ACTIVE_LOW>; 28 }; 29}; 30 31