tlv320aic32x4.txt 597 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
Texas Instruments - tlv320aic32x4 Codec module

The tlv320aic32x4 serial control bus communicates through I2C protocols

Required properties:
 - compatible: Should be "ti,tlv320aic32x4"
 - reg: I2C slave address

Optional properties:
 - reset-gpios: Reset-GPIO phandle with args as described in gpio/gpio.txt
11 12
 - clocks/clock-names: Clock named 'mclk' for the master clock of the codec.
   See clock/clock-bindings.txt for information about the detailed format.
13 14 15 16 17 18 19


Example:

codec: tlv320aic32x4@18 {
	compatible = "ti,tlv320aic32x4";
	reg = <0x18>;
20 21
	clocks = <&clks 201>;
	clock-names = "mclk";
22
};