RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / sound / aoa / codecs / snd-aoa-codec-toonie.c
blob3c7d1d8a9a6f3f2568c40502e886a3d6e7ccd6ff
1 /*
2 * Apple Onboard Audio driver for Toonie codec
4 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
6 * GPL v2, can be found in COPYING.
9 * This is a driver for the toonie codec chip. This chip is present
10 * on the Mac Mini and is nothing but a DAC.
12 #include <linux/delay.h>
13 #include <linux/module.h>
14 MODULE_AUTHOR("Johannes Berg <johannes@sipsolutions.net>");
15 MODULE_LICENSE("GPL");
16 MODULE_DESCRIPTION("toonie codec driver for snd-aoa");
18 #include "../aoa.h"
19 #include "../soundbus/soundbus.h"
22 #define PFX "snd-aoa-codec-toonie: "
24 struct toonie {
25 struct aoa_codec codec;
27 #define codec_to_toonie(c) container_of(c, struct toonie, codec)
29 static int toonie_dev_register(struct snd_device *dev)
31 return 0;
34 static struct snd_device_ops ops = {
35 .dev_register = toonie_dev_register,
38 static struct transfer_info toonie_transfers[] = {
39 /* This thing *only* has analog output,
40 * the rates are taken from Info.plist
41 * from Darwin. */
43 .formats = SNDRV_PCM_FMTBIT_S16_BE |
44 SNDRV_PCM_FMTBIT_S24_BE,
45 .rates = SNDRV_PCM_RATE_32000 |
46 SNDRV_PCM_RATE_44100 |
47 SNDRV_PCM_RATE_48000 |
48 SNDRV_PCM_RATE_88200 |
49 SNDRV_PCM_RATE_96000,
54 static int toonie_usable(struct codec_info_item *cii,
55 struct transfer_info *ti,
56 struct transfer_info *out)
58 return 1;
61 #ifdef CONFIG_PM
62 static int toonie_suspend(struct codec_info_item *cii, pm_message_t state)
64 /* can we turn it off somehow? */
65 return 0;
68 static int toonie_resume(struct codec_info_item *cii)
70 return 0;
72 #endif /* CONFIG_PM */
74 static struct codec_info toonie_codec_info = {
75 .transfers = toonie_transfers,
76 .sysclock_factor = 256,
77 .bus_factor = 64,
78 .owner = THIS_MODULE,
79 .usable = toonie_usable,
80 #ifdef CONFIG_PM
81 .suspend = toonie_suspend,
82 .resume = toonie_resume,
83 #endif
86 static int toonie_init_codec(struct aoa_codec *codec)
88 struct toonie *toonie = codec_to_toonie(codec);
90 /* nothing connected? what a joke! */
91 if (toonie->codec.connected != 1)
92 return -ENOTCONN;
94 if (aoa_snd_device_new(SNDRV_DEV_LOWLEVEL, toonie, &ops)) {
95 printk(KERN_ERR PFX "failed to create toonie snd device!\n");
96 return -ENODEV;
99 if (toonie->codec.soundbus_dev->attach_codec(toonie->codec.soundbus_dev,
100 aoa_get_card(),
101 &toonie_codec_info, toonie)) {
102 printk(KERN_ERR PFX "error creating toonie pcm\n");
103 snd_device_free(aoa_get_card(), toonie);
104 return -ENODEV;
107 return 0;
110 static void toonie_exit_codec(struct aoa_codec *codec)
112 struct toonie *toonie = codec_to_toonie(codec);
114 if (!toonie->codec.soundbus_dev) {
115 printk(KERN_ERR PFX "toonie_exit_codec called without soundbus_dev!\n");
116 return;
118 toonie->codec.soundbus_dev->detach_codec(toonie->codec.soundbus_dev, toonie);
121 static struct toonie *toonie;
123 static int __init toonie_init(void)
125 toonie = kzalloc(sizeof(struct toonie), GFP_KERNEL);
127 if (!toonie)
128 return -ENOMEM;
130 strlcpy(toonie->codec.name, "toonie", sizeof(toonie->codec.name));
131 toonie->codec.owner = THIS_MODULE;
132 toonie->codec.init = toonie_init_codec;
133 toonie->codec.exit = toonie_exit_codec;
135 if (aoa_codec_register(&toonie->codec)) {
136 kfree(toonie);
137 return -EINVAL;
140 return 0;
143 static void __exit toonie_exit(void)
145 aoa_codec_unregister(&toonie->codec);
146 kfree(toonie);
149 module_init(toonie_init);
150 module_exit(toonie_exit);