Merge tag 'armsoc-multiplatform' of git://git.kernel.org/pub/scm/linux/kernel/git...
[cascardo/linux.git] / sound / soc / pxa / brownstone.c
1 /*
2  * linux/sound/soc/pxa/brownstone.c
3  *
4  * Copyright (C) 2011 Marvell International Ltd.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  */
12
13 #include <linux/module.h>
14 #include <sound/core.h>
15 #include <sound/pcm.h>
16 #include <sound/soc.h>
17 #include <sound/jack.h>
18
19 #include "../codecs/wm8994.h"
20 #include "mmp-sspa.h"
21
22 static const struct snd_kcontrol_new brownstone_dapm_control[] = {
23         SOC_DAPM_PIN_SWITCH("Ext Spk"),
24 };
25
26 static const struct snd_soc_dapm_widget brownstone_dapm_widgets[] = {
27         SND_SOC_DAPM_SPK("Ext Spk", NULL),
28         SND_SOC_DAPM_HP("Headset Stereophone", NULL),
29         SND_SOC_DAPM_MIC("Headset Mic", NULL),
30         SND_SOC_DAPM_MIC("Main Mic", NULL),
31 };
32
33 static const struct snd_soc_dapm_route brownstone_audio_map[] = {
34         {"Ext Spk", NULL, "SPKOUTLP"},
35         {"Ext Spk", NULL, "SPKOUTLN"},
36         {"Ext Spk", NULL, "SPKOUTRP"},
37         {"Ext Spk", NULL, "SPKOUTRN"},
38
39         {"Headset Stereophone", NULL, "HPOUT1L"},
40         {"Headset Stereophone", NULL, "HPOUT1R"},
41
42         {"IN1RN", NULL, "Headset Mic"},
43
44         {"DMIC1DAT", NULL, "MICBIAS1"},
45         {"MICBIAS1", NULL, "Main Mic"},
46 };
47
48 static int brownstone_wm8994_hw_params(struct snd_pcm_substream *substream,
49                                        struct snd_pcm_hw_params *params)
50 {
51         struct snd_soc_pcm_runtime *rtd = substream->private_data;
52         struct snd_soc_dai *codec_dai = rtd->codec_dai;
53         struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
54         int freq_out, sspa_mclk, sysclk;
55         int sspa_div;
56
57         if (params_rate(params) > 11025) {
58                 freq_out  = params_rate(params) * 512;
59                 sysclk    = params_rate(params) * 256;
60                 sspa_mclk = params_rate(params) * 64;
61         } else {
62                 freq_out  = params_rate(params) * 1024;
63                 sysclk    = params_rate(params) * 512;
64                 sspa_mclk = params_rate(params) * 64;
65         }
66         sspa_div = freq_out / sspa_mclk;
67
68         snd_soc_dai_set_sysclk(cpu_dai, MMP_SSPA_CLK_AUDIO, freq_out, 0);
69         snd_soc_dai_set_pll(cpu_dai, MMP_SYSCLK, 0, freq_out, sysclk);
70         snd_soc_dai_set_pll(cpu_dai, MMP_SSPA_CLK, 0, freq_out, sspa_mclk);
71
72         /* set wm8994 sysclk */
73         snd_soc_dai_set_sysclk(codec_dai, WM8994_SYSCLK_MCLK1, sysclk, 0);
74
75         return 0;
76 }
77
78 /* machine stream operations */
79 static struct snd_soc_ops brownstone_ops = {
80         .hw_params = brownstone_wm8994_hw_params,
81 };
82
83 static struct snd_soc_dai_link brownstone_wm8994_dai[] = {
84 {
85         .name           = "WM8994",
86         .stream_name    = "WM8994 HiFi",
87         .cpu_dai_name   = "mmp-sspa-dai.0",
88         .codec_dai_name = "wm8994-aif1",
89         .platform_name  = "mmp-pcm-audio",
90         .codec_name     = "wm8994-codec",
91         .dai_fmt        = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
92                                 SND_SOC_DAIFMT_CBS_CFS,
93         .ops            = &brownstone_ops,
94 },
95 };
96
97 /* audio machine driver */
98 static struct snd_soc_card brownstone = {
99         .name         = "brownstone",
100         .owner        = THIS_MODULE,
101         .dai_link     = brownstone_wm8994_dai,
102         .num_links    = ARRAY_SIZE(brownstone_wm8994_dai),
103
104         .controls = brownstone_dapm_control,
105         .num_controls = ARRAY_SIZE(brownstone_dapm_control),
106         .dapm_widgets = brownstone_dapm_widgets,
107         .num_dapm_widgets = ARRAY_SIZE(brownstone_dapm_widgets),
108         .dapm_routes = brownstone_audio_map,
109         .num_dapm_routes = ARRAY_SIZE(brownstone_audio_map),
110         .fully_routed = true,
111 };
112
113 static int brownstone_probe(struct platform_device *pdev)
114 {
115         int ret;
116
117         brownstone.dev = &pdev->dev;
118         ret = devm_snd_soc_register_card(&pdev->dev, &brownstone);
119         if (ret)
120                 dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n",
121                                 ret);
122         return ret;
123 }
124
125 static struct platform_driver mmp_driver = {
126         .driver         = {
127                 .name   = "brownstone-audio",
128                 .pm     = &snd_soc_pm_ops,
129         },
130         .probe          = brownstone_probe,
131 };
132
133 module_platform_driver(mmp_driver);
134
135 MODULE_AUTHOR("Leo Yan <leoy@marvell.com>");
136 MODULE_DESCRIPTION("ALSA SoC Brownstone");
137 MODULE_LICENSE("GPL");