brintos

brintos / linux-shallow public Read only

0
0
Text · 589 B · e0d4e95 Raw
29 lines · plain
1MAX9860 Mono Audio Voice Codec2 3Required properties:4 5  - compatible : "maxim,max9860"6 7  - reg : the I2C address of the device8 9  - AVDD-supply, DVDD-supply and DVDDIO-supply : power supplies for10    the device, as covered in bindings/regulator/regulator.txt11 12  - clock-names : Required element: "mclk".13 14  - clocks : A clock specifier for the clock connected as MCLK.15 16Examples:17 18	max9860: max9860@10 {19		compatible = "maxim,max9860";20		reg = <0x10>;21 22		AVDD-supply = <&reg_1v8>;23		DVDD-supply = <&reg_1v8>;24		DVDDIO-supply = <&reg_3v0>;25 26		clock-names = "mclk";27		clocks = <&pck2>;28	};29