blob: 5983740be1230324c3319f39864112a24ce0a17d [file] [log] [blame]
Eric Bénard91157882010-05-27 10:58:55 +02001/*
2 * eukrea-tlv320.c -- SoC audio for eukrea_cpuimxXX in I2S mode
3 *
4 * Copyright 2010 Eric Bénard, Eukréa Electromatique <eric@eukrea.com>
5 *
6 * based on sound/soc/s3c24xx/s3c24xx_simtec_tlv320aic23.c
7 * which is Copyright 2009 Simtec Electronics
8 * and on sound/soc/imx/phycore-ac97.c which is
9 * Copyright 2009 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
Shawn Guoa23dc692012-03-16 16:56:38 +080010 *
Eric Bénard91157882010-05-27 10:58:55 +020011 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 *
16 */
17
18#include <linux/module.h>
19#include <linux/moduleparam.h>
20#include <linux/device.h>
21#include <linux/i2c.h>
22#include <sound/core.h>
23#include <sound/pcm.h>
24#include <sound/soc.h>
Eric Bénard91157882010-05-27 10:58:55 +020025#include <asm/mach-types.h>
26
27#include "../codecs/tlv320aic23.h"
28#include "imx-ssi.h"
Shawn Guo3c77c29c2012-03-05 22:30:53 +080029#include "imx-audmux.h"
Eric Bénard91157882010-05-27 10:58:55 +020030
31#define CODEC_CLOCK 12000000
32
33static int eukrea_tlv320_hw_params(struct snd_pcm_substream *substream,
34 struct snd_pcm_hw_params *params)
35{
36 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Sascha Haueradd330e2010-11-04 17:05:40 +010037 struct snd_soc_dai *codec_dai = rtd->codec_dai;
38 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Eric Bénard91157882010-05-27 10:58:55 +020039 int ret;
40
41 ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S |
42 SND_SOC_DAIFMT_NB_NF |
43 SND_SOC_DAIFMT_CBM_CFM);
44 if (ret) {
Denis Carikli154bab12013-10-24 14:13:48 +020045 dev_err(cpu_dai->dev,
46 "Failed to set the cpu dai format.\n");
Eric Bénard91157882010-05-27 10:58:55 +020047 return ret;
48 }
49
50 ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S |
51 SND_SOC_DAIFMT_NB_NF |
52 SND_SOC_DAIFMT_CBM_CFM);
53 if (ret) {
Denis Carikli154bab12013-10-24 14:13:48 +020054 dev_err(cpu_dai->dev,
55 "Failed to set the codec format.\n");
Eric Bénard91157882010-05-27 10:58:55 +020056 return ret;
57 }
58
59 ret = snd_soc_dai_set_sysclk(codec_dai, 0,
60 CODEC_CLOCK, SND_SOC_CLOCK_OUT);
61 if (ret) {
Denis Carikli154bab12013-10-24 14:13:48 +020062 dev_err(cpu_dai->dev,
63 "Failed to set the codec sysclk.\n");
Eric Bénard91157882010-05-27 10:58:55 +020064 return ret;
65 }
Eric Bénard43793202010-06-17 15:44:01 +020066 snd_soc_dai_set_tdm_slot(cpu_dai, 0xffffffc, 0xffffffc, 2, 0);
Eric Bénard91157882010-05-27 10:58:55 +020067
68 ret = snd_soc_dai_set_sysclk(cpu_dai, IMX_SSP_SYS_CLK, 0,
69 SND_SOC_CLOCK_IN);
70 if (ret) {
Denis Carikli154bab12013-10-24 14:13:48 +020071 dev_err(cpu_dai->dev,
72 "Can't set the IMX_SSP_SYS_CLK CPU system clock.\n");
Eric Bénard91157882010-05-27 10:58:55 +020073 return ret;
74 }
75
76 return 0;
77}
78
79static struct snd_soc_ops eukrea_tlv320_snd_ops = {
80 .hw_params = eukrea_tlv320_hw_params,
81};
82
83static struct snd_soc_dai_link eukrea_tlv320_dai = {
84 .name = "tlv320aic23",
85 .stream_name = "TLV320AIC23",
Sascha Haueradd330e2010-11-04 17:05:40 +010086 .codec_dai_name = "tlv320aic23-hifi",
Shawn Guo2bf9d4b2013-04-25 11:18:49 +080087 .platform_name = "imx-ssi.0",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000088 .codec_name = "tlv320aic23-codec.0-001a",
Sascha Haueradd330e2010-11-04 17:05:40 +010089 .cpu_dai_name = "imx-ssi.0",
Eric Bénard91157882010-05-27 10:58:55 +020090 .ops = &eukrea_tlv320_snd_ops,
91};
92
93static struct snd_soc_card eukrea_tlv320 = {
94 .name = "cpuimx-audio",
Axel Lin6aff8cc2011-12-23 14:47:08 +080095 .owner = THIS_MODULE,
Eric Bénard91157882010-05-27 10:58:55 +020096 .dai_link = &eukrea_tlv320_dai,
97 .num_links = 1,
98};
99
Bill Pembertona0a3d512012-12-07 09:26:16 -0500100static int eukrea_tlv320_probe(struct platform_device *pdev)
Eric Bénard91157882010-05-27 10:58:55 +0200101{
102 int ret;
Shawn Guo60282ed2012-03-05 22:30:49 +0800103 int int_port = 0, ext_port;
Eric Bénard91157882010-05-27 10:58:55 +0200104
Shawn Guo60282ed2012-03-05 22:30:49 +0800105 if (machine_is_eukrea_cpuimx27()) {
Shawn Guoaf4872f2012-03-05 22:30:54 +0800106 imx_audmux_v1_configure_port(MX27_AUDMUX_HPCR1_SSI0,
107 IMX_AUDMUX_V1_PCR_SYN |
108 IMX_AUDMUX_V1_PCR_TFSDIR |
109 IMX_AUDMUX_V1_PCR_TCLKDIR |
110 IMX_AUDMUX_V1_PCR_RFSDIR |
111 IMX_AUDMUX_V1_PCR_RCLKDIR |
112 IMX_AUDMUX_V1_PCR_TFCSEL(MX27_AUDMUX_HPCR3_SSI_PINS_4) |
113 IMX_AUDMUX_V1_PCR_RFCSEL(MX27_AUDMUX_HPCR3_SSI_PINS_4) |
114 IMX_AUDMUX_V1_PCR_RXDSEL(MX27_AUDMUX_HPCR3_SSI_PINS_4)
Shawn Guo60282ed2012-03-05 22:30:49 +0800115 );
Shawn Guoaf4872f2012-03-05 22:30:54 +0800116 imx_audmux_v1_configure_port(MX27_AUDMUX_HPCR3_SSI_PINS_4,
117 IMX_AUDMUX_V1_PCR_SYN |
118 IMX_AUDMUX_V1_PCR_RXDSEL(MX27_AUDMUX_HPCR1_SSI0)
Shawn Guo60282ed2012-03-05 22:30:49 +0800119 );
120 } else if (machine_is_eukrea_cpuimx25sd() ||
121 machine_is_eukrea_cpuimx35sd() ||
122 machine_is_eukrea_cpuimx51sd()) {
123 ext_port = machine_is_eukrea_cpuimx25sd() ? 4 : 3;
Shawn Guoaf4872f2012-03-05 22:30:54 +0800124 imx_audmux_v2_configure_port(int_port,
125 IMX_AUDMUX_V2_PTCR_SYN |
126 IMX_AUDMUX_V2_PTCR_TFSDIR |
127 IMX_AUDMUX_V2_PTCR_TFSEL(ext_port) |
128 IMX_AUDMUX_V2_PTCR_TCLKDIR |
129 IMX_AUDMUX_V2_PTCR_TCSEL(ext_port),
130 IMX_AUDMUX_V2_PDCR_RXDSEL(ext_port)
Shawn Guo60282ed2012-03-05 22:30:49 +0800131 );
Shawn Guoaf4872f2012-03-05 22:30:54 +0800132 imx_audmux_v2_configure_port(ext_port,
133 IMX_AUDMUX_V2_PTCR_SYN,
134 IMX_AUDMUX_V2_PDCR_RXDSEL(int_port)
Shawn Guo60282ed2012-03-05 22:30:49 +0800135 );
136 } else {
Eric Bénard91157882010-05-27 10:58:55 +0200137 /* return happy. We might run on a totally different machine */
138 return 0;
Shawn Guo60282ed2012-03-05 22:30:49 +0800139 }
Eric Bénard91157882010-05-27 10:58:55 +0200140
Fabio Estevamda75c922012-09-22 12:27:31 -0300141 eukrea_tlv320.dev = &pdev->dev;
142 ret = snd_soc_register_card(&eukrea_tlv320);
143 if (ret)
144 dev_err(&pdev->dev, "snd_soc_register_card failed (%d)\n", ret);
Eric Bénard91157882010-05-27 10:58:55 +0200145
146 return ret;
147}
148
Bill Pembertona0a3d512012-12-07 09:26:16 -0500149static int eukrea_tlv320_remove(struct platform_device *pdev)
Eric Bénard91157882010-05-27 10:58:55 +0200150{
Fabio Estevamda75c922012-09-22 12:27:31 -0300151 snd_soc_unregister_card(&eukrea_tlv320);
152
153 return 0;
Eric Bénard91157882010-05-27 10:58:55 +0200154}
155
Fabio Estevamda75c922012-09-22 12:27:31 -0300156static struct platform_driver eukrea_tlv320_driver = {
157 .driver = {
158 .name = "eukrea_tlv320",
159 .owner = THIS_MODULE,
160 },
161 .probe = eukrea_tlv320_probe,
Denis Carikli154bab12013-10-24 14:13:48 +0200162 .remove = eukrea_tlv320_remove,
163};
Fabio Estevamda75c922012-09-22 12:27:31 -0300164
165module_platform_driver(eukrea_tlv320_driver);
Eric Bénard91157882010-05-27 10:58:55 +0200166
167MODULE_AUTHOR("Eric Bénard <eric@eukrea.com>");
168MODULE_DESCRIPTION("CPUIMX ALSA SoC driver");
169MODULE_LICENSE("GPL");
Fabio Estevamda75c922012-09-22 12:27:31 -0300170MODULE_ALIAS("platform:eukrea_tlv320");