blob: 2cde43321eecc44545a9a1415c9b96d1780f3766 [file] [log] [blame]
Ryan Mallon315f7da2010-06-08 22:01:12 +12001/*
2 * snappercl15.c -- SoC audio for Bluewater Systems Snapper CL15 module
3 *
4 * Copyright (C) 2008 Bluewater Systems Ltd
Ryan Mallon1c5454e2011-06-15 14:45:36 +10005 * Author: Ryan Mallon
Ryan Mallon315f7da2010-06-08 22:01:12 +12006 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
11 *
12 */
13
14#include <linux/platform_device.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040015#include <linux/module.h>
Ryan Mallon315f7da2010-06-08 22:01:12 +120016#include <sound/core.h>
17#include <sound/pcm.h>
18#include <sound/soc.h>
Ryan Mallon315f7da2010-06-08 22:01:12 +120019
20#include <asm/mach-types.h>
21#include <mach/hardware.h>
22
23#include "../codecs/tlv320aic23.h"
24#include "ep93xx-pcm.h"
Ryan Mallon315f7da2010-06-08 22:01:12 +120025
26#define CODEC_CLOCK 5644800
27
28static int snappercl15_hw_params(struct snd_pcm_substream *substream,
29 struct snd_pcm_hw_params *params)
30{
31 struct snd_soc_pcm_runtime *rtd = substream->private_data;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000032 struct snd_soc_dai *codec_dai = rtd->codec_dai;
33 struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
Ryan Mallon315f7da2010-06-08 22:01:12 +120034 int err;
35
36 err = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S |
37 SND_SOC_DAIFMT_NB_IF |
38 SND_SOC_DAIFMT_CBS_CFS);
39
40 err = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S |
41 SND_SOC_DAIFMT_NB_IF |
42 SND_SOC_DAIFMT_CBS_CFS);
43 if (err)
44 return err;
45
46 err = snd_soc_dai_set_sysclk(codec_dai, 0, CODEC_CLOCK,
47 SND_SOC_CLOCK_IN);
48 if (err)
49 return err;
50
51 err = snd_soc_dai_set_sysclk(cpu_dai, 0, CODEC_CLOCK,
52 SND_SOC_CLOCK_OUT);
53 if (err)
54 return err;
55
56 return 0;
57}
58
59static struct snd_soc_ops snappercl15_ops = {
60 .hw_params = snappercl15_hw_params,
61};
62
63static const struct snd_soc_dapm_widget tlv320aic23_dapm_widgets[] = {
64 SND_SOC_DAPM_HP("Headphone Jack", NULL),
65 SND_SOC_DAPM_LINE("Line In", NULL),
66 SND_SOC_DAPM_MIC("Mic Jack", NULL),
67};
68
69static const struct snd_soc_dapm_route audio_map[] = {
70 {"Headphone Jack", NULL, "LHPOUT"},
71 {"Headphone Jack", NULL, "RHPOUT"},
72
73 {"LLINEIN", NULL, "Line In"},
74 {"RLINEIN", NULL, "Line In"},
75
76 {"MICIN", NULL, "Mic Jack"},
77};
78
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000079static int snappercl15_tlv320aic23_init(struct snd_soc_pcm_runtime *rtd)
Ryan Mallon315f7da2010-06-08 22:01:12 +120080{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000081 struct snd_soc_codec *codec = rtd->codec;
Liam Girdwoodce6120c2010-11-05 15:53:46 +020082 struct snd_soc_dapm_context *dapm = &codec->dapm;
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000083
Liam Girdwoodce6120c2010-11-05 15:53:46 +020084 snd_soc_dapm_new_controls(dapm, tlv320aic23_dapm_widgets,
Ryan Mallon315f7da2010-06-08 22:01:12 +120085 ARRAY_SIZE(tlv320aic23_dapm_widgets));
86
Liam Girdwoodce6120c2010-11-05 15:53:46 +020087 snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
Ryan Mallon315f7da2010-06-08 22:01:12 +120088 return 0;
89}
90
91static struct snd_soc_dai_link snappercl15_dai = {
92 .name = "tlv320aic23",
93 .stream_name = "AIC23",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000094 .cpu_dai_name = "ep93xx-i2s",
95 .codec_dai_name = "tlv320aic23-hifi",
96 .codec_name = "tlv320aic23-codec.0-001a",
97 .platform_name = "ep93xx-pcm-audio",
Ryan Mallon315f7da2010-06-08 22:01:12 +120098 .init = snappercl15_tlv320aic23_init,
99 .ops = &snappercl15_ops,
100};
101
102static struct snd_soc_card snd_soc_snappercl15 = {
103 .name = "Snapper CL15",
Ryan Mallon315f7da2010-06-08 22:01:12 +1200104 .dai_link = &snappercl15_dai,
105 .num_links = 1,
106};
107
Mika Westerberg62e4f7d2011-09-11 12:28:52 +0300108static int __devinit snappercl15_probe(struct platform_device *pdev)
Ryan Mallon315f7da2010-06-08 22:01:12 +1200109{
Mika Westerberg62e4f7d2011-09-11 12:28:52 +0300110 struct snd_soc_card *card = &snd_soc_snappercl15;
Ryan Mallon315f7da2010-06-08 22:01:12 +1200111 int ret;
112
Ryan Mallon315f7da2010-06-08 22:01:12 +1200113 ret = ep93xx_i2s_acquire(EP93XX_SYSCON_DEVCFG_I2SONAC97,
114 EP93XX_SYSCON_I2SCLKDIV_ORIDE |
115 EP93XX_SYSCON_I2SCLKDIV_SPOL);
116 if (ret)
117 return ret;
118
Mika Westerberg62e4f7d2011-09-11 12:28:52 +0300119 card->dev = &pdev->dev;
120
121 ret = snd_soc_register_card(card);
122 if (ret) {
123 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
124 ret);
125 ep93xx_i2s_release();
126 }
Ryan Mallon315f7da2010-06-08 22:01:12 +1200127
128 return ret;
129}
130
Mika Westerberg62e4f7d2011-09-11 12:28:52 +0300131static int __devexit snappercl15_remove(struct platform_device *pdev)
132{
133 struct snd_soc_card *card = platform_get_drvdata(pdev);
134
135 snd_soc_unregister_card(card);
136 ep93xx_i2s_release();
137
138 return 0;
139}
140
141static struct platform_driver snappercl15_driver = {
142 .driver = {
143 .name = "snappercl15-audio",
144 .owner = THIS_MODULE,
145 },
146 .probe = snappercl15_probe,
147 .remove = __devexit_p(snappercl15_remove),
148};
149
150static int __init snappercl15_init(void)
151{
152 return platform_driver_register(&snappercl15_driver);
153}
154
Ryan Mallon315f7da2010-06-08 22:01:12 +1200155static void __exit snappercl15_exit(void)
156{
Mika Westerberg62e4f7d2011-09-11 12:28:52 +0300157 platform_driver_unregister(&snappercl15_driver);
Ryan Mallon315f7da2010-06-08 22:01:12 +1200158}
159
160module_init(snappercl15_init);
161module_exit(snappercl15_exit);
162
Ryan Mallon1c5454e2011-06-15 14:45:36 +1000163MODULE_AUTHOR("Ryan Mallon");
Ryan Mallon315f7da2010-06-08 22:01:12 +1200164MODULE_DESCRIPTION("ALSA SoC Snapper CL15");
165MODULE_LICENSE("GPL");
Mika Westerberg62e4f7d2011-09-11 12:28:52 +0300166MODULE_ALIAS("platform:snappercl15-audio");