mirror of
https://github.com/torvalds/linux.git
synced 2024-12-21 10:31:54 +00:00
fff8491c8b
Machine driver to handle simple devices using twl4030 as audio codec. The driver supports the following boards: - Beagleboard or Devkit8000 - Gumstix Overo or CompuLab CM-T35/CM-T3730 - IGEP v2 - OMAP3EVM All of these boards can be switched to use this driver since their setup is identical. Devicetree support for the omap-twl4030 machine driver also implemented. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
18 lines
391 B
Plaintext
18 lines
391 B
Plaintext
* Texas Instruments SoC with twl4030 based audio setups
|
|
|
|
Required properties:
|
|
- compatible: "ti,omap-twl4030"
|
|
- ti,model: Name of the sound card (for example "omap3beagle")
|
|
- ti,mcbsp: phandle for the McBSP node
|
|
- ti,codec: phandle for the twl4030 audio node
|
|
|
|
Example:
|
|
|
|
sound {
|
|
compatible = "ti,omap-twl4030";
|
|
ti,model = "omap3beagle";
|
|
|
|
ti,mcbsp = <&mcbsp2>;
|
|
ti,codec = <&twl_audio>;
|
|
};
|