xref: /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/mfd/rk1000-core.txt (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1RK1000 Multi-functional device
2
3The RK1000-CORE are RK1000 control register block.
4The chip is connected to an i2c bus.
5
6
7Required properties:
8- compatible : "rockchip,rk1000-ctl"
9- reg: I2C slave address
10- reset-gpios : the reset pin
11- clocks : phandle and clock specifier
12- clock-names : "mclk"
13
14Example:
15	rk1000-ctl@40 {
16		compatible = "rockchip,rk1000-ctl";
17		reg = <0x40>;
18		reset-gpios = <&gpio0 1 GPIO_ACTIVE_LOW>;
19		clocks = <&cru SCLK_I2S_8CH_OUT>;
20		clock-names = "mclk";
21		pinctrl-names = "default";
22		pinctrl-0 = <&i2s_8ch_bus>;
23		status = "okay";
24	};
25