apatard@mandriva.com | 2e8693e | 2010-05-31 13:49:15 +0200 | [diff] [blame] | 1 | /* |
| 2 | * kirkwood-openrd.c |
| 3 | * |
| 4 | * (c) 2010 Arnaud Patard <apatard@mandriva.com> |
Arnaud Patard (Rtp) | 6973789 | 2010-09-09 14:10:33 +0200 | [diff] [blame] | 5 | * (c) 2010 Arnaud Patard <arnaud.patard@rtp-net.org> |
apatard@mandriva.com | 2e8693e | 2010-05-31 13:49:15 +0200 | [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 | #include <linux/module.h> |
| 14 | #include <linux/moduleparam.h> |
| 15 | #include <linux/interrupt.h> |
| 16 | #include <linux/platform_device.h> |
| 17 | #include <linux/slab.h> |
| 18 | #include <sound/soc.h> |
| 19 | #include <mach/kirkwood.h> |
| 20 | #include <plat/audio.h> |
| 21 | #include <asm/mach-types.h> |
apatard@mandriva.com | 2e8693e | 2010-05-31 13:49:15 +0200 | [diff] [blame] | 22 | #include "../codecs/cs42l51.h" |
| 23 | |
| 24 | static int openrd_client_hw_params(struct snd_pcm_substream *substream, |
| 25 | struct snd_pcm_hw_params *params) |
| 26 | { |
| 27 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 28 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
Axel Lin | 077a2ba | 2011-12-28 18:58:17 +0800 | [diff] [blame] | 29 | unsigned int freq; |
apatard@mandriva.com | 2e8693e | 2010-05-31 13:49:15 +0200 | [diff] [blame] | 30 | |
| 31 | switch (params_rate(params)) { |
| 32 | default: |
| 33 | case 44100: |
| 34 | freq = 11289600; |
| 35 | break; |
| 36 | case 48000: |
| 37 | freq = 12288000; |
| 38 | break; |
| 39 | case 96000: |
| 40 | freq = 24576000; |
| 41 | break; |
| 42 | } |
| 43 | |
| 44 | return snd_soc_dai_set_sysclk(codec_dai, 0, freq, SND_SOC_CLOCK_IN); |
| 45 | |
| 46 | } |
| 47 | |
| 48 | static struct snd_soc_ops openrd_client_ops = { |
| 49 | .hw_params = openrd_client_hw_params, |
| 50 | }; |
| 51 | |
| 52 | |
| 53 | static struct snd_soc_dai_link openrd_client_dai[] = { |
| 54 | { |
| 55 | .name = "CS42L51", |
| 56 | .stream_name = "CS42L51 HiFi", |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 57 | .cpu_dai_name = "kirkwood-i2s", |
| 58 | .platform_name = "kirkwood-pcm-audio", |
Arnaud Patard (Rtp) | c88e7b9 | 2010-08-30 16:00:05 +0200 | [diff] [blame] | 59 | .codec_dai_name = "cs42l51-hifi", |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 60 | .codec_name = "cs42l51-codec.0-004a", |
Axel Lin | 077a2ba | 2011-12-28 18:58:17 +0800 | [diff] [blame] | 61 | .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_CBS_CFS, |
apatard@mandriva.com | 2e8693e | 2010-05-31 13:49:15 +0200 | [diff] [blame] | 62 | .ops = &openrd_client_ops, |
| 63 | }, |
| 64 | }; |
| 65 | |
| 66 | |
| 67 | static struct snd_soc_card openrd_client = { |
| 68 | .name = "OpenRD Client", |
Axel Lin | 9b344ce | 2011-12-23 14:49:28 +0800 | [diff] [blame] | 69 | .owner = THIS_MODULE, |
apatard@mandriva.com | 2e8693e | 2010-05-31 13:49:15 +0200 | [diff] [blame] | 70 | .dai_link = openrd_client_dai, |
| 71 | .num_links = ARRAY_SIZE(openrd_client_dai), |
| 72 | }; |
| 73 | |
apatard@mandriva.com | 2e8693e | 2010-05-31 13:49:15 +0200 | [diff] [blame] | 74 | static struct platform_device *openrd_client_snd_device; |
| 75 | |
| 76 | static int __init openrd_client_init(void) |
| 77 | { |
| 78 | int ret; |
| 79 | |
Arnaud Patard (Rtp) | 3c9e28e | 2010-11-13 18:51:53 +0100 | [diff] [blame] | 80 | if (!machine_is_openrd_client() && !machine_is_openrd_ultimate()) |
apatard@mandriva.com | 2e8693e | 2010-05-31 13:49:15 +0200 | [diff] [blame] | 81 | return 0; |
| 82 | |
| 83 | openrd_client_snd_device = platform_device_alloc("soc-audio", -1); |
| 84 | if (!openrd_client_snd_device) |
| 85 | return -ENOMEM; |
| 86 | |
| 87 | platform_set_drvdata(openrd_client_snd_device, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 88 | &openrd_client); |
apatard@mandriva.com | 2e8693e | 2010-05-31 13:49:15 +0200 | [diff] [blame] | 89 | |
| 90 | ret = platform_device_add(openrd_client_snd_device); |
| 91 | if (ret) { |
| 92 | printk(KERN_ERR "%s: platform_device_add failed\n", __func__); |
| 93 | platform_device_put(openrd_client_snd_device); |
| 94 | } |
| 95 | |
| 96 | return ret; |
| 97 | } |
| 98 | |
| 99 | static void __exit openrd_client_exit(void) |
| 100 | { |
| 101 | platform_device_unregister(openrd_client_snd_device); |
| 102 | } |
| 103 | |
| 104 | module_init(openrd_client_init); |
| 105 | module_exit(openrd_client_exit); |
| 106 | |
| 107 | /* Module information */ |
Arnaud Patard (Rtp) | 6973789 | 2010-09-09 14:10:33 +0200 | [diff] [blame] | 108 | MODULE_AUTHOR("Arnaud Patard <arnaud.patard@rtp-net.org>"); |
apatard@mandriva.com | 2e8693e | 2010-05-31 13:49:15 +0200 | [diff] [blame] | 109 | MODULE_DESCRIPTION("ALSA SoC OpenRD Client"); |
| 110 | MODULE_LICENSE("GPL"); |
| 111 | MODULE_ALIAS("platform:soc-audio"); |