blob: 8daced42d55e4508396083d389de2965090f35f1 [file] [log] [blame]
Fabio Estevam6b24e032018-07-24 09:48:33 -03001// SPDX-License-Identifier: GPL-2.0+
2//
3// Copyright 2012 Freescale Semiconductor, Inc.
4// Copyright 2012 Linaro Ltd.
Shawn Guoc4483032012-03-16 16:56:44 +08005
6#include <linux/module.h>
7#include <linux/of.h>
8#include <linux/of_platform.h>
Wolfram Sang687b81d2013-07-11 12:56:15 +01009#include <linux/i2c.h>
Richard Zhao81e8e492012-04-27 15:02:57 +080010#include <linux/clk.h>
Shawn Guoc4483032012-03-16 16:56:44 +080011#include <sound/soc.h>
12
13#include "../codecs/sgtl5000.h"
14#include "imx-audmux.h"
15
16#define DAI_NAME_SIZE 32
17
18struct imx_sgtl5000_data {
19 struct snd_soc_dai_link dai;
20 struct snd_soc_card card;
21 char codec_dai_name[DAI_NAME_SIZE];
22 char platform_name[DAI_NAME_SIZE];
Richard Zhao81e8e492012-04-27 15:02:57 +080023 struct clk *codec_clk;
Shawn Guoc4483032012-03-16 16:56:44 +080024 unsigned int clk_frequency;
25};
26
27static int imx_sgtl5000_dai_init(struct snd_soc_pcm_runtime *rtd)
28{
Shawn Guo47cf84e2014-02-08 13:20:35 +080029 struct imx_sgtl5000_data *data = snd_soc_card_get_drvdata(rtd->card);
Shawn Guoc4483032012-03-16 16:56:44 +080030 struct device *dev = rtd->card->dev;
31 int ret;
32
Kuninori Morimoto17198ae2020-03-23 14:18:30 +090033 ret = snd_soc_dai_set_sysclk(asoc_rtd_to_codec(rtd, 0), SGTL5000_SYSCLK,
Shawn Guoc4483032012-03-16 16:56:44 +080034 data->clk_frequency, SND_SOC_CLOCK_IN);
35 if (ret) {
36 dev_err(dev, "could not set codec driver clock params\n");
37 return ret;
38 }
39
40 return 0;
41}
42
Shawn Guo172b4c5c2012-03-30 00:13:03 +080043static const struct snd_soc_dapm_widget imx_sgtl5000_dapm_widgets[] = {
44 SND_SOC_DAPM_MIC("Mic Jack", NULL),
45 SND_SOC_DAPM_LINE("Line In Jack", NULL),
46 SND_SOC_DAPM_HP("Headphone Jack", NULL),
47 SND_SOC_DAPM_SPK("Line Out Jack", NULL),
48 SND_SOC_DAPM_SPK("Ext Spk", NULL),
49};
50
Bill Pembertona0a3d512012-12-07 09:26:16 -050051static int imx_sgtl5000_probe(struct platform_device *pdev)
Shawn Guoc4483032012-03-16 16:56:44 +080052{
53 struct device_node *np = pdev->dev.of_node;
54 struct device_node *ssi_np, *codec_np;
55 struct platform_device *ssi_pdev;
Richard Zhao81e8e492012-04-27 15:02:57 +080056 struct i2c_client *codec_dev;
Philipp Zabel50d4a792013-09-25 15:22:01 +020057 struct imx_sgtl5000_data *data = NULL;
Kuninori Morimoto3026ef62019-06-06 13:16:02 +090058 struct snd_soc_dai_link_component *comp;
Shawn Guoc4483032012-03-16 16:56:44 +080059 int int_port, ext_port;
60 int ret;
61
62 ret = of_property_read_u32(np, "mux-int-port", &int_port);
63 if (ret) {
64 dev_err(&pdev->dev, "mux-int-port missing or invalid\n");
65 return ret;
66 }
67 ret = of_property_read_u32(np, "mux-ext-port", &ext_port);
68 if (ret) {
69 dev_err(&pdev->dev, "mux-ext-port missing or invalid\n");
70 return ret;
71 }
72
73 /*
74 * The port numbering in the hardware manual starts at 1, while
75 * the audmux API expects it starts at 0.
76 */
77 int_port--;
78 ext_port--;
79 ret = imx_audmux_v2_configure_port(int_port,
80 IMX_AUDMUX_V2_PTCR_SYN |
81 IMX_AUDMUX_V2_PTCR_TFSEL(ext_port) |
82 IMX_AUDMUX_V2_PTCR_TCSEL(ext_port) |
83 IMX_AUDMUX_V2_PTCR_TFSDIR |
84 IMX_AUDMUX_V2_PTCR_TCLKDIR,
85 IMX_AUDMUX_V2_PDCR_RXDSEL(ext_port));
86 if (ret) {
87 dev_err(&pdev->dev, "audmux internal port setup failed\n");
88 return ret;
89 }
Julia Lawalldb8b6242012-08-19 09:02:52 +020090 ret = imx_audmux_v2_configure_port(ext_port,
Hui Wangef3207c2012-07-04 15:38:27 +080091 IMX_AUDMUX_V2_PTCR_SYN,
Shawn Guoc4483032012-03-16 16:56:44 +080092 IMX_AUDMUX_V2_PDCR_RXDSEL(int_port));
93 if (ret) {
94 dev_err(&pdev->dev, "audmux external port setup failed\n");
95 return ret;
96 }
97
98 ssi_np = of_parse_phandle(pdev->dev.of_node, "ssi-controller", 0);
99 codec_np = of_parse_phandle(pdev->dev.of_node, "audio-codec", 0);
100 if (!ssi_np || !codec_np) {
101 dev_err(&pdev->dev, "phandle missing or invalid\n");
Richard Zhao717071d2012-04-27 15:02:56 +0800102 ret = -EINVAL;
103 goto fail;
Shawn Guoc4483032012-03-16 16:56:44 +0800104 }
105
106 ssi_pdev = of_find_device_by_node(ssi_np);
107 if (!ssi_pdev) {
Stefan Agner691beb02019-01-18 10:06:53 +0100108 dev_dbg(&pdev->dev, "failed to find SSI platform device\n");
Arnaud Patard (Rtp)28e5ca72013-06-20 23:20:49 +0200109 ret = -EPROBE_DEFER;
Richard Zhao717071d2012-04-27 15:02:56 +0800110 goto fail;
Shawn Guoc4483032012-03-16 16:56:44 +0800111 }
Wen Yang8fa857d2019-02-18 15:13:47 +0000112 put_device(&ssi_pdev->dev);
Richard Zhao81e8e492012-04-27 15:02:57 +0800113 codec_dev = of_find_i2c_device_by_node(codec_np);
114 if (!codec_dev) {
Stefan Agner691beb02019-01-18 10:06:53 +0100115 dev_dbg(&pdev->dev, "failed to find codec platform device\n");
Stefan Agnerd9866572019-01-18 10:06:52 +0100116 ret = -EPROBE_DEFER;
117 goto fail;
Richard Zhao81e8e492012-04-27 15:02:57 +0800118 }
Shawn Guoc4483032012-03-16 16:56:44 +0800119
120 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
Richard Zhao717071d2012-04-27 15:02:56 +0800121 if (!data) {
122 ret = -ENOMEM;
123 goto fail;
124 }
Shawn Guoc4483032012-03-16 16:56:44 +0800125
Kuninori Morimoto2b1407c2019-06-28 10:47:26 +0900126 comp = devm_kzalloc(&pdev->dev, 3 * sizeof(*comp), GFP_KERNEL);
Kuninori Morimoto3026ef62019-06-06 13:16:02 +0900127 if (!comp) {
128 ret = -ENOMEM;
129 goto fail;
130 }
131
Philipp Zabela8b22c12013-09-25 15:21:08 +0200132 data->codec_clk = clk_get(&codec_dev->dev, NULL);
Wei Yongjunf1269ae2013-07-16 20:05:07 +0800133 if (IS_ERR(data->codec_clk)) {
134 ret = PTR_ERR(data->codec_clk);
Fabio Estevam9e13f342013-06-09 22:07:46 -0300135 goto fail;
Wei Yongjunf1269ae2013-07-16 20:05:07 +0800136 }
Fabio Estevam9e13f342013-06-09 22:07:46 -0300137
138 data->clk_frequency = clk_get_rate(data->codec_clk);
Shawn Guoc4483032012-03-16 16:56:44 +0800139
Kuninori Morimoto3026ef62019-06-06 13:16:02 +0900140 data->dai.cpus = &comp[0];
141 data->dai.codecs = &comp[1];
Kuninori Morimoto2b1407c2019-06-28 10:47:26 +0900142 data->dai.platforms = &comp[2];
Kuninori Morimoto3026ef62019-06-06 13:16:02 +0900143
144 data->dai.num_cpus = 1;
145 data->dai.num_codecs = 1;
Kuninori Morimoto2b1407c2019-06-28 10:47:26 +0900146 data->dai.num_platforms = 1;
Kuninori Morimoto3026ef62019-06-06 13:16:02 +0900147
Shawn Guoc4483032012-03-16 16:56:44 +0800148 data->dai.name = "HiFi";
149 data->dai.stream_name = "HiFi";
Kuninori Morimoto3026ef62019-06-06 13:16:02 +0900150 data->dai.codecs->dai_name = "sgtl5000";
151 data->dai.codecs->of_node = codec_np;
152 data->dai.cpus->of_node = ssi_np;
Kuninori Morimoto2b1407c2019-06-28 10:47:26 +0900153 data->dai.platforms->of_node = ssi_np;
Shawn Guoc4483032012-03-16 16:56:44 +0800154 data->dai.init = &imx_sgtl5000_dai_init;
155 data->dai.dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
Mark Brown419099b2021-09-21 22:35:39 +0100156 SND_SOC_DAIFMT_CBP_CFP;
Shawn Guoc4483032012-03-16 16:56:44 +0800157
158 data->card.dev = &pdev->dev;
159 ret = snd_soc_of_parse_card_name(&data->card, "model");
160 if (ret)
Fabio Estevam9e13f342013-06-09 22:07:46 -0300161 goto fail;
Shawn Guo172b4c5c2012-03-30 00:13:03 +0800162 ret = snd_soc_of_parse_audio_routing(&data->card, "audio-routing");
163 if (ret)
Fabio Estevam9e13f342013-06-09 22:07:46 -0300164 goto fail;
Shawn Guoc4483032012-03-16 16:56:44 +0800165 data->card.num_links = 1;
Lothar Waßmann29df43062012-11-22 13:31:08 +0100166 data->card.owner = THIS_MODULE;
Shawn Guoc4483032012-03-16 16:56:44 +0800167 data->card.dai_link = &data->dai;
Shawn Guo172b4c5c2012-03-30 00:13:03 +0800168 data->card.dapm_widgets = imx_sgtl5000_dapm_widgets;
169 data->card.num_dapm_widgets = ARRAY_SIZE(imx_sgtl5000_dapm_widgets);
Shawn Guoc4483032012-03-16 16:56:44 +0800170
Shawn Guo47cf84e2014-02-08 13:20:35 +0800171 platform_set_drvdata(pdev, &data->card);
172 snd_soc_card_set_drvdata(&data->card, data);
173
Sachin Kamat01984a42013-09-17 09:42:46 +0530174 ret = devm_snd_soc_register_card(&pdev->dev, &data->card);
Shawn Guoc4483032012-03-16 16:56:44 +0800175 if (ret) {
Kuninori Morimoto2e6f5572021-12-14 11:08:34 +0900176 dev_err_probe(&pdev->dev, ret, "snd_soc_register_card failed\n");
Fabio Estevam9e13f342013-06-09 22:07:46 -0300177 goto fail;
Shawn Guoc4483032012-03-16 16:56:44 +0800178 }
179
Fabio Estevam2fc059f2013-04-24 11:54:43 -0300180 of_node_put(ssi_np);
181 of_node_put(codec_np);
182
183 return 0;
184
Richard Zhao717071d2012-04-27 15:02:56 +0800185fail:
Philipp Zabel50d4a792013-09-25 15:22:01 +0200186 if (data && !IS_ERR(data->codec_clk))
Philipp Zabela8b22c12013-09-25 15:21:08 +0200187 clk_put(data->codec_clk);
Fabio Estevam7e3bc3c2014-10-07 15:13:25 -0300188 of_node_put(ssi_np);
189 of_node_put(codec_np);
Shawn Guoc4483032012-03-16 16:56:44 +0800190
Richard Zhao717071d2012-04-27 15:02:56 +0800191 return ret;
Shawn Guoc4483032012-03-16 16:56:44 +0800192}
193
Bill Pembertona0a3d512012-12-07 09:26:16 -0500194static int imx_sgtl5000_remove(struct platform_device *pdev)
Shawn Guoc4483032012-03-16 16:56:44 +0800195{
Shawn Guo47cf84e2014-02-08 13:20:35 +0800196 struct snd_soc_card *card = platform_get_drvdata(pdev);
197 struct imx_sgtl5000_data *data = snd_soc_card_get_drvdata(card);
Shawn Guoc4483032012-03-16 16:56:44 +0800198
Philipp Zabela8b22c12013-09-25 15:21:08 +0200199 clk_put(data->codec_clk);
Shawn Guoc4483032012-03-16 16:56:44 +0800200
201 return 0;
202}
203
204static const struct of_device_id imx_sgtl5000_dt_ids[] = {
205 { .compatible = "fsl,imx-audio-sgtl5000", },
206 { /* sentinel */ }
207};
208MODULE_DEVICE_TABLE(of, imx_sgtl5000_dt_ids);
209
210static struct platform_driver imx_sgtl5000_driver = {
211 .driver = {
212 .name = "imx-sgtl5000",
Nicolin Chen1abe7292013-10-24 18:15:29 +0800213 .pm = &snd_soc_pm_ops,
Shawn Guoc4483032012-03-16 16:56:44 +0800214 .of_match_table = imx_sgtl5000_dt_ids,
215 },
216 .probe = imx_sgtl5000_probe,
Fabio Estevam4fa8dbc2013-09-30 22:17:37 -0300217 .remove = imx_sgtl5000_remove,
Shawn Guoc4483032012-03-16 16:56:44 +0800218};
219module_platform_driver(imx_sgtl5000_driver);
220
221MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>");
222MODULE_DESCRIPTION("Freescale i.MX SGTL5000 ASoC machine driver");
223MODULE_LICENSE("GPL v2");
224MODULE_ALIAS("platform:imx-sgtl5000");