Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 1 | /* |
| 2 | * snappercl15.c -- SoC audio for Bluewater Systems Snapper CL15 module |
| 3 | * |
| 4 | * Copyright (C) 2008 Bluewater Systems Ltd |
Ryan Mallon | 1c5454e | 2011-06-15 14:45:36 +1000 | [diff] [blame] | 5 | * Author: Ryan Mallon |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 6 | * |
| 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 Gortmaker | da155d5 | 2011-07-15 12:38:28 -0400 | [diff] [blame] | 15 | #include <linux/module.h> |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 16 | #include <sound/core.h> |
| 17 | #include <sound/pcm.h> |
| 18 | #include <sound/soc.h> |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 19 | |
| 20 | #include <asm/mach-types.h> |
| 21 | #include <mach/hardware.h> |
| 22 | |
| 23 | #include "../codecs/tlv320aic23.h" |
| 24 | #include "ep93xx-pcm.h" |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 25 | |
| 26 | #define CODEC_CLOCK 5644800 |
| 27 | |
| 28 | static 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 Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 32 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
| 33 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 34 | int err; |
| 35 | |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 36 | err = snd_soc_dai_set_sysclk(codec_dai, 0, CODEC_CLOCK, |
| 37 | SND_SOC_CLOCK_IN); |
| 38 | if (err) |
| 39 | return err; |
| 40 | |
| 41 | err = snd_soc_dai_set_sysclk(cpu_dai, 0, CODEC_CLOCK, |
| 42 | SND_SOC_CLOCK_OUT); |
| 43 | if (err) |
| 44 | return err; |
| 45 | |
| 46 | return 0; |
| 47 | } |
| 48 | |
| 49 | static struct snd_soc_ops snappercl15_ops = { |
| 50 | .hw_params = snappercl15_hw_params, |
| 51 | }; |
| 52 | |
| 53 | static const struct snd_soc_dapm_widget tlv320aic23_dapm_widgets[] = { |
| 54 | SND_SOC_DAPM_HP("Headphone Jack", NULL), |
| 55 | SND_SOC_DAPM_LINE("Line In", NULL), |
| 56 | SND_SOC_DAPM_MIC("Mic Jack", NULL), |
| 57 | }; |
| 58 | |
| 59 | static const struct snd_soc_dapm_route audio_map[] = { |
| 60 | {"Headphone Jack", NULL, "LHPOUT"}, |
| 61 | {"Headphone Jack", NULL, "RHPOUT"}, |
| 62 | |
| 63 | {"LLINEIN", NULL, "Line In"}, |
| 64 | {"RLINEIN", NULL, "Line In"}, |
| 65 | |
| 66 | {"MICIN", NULL, "Mic Jack"}, |
| 67 | }; |
| 68 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 69 | static int snappercl15_tlv320aic23_init(struct snd_soc_pcm_runtime *rtd) |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 70 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 71 | struct snd_soc_codec *codec = rtd->codec; |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 72 | struct snd_soc_dapm_context *dapm = &codec->dapm; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 73 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 74 | snd_soc_dapm_new_controls(dapm, tlv320aic23_dapm_widgets, |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 75 | ARRAY_SIZE(tlv320aic23_dapm_widgets)); |
| 76 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 77 | snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map)); |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 78 | return 0; |
| 79 | } |
| 80 | |
| 81 | static struct snd_soc_dai_link snappercl15_dai = { |
| 82 | .name = "tlv320aic23", |
| 83 | .stream_name = "AIC23", |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 84 | .cpu_dai_name = "ep93xx-i2s", |
| 85 | .codec_dai_name = "tlv320aic23-hifi", |
| 86 | .codec_name = "tlv320aic23-codec.0-001a", |
| 87 | .platform_name = "ep93xx-pcm-audio", |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 88 | .init = snappercl15_tlv320aic23_init, |
Axel Lin | f49f851 | 2011-12-17 15:41:11 +0800 | [diff] [blame] | 89 | .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_IF | |
| 90 | SND_SOC_DAIFMT_CBS_CFS, |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 91 | .ops = &snappercl15_ops, |
| 92 | }; |
| 93 | |
| 94 | static struct snd_soc_card snd_soc_snappercl15 = { |
| 95 | .name = "Snapper CL15", |
Axel Lin | a76a702 | 2011-12-22 21:21:37 +0800 | [diff] [blame] | 96 | .owner = THIS_MODULE, |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 97 | .dai_link = &snappercl15_dai, |
| 98 | .num_links = 1, |
| 99 | }; |
| 100 | |
Mika Westerberg | 62e4f7d | 2011-09-11 12:28:52 +0300 | [diff] [blame] | 101 | static int __devinit snappercl15_probe(struct platform_device *pdev) |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 102 | { |
Mika Westerberg | 62e4f7d | 2011-09-11 12:28:52 +0300 | [diff] [blame] | 103 | struct snd_soc_card *card = &snd_soc_snappercl15; |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 104 | int ret; |
| 105 | |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 106 | ret = ep93xx_i2s_acquire(EP93XX_SYSCON_DEVCFG_I2SONAC97, |
| 107 | EP93XX_SYSCON_I2SCLKDIV_ORIDE | |
| 108 | EP93XX_SYSCON_I2SCLKDIV_SPOL); |
| 109 | if (ret) |
| 110 | return ret; |
| 111 | |
Mika Westerberg | 62e4f7d | 2011-09-11 12:28:52 +0300 | [diff] [blame] | 112 | card->dev = &pdev->dev; |
| 113 | |
| 114 | ret = snd_soc_register_card(card); |
| 115 | if (ret) { |
| 116 | dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n", |
| 117 | ret); |
| 118 | ep93xx_i2s_release(); |
| 119 | } |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 120 | |
| 121 | return ret; |
| 122 | } |
| 123 | |
Mika Westerberg | 62e4f7d | 2011-09-11 12:28:52 +0300 | [diff] [blame] | 124 | static int __devexit snappercl15_remove(struct platform_device *pdev) |
| 125 | { |
| 126 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
| 127 | |
| 128 | snd_soc_unregister_card(card); |
| 129 | ep93xx_i2s_release(); |
| 130 | |
| 131 | return 0; |
| 132 | } |
| 133 | |
| 134 | static struct platform_driver snappercl15_driver = { |
| 135 | .driver = { |
| 136 | .name = "snappercl15-audio", |
| 137 | .owner = THIS_MODULE, |
| 138 | }, |
| 139 | .probe = snappercl15_probe, |
| 140 | .remove = __devexit_p(snappercl15_remove), |
| 141 | }; |
| 142 | |
Axel Lin | ee18f63 | 2011-11-24 12:07:55 +0800 | [diff] [blame] | 143 | module_platform_driver(snappercl15_driver); |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 144 | |
Ryan Mallon | 1c5454e | 2011-06-15 14:45:36 +1000 | [diff] [blame] | 145 | MODULE_AUTHOR("Ryan Mallon"); |
Ryan Mallon | 315f7da | 2010-06-08 22:01:12 +1200 | [diff] [blame] | 146 | MODULE_DESCRIPTION("ALSA SoC Snapper CL15"); |
| 147 | MODULE_LICENSE("GPL"); |
Mika Westerberg | 62e4f7d | 2011-09-11 12:28:52 +0300 | [diff] [blame] | 148 | MODULE_ALIAS("platform:snappercl15-audio"); |