Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.18 26 lines 496 B view raw
1* Freescale SGTL5000 Stereo Codec 2 3Required properties: 4- compatible : "fsl,sgtl5000". 5 6- reg : the I2C address of the device 7 8- clocks : the clock provider of SYS_MCLK 9 10- VDDA-supply : the regulator provider of VDDA 11 12- VDDIO-supply: the regulator provider of VDDIO 13 14Optional properties: 15 16- VDDD-supply : the regulator provider of VDDD 17 18Example: 19 20codec: sgtl5000@0a { 21 compatible = "fsl,sgtl5000"; 22 reg = <0x0a>; 23 clocks = <&clks 150>; 24 VDDA-supply = <&reg_3p3v>; 25 VDDIO-supply = <&reg_3p3v>; 26};