2019-05-31 11:09:32 +03:00
// SPDX-License-Identifier: GPL-2.0-only
2009-01-17 18:11:06 +03:00
/*
* e740 - wm9705 . c - - SoC audio for e740
*
* Copyright 2007 ( c ) Ian Molton < spyro @ f2s . com >
*/
# include <linux/module.h>
# include <linux/moduleparam.h>
# include <linux/gpio.h>
# include <sound/core.h>
# include <sound/pcm.h>
# include <sound/soc.h>
# include <mach/audio.h>
# include <mach/eseries-gpio.h>
# include <asm/mach-types.h>
# define E740_AUDIO_OUT 1
# define E740_AUDIO_IN 2
static int e740_audio_power ;
static void e740_sync_audio_power ( int status )
{
gpio_set_value ( GPIO_E740_WM9705_nAVDD2 , ! status ) ;
gpio_set_value ( GPIO_E740_AMP_ON , ( status & E740_AUDIO_OUT ) ? 1 : 0 ) ;
gpio_set_value ( GPIO_E740_MIC_ON , ( status & E740_AUDIO_IN ) ? 1 : 0 ) ;
}
static int e740_mic_amp_event ( struct snd_soc_dapm_widget * w ,
struct snd_kcontrol * kcontrol , int event )
{
if ( event & SND_SOC_DAPM_PRE_PMU )
e740_audio_power | = E740_AUDIO_IN ;
else if ( event & SND_SOC_DAPM_POST_PMD )
e740_audio_power & = ~ E740_AUDIO_IN ;
e740_sync_audio_power ( e740_audio_power ) ;
return 0 ;
}
static int e740_output_amp_event ( struct snd_soc_dapm_widget * w ,
struct snd_kcontrol * kcontrol , int event )
{
if ( event & SND_SOC_DAPM_PRE_PMU )
e740_audio_power | = E740_AUDIO_OUT ;
else if ( event & SND_SOC_DAPM_POST_PMD )
e740_audio_power & = ~ E740_AUDIO_OUT ;
e740_sync_audio_power ( e740_audio_power ) ;
return 0 ;
}
static const struct snd_soc_dapm_widget e740_dapm_widgets [ ] = {
SND_SOC_DAPM_HP ( " Headphone Jack " , NULL ) ,
SND_SOC_DAPM_SPK ( " Speaker " , NULL ) ,
SND_SOC_DAPM_MIC ( " Mic (Internal) " , NULL ) ,
SND_SOC_DAPM_PGA_E ( " Output Amp " , SND_SOC_NOPM , 0 , 0 , NULL , 0 ,
e740_output_amp_event , SND_SOC_DAPM_PRE_PMU |
SND_SOC_DAPM_POST_PMD ) ,
SND_SOC_DAPM_PGA_E ( " Mic Amp " , SND_SOC_NOPM , 0 , 0 , NULL , 0 ,
e740_mic_amp_event , SND_SOC_DAPM_PRE_PMU |
SND_SOC_DAPM_POST_PMD ) ,
} ;
static const struct snd_soc_dapm_route audio_map [ ] = {
{ " Output Amp " , NULL , " LOUT " } ,
{ " Output Amp " , NULL , " ROUT " } ,
{ " Output Amp " , NULL , " MONOOUT " } ,
{ " Speaker " , NULL , " Output Amp " } ,
{ " Headphone Jack " , NULL , " Output Amp " } ,
{ " MIC1 " , NULL , " Mic Amp " } ,
{ " Mic Amp " , NULL , " Mic (Internal) " } ,
} ;
2019-06-06 07:11:01 +03:00
SND_SOC_DAILINK_DEFS ( ac97 ,
DAILINK_COMP_ARRAY ( COMP_CPU ( " pxa2xx-ac97 " ) ) ,
DAILINK_COMP_ARRAY ( COMP_CODEC ( " wm9705-codec " , " wm9705-hifi " ) ) ,
DAILINK_COMP_ARRAY ( COMP_PLATFORM ( " pxa-pcm-audio " ) ) ) ;
SND_SOC_DAILINK_DEFS ( ac97_aux ,
DAILINK_COMP_ARRAY ( COMP_CPU ( " pxa2xx-ac97-aux " ) ) ,
DAILINK_COMP_ARRAY ( COMP_CODEC ( " wm9705-codec " , " wm9705-aux " ) ) ,
DAILINK_COMP_ARRAY ( COMP_PLATFORM ( " pxa-pcm-audio " ) ) ) ;
2009-01-17 18:11:06 +03:00
static struct snd_soc_dai_link e740_dai [ ] = {
{
. name = " AC97 " ,
. stream_name = " AC97 HiFi " ,
2019-06-06 07:11:01 +03:00
SND_SOC_DAILINK_REG ( ac97 ) ,
2009-01-17 18:11:06 +03:00
} ,
{
. name = " AC97 Aux " ,
. stream_name = " AC97 Aux " ,
2019-06-06 07:11:01 +03:00
SND_SOC_DAILINK_REG ( ac97_aux ) ,
2009-01-17 18:11:06 +03:00
} ,
} ;
static struct snd_soc_card e740 = {
. name = " Toshiba e740 " ,
2011-12-22 05:44:43 +04:00
. owner = THIS_MODULE ,
2009-01-17 18:11:06 +03:00
. dai_link = e740_dai ,
. num_links = ARRAY_SIZE ( e740_dai ) ,
2014-03-01 18:48:14 +04:00
. dapm_widgets = e740_dapm_widgets ,
. num_dapm_widgets = ARRAY_SIZE ( e740_dapm_widgets ) ,
. dapm_routes = audio_map ,
. num_dapm_routes = ARRAY_SIZE ( audio_map ) ,
2015-01-10 00:03:27 +03:00
. fully_routed = true ,
2009-01-17 18:11:06 +03:00
} ;
2011-12-15 06:52:42 +04:00
static struct gpio e740_audio_gpios [ ] = {
{ GPIO_E740_MIC_ON , GPIOF_OUT_INIT_LOW , " Mic amp " } ,
{ GPIO_E740_AMP_ON , GPIOF_OUT_INIT_LOW , " Output amp " } ,
{ GPIO_E740_WM9705_nAVDD2 , GPIOF_OUT_INIT_HIGH , " Audio power " } ,
} ;
2009-01-17 18:11:06 +03:00
2012-12-07 18:26:17 +04:00
static int e740_probe ( struct platform_device * pdev )
2009-01-17 18:11:06 +03:00
{
2011-12-15 06:52:42 +04:00
struct snd_soc_card * card = & e740 ;
2009-01-17 18:11:06 +03:00
int ret ;
2011-12-15 06:52:42 +04:00
ret = gpio_request_array ( e740_audio_gpios ,
ARRAY_SIZE ( e740_audio_gpios ) ) ;
2009-01-17 18:11:06 +03:00
if ( ret )
return ret ;
2011-12-15 06:52:42 +04:00
card - > dev = & pdev - > dev ;
2009-01-17 18:11:06 +03:00
2015-09-01 05:32:59 +03:00
ret = devm_snd_soc_register_card ( & pdev - > dev , card ) ;
2011-12-15 06:52:42 +04:00
if ( ret ) {
dev_err ( & pdev - > dev , " snd_soc_register_card() failed: %d \n " ,
ret ) ;
gpio_free_array ( e740_audio_gpios , ARRAY_SIZE ( e740_audio_gpios ) ) ;
2009-01-17 18:11:06 +03:00
}
return ret ;
}
2012-12-07 18:26:17 +04:00
static int e740_remove ( struct platform_device * pdev )
2009-01-17 18:11:06 +03:00
{
2011-12-15 06:52:42 +04:00
gpio_free_array ( e740_audio_gpios , ARRAY_SIZE ( e740_audio_gpios ) ) ;
return 0 ;
2009-01-17 18:11:06 +03:00
}
2011-12-15 06:52:42 +04:00
static struct platform_driver e740_driver = {
. driver = {
. name = " e740-audio " ,
2013-10-17 14:01:37 +04:00
. pm = & snd_soc_pm_ops ,
2011-12-15 06:52:42 +04:00
} ,
. probe = e740_probe ,
2012-12-07 18:26:17 +04:00
. remove = e740_remove ,
2011-12-15 06:52:42 +04:00
} ;
module_platform_driver ( e740_driver ) ;
2009-01-17 18:11:06 +03:00
/* Module information */
MODULE_AUTHOR ( " Ian Molton <spyro@f2s.com> " ) ;
MODULE_DESCRIPTION ( " ALSA SoC driver for e740 " ) ;
MODULE_LICENSE ( " GPL v2 " ) ;
2011-12-15 06:52:42 +04:00
MODULE_ALIAS ( " platform:e740-audio " ) ;