2007-05-14 17:03:52 +08:00
|
|
|
/*
|
|
|
|
* neo1973_wm8753.c -- SoC audio for Neo1973
|
|
|
|
*
|
|
|
|
* Copyright 2007 Wolfson Microelectronics PLC.
|
|
|
|
* Author: Graeme Gregory
|
|
|
|
* graeme.gregory@wolfsonmicro.com or linux@wolfsonmicro.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; either version 2 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/moduleparam.h>
|
|
|
|
#include <linux/timer.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <sound/core.h>
|
|
|
|
#include <sound/pcm.h>
|
|
|
|
#include <sound/soc.h>
|
|
|
|
|
2008-10-08 20:02:20 +08:00
|
|
|
#include <asm/mach-types.h>
|
2008-08-05 23:14:15 +08:00
|
|
|
#include <mach/regs-clock.h>
|
|
|
|
#include <mach/regs-gpio.h>
|
|
|
|
#include <mach/hardware.h>
|
2008-05-01 02:24:54 +08:00
|
|
|
#include <linux/io.h>
|
2008-08-05 23:14:15 +08:00
|
|
|
#include <mach/spi-gpio.h>
|
2007-12-19 22:37:49 +08:00
|
|
|
|
2009-03-04 08:49:26 +08:00
|
|
|
#include <plat/regs-iis.h>
|
2007-12-19 22:37:49 +08:00
|
|
|
|
2007-05-14 17:03:52 +08:00
|
|
|
#include "../codecs/wm8753.h"
|
2010-11-22 14:35:57 +08:00
|
|
|
#include "dma.h"
|
2007-05-14 17:03:52 +08:00
|
|
|
#include "s3c24xx-i2s.h"
|
|
|
|
|
2008-11-19 04:50:34 +08:00
|
|
|
static struct snd_soc_card neo1973;
|
2007-05-14 17:03:52 +08:00
|
|
|
|
|
|
|
static int neo1973_hifi_hw_params(struct snd_pcm_substream *substream,
|
|
|
|
struct snd_pcm_hw_params *params)
|
|
|
|
{
|
|
|
|
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
2010-03-18 04:15:21 +08:00
|
|
|
struct snd_soc_dai *codec_dai = rtd->codec_dai;
|
|
|
|
struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
|
2007-05-14 17:03:52 +08:00
|
|
|
unsigned int pll_out = 0, bclk = 0;
|
|
|
|
int ret = 0;
|
|
|
|
unsigned long iis_clkrate;
|
|
|
|
|
2009-03-07 02:04:34 +08:00
|
|
|
pr_debug("Entered %s\n", __func__);
|
2008-05-05 20:16:12 +08:00
|
|
|
|
2007-05-14 17:03:52 +08:00
|
|
|
iis_clkrate = s3c24xx_i2s_get_clockrate();
|
|
|
|
|
|
|
|
switch (params_rate(params)) {
|
|
|
|
case 8000:
|
|
|
|
case 16000:
|
|
|
|
pll_out = 12288000;
|
|
|
|
break;
|
|
|
|
case 48000:
|
|
|
|
bclk = WM8753_BCLK_DIV_4;
|
|
|
|
pll_out = 12288000;
|
|
|
|
break;
|
|
|
|
case 96000:
|
|
|
|
bclk = WM8753_BCLK_DIV_2;
|
|
|
|
pll_out = 12288000;
|
|
|
|
break;
|
|
|
|
case 11025:
|
|
|
|
bclk = WM8753_BCLK_DIV_16;
|
|
|
|
pll_out = 11289600;
|
|
|
|
break;
|
|
|
|
case 22050:
|
|
|
|
bclk = WM8753_BCLK_DIV_8;
|
|
|
|
pll_out = 11289600;
|
|
|
|
break;
|
|
|
|
case 44100:
|
|
|
|
bclk = WM8753_BCLK_DIV_4;
|
|
|
|
pll_out = 11289600;
|
|
|
|
break;
|
|
|
|
case 88200:
|
|
|
|
bclk = WM8753_BCLK_DIV_2;
|
|
|
|
pll_out = 11289600;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set codec DAI configuration */
|
2008-07-08 20:19:18 +08:00
|
|
|
ret = snd_soc_dai_set_fmt(codec_dai,
|
2007-05-14 17:03:52 +08:00
|
|
|
SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
|
|
|
|
SND_SOC_DAIFMT_CBM_CFM);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* set cpu DAI configuration */
|
2008-07-08 20:19:18 +08:00
|
|
|
ret = snd_soc_dai_set_fmt(cpu_dai,
|
2007-05-14 17:03:52 +08:00
|
|
|
SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
|
|
|
|
SND_SOC_DAIFMT_CBM_CFM);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* set the codec system clock for DAC and ADC */
|
2008-07-08 20:19:18 +08:00
|
|
|
ret = snd_soc_dai_set_sysclk(codec_dai, WM8753_MCLK, pll_out,
|
2007-05-14 17:03:52 +08:00
|
|
|
SND_SOC_CLOCK_IN);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* set MCLK division for sample rate */
|
2008-07-08 20:19:18 +08:00
|
|
|
ret = snd_soc_dai_set_clkdiv(cpu_dai, S3C24XX_DIV_MCLK,
|
2008-05-01 02:24:54 +08:00
|
|
|
S3C2410_IISMOD_32FS);
|
2007-05-14 17:03:52 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* set codec BCLK division for sample rate */
|
2008-07-08 20:19:18 +08:00
|
|
|
ret = snd_soc_dai_set_clkdiv(codec_dai, WM8753_BCLKDIV, bclk);
|
2007-05-14 17:03:52 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* set prescaler division for sample rate */
|
2008-07-08 20:19:18 +08:00
|
|
|
ret = snd_soc_dai_set_clkdiv(cpu_dai, S3C24XX_DIV_PRESCALER,
|
2008-05-01 02:24:54 +08:00
|
|
|
S3C24XX_PRESCALE(4, 4));
|
2007-05-14 17:03:52 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* codec PLL input is PCLK/4 */
|
2009-09-06 01:52:16 +08:00
|
|
|
ret = snd_soc_dai_set_pll(codec_dai, WM8753_PLL1, 0,
|
2007-05-14 17:03:52 +08:00
|
|
|
iis_clkrate / 4, pll_out);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int neo1973_hifi_hw_free(struct snd_pcm_substream *substream)
|
|
|
|
{
|
|
|
|
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
2010-03-18 04:15:21 +08:00
|
|
|
struct snd_soc_dai *codec_dai = rtd->codec_dai;
|
2007-05-14 17:03:52 +08:00
|
|
|
|
2009-03-07 02:04:34 +08:00
|
|
|
pr_debug("Entered %s\n", __func__);
|
2008-05-05 20:16:12 +08:00
|
|
|
|
2007-05-14 17:03:52 +08:00
|
|
|
/* disable the PLL */
|
2009-10-01 14:40:32 +08:00
|
|
|
return snd_soc_dai_set_pll(codec_dai, WM8753_PLL1, 0, 0, 0);
|
2007-05-14 17:03:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Neo1973 WM8753 HiFi DAI opserations.
|
|
|
|
*/
|
|
|
|
static struct snd_soc_ops neo1973_hifi_ops = {
|
|
|
|
.hw_params = neo1973_hifi_hw_params,
|
|
|
|
.hw_free = neo1973_hifi_hw_free,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int neo1973_voice_hw_params(struct snd_pcm_substream *substream,
|
|
|
|
struct snd_pcm_hw_params *params)
|
|
|
|
{
|
|
|
|
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
2010-03-18 04:15:21 +08:00
|
|
|
struct snd_soc_dai *codec_dai = rtd->codec_dai;
|
2007-05-14 17:03:52 +08:00
|
|
|
unsigned int pcmdiv = 0;
|
|
|
|
int ret = 0;
|
|
|
|
unsigned long iis_clkrate;
|
|
|
|
|
2009-03-07 02:04:34 +08:00
|
|
|
pr_debug("Entered %s\n", __func__);
|
2008-05-05 20:16:12 +08:00
|
|
|
|
2007-05-14 17:03:52 +08:00
|
|
|
iis_clkrate = s3c24xx_i2s_get_clockrate();
|
|
|
|
|
|
|
|
if (params_rate(params) != 8000)
|
|
|
|
return -EINVAL;
|
|
|
|
if (params_channels(params) != 1)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
pcmdiv = WM8753_PCM_DIV_6; /* 2.048 MHz */
|
|
|
|
|
|
|
|
/* todo: gg check mode (DSP_B) against CSR datasheet */
|
|
|
|
/* set codec DAI configuration */
|
2008-07-08 20:19:18 +08:00
|
|
|
ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_DSP_B |
|
2007-05-14 17:03:52 +08:00
|
|
|
SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* set the codec system clock for DAC and ADC */
|
2008-07-08 20:19:18 +08:00
|
|
|
ret = snd_soc_dai_set_sysclk(codec_dai, WM8753_PCMCLK, 12288000,
|
2007-05-14 17:03:52 +08:00
|
|
|
SND_SOC_CLOCK_IN);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* set codec PCM division for sample rate */
|
2008-07-08 20:19:18 +08:00
|
|
|
ret = snd_soc_dai_set_clkdiv(codec_dai, WM8753_PCMDIV, pcmdiv);
|
2007-05-14 17:03:52 +08:00
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2010-10-16 21:19:20 +08:00
|
|
|
/* configure and enable PLL for 12.288MHz output */
|
2009-10-01 14:40:32 +08:00
|
|
|
ret = snd_soc_dai_set_pll(codec_dai, WM8753_PLL2, 0,
|
2007-05-14 17:03:52 +08:00
|
|
|
iis_clkrate / 4, 12288000);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int neo1973_voice_hw_free(struct snd_pcm_substream *substream)
|
|
|
|
{
|
|
|
|
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
2010-03-18 04:15:21 +08:00
|
|
|
struct snd_soc_dai *codec_dai = rtd->codec_dai;
|
2007-05-14 17:03:52 +08:00
|
|
|
|
2009-03-07 02:04:34 +08:00
|
|
|
pr_debug("Entered %s\n", __func__);
|
2008-05-05 20:16:12 +08:00
|
|
|
|
2007-05-14 17:03:52 +08:00
|
|
|
/* disable the PLL */
|
2009-10-01 14:40:32 +08:00
|
|
|
return snd_soc_dai_set_pll(codec_dai, WM8753_PLL2, 0, 0, 0);
|
2007-05-14 17:03:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct snd_soc_ops neo1973_voice_ops = {
|
|
|
|
.hw_params = neo1973_voice_hw_params,
|
|
|
|
.hw_free = neo1973_voice_hw_free,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct snd_soc_dapm_widget wm8753_dapm_widgets[] = {
|
|
|
|
SND_SOC_DAPM_LINE("GSM Line Out", NULL),
|
|
|
|
SND_SOC_DAPM_LINE("GSM Line In", NULL),
|
|
|
|
SND_SOC_DAPM_MIC("Headset Mic", NULL),
|
|
|
|
SND_SOC_DAPM_MIC("Call Mic", NULL),
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-03-07 15:04:55 +08:00
|
|
|
static const struct snd_soc_dapm_route neo1973_wm8753_routes[] = {
|
2007-05-14 17:03:52 +08:00
|
|
|
/* Connections to the GSM Module */
|
|
|
|
{"GSM Line Out", NULL, "MONO1"},
|
|
|
|
{"GSM Line Out", NULL, "MONO2"},
|
|
|
|
{"RXP", NULL, "GSM Line In"},
|
|
|
|
{"RXN", NULL, "GSM Line In"},
|
|
|
|
|
|
|
|
/* Connections to Headset */
|
|
|
|
{"MIC1", NULL, "Mic Bias"},
|
|
|
|
{"Mic Bias", NULL, "Headset Mic"},
|
|
|
|
|
|
|
|
/* Call Mic */
|
|
|
|
{"MIC2", NULL, "Mic Bias"},
|
|
|
|
{"MIC2N", NULL, "Mic Bias"},
|
|
|
|
{"Mic Bias", NULL, "Call Mic"},
|
|
|
|
|
|
|
|
/* Connect the ALC pins */
|
|
|
|
{"ACIN", NULL, "ACOP"},
|
|
|
|
};
|
|
|
|
|
2011-03-07 15:04:55 +08:00
|
|
|
static const struct snd_kcontrol_new neo1973_wm8753_controls[] = {
|
2011-03-07 15:04:54 +08:00
|
|
|
SOC_DAPM_PIN_SWITCH("GSM Line Out"),
|
|
|
|
SOC_DAPM_PIN_SWITCH("GSM Line In"),
|
|
|
|
SOC_DAPM_PIN_SWITCH("Headset Mic"),
|
|
|
|
SOC_DAPM_PIN_SWITCH("Call Mic"),
|
2007-05-14 17:03:52 +08:00
|
|
|
};
|
|
|
|
|
2011-03-07 15:04:55 +08:00
|
|
|
|
2007-05-14 17:03:52 +08:00
|
|
|
/*
|
|
|
|
* This is an example machine initialisation for a wm8753 connected to a
|
|
|
|
* neo1973 II. It is missing logic to detect hp/mic insertions and logic
|
|
|
|
* to re-route the audio in such an event.
|
|
|
|
*/
|
2010-03-18 04:15:21 +08:00
|
|
|
static int neo1973_wm8753_init(struct snd_soc_pcm_runtime *rtd)
|
2007-05-14 17:03:52 +08:00
|
|
|
{
|
2010-03-18 04:15:21 +08:00
|
|
|
struct snd_soc_codec *codec = rtd->codec;
|
2010-11-05 21:53:46 +08:00
|
|
|
struct snd_soc_dapm_context *dapm = &codec->dapm;
|
2009-03-12 18:07:54 +08:00
|
|
|
int err;
|
2007-05-14 17:03:52 +08:00
|
|
|
|
2009-03-07 02:04:34 +08:00
|
|
|
pr_debug("Entered %s\n", __func__);
|
2008-05-05 20:16:12 +08:00
|
|
|
|
2007-05-14 17:03:52 +08:00
|
|
|
/* set up NC codec pins */
|
2010-11-05 21:53:46 +08:00
|
|
|
snd_soc_dapm_nc_pin(dapm, "LOUT2");
|
|
|
|
snd_soc_dapm_nc_pin(dapm, "ROUT2");
|
|
|
|
snd_soc_dapm_nc_pin(dapm, "OUT3");
|
|
|
|
snd_soc_dapm_nc_pin(dapm, "OUT4");
|
|
|
|
snd_soc_dapm_nc_pin(dapm, "LINE1");
|
|
|
|
snd_soc_dapm_nc_pin(dapm, "LINE2");
|
2007-05-14 17:03:52 +08:00
|
|
|
|
|
|
|
/* Add neo1973 specific widgets */
|
2010-11-05 21:53:46 +08:00
|
|
|
snd_soc_dapm_new_controls(dapm, wm8753_dapm_widgets,
|
2011-03-07 15:04:55 +08:00
|
|
|
ARRAY_SIZE(wm8753_dapm_widgets));
|
2007-05-14 17:03:52 +08:00
|
|
|
|
2008-10-02 01:17:12 +08:00
|
|
|
/* set endpoints to default mode */
|
2011-03-07 15:04:54 +08:00
|
|
|
snd_soc_dapm_disable_pin(dapm, "GSM Line Out");
|
|
|
|
snd_soc_dapm_disable_pin(dapm, "GSM Line In");
|
|
|
|
snd_soc_dapm_disable_pin(dapm, "Headset Mic");
|
|
|
|
snd_soc_dapm_disable_pin(dapm, "Call Mic");
|
2008-10-02 01:17:12 +08:00
|
|
|
|
2007-05-14 17:03:52 +08:00
|
|
|
/* add neo1973 specific controls */
|
2011-03-07 15:04:55 +08:00
|
|
|
err = snd_soc_add_controls(codec, neo1973_wm8753_controls,
|
|
|
|
ARRAY_SIZE(neo1973_wm8753_controls));
|
2009-03-12 18:07:54 +08:00
|
|
|
if (err < 0)
|
|
|
|
return err;
|
2007-05-14 17:03:52 +08:00
|
|
|
|
2008-05-13 20:58:03 +08:00
|
|
|
/* set up neo1973 specific audio routes */
|
2011-03-07 15:04:55 +08:00
|
|
|
err = snd_soc_dapm_add_routes(dapm, neo1973_wm8753_routes,
|
|
|
|
ARRAY_SIZE(neo1973_wm8753_routes));
|
2007-05-14 17:03:52 +08:00
|
|
|
|
2010-11-05 21:53:46 +08:00
|
|
|
snd_soc_dapm_sync(dapm);
|
2007-05-14 17:03:52 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-03-07 15:04:55 +08:00
|
|
|
static const struct snd_soc_dapm_route neo1973_lm4857_routes[] = {
|
|
|
|
{"Amp IN", NULL, "ROUT1"},
|
|
|
|
{"Amp IN", NULL, "LOUT1"},
|
|
|
|
|
|
|
|
{"Handset Spk", NULL, "Amp EP"},
|
|
|
|
{"Stereo Out", NULL, "Amp LS"},
|
|
|
|
{"Headphone", NULL, "Amp HP"},
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct snd_soc_dapm_widget neo1973_lm4857_dapm_widgets[] = {
|
|
|
|
SND_SOC_DAPM_SPK("Handset Spk", NULL),
|
|
|
|
SND_SOC_DAPM_SPK("Stereo Out", NULL),
|
|
|
|
SND_SOC_DAPM_HP("Headphone", NULL),
|
|
|
|
};
|
|
|
|
|
|
|
|
static int neo1973_lm4857_init(struct snd_soc_dapm_context *dapm)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = snd_soc_dapm_new_controls(dapm, neo1973_lm4857_dapm_widgets,
|
|
|
|
ARRAY_SIZE(neo1973_lm4857_dapm_widgets));
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = snd_soc_dapm_add_routes(dapm, neo1973_lm4857_routes,
|
|
|
|
ARRAY_SIZE(neo1973_lm4857_routes));
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
snd_soc_dapm_ignore_suspend(dapm, "Stereo Out");
|
|
|
|
snd_soc_dapm_ignore_suspend(dapm, "Handset Spk");
|
|
|
|
snd_soc_dapm_ignore_suspend(dapm, "Headphone");
|
|
|
|
|
|
|
|
snd_soc_dapm_sync(dapm);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-05-14 17:03:52 +08:00
|
|
|
/*
|
|
|
|
* BT Codec DAI
|
|
|
|
*/
|
2008-07-07 23:08:24 +08:00
|
|
|
static struct snd_soc_dai bt_dai = {
|
2010-03-18 04:15:21 +08:00
|
|
|
.name = "bluetooth-dai",
|
2007-05-14 17:03:52 +08:00
|
|
|
.playback = {
|
|
|
|
.channels_min = 1,
|
|
|
|
.channels_max = 1,
|
|
|
|
.rates = SNDRV_PCM_RATE_8000,
|
|
|
|
.formats = SNDRV_PCM_FMTBIT_S16_LE,},
|
|
|
|
.capture = {
|
|
|
|
.channels_min = 1,
|
|
|
|
.channels_max = 1,
|
|
|
|
.rates = SNDRV_PCM_RATE_8000,
|
|
|
|
.formats = SNDRV_PCM_FMTBIT_S16_LE,},
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct snd_soc_dai_link neo1973_dai[] = {
|
|
|
|
{ /* Hifi Playback - for similatious use with voice below */
|
|
|
|
.name = "WM8753",
|
|
|
|
.stream_name = "WM8753 HiFi",
|
2010-11-22 14:35:50 +08:00
|
|
|
.platform_name = "samsung-audio",
|
2011-01-25 05:12:42 +08:00
|
|
|
.cpu_dai_name = "s3c24xx-iis",
|
2010-03-18 04:15:21 +08:00
|
|
|
.codec_dai_name = "wm8753-hifi",
|
2011-01-25 05:09:22 +08:00
|
|
|
.codec_name = "wm8753-codec.0-001a",
|
2007-05-14 17:03:52 +08:00
|
|
|
.init = neo1973_wm8753_init,
|
|
|
|
.ops = &neo1973_hifi_ops,
|
|
|
|
},
|
|
|
|
{ /* Voice via BT */
|
|
|
|
.name = "Bluetooth",
|
|
|
|
.stream_name = "Voice",
|
2010-11-22 14:35:50 +08:00
|
|
|
.platform_name = "samsung-audio",
|
2010-03-18 04:15:21 +08:00
|
|
|
.cpu_dai_name = "bluetooth-dai",
|
|
|
|
.codec_dai_name = "wm8753-voice",
|
2011-01-25 05:09:22 +08:00
|
|
|
.codec_name = "wm8753-codec.0-001a",
|
2007-05-14 17:03:52 +08:00
|
|
|
.ops = &neo1973_voice_ops,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2011-03-07 15:04:55 +08:00
|
|
|
static struct snd_soc_aux_dev neo1973_aux_devs[] = {
|
|
|
|
{
|
|
|
|
.name = "lm4857",
|
|
|
|
.codec_name = "lm4857.0-007c",
|
|
|
|
.init = neo1973_lm4857_init,
|
|
|
|
},
|
2007-05-14 17:03:52 +08:00
|
|
|
};
|
|
|
|
|
2011-03-07 15:04:55 +08:00
|
|
|
static struct snd_soc_codec_conf neo1973_codec_conf[] = {
|
|
|
|
{
|
|
|
|
.dev_name = "lm4857.0-007c",
|
|
|
|
.name_prefix = "Amp",
|
|
|
|
},
|
2008-09-01 23:46:57 +08:00
|
|
|
};
|
|
|
|
|
2011-03-07 15:04:55 +08:00
|
|
|
static struct snd_soc_card neo1973 = {
|
|
|
|
.name = "neo1973",
|
|
|
|
.dai_link = neo1973_dai,
|
|
|
|
.num_links = ARRAY_SIZE(neo1973_dai),
|
|
|
|
.aux_dev = neo1973_aux_devs,
|
|
|
|
.num_aux_devs = ARRAY_SIZE(neo1973_aux_devs),
|
|
|
|
.codec_conf = neo1973_codec_conf,
|
|
|
|
.num_configs = ARRAY_SIZE(neo1973_codec_conf),
|
2007-05-14 17:03:52 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct platform_device *neo1973_snd_device;
|
|
|
|
|
|
|
|
static int __init neo1973_init(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2009-03-07 02:04:34 +08:00
|
|
|
pr_debug("Entered %s\n", __func__);
|
2008-05-05 20:16:12 +08:00
|
|
|
|
2008-10-08 20:02:20 +08:00
|
|
|
if (!machine_is_neo1973_gta01()) {
|
|
|
|
printk(KERN_INFO
|
|
|
|
"Only GTA01 hardware supported by ASoC driver\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2007-05-14 17:03:52 +08:00
|
|
|
neo1973_snd_device = platform_device_alloc("soc-audio", -1);
|
|
|
|
if (!neo1973_snd_device)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2010-03-18 04:15:21 +08:00
|
|
|
platform_set_drvdata(neo1973_snd_device, &neo1973);
|
2007-05-14 17:03:52 +08:00
|
|
|
ret = platform_device_add(neo1973_snd_device);
|
|
|
|
|
2008-09-01 23:44:05 +08:00
|
|
|
if (ret) {
|
2007-05-14 17:03:52 +08:00
|
|
|
platform_device_put(neo1973_snd_device);
|
2008-09-01 23:44:05 +08:00
|
|
|
return ret;
|
|
|
|
}
|
2007-05-14 17:03:52 +08:00
|
|
|
|
2008-09-01 23:46:57 +08:00
|
|
|
if (ret != 0)
|
2008-09-01 23:44:05 +08:00
|
|
|
platform_device_unregister(neo1973_snd_device);
|
2007-05-14 17:03:52 +08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit neo1973_exit(void)
|
|
|
|
{
|
2009-03-07 02:04:34 +08:00
|
|
|
pr_debug("Entered %s\n", __func__);
|
2008-05-05 20:16:12 +08:00
|
|
|
|
2007-05-14 17:03:52 +08:00
|
|
|
platform_device_unregister(neo1973_snd_device);
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(neo1973_init);
|
|
|
|
module_exit(neo1973_exit);
|
|
|
|
|
|
|
|
/* Module information */
|
2008-05-01 02:25:23 +08:00
|
|
|
MODULE_AUTHOR("Graeme Gregory, graeme@openmoko.org, www.openmoko.org");
|
2007-05-14 17:03:52 +08:00
|
|
|
MODULE_DESCRIPTION("ALSA SoC WM8753 Neo1973");
|
|
|
|
MODULE_LICENSE("GPL");
|