blob: 8b61582753c868f30291b8843b9bd1c0bd55cb55 [file] [log] [blame]
Andra Danciuecf46302019-04-05 14:49:53 +03001// SPDX-License-Identifier: GPL-2.0+
2//
3// eukrea-tlv320.c -- SoC audio for eukrea_cpuimxXX in I2S mode
4//
5// Copyright 2010 Eric Bénard, Eukréa Electromatique <eric@eukrea.com>
6//
7// based on sound/soc/s3c24xx/s3c24xx_simtec_tlv320aic23.c
8// which is Copyright 2009 Simtec Electronics
9// and on sound/soc/imx/phycore-ac97.c which is
10// Copyright 2009 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
Eric Bénard91157882010-05-27 10:58:55 +020011
Denis Carikli66f23292014-01-15 18:23:25 +010012#include <linux/errno.h>
Eric Bénard91157882010-05-27 10:58:55 +020013#include <linux/module.h>
14#include <linux/moduleparam.h>
Denis Carikli66f23292014-01-15 18:23:25 +010015#include <linux/of.h>
16#include <linux/of_platform.h>
Eric Bénard91157882010-05-27 10:58:55 +020017#include <linux/device.h>
18#include <linux/i2c.h>
19#include <sound/core.h>
20#include <sound/pcm.h>
21#include <sound/soc.h>
Eric Bénard91157882010-05-27 10:58:55 +020022#include <asm/mach-types.h>
23
24#include "../codecs/tlv320aic23.h"
25#include "imx-ssi.h"
Shawn Guo3c77c29c2012-03-05 22:30:53 +080026#include "imx-audmux.h"
Eric Bénard91157882010-05-27 10:58:55 +020027
28#define CODEC_CLOCK 12000000
29
30static int eukrea_tlv320_hw_params(struct snd_pcm_substream *substream,
31 struct snd_pcm_hw_params *params)
32{
Kuninori Morimoto9f5f0782020-07-20 10:18:38 +090033 struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
Kuninori Morimoto17198ae2020-03-23 14:18:30 +090034 struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
35 struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0);
Eric Bénard91157882010-05-27 10:58:55 +020036 int ret;
37
Eric Bénard91157882010-05-27 10:58:55 +020038 ret = snd_soc_dai_set_sysclk(codec_dai, 0,
39 CODEC_CLOCK, SND_SOC_CLOCK_OUT);
40 if (ret) {
Denis Carikli154bab12013-10-24 14:13:48 +020041 dev_err(cpu_dai->dev,
42 "Failed to set the codec sysclk.\n");
Eric Bénard91157882010-05-27 10:58:55 +020043 return ret;
44 }
Denis Carikli66f23292014-01-15 18:23:25 +010045
Lars-Peter Clausend0077aa2015-01-12 10:27:18 +010046 snd_soc_dai_set_tdm_slot(cpu_dai, 0x3, 0x3, 2, 0);
Eric Bénard91157882010-05-27 10:58:55 +020047
48 ret = snd_soc_dai_set_sysclk(cpu_dai, IMX_SSP_SYS_CLK, 0,
49 SND_SOC_CLOCK_IN);
Denis Carikli66f23292014-01-15 18:23:25 +010050 /* fsl_ssi lacks the set_sysclk ops */
51 if (ret && ret != -EINVAL) {
Denis Carikli154bab12013-10-24 14:13:48 +020052 dev_err(cpu_dai->dev,
53 "Can't set the IMX_SSP_SYS_CLK CPU system clock.\n");
Eric Bénard91157882010-05-27 10:58:55 +020054 return ret;
55 }
56
57 return 0;
58}
59
Bhumika Goyal5ace37b2017-03-14 00:42:22 +053060static const struct snd_soc_ops eukrea_tlv320_snd_ops = {
Eric Bénard91157882010-05-27 10:58:55 +020061 .hw_params = eukrea_tlv320_hw_params,
62};
63
Kuninori Morimoto3219d9c2019-06-06 13:15:54 +090064SND_SOC_DAILINK_DEFS(hifi,
65 DAILINK_COMP_ARRAY(COMP_EMPTY()),
Kuninori Morimoto68707c32019-06-28 10:47:14 +090066 DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "tlv320aic23-hifi")),
67 DAILINK_COMP_ARRAY(COMP_EMPTY()));
Kuninori Morimoto3219d9c2019-06-06 13:15:54 +090068
Eric Bénard91157882010-05-27 10:58:55 +020069static struct snd_soc_dai_link eukrea_tlv320_dai = {
70 .name = "tlv320aic23",
71 .stream_name = "TLV320AIC23",
Lars-Peter Clausen4de59db2015-01-01 17:16:12 +010072 .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
Mark Brown4348be62021-09-21 22:35:27 +010073 SND_SOC_DAIFMT_CBP_CFP,
Eric Bénard91157882010-05-27 10:58:55 +020074 .ops = &eukrea_tlv320_snd_ops,
Kuninori Morimoto3219d9c2019-06-06 13:15:54 +090075 SND_SOC_DAILINK_REG(hifi),
Eric Bénard91157882010-05-27 10:58:55 +020076};
77
78static struct snd_soc_card eukrea_tlv320 = {
Axel Lin6aff8cc2011-12-23 14:47:08 +080079 .owner = THIS_MODULE,
Eric Bénard91157882010-05-27 10:58:55 +020080 .dai_link = &eukrea_tlv320_dai,
81 .num_links = 1,
82};
83
Bill Pembertona0a3d512012-12-07 09:26:16 -050084static int eukrea_tlv320_probe(struct platform_device *pdev)
Eric Bénard91157882010-05-27 10:58:55 +020085{
86 int ret;
Shawn Guo60282ed2012-03-05 22:30:49 +080087 int int_port = 0, ext_port;
Denis Carikli66f23292014-01-15 18:23:25 +010088 struct device_node *np = pdev->dev.of_node;
Takashi Iwai077661b2014-10-07 20:56:29 +020089 struct device_node *ssi_np = NULL, *codec_np = NULL;
Eric Bénard91157882010-05-27 10:58:55 +020090
Denis Carikli66f23292014-01-15 18:23:25 +010091 eukrea_tlv320.dev = &pdev->dev;
92 if (np) {
93 ret = snd_soc_of_parse_card_name(&eukrea_tlv320,
94 "eukrea,model");
95 if (ret) {
96 dev_err(&pdev->dev,
97 "eukrea,model node missing or invalid.\n");
98 goto err;
99 }
100
101 ssi_np = of_parse_phandle(pdev->dev.of_node,
102 "ssi-controller", 0);
103 if (!ssi_np) {
104 dev_err(&pdev->dev,
105 "ssi-controller missing or invalid.\n");
106 ret = -ENODEV;
107 goto err;
108 }
109
110 codec_np = of_parse_phandle(ssi_np, "codec-handle", 0);
111 if (codec_np)
Kuninori Morimoto3219d9c2019-06-06 13:15:54 +0900112 eukrea_tlv320_dai.codecs->of_node = codec_np;
Denis Carikli66f23292014-01-15 18:23:25 +0100113 else
114 dev_err(&pdev->dev, "codec-handle node missing or invalid.\n");
115
116 ret = of_property_read_u32(np, "fsl,mux-int-port", &int_port);
117 if (ret) {
118 dev_err(&pdev->dev,
119 "fsl,mux-int-port node missing or invalid.\n");
Wen Yangb820d522019-02-26 16:17:51 +0800120 goto err;
Denis Carikli66f23292014-01-15 18:23:25 +0100121 }
122 ret = of_property_read_u32(np, "fsl,mux-ext-port", &ext_port);
123 if (ret) {
124 dev_err(&pdev->dev,
125 "fsl,mux-ext-port node missing or invalid.\n");
Wen Yangb820d522019-02-26 16:17:51 +0800126 goto err;
Denis Carikli66f23292014-01-15 18:23:25 +0100127 }
128
129 /*
130 * The port numbering in the hardware manual starts at 1, while
131 * the audmux API expects it starts at 0.
132 */
133 int_port--;
134 ext_port--;
135
Kuninori Morimoto3219d9c2019-06-06 13:15:54 +0900136 eukrea_tlv320_dai.cpus->of_node = ssi_np;
Kuninori Morimoto68707c32019-06-28 10:47:14 +0900137 eukrea_tlv320_dai.platforms->of_node = ssi_np;
Denis Carikli66f23292014-01-15 18:23:25 +0100138 } else {
Kuninori Morimoto3219d9c2019-06-06 13:15:54 +0900139 eukrea_tlv320_dai.cpus->dai_name = "imx-ssi.0";
Kuninori Morimoto68707c32019-06-28 10:47:14 +0900140 eukrea_tlv320_dai.platforms->name = "imx-ssi.0";
Kuninori Morimoto3219d9c2019-06-06 13:15:54 +0900141 eukrea_tlv320_dai.codecs->name = "tlv320aic23-codec.0-001a";
Denis Carikli66f23292014-01-15 18:23:25 +0100142 eukrea_tlv320.name = "cpuimx-audio";
143 }
144
145 if (machine_is_eukrea_cpuimx27() ||
146 of_find_compatible_node(NULL, NULL, "fsl,imx21-audmux")) {
Shawn Guoaf4872f2012-03-05 22:30:54 +0800147 imx_audmux_v1_configure_port(MX27_AUDMUX_HPCR1_SSI0,
148 IMX_AUDMUX_V1_PCR_SYN |
149 IMX_AUDMUX_V1_PCR_TFSDIR |
150 IMX_AUDMUX_V1_PCR_TCLKDIR |
151 IMX_AUDMUX_V1_PCR_RFSDIR |
152 IMX_AUDMUX_V1_PCR_RCLKDIR |
153 IMX_AUDMUX_V1_PCR_TFCSEL(MX27_AUDMUX_HPCR3_SSI_PINS_4) |
154 IMX_AUDMUX_V1_PCR_RFCSEL(MX27_AUDMUX_HPCR3_SSI_PINS_4) |
155 IMX_AUDMUX_V1_PCR_RXDSEL(MX27_AUDMUX_HPCR3_SSI_PINS_4)
Shawn Guo60282ed2012-03-05 22:30:49 +0800156 );
Shawn Guoaf4872f2012-03-05 22:30:54 +0800157 imx_audmux_v1_configure_port(MX27_AUDMUX_HPCR3_SSI_PINS_4,
158 IMX_AUDMUX_V1_PCR_SYN |
159 IMX_AUDMUX_V1_PCR_RXDSEL(MX27_AUDMUX_HPCR1_SSI0)
Shawn Guo60282ed2012-03-05 22:30:49 +0800160 );
161 } else if (machine_is_eukrea_cpuimx25sd() ||
162 machine_is_eukrea_cpuimx35sd() ||
Denis Carikli66f23292014-01-15 18:23:25 +0100163 machine_is_eukrea_cpuimx51sd() ||
164 of_find_compatible_node(NULL, NULL, "fsl,imx31-audmux")) {
165 if (!np)
166 ext_port = machine_is_eukrea_cpuimx25sd() ?
167 4 : 3;
168
Shawn Guoaf4872f2012-03-05 22:30:54 +0800169 imx_audmux_v2_configure_port(int_port,
170 IMX_AUDMUX_V2_PTCR_SYN |
171 IMX_AUDMUX_V2_PTCR_TFSDIR |
172 IMX_AUDMUX_V2_PTCR_TFSEL(ext_port) |
173 IMX_AUDMUX_V2_PTCR_TCLKDIR |
174 IMX_AUDMUX_V2_PTCR_TCSEL(ext_port),
175 IMX_AUDMUX_V2_PDCR_RXDSEL(ext_port)
Shawn Guo60282ed2012-03-05 22:30:49 +0800176 );
Shawn Guoaf4872f2012-03-05 22:30:54 +0800177 imx_audmux_v2_configure_port(ext_port,
178 IMX_AUDMUX_V2_PTCR_SYN,
179 IMX_AUDMUX_V2_PDCR_RXDSEL(int_port)
Shawn Guo60282ed2012-03-05 22:30:49 +0800180 );
181 } else {
Denis Carikli66f23292014-01-15 18:23:25 +0100182 if (np) {
Xiubo Lidcfcf2c2015-08-12 14:38:18 +0800183 /* The eukrea,asoc-tlv320 driver was explicitly
Denis Carikli66f23292014-01-15 18:23:25 +0100184 * requested (through the device tree).
185 */
186 dev_err(&pdev->dev,
187 "Missing or invalid audmux DT node.\n");
188 return -ENODEV;
189 } else {
190 /* Return happy.
191 * We might run on a totally different machine.
192 */
193 return 0;
194 }
Shawn Guo60282ed2012-03-05 22:30:49 +0800195 }
Eric Bénard91157882010-05-27 10:58:55 +0200196
Fabio Estevamda75c922012-09-22 12:27:31 -0300197 ret = snd_soc_register_card(&eukrea_tlv320);
Denis Carikli66f23292014-01-15 18:23:25 +0100198err:
Fabio Estevamda75c922012-09-22 12:27:31 -0300199 if (ret)
200 dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n", ret);
Fabio Estevam89dea482014-10-07 15:29:57 -0300201 of_node_put(ssi_np);
Eric Bénard91157882010-05-27 10:58:55 +0200202
203 return ret;
204}
205
Bill Pembertona0a3d512012-12-07 09:26:16 -0500206static int eukrea_tlv320_remove(struct platform_device *pdev)
Eric Bénard91157882010-05-27 10:58:55 +0200207{
Fabio Estevamda75c922012-09-22 12:27:31 -0300208 snd_soc_unregister_card(&eukrea_tlv320);
209
210 return 0;
Eric Bénard91157882010-05-27 10:58:55 +0200211}
212
Denis Carikli66f23292014-01-15 18:23:25 +0100213static const struct of_device_id imx_tlv320_dt_ids[] = {
214 { .compatible = "eukrea,asoc-tlv320"},
215 { /* sentinel */ }
216};
217MODULE_DEVICE_TABLE(of, imx_tlv320_dt_ids);
218
Fabio Estevamda75c922012-09-22 12:27:31 -0300219static struct platform_driver eukrea_tlv320_driver = {
220 .driver = {
221 .name = "eukrea_tlv320",
Denis Carikli66f23292014-01-15 18:23:25 +0100222 .of_match_table = imx_tlv320_dt_ids,
Fabio Estevamda75c922012-09-22 12:27:31 -0300223 },
224 .probe = eukrea_tlv320_probe,
Denis Carikli154bab12013-10-24 14:13:48 +0200225 .remove = eukrea_tlv320_remove,
226};
Fabio Estevamda75c922012-09-22 12:27:31 -0300227
228module_platform_driver(eukrea_tlv320_driver);
Eric Bénard91157882010-05-27 10:58:55 +0200229
230MODULE_AUTHOR("Eric Bénard <eric@eukrea.com>");
231MODULE_DESCRIPTION("CPUIMX ALSA SoC driver");
232MODULE_LICENSE("GPL");
Fabio Estevamda75c922012-09-22 12:27:31 -0300233MODULE_ALIAS("platform:eukrea_tlv320");