sgtl5000.txt 496 字节
Newer Older
1 2 3 4 5
* Freescale SGTL5000 Stereo Codec

Required properties:
- compatible : "fsl,sgtl5000".

6 7
- reg : the I2C address of the device

8 9
- clocks : the clock provider of SYS_MCLK

10 11 12 13 14 15 16 17
- VDDA-supply : the regulator provider of VDDA

- VDDIO-supply: the regulator provider of VDDIO

Optional properties:

- VDDD-supply : the regulator provider of VDDD

18 19 20 21 22
Example:

codec: sgtl5000@0a {
	compatible = "fsl,sgtl5000";
	reg = <0x0a>;
23
	clocks = <&clks 150>;
24 25
	VDDA-supply = <&reg_3p3v>;
	VDDIO-supply = <&reg_3p3v>;
26
};