-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce codec for HDMI. At the moment, this is a dummy codec. In the future it will parse the EDID to modify the supported parameters, such as the number of channels and the sample rates. At the moment, it blindly supports all the sample rates and audio channels described in the HDMI 1.4a specification. Signed-off-by: Ricardo Neri <ricardo.neri@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
- Loading branch information
Ricardo Neri
authored and
Mark Brown
committed
May 18, 2012
1 parent
5fb86e5
commit 5452030
Showing
4 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
* ALSA SoC codec driver for HDMI audio on OMAP processors. | ||
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/ | ||
* Author: Ricardo Neri <ricardo.neri@ti.com> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* version 2 as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, but | ||
* WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
* 02110-1301 USA | ||
* | ||
*/ | ||
#include <linux/module.h> | ||
#include <sound/soc.h> | ||
|
||
#define DRV_NAME "hdmi-audio-codec" | ||
|
||
static struct snd_soc_codec_driver omap_hdmi_codec; | ||
|
||
static struct snd_soc_dai_driver omap_hdmi_codec_dai = { | ||
.name = "omap-hdmi-hifi", | ||
.playback = { | ||
.channels_min = 2, | ||
.channels_max = 8, | ||
.rates = SNDRV_PCM_RATE_32000 | | ||
SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 | | ||
SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | | ||
SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000, | ||
.formats = SNDRV_PCM_FMTBIT_S16_LE | | ||
SNDRV_PCM_FMTBIT_S24_LE, | ||
}, | ||
}; | ||
|
||
static __devinit int omap_hdmi_codec_probe(struct platform_device *pdev) | ||
{ | ||
return snd_soc_register_codec(&pdev->dev, &omap_hdmi_codec, | ||
&omap_hdmi_codec_dai, 1); | ||
} | ||
|
||
static __devexit int omap_hdmi_codec_remove(struct platform_device *pdev) | ||
{ | ||
snd_soc_unregister_codec(&pdev->dev); | ||
return 0; | ||
} | ||
|
||
static struct platform_driver omap_hdmi_codec_driver = { | ||
.driver = { | ||
.name = DRV_NAME, | ||
.owner = THIS_MODULE, | ||
}, | ||
|
||
.probe = omap_hdmi_codec_probe, | ||
.remove = __devexit_p(omap_hdmi_codec_remove), | ||
}; | ||
|
||
module_platform_driver(omap_hdmi_codec_driver); | ||
|
||
MODULE_AUTHOR("Ricardo Neri <ricardo.neri@ti.com>"); | ||
MODULE_DESCRIPTION("ASoC OMAP HDMI codec driver"); | ||
MODULE_LICENSE("GPL"); | ||
MODULE_ALIAS("platform:" DRV_NAME); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters