blob: b1bef2bf142dc1e392b284f262f08933f1346a65 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +02002/*
3 * sam9g20_wm8731 -- SoC audio for AT91SAM9G20-based
4 * ATMEL AT91SAM9G20ek board.
5 *
6 * Copyright (C) 2005 SAN People
7 * Copyright (C) 2008 Atmel
8 *
9 * Authors: Sedji Gaouaou <sedji.gaouaou@atmel.com>
10 *
11 * Based on ati_b1_wm8731.c by:
12 * Frank Mandarino <fmandarino@endrelia.com>
13 * Copyright 2006 Endrelia Technologies Inc.
14 * Based on corgi.c by:
15 * Copyright 2005 Wolfson Microelectronics PLC.
16 * Copyright 2005 Openedhand Ltd.
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +020017 */
18
19#include <linux/module.h>
20#include <linux/moduleparam.h>
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +020021#include <linux/kernel.h>
22#include <linux/clk.h>
23#include <linux/timer.h>
24#include <linux/interrupt.h>
25#include <linux/platform_device.h>
Mark Brown59981022009-02-16 20:49:16 +000026#include <linux/i2c.h>
Sachin Kamat8aa99652013-10-11 17:24:01 +053027#include <linux/of.h>
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +020028
29#include <linux/atmel-ssc.h>
30
31#include <sound/core.h>
32#include <sound/pcm.h>
33#include <sound/pcm_params.h>
34#include <sound/soc.h>
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +020035
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +020036#include "../codecs/wm8731.h"
37#include "atmel-pcm.h"
38#include "atmel_ssc_dai.h"
39
Mark Brown5de7f9b2009-02-16 17:51:54 +000040#define MCLK_RATE 12000000
41
Mark Brown22df8eb2009-07-08 18:18:19 +010042/*
43 * As shipped the board does not have inputs. However, it is relatively
44 * straightforward to modify the board to hook them up so support is left
45 * in the driver.
46 */
47#undef ENABLE_MIC_INPUT
48
Mark Brown5de7f9b2009-02-16 17:51:54 +000049static struct clk *mclk;
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +020050
Mark Brown5de7f9b2009-02-16 17:51:54 +000051static int at91sam9g20ek_set_bias_level(struct snd_soc_card *card,
Mark Brownd4c60052011-06-06 19:13:23 +010052 struct snd_soc_dapm_context *dapm,
Mark Brown5de7f9b2009-02-16 17:51:54 +000053 enum snd_soc_bias_level level)
54{
55 static int mclk_on;
56 int ret = 0;
57
58 switch (level) {
59 case SND_SOC_BIAS_ON:
60 case SND_SOC_BIAS_PREPARE:
61 if (!mclk_on)
62 ret = clk_enable(mclk);
63 if (ret == 0)
64 mclk_on = 1;
65 break;
66
67 case SND_SOC_BIAS_OFF:
68 case SND_SOC_BIAS_STANDBY:
69 if (mclk_on)
70 clk_disable(mclk);
71 mclk_on = 0;
72 break;
73 }
74
75 return ret;
76}
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +020077
78static const struct snd_soc_dapm_widget at91sam9g20ek_dapm_widgets[] = {
79 SND_SOC_DAPM_MIC("Int Mic", NULL),
80 SND_SOC_DAPM_SPK("Ext Spk", NULL),
81};
82
83static const struct snd_soc_dapm_route intercon[] = {
84
Lars-Peter Clausena1677e32015-04-11 11:18:43 +020085 /* speaker connected to LHPOUT/RHPOUT */
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +020086 {"Ext Spk", NULL, "LHPOUT"},
Lars-Peter Clausena1677e32015-04-11 11:18:43 +020087 {"Ext Spk", NULL, "RHPOUT"},
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +020088
89 /* mic is connected to Mic Jack, with WM8731 Mic Bias */
90 {"MICIN", NULL, "Mic Bias"},
91 {"Mic Bias", NULL, "Int Mic"},
92};
93
94/*
95 * Logic for a wm8731 as connected on a at91sam9g20ek board.
96 */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000097static int at91sam9g20ek_wm8731_init(struct snd_soc_pcm_runtime *rtd)
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +020098{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000099 struct snd_soc_dai *codec_dai = rtd->codec_dai;
Ladislav Michledefc8f2018-01-15 08:52:54 +0100100 struct device *dev = rtd->dev;
Mark Brown96fd6d42009-07-08 18:26:16 +0100101 int ret;
102
Ladislav Michledefc8f2018-01-15 08:52:54 +0100103 dev_dbg(dev, "%s called\n", __func__);
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200104
Nicolas Ferre6bb74a72011-05-24 11:51:16 +0200105 ret = snd_soc_dai_set_sysclk(codec_dai, WM8731_SYSCLK_MCLK,
Ladislav Michledefc8f2018-01-15 08:52:54 +0100106 MCLK_RATE, SND_SOC_CLOCK_IN);
Mark Brown96fd6d42009-07-08 18:26:16 +0100107 if (ret < 0) {
Ladislav Michledefc8f2018-01-15 08:52:54 +0100108 dev_err(dev, "Failed to set WM8731 SYSCLK: %d\n", ret);
Mark Brown96fd6d42009-07-08 18:26:16 +0100109 return ret;
110 }
111
Lars-Peter Clausenb0ffe9b2014-03-08 15:47:22 +0100112#ifndef ENABLE_MIC_INPUT
113 snd_soc_dapm_nc_pin(&rtd->card->dapm, "Int Mic");
Mark Brown22df8eb2009-07-08 18:18:19 +0100114#endif
115
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200116 return 0;
117}
118
Kuninori Morimotod83923c2019-06-06 13:13:46 +0900119SND_SOC_DAILINK_DEFS(pcm,
120 DAILINK_COMP_ARRAY(COMP_CPU("at91rm9200_ssc.0")),
Kuninori Morimoto0efd1d7c2019-06-28 10:47:02 +0900121 DAILINK_COMP_ARRAY(COMP_CODEC("wm8731.0-001b", "wm8731-hifi")),
122 DAILINK_COMP_ARRAY(COMP_PLATFORM("at91rm9200_ssc.0")));
Kuninori Morimotod83923c2019-06-06 13:13:46 +0900123
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200124static struct snd_soc_dai_link at91sam9g20ek_dai = {
125 .name = "WM8731",
126 .stream_name = "WM8731 PCM",
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200127 .init = at91sam9g20ek_wm8731_init,
Lars-Peter Clausen059d3dc2015-01-01 17:16:10 +0100128 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
129 SND_SOC_DAIFMT_CBM_CFM,
Kuninori Morimotod83923c2019-06-06 13:13:46 +0900130 SND_SOC_DAILINK_REG(pcm),
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200131};
132
Mark Brown87506542008-11-18 20:50:34 +0000133static struct snd_soc_card snd_soc_at91sam9g20ek = {
Mark Brown7ee75382009-02-16 18:00:58 +0000134 .name = "AT91SAMG20-EK",
Axel Lin338d68d2011-12-22 21:14:58 +0800135 .owner = THIS_MODULE,
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200136 .dai_link = &at91sam9g20ek_dai,
137 .num_links = 1,
Mark Brown5de7f9b2009-02-16 17:51:54 +0000138 .set_bias_level = at91sam9g20ek_set_bias_level,
Lars-Peter Clausenb0ffe9b2014-03-08 15:47:22 +0100139
140 .dapm_widgets = at91sam9g20ek_dapm_widgets,
141 .num_dapm_widgets = ARRAY_SIZE(at91sam9g20ek_dapm_widgets),
142 .dapm_routes = intercon,
143 .num_dapm_routes = ARRAY_SIZE(intercon),
Lars-Peter Clausena1677e32015-04-11 11:18:43 +0200144 .fully_routed = true,
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200145};
146
Bill Pemberton71d14ea2012-12-07 09:26:21 -0500147static int at91sam9g20ek_audio_probe(struct platform_device *pdev)
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200148{
Bo Shen531f67e2012-11-14 18:09:11 +0800149 struct device_node *np = pdev->dev.of_node;
150 struct device_node *codec_np, *cpu_np;
Mark Brown5de7f9b2009-02-16 17:51:54 +0000151 struct clk *pllb;
Bo Shen242b9bb2012-10-11 10:38:15 +0800152 struct snd_soc_card *card = &snd_soc_at91sam9g20ek;
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200153 int ret;
154
Bo Shen531f67e2012-11-14 18:09:11 +0800155 if (!np) {
Alexandre Bellonid7a6fe02015-01-06 12:14:32 +0100156 return -ENODEV;
Bo Shen531f67e2012-11-14 18:09:11 +0800157 }
Mark Brown40135ea2009-02-16 16:04:05 +0000158
Bo Shen3310b572012-11-14 18:09:10 +0800159 ret = atmel_ssc_set_audio(0);
160 if (ret) {
161 dev_err(&pdev->dev, "ssc channel is not valid\n");
162 return -EINVAL;
163 }
164
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200165 /*
Mark Brown5de7f9b2009-02-16 17:51:54 +0000166 * Codec MCLK is supplied by PCK0 - set it up.
167 */
168 mclk = clk_get(NULL, "pck0");
169 if (IS_ERR(mclk)) {
Ladislav Michledefc8f2018-01-15 08:52:54 +0100170 dev_err(&pdev->dev, "Failed to get MCLK\n");
Mark Brown5de7f9b2009-02-16 17:51:54 +0000171 ret = PTR_ERR(mclk);
172 goto err;
173 }
174
175 pllb = clk_get(NULL, "pllb");
Vasiliy Kulikovb3915d12010-11-22 18:59:13 +0300176 if (IS_ERR(pllb)) {
Ladislav Michledefc8f2018-01-15 08:52:54 +0100177 dev_err(&pdev->dev, "Failed to get PLLB\n");
Vasiliy Kulikovb3915d12010-11-22 18:59:13 +0300178 ret = PTR_ERR(pllb);
Mark Brown5de7f9b2009-02-16 17:51:54 +0000179 goto err_mclk;
180 }
181 ret = clk_set_parent(mclk, pllb);
182 clk_put(pllb);
183 if (ret != 0) {
Ladislav Michledefc8f2018-01-15 08:52:54 +0100184 dev_err(&pdev->dev, "Failed to set MCLK parent\n");
Mark Brown5de7f9b2009-02-16 17:51:54 +0000185 goto err_mclk;
186 }
187
188 clk_set_rate(mclk, MCLK_RATE);
189
Bo Shen242b9bb2012-10-11 10:38:15 +0800190 card->dev = &pdev->dev;
Bo Shen531f67e2012-11-14 18:09:11 +0800191
192 /* Parse device node info */
Alexandre Bellonid7a6fe02015-01-06 12:14:32 +0100193 ret = snd_soc_of_parse_card_name(card, "atmel,model");
194 if (ret)
195 goto err;
Bo Shen531f67e2012-11-14 18:09:11 +0800196
Alexandre Bellonid7a6fe02015-01-06 12:14:32 +0100197 ret = snd_soc_of_parse_audio_routing(card,
198 "atmel,audio-routing");
199 if (ret)
200 goto err;
Bo Shen531f67e2012-11-14 18:09:11 +0800201
Alexandre Bellonid7a6fe02015-01-06 12:14:32 +0100202 /* Parse codec info */
Kuninori Morimotod83923c2019-06-06 13:13:46 +0900203 at91sam9g20ek_dai.codecs->name = NULL;
Alexandre Bellonid7a6fe02015-01-06 12:14:32 +0100204 codec_np = of_parse_phandle(np, "atmel,audio-codec", 0);
205 if (!codec_np) {
206 dev_err(&pdev->dev, "codec info missing\n");
207 return -EINVAL;
Bo Shen531f67e2012-11-14 18:09:11 +0800208 }
Kuninori Morimotod83923c2019-06-06 13:13:46 +0900209 at91sam9g20ek_dai.codecs->of_node = codec_np;
Alexandre Bellonid7a6fe02015-01-06 12:14:32 +0100210
211 /* Parse dai and platform info */
Kuninori Morimotod83923c2019-06-06 13:13:46 +0900212 at91sam9g20ek_dai.cpus->dai_name = NULL;
Kuninori Morimoto0efd1d7c2019-06-28 10:47:02 +0900213 at91sam9g20ek_dai.platforms->name = NULL;
Alexandre Bellonid7a6fe02015-01-06 12:14:32 +0100214 cpu_np = of_parse_phandle(np, "atmel,ssc-controller", 0);
215 if (!cpu_np) {
216 dev_err(&pdev->dev, "dai and pcm info missing\n");
217 return -EINVAL;
218 }
Kuninori Morimotod83923c2019-06-06 13:13:46 +0900219 at91sam9g20ek_dai.cpus->of_node = cpu_np;
Kuninori Morimoto0efd1d7c2019-06-28 10:47:02 +0900220 at91sam9g20ek_dai.platforms->of_node = cpu_np;
Alexandre Bellonid7a6fe02015-01-06 12:14:32 +0100221
222 of_node_put(codec_np);
223 of_node_put(cpu_np);
Bo Shen531f67e2012-11-14 18:09:11 +0800224
Bo Shen242b9bb2012-10-11 10:38:15 +0800225 ret = snd_soc_register_card(card);
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200226 if (ret) {
Ladislav Michledefc8f2018-01-15 08:52:54 +0100227 dev_err(&pdev->dev, "snd_soc_register_card() failed\n");
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200228 }
229
230 return ret;
231
Mark Brown5de7f9b2009-02-16 17:51:54 +0000232err_mclk:
233 clk_put(mclk);
234 mclk = NULL;
235err:
Bo Shen3310b572012-11-14 18:09:10 +0800236 atmel_ssc_put_audio(0);
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200237 return ret;
238}
239
Bill Pemberton71d14ea2012-12-07 09:26:21 -0500240static int at91sam9g20ek_audio_remove(struct platform_device *pdev)
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200241{
Bo Shen242b9bb2012-10-11 10:38:15 +0800242 struct snd_soc_card *card = platform_get_drvdata(pdev);
243
Bo Shen151edfc2013-01-31 11:53:40 +0800244 clk_disable(mclk);
Mark Brown5de7f9b2009-02-16 17:51:54 +0000245 mclk = NULL;
Bo Shen151edfc2013-01-31 11:53:40 +0800246 snd_soc_unregister_card(card);
247 atmel_ssc_put_audio(0);
Bo Shen242b9bb2012-10-11 10:38:15 +0800248
249 return 0;
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200250}
251
Bo Shen531f67e2012-11-14 18:09:11 +0800252#ifdef CONFIG_OF
253static const struct of_device_id at91sam9g20ek_wm8731_dt_ids[] = {
254 { .compatible = "atmel,at91sam9g20ek-wm8731-audio", },
255 { }
256};
257MODULE_DEVICE_TABLE(of, at91sam9g20ek_wm8731_dt_ids);
258#endif
259
Bo Shen242b9bb2012-10-11 10:38:15 +0800260static struct platform_driver at91sam9g20ek_audio_driver = {
261 .driver = {
262 .name = "at91sam9g20ek-audio",
Bo Shen531f67e2012-11-14 18:09:11 +0800263 .of_match_table = of_match_ptr(at91sam9g20ek_wm8731_dt_ids),
Bo Shen242b9bb2012-10-11 10:38:15 +0800264 },
265 .probe = at91sam9g20ek_audio_probe,
Bill Pemberton71d14ea2012-12-07 09:26:21 -0500266 .remove = at91sam9g20ek_audio_remove,
Bo Shen242b9bb2012-10-11 10:38:15 +0800267};
268
269module_platform_driver(at91sam9g20ek_audio_driver);
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200270
271/* Module information */
272MODULE_AUTHOR("Sedji Gaouaou <sedji.gaouaou@atmel.com>");
273MODULE_DESCRIPTION("ALSA SoC AT91SAM9G20EK_WM8731");
Bo Shen242b9bb2012-10-11 10:38:15 +0800274MODULE_ALIAS("platform:at91sam9g20ek-audio");
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200275MODULE_LICENSE("GPL");