2008-01-10 16:50:34 +03:00
/*
* e800 - wm9712 . c - - SoC audio for e800
*
* Copyright 2007 ( c ) Ian Molton < spyro @ f2s . com >
*
* This program is free software ; you can redistribute it and / or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation ; version 2 ONLY .
*
*/
# include <linux/module.h>
# include <linux/moduleparam.h>
2009-01-09 00:16:05 +03:00
# include <linux/gpio.h>
2008-01-10 16:50:34 +03:00
# include <sound/core.h>
# include <sound/pcm.h>
# include <sound/soc.h>
2009-01-23 14:23:32 +03:00
# include <asm/mach-types.h>
2008-08-05 19:14:15 +04:00
# include <mach/audio.h>
2009-01-09 00:16:05 +03:00
# include <mach/eseries-gpio.h>
2008-01-10 16:50:34 +03:00
# include "../codecs/wm9712.h"
# include "pxa2xx-ac97.h"
2009-01-09 00:16:05 +03:00
static int e800_spk_amp_event ( struct snd_soc_dapm_widget * w ,
struct snd_kcontrol * kcontrol , int event )
{
if ( event & SND_SOC_DAPM_PRE_PMU )
gpio_set_value ( GPIO_E800_SPK_AMP_ON , 1 ) ;
else if ( event & SND_SOC_DAPM_POST_PMD )
gpio_set_value ( GPIO_E800_SPK_AMP_ON , 0 ) ;
2008-01-10 16:50:34 +03:00
2009-01-09 00:16:05 +03:00
return 0 ;
}
static int e800_hp_amp_event ( struct snd_soc_dapm_widget * w ,
struct snd_kcontrol * kcontrol , int event )
2008-01-10 16:50:34 +03:00
{
2009-01-09 00:16:05 +03:00
if ( event & SND_SOC_DAPM_PRE_PMU )
gpio_set_value ( GPIO_E800_HP_AMP_OFF , 0 ) ;
else if ( event & SND_SOC_DAPM_POST_PMD )
gpio_set_value ( GPIO_E800_HP_AMP_OFF , 1 ) ;
return 0 ;
}
static const struct snd_soc_dapm_widget e800_dapm_widgets [ ] = {
SND_SOC_DAPM_HP ( " Headphone Jack " , NULL ) ,
SND_SOC_DAPM_MIC ( " Mic (Internal1) " , NULL ) ,
SND_SOC_DAPM_MIC ( " Mic (Internal2) " , NULL ) ,
SND_SOC_DAPM_SPK ( " Speaker " , NULL ) ,
SND_SOC_DAPM_PGA_E ( " Headphone Amp " , SND_SOC_NOPM , 0 , 0 , NULL , 0 ,
e800_hp_amp_event , SND_SOC_DAPM_PRE_PMU |
SND_SOC_DAPM_POST_PMD ) ,
SND_SOC_DAPM_PGA_E ( " Speaker Amp " , SND_SOC_NOPM , 0 , 0 , NULL , 0 ,
e800_spk_amp_event , SND_SOC_DAPM_PRE_PMU |
SND_SOC_DAPM_POST_PMD ) ,
} ;
static const struct snd_soc_dapm_route audio_map [ ] = {
{ " Headphone Jack " , NULL , " HPOUTL " } ,
{ " Headphone Jack " , NULL , " HPOUTR " } ,
{ " Headphone Jack " , NULL , " Headphone Amp " } ,
{ " Speaker Amp " , NULL , " MONOOUT " } ,
{ " Speaker " , NULL , " Speaker Amp " } ,
{ " MIC1 " , NULL , " Mic (Internal1) " } ,
{ " MIC2 " , NULL , " Mic (Internal2) " } ,
} ;
2010-03-17 23:15:21 +03:00
static int e800_ac97_init ( struct snd_soc_pcm_runtime * rtd )
2009-01-09 00:16:05 +03:00
{
2010-03-17 23:15:21 +03:00
struct snd_soc_codec * codec = rtd - > codec ;
2010-11-05 16:53:46 +03:00
struct snd_soc_dapm_context * dapm = & codec - > dapm ;
2010-03-17 23:15:21 +03:00
2010-11-05 16:53:46 +03:00
snd_soc_dapm_new_controls ( dapm , e800_dapm_widgets ,
2009-01-09 00:16:05 +03:00
ARRAY_SIZE ( e800_dapm_widgets ) ) ;
2010-11-05 16:53:46 +03:00
snd_soc_dapm_add_routes ( dapm , audio_map , ARRAY_SIZE ( audio_map ) ) ;
2009-01-09 00:16:05 +03:00
return 0 ;
}
static struct snd_soc_dai_link e800_dai [ ] = {
{
. name = " AC97 " ,
. stream_name = " AC97 HiFi " ,
2011-02-23 02:29:11 +03:00
. cpu_dai_name = " pxa2xx-ac97 " ,
2010-03-17 23:15:21 +03:00
. codec_dai_name = " wm9712-hifi " ,
. platform_name = " pxa-pcm-audio " ,
. codec_name = " wm9712-codec " ,
2009-01-09 00:16:05 +03:00
. init = e800_ac97_init ,
} ,
{
. name = " AC97 Aux " ,
. stream_name = " AC97 Aux " ,
2011-02-23 02:29:11 +03:00
. cpu_dai_name = " pxa2xx-ac97-aux " ,
2010-03-17 23:15:21 +03:00
. codec_dai_name = " wm9712-aux " ,
. platform_name = " pxa-pcm-audio " ,
. codec_name = " wm9712-codec " ,
2009-01-09 00:16:05 +03:00
} ,
2008-01-10 16:50:34 +03:00
} ;
2008-11-18 23:50:34 +03:00
static struct snd_soc_card e800 = {
2008-01-10 16:50:34 +03:00
. name = " Toshiba e800 " ,
2011-12-22 05:44:43 +04:00
. owner = THIS_MODULE ,
2008-01-10 16:50:34 +03:00
. dai_link = e800_dai ,
. num_links = ARRAY_SIZE ( e800_dai ) ,
} ;
2011-12-15 06:54:25 +04:00
static struct gpio e800_audio_gpios [ ] = {
{ GPIO_E800_SPK_AMP_ON , GPIOF_OUT_INIT_HIGH , " Headphone amp " } ,
{ GPIO_E800_HP_AMP_OFF , GPIOF_OUT_INIT_HIGH , " Speaker amp " } ,
} ;
2008-01-10 16:50:34 +03:00
2012-12-07 18:26:17 +04:00
static int e800_probe ( struct platform_device * pdev )
2008-01-10 16:50:34 +03:00
{
2011-12-15 06:54:25 +04:00
struct snd_soc_card * card = & e800 ;
2008-01-10 16:50:34 +03:00
int ret ;
2011-12-15 06:54:25 +04:00
ret = gpio_request_array ( e800_audio_gpios ,
ARRAY_SIZE ( e800_audio_gpios ) ) ;
2009-01-09 00:16:05 +03:00
if ( ret )
return ret ;
2011-12-15 06:54:25 +04:00
card - > dev = & pdev - > dev ;
2009-01-09 00:16:05 +03:00
2011-12-15 06:54:25 +04:00
ret = snd_soc_register_card ( card ) ;
if ( ret ) {
dev_err ( & pdev - > dev , " snd_soc_register_card() failed: %d \n " ,
ret ) ;
gpio_free_array ( e800_audio_gpios , ARRAY_SIZE ( e800_audio_gpios ) ) ;
2011-12-07 06:01:30 +04:00
}
2008-01-10 16:50:34 +03:00
return ret ;
}
2012-12-07 18:26:17 +04:00
static int e800_remove ( struct platform_device * pdev )
2008-01-10 16:50:34 +03:00
{
2011-12-15 06:54:25 +04:00
struct snd_soc_card * card = platform_get_drvdata ( pdev ) ;
gpio_free_array ( e800_audio_gpios , ARRAY_SIZE ( e800_audio_gpios ) ) ;
snd_soc_unregister_card ( card ) ;
return 0 ;
2008-01-10 16:50:34 +03:00
}
2011-12-15 06:54:25 +04:00
static struct platform_driver e800_driver = {
. driver = {
. name = " e800-audio " ,
. owner = THIS_MODULE ,
} ,
. probe = e800_probe ,
2012-12-07 18:26:17 +04:00
. remove = e800_remove ,
2011-12-15 06:54:25 +04:00
} ;
module_platform_driver ( e800_driver ) ;
2008-01-10 16:50:34 +03:00
/* Module information */
MODULE_AUTHOR ( " Ian Molton <spyro@f2s.com> " ) ;
MODULE_DESCRIPTION ( " ALSA SoC driver for e800 " ) ;
2009-01-09 00:16:05 +03:00
MODULE_LICENSE ( " GPL v2 " ) ;
2011-12-15 06:54:25 +04:00
MODULE_ALIAS ( " platform:e800-audio " ) ;