blob: c62ae689c4a157c4373d6957af42d16fcd4dbe29 [file] [log] [blame]
Manuel Laussaef3b062007-05-14 18:40:07 +02001/*
2 * Generic AC97 sound support for SH7760
3 *
4 * (c) 2007 Manuel Lauss
5 *
6 * Licensed under the GPLv2.
7 */
8
9#include <linux/module.h>
10#include <linux/moduleparam.h>
11#include <linux/platform_device.h>
Manuel Laussaef3b062007-05-14 18:40:07 +020012#include <sound/core.h>
13#include <sound/pcm.h>
14#include <sound/soc.h>
Manuel Laussaef3b062007-05-14 18:40:07 +020015#include <asm/io.h>
16
Manuel Laussaef3b062007-05-14 18:40:07 +020017#define IPSEL 0xFE400034
18
19/* platform specific structs can be declared here */
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000020extern struct snd_soc_dai_driver sh4_hac_dai[2];
21extern struct snd_soc_platform_driver sh7760_soc_platform;
Manuel Laussaef3b062007-05-14 18:40:07 +020022
Manuel Laussaef3b062007-05-14 18:40:07 +020023static struct snd_soc_dai_link sh7760_ac97_dai = {
24 .name = "AC97",
25 .stream_name = "AC97 HiFi",
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000026 .cpu_dai_name = "hac-dai.0", /* HAC0 */
27 .codec_dai_name = "ac97-hifi",
28 .platform_name = "sh7760-pcm-audio",
29 .codec_name = "ac97-codec",
Manuel Laussaef3b062007-05-14 18:40:07 +020030 .ops = NULL,
31};
32
Mark Brown87506542008-11-18 20:50:34 +000033static struct snd_soc_card sh7760_ac97_soc_machine = {
Manuel Laussaef3b062007-05-14 18:40:07 +020034 .name = "SH7760 AC97",
35 .dai_link = &sh7760_ac97_dai,
36 .num_links = 1,
37};
38
Manuel Laussaef3b062007-05-14 18:40:07 +020039static struct platform_device *sh7760_ac97_snd_device;
40
41static int __init sh7760_ac97_init(void)
42{
43 int ret;
44 unsigned short ipsel;
45
46 /* enable both AC97 controllers in pinmux reg */
Paul Mundt48ccb2c2010-10-27 15:53:50 +090047 ipsel = __raw_readw(IPSEL);
48 __raw_writew(ipsel | (3 << 10), IPSEL);
Manuel Laussaef3b062007-05-14 18:40:07 +020049
50 ret = -ENOMEM;
51 sh7760_ac97_snd_device = platform_device_alloc("soc-audio", -1);
52 if (!sh7760_ac97_snd_device)
53 goto out;
54
55 platform_set_drvdata(sh7760_ac97_snd_device,
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +000056 &sh7760_ac97_soc_machine);
Manuel Laussaef3b062007-05-14 18:40:07 +020057 ret = platform_device_add(sh7760_ac97_snd_device);
58
59 if (ret)
60 platform_device_put(sh7760_ac97_snd_device);
61
62out:
63 return ret;
64}
65
66static void __exit sh7760_ac97_exit(void)
67{
68 platform_device_unregister(sh7760_ac97_snd_device);
69}
70
71module_init(sh7760_ac97_init);
72module_exit(sh7760_ac97_exit);
73
74MODULE_LICENSE("GPL");
75MODULE_DESCRIPTION("Generic SH7760 AC97 sound machine");
76MODULE_AUTHOR("Manuel Lauss <mano@roarinelk.homelinux.net>");