4 * (c) 2010 Arnaud Patard <apatard@mandriva.com>
5 * (c) 2010 Arnaud Patard <arnaud.patard@rtp-net.org>
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.
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>
22 #include "../codecs/cs42l51.h"
24 static int openrd_client_hw_params(struct snd_pcm_substream
*substream
,
25 struct snd_pcm_hw_params
*params
)
27 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
28 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
29 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
31 unsigned int freq
, fmt
;
33 fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_CBS_CFS
;
34 ret
= snd_soc_dai_set_fmt(cpu_dai
, fmt
);
38 ret
= snd_soc_dai_set_fmt(codec_dai
, fmt
);
42 switch (params_rate(params
)) {
55 return snd_soc_dai_set_sysclk(codec_dai
, 0, freq
, SND_SOC_CLOCK_IN
);
59 static struct snd_soc_ops openrd_client_ops
= {
60 .hw_params
= openrd_client_hw_params
,
64 static struct snd_soc_dai_link openrd_client_dai
[] = {
67 .stream_name
= "CS42L51 HiFi",
68 .cpu_dai_name
= "kirkwood-i2s",
69 .platform_name
= "kirkwood-pcm-audio",
70 .codec_dai_name
= "cs42l51-hifi",
71 .codec_name
= "cs42l51-codec.0-004a",
72 .ops
= &openrd_client_ops
,
77 static struct snd_soc_card openrd_client
= {
78 .name
= "OpenRD Client",
79 .dai_link
= openrd_client_dai
,
80 .num_links
= ARRAY_SIZE(openrd_client_dai
),
83 static struct platform_device
*openrd_client_snd_device
;
85 static int __init
openrd_client_init(void)
89 if (!machine_is_openrd_client() && !machine_is_openrd_ultimate())
92 openrd_client_snd_device
= platform_device_alloc("soc-audio", -1);
93 if (!openrd_client_snd_device
)
96 platform_set_drvdata(openrd_client_snd_device
,
99 ret
= platform_device_add(openrd_client_snd_device
);
101 printk(KERN_ERR
"%s: platform_device_add failed\n", __func__
);
102 platform_device_put(openrd_client_snd_device
);
108 static void __exit
openrd_client_exit(void)
110 platform_device_unregister(openrd_client_snd_device
);
113 module_init(openrd_client_init
);
114 module_exit(openrd_client_exit
);
116 /* Module information */
117 MODULE_AUTHOR("Arnaud Patard <arnaud.patard@rtp-net.org>");
118 MODULE_DESCRIPTION("ALSA SoC OpenRD Client");
119 MODULE_LICENSE("GPL");
120 MODULE_ALIAS("platform:soc-audio");