2012-05-18 01:42:33 -05:00
/*
2013-05-16 14:08:07 +08:00
* ALSA SoC codec driver for HDMI audio codecs .
2012-05-18 01:42:33 -05:00
* 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>
2014-04-04 11:29:09 +05:30
# include <linux/of.h>
2013-12-20 12:40:16 +02:00
# include <linux/of_device.h>
2012-05-18 01:42:33 -05:00
# define DRV_NAME "hdmi-audio-codec"
2013-08-19 12:17:36 +01:00
static const struct snd_soc_dapm_widget hdmi_widgets [ ] = {
SND_SOC_DAPM_INPUT ( " RX " ) ,
SND_SOC_DAPM_OUTPUT ( " TX " ) ,
} ;
static const struct snd_soc_dapm_route hdmi_routes [ ] = {
{ " Capture " , NULL , " RX " } ,
{ " TX " , NULL , " Playback " } ,
} ;
2012-05-18 01:42:33 -05:00
2013-05-16 14:08:07 +08:00
static struct snd_soc_dai_driver hdmi_codec_dai = {
. name = " hdmi-hifi " ,
2012-05-18 01:42:33 -05:00
. playback = {
2013-08-19 12:17:36 +01:00
. stream_name = " Playback " ,
2012-05-18 01:42:33 -05:00
. 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 |
2013-11-19 14:12:25 +02:00
SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S32_LE ,
2014-10-14 20:29:26 +03:00
. sig_bits = 24 ,
2012-05-18 01:42:33 -05:00
} ,
2013-07-17 14:12:16 +08:00
. capture = {
2013-08-19 12:17:36 +01:00
. stream_name = " Capture " ,
2013-07-17 14:12:16 +08:00
. channels_min = 2 ,
. channels_max = 2 ,
. 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 ,
} ,
2012-05-18 01:42:33 -05:00
} ;
2013-12-20 12:40:16 +02:00
# ifdef CONFIG_OF
static const struct of_device_id hdmi_audio_codec_ids [ ] = {
{ . compatible = " linux,hdmi-audio " , } ,
{ }
} ;
MODULE_DEVICE_TABLE ( of , hdmi_audio_codec_ids ) ;
# endif
2013-08-19 12:17:36 +01:00
static struct snd_soc_codec_driver hdmi_codec = {
. dapm_widgets = hdmi_widgets ,
. num_dapm_widgets = ARRAY_SIZE ( hdmi_widgets ) ,
. dapm_routes = hdmi_routes ,
. num_dapm_routes = ARRAY_SIZE ( hdmi_routes ) ,
2014-10-14 20:29:27 +03:00
. ignore_pmdown_time = true ,
2013-08-19 12:17:36 +01:00
} ;
2013-05-16 14:08:07 +08:00
static int hdmi_codec_probe ( struct platform_device * pdev )
2012-05-18 01:42:33 -05:00
{
2013-05-16 14:08:07 +08:00
return snd_soc_register_codec ( & pdev - > dev , & hdmi_codec ,
& hdmi_codec_dai , 1 ) ;
2012-05-18 01:42:33 -05:00
}
2013-05-16 14:08:07 +08:00
static int hdmi_codec_remove ( struct platform_device * pdev )
2012-05-18 01:42:33 -05:00
{
snd_soc_unregister_codec ( & pdev - > dev ) ;
return 0 ;
}
2013-05-16 14:08:07 +08:00
static struct platform_driver hdmi_codec_driver = {
2012-05-18 01:42:33 -05:00
. driver = {
. name = DRV_NAME ,
2013-12-20 12:40:16 +02:00
. of_match_table = of_match_ptr ( hdmi_audio_codec_ids ) ,
2012-05-18 01:42:33 -05:00
} ,
2013-05-16 14:08:07 +08:00
. probe = hdmi_codec_probe ,
. remove = hdmi_codec_remove ,
2012-05-18 01:42:33 -05:00
} ;
2013-05-16 14:08:07 +08:00
module_platform_driver ( hdmi_codec_driver ) ;
2012-05-18 01:42:33 -05:00
MODULE_AUTHOR ( " Ricardo Neri <ricardo.neri@ti.com> " ) ;
2013-05-16 14:08:07 +08:00
MODULE_DESCRIPTION ( " ASoC generic HDMI codec driver " ) ;
2012-05-18 01:42:33 -05:00
MODULE_LICENSE ( " GPL " ) ;
MODULE_ALIAS ( " platform: " DRV_NAME ) ;