mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-25 12:24:04 +02:00
365 lines
9.0 KiB
C
365 lines
9.0 KiB
C
|
/*
|
||
|
* pavo.c -- SoC audio for PAVO
|
||
|
*
|
||
|
* 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/driver.h>
|
||
|
#include <sound/core.h>
|
||
|
#include <sound/pcm.h>
|
||
|
#include <sound/soc.h>
|
||
|
#include <sound/soc-dapm.h>
|
||
|
|
||
|
#include "../codecs/jzcodec.h"
|
||
|
#include "jz4740-pcm.h"
|
||
|
#include "jz4740-i2s.h"
|
||
|
|
||
|
#define PAVO_HP 0
|
||
|
#define PAVO_MIC 1
|
||
|
#define PAVO_LINE 2
|
||
|
#define PAVO_HEADSET 3
|
||
|
#define PAVO_HP_OFF 4
|
||
|
#define PAVO_SPK_ON 0
|
||
|
#define PAVO_SPK_OFF 1
|
||
|
|
||
|
/* audio clock in Hz - rounded from 12.235MHz */
|
||
|
#define PAVO_AUDIO_CLOCK 12288000
|
||
|
|
||
|
static int pavo_jack_func;
|
||
|
static int pavo_spk_func;
|
||
|
|
||
|
unsigned short set_scoop_gpio(struct device *dev, unsigned short bit)
|
||
|
{
|
||
|
unsigned short gpio_bit = 0;
|
||
|
|
||
|
return gpio_bit;
|
||
|
}
|
||
|
|
||
|
unsigned short reset_scoop_gpio(struct device *dev, unsigned short bit)
|
||
|
{
|
||
|
unsigned short gpio_bit = 0;
|
||
|
|
||
|
return gpio_bit;
|
||
|
}
|
||
|
|
||
|
static void pavo_ext_control(struct snd_soc_codec *codec)
|
||
|
{
|
||
|
int spk = 0, mic = 0, line = 0, hp = 0, hs = 0;
|
||
|
|
||
|
/* set up jack connection */
|
||
|
switch (pavo_jack_func) {
|
||
|
case PAVO_HP:
|
||
|
hp = 1;
|
||
|
/* set = unmute headphone */
|
||
|
//set_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_MUTE_L);
|
||
|
//set_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_MUTE_R);
|
||
|
break;
|
||
|
case PAVO_MIC:
|
||
|
mic = 1;
|
||
|
/* reset = mute headphone */
|
||
|
//reset_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_MUTE_L);
|
||
|
//reset_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_MUTE_R);
|
||
|
break;
|
||
|
case PAVO_LINE:
|
||
|
line = 1;
|
||
|
//reset_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_MUTE_L);
|
||
|
//reset_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_MUTE_R);
|
||
|
break;
|
||
|
case PAVO_HEADSET:
|
||
|
hs = 1;
|
||
|
mic = 1;
|
||
|
//reset_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_MUTE_L);
|
||
|
//set_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_MUTE_R);
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
if (pavo_spk_func == PAVO_SPK_ON)
|
||
|
spk = 1;
|
||
|
|
||
|
#if 0
|
||
|
/* set the enpoints to their new connetion states */
|
||
|
snd_soc_dapm_set_endpoint(codec, "Ext Spk", spk);
|
||
|
snd_soc_dapm_set_endpoint(codec, "Mic Jack", mic);
|
||
|
snd_soc_dapm_set_endpoint(codec, "Line Jack", line);
|
||
|
snd_soc_dapm_set_endpoint(codec, "Headphone Jack", hp);
|
||
|
snd_soc_dapm_set_endpoint(codec, "Headset Jack", hs);
|
||
|
|
||
|
/* signal a DAPM event */
|
||
|
snd_soc_dapm_sync_endpoints(codec);
|
||
|
#endif
|
||
|
}
|
||
|
|
||
|
static int pavo_startup(struct snd_pcm_substream *substream)
|
||
|
{
|
||
|
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
||
|
struct snd_soc_codec *codec = rtd->socdev->codec;
|
||
|
|
||
|
/* check the jack status at stream startup */
|
||
|
pavo_ext_control(codec);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/* we need to unmute the HP at shutdown as the mute burns power on pavo */
|
||
|
static void pavo_shutdown(struct snd_pcm_substream *substream)
|
||
|
{
|
||
|
/*struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
||
|
struct snd_soc_codec *codec = rtd->socdev->codec;*/
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
static int pavo_hw_params(struct snd_pcm_substream *substream,
|
||
|
struct snd_pcm_hw_params *params)
|
||
|
{
|
||
|
struct snd_soc_pcm_runtime *rtd = substream->private_data;
|
||
|
struct snd_soc_dai *codec_dai = rtd->dai->codec_dai;
|
||
|
struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai;
|
||
|
int ret = 0;
|
||
|
|
||
|
/* set codec DAI configuration */
|
||
|
ret = codec_dai->dai_ops.set_fmt(codec_dai, SND_SOC_DAIFMT_I2S |
|
||
|
SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS);
|
||
|
if (ret < 0)
|
||
|
return ret;
|
||
|
|
||
|
/* set cpu DAI configuration */
|
||
|
ret = cpu_dai->dai_ops.set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S |
|
||
|
SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS);
|
||
|
if (ret < 0)
|
||
|
return ret;
|
||
|
|
||
|
/* set the codec system clock for DAC and ADC */
|
||
|
ret = codec_dai->dai_ops.set_sysclk(codec_dai, JZCODEC_SYSCLK, 111,
|
||
|
SND_SOC_CLOCK_IN);
|
||
|
if (ret < 0)
|
||
|
return ret;
|
||
|
|
||
|
/* set the I2S system clock as input (unused) */
|
||
|
ret = cpu_dai->dai_ops.set_sysclk(cpu_dai, JZ4740_I2S_SYSCLK, 0,
|
||
|
SND_SOC_CLOCK_IN);
|
||
|
if (ret < 0)
|
||
|
return ret;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static struct snd_soc_ops pavo_ops = {
|
||
|
.startup = pavo_startup,
|
||
|
.hw_params = pavo_hw_params,
|
||
|
.shutdown = pavo_shutdown,
|
||
|
};
|
||
|
|
||
|
static int pavo_get_jack(struct snd_kcontrol *kcontrol,
|
||
|
struct snd_ctl_elem_value *ucontrol)
|
||
|
{
|
||
|
ucontrol->value.integer.value[0] = pavo_jack_func;
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static int pavo_set_jack(struct snd_kcontrol *kcontrol,
|
||
|
struct snd_ctl_elem_value *ucontrol)
|
||
|
{
|
||
|
struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
|
||
|
|
||
|
if (pavo_jack_func == ucontrol->value.integer.value[0])
|
||
|
return 0;
|
||
|
|
||
|
pavo_jack_func = ucontrol->value.integer.value[0];
|
||
|
pavo_ext_control(codec);
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
static int pavo_get_spk(struct snd_kcontrol *kcontrol,
|
||
|
struct snd_ctl_elem_value *ucontrol)
|
||
|
{
|
||
|
ucontrol->value.integer.value[0] = pavo_spk_func;
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static int pavo_set_spk(struct snd_kcontrol *kcontrol,
|
||
|
struct snd_ctl_elem_value *ucontrol)
|
||
|
{
|
||
|
struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol);
|
||
|
|
||
|
if (pavo_spk_func == ucontrol->value.integer.value[0])
|
||
|
return 0;
|
||
|
|
||
|
pavo_spk_func = ucontrol->value.integer.value[0];
|
||
|
pavo_ext_control(codec);
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
static int pavo_amp_event(struct snd_soc_dapm_widget *w, int event)
|
||
|
{
|
||
|
if (SND_SOC_DAPM_EVENT_ON(event))
|
||
|
//set_scoop_gpio(&corgiscoop_device.dev, PAVO_SCP_APM_ON);
|
||
|
;
|
||
|
else
|
||
|
//reset_scoop_gpio(&corgiscoop_device.dev, PAVO_SCP_APM_ON);
|
||
|
;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static int pavo_mic_event(struct snd_soc_dapm_widget *w, int event)
|
||
|
{
|
||
|
if (SND_SOC_DAPM_EVENT_ON(event))
|
||
|
//set_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_MIC_BIAS);
|
||
|
;
|
||
|
else
|
||
|
//reset_scoop_gpio(&corgiscoop_device.dev, CORGI_SCP_MIC_BIAS);
|
||
|
;
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/* pavo machine dapm widgets */
|
||
|
static const struct snd_soc_dapm_widget jzcodec_dapm_widgets[] = {
|
||
|
SND_SOC_DAPM_HP("Headphone Jack", NULL),
|
||
|
SND_SOC_DAPM_MIC("Mic Jack",pavo_mic_event),
|
||
|
SND_SOC_DAPM_SPK("Ext Spk", pavo_amp_event),
|
||
|
SND_SOC_DAPM_LINE("Line Jack", NULL),
|
||
|
SND_SOC_DAPM_HP("Headset Jack", NULL),
|
||
|
};
|
||
|
|
||
|
/* pavo machine audio map (connections to the codec pins) */
|
||
|
static const char *audio_map[][3] = {
|
||
|
|
||
|
/* headset Jack - in = micin, out = LHPOUT*/
|
||
|
{"Headset Jack", NULL, "LHPOUT"},
|
||
|
|
||
|
/* headphone connected to LHPOUT1, RHPOUT1 */
|
||
|
{"Headphone Jack", NULL, "LHPOUT"},
|
||
|
{"Headphone Jack", NULL, "RHPOUT"},
|
||
|
|
||
|
/* speaker connected to LOUT, ROUT */
|
||
|
{"Ext Spk", NULL, "ROUT"},
|
||
|
{"Ext Spk", NULL, "LOUT"},
|
||
|
|
||
|
/* mic is connected to MICIN (via right channel of headphone jack) */
|
||
|
{"MICIN", NULL, "Mic Jack"},
|
||
|
|
||
|
/* Same as the above but no mic bias for line signals */
|
||
|
{"MICIN", NULL, "Line Jack"},
|
||
|
|
||
|
{NULL, NULL, NULL},
|
||
|
};
|
||
|
|
||
|
static const char *jack_function[] = {"Headphone", "Mic", "Line", "Headset",
|
||
|
"Off"};
|
||
|
static const char *spk_function[] = {"On", "Off"};
|
||
|
static const struct soc_enum pavo_enum[] = {
|
||
|
SOC_ENUM_SINGLE_EXT(5, jack_function),
|
||
|
SOC_ENUM_SINGLE_EXT(2, spk_function),
|
||
|
};
|
||
|
|
||
|
static const struct snd_kcontrol_new jzcodec_pavo_controls[] = {
|
||
|
SOC_ENUM_EXT("Jack Function", pavo_enum[0], pavo_get_jack,
|
||
|
pavo_set_jack),
|
||
|
SOC_ENUM_EXT("Speaker Function", pavo_enum[1], pavo_get_spk,
|
||
|
pavo_set_spk),
|
||
|
};
|
||
|
|
||
|
/*
|
||
|
* Pavo for a jzcodec as connected on jz4740 Device
|
||
|
*/
|
||
|
static int pavo_jzcodec_init(struct snd_soc_codec *codec)
|
||
|
{
|
||
|
int i, err;
|
||
|
|
||
|
#if 0
|
||
|
snd_soc_dapm_set_endpoint(codec, "LLINEIN", 0);
|
||
|
snd_soc_dapm_set_endpoint(codec, "RLINEIN", 0);
|
||
|
#endif
|
||
|
/* Add pavo specific controls */
|
||
|
for (i = 0; i < ARRAY_SIZE(jzcodec_pavo_controls); i++) {
|
||
|
err = snd_ctl_add(codec->card,
|
||
|
snd_soc_cnew(&jzcodec_pavo_controls[i],codec, NULL));
|
||
|
if (err < 0)
|
||
|
return err;
|
||
|
}
|
||
|
|
||
|
/* Add pavo specific widgets */
|
||
|
for(i = 0; i < ARRAY_SIZE(jzcodec_dapm_widgets); i++) {
|
||
|
snd_soc_dapm_new_control(codec, &jzcodec_dapm_widgets[i]);
|
||
|
}
|
||
|
#if 0
|
||
|
/* Set up pavo specific audio path audio_map */
|
||
|
for(i = 0; audio_map[i][0] != NULL; i++) {
|
||
|
snd_soc_dapm_connect_input(codec, audio_map[i][0],
|
||
|
audio_map[i][1], audio_map[i][2]);
|
||
|
}
|
||
|
|
||
|
snd_soc_dapm_sync_endpoints(codec);
|
||
|
#endif
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/* pavo digital audio interface glue - connects codec <--> CPU */
|
||
|
static struct snd_soc_dai_link pavo_dai = {
|
||
|
.name = "JZCODEC",
|
||
|
.stream_name = "JZCODEC",
|
||
|
.cpu_dai = &jz4740_i2s_dai,
|
||
|
.codec_dai = &jzcodec_dai,
|
||
|
.init = pavo_jzcodec_init,
|
||
|
.ops = &pavo_ops,
|
||
|
};
|
||
|
|
||
|
/* pavo audio machine driver */
|
||
|
static struct snd_soc_machine snd_soc_machine_pavo = {
|
||
|
.name = "Pavo",
|
||
|
.dai_link = &pavo_dai,
|
||
|
.num_links = 1,
|
||
|
};
|
||
|
|
||
|
/* pavo audio subsystem */
|
||
|
static struct snd_soc_device pavo_snd_devdata = {
|
||
|
.machine = &snd_soc_machine_pavo,
|
||
|
.platform = &jz4740_soc_platform,
|
||
|
.codec_dev = &soc_codec_dev_jzcodec,
|
||
|
//.codec_data
|
||
|
};
|
||
|
|
||
|
static struct platform_device *pavo_snd_device;
|
||
|
|
||
|
static int __init pavo_init(void)
|
||
|
{
|
||
|
int ret;
|
||
|
|
||
|
pavo_snd_device = platform_device_alloc("soc-audio", -1);
|
||
|
|
||
|
if (!pavo_snd_device)
|
||
|
return -ENOMEM;
|
||
|
|
||
|
platform_set_drvdata(pavo_snd_device, &pavo_snd_devdata);
|
||
|
pavo_snd_devdata.dev = &pavo_snd_device->dev;
|
||
|
ret = platform_device_add(pavo_snd_device);
|
||
|
|
||
|
if (ret)
|
||
|
platform_device_put(pavo_snd_device);
|
||
|
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
static void __exit pavo_exit(void)
|
||
|
{
|
||
|
platform_device_unregister(pavo_snd_device);
|
||
|
}
|
||
|
|
||
|
module_init(pavo_init);
|
||
|
module_exit(pavo_exit);
|
||
|
|
||
|
/* Module information */
|
||
|
MODULE_AUTHOR("Richard");
|
||
|
MODULE_DESCRIPTION("ALSA SoC Pavo");
|
||
|
MODULE_LICENSE("GPL");
|