writeback: split writeback_inodes_wb
[linux-2.6/next.git] / sound / soc / sh / migor.c
blobb823a5c9b9bc81d81b8f64f4847483eae3f253bc
1 /*
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.
9 */
11 #include <linux/device.h>
12 #include <linux/firmware.h>
13 #include <linux/module.h>
15 #include <asm/clock.h>
17 #include <cpu/sh7722.h>
19 #include <sound/core.h>
20 #include <sound/pcm.h>
21 #include <sound/soc.h>
22 #include <sound/soc-dapm.h>
24 #include "../codecs/wm8978.h"
25 #include "siu.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)
35 return codec_freq;
38 static struct clk_ops siumckb_clk_ops = {
39 .recalc = siumckb_recalc,
42 static struct clk siumckb_clk = {
43 .name = "siumckb_clk",
44 .id = -1,
45 .ops = &siumckb_clk_ops,
46 .rate = 0, /* initialised at run-time */
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->dai->codec_dai;
54 int ret;
55 unsigned int rate = params_rate(params);
57 ret = snd_soc_dai_set_sysclk(codec_dai, WM8978_PLL, 13000000,
58 SND_SOC_CLOCK_IN);
59 if (ret < 0)
60 return ret;
62 ret = snd_soc_dai_set_clkdiv(codec_dai, WM8978_OPCLKRATE, rate * 512);
63 if (ret < 0)
64 return ret;
66 ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_NB_IF |
67 SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_CBS_CFS);
68 if (ret < 0)
69 return ret;
71 ret = snd_soc_dai_set_fmt(rtd->dai->cpu_dai, SND_SOC_DAIFMT_NB_IF |
72 SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_CBS_CFS);
73 if (ret < 0)
74 return ret;
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->dai->cpu_dai, SIU_CLKB_EXT,
85 codec_freq / 2, SND_SOC_CLOCK_IN);
87 if (!ret)
88 use_count++;
90 return ret;
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->dai->codec_dai;
98 if (use_count) {
99 use_count--;
101 if (!use_count)
102 snd_soc_dai_set_sysclk(codec_dai, WM8978_PLL, 0,
103 SND_SOC_CLOCK_IN);
104 } else {
105 dev_dbg(codec_dai->dev, "Unbalanced hw_free!\n");
108 return 0;
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 static int migor_dai_init(struct snd_soc_codec *codec)
141 snd_soc_dapm_new_controls(codec, migor_dapm_widgets,
142 ARRAY_SIZE(migor_dapm_widgets));
144 snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map));
146 return 0;
149 /* migor digital audio interface glue - connects codec <--> CPU */
150 static struct snd_soc_dai_link migor_dai = {
151 .name = "wm8978",
152 .stream_name = "WM8978",
153 .cpu_dai = &siu_i2s_dai,
154 .codec_dai = &wm8978_dai,
155 .ops = &migor_dai_ops,
156 .init = migor_dai_init,
159 /* migor audio machine driver */
160 static struct snd_soc_card snd_soc_migor = {
161 .name = "Migo-R",
162 .platform = &siu_platform,
163 .dai_link = &migor_dai,
164 .num_links = 1,
167 /* migor audio subsystem */
168 static struct snd_soc_device migor_snd_devdata = {
169 .card = &snd_soc_migor,
170 .codec_dev = &soc_codec_dev_wm8978,
173 static struct platform_device *migor_snd_device;
175 static int __init migor_init(void)
177 int ret;
179 ret = clk_register(&siumckb_clk);
180 if (ret < 0)
181 return ret;
183 /* Port number used on this machine: port B */
184 migor_snd_device = platform_device_alloc("soc-audio", 1);
185 if (!migor_snd_device) {
186 ret = -ENOMEM;
187 goto epdevalloc;
190 platform_set_drvdata(migor_snd_device, &migor_snd_devdata);
192 migor_snd_devdata.dev = &migor_snd_device->dev;
194 ret = platform_device_add(migor_snd_device);
195 if (ret)
196 goto epdevadd;
198 return 0;
200 epdevadd:
201 platform_device_put(migor_snd_device);
202 epdevalloc:
203 clk_unregister(&siumckb_clk);
204 return ret;
207 static void __exit migor_exit(void)
209 clk_unregister(&siumckb_clk);
210 platform_device_unregister(migor_snd_device);
213 module_init(migor_init);
214 module_exit(migor_exit);
216 MODULE_AUTHOR("Guennadi Liakhovetski <g.liakhovetski@gmx.de>");
217 MODULE_DESCRIPTION("ALSA SoC Migor");
218 MODULE_LICENSE("GPL v2");