2 * rx1950.c -- ALSA Soc Audio Layer
4 * Copyright (c) 2010 Vasily Khoruzhick <anarsoul@gmail.com>
6 * Based on smdk2440.c and magician.c
8 * Authors: Graeme Gregory graeme.gregory@wolfsonmicro.com
9 * Philipp Zabel <philipp.zabel@gmail.com>
10 * Denis Grigoriev <dgreenday@gmail.com>
11 * Vasily Khoruzhick <anarsoul@gmail.com>
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
20 #include <linux/types.h>
21 #include <linux/gpio.h>
22 #include <linux/module.h>
24 #include <sound/soc.h>
25 #include <sound/jack.h>
27 #include <mach/gpio-samsung.h>
29 #include <asm/mach-types.h>
31 #include "s3c24xx-i2s.h"
33 static int rx1950_uda1380_init(struct snd_soc_pcm_runtime
*rtd
);
34 static int rx1950_startup(struct snd_pcm_substream
*substream
);
35 static int rx1950_hw_params(struct snd_pcm_substream
*substream
,
36 struct snd_pcm_hw_params
*params
);
37 static int rx1950_spk_power(struct snd_soc_dapm_widget
*w
,
38 struct snd_kcontrol
*kcontrol
, int event
);
40 static const unsigned int rates
[] = {
46 static const struct snd_pcm_hw_constraint_list hw_rates
= {
47 .count
= ARRAY_SIZE(rates
),
51 static struct snd_soc_jack hp_jack
;
53 static struct snd_soc_jack_pin hp_jack_pins
[] = {
55 .pin
= "Headphone Jack",
56 .mask
= SND_JACK_HEADPHONE
,
60 .mask
= SND_JACK_HEADPHONE
,
65 static struct snd_soc_jack_gpio hp_jack_gpios
[] = {
67 .gpio
= S3C2410_GPG(12),
69 .report
= SND_JACK_HEADPHONE
,
75 static struct snd_soc_ops rx1950_ops
= {
76 .startup
= rx1950_startup
,
77 .hw_params
= rx1950_hw_params
,
80 /* s3c24xx digital audio interface glue - connects codec <--> CPU */
81 static struct snd_soc_dai_link rx1950_uda1380_dai
[] = {
84 .stream_name
= "UDA1380 Duplex",
85 .cpu_dai_name
= "s3c24xx-iis",
86 .codec_dai_name
= "uda1380-hifi",
87 .init
= rx1950_uda1380_init
,
88 .platform_name
= "s3c24xx-iis",
89 .codec_name
= "uda1380-codec.0-001a",
90 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
91 SND_SOC_DAIFMT_CBS_CFS
,
96 /* rx1950 machine dapm widgets */
97 static const struct snd_soc_dapm_widget uda1380_dapm_widgets
[] = {
98 SND_SOC_DAPM_HP("Headphone Jack", NULL
),
99 SND_SOC_DAPM_MIC("Mic Jack", NULL
),
100 SND_SOC_DAPM_SPK("Speaker", rx1950_spk_power
),
103 /* rx1950 machine audio_map */
104 static const struct snd_soc_dapm_route audio_map
[] = {
105 /* headphone connected to VOUTLHP, VOUTRHP */
106 {"Headphone Jack", NULL
, "VOUTLHP"},
107 {"Headphone Jack", NULL
, "VOUTRHP"},
109 /* ext speaker connected to VOUTL, VOUTR */
110 {"Speaker", NULL
, "VOUTL"},
111 {"Speaker", NULL
, "VOUTR"},
113 /* mic is connected to VINM */
114 {"VINM", NULL
, "Mic Jack"},
117 static struct snd_soc_card rx1950_asoc
= {
119 .owner
= THIS_MODULE
,
120 .dai_link
= rx1950_uda1380_dai
,
121 .num_links
= ARRAY_SIZE(rx1950_uda1380_dai
),
123 .dapm_widgets
= uda1380_dapm_widgets
,
124 .num_dapm_widgets
= ARRAY_SIZE(uda1380_dapm_widgets
),
125 .dapm_routes
= audio_map
,
126 .num_dapm_routes
= ARRAY_SIZE(audio_map
),
129 static struct platform_device
*s3c24xx_snd_device
;
131 static int rx1950_startup(struct snd_pcm_substream
*substream
)
133 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
135 return snd_pcm_hw_constraint_list(runtime
, 0,
136 SNDRV_PCM_HW_PARAM_RATE
,
140 static int rx1950_spk_power(struct snd_soc_dapm_widget
*w
,
141 struct snd_kcontrol
*kcontrol
, int event
)
143 if (SND_SOC_DAPM_EVENT_ON(event
))
144 gpio_set_value(S3C2410_GPA(1), 1);
146 gpio_set_value(S3C2410_GPA(1), 0);
151 static int rx1950_hw_params(struct snd_pcm_substream
*substream
,
152 struct snd_pcm_hw_params
*params
)
154 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
155 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
158 unsigned int rate
= params_rate(params
);
159 int clk_source
, fs_mode
;
164 clk_source
= S3C24XX_CLKSRC_PCLK
;
165 fs_mode
= S3C2410_IISMOD_256FS
;
166 div
= s3c24xx_i2s_get_clockrate() / (256 * rate
);
167 if (s3c24xx_i2s_get_clockrate() % (256 * rate
) > (128 * rate
))
172 clk_source
= S3C24XX_CLKSRC_MPLL
;
173 fs_mode
= S3C2410_IISMOD_384FS
;
177 printk(KERN_ERR
"%s: rate %d is not supported\n",
182 /* select clock source */
183 ret
= snd_soc_dai_set_sysclk(cpu_dai
, clk_source
, rate
,
188 /* set MCLK division for sample rate */
189 ret
= snd_soc_dai_set_clkdiv(cpu_dai
, S3C24XX_DIV_MCLK
,
194 /* set BCLK division for sample rate */
195 ret
= snd_soc_dai_set_clkdiv(cpu_dai
, S3C24XX_DIV_BCLK
,
196 S3C2410_IISMOD_32FS
);
200 /* set prescaler division for sample rate */
201 ret
= snd_soc_dai_set_clkdiv(cpu_dai
, S3C24XX_DIV_PRESCALER
,
202 S3C24XX_PRESCALE(div
, div
));
209 static int rx1950_uda1380_init(struct snd_soc_pcm_runtime
*rtd
)
211 snd_soc_card_jack_new(rtd
->card
, "Headphone Jack", SND_JACK_HEADPHONE
,
212 &hp_jack
, hp_jack_pins
, ARRAY_SIZE(hp_jack_pins
));
214 snd_soc_jack_add_gpios(&hp_jack
, ARRAY_SIZE(hp_jack_gpios
),
220 static int __init
rx1950_init(void)
224 if (!machine_is_rx1950())
227 /* configure some gpios */
228 ret
= gpio_request(S3C2410_GPA(1), "speaker-power");
232 ret
= gpio_direction_output(S3C2410_GPA(1), 0);
236 s3c24xx_snd_device
= platform_device_alloc("soc-audio", -1);
237 if (!s3c24xx_snd_device
) {
242 platform_set_drvdata(s3c24xx_snd_device
, &rx1950_asoc
);
243 ret
= platform_device_add(s3c24xx_snd_device
);
246 platform_device_put(s3c24xx_snd_device
);
255 gpio_free(S3C2410_GPA(1));
261 static void __exit
rx1950_exit(void)
263 platform_device_unregister(s3c24xx_snd_device
);
264 gpio_free(S3C2410_GPA(1));
267 module_init(rx1950_init
);
268 module_exit(rx1950_exit
);
270 /* Module information */
271 MODULE_AUTHOR("Vasily Khoruzhick");
272 MODULE_DESCRIPTION("ALSA SoC RX1950");
273 MODULE_LICENSE("GPL");