2010-06-19 14:52:51 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009, Lars-Peter Clausen <lars@metafoo.de>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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>
|
|
|
|
#include <linux/gpio.h>
|
|
|
|
|
|
|
|
#define QI_LB60_SND_GPIO JZ_GPIO_PORTB(29)
|
|
|
|
#define QI_LB60_AMP_GPIO JZ_GPIO_PORTD(4)
|
|
|
|
|
|
|
|
static int qi_lb60_spk_event(struct snd_soc_dapm_widget *widget,
|
|
|
|
struct snd_kcontrol *ctrl, int event)
|
|
|
|
{
|
2011-04-12 17:31:05 +00:00
|
|
|
int on = !SND_SOC_DAPM_EVENT_OFF(event);
|
2010-06-19 14:52:51 +00:00
|
|
|
|
|
|
|
gpio_set_value(QI_LB60_SND_GPIO, on);
|
|
|
|
gpio_set_value(QI_LB60_AMP_GPIO, on);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct snd_soc_dapm_widget qi_lb60_widgets[] = {
|
|
|
|
SND_SOC_DAPM_SPK("Speaker", qi_lb60_spk_event),
|
|
|
|
SND_SOC_DAPM_MIC("Mic", NULL),
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct snd_soc_dapm_route qi_lb60_routes[] = {
|
|
|
|
{"Mic", NULL, "MIC"},
|
|
|
|
{"Speaker", NULL, "LOUT"},
|
|
|
|
{"Speaker", NULL, "ROUT"},
|
|
|
|
};
|
|
|
|
|
|
|
|
#define QI_LB60_DAIFMT (SND_SOC_DAIFMT_I2S | \
|
|
|
|
SND_SOC_DAIFMT_NB_NF | \
|
|
|
|
SND_SOC_DAIFMT_CBM_CFM)
|
|
|
|
|
2010-03-17 20:15:21 +00:00
|
|
|
static int qi_lb60_codec_init(struct snd_soc_pcm_runtime *rtd)
|
2010-06-19 14:52:51 +00:00
|
|
|
{
|
2010-03-17 20:15:21 +00:00
|
|
|
struct snd_soc_codec *codec = rtd->codec;
|
|
|
|
struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
|
2010-11-05 13:53:46 +00:00
|
|
|
struct snd_soc_dapm_context *dapm = &codec->dapm;
|
2010-06-19 14:52:51 +00:00
|
|
|
int ret;
|
|
|
|
|
2010-11-05 13:53:46 +00:00
|
|
|
snd_soc_dapm_nc_pin(dapm, "LIN");
|
|
|
|
snd_soc_dapm_nc_pin(dapm, "RIN");
|
2010-06-19 14:52:51 +00:00
|
|
|
|
|
|
|
ret = snd_soc_dai_set_fmt(cpu_dai, QI_LB60_DAIFMT);
|
|
|
|
if (ret < 0) {
|
|
|
|
dev_err(codec->dev, "Failed to set cpu dai format: %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct snd_soc_dai_link qi_lb60_dai = {
|
|
|
|
.name = "jz4740",
|
|
|
|
.stream_name = "jz4740",
|
2010-03-17 20:15:21 +00:00
|
|
|
.cpu_dai_name = "jz4740-i2s",
|
2010-08-15 15:48:47 +00:00
|
|
|
.platform_name = "jz4740-pcm-audio",
|
2010-03-17 20:15:21 +00:00
|
|
|
.codec_dai_name = "jz4740-hifi",
|
|
|
|
.codec_name = "jz4740-codec",
|
2010-06-19 14:52:51 +00:00
|
|
|
.init = qi_lb60_codec_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct snd_soc_card qi_lb60 = {
|
|
|
|
.name = "QI LB60",
|
2011-12-23 06:48:19 +00:00
|
|
|
.owner = THIS_MODULE,
|
2010-06-19 14:52:51 +00:00
|
|
|
.dai_link = &qi_lb60_dai,
|
|
|
|
.num_links = 1,
|
2011-04-12 17:31:03 +00:00
|
|
|
|
|
|
|
.dapm_widgets = qi_lb60_widgets,
|
|
|
|
.num_dapm_widgets = ARRAY_SIZE(qi_lb60_widgets),
|
|
|
|
.dapm_routes = qi_lb60_routes,
|
|
|
|
.num_dapm_routes = ARRAY_SIZE(qi_lb60_routes),
|
2010-06-19 14:52:51 +00:00
|
|
|
};
|
|
|
|
|
2011-04-12 17:31:04 +00:00
|
|
|
static const struct gpio qi_lb60_gpios[] = {
|
|
|
|
{ QI_LB60_SND_GPIO, GPIOF_OUT_INIT_LOW, "SND" },
|
|
|
|
{ QI_LB60_AMP_GPIO, GPIOF_OUT_INIT_LOW, "AMP" },
|
|
|
|
};
|
|
|
|
|
2012-01-06 03:30:10 +00:00
|
|
|
static int __devinit qi_lb60_probe(struct platform_device *pdev)
|
2010-06-19 14:52:51 +00:00
|
|
|
{
|
2012-01-06 03:30:10 +00:00
|
|
|
struct snd_soc_card *card = &qi_lb60;
|
2010-06-19 14:52:51 +00:00
|
|
|
int ret;
|
|
|
|
|
2011-04-12 17:31:04 +00:00
|
|
|
ret = gpio_request_array(qi_lb60_gpios, ARRAY_SIZE(qi_lb60_gpios));
|
2012-01-06 03:30:10 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2010-06-19 14:52:51 +00:00
|
|
|
|
2012-01-06 03:30:10 +00:00
|
|
|
card->dev = &pdev->dev;
|
2010-06-19 14:52:51 +00:00
|
|
|
|
2012-01-06 03:30:10 +00:00
|
|
|
ret = snd_soc_register_card(card);
|
2010-06-19 14:52:51 +00:00
|
|
|
if (ret) {
|
2012-01-06 03:30:10 +00:00
|
|
|
dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
|
|
|
|
ret);
|
|
|
|
gpio_free_array(qi_lb60_gpios, ARRAY_SIZE(qi_lb60_gpios));
|
2010-06-19 14:52:51 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-01-06 03:30:10 +00:00
|
|
|
static int __devexit qi_lb60_remove(struct platform_device *pdev)
|
2010-06-19 14:52:51 +00:00
|
|
|
{
|
2012-01-06 03:30:10 +00:00
|
|
|
struct snd_soc_card *card = platform_get_drvdata(pdev);
|
|
|
|
|
|
|
|
snd_soc_unregister_card(card);
|
2011-04-12 17:31:04 +00:00
|
|
|
gpio_free_array(qi_lb60_gpios, ARRAY_SIZE(qi_lb60_gpios));
|
2012-01-06 03:30:10 +00:00
|
|
|
return 0;
|
2010-06-19 14:52:51 +00:00
|
|
|
}
|
2012-01-06 03:30:10 +00:00
|
|
|
|
|
|
|
static struct platform_driver qi_lb60_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = "qi-lb60-audio",
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
},
|
|
|
|
.probe = qi_lb60_probe,
|
|
|
|
.remove = __devexit_p(qi_lb60_remove),
|
|
|
|
};
|
|
|
|
|
|
|
|
module_platform_driver(qi_lb60_driver);
|
2010-06-19 14:52:51 +00:00
|
|
|
|
|
|
|
MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
|
|
|
|
MODULE_DESCRIPTION("ALSA SoC QI LB60 Audio support");
|
|
|
|
MODULE_LICENSE("GPL v2");
|
2012-01-06 03:30:10 +00:00
|
|
|
MODULE_ALIAS("platform:qi-lb60-audio");
|