blob: eadf9d351a04d996978881b46a9503b8723f03c7 [file] [log] [blame]
Mike Rapoport142054a2008-05-26 12:59:16 +03001/*
Mike Rapoporteaaa5322009-05-11 15:05:29 +03002 * SoC audio driver for EM-X270, eXeda and CM-X300
Mike Rapoport142054a2008-05-26 12:59:16 +03003 *
Mike Rapoporteaaa5322009-05-11 15:05:29 +03004 * Copyright 2007, 2009 CompuLab, Ltd.
Mike Rapoport142054a2008-05-26 12:59:16 +03005 *
6 * Author: Mike Rapoport <mike@compulab.co.il>
7 *
8 * Copied from tosa.c:
9 * Copyright 2005 Wolfson Microelectronics PLC.
10 * Copyright 2005 Openedhand Ltd.
11 *
Liam Girdwoodd3311242008-10-12 13:17:36 +010012 * Authors: Liam Girdwood <lrg@slimlogic.co.uk>
Mike Rapoport142054a2008-05-26 12:59:16 +030013 * Richard Purdie <richard@openedhand.com>
14 *
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License as published by the
17 * Free Software Foundation; either version 2 of the License, or (at your
18 * option) any later version.
19 *
20 */
21
22#include <linux/module.h>
23#include <linux/moduleparam.h>
24#include <linux/device.h>
25
Mike Rapoport142054a2008-05-26 12:59:16 +030026#include <sound/core.h>
27#include <sound/pcm.h>
28#include <sound/soc.h>
29#include <sound/soc-dapm.h>
30
31#include <asm/mach-types.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/audio.h>
Mike Rapoport142054a2008-05-26 12:59:16 +030033
34#include "../codecs/wm9712.h"
Mike Rapoport142054a2008-05-26 12:59:16 +030035#include "pxa2xx-ac97.h"
36
37static struct snd_soc_dai_link em_x270_dai[] = {
38 {
39 .name = "AC97",
40 .stream_name = "AC97 HiFi",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000041 .cpu_dai_name = "pxa-ac97.0",
42 .codec_dai_name = "wm9712-hifi",
43 .platform_name = "pxa-pcm-audio",
44 .codec_name = "wm9712-codec",
Mike Rapoport142054a2008-05-26 12:59:16 +030045 },
46 {
47 .name = "AC97 Aux",
48 .stream_name = "AC97 Aux",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000049 .cpu_dai_name = "pxa-ac97.1",
50 .codec_dai_name ="wm9712-aux",
51 .platform_name = "pxa-pcm-audio",
52 .codec_name = "wm9712-codec",
Mike Rapoport142054a2008-05-26 12:59:16 +030053 },
54};
55
Mark Brown87506542008-11-18 20:50:34 +000056static struct snd_soc_card em_x270 = {
Mike Rapoport142054a2008-05-26 12:59:16 +030057 .name = "EM-X270",
58 .dai_link = em_x270_dai,
59 .num_links = ARRAY_SIZE(em_x270_dai),
60};
61
Mike Rapoport142054a2008-05-26 12:59:16 +030062static struct platform_device *em_x270_snd_device;
63
64static int __init em_x270_init(void)
65{
66 int ret;
67
Mike Rapoporteaaa5322009-05-11 15:05:29 +030068 if (!(machine_is_em_x270() || machine_is_exeda()
69 || machine_is_cm_x300()))
Mike Rapoport142054a2008-05-26 12:59:16 +030070 return -ENODEV;
71
72 em_x270_snd_device = platform_device_alloc("soc-audio", -1);
73 if (!em_x270_snd_device)
74 return -ENOMEM;
75
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000076 platform_set_drvdata(em_x270_snd_device, &em_x270);
Mike Rapoport142054a2008-05-26 12:59:16 +030077 ret = platform_device_add(em_x270_snd_device);
78
79 if (ret)
80 platform_device_put(em_x270_snd_device);
81
82 return ret;
83}
84
85static void __exit em_x270_exit(void)
86{
87 platform_device_unregister(em_x270_snd_device);
88}
89
90module_init(em_x270_init);
91module_exit(em_x270_exit);
92
93/* Module information */
94MODULE_AUTHOR("Mike Rapoport");
Mike Rapoporteaaa5322009-05-11 15:05:29 +030095MODULE_DESCRIPTION("ALSA SoC EM-X270, eXeda and CM-X300");
Mike Rapoport142054a2008-05-26 12:59:16 +030096MODULE_LICENSE("GPL");