blob: 1f9b548f544924dfed013365cf5fe704e3014212 [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
119static struct snd_soc_dai_link at91sam9g20ek_dai = {
120 .name = "WM8731",
121 .stream_name = "WM8731 PCM",
Bo Shen3310b572012-11-14 18:09:10 +0800122 .cpu_dai_name = "at91rm9200_ssc.0",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000123 .codec_dai_name = "wm8731-hifi",
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200124 .init = at91sam9g20ek_wm8731_init,
Bo Shen3310b572012-11-14 18:09:10 +0800125 .platform_name = "at91rm9200_ssc.0",
Mark Brown99b59f32011-03-27 14:35:15 +0100126 .codec_name = "wm8731.0-001b",
Lars-Peter Clausen059d3dc2015-01-01 17:16:10 +0100127 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
128 SND_SOC_DAIFMT_CBM_CFM,
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200129};
130
Mark Brown87506542008-11-18 20:50:34 +0000131static struct snd_soc_card snd_soc_at91sam9g20ek = {
Mark Brown7ee75382009-02-16 18:00:58 +0000132 .name = "AT91SAMG20-EK",
Axel Lin338d68d2011-12-22 21:14:58 +0800133 .owner = THIS_MODULE,
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200134 .dai_link = &at91sam9g20ek_dai,
135 .num_links = 1,
Mark Brown5de7f9b2009-02-16 17:51:54 +0000136 .set_bias_level = at91sam9g20ek_set_bias_level,
Lars-Peter Clausenb0ffe9b2014-03-08 15:47:22 +0100137
138 .dapm_widgets = at91sam9g20ek_dapm_widgets,
139 .num_dapm_widgets = ARRAY_SIZE(at91sam9g20ek_dapm_widgets),
140 .dapm_routes = intercon,
141 .num_dapm_routes = ARRAY_SIZE(intercon),
Lars-Peter Clausena1677e32015-04-11 11:18:43 +0200142 .fully_routed = true,
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200143};
144
Bill Pemberton71d14ea2012-12-07 09:26:21 -0500145static int at91sam9g20ek_audio_probe(struct platform_device *pdev)
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200146{
Bo Shen531f67e2012-11-14 18:09:11 +0800147 struct device_node *np = pdev->dev.of_node;
148 struct device_node *codec_np, *cpu_np;
Mark Brown5de7f9b2009-02-16 17:51:54 +0000149 struct clk *pllb;
Bo Shen242b9bb2012-10-11 10:38:15 +0800150 struct snd_soc_card *card = &snd_soc_at91sam9g20ek;
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200151 int ret;
152
Bo Shen531f67e2012-11-14 18:09:11 +0800153 if (!np) {
Alexandre Bellonid7a6fe02015-01-06 12:14:32 +0100154 return -ENODEV;
Bo Shen531f67e2012-11-14 18:09:11 +0800155 }
Mark Brown40135ea2009-02-16 16:04:05 +0000156
Bo Shen3310b572012-11-14 18:09:10 +0800157 ret = atmel_ssc_set_audio(0);
158 if (ret) {
159 dev_err(&pdev->dev, "ssc channel is not valid\n");
160 return -EINVAL;
161 }
162
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200163 /*
Mark Brown5de7f9b2009-02-16 17:51:54 +0000164 * Codec MCLK is supplied by PCK0 - set it up.
165 */
166 mclk = clk_get(NULL, "pck0");
167 if (IS_ERR(mclk)) {
Ladislav Michledefc8f2018-01-15 08:52:54 +0100168 dev_err(&pdev->dev, "Failed to get MCLK\n");
Mark Brown5de7f9b2009-02-16 17:51:54 +0000169 ret = PTR_ERR(mclk);
170 goto err;
171 }
172
173 pllb = clk_get(NULL, "pllb");
Vasiliy Kulikovb3915d12010-11-22 18:59:13 +0300174 if (IS_ERR(pllb)) {
Ladislav Michledefc8f2018-01-15 08:52:54 +0100175 dev_err(&pdev->dev, "Failed to get PLLB\n");
Vasiliy Kulikovb3915d12010-11-22 18:59:13 +0300176 ret = PTR_ERR(pllb);
Mark Brown5de7f9b2009-02-16 17:51:54 +0000177 goto err_mclk;
178 }
179 ret = clk_set_parent(mclk, pllb);
180 clk_put(pllb);
181 if (ret != 0) {
Ladislav Michledefc8f2018-01-15 08:52:54 +0100182 dev_err(&pdev->dev, "Failed to set MCLK parent\n");
Mark Brown5de7f9b2009-02-16 17:51:54 +0000183 goto err_mclk;
184 }
185
186 clk_set_rate(mclk, MCLK_RATE);
187
Bo Shen242b9bb2012-10-11 10:38:15 +0800188 card->dev = &pdev->dev;
Bo Shen531f67e2012-11-14 18:09:11 +0800189
190 /* Parse device node info */
Alexandre Bellonid7a6fe02015-01-06 12:14:32 +0100191 ret = snd_soc_of_parse_card_name(card, "atmel,model");
192 if (ret)
193 goto err;
Bo Shen531f67e2012-11-14 18:09:11 +0800194
Alexandre Bellonid7a6fe02015-01-06 12:14:32 +0100195 ret = snd_soc_of_parse_audio_routing(card,
196 "atmel,audio-routing");
197 if (ret)
198 goto err;
Bo Shen531f67e2012-11-14 18:09:11 +0800199
Alexandre Bellonid7a6fe02015-01-06 12:14:32 +0100200 /* Parse codec info */
201 at91sam9g20ek_dai.codec_name = NULL;
202 codec_np = of_parse_phandle(np, "atmel,audio-codec", 0);
203 if (!codec_np) {
204 dev_err(&pdev->dev, "codec info missing\n");
205 return -EINVAL;
Bo Shen531f67e2012-11-14 18:09:11 +0800206 }
Alexandre Bellonid7a6fe02015-01-06 12:14:32 +0100207 at91sam9g20ek_dai.codec_of_node = codec_np;
208
209 /* Parse dai and platform info */
210 at91sam9g20ek_dai.cpu_dai_name = NULL;
211 at91sam9g20ek_dai.platform_name = NULL;
212 cpu_np = of_parse_phandle(np, "atmel,ssc-controller", 0);
213 if (!cpu_np) {
214 dev_err(&pdev->dev, "dai and pcm info missing\n");
215 return -EINVAL;
216 }
217 at91sam9g20ek_dai.cpu_of_node = cpu_np;
218 at91sam9g20ek_dai.platform_of_node = cpu_np;
219
220 of_node_put(codec_np);
221 of_node_put(cpu_np);
Bo Shen531f67e2012-11-14 18:09:11 +0800222
Bo Shen242b9bb2012-10-11 10:38:15 +0800223 ret = snd_soc_register_card(card);
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200224 if (ret) {
Ladislav Michledefc8f2018-01-15 08:52:54 +0100225 dev_err(&pdev->dev, "snd_soc_register_card() failed\n");
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200226 }
227
228 return ret;
229
Mark Brown5de7f9b2009-02-16 17:51:54 +0000230err_mclk:
231 clk_put(mclk);
232 mclk = NULL;
233err:
Bo Shen3310b572012-11-14 18:09:10 +0800234 atmel_ssc_put_audio(0);
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200235 return ret;
236}
237
Bill Pemberton71d14ea2012-12-07 09:26:21 -0500238static int at91sam9g20ek_audio_remove(struct platform_device *pdev)
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200239{
Bo Shen242b9bb2012-10-11 10:38:15 +0800240 struct snd_soc_card *card = platform_get_drvdata(pdev);
241
Bo Shen151edfc2013-01-31 11:53:40 +0800242 clk_disable(mclk);
Mark Brown5de7f9b2009-02-16 17:51:54 +0000243 mclk = NULL;
Bo Shen151edfc2013-01-31 11:53:40 +0800244 snd_soc_unregister_card(card);
245 atmel_ssc_put_audio(0);
Bo Shen242b9bb2012-10-11 10:38:15 +0800246
247 return 0;
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200248}
249
Bo Shen531f67e2012-11-14 18:09:11 +0800250#ifdef CONFIG_OF
251static const struct of_device_id at91sam9g20ek_wm8731_dt_ids[] = {
252 { .compatible = "atmel,at91sam9g20ek-wm8731-audio", },
253 { }
254};
255MODULE_DEVICE_TABLE(of, at91sam9g20ek_wm8731_dt_ids);
256#endif
257
Bo Shen242b9bb2012-10-11 10:38:15 +0800258static struct platform_driver at91sam9g20ek_audio_driver = {
259 .driver = {
260 .name = "at91sam9g20ek-audio",
Bo Shen531f67e2012-11-14 18:09:11 +0800261 .of_match_table = of_match_ptr(at91sam9g20ek_wm8731_dt_ids),
Bo Shen242b9bb2012-10-11 10:38:15 +0800262 },
263 .probe = at91sam9g20ek_audio_probe,
Bill Pemberton71d14ea2012-12-07 09:26:21 -0500264 .remove = at91sam9g20ek_audio_remove,
Bo Shen242b9bb2012-10-11 10:38:15 +0800265};
266
267module_platform_driver(at91sam9g20ek_audio_driver);
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200268
269/* Module information */
270MODULE_AUTHOR("Sedji Gaouaou <sedji.gaouaou@atmel.com>");
271MODULE_DESCRIPTION("ALSA SoC AT91SAM9G20EK_WM8731");
Bo Shen242b9bb2012-10-11 10:38:15 +0800272MODULE_ALIAS("platform:at91sam9g20ek-audio");
Sedji Gaouaou5b99e6c2008-10-03 16:58:58 +0200273MODULE_LICENSE("GPL");