2 * igep0020.c -- SoC audio for IGEP v2
4 * Based on sound/soc/omap/overo.c by Steve Sakoman
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22 #include <linux/clk.h>
23 #include <linux/platform_device.h>
24 #include <linux/module.h>
25 #include <sound/core.h>
26 #include <sound/pcm.h>
27 #include <sound/soc.h>
29 #include <asm/mach-types.h>
30 #include <mach/hardware.h>
31 #include <mach/gpio.h>
32 #include <plat/mcbsp.h>
34 #include "omap-mcbsp.h"
37 static int igep2_hw_params(struct snd_pcm_substream
*substream
,
38 struct snd_pcm_hw_params
*params
)
40 struct snd_soc_pcm_runtime
*rtd
= substream
->private_data
;
41 struct snd_soc_dai
*codec_dai
= rtd
->codec_dai
;
44 /* Set the codec system clock for DAC and ADC */
45 ret
= snd_soc_dai_set_sysclk(codec_dai
, 0, 26000000,
48 printk(KERN_ERR
"can't set codec system clock\n");
55 static struct snd_soc_ops igep2_ops
= {
56 .hw_params
= igep2_hw_params
,
59 /* Digital audio interface glue - connects codec <--> CPU */
60 static struct snd_soc_dai_link igep2_dai
= {
62 .stream_name
= "TWL4030",
63 .cpu_dai_name
= "omap-mcbsp-dai.1",
64 .codec_dai_name
= "twl4030-hifi",
65 .platform_name
= "omap-pcm-audio",
66 .codec_name
= "twl4030-codec",
67 .dai_fmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_NB_NF
|
68 SND_SOC_DAIFMT_CBM_CFM
,
72 /* Audio machine driver */
73 static struct snd_soc_card snd_soc_card_igep2
= {
76 .dai_link
= &igep2_dai
,
80 static struct platform_device
*igep2_snd_device
;
82 static int __init
igep2_soc_init(void)
86 if (!machine_is_igep0020())
88 printk(KERN_INFO
"IGEP v2 SoC init\n");
90 igep2_snd_device
= platform_device_alloc("soc-audio", -1);
91 if (!igep2_snd_device
) {
92 printk(KERN_ERR
"Platform device allocation failed\n");
96 platform_set_drvdata(igep2_snd_device
, &snd_soc_card_igep2
);
98 ret
= platform_device_add(igep2_snd_device
);
105 printk(KERN_ERR
"Unable to add platform device\n");
106 platform_device_put(igep2_snd_device
);
110 module_init(igep2_soc_init
);
112 static void __exit
igep2_soc_exit(void)
114 platform_device_unregister(igep2_snd_device
);
116 module_exit(igep2_soc_exit
);
118 MODULE_AUTHOR("Enric Balletbo i Serra <eballetbo@iseebcn.com>");
119 MODULE_DESCRIPTION("ALSA SoC IGEP v2");
120 MODULE_LICENSE("GPL");