2 * ALSA SoC codec driver for HDMI audio codecs.
3 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
4 * Author: Ricardo Neri <ricardo.neri@ti.com>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21 #include <linux/module.h>
22 #include <sound/soc.h>
24 #define DRV_NAME "hdmi-audio-codec"
26 static const struct snd_soc_dapm_widget hdmi_widgets
[] = {
27 SND_SOC_DAPM_INPUT("RX"),
28 SND_SOC_DAPM_OUTPUT("TX"),
31 static const struct snd_soc_dapm_route hdmi_routes
[] = {
32 { "Capture", NULL
, "RX" },
33 { "TX", NULL
, "Playback" },
36 static struct snd_soc_dai_driver hdmi_codec_dai
= {
39 .stream_name
= "Playback",
42 .rates
= SNDRV_PCM_RATE_32000
|
43 SNDRV_PCM_RATE_44100
| SNDRV_PCM_RATE_48000
|
44 SNDRV_PCM_RATE_88200
| SNDRV_PCM_RATE_96000
|
45 SNDRV_PCM_RATE_176400
| SNDRV_PCM_RATE_192000
,
46 .formats
= SNDRV_PCM_FMTBIT_S16_LE
|
47 SNDRV_PCM_FMTBIT_S24_LE
,
50 .stream_name
= "Capture",
53 .rates
= SNDRV_PCM_RATE_32000
|
54 SNDRV_PCM_RATE_44100
| SNDRV_PCM_RATE_48000
|
55 SNDRV_PCM_RATE_88200
| SNDRV_PCM_RATE_96000
|
56 SNDRV_PCM_RATE_176400
| SNDRV_PCM_RATE_192000
,
57 .formats
= SNDRV_PCM_FMTBIT_S16_LE
|
58 SNDRV_PCM_FMTBIT_S24_LE
,
63 static struct snd_soc_codec_driver hdmi_codec
= {
64 .dapm_widgets
= hdmi_widgets
,
65 .num_dapm_widgets
= ARRAY_SIZE(hdmi_widgets
),
66 .dapm_routes
= hdmi_routes
,
67 .num_dapm_routes
= ARRAY_SIZE(hdmi_routes
),
70 static int hdmi_codec_probe(struct platform_device
*pdev
)
72 return snd_soc_register_codec(&pdev
->dev
, &hdmi_codec
,
76 static int hdmi_codec_remove(struct platform_device
*pdev
)
78 snd_soc_unregister_codec(&pdev
->dev
);
82 static struct platform_driver hdmi_codec_driver
= {
88 .probe
= hdmi_codec_probe
,
89 .remove
= hdmi_codec_remove
,
92 module_platform_driver(hdmi_codec_driver
);
94 MODULE_AUTHOR("Ricardo Neri <ricardo.neri@ti.com>");
95 MODULE_DESCRIPTION("ASoC generic HDMI codec driver");
96 MODULE_LICENSE("GPL");
97 MODULE_ALIAS("platform:" DRV_NAME
);