diff options
author | Warner Losh <imp@FreeBSD.org> | 2014-08-31 04:55:32 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2014-08-31 04:55:32 +0000 |
commit | 081ea6e2ce3778c71b9db86f0af1900ecfc266d6 (patch) | |
tree | 0da5ffd36c6ff57306e2c5ea07051924f2a35a35 /Bindings/sound/tas2552.txt | |
parent | d1ca9b39dc9ec58a6b6169a48e5b229a33debaf0 (diff) |
Import from rebasing repo at b78b6b80 (new files)vendor/device-tree/ianc-b78b6b80
Notes
Notes:
svn path=/vendor/device-tree/dist/; revision=270866
svn path=/vendor/device-tree/ianc-b78b6b80/dist/; revision=270867; tag=vendor/device-tree/ianc-b78b6b80
Diffstat (limited to 'Bindings/sound/tas2552.txt')
-rw-r--r-- | Bindings/sound/tas2552.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Bindings/sound/tas2552.txt b/Bindings/sound/tas2552.txt new file mode 100644 index 000000000000..55e2a0af5645 --- /dev/null +++ b/Bindings/sound/tas2552.txt @@ -0,0 +1,26 @@ +Texas Instruments - tas2552 Codec module + +The tas2552 serial control bus communicates through I2C protocols + +Required properties: + - compatible - One of: + "ti,tas2552" - TAS2552 + - reg - I2C slave address + - supply-*: Required supply regulators are: + "vbat" battery voltage + "iovdd" I/O Voltage + "avdd" Analog DAC Voltage + +Optional properties: + - enable-gpio - gpio pin to enable/disable the device + +Example: + +tas2552: tas2552@41 { + compatible = "ti,tas2552"; + reg = <0x41>; + enable-gpio = <&gpio4 2 GPIO_ACTIVE_HIGH>; +}; + +For more product information please see the link below: +http://www.ti.com/product/TAS2552 |