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 <linux/gpio.h>
24 #define QI_LB60_SND_GPIO JZ_GPIO_PORTB(29)
25 #define QI_LB60_AMP_GPIO JZ_GPIO_PORTD(4)
27 static int qi_lb60_spk_event(struct snd_soc_dapm_widget
*widget
,
28 struct snd_kcontrol
*ctrl
, int event
)
31 if (event
& SND_SOC_DAPM_POST_PMU
)
33 else if (event
& SND_SOC_DAPM_PRE_PMD
)
36 gpio_set_value(QI_LB60_SND_GPIO
, on
);
37 gpio_set_value(QI_LB60_AMP_GPIO
, on
);
42 static const struct snd_soc_dapm_widget qi_lb60_widgets
[] = {
43 SND_SOC_DAPM_SPK("Speaker", qi_lb60_spk_event
),
44 SND_SOC_DAPM_MIC("Mic", NULL
),
47 static const struct snd_soc_dapm_route qi_lb60_routes
[] = {
49 {"Speaker", NULL
, "LOUT"},
50 {"Speaker", NULL
, "ROUT"},
53 #define QI_LB60_DAIFMT (SND_SOC_DAIFMT_I2S | \
54 SND_SOC_DAIFMT_NB_NF | \
55 SND_SOC_DAIFMT_CBM_CFM)
57 static int qi_lb60_codec_init(struct snd_soc_pcm_runtime
*rtd
)
59 struct snd_soc_codec
*codec
= rtd
->codec
;
60 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
61 struct snd_soc_dapm_context
*dapm
= &codec
->dapm
;
64 snd_soc_dapm_nc_pin(dapm
, "LIN");
65 snd_soc_dapm_nc_pin(dapm
, "RIN");
67 ret
= snd_soc_dai_set_fmt(cpu_dai
, QI_LB60_DAIFMT
);
69 dev_err(codec
->dev
, "Failed to set cpu dai format: %d\n", ret
);
73 snd_soc_dapm_new_controls(dapm
, qi_lb60_widgets
,
74 ARRAY_SIZE(qi_lb60_widgets
));
75 snd_soc_dapm_add_routes(dapm
, qi_lb60_routes
,
76 ARRAY_SIZE(qi_lb60_routes
));
77 snd_soc_dapm_sync(dapm
);
82 static struct snd_soc_dai_link qi_lb60_dai
= {
84 .stream_name
= "jz4740",
85 .cpu_dai_name
= "jz4740-i2s",
86 .platform_name
= "jz4740-pcm-audio",
87 .codec_dai_name
= "jz4740-hifi",
88 .codec_name
= "jz4740-codec",
89 .init
= qi_lb60_codec_init
,
92 static struct snd_soc_card qi_lb60
= {
94 .dai_link
= &qi_lb60_dai
,
98 static struct platform_device
*qi_lb60_snd_device
;
100 static int __init
qi_lb60_init(void)
104 qi_lb60_snd_device
= platform_device_alloc("soc-audio", -1);
106 if (!qi_lb60_snd_device
)
109 ret
= gpio_request(QI_LB60_SND_GPIO
, "SND");
111 pr_err("qi_lb60 snd: Failed to request SND GPIO(%d): %d\n",
112 QI_LB60_SND_GPIO
, ret
);
116 ret
= gpio_request(QI_LB60_AMP_GPIO
, "AMP");
118 pr_err("qi_lb60 snd: Failed to request AMP GPIO(%d): %d\n",
119 QI_LB60_AMP_GPIO
, ret
);
120 goto err_gpio_free_snd
;
123 gpio_direction_output(QI_LB60_SND_GPIO
, 0);
124 gpio_direction_output(QI_LB60_AMP_GPIO
, 0);
126 platform_set_drvdata(qi_lb60_snd_device
, &qi_lb60
);
128 ret
= platform_device_add(qi_lb60_snd_device
);
130 pr_err("qi_lb60 snd: Failed to add snd soc device: %d\n", ret
);
131 goto err_unset_pdata
;
137 platform_set_drvdata(qi_lb60_snd_device
, NULL
);
138 /*err_gpio_free_amp:*/
139 gpio_free(QI_LB60_AMP_GPIO
);
141 gpio_free(QI_LB60_SND_GPIO
);
143 platform_device_put(qi_lb60_snd_device
);
147 module_init(qi_lb60_init
);
149 static void __exit
qi_lb60_exit(void)
151 gpio_free(QI_LB60_AMP_GPIO
);
152 gpio_free(QI_LB60_SND_GPIO
);
153 platform_device_unregister(qi_lb60_snd_device
);
155 module_exit(qi_lb60_exit
);
157 MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
158 MODULE_DESCRIPTION("ALSA SoC QI LB60 Audio support");
159 MODULE_LICENSE("GPL v2");