2 * Copyright (C) 2009, Lars-Peter Clausen <lars@metafoo.de>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * You should have received a copy of the GNU General Public License along
9 * with this program; if not, write to the Free Software Foundation, Inc.,
10 * 675 Mass Ave, Cambridge, MA 02139, USA.
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/timer.h>
17 #include <linux/interrupt.h>
18 #include <linux/platform_device.h>
19 #include <sound/core.h>
20 #include <sound/pcm.h>
21 #include <sound/soc.h>
22 #include <sound/soc-dapm.h>
23 #include <linux/gpio.h>
25 #include "../codecs/jzcodec.h"
26 #include "jz4740-pcm.h"
27 #include "jz4740-i2s.h"
30 #define QI_LB60_SND_GPIO JZ_GPIO_PORTB(29)
31 #define QI_LB60_AMP_GPIO JZ_GPIO_PORTD(4)
33 static int qi_lb60_spk_event(struct snd_soc_dapm_widget
*widget
,
34 struct snd_kcontrol
*ctrl
, int event
)
37 if (event
& SND_SOC_DAPM_POST_PMU
)
39 else if (event
& SND_SOC_DAPM_PRE_PMD
)
42 gpio_set_value(QI_LB60_SND_GPIO
, on
);
43 gpio_set_value(QI_LB60_AMP_GPIO
, on
);
48 static const struct snd_soc_dapm_widget qi_lb60_widgets
[] = {
49 SND_SOC_DAPM_SPK("Speaker", qi_lb60_spk_event
),
50 SND_SOC_DAPM_MIC("Mic", NULL
),
53 static const struct snd_soc_dapm_route qi_lb60_routes
[] = {
55 {"Speaker", NULL
, "LOUT"},
56 {"Speaker", NULL
, "ROUT"},
59 #define QI_LB60_DAIFMT (SND_SOC_DAIFMT_I2S | \
60 SND_SOC_DAIFMT_NB_NF | \
61 SND_SOC_DAIFMT_CBM_CFM)
63 static int qi_lb60_codec_init(struct snd_soc_codec
*codec
)
66 struct snd_soc_dai
*cpu_dai
= codec
->socdev
->card
->dai_link
->cpu_dai
;
67 struct snd_soc_dai
*codec_dai
= codec
->socdev
->card
->dai_link
->codec_dai
;
69 snd_soc_dapm_nc_pin(codec
, "LIN");
70 snd_soc_dapm_nc_pin(codec
, "RIN");
72 ret
= snd_soc_dai_set_fmt(codec_dai
, QI_LB60_DAIFMT
);
74 dev_err(codec
->dev
, "Failed to set codec dai format: %d\n", ret
);
78 ret
= snd_soc_dai_set_fmt(cpu_dai
, QI_LB60_DAIFMT
);
80 dev_err(codec
->dev
, "Failed to set cpu dai format: %d\n", ret
);
84 ret
= snd_soc_dai_set_sysclk(codec_dai
, JZCODEC_SYSCLK
, 111,
87 dev_err(codec
->dev
, "Failed to set codec dai sysclk: %d\n", ret
);
91 snd_soc_dapm_new_controls(codec
, qi_lb60_widgets
, ARRAY_SIZE(qi_lb60_widgets
));
93 snd_soc_dapm_add_routes(codec
, qi_lb60_routes
, ARRAY_SIZE(qi_lb60_routes
));
95 snd_soc_dapm_sync(codec
);
100 static struct snd_soc_dai_link qi_lb60_dai
= {
102 .stream_name
= "JZCODEC",
103 .cpu_dai
= &jz4740_i2s_dai
,
104 .codec_dai
= &jz_codec_dai
,
105 .init
= qi_lb60_codec_init
,
108 static struct snd_soc_card qi_lb60
= {
110 .dai_link
= &qi_lb60_dai
,
112 .platform
= &jz4740_soc_platform
,
115 static struct snd_soc_device qi_lb60_snd_devdata
= {
117 .codec_dev
= &soc_codec_dev_jzcodec
,
120 static struct platform_device
*qi_lb60_snd_device
;
122 static int __init
qi_lb60_init(void)
126 qi_lb60_snd_device
= platform_device_alloc("soc-audio", -1);
128 if (!qi_lb60_snd_device
)
132 ret
= gpio_request(QI_LB60_SND_GPIO
, "SND");
134 pr_err("qi_lb60 snd: Failed to request SND GPIO(%d): %d\n",
135 QI_LB60_SND_GPIO
, ret
);
139 ret
= gpio_request(QI_LB60_AMP_GPIO
, "AMP");
141 pr_err("qi_lb60 snd: Failed to request AMP GPIO(%d): %d\n",
142 QI_LB60_AMP_GPIO
, ret
);
143 goto err_gpio_free_snd
;
146 gpio_direction_output(JZ_GPIO_PORTB(29), 0);
147 gpio_direction_output(JZ_GPIO_PORTD(4), 0);
149 platform_set_drvdata(qi_lb60_snd_device
, &qi_lb60_snd_devdata
);
150 qi_lb60_snd_devdata
.dev
= &qi_lb60_snd_device
->dev
;
151 ret
= platform_device_add(qi_lb60_snd_device
);
153 pr_err("qi_lb60 snd: Failed to add snd soc device: %d\n", ret
);
154 goto err_unset_pdata
;
160 platform_set_drvdata(qi_lb60_snd_device
, NULL
);
161 /*err_gpio_free_amp:*/
162 gpio_free(QI_LB60_AMP_GPIO
);
164 gpio_free(QI_LB60_SND_GPIO
);
166 platform_device_put(qi_lb60_snd_device
);
170 module_init(qi_lb60_init
);
172 static void __exit
qi_lb60_exit(void)
174 gpio_free(QI_LB60_AMP_GPIO
);
175 gpio_free(QI_LB60_SND_GPIO
);
176 platform_device_unregister(qi_lb60_snd_device
);
178 module_exit(qi_lb60_exit
);
180 MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
181 MODULE_DESCRIPTION("ALSA SoC QI LB60 Audio support");
182 MODULE_LICENSE("GPL v2");