1 /* sound/soc/samsung/jive_wm8750.c
3 * Copyright 2007,2008 Simtec Electronics
5 * Based on sound/soc/pxa/spitz.c
6 * Copyright 2005 Wolfson Microelectronics PLC.
7 * Copyright 2005 Openedhand Ltd.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/module.h>
15 #include <sound/soc.h>
17 #include <asm/mach-types.h>
19 #include "s3c2412-i2s.h"
20 #include "../codecs/wm8750.h"
22 static const struct snd_soc_dapm_route audio_map
[] = {
23 { "Headphone Jack", NULL
, "LOUT1" },
24 { "Headphone Jack", NULL
, "ROUT1" },
25 { "Internal Speaker", NULL
, "LOUT2" },
26 { "Internal Speaker", NULL
, "ROUT2" },
27 { "LINPUT1", NULL
, "Line Input" },
28 { "RINPUT1", NULL
, "Line Input" },
31 static const struct snd_soc_dapm_widget wm8750_dapm_widgets
[] = {
32 SND_SOC_DAPM_HP("Headphone Jack", NULL
),
33 SND_SOC_DAPM_SPK("Internal Speaker", NULL
),
34 SND_SOC_DAPM_LINE("Line In", NULL
),
37 static int jive_hw_params(struct snd_pcm_substream
*substream
,
38 struct snd_pcm_hw_params
*params
)
40 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
41 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
42 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
43 struct s3c_i2sv2_rate_calc div
;
47 switch (params_rate(params
)) {
61 s3c_i2sv2_iis_calc_rate(&div
, NULL
, params_rate(params
),
62 s3c_i2sv2_get_clock(cpu_dai
));
64 /* set codec DAI configuration */
65 ret
= snd_soc_dai_set_fmt(codec_dai
, SND_SOC_DAIFMT_I2S
|
66 SND_SOC_DAIFMT_NB_NF
|
67 SND_SOC_DAIFMT_CBS_CFS
);
71 /* set cpu DAI configuration */
72 ret
= snd_soc_dai_set_fmt(cpu_dai
, SND_SOC_DAIFMT_I2S
|
73 SND_SOC_DAIFMT_NB_NF
|
74 SND_SOC_DAIFMT_CBS_CFS
);
78 /* set the codec system clock for DAC and ADC */
79 ret
= snd_soc_dai_set_sysclk(codec_dai
, WM8750_SYSCLK
, clk
,
84 ret
= snd_soc_dai_set_clkdiv(cpu_dai
, S3C2412_DIV_RCLK
, div
.fs_div
);
88 ret
= snd_soc_dai_set_clkdiv(cpu_dai
, S3C2412_DIV_PRESCALER
,
96 static struct snd_soc_ops jive_ops
= {
97 .hw_params
= jive_hw_params
,
100 static int jive_wm8750_init(struct snd_soc_pcm_runtime
*rtd
)
102 struct snd_soc_codec
*codec
= rtd
->codec
;
103 struct snd_soc_dapm_context
*dapm
= &codec
->dapm
;
105 /* These endpoints are not being used. */
106 snd_soc_dapm_nc_pin(dapm
, "LINPUT2");
107 snd_soc_dapm_nc_pin(dapm
, "RINPUT2");
108 snd_soc_dapm_nc_pin(dapm
, "LINPUT3");
109 snd_soc_dapm_nc_pin(dapm
, "RINPUT3");
110 snd_soc_dapm_nc_pin(dapm
, "OUT3");
111 snd_soc_dapm_nc_pin(dapm
, "MONO");
116 static struct snd_soc_dai_link jive_dai
= {
118 .stream_name
= "WM8750",
119 .cpu_dai_name
= "s3c2412-i2s",
120 .codec_dai_name
= "wm8750-hifi",
121 .platform_name
= "s3c2412-i2s",
122 .codec_name
= "wm8750.0-001a",
123 .init
= jive_wm8750_init
,
127 /* jive audio machine driver */
128 static struct snd_soc_card snd_soc_machine_jive
= {
130 .owner
= THIS_MODULE
,
131 .dai_link
= &jive_dai
,
134 .dapm_widgets
= wm8750_dapm_widgets
,
135 .num_dapm_widgets
= ARRAY_SIZE(wm8750_dapm_widgets
),
136 .dapm_routes
= audio_map
,
137 .num_dapm_routes
= ARRAY_SIZE(audio_map
),
140 static struct platform_device
*jive_snd_device
;
142 static int __init
jive_init(void)
146 if (!machine_is_jive())
149 printk("JIVE WM8750 Audio support\n");
151 jive_snd_device
= platform_device_alloc("soc-audio", -1);
152 if (!jive_snd_device
)
155 platform_set_drvdata(jive_snd_device
, &snd_soc_machine_jive
);
156 ret
= platform_device_add(jive_snd_device
);
159 platform_device_put(jive_snd_device
);
164 static void __exit
jive_exit(void)
166 platform_device_unregister(jive_snd_device
);
169 module_init(jive_init
);
170 module_exit(jive_exit
);
172 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
173 MODULE_DESCRIPTION("ALSA SoC Jive Audio support");
174 MODULE_LICENSE("GPL");