blob: 40e29dda7e7a74f336701b76357430552781268f [file] [log] [blame]
Thomas Gleixner2b27bdc2019-05-29 16:57:50 -07001// SPDX-License-Identifier: GPL-2.0-only
Arun KS17f9ecf2008-10-02 15:02:45 +05302/*
3 * osk5912.c -- SoC audio for OSK 5912
4 *
5 * Copyright (C) 2008 Mistral Solutions
6 *
7 * Contact: Arun KS <arunks@mistralsolutions.com>
Arun KS17f9ecf2008-10-02 15:02:45 +05308 */
9
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>
Arun KS17f9ecf2008-10-02 15:02:45 +053015
16#include <asm/mach-types.h>
Arun KS17f9ecf2008-10-02 15:02:45 +053017#include <linux/gpio.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040018#include <linux/module.h>
Arnd Bergmann22037472012-08-24 15:21:06 +020019#include <linux/platform_data/asoc-ti-mcbsp.h>
Arun KS17f9ecf2008-10-02 15:02:45 +053020
21#include "omap-mcbsp.h"
Arun KS17f9ecf2008-10-02 15:02:45 +053022#include "../codecs/tlv320aic23.h"
23
24#define CODEC_CLOCK 12000000
25
26static struct clk *tlv320aic23_mclk;
27
28static int osk_startup(struct snd_pcm_substream *substream)
29{
30 return clk_enable(tlv320aic23_mclk);
31}
32
33static void osk_shutdown(struct snd_pcm_substream *substream)
34{
35 clk_disable(tlv320aic23_mclk);
36}
37
38static int osk_hw_params(struct snd_pcm_substream *substream,
39 struct snd_pcm_hw_params *params)
40{
Kuninori Morimoto02cde142020-07-20 10:17:48 +090041 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
Kuninori Morimoto2842b872020-03-23 14:21:14 +090042 struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
Arun KS17f9ecf2008-10-02 15:02:45 +053043 int err;
44
Arun KS17f9ecf2008-10-02 15:02:45 +053045 /* Set the codec system clock for DAC and ADC */
46 err =
47 snd_soc_dai_set_sysclk(codec_dai, 0, CODEC_CLOCK, SND_SOC_CLOCK_IN);
48
49 if (err < 0) {
50 printk(KERN_ERR "can't set codec system clock\n");
51 return err;
52 }
53
54 return err;
55}
56
Bhumika Goyal2261cf12017-03-18 19:34:11 +053057static const struct snd_soc_ops osk_ops = {
Arun KS17f9ecf2008-10-02 15:02:45 +053058 .startup = osk_startup,
59 .hw_params = osk_hw_params,
60 .shutdown = osk_shutdown,
61};
62
63static 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),
67};
68
69static const struct snd_soc_dapm_route audio_map[] = {
70 {"Headphone Jack", NULL, "LHPOUT"},
71 {"Headphone Jack", NULL, "RHPOUT"},
72
73 {"LLINEIN", NULL, "Line In"},
74 {"RLINEIN", NULL, "Line In"},
75
76 {"MICIN", NULL, "Mic Jack"},
77};
78
Arun KS17f9ecf2008-10-02 15:02:45 +053079/* Digital audio interface glue - connects codec <--> CPU */
Kuninori Morimoto5cffc232019-06-06 13:12:43 +090080SND_SOC_DAILINK_DEFS(aic23,
81 DAILINK_COMP_ARRAY(COMP_CPU("omap-mcbsp.1")),
82 DAILINK_COMP_ARRAY(COMP_CODEC("tlv320aic23-codec",
83 "tlv320aic23-hifi")),
84 DAILINK_COMP_ARRAY(COMP_PLATFORM("omap-mcbsp.1")));
85
Arun KS17f9ecf2008-10-02 15:02:45 +053086static struct snd_soc_dai_link osk_dai = {
87 .name = "TLV320AIC23",
88 .stream_name = "AIC23",
Jarkko Nikulacf9feff2011-09-30 16:07:45 +030089 .dai_fmt = SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_NB_NF |
90 SND_SOC_DAIFMT_CBM_CFM,
Arun KS17f9ecf2008-10-02 15:02:45 +053091 .ops = &osk_ops,
Kuninori Morimoto5cffc232019-06-06 13:12:43 +090092 SND_SOC_DAILINK_REG(aic23),
Arun KS17f9ecf2008-10-02 15:02:45 +053093};
94
95/* Audio machine driver */
Mark Brown87506542008-11-18 20:50:34 +000096static struct snd_soc_card snd_soc_card_osk = {
Arun KS17f9ecf2008-10-02 15:02:45 +053097 .name = "OSK5912",
Axel Linb425b882011-12-22 11:08:59 +080098 .owner = THIS_MODULE,
Arun KS17f9ecf2008-10-02 15:02:45 +053099 .dai_link = &osk_dai,
100 .num_links = 1,
Peter Ujfalusi93b4d792011-10-10 15:34:11 +0300101
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),
Arun KS17f9ecf2008-10-02 15:02:45 +0530106};
107
Arun KS17f9ecf2008-10-02 15:02:45 +0530108static struct platform_device *osk_snd_device;
109
110static int __init osk_soc_init(void)
111{
112 int err;
113 u32 curRate;
114 struct device *dev;
115
116 if (!(machine_is_omap_osk()))
117 return -ENODEV;
118
119 osk_snd_device = platform_device_alloc("soc-audio", -1);
120 if (!osk_snd_device)
121 return -ENOMEM;
122
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000123 platform_set_drvdata(osk_snd_device, &snd_soc_card_osk);
Arun KS17f9ecf2008-10-02 15:02:45 +0530124 err = platform_device_add(osk_snd_device);
125 if (err)
126 goto err1;
127
128 dev = &osk_snd_device->dev;
129
130 tlv320aic23_mclk = clk_get(dev, "mclk");
131 if (IS_ERR(tlv320aic23_mclk)) {
132 printk(KERN_ERR "Could not get mclk clock\n");
Axel Lin25436182010-11-24 22:24:01 +0800133 err = PTR_ERR(tlv320aic23_mclk);
134 goto err2;
Arun KS17f9ecf2008-10-02 15:02:45 +0530135 }
136
Arun KS17f9ecf2008-10-02 15:02:45 +0530137 /*
138 * Configure 12 MHz output on MCLK.
139 */
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");
144 err = -ECANCELED;
Axel Lin25436182010-11-24 22:24:01 +0800145 goto err3;
Arun KS17f9ecf2008-10-02 15:02:45 +0530146 }
147 }
148
David Brownell5706d502009-03-11 02:37:25 -0800149 printk(KERN_INFO "MCLK = %d [%d]\n",
150 (uint) clk_get_rate(tlv320aic23_mclk), CODEC_CLOCK);
Arun KS17f9ecf2008-10-02 15:02:45 +0530151
152 return 0;
Axel Lin25436182010-11-24 22:24:01 +0800153
154err3:
Arun KS17f9ecf2008-10-02 15:02:45 +0530155 clk_put(tlv320aic23_mclk);
Axel Lin25436182010-11-24 22:24:01 +0800156err2:
Arun KS17f9ecf2008-10-02 15:02:45 +0530157 platform_device_del(osk_snd_device);
Axel Lin25436182010-11-24 22:24:01 +0800158err1:
Arun KS17f9ecf2008-10-02 15:02:45 +0530159 platform_device_put(osk_snd_device);
160
161 return err;
162
163}
164
165static void __exit osk_soc_exit(void)
166{
Axel Lin25436182010-11-24 22:24:01 +0800167 clk_put(tlv320aic23_mclk);
Arun KS17f9ecf2008-10-02 15:02:45 +0530168 platform_device_unregister(osk_snd_device);
169}
170
171module_init(osk_soc_init);
172module_exit(osk_soc_exit);
173
174MODULE_AUTHOR("Arun KS <arunks@mistralsolutions.com>");
175MODULE_DESCRIPTION("ALSA SoC OSK 5912");
176MODULE_LICENSE("GPL");