USB: xhci: don't start a halted endpoint before its new dequeue is set
[deliverable/linux.git] / sound / soc / codecs / hdmi.c
CommitLineData
5452030c 1/*
bf7c6e6c 2 * ALSA SoC codec driver for HDMI audio codecs.
5452030c
RN
3 * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
4 * Author: Ricardo Neri <ricardo.neri@ti.com>
5 *
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.
9 *
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.
14 *
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
18 * 02110-1301 USA
19 *
20 */
21#include <linux/module.h>
22#include <sound/soc.h>
a6b34312 23#include <linux/of.h>
0f7f3d1f 24#include <linux/of_device.h>
5452030c
RN
25
26#define DRV_NAME "hdmi-audio-codec"
27
c34e51b1
MB
28static const struct snd_soc_dapm_widget hdmi_widgets[] = {
29 SND_SOC_DAPM_INPUT("RX"),
30 SND_SOC_DAPM_OUTPUT("TX"),
31};
32
33static const struct snd_soc_dapm_route hdmi_routes[] = {
34 { "Capture", NULL, "RX" },
35 { "TX", NULL, "Playback" },
36};
5452030c 37
bf7c6e6c
BS
38static struct snd_soc_dai_driver hdmi_codec_dai = {
39 .name = "hdmi-hifi",
5452030c 40 .playback = {
c34e51b1 41 .stream_name = "Playback",
5452030c
RN
42 .channels_min = 2,
43 .channels_max = 8,
44 .rates = SNDRV_PCM_RATE_32000 |
45 SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |
46 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 |
47 SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000,
48 .formats = SNDRV_PCM_FMTBIT_S16_LE |
c600e953 49 SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE,
5452030c 50 },
c6c0925e 51 .capture = {
c34e51b1 52 .stream_name = "Capture",
c6c0925e
RY
53 .channels_min = 2,
54 .channels_max = 2,
55 .rates = SNDRV_PCM_RATE_32000 |
56 SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |
57 SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 |
58 SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000,
59 .formats = SNDRV_PCM_FMTBIT_S16_LE |
60 SNDRV_PCM_FMTBIT_S24_LE,
61 },
62
5452030c
RN
63};
64
0f7f3d1f
JS
65#ifdef CONFIG_OF
66static const struct of_device_id hdmi_audio_codec_ids[] = {
67 { .compatible = "linux,hdmi-audio", },
68 { }
69};
70MODULE_DEVICE_TABLE(of, hdmi_audio_codec_ids);
71#endif
72
c34e51b1
MB
73static struct snd_soc_codec_driver hdmi_codec = {
74 .dapm_widgets = hdmi_widgets,
75 .num_dapm_widgets = ARRAY_SIZE(hdmi_widgets),
76 .dapm_routes = hdmi_routes,
77 .num_dapm_routes = ARRAY_SIZE(hdmi_routes),
78};
79
bf7c6e6c 80static int hdmi_codec_probe(struct platform_device *pdev)
5452030c 81{
bf7c6e6c
BS
82 return snd_soc_register_codec(&pdev->dev, &hdmi_codec,
83 &hdmi_codec_dai, 1);
5452030c
RN
84}
85
bf7c6e6c 86static int hdmi_codec_remove(struct platform_device *pdev)
5452030c
RN
87{
88 snd_soc_unregister_codec(&pdev->dev);
89 return 0;
90}
91
bf7c6e6c 92static struct platform_driver hdmi_codec_driver = {
5452030c
RN
93 .driver = {
94 .name = DRV_NAME,
95 .owner = THIS_MODULE,
0f7f3d1f 96 .of_match_table = of_match_ptr(hdmi_audio_codec_ids),
5452030c
RN
97 },
98
bf7c6e6c
BS
99 .probe = hdmi_codec_probe,
100 .remove = hdmi_codec_remove,
5452030c
RN
101};
102
bf7c6e6c 103module_platform_driver(hdmi_codec_driver);
5452030c
RN
104
105MODULE_AUTHOR("Ricardo Neri <ricardo.neri@ti.com>");
bf7c6e6c 106MODULE_DESCRIPTION("ASoC generic HDMI codec driver");
5452030c
RN
107MODULE_LICENSE("GPL");
108MODULE_ALIAS("platform:" DRV_NAME);
This page took 0.139909 seconds and 5 git commands to generate.