2 * ALSA SoC driver for Migo-R
4 * Copyright (C) 2009-2010 Guennadi Liakhovetski <g.liakhovetski@gmx.de>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
11 #include <linux/clkdev.h>
12 #include <linux/device.h>
13 #include <linux/firmware.h>
14 #include <linux/module.h>
16 #include <asm/clock.h>
18 #include <cpu/sh7722.h>
20 #include <sound/core.h>
21 #include <sound/pcm.h>
22 #include <sound/soc.h>
24 #include "../codecs/wm8978.h"
27 /* Default 8000Hz sampling frequency */
28 static unsigned long codec_freq
= 8000 * 512;
30 static unsigned int use_count
;
32 /* External clock, sourced from the codec at the SIUMCKB pin */
33 static unsigned long siumckb_recalc(struct clk
*clk
)
38 static struct sh_clk_ops siumckb_clk_ops
= {
39 .recalc
= siumckb_recalc
,
42 static struct clk siumckb_clk
= {
43 .ops
= &siumckb_clk_ops
,
44 .rate
= 0, /* initialised at run-time */
47 static struct clk_lookup
*siumckb_lookup
;
49 static int migor_hw_params(struct snd_pcm_substream
*substream
,
50 struct snd_pcm_hw_params
*params
)
52 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
53 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
55 unsigned int rate
= params_rate(params
);
57 ret
= snd_soc_dai_set_sysclk(codec_dai
, WM8978_PLL
, 13000000,
62 ret
= snd_soc_dai_set_clkdiv(codec_dai
, WM8978_OPCLKRATE
, rate
* 512);
66 ret
= snd_soc_dai_set_fmt(codec_dai
, SND_SOC_DAIFMT_NB_IF
|
67 SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_CBS_CFS
);
71 ret
= snd_soc_dai_set_fmt(rtd
->cpu_dai
, SND_SOC_DAIFMT_NB_IF
|
72 SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_CBS_CFS
);
76 codec_freq
= rate
* 512;
78 * This propagates the parent frequency change to children and
79 * recalculates the frequency table
81 clk_set_rate(&siumckb_clk
, codec_freq
);
82 dev_dbg(codec_dai
->dev
, "%s: configure %luHz\n", __func__
, codec_freq
);
84 ret
= snd_soc_dai_set_sysclk(rtd
->cpu_dai
, SIU_CLKB_EXT
,
85 codec_freq
/ 2, SND_SOC_CLOCK_IN
);
93 static int migor_hw_free(struct snd_pcm_substream
*substream
)
95 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
96 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
102 snd_soc_dai_set_sysclk(codec_dai
, WM8978_PLL
, 0,
105 dev_dbg(codec_dai
->dev
, "Unbalanced hw_free!\n");
111 static struct snd_soc_ops migor_dai_ops
= {
112 .hw_params
= migor_hw_params
,
113 .hw_free
= migor_hw_free
,
116 static const struct snd_soc_dapm_widget migor_dapm_widgets
[] = {
117 SND_SOC_DAPM_HP("Headphone", NULL
),
118 SND_SOC_DAPM_MIC("Onboard Microphone", NULL
),
119 SND_SOC_DAPM_MIC("External Microphone", NULL
),
122 static const struct snd_soc_dapm_route audio_map
[] = {
123 /* Headphone output connected to LHP/RHP, enable OUT4 for VMID */
124 { "Headphone", NULL
, "OUT4 VMID" },
125 { "OUT4 VMID", NULL
, "LHP" },
126 { "OUT4 VMID", NULL
, "RHP" },
128 /* On-board microphone */
129 { "RMICN", NULL
, "Mic Bias" },
130 { "RMICP", NULL
, "Mic Bias" },
131 { "Mic Bias", NULL
, "Onboard Microphone" },
133 /* External microphone */
134 { "LMICN", NULL
, "Mic Bias" },
135 { "LMICP", NULL
, "Mic Bias" },
136 { "Mic Bias", NULL
, "External Microphone" },
139 /* migor digital audio interface glue - connects codec <--> CPU */
140 static struct snd_soc_dai_link migor_dai
= {
142 .stream_name
= "WM8978",
143 .cpu_dai_name
= "siu-pcm-audio",
144 .codec_dai_name
= "wm8978-hifi",
145 .platform_name
= "siu-pcm-audio",
146 .codec_name
= "wm8978.0-001a",
147 .ops
= &migor_dai_ops
,
150 /* migor audio machine driver */
151 static struct snd_soc_card snd_soc_migor
= {
153 .owner
= THIS_MODULE
,
154 .dai_link
= &migor_dai
,
157 .dapm_widgets
= migor_dapm_widgets
,
158 .num_dapm_widgets
= ARRAY_SIZE(migor_dapm_widgets
),
159 .dapm_routes
= audio_map
,
160 .num_dapm_routes
= ARRAY_SIZE(audio_map
),
163 static struct platform_device
*migor_snd_device
;
165 static int __init
migor_init(void)
169 ret
= clk_register(&siumckb_clk
);
173 siumckb_lookup
= clkdev_alloc(&siumckb_clk
, "siumckb_clk", NULL
);
174 if (!siumckb_lookup
) {
178 clkdev_add(siumckb_lookup
);
180 /* Port number used on this machine: port B */
181 migor_snd_device
= platform_device_alloc("soc-audio", 1);
182 if (!migor_snd_device
) {
187 platform_set_drvdata(migor_snd_device
, &snd_soc_migor
);
189 ret
= platform_device_add(migor_snd_device
);
196 platform_device_put(migor_snd_device
);
198 clkdev_drop(siumckb_lookup
);
200 clk_unregister(&siumckb_clk
);
204 static void __exit
migor_exit(void)
206 clkdev_drop(siumckb_lookup
);
207 clk_unregister(&siumckb_clk
);
208 platform_device_unregister(migor_snd_device
);
211 module_init(migor_init
);
212 module_exit(migor_exit
);
214 MODULE_AUTHOR("Guennadi Liakhovetski <g.liakhovetski@gmx.de>");
215 MODULE_DESCRIPTION("ALSA SoC Migor");
216 MODULE_LICENSE("GPL v2");