2 * omap3evm.c -- ALSA SoC support for OMAP3 EVM
4 * Author: Anuj Aggarwal <anuj.aggarwal@ti.com>
6 * Based on sound/soc/omap/beagle.c by Steve Sakoman
8 * Copyright (C) 2008 Texas Instruments, Incorporated
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation version 2.
14 * This program is distributed "as is" WITHOUT ANY WARRANTY of any kind,
15 * whether express or implied; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
20 #include <linux/clk.h>
21 #include <linux/platform_device.h>
22 #include <sound/core.h>
23 #include <sound/pcm.h>
24 #include <sound/soc.h>
26 #include <asm/mach-types.h>
27 #include <mach/hardware.h>
28 #include <mach/gpio.h>
29 #include <plat/mcbsp.h>
31 #include "omap-mcbsp.h"
34 static int omap3evm_hw_params(struct snd_pcm_substream
*substream
,
35 struct snd_pcm_hw_params
*params
)
37 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
38 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
39 struct snd_soc_dai
*cpu_dai
= rtd
->cpu_dai
;
42 /* Set codec DAI configuration */
43 ret
= snd_soc_dai_set_fmt(codec_dai
,
45 SND_SOC_DAIFMT_NB_NF
|
46 SND_SOC_DAIFMT_CBM_CFM
);
48 printk(KERN_ERR
"Can't set codec DAI configuration\n");
52 /* Set cpu DAI configuration */
53 ret
= snd_soc_dai_set_fmt(cpu_dai
,
55 SND_SOC_DAIFMT_NB_NF
|
56 SND_SOC_DAIFMT_CBM_CFM
);
58 printk(KERN_ERR
"Can't set cpu DAI configuration\n");
62 /* Set the codec system clock for DAC and ADC */
63 ret
= snd_soc_dai_set_sysclk(codec_dai
, 0, 26000000,
66 printk(KERN_ERR
"Can't set codec system clock\n");
73 static struct snd_soc_ops omap3evm_ops
= {
74 .hw_params
= omap3evm_hw_params
,
77 /* Digital audio interface glue - connects codec <--> CPU */
78 static struct snd_soc_dai_link omap3evm_dai
= {
80 .stream_name
= "TWL4030",
81 .cpu_dai_name
= "omap-mcbsp-dai.1",
82 .codec_dai_name
= "twl4030-hifi",
83 .platform_name
= "omap-pcm-audio",
84 .codec_name
= "twl4030-codec",
88 /* Audio machine driver */
89 static struct snd_soc_card snd_soc_omap3evm
= {
91 .dai_link
= &omap3evm_dai
,
95 static struct platform_device
*omap3evm_snd_device
;
97 static int __init
omap3evm_soc_init(void)
101 if (!machine_is_omap3evm())
103 pr_info("OMAP3 EVM SoC init\n");
105 omap3evm_snd_device
= platform_device_alloc("soc-audio", -1);
106 if (!omap3evm_snd_device
) {
107 printk(KERN_ERR
"Platform device allocation failed\n");
111 platform_set_drvdata(omap3evm_snd_device
, &snd_soc_omap3evm
);
112 ret
= platform_device_add(omap3evm_snd_device
);
119 printk(KERN_ERR
"Unable to add platform device\n");
120 platform_device_put(omap3evm_snd_device
);
125 static void __exit
omap3evm_soc_exit(void)
127 platform_device_unregister(omap3evm_snd_device
);
130 module_init(omap3evm_soc_init
);
131 module_exit(omap3evm_soc_exit
);
133 MODULE_AUTHOR("Anuj Aggarwal <anuj.aggarwal@ti.com>");
134 MODULE_DESCRIPTION("ALSA SoC OMAP3 EVM");
135 MODULE_LICENSE("GPL v2");