Thomas Gleixner | 09c434b | 2019-05-19 13:08:20 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 2 | |
| 3 | #include <linux/module.h> |
| 4 | #include <sound/soc.h> |
| 5 | |
| 6 | #include <asm/mach-types.h> |
| 7 | |
| 8 | #include "../codecs/wm8940.h" |
| 9 | #include "pxa2xx-i2s.h" |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 10 | |
| 11 | static int imote2_asoc_hw_params(struct snd_pcm_substream *substream, |
| 12 | struct snd_pcm_hw_params *params) |
| 13 | { |
Kuninori Morimoto | 83b95c2 | 2020-07-20 10:18:20 +0900 | [diff] [blame] | 14 | struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream); |
Kuninori Morimoto | 8d8fef2 | 2020-03-23 14:19:49 +0900 | [diff] [blame] | 15 | struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0); |
| 16 | struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0); |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 17 | unsigned int clk = 0; |
| 18 | int ret; |
| 19 | |
| 20 | switch (params_rate(params)) { |
| 21 | case 8000: |
| 22 | case 16000: |
| 23 | case 48000: |
| 24 | case 96000: |
| 25 | clk = 12288000; |
| 26 | break; |
| 27 | case 11025: |
| 28 | case 22050: |
| 29 | case 44100: |
| 30 | clk = 11289600; |
| 31 | break; |
| 32 | } |
| 33 | |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 34 | ret = snd_soc_dai_set_sysclk(codec_dai, 0, clk, |
| 35 | SND_SOC_CLOCK_IN); |
| 36 | if (ret < 0) |
| 37 | return ret; |
| 38 | |
| 39 | /* set the I2S system clock as input (unused) */ |
| 40 | ret = snd_soc_dai_set_sysclk(cpu_dai, PXA2XX_I2S_SYSCLK, clk, |
| 41 | SND_SOC_CLOCK_OUT); |
| 42 | |
| 43 | return ret; |
| 44 | } |
| 45 | |
Bhumika Goyal | 943b731 | 2017-03-14 01:16:40 +0530 | [diff] [blame] | 46 | static const struct snd_soc_ops imote2_asoc_ops = { |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 47 | .hw_params = imote2_asoc_hw_params, |
| 48 | }; |
| 49 | |
Kuninori Morimoto | 76359b1 | 2019-06-06 13:11:46 +0900 | [diff] [blame] | 50 | SND_SOC_DAILINK_DEFS(wm8940, |
| 51 | DAILINK_COMP_ARRAY(COMP_CPU("pxa2xx-i2s")), |
| 52 | DAILINK_COMP_ARRAY(COMP_CODEC("wm8940-codec.0-0034", |
| 53 | "wm8940-hifi")), |
| 54 | DAILINK_COMP_ARRAY(COMP_PLATFORM("pxa-pcm-audio"))); |
| 55 | |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 56 | static struct snd_soc_dai_link imote2_dai = { |
| 57 | .name = "WM8940", |
| 58 | .stream_name = "WM8940", |
Axel Lin | 52ec35f | 2011-12-20 16:27:28 +0800 | [diff] [blame] | 59 | .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF | |
| 60 | SND_SOC_DAIFMT_CBS_CFS, |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 61 | .ops = &imote2_asoc_ops, |
Kuninori Morimoto | 76359b1 | 2019-06-06 13:11:46 +0900 | [diff] [blame] | 62 | SND_SOC_DAILINK_REG(wm8940), |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 63 | }; |
| 64 | |
Axel Lin | ac1e898 | 2011-12-15 10:55:24 +0800 | [diff] [blame] | 65 | static struct snd_soc_card imote2 = { |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 66 | .name = "Imote2", |
Axel Lin | 561c6a1 | 2011-12-22 09:44:43 +0800 | [diff] [blame] | 67 | .owner = THIS_MODULE, |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 68 | .dai_link = &imote2_dai, |
| 69 | .num_links = 1, |
| 70 | }; |
| 71 | |
Bill Pemberton | 570f6fe | 2012-12-07 09:26:17 -0500 | [diff] [blame] | 72 | static int imote2_probe(struct platform_device *pdev) |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 73 | { |
Axel Lin | ac1e898 | 2011-12-15 10:55:24 +0800 | [diff] [blame] | 74 | struct snd_soc_card *card = &imote2; |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 75 | int ret; |
| 76 | |
Axel Lin | ac1e898 | 2011-12-15 10:55:24 +0800 | [diff] [blame] | 77 | card->dev = &pdev->dev; |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 78 | |
Axel Lin | 2fd7076 | 2015-09-01 10:32:59 +0800 | [diff] [blame] | 79 | ret = devm_snd_soc_register_card(&pdev->dev, card); |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 80 | if (ret) |
Axel Lin | ac1e898 | 2011-12-15 10:55:24 +0800 | [diff] [blame] | 81 | dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n", |
| 82 | ret); |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 83 | return ret; |
| 84 | } |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 85 | |
Axel Lin | ac1e898 | 2011-12-15 10:55:24 +0800 | [diff] [blame] | 86 | static struct platform_driver imote2_driver = { |
| 87 | .driver = { |
| 88 | .name = "imote2-audio", |
Dmitry Eremin-Solenikov | 7db1698 | 2013-10-17 14:01:37 +0400 | [diff] [blame] | 89 | .pm = &snd_soc_pm_ops, |
Axel Lin | ac1e898 | 2011-12-15 10:55:24 +0800 | [diff] [blame] | 90 | }, |
| 91 | .probe = imote2_probe, |
Axel Lin | ac1e898 | 2011-12-15 10:55:24 +0800 | [diff] [blame] | 92 | }; |
| 93 | |
| 94 | module_platform_driver(imote2_driver); |
Jonathan Cameron | a195b51 | 2009-05-04 14:54:11 +0000 | [diff] [blame] | 95 | |
| 96 | MODULE_AUTHOR("Jonathan Cameron"); |
| 97 | MODULE_DESCRIPTION("ALSA SoC Imote 2"); |
| 98 | MODULE_LICENSE("GPL"); |
Axel Lin | ac1e898 | 2011-12-15 10:55:24 +0800 | [diff] [blame] | 99 | MODULE_ALIAS("platform:imote2-audio"); |