1 // SPDX-License-Identifier: GPL-2.0-only
3 * osk5912.c -- SoC audio for OSK 5912
5 * Copyright (C) 2008 Mistral Solutions
7 * Contact: Arun KS <arunks@mistralsolutions.com>
10 #include <linux/clk.h>
11 #include <linux/platform_device.h>
12 #include <sound/core.h>
13 #include <sound/pcm.h>
14 #include <sound/soc.h>
16 #include <asm/mach-types.h>
17 #include <linux/gpio.h>
18 #include <linux/module.h>
19 #include <linux/platform_data/asoc-ti-mcbsp.h>
21 #include "omap-mcbsp.h"
22 #include "../codecs/tlv320aic23.h"
24 #define CODEC_CLOCK 12000000
26 static struct clk
*tlv320aic23_mclk
;
28 static int osk_startup(struct snd_pcm_substream
*substream
)
30 return clk_enable(tlv320aic23_mclk
);
33 static void osk_shutdown(struct snd_pcm_substream
*substream
)
35 clk_disable(tlv320aic23_mclk
);
38 static int osk_hw_params(struct snd_pcm_substream
*substream
,
39 struct snd_pcm_hw_params
*params
)
41 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
42 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
45 /* Set the codec system clock for DAC and ADC */
47 snd_soc_dai_set_sysclk(codec_dai
, 0, CODEC_CLOCK
, SND_SOC_CLOCK_IN
);
50 printk(KERN_ERR
"can't set codec system clock\n");
57 static const struct snd_soc_ops osk_ops
= {
58 .startup
= osk_startup
,
59 .hw_params
= osk_hw_params
,
60 .shutdown
= osk_shutdown
,
63 static const struct snd_soc_dapm_widget tlv320aic23_dapm_widgets
[] = {
64 SND_SOC_DAPM_HP("Headphone Jack", NULL
),
65 SND_SOC_DAPM_LINE("Line In", NULL
),
66 SND_SOC_DAPM_MIC("Mic Jack", NULL
),
69 static const struct snd_soc_dapm_route audio_map
[] = {
70 {"Headphone Jack", NULL
, "LHPOUT"},
71 {"Headphone Jack", NULL
, "RHPOUT"},
73 {"LLINEIN", NULL
, "Line In"},
74 {"RLINEIN", NULL
, "Line In"},
76 {"MICIN", NULL
, "Mic Jack"},
79 /* Digital audio interface glue - connects codec <--> CPU */
80 SND_SOC_DAILINK_DEFS(aic23
,
81 DAILINK_COMP_ARRAY(COMP_CPU("omap-mcbsp.1")),
82 DAILINK_COMP_ARRAY(COMP_CODEC("tlv320aic23-codec",
84 DAILINK_COMP_ARRAY(COMP_PLATFORM("omap-mcbsp.1")));
86 static struct snd_soc_dai_link osk_dai
= {
87 .name
= "TLV320AIC23",
88 .stream_name
= "AIC23",
89 .dai_fmt
= SND_SOC_DAIFMT_DSP_B
| SND_SOC_DAIFMT_NB_NF
|
90 SND_SOC_DAIFMT_CBM_CFM
,
92 SND_SOC_DAILINK_REG(aic23
),
95 /* Audio machine driver */
96 static struct snd_soc_card snd_soc_card_osk
= {
102 .dapm_widgets
= tlv320aic23_dapm_widgets
,
103 .num_dapm_widgets
= ARRAY_SIZE(tlv320aic23_dapm_widgets
),
104 .dapm_routes
= audio_map
,
105 .num_dapm_routes
= ARRAY_SIZE(audio_map
),
108 static struct platform_device
*osk_snd_device
;
110 static int __init
osk_soc_init(void)
116 if (!(machine_is_omap_osk()))
119 osk_snd_device
= platform_device_alloc("soc-audio", -1);
123 platform_set_drvdata(osk_snd_device
, &snd_soc_card_osk
);
124 err
= platform_device_add(osk_snd_device
);
128 dev
= &osk_snd_device
->dev
;
130 tlv320aic23_mclk
= clk_get(dev
, "mclk");
131 if (IS_ERR(tlv320aic23_mclk
)) {
132 printk(KERN_ERR
"Could not get mclk clock\n");
133 err
= PTR_ERR(tlv320aic23_mclk
);
138 * Configure 12 MHz output on MCLK.
140 curRate
= (uint
) clk_get_rate(tlv320aic23_mclk
);
141 if (curRate
!= CODEC_CLOCK
) {
142 if (clk_set_rate(tlv320aic23_mclk
, CODEC_CLOCK
)) {
143 printk(KERN_ERR
"Cannot set MCLK for AIC23 CODEC\n");
149 printk(KERN_INFO
"MCLK = %d [%d]\n",
150 (uint
) clk_get_rate(tlv320aic23_mclk
), CODEC_CLOCK
);
155 clk_put(tlv320aic23_mclk
);
157 platform_device_del(osk_snd_device
);
159 platform_device_put(osk_snd_device
);
165 static void __exit
osk_soc_exit(void)
167 clk_put(tlv320aic23_mclk
);
168 platform_device_unregister(osk_snd_device
);
171 module_init(osk_soc_init
);
172 module_exit(osk_soc_exit
);
174 MODULE_AUTHOR("Arun KS <arunks@mistralsolutions.com>");
175 MODULE_DESCRIPTION("ALSA SoC OSK 5912");
176 MODULE_LICENSE("GPL");