diff options
Diffstat (limited to 'sound/soc/soc-core.c')
-rw-r--r-- | sound/soc/soc-core.c | 2615 |
1 files changed, 1804 insertions, 811 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index acc91daa1c55..b194be09e74d 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c | |||
@@ -3,6 +3,8 @@ | |||
3 | * | 3 | * |
4 | * Copyright 2005 Wolfson Microelectronics PLC. | 4 | * Copyright 2005 Wolfson Microelectronics PLC. |
5 | * Copyright 2005 Openedhand Ltd. | 5 | * Copyright 2005 Openedhand Ltd. |
6 | * Copyright (C) 2010 Slimlogic Ltd. | ||
7 | * Copyright (C) 2010 Texas Instruments Inc. | ||
6 | * | 8 | * |
7 | * Author: Liam Girdwood <lrg@slimlogic.co.uk> | 9 | * Author: Liam Girdwood <lrg@slimlogic.co.uk> |
8 | * with code, comments and ideas from :- | 10 | * with code, comments and ideas from :- |
@@ -31,17 +33,23 @@ | |||
31 | #include <linux/slab.h> | 33 | #include <linux/slab.h> |
32 | #include <sound/ac97_codec.h> | 34 | #include <sound/ac97_codec.h> |
33 | #include <sound/core.h> | 35 | #include <sound/core.h> |
36 | #include <sound/jack.h> | ||
34 | #include <sound/pcm.h> | 37 | #include <sound/pcm.h> |
35 | #include <sound/pcm_params.h> | 38 | #include <sound/pcm_params.h> |
36 | #include <sound/soc.h> | 39 | #include <sound/soc.h> |
37 | #include <sound/soc-dapm.h> | ||
38 | #include <sound/initval.h> | 40 | #include <sound/initval.h> |
39 | 41 | ||
42 | #define CREATE_TRACE_POINTS | ||
43 | #include <trace/events/asoc.h> | ||
44 | |||
45 | #define NAME_SIZE 32 | ||
46 | |||
40 | static DEFINE_MUTEX(pcm_mutex); | 47 | static DEFINE_MUTEX(pcm_mutex); |
41 | static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq); | 48 | static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq); |
42 | 49 | ||
43 | #ifdef CONFIG_DEBUG_FS | 50 | #ifdef CONFIG_DEBUG_FS |
44 | static struct dentry *debugfs_root; | 51 | struct dentry *snd_soc_debugfs_root; |
52 | EXPORT_SYMBOL_GPL(snd_soc_debugfs_root); | ||
45 | #endif | 53 | #endif |
46 | 54 | ||
47 | static DEFINE_MUTEX(client_mutex); | 55 | static DEFINE_MUTEX(client_mutex); |
@@ -50,8 +58,7 @@ static LIST_HEAD(dai_list); | |||
50 | static LIST_HEAD(platform_list); | 58 | static LIST_HEAD(platform_list); |
51 | static LIST_HEAD(codec_list); | 59 | static LIST_HEAD(codec_list); |
52 | 60 | ||
53 | static int snd_soc_register_card(struct snd_soc_card *card); | 61 | static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num); |
54 | static int snd_soc_unregister_card(struct snd_soc_card *card); | ||
55 | 62 | ||
56 | /* | 63 | /* |
57 | * This is a timeout to do a DAPM powerdown after a stream is closed(). | 64 | * This is a timeout to do a DAPM powerdown after a stream is closed(). |
@@ -62,83 +69,111 @@ static int pmdown_time = 5000; | |||
62 | module_param(pmdown_time, int, 0); | 69 | module_param(pmdown_time, int, 0); |
63 | MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)"); | 70 | MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)"); |
64 | 71 | ||
65 | /* | 72 | /* returns the minimum number of bytes needed to represent |
66 | * This function forces any delayed work to be queued and run. | 73 | * a particular given value */ |
67 | */ | 74 | static int min_bytes_needed(unsigned long val) |
68 | static int run_delayed_work(struct delayed_work *dwork) | 75 | { |
76 | int c = 0; | ||
77 | int i; | ||
78 | |||
79 | for (i = (sizeof val * 8) - 1; i >= 0; --i, ++c) | ||
80 | if (val & (1UL << i)) | ||
81 | break; | ||
82 | c = (sizeof val * 8) - c; | ||
83 | if (!c || (c % 8)) | ||
84 | c = (c + 8) / 8; | ||
85 | else | ||
86 | c /= 8; | ||
87 | return c; | ||
88 | } | ||
89 | |||
90 | /* fill buf which is 'len' bytes with a formatted | ||
91 | * string of the form 'reg: value\n' */ | ||
92 | static int format_register_str(struct snd_soc_codec *codec, | ||
93 | unsigned int reg, char *buf, size_t len) | ||
69 | { | 94 | { |
95 | int wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2; | ||
96 | int regsize = codec->driver->reg_word_size * 2; | ||
70 | int ret; | 97 | int ret; |
98 | char tmpbuf[len + 1]; | ||
99 | char regbuf[regsize + 1]; | ||
71 | 100 | ||
72 | /* cancel any work waiting to be queued. */ | 101 | /* since tmpbuf is allocated on the stack, warn the callers if they |
73 | ret = cancel_delayed_work(dwork); | 102 | * try to abuse this function */ |
103 | WARN_ON(len > 63); | ||
74 | 104 | ||
75 | /* if there was any work waiting then we run it now and | 105 | /* +2 for ': ' and + 1 for '\n' */ |
76 | * wait for it's completion */ | 106 | if (wordsize + regsize + 2 + 1 != len) |
77 | if (ret) { | 107 | return -EINVAL; |
78 | schedule_delayed_work(dwork, 0); | 108 | |
79 | flush_scheduled_work(); | 109 | ret = snd_soc_read(codec , reg); |
110 | if (ret < 0) { | ||
111 | memset(regbuf, 'X', regsize); | ||
112 | regbuf[regsize] = '\0'; | ||
113 | } else { | ||
114 | snprintf(regbuf, regsize + 1, "%.*x", regsize, ret); | ||
80 | } | 115 | } |
81 | return ret; | 116 | |
117 | /* prepare the buffer */ | ||
118 | snprintf(tmpbuf, len + 1, "%.*x: %s\n", wordsize, reg, regbuf); | ||
119 | /* copy it back to the caller without the '\0' */ | ||
120 | memcpy(buf, tmpbuf, len); | ||
121 | |||
122 | return 0; | ||
82 | } | 123 | } |
83 | 124 | ||
84 | /* codec register dump */ | 125 | /* codec register dump */ |
85 | static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf) | 126 | static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf, |
127 | size_t count, loff_t pos) | ||
86 | { | 128 | { |
87 | int ret, i, step = 1, count = 0; | 129 | int i, step = 1; |
130 | int wordsize, regsize; | ||
131 | int len; | ||
132 | size_t total = 0; | ||
133 | loff_t p = 0; | ||
88 | 134 | ||
89 | if (!codec->reg_cache_size) | 135 | wordsize = min_bytes_needed(codec->driver->reg_cache_size) * 2; |
90 | return 0; | 136 | regsize = codec->driver->reg_word_size * 2; |
91 | 137 | ||
92 | if (codec->reg_cache_step) | 138 | len = wordsize + regsize + 2 + 1; |
93 | step = codec->reg_cache_step; | ||
94 | 139 | ||
95 | count += sprintf(buf, "%s registers\n", codec->name); | 140 | if (!codec->driver->reg_cache_size) |
96 | for (i = 0; i < codec->reg_cache_size; i += step) { | 141 | return 0; |
97 | if (codec->readable_register && !codec->readable_register(i)) | ||
98 | continue; | ||
99 | 142 | ||
100 | count += sprintf(buf + count, "%2x: ", i); | 143 | if (codec->driver->reg_cache_step) |
101 | if (count >= PAGE_SIZE - 1) | 144 | step = codec->driver->reg_cache_step; |
102 | break; | ||
103 | 145 | ||
104 | if (codec->display_register) { | 146 | for (i = 0; i < codec->driver->reg_cache_size; i += step) { |
105 | count += codec->display_register(codec, buf + count, | 147 | if (codec->readable_register && !codec->readable_register(codec, i)) |
148 | continue; | ||
149 | if (codec->driver->display_register) { | ||
150 | count += codec->driver->display_register(codec, buf + count, | ||
106 | PAGE_SIZE - count, i); | 151 | PAGE_SIZE - count, i); |
107 | } else { | 152 | } else { |
108 | /* If the read fails it's almost certainly due to | 153 | /* only support larger than PAGE_SIZE bytes debugfs |
109 | * the register being volatile and the device being | 154 | * entries for the default case */ |
110 | * powered off. | 155 | if (p >= pos) { |
111 | */ | 156 | if (total + len >= count - 1) |
112 | ret = codec->read(codec, i); | 157 | break; |
113 | if (ret >= 0) | 158 | format_register_str(codec, i, buf + total, len); |
114 | count += snprintf(buf + count, | 159 | total += len; |
115 | PAGE_SIZE - count, | 160 | } |
116 | "%4x", ret); | 161 | p += len; |
117 | else | ||
118 | count += snprintf(buf + count, | ||
119 | PAGE_SIZE - count, | ||
120 | "<no data: %d>", ret); | ||
121 | } | 162 | } |
122 | |||
123 | if (count >= PAGE_SIZE - 1) | ||
124 | break; | ||
125 | |||
126 | count += snprintf(buf + count, PAGE_SIZE - count, "\n"); | ||
127 | if (count >= PAGE_SIZE - 1) | ||
128 | break; | ||
129 | } | 163 | } |
130 | 164 | ||
131 | /* Truncate count; min() would cause a warning */ | 165 | total = min(total, count - 1); |
132 | if (count >= PAGE_SIZE) | ||
133 | count = PAGE_SIZE - 1; | ||
134 | 166 | ||
135 | return count; | 167 | return total; |
136 | } | 168 | } |
169 | |||
137 | static ssize_t codec_reg_show(struct device *dev, | 170 | static ssize_t codec_reg_show(struct device *dev, |
138 | struct device_attribute *attr, char *buf) | 171 | struct device_attribute *attr, char *buf) |
139 | { | 172 | { |
140 | struct snd_soc_device *devdata = dev_get_drvdata(dev); | 173 | struct snd_soc_pcm_runtime *rtd = |
141 | return soc_codec_reg_show(devdata->card->codec, buf); | 174 | container_of(dev, struct snd_soc_pcm_runtime, dev); |
175 | |||
176 | return soc_codec_reg_show(rtd->codec, buf, PAGE_SIZE, 0); | ||
142 | } | 177 | } |
143 | 178 | ||
144 | static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL); | 179 | static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL); |
@@ -146,20 +181,23 @@ static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL); | |||
146 | static ssize_t pmdown_time_show(struct device *dev, | 181 | static ssize_t pmdown_time_show(struct device *dev, |
147 | struct device_attribute *attr, char *buf) | 182 | struct device_attribute *attr, char *buf) |
148 | { | 183 | { |
149 | struct snd_soc_device *socdev = dev_get_drvdata(dev); | 184 | struct snd_soc_pcm_runtime *rtd = |
150 | struct snd_soc_card *card = socdev->card; | 185 | container_of(dev, struct snd_soc_pcm_runtime, dev); |
151 | 186 | ||
152 | return sprintf(buf, "%ld\n", card->pmdown_time); | 187 | return sprintf(buf, "%ld\n", rtd->pmdown_time); |
153 | } | 188 | } |
154 | 189 | ||
155 | static ssize_t pmdown_time_set(struct device *dev, | 190 | static ssize_t pmdown_time_set(struct device *dev, |
156 | struct device_attribute *attr, | 191 | struct device_attribute *attr, |
157 | const char *buf, size_t count) | 192 | const char *buf, size_t count) |
158 | { | 193 | { |
159 | struct snd_soc_device *socdev = dev_get_drvdata(dev); | 194 | struct snd_soc_pcm_runtime *rtd = |
160 | struct snd_soc_card *card = socdev->card; | 195 | container_of(dev, struct snd_soc_pcm_runtime, dev); |
196 | int ret; | ||
161 | 197 | ||
162 | strict_strtol(buf, 10, &card->pmdown_time); | 198 | ret = strict_strtol(buf, 10, &rtd->pmdown_time); |
199 | if (ret) | ||
200 | return ret; | ||
163 | 201 | ||
164 | return count; | 202 | return count; |
165 | } | 203 | } |
@@ -174,16 +212,28 @@ static int codec_reg_open_file(struct inode *inode, struct file *file) | |||
174 | } | 212 | } |
175 | 213 | ||
176 | static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf, | 214 | static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf, |
177 | size_t count, loff_t *ppos) | 215 | size_t count, loff_t *ppos) |
178 | { | 216 | { |
179 | ssize_t ret; | 217 | ssize_t ret; |
180 | struct snd_soc_codec *codec = file->private_data; | 218 | struct snd_soc_codec *codec = file->private_data; |
181 | char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL); | 219 | char *buf; |
220 | |||
221 | if (*ppos < 0 || !count) | ||
222 | return -EINVAL; | ||
223 | |||
224 | buf = kmalloc(count, GFP_KERNEL); | ||
182 | if (!buf) | 225 | if (!buf) |
183 | return -ENOMEM; | 226 | return -ENOMEM; |
184 | ret = soc_codec_reg_show(codec, buf); | 227 | |
185 | if (ret >= 0) | 228 | ret = soc_codec_reg_show(codec, buf, count, *ppos); |
186 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret); | 229 | if (ret >= 0) { |
230 | if (copy_to_user(user_buf, buf, ret)) { | ||
231 | kfree(buf); | ||
232 | return -EFAULT; | ||
233 | } | ||
234 | *ppos += ret; | ||
235 | } | ||
236 | |||
187 | kfree(buf); | 237 | kfree(buf); |
188 | return ret; | 238 | return ret; |
189 | } | 239 | } |
@@ -192,7 +242,7 @@ static ssize_t codec_reg_write_file(struct file *file, | |||
192 | const char __user *user_buf, size_t count, loff_t *ppos) | 242 | const char __user *user_buf, size_t count, loff_t *ppos) |
193 | { | 243 | { |
194 | char buf[32]; | 244 | char buf[32]; |
195 | int buf_size; | 245 | size_t buf_size; |
196 | char *start = buf; | 246 | char *start = buf; |
197 | unsigned long reg, value; | 247 | unsigned long reg, value; |
198 | int step = 1; | 248 | int step = 1; |
@@ -203,19 +253,21 @@ static ssize_t codec_reg_write_file(struct file *file, | |||
203 | return -EFAULT; | 253 | return -EFAULT; |
204 | buf[buf_size] = 0; | 254 | buf[buf_size] = 0; |
205 | 255 | ||
206 | if (codec->reg_cache_step) | 256 | if (codec->driver->reg_cache_step) |
207 | step = codec->reg_cache_step; | 257 | step = codec->driver->reg_cache_step; |
208 | 258 | ||
209 | while (*start == ' ') | 259 | while (*start == ' ') |
210 | start++; | 260 | start++; |
211 | reg = simple_strtoul(start, &start, 16); | 261 | reg = simple_strtoul(start, &start, 16); |
212 | if ((reg >= codec->reg_cache_size) || (reg % step)) | ||
213 | return -EINVAL; | ||
214 | while (*start == ' ') | 262 | while (*start == ' ') |
215 | start++; | 263 | start++; |
216 | if (strict_strtoul(start, 16, &value)) | 264 | if (strict_strtoul(start, 16, &value)) |
217 | return -EINVAL; | 265 | return -EINVAL; |
218 | codec->write(codec, reg, value); | 266 | |
267 | /* Userspace has been fiddling around behind the kernel's back */ | ||
268 | add_taint(TAINT_USER); | ||
269 | |||
270 | snd_soc_write(codec, reg, value); | ||
219 | return buf_size; | 271 | return buf_size; |
220 | } | 272 | } |
221 | 273 | ||
@@ -223,27 +275,26 @@ static const struct file_operations codec_reg_fops = { | |||
223 | .open = codec_reg_open_file, | 275 | .open = codec_reg_open_file, |
224 | .read = codec_reg_read_file, | 276 | .read = codec_reg_read_file, |
225 | .write = codec_reg_write_file, | 277 | .write = codec_reg_write_file, |
278 | .llseek = default_llseek, | ||
226 | }; | 279 | }; |
227 | 280 | ||
228 | static void soc_init_codec_debugfs(struct snd_soc_codec *codec) | 281 | static void soc_init_codec_debugfs(struct snd_soc_codec *codec) |
229 | { | 282 | { |
230 | char codec_root[128]; | 283 | struct dentry *debugfs_card_root = codec->card->debugfs_card_root; |
231 | 284 | ||
232 | if (codec->dev) | 285 | codec->debugfs_codec_root = debugfs_create_dir(codec->name, |
233 | snprintf(codec_root, sizeof(codec_root), | 286 | debugfs_card_root); |
234 | "%s.%s", codec->name, dev_name(codec->dev)); | ||
235 | else | ||
236 | snprintf(codec_root, sizeof(codec_root), | ||
237 | "%s", codec->name); | ||
238 | |||
239 | codec->debugfs_codec_root = debugfs_create_dir(codec_root, | ||
240 | debugfs_root); | ||
241 | if (!codec->debugfs_codec_root) { | 287 | if (!codec->debugfs_codec_root) { |
242 | printk(KERN_WARNING | 288 | printk(KERN_WARNING |
243 | "ASoC: Failed to create codec debugfs directory\n"); | 289 | "ASoC: Failed to create codec debugfs directory\n"); |
244 | return; | 290 | return; |
245 | } | 291 | } |
246 | 292 | ||
293 | debugfs_create_bool("cache_sync", 0444, codec->debugfs_codec_root, | ||
294 | &codec->cache_sync); | ||
295 | debugfs_create_bool("cache_only", 0444, codec->debugfs_codec_root, | ||
296 | &codec->cache_only); | ||
297 | |||
247 | codec->debugfs_reg = debugfs_create_file("codec_reg", 0644, | 298 | codec->debugfs_reg = debugfs_create_file("codec_reg", 0644, |
248 | codec->debugfs_codec_root, | 299 | codec->debugfs_codec_root, |
249 | codec, &codec_reg_fops); | 300 | codec, &codec_reg_fops); |
@@ -251,20 +302,7 @@ static void soc_init_codec_debugfs(struct snd_soc_codec *codec) | |||
251 | printk(KERN_WARNING | 302 | printk(KERN_WARNING |
252 | "ASoC: Failed to create codec register debugfs file\n"); | 303 | "ASoC: Failed to create codec register debugfs file\n"); |
253 | 304 | ||
254 | codec->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644, | 305 | snd_soc_dapm_debugfs_init(&codec->dapm, codec->debugfs_codec_root); |
255 | codec->debugfs_codec_root, | ||
256 | &codec->pop_time); | ||
257 | if (!codec->debugfs_pop_time) | ||
258 | printk(KERN_WARNING | ||
259 | "Failed to create pop time debugfs file\n"); | ||
260 | |||
261 | codec->debugfs_dapm = debugfs_create_dir("dapm", | ||
262 | codec->debugfs_codec_root); | ||
263 | if (!codec->debugfs_dapm) | ||
264 | printk(KERN_WARNING | ||
265 | "Failed to create DAPM debugfs directory\n"); | ||
266 | |||
267 | snd_soc_dapm_debugfs_init(codec); | ||
268 | } | 306 | } |
269 | 307 | ||
270 | static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec) | 308 | static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec) |
@@ -272,6 +310,129 @@ static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec) | |||
272 | debugfs_remove_recursive(codec->debugfs_codec_root); | 310 | debugfs_remove_recursive(codec->debugfs_codec_root); |
273 | } | 311 | } |
274 | 312 | ||
313 | static ssize_t codec_list_read_file(struct file *file, char __user *user_buf, | ||
314 | size_t count, loff_t *ppos) | ||
315 | { | ||
316 | char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL); | ||
317 | ssize_t len, ret = 0; | ||
318 | struct snd_soc_codec *codec; | ||
319 | |||
320 | if (!buf) | ||
321 | return -ENOMEM; | ||
322 | |||
323 | list_for_each_entry(codec, &codec_list, list) { | ||
324 | len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", | ||
325 | codec->name); | ||
326 | if (len >= 0) | ||
327 | ret += len; | ||
328 | if (ret > PAGE_SIZE) { | ||
329 | ret = PAGE_SIZE; | ||
330 | break; | ||
331 | } | ||
332 | } | ||
333 | |||
334 | if (ret >= 0) | ||
335 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret); | ||
336 | |||
337 | kfree(buf); | ||
338 | |||
339 | return ret; | ||
340 | } | ||
341 | |||
342 | static const struct file_operations codec_list_fops = { | ||
343 | .read = codec_list_read_file, | ||
344 | .llseek = default_llseek,/* read accesses f_pos */ | ||
345 | }; | ||
346 | |||
347 | static ssize_t dai_list_read_file(struct file *file, char __user *user_buf, | ||
348 | size_t count, loff_t *ppos) | ||
349 | { | ||
350 | char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL); | ||
351 | ssize_t len, ret = 0; | ||
352 | struct snd_soc_dai *dai; | ||
353 | |||
354 | if (!buf) | ||
355 | return -ENOMEM; | ||
356 | |||
357 | list_for_each_entry(dai, &dai_list, list) { | ||
358 | len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name); | ||
359 | if (len >= 0) | ||
360 | ret += len; | ||
361 | if (ret > PAGE_SIZE) { | ||
362 | ret = PAGE_SIZE; | ||
363 | break; | ||
364 | } | ||
365 | } | ||
366 | |||
367 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret); | ||
368 | |||
369 | kfree(buf); | ||
370 | |||
371 | return ret; | ||
372 | } | ||
373 | |||
374 | static const struct file_operations dai_list_fops = { | ||
375 | .read = dai_list_read_file, | ||
376 | .llseek = default_llseek,/* read accesses f_pos */ | ||
377 | }; | ||
378 | |||
379 | static ssize_t platform_list_read_file(struct file *file, | ||
380 | char __user *user_buf, | ||
381 | size_t count, loff_t *ppos) | ||
382 | { | ||
383 | char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL); | ||
384 | ssize_t len, ret = 0; | ||
385 | struct snd_soc_platform *platform; | ||
386 | |||
387 | if (!buf) | ||
388 | return -ENOMEM; | ||
389 | |||
390 | list_for_each_entry(platform, &platform_list, list) { | ||
391 | len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", | ||
392 | platform->name); | ||
393 | if (len >= 0) | ||
394 | ret += len; | ||
395 | if (ret > PAGE_SIZE) { | ||
396 | ret = PAGE_SIZE; | ||
397 | break; | ||
398 | } | ||
399 | } | ||
400 | |||
401 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret); | ||
402 | |||
403 | kfree(buf); | ||
404 | |||
405 | return ret; | ||
406 | } | ||
407 | |||
408 | static const struct file_operations platform_list_fops = { | ||
409 | .read = platform_list_read_file, | ||
410 | .llseek = default_llseek,/* read accesses f_pos */ | ||
411 | }; | ||
412 | |||
413 | static void soc_init_card_debugfs(struct snd_soc_card *card) | ||
414 | { | ||
415 | card->debugfs_card_root = debugfs_create_dir(card->name, | ||
416 | snd_soc_debugfs_root); | ||
417 | if (!card->debugfs_card_root) { | ||
418 | dev_warn(card->dev, | ||
419 | "ASoC: Failed to create codec debugfs directory\n"); | ||
420 | return; | ||
421 | } | ||
422 | |||
423 | card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644, | ||
424 | card->debugfs_card_root, | ||
425 | &card->pop_time); | ||
426 | if (!card->debugfs_pop_time) | ||
427 | dev_warn(card->dev, | ||
428 | "Failed to create pop time debugfs file\n"); | ||
429 | } | ||
430 | |||
431 | static void soc_cleanup_card_debugfs(struct snd_soc_card *card) | ||
432 | { | ||
433 | debugfs_remove_recursive(card->debugfs_card_root); | ||
434 | } | ||
435 | |||
275 | #else | 436 | #else |
276 | 437 | ||
277 | static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec) | 438 | static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec) |
@@ -281,6 +442,14 @@ static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec) | |||
281 | static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec) | 442 | static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec) |
282 | { | 443 | { |
283 | } | 444 | } |
445 | |||
446 | static inline void soc_init_card_debugfs(struct snd_soc_card *card) | ||
447 | { | ||
448 | } | ||
449 | |||
450 | static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card) | ||
451 | { | ||
452 | } | ||
284 | #endif | 453 | #endif |
285 | 454 | ||
286 | #ifdef CONFIG_SND_SOC_AC97_BUS | 455 | #ifdef CONFIG_SND_SOC_AC97_BUS |
@@ -305,7 +474,7 @@ static int soc_ac97_dev_register(struct snd_soc_codec *codec) | |||
305 | codec->ac97->dev.release = soc_ac97_device_release; | 474 | codec->ac97->dev.release = soc_ac97_device_release; |
306 | 475 | ||
307 | dev_set_name(&codec->ac97->dev, "%d-%d:%s", | 476 | dev_set_name(&codec->ac97->dev, "%d-%d:%s", |
308 | codec->card->number, 0, codec->name); | 477 | codec->card->snd_card->number, 0, codec->name); |
309 | err = device_register(&codec->ac97->dev); | 478 | err = device_register(&codec->ac97->dev); |
310 | if (err < 0) { | 479 | if (err < 0) { |
311 | snd_printk(KERN_ERR "Can't register ac97 bus\n"); | 480 | snd_printk(KERN_ERR "Can't register ac97 bus\n"); |
@@ -319,27 +488,34 @@ static int soc_ac97_dev_register(struct snd_soc_codec *codec) | |||
319 | static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream) | 488 | static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream) |
320 | { | 489 | { |
321 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 490 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
322 | struct snd_soc_device *socdev = rtd->socdev; | 491 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
323 | struct snd_soc_card *card = socdev->card; | 492 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
324 | struct snd_soc_dai_link *machine = rtd->dai; | ||
325 | struct snd_soc_dai *cpu_dai = machine->cpu_dai; | ||
326 | struct snd_soc_dai *codec_dai = machine->codec_dai; | ||
327 | int ret; | 493 | int ret; |
328 | 494 | ||
329 | if (codec_dai->symmetric_rates || cpu_dai->symmetric_rates || | 495 | if (!codec_dai->driver->symmetric_rates && |
330 | machine->symmetric_rates) { | 496 | !cpu_dai->driver->symmetric_rates && |
331 | dev_dbg(card->dev, "Symmetry forces %dHz rate\n", | 497 | !rtd->dai_link->symmetric_rates) |
332 | machine->rate); | 498 | return 0; |
333 | 499 | ||
334 | ret = snd_pcm_hw_constraint_minmax(substream->runtime, | 500 | /* This can happen if multiple streams are starting simultaneously - |
335 | SNDRV_PCM_HW_PARAM_RATE, | 501 | * the second can need to get its constraints before the first has |
336 | machine->rate, | 502 | * picked a rate. Complain and allow the application to carry on. |
337 | machine->rate); | 503 | */ |
338 | if (ret < 0) { | 504 | if (!rtd->rate) { |
339 | dev_err(card->dev, | 505 | dev_warn(&rtd->dev, |
340 | "Unable to apply rate symmetry constraint: %d\n", ret); | 506 | "Not enforcing symmetric_rates due to race\n"); |
341 | return ret; | 507 | return 0; |
342 | } | 508 | } |
509 | |||
510 | dev_dbg(&rtd->dev, "Symmetry forces %dHz rate\n", rtd->rate); | ||
511 | |||
512 | ret = snd_pcm_hw_constraint_minmax(substream->runtime, | ||
513 | SNDRV_PCM_HW_PARAM_RATE, | ||
514 | rtd->rate, rtd->rate); | ||
515 | if (ret < 0) { | ||
516 | dev_err(&rtd->dev, | ||
517 | "Unable to apply rate symmetry constraint: %d\n", ret); | ||
518 | return ret; | ||
343 | } | 519 | } |
344 | 520 | ||
345 | return 0; | 521 | return 0; |
@@ -353,20 +529,19 @@ static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream) | |||
353 | static int soc_pcm_open(struct snd_pcm_substream *substream) | 529 | static int soc_pcm_open(struct snd_pcm_substream *substream) |
354 | { | 530 | { |
355 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 531 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
356 | struct snd_soc_device *socdev = rtd->socdev; | ||
357 | struct snd_soc_card *card = socdev->card; | ||
358 | struct snd_pcm_runtime *runtime = substream->runtime; | 532 | struct snd_pcm_runtime *runtime = substream->runtime; |
359 | struct snd_soc_dai_link *machine = rtd->dai; | 533 | struct snd_soc_platform *platform = rtd->platform; |
360 | struct snd_soc_platform *platform = card->platform; | 534 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
361 | struct snd_soc_dai *cpu_dai = machine->cpu_dai; | 535 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
362 | struct snd_soc_dai *codec_dai = machine->codec_dai; | 536 | struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver; |
537 | struct snd_soc_dai_driver *codec_dai_drv = codec_dai->driver; | ||
363 | int ret = 0; | 538 | int ret = 0; |
364 | 539 | ||
365 | mutex_lock(&pcm_mutex); | 540 | mutex_lock(&pcm_mutex); |
366 | 541 | ||
367 | /* startup the audio subsystem */ | 542 | /* startup the audio subsystem */ |
368 | if (cpu_dai->ops->startup) { | 543 | if (cpu_dai->driver->ops->startup) { |
369 | ret = cpu_dai->ops->startup(substream, cpu_dai); | 544 | ret = cpu_dai->driver->ops->startup(substream, cpu_dai); |
370 | if (ret < 0) { | 545 | if (ret < 0) { |
371 | printk(KERN_ERR "asoc: can't open interface %s\n", | 546 | printk(KERN_ERR "asoc: can't open interface %s\n", |
372 | cpu_dai->name); | 547 | cpu_dai->name); |
@@ -374,16 +549,16 @@ static int soc_pcm_open(struct snd_pcm_substream *substream) | |||
374 | } | 549 | } |
375 | } | 550 | } |
376 | 551 | ||
377 | if (platform->pcm_ops->open) { | 552 | if (platform->driver->ops && platform->driver->ops->open) { |
378 | ret = platform->pcm_ops->open(substream); | 553 | ret = platform->driver->ops->open(substream); |
379 | if (ret < 0) { | 554 | if (ret < 0) { |
380 | printk(KERN_ERR "asoc: can't open platform %s\n", platform->name); | 555 | printk(KERN_ERR "asoc: can't open platform %s\n", platform->name); |
381 | goto platform_err; | 556 | goto platform_err; |
382 | } | 557 | } |
383 | } | 558 | } |
384 | 559 | ||
385 | if (codec_dai->ops->startup) { | 560 | if (codec_dai->driver->ops->startup) { |
386 | ret = codec_dai->ops->startup(substream, codec_dai); | 561 | ret = codec_dai->driver->ops->startup(substream, codec_dai); |
387 | if (ret < 0) { | 562 | if (ret < 0) { |
388 | printk(KERN_ERR "asoc: can't open codec %s\n", | 563 | printk(KERN_ERR "asoc: can't open codec %s\n", |
389 | codec_dai->name); | 564 | codec_dai->name); |
@@ -391,63 +566,64 @@ static int soc_pcm_open(struct snd_pcm_substream *substream) | |||
391 | } | 566 | } |
392 | } | 567 | } |
393 | 568 | ||
394 | if (machine->ops && machine->ops->startup) { | 569 | if (rtd->dai_link->ops && rtd->dai_link->ops->startup) { |
395 | ret = machine->ops->startup(substream); | 570 | ret = rtd->dai_link->ops->startup(substream); |
396 | if (ret < 0) { | 571 | if (ret < 0) { |
397 | printk(KERN_ERR "asoc: %s startup failed\n", machine->name); | 572 | printk(KERN_ERR "asoc: %s startup failed\n", rtd->dai_link->name); |
398 | goto machine_err; | 573 | goto machine_err; |
399 | } | 574 | } |
400 | } | 575 | } |
401 | 576 | ||
402 | /* Check that the codec and cpu DAI's are compatible */ | 577 | /* Check that the codec and cpu DAIs are compatible */ |
403 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { | 578 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
404 | runtime->hw.rate_min = | 579 | runtime->hw.rate_min = |
405 | max(codec_dai->playback.rate_min, | 580 | max(codec_dai_drv->playback.rate_min, |
406 | cpu_dai->playback.rate_min); | 581 | cpu_dai_drv->playback.rate_min); |
407 | runtime->hw.rate_max = | 582 | runtime->hw.rate_max = |
408 | min(codec_dai->playback.rate_max, | 583 | min(codec_dai_drv->playback.rate_max, |
409 | cpu_dai->playback.rate_max); | 584 | cpu_dai_drv->playback.rate_max); |
410 | runtime->hw.channels_min = | 585 | runtime->hw.channels_min = |
411 | max(codec_dai->playback.channels_min, | 586 | max(codec_dai_drv->playback.channels_min, |
412 | cpu_dai->playback.channels_min); | 587 | cpu_dai_drv->playback.channels_min); |
413 | runtime->hw.channels_max = | 588 | runtime->hw.channels_max = |
414 | min(codec_dai->playback.channels_max, | 589 | min(codec_dai_drv->playback.channels_max, |
415 | cpu_dai->playback.channels_max); | 590 | cpu_dai_drv->playback.channels_max); |
416 | runtime->hw.formats = | 591 | runtime->hw.formats = |
417 | codec_dai->playback.formats & cpu_dai->playback.formats; | 592 | codec_dai_drv->playback.formats & cpu_dai_drv->playback.formats; |
418 | runtime->hw.rates = | 593 | runtime->hw.rates = |
419 | codec_dai->playback.rates & cpu_dai->playback.rates; | 594 | codec_dai_drv->playback.rates & cpu_dai_drv->playback.rates; |
420 | if (codec_dai->playback.rates | 595 | if (codec_dai_drv->playback.rates |
421 | & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS)) | 596 | & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS)) |
422 | runtime->hw.rates |= cpu_dai->playback.rates; | 597 | runtime->hw.rates |= cpu_dai_drv->playback.rates; |
423 | if (cpu_dai->playback.rates | 598 | if (cpu_dai_drv->playback.rates |
424 | & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS)) | 599 | & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS)) |
425 | runtime->hw.rates |= codec_dai->playback.rates; | 600 | runtime->hw.rates |= codec_dai_drv->playback.rates; |
426 | } else { | 601 | } else { |
427 | runtime->hw.rate_min = | 602 | runtime->hw.rate_min = |
428 | max(codec_dai->capture.rate_min, | 603 | max(codec_dai_drv->capture.rate_min, |
429 | cpu_dai->capture.rate_min); | 604 | cpu_dai_drv->capture.rate_min); |
430 | runtime->hw.rate_max = | 605 | runtime->hw.rate_max = |
431 | min(codec_dai->capture.rate_max, | 606 | min(codec_dai_drv->capture.rate_max, |
432 | cpu_dai->capture.rate_max); | 607 | cpu_dai_drv->capture.rate_max); |
433 | runtime->hw.channels_min = | 608 | runtime->hw.channels_min = |
434 | max(codec_dai->capture.channels_min, | 609 | max(codec_dai_drv->capture.channels_min, |
435 | cpu_dai->capture.channels_min); | 610 | cpu_dai_drv->capture.channels_min); |
436 | runtime->hw.channels_max = | 611 | runtime->hw.channels_max = |
437 | min(codec_dai->capture.channels_max, | 612 | min(codec_dai_drv->capture.channels_max, |
438 | cpu_dai->capture.channels_max); | 613 | cpu_dai_drv->capture.channels_max); |
439 | runtime->hw.formats = | 614 | runtime->hw.formats = |
440 | codec_dai->capture.formats & cpu_dai->capture.formats; | 615 | codec_dai_drv->capture.formats & cpu_dai_drv->capture.formats; |
441 | runtime->hw.rates = | 616 | runtime->hw.rates = |
442 | codec_dai->capture.rates & cpu_dai->capture.rates; | 617 | codec_dai_drv->capture.rates & cpu_dai_drv->capture.rates; |
443 | if (codec_dai->capture.rates | 618 | if (codec_dai_drv->capture.rates |
444 | & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS)) | 619 | & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS)) |
445 | runtime->hw.rates |= cpu_dai->capture.rates; | 620 | runtime->hw.rates |= cpu_dai_drv->capture.rates; |
446 | if (cpu_dai->capture.rates | 621 | if (cpu_dai_drv->capture.rates |
447 | & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS)) | 622 | & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS)) |
448 | runtime->hw.rates |= codec_dai->capture.rates; | 623 | runtime->hw.rates |= codec_dai_drv->capture.rates; |
449 | } | 624 | } |
450 | 625 | ||
626 | ret = -EINVAL; | ||
451 | snd_pcm_limit_hw_rates(runtime); | 627 | snd_pcm_limit_hw_rates(runtime); |
452 | if (!runtime->hw.rates) { | 628 | if (!runtime->hw.rates) { |
453 | printk(KERN_ERR "asoc: %s <-> %s No matching rates\n", | 629 | printk(KERN_ERR "asoc: %s <-> %s No matching rates\n", |
@@ -459,9 +635,10 @@ static int soc_pcm_open(struct snd_pcm_substream *substream) | |||
459 | codec_dai->name, cpu_dai->name); | 635 | codec_dai->name, cpu_dai->name); |
460 | goto config_err; | 636 | goto config_err; |
461 | } | 637 | } |
462 | if (!runtime->hw.channels_min || !runtime->hw.channels_max) { | 638 | if (!runtime->hw.channels_min || !runtime->hw.channels_max || |
639 | runtime->hw.channels_min > runtime->hw.channels_max) { | ||
463 | printk(KERN_ERR "asoc: %s <-> %s No matching channels\n", | 640 | printk(KERN_ERR "asoc: %s <-> %s No matching channels\n", |
464 | codec_dai->name, cpu_dai->name); | 641 | codec_dai->name, cpu_dai->name); |
465 | goto config_err; | 642 | goto config_err; |
466 | } | 643 | } |
467 | 644 | ||
@@ -472,7 +649,8 @@ static int soc_pcm_open(struct snd_pcm_substream *substream) | |||
472 | goto config_err; | 649 | goto config_err; |
473 | } | 650 | } |
474 | 651 | ||
475 | pr_debug("asoc: %s <-> %s info:\n", codec_dai->name, cpu_dai->name); | 652 | pr_debug("asoc: %s <-> %s info:\n", |
653 | codec_dai->name, cpu_dai->name); | ||
476 | pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates); | 654 | pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates); |
477 | pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min, | 655 | pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min, |
478 | runtime->hw.channels_max); | 656 | runtime->hw.channels_max); |
@@ -480,33 +658,33 @@ static int soc_pcm_open(struct snd_pcm_substream *substream) | |||
480 | runtime->hw.rate_max); | 658 | runtime->hw.rate_max); |
481 | 659 | ||
482 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { | 660 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
483 | cpu_dai->playback.active++; | 661 | cpu_dai->playback_active++; |
484 | codec_dai->playback.active++; | 662 | codec_dai->playback_active++; |
485 | } else { | 663 | } else { |
486 | cpu_dai->capture.active++; | 664 | cpu_dai->capture_active++; |
487 | codec_dai->capture.active++; | 665 | codec_dai->capture_active++; |
488 | } | 666 | } |
489 | cpu_dai->active++; | 667 | cpu_dai->active++; |
490 | codec_dai->active++; | 668 | codec_dai->active++; |
491 | card->codec->active++; | 669 | rtd->codec->active++; |
492 | mutex_unlock(&pcm_mutex); | 670 | mutex_unlock(&pcm_mutex); |
493 | return 0; | 671 | return 0; |
494 | 672 | ||
495 | config_err: | 673 | config_err: |
496 | if (machine->ops && machine->ops->shutdown) | 674 | if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown) |
497 | machine->ops->shutdown(substream); | 675 | rtd->dai_link->ops->shutdown(substream); |
498 | 676 | ||
499 | machine_err: | 677 | machine_err: |
500 | if (codec_dai->ops->shutdown) | 678 | if (codec_dai->driver->ops->shutdown) |
501 | codec_dai->ops->shutdown(substream, codec_dai); | 679 | codec_dai->driver->ops->shutdown(substream, codec_dai); |
502 | 680 | ||
503 | codec_dai_err: | 681 | codec_dai_err: |
504 | if (platform->pcm_ops->close) | 682 | if (platform->driver->ops && platform->driver->ops->close) |
505 | platform->pcm_ops->close(substream); | 683 | platform->driver->ops->close(substream); |
506 | 684 | ||
507 | platform_err: | 685 | platform_err: |
508 | if (cpu_dai->ops->shutdown) | 686 | if (cpu_dai->driver->ops->shutdown) |
509 | cpu_dai->ops->shutdown(substream, cpu_dai); | 687 | cpu_dai->driver->ops->shutdown(substream, cpu_dai); |
510 | out: | 688 | out: |
511 | mutex_unlock(&pcm_mutex); | 689 | mutex_unlock(&pcm_mutex); |
512 | return ret; | 690 | return ret; |
@@ -519,29 +697,25 @@ out: | |||
519 | */ | 697 | */ |
520 | static void close_delayed_work(struct work_struct *work) | 698 | static void close_delayed_work(struct work_struct *work) |
521 | { | 699 | { |
522 | struct snd_soc_card *card = container_of(work, struct snd_soc_card, | 700 | struct snd_soc_pcm_runtime *rtd = |
523 | delayed_work.work); | 701 | container_of(work, struct snd_soc_pcm_runtime, delayed_work.work); |
524 | struct snd_soc_codec *codec = card->codec; | 702 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
525 | struct snd_soc_dai *codec_dai; | ||
526 | int i; | ||
527 | 703 | ||
528 | mutex_lock(&pcm_mutex); | 704 | mutex_lock(&pcm_mutex); |
529 | for (i = 0; i < codec->num_dai; i++) { | 705 | |
530 | codec_dai = &codec->dai[i]; | 706 | pr_debug("pop wq checking: %s status: %s waiting: %s\n", |
531 | 707 | codec_dai->driver->playback.stream_name, | |
532 | pr_debug("pop wq checking: %s status: %s waiting: %s\n", | 708 | codec_dai->playback_active ? "active" : "inactive", |
533 | codec_dai->playback.stream_name, | 709 | codec_dai->pop_wait ? "yes" : "no"); |
534 | codec_dai->playback.active ? "active" : "inactive", | 710 | |
535 | codec_dai->pop_wait ? "yes" : "no"); | 711 | /* are we waiting on this codec DAI stream */ |
536 | 712 | if (codec_dai->pop_wait == 1) { | |
537 | /* are we waiting on this codec DAI stream */ | 713 | codec_dai->pop_wait = 0; |
538 | if (codec_dai->pop_wait == 1) { | 714 | snd_soc_dapm_stream_event(rtd, |
539 | codec_dai->pop_wait = 0; | 715 | codec_dai->driver->playback.stream_name, |
540 | snd_soc_dapm_stream_event(codec, | 716 | SND_SOC_DAPM_STREAM_STOP); |
541 | codec_dai->playback.stream_name, | ||
542 | SND_SOC_DAPM_STREAM_STOP); | ||
543 | } | ||
544 | } | 717 | } |
718 | |||
545 | mutex_unlock(&pcm_mutex); | 719 | mutex_unlock(&pcm_mutex); |
546 | } | 720 | } |
547 | 721 | ||
@@ -553,22 +727,19 @@ static void close_delayed_work(struct work_struct *work) | |||
553 | static int soc_codec_close(struct snd_pcm_substream *substream) | 727 | static int soc_codec_close(struct snd_pcm_substream *substream) |
554 | { | 728 | { |
555 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 729 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
556 | struct snd_soc_device *socdev = rtd->socdev; | 730 | struct snd_soc_platform *platform = rtd->platform; |
557 | struct snd_soc_card *card = socdev->card; | 731 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
558 | struct snd_soc_dai_link *machine = rtd->dai; | 732 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
559 | struct snd_soc_platform *platform = card->platform; | 733 | struct snd_soc_codec *codec = rtd->codec; |
560 | struct snd_soc_dai *cpu_dai = machine->cpu_dai; | ||
561 | struct snd_soc_dai *codec_dai = machine->codec_dai; | ||
562 | struct snd_soc_codec *codec = card->codec; | ||
563 | 734 | ||
564 | mutex_lock(&pcm_mutex); | 735 | mutex_lock(&pcm_mutex); |
565 | 736 | ||
566 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { | 737 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
567 | cpu_dai->playback.active--; | 738 | cpu_dai->playback_active--; |
568 | codec_dai->playback.active--; | 739 | codec_dai->playback_active--; |
569 | } else { | 740 | } else { |
570 | cpu_dai->capture.active--; | 741 | cpu_dai->capture_active--; |
571 | codec_dai->capture.active--; | 742 | codec_dai->capture_active--; |
572 | } | 743 | } |
573 | 744 | ||
574 | cpu_dai->active--; | 745 | cpu_dai->active--; |
@@ -581,27 +752,28 @@ static int soc_codec_close(struct snd_pcm_substream *substream) | |||
581 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) | 752 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
582 | snd_soc_dai_digital_mute(codec_dai, 1); | 753 | snd_soc_dai_digital_mute(codec_dai, 1); |
583 | 754 | ||
584 | if (cpu_dai->ops->shutdown) | 755 | if (cpu_dai->driver->ops->shutdown) |
585 | cpu_dai->ops->shutdown(substream, cpu_dai); | 756 | cpu_dai->driver->ops->shutdown(substream, cpu_dai); |
586 | 757 | ||
587 | if (codec_dai->ops->shutdown) | 758 | if (codec_dai->driver->ops->shutdown) |
588 | codec_dai->ops->shutdown(substream, codec_dai); | 759 | codec_dai->driver->ops->shutdown(substream, codec_dai); |
589 | 760 | ||
590 | if (machine->ops && machine->ops->shutdown) | 761 | if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown) |
591 | machine->ops->shutdown(substream); | 762 | rtd->dai_link->ops->shutdown(substream); |
592 | 763 | ||
593 | if (platform->pcm_ops->close) | 764 | if (platform->driver->ops && platform->driver->ops->close) |
594 | platform->pcm_ops->close(substream); | 765 | platform->driver->ops->close(substream); |
766 | cpu_dai->runtime = NULL; | ||
595 | 767 | ||
596 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { | 768 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
597 | /* start delayed pop wq here for playback streams */ | 769 | /* start delayed pop wq here for playback streams */ |
598 | codec_dai->pop_wait = 1; | 770 | codec_dai->pop_wait = 1; |
599 | schedule_delayed_work(&card->delayed_work, | 771 | schedule_delayed_work(&rtd->delayed_work, |
600 | msecs_to_jiffies(card->pmdown_time)); | 772 | msecs_to_jiffies(rtd->pmdown_time)); |
601 | } else { | 773 | } else { |
602 | /* capture streams can be powered down now */ | 774 | /* capture streams can be powered down now */ |
603 | snd_soc_dapm_stream_event(codec, | 775 | snd_soc_dapm_stream_event(rtd, |
604 | codec_dai->capture.stream_name, | 776 | codec_dai->driver->capture.stream_name, |
605 | SND_SOC_DAPM_STREAM_STOP); | 777 | SND_SOC_DAPM_STREAM_STOP); |
606 | } | 778 | } |
607 | 779 | ||
@@ -617,43 +789,39 @@ static int soc_codec_close(struct snd_pcm_substream *substream) | |||
617 | static int soc_pcm_prepare(struct snd_pcm_substream *substream) | 789 | static int soc_pcm_prepare(struct snd_pcm_substream *substream) |
618 | { | 790 | { |
619 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 791 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
620 | struct snd_soc_device *socdev = rtd->socdev; | 792 | struct snd_soc_platform *platform = rtd->platform; |
621 | struct snd_soc_card *card = socdev->card; | 793 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
622 | struct snd_soc_dai_link *machine = rtd->dai; | 794 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
623 | struct snd_soc_platform *platform = card->platform; | ||
624 | struct snd_soc_dai *cpu_dai = machine->cpu_dai; | ||
625 | struct snd_soc_dai *codec_dai = machine->codec_dai; | ||
626 | struct snd_soc_codec *codec = card->codec; | ||
627 | int ret = 0; | 795 | int ret = 0; |
628 | 796 | ||
629 | mutex_lock(&pcm_mutex); | 797 | mutex_lock(&pcm_mutex); |
630 | 798 | ||
631 | if (machine->ops && machine->ops->prepare) { | 799 | if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) { |
632 | ret = machine->ops->prepare(substream); | 800 | ret = rtd->dai_link->ops->prepare(substream); |
633 | if (ret < 0) { | 801 | if (ret < 0) { |
634 | printk(KERN_ERR "asoc: machine prepare error\n"); | 802 | printk(KERN_ERR "asoc: machine prepare error\n"); |
635 | goto out; | 803 | goto out; |
636 | } | 804 | } |
637 | } | 805 | } |
638 | 806 | ||
639 | if (platform->pcm_ops->prepare) { | 807 | if (platform->driver->ops && platform->driver->ops->prepare) { |
640 | ret = platform->pcm_ops->prepare(substream); | 808 | ret = platform->driver->ops->prepare(substream); |
641 | if (ret < 0) { | 809 | if (ret < 0) { |
642 | printk(KERN_ERR "asoc: platform prepare error\n"); | 810 | printk(KERN_ERR "asoc: platform prepare error\n"); |
643 | goto out; | 811 | goto out; |
644 | } | 812 | } |
645 | } | 813 | } |
646 | 814 | ||
647 | if (codec_dai->ops->prepare) { | 815 | if (codec_dai->driver->ops->prepare) { |
648 | ret = codec_dai->ops->prepare(substream, codec_dai); | 816 | ret = codec_dai->driver->ops->prepare(substream, codec_dai); |
649 | if (ret < 0) { | 817 | if (ret < 0) { |
650 | printk(KERN_ERR "asoc: codec DAI prepare error\n"); | 818 | printk(KERN_ERR "asoc: codec DAI prepare error\n"); |
651 | goto out; | 819 | goto out; |
652 | } | 820 | } |
653 | } | 821 | } |
654 | 822 | ||
655 | if (cpu_dai->ops->prepare) { | 823 | if (cpu_dai->driver->ops->prepare) { |
656 | ret = cpu_dai->ops->prepare(substream, cpu_dai); | 824 | ret = cpu_dai->driver->ops->prepare(substream, cpu_dai); |
657 | if (ret < 0) { | 825 | if (ret < 0) { |
658 | printk(KERN_ERR "asoc: cpu DAI prepare error\n"); | 826 | printk(KERN_ERR "asoc: cpu DAI prepare error\n"); |
659 | goto out; | 827 | goto out; |
@@ -664,16 +832,16 @@ static int soc_pcm_prepare(struct snd_pcm_substream *substream) | |||
664 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK && | 832 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK && |
665 | codec_dai->pop_wait) { | 833 | codec_dai->pop_wait) { |
666 | codec_dai->pop_wait = 0; | 834 | codec_dai->pop_wait = 0; |
667 | cancel_delayed_work(&card->delayed_work); | 835 | cancel_delayed_work(&rtd->delayed_work); |
668 | } | 836 | } |
669 | 837 | ||
670 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) | 838 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
671 | snd_soc_dapm_stream_event(codec, | 839 | snd_soc_dapm_stream_event(rtd, |
672 | codec_dai->playback.stream_name, | 840 | codec_dai->driver->playback.stream_name, |
673 | SND_SOC_DAPM_STREAM_START); | 841 | SND_SOC_DAPM_STREAM_START); |
674 | else | 842 | else |
675 | snd_soc_dapm_stream_event(codec, | 843 | snd_soc_dapm_stream_event(rtd, |
676 | codec_dai->capture.stream_name, | 844 | codec_dai->driver->capture.stream_name, |
677 | SND_SOC_DAPM_STREAM_START); | 845 | SND_SOC_DAPM_STREAM_START); |
678 | 846 | ||
679 | snd_soc_dai_digital_mute(codec_dai, 0); | 847 | snd_soc_dai_digital_mute(codec_dai, 0); |
@@ -692,26 +860,23 @@ static int soc_pcm_hw_params(struct snd_pcm_substream *substream, | |||
692 | struct snd_pcm_hw_params *params) | 860 | struct snd_pcm_hw_params *params) |
693 | { | 861 | { |
694 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 862 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
695 | struct snd_soc_device *socdev = rtd->socdev; | 863 | struct snd_soc_platform *platform = rtd->platform; |
696 | struct snd_soc_dai_link *machine = rtd->dai; | 864 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
697 | struct snd_soc_card *card = socdev->card; | 865 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
698 | struct snd_soc_platform *platform = card->platform; | ||
699 | struct snd_soc_dai *cpu_dai = machine->cpu_dai; | ||
700 | struct snd_soc_dai *codec_dai = machine->codec_dai; | ||
701 | int ret = 0; | 866 | int ret = 0; |
702 | 867 | ||
703 | mutex_lock(&pcm_mutex); | 868 | mutex_lock(&pcm_mutex); |
704 | 869 | ||
705 | if (machine->ops && machine->ops->hw_params) { | 870 | if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) { |
706 | ret = machine->ops->hw_params(substream, params); | 871 | ret = rtd->dai_link->ops->hw_params(substream, params); |
707 | if (ret < 0) { | 872 | if (ret < 0) { |
708 | printk(KERN_ERR "asoc: machine hw_params failed\n"); | 873 | printk(KERN_ERR "asoc: machine hw_params failed\n"); |
709 | goto out; | 874 | goto out; |
710 | } | 875 | } |
711 | } | 876 | } |
712 | 877 | ||
713 | if (codec_dai->ops->hw_params) { | 878 | if (codec_dai->driver->ops->hw_params) { |
714 | ret = codec_dai->ops->hw_params(substream, params, codec_dai); | 879 | ret = codec_dai->driver->ops->hw_params(substream, params, codec_dai); |
715 | if (ret < 0) { | 880 | if (ret < 0) { |
716 | printk(KERN_ERR "asoc: can't set codec %s hw params\n", | 881 | printk(KERN_ERR "asoc: can't set codec %s hw params\n", |
717 | codec_dai->name); | 882 | codec_dai->name); |
@@ -719,8 +884,8 @@ static int soc_pcm_hw_params(struct snd_pcm_substream *substream, | |||
719 | } | 884 | } |
720 | } | 885 | } |
721 | 886 | ||
722 | if (cpu_dai->ops->hw_params) { | 887 | if (cpu_dai->driver->ops->hw_params) { |
723 | ret = cpu_dai->ops->hw_params(substream, params, cpu_dai); | 888 | ret = cpu_dai->driver->ops->hw_params(substream, params, cpu_dai); |
724 | if (ret < 0) { | 889 | if (ret < 0) { |
725 | printk(KERN_ERR "asoc: interface %s hw params failed\n", | 890 | printk(KERN_ERR "asoc: interface %s hw params failed\n", |
726 | cpu_dai->name); | 891 | cpu_dai->name); |
@@ -728,8 +893,8 @@ static int soc_pcm_hw_params(struct snd_pcm_substream *substream, | |||
728 | } | 893 | } |
729 | } | 894 | } |
730 | 895 | ||
731 | if (platform->pcm_ops->hw_params) { | 896 | if (platform->driver->ops && platform->driver->ops->hw_params) { |
732 | ret = platform->pcm_ops->hw_params(substream, params); | 897 | ret = platform->driver->ops->hw_params(substream, params); |
733 | if (ret < 0) { | 898 | if (ret < 0) { |
734 | printk(KERN_ERR "asoc: platform %s hw params failed\n", | 899 | printk(KERN_ERR "asoc: platform %s hw params failed\n", |
735 | platform->name); | 900 | platform->name); |
@@ -737,41 +902,38 @@ static int soc_pcm_hw_params(struct snd_pcm_substream *substream, | |||
737 | } | 902 | } |
738 | } | 903 | } |
739 | 904 | ||
740 | machine->rate = params_rate(params); | 905 | rtd->rate = params_rate(params); |
741 | 906 | ||
742 | out: | 907 | out: |
743 | mutex_unlock(&pcm_mutex); | 908 | mutex_unlock(&pcm_mutex); |
744 | return ret; | 909 | return ret; |
745 | 910 | ||
746 | platform_err: | 911 | platform_err: |
747 | if (cpu_dai->ops->hw_free) | 912 | if (cpu_dai->driver->ops->hw_free) |
748 | cpu_dai->ops->hw_free(substream, cpu_dai); | 913 | cpu_dai->driver->ops->hw_free(substream, cpu_dai); |
749 | 914 | ||
750 | interface_err: | 915 | interface_err: |
751 | if (codec_dai->ops->hw_free) | 916 | if (codec_dai->driver->ops->hw_free) |
752 | codec_dai->ops->hw_free(substream, codec_dai); | 917 | codec_dai->driver->ops->hw_free(substream, codec_dai); |
753 | 918 | ||
754 | codec_err: | 919 | codec_err: |
755 | if (machine->ops && machine->ops->hw_free) | 920 | if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free) |
756 | machine->ops->hw_free(substream); | 921 | rtd->dai_link->ops->hw_free(substream); |
757 | 922 | ||
758 | mutex_unlock(&pcm_mutex); | 923 | mutex_unlock(&pcm_mutex); |
759 | return ret; | 924 | return ret; |
760 | } | 925 | } |
761 | 926 | ||
762 | /* | 927 | /* |
763 | * Free's resources allocated by hw_params, can be called multiple times | 928 | * Frees resources allocated by hw_params, can be called multiple times |
764 | */ | 929 | */ |
765 | static int soc_pcm_hw_free(struct snd_pcm_substream *substream) | 930 | static int soc_pcm_hw_free(struct snd_pcm_substream *substream) |
766 | { | 931 | { |
767 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 932 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
768 | struct snd_soc_device *socdev = rtd->socdev; | 933 | struct snd_soc_platform *platform = rtd->platform; |
769 | struct snd_soc_dai_link *machine = rtd->dai; | 934 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
770 | struct snd_soc_card *card = socdev->card; | 935 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
771 | struct snd_soc_platform *platform = card->platform; | 936 | struct snd_soc_codec *codec = rtd->codec; |
772 | struct snd_soc_dai *cpu_dai = machine->cpu_dai; | ||
773 | struct snd_soc_dai *codec_dai = machine->codec_dai; | ||
774 | struct snd_soc_codec *codec = card->codec; | ||
775 | 937 | ||
776 | mutex_lock(&pcm_mutex); | 938 | mutex_lock(&pcm_mutex); |
777 | 939 | ||
@@ -780,19 +942,19 @@ static int soc_pcm_hw_free(struct snd_pcm_substream *substream) | |||
780 | snd_soc_dai_digital_mute(codec_dai, 1); | 942 | snd_soc_dai_digital_mute(codec_dai, 1); |
781 | 943 | ||
782 | /* free any machine hw params */ | 944 | /* free any machine hw params */ |
783 | if (machine->ops && machine->ops->hw_free) | 945 | if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free) |
784 | machine->ops->hw_free(substream); | 946 | rtd->dai_link->ops->hw_free(substream); |
785 | 947 | ||
786 | /* free any DMA resources */ | 948 | /* free any DMA resources */ |
787 | if (platform->pcm_ops->hw_free) | 949 | if (platform->driver->ops && platform->driver->ops->hw_free) |
788 | platform->pcm_ops->hw_free(substream); | 950 | platform->driver->ops->hw_free(substream); |
789 | 951 | ||
790 | /* now free hw params for the DAI's */ | 952 | /* now free hw params for the DAIs */ |
791 | if (codec_dai->ops->hw_free) | 953 | if (codec_dai->driver->ops->hw_free) |
792 | codec_dai->ops->hw_free(substream, codec_dai); | 954 | codec_dai->driver->ops->hw_free(substream, codec_dai); |
793 | 955 | ||
794 | if (cpu_dai->ops->hw_free) | 956 | if (cpu_dai->driver->ops->hw_free) |
795 | cpu_dai->ops->hw_free(substream, cpu_dai); | 957 | cpu_dai->driver->ops->hw_free(substream, cpu_dai); |
796 | 958 | ||
797 | mutex_unlock(&pcm_mutex); | 959 | mutex_unlock(&pcm_mutex); |
798 | return 0; | 960 | return 0; |
@@ -801,28 +963,25 @@ static int soc_pcm_hw_free(struct snd_pcm_substream *substream) | |||
801 | static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd) | 963 | static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd) |
802 | { | 964 | { |
803 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 965 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
804 | struct snd_soc_device *socdev = rtd->socdev; | 966 | struct snd_soc_platform *platform = rtd->platform; |
805 | struct snd_soc_card *card= socdev->card; | 967 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
806 | struct snd_soc_dai_link *machine = rtd->dai; | 968 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
807 | struct snd_soc_platform *platform = card->platform; | ||
808 | struct snd_soc_dai *cpu_dai = machine->cpu_dai; | ||
809 | struct snd_soc_dai *codec_dai = machine->codec_dai; | ||
810 | int ret; | 969 | int ret; |
811 | 970 | ||
812 | if (codec_dai->ops->trigger) { | 971 | if (codec_dai->driver->ops->trigger) { |
813 | ret = codec_dai->ops->trigger(substream, cmd, codec_dai); | 972 | ret = codec_dai->driver->ops->trigger(substream, cmd, codec_dai); |
814 | if (ret < 0) | 973 | if (ret < 0) |
815 | return ret; | 974 | return ret; |
816 | } | 975 | } |
817 | 976 | ||
818 | if (platform->pcm_ops->trigger) { | 977 | if (platform->driver->ops && platform->driver->ops->trigger) { |
819 | ret = platform->pcm_ops->trigger(substream, cmd); | 978 | ret = platform->driver->ops->trigger(substream, cmd); |
820 | if (ret < 0) | 979 | if (ret < 0) |
821 | return ret; | 980 | return ret; |
822 | } | 981 | } |
823 | 982 | ||
824 | if (cpu_dai->ops->trigger) { | 983 | if (cpu_dai->driver->ops->trigger) { |
825 | ret = cpu_dai->ops->trigger(substream, cmd, cpu_dai); | 984 | ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai); |
826 | if (ret < 0) | 985 | if (ret < 0) |
827 | return ret; | 986 | return ret; |
828 | } | 987 | } |
@@ -837,27 +996,24 @@ static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd) | |||
837 | static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream) | 996 | static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream) |
838 | { | 997 | { |
839 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 998 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
840 | struct snd_soc_device *socdev = rtd->socdev; | 999 | struct snd_soc_platform *platform = rtd->platform; |
841 | struct snd_soc_card *card = socdev->card; | 1000 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
842 | struct snd_soc_platform *platform = card->platform; | 1001 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
843 | struct snd_soc_dai_link *machine = rtd->dai; | ||
844 | struct snd_soc_dai *cpu_dai = machine->cpu_dai; | ||
845 | struct snd_soc_dai *codec_dai = machine->codec_dai; | ||
846 | struct snd_pcm_runtime *runtime = substream->runtime; | 1002 | struct snd_pcm_runtime *runtime = substream->runtime; |
847 | snd_pcm_uframes_t offset = 0; | 1003 | snd_pcm_uframes_t offset = 0; |
848 | snd_pcm_sframes_t delay = 0; | 1004 | snd_pcm_sframes_t delay = 0; |
849 | 1005 | ||
850 | if (platform->pcm_ops->pointer) | 1006 | if (platform->driver->ops && platform->driver->ops->pointer) |
851 | offset = platform->pcm_ops->pointer(substream); | 1007 | offset = platform->driver->ops->pointer(substream); |
852 | 1008 | ||
853 | if (cpu_dai->ops->delay) | 1009 | if (cpu_dai->driver->ops->delay) |
854 | delay += cpu_dai->ops->delay(substream, cpu_dai); | 1010 | delay += cpu_dai->driver->ops->delay(substream, cpu_dai); |
855 | 1011 | ||
856 | if (codec_dai->ops->delay) | 1012 | if (codec_dai->driver->ops->delay) |
857 | delay += codec_dai->ops->delay(substream, codec_dai); | 1013 | delay += codec_dai->driver->ops->delay(substream, codec_dai); |
858 | 1014 | ||
859 | if (platform->delay) | 1015 | if (platform->driver->delay) |
860 | delay += platform->delay(substream, codec_dai); | 1016 | delay += platform->driver->delay(substream, codec_dai); |
861 | 1017 | ||
862 | runtime->delay = delay; | 1018 | runtime->delay = delay; |
863 | 1019 | ||
@@ -875,447 +1031,954 @@ static struct snd_pcm_ops soc_pcm_ops = { | |||
875 | .pointer = soc_pcm_pointer, | 1031 | .pointer = soc_pcm_pointer, |
876 | }; | 1032 | }; |
877 | 1033 | ||
878 | #ifdef CONFIG_PM | 1034 | #ifdef CONFIG_PM_SLEEP |
879 | /* powers down audio subsystem for suspend */ | 1035 | /* powers down audio subsystem for suspend */ |
880 | static int soc_suspend(struct device *dev) | 1036 | int snd_soc_suspend(struct device *dev) |
881 | { | 1037 | { |
882 | struct platform_device *pdev = to_platform_device(dev); | 1038 | struct snd_soc_card *card = dev_get_drvdata(dev); |
883 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); | 1039 | struct snd_soc_codec *codec; |
884 | struct snd_soc_card *card = socdev->card; | ||
885 | struct snd_soc_platform *platform = card->platform; | ||
886 | struct snd_soc_codec_device *codec_dev = socdev->codec_dev; | ||
887 | struct snd_soc_codec *codec = card->codec; | ||
888 | int i; | 1040 | int i; |
889 | 1041 | ||
890 | /* If the initialization of this soc device failed, there is no codec | 1042 | /* If the initialization of this soc device failed, there is no codec |
891 | * associated with it. Just bail out in this case. | 1043 | * associated with it. Just bail out in this case. |
892 | */ | 1044 | */ |
893 | if (!codec) | 1045 | if (list_empty(&card->codec_dev_list)) |
894 | return 0; | 1046 | return 0; |
895 | 1047 | ||
896 | /* Due to the resume being scheduled into a workqueue we could | 1048 | /* Due to the resume being scheduled into a workqueue we could |
897 | * suspend before that's finished - wait for it to complete. | 1049 | * suspend before that's finished - wait for it to complete. |
898 | */ | 1050 | */ |
899 | snd_power_lock(codec->card); | 1051 | snd_power_lock(card->snd_card); |
900 | snd_power_wait(codec->card, SNDRV_CTL_POWER_D0); | 1052 | snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0); |
901 | snd_power_unlock(codec->card); | 1053 | snd_power_unlock(card->snd_card); |
902 | 1054 | ||
903 | /* we're going to block userspace touching us until resume completes */ | 1055 | /* we're going to block userspace touching us until resume completes */ |
904 | snd_power_change_state(codec->card, SNDRV_CTL_POWER_D3hot); | 1056 | snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot); |
905 | 1057 | ||
906 | /* mute any active DAC's */ | 1058 | /* mute any active DACs */ |
907 | for (i = 0; i < card->num_links; i++) { | 1059 | for (i = 0; i < card->num_rtd; i++) { |
908 | struct snd_soc_dai *dai = card->dai_link[i].codec_dai; | 1060 | struct snd_soc_dai *dai = card->rtd[i].codec_dai; |
1061 | struct snd_soc_dai_driver *drv = dai->driver; | ||
909 | 1062 | ||
910 | if (card->dai_link[i].ignore_suspend) | 1063 | if (card->rtd[i].dai_link->ignore_suspend) |
911 | continue; | 1064 | continue; |
912 | 1065 | ||
913 | if (dai->ops->digital_mute && dai->playback.active) | 1066 | if (drv->ops->digital_mute && dai->playback_active) |
914 | dai->ops->digital_mute(dai, 1); | 1067 | drv->ops->digital_mute(dai, 1); |
915 | } | 1068 | } |
916 | 1069 | ||
917 | /* suspend all pcms */ | 1070 | /* suspend all pcms */ |
918 | for (i = 0; i < card->num_links; i++) { | 1071 | for (i = 0; i < card->num_rtd; i++) { |
919 | if (card->dai_link[i].ignore_suspend) | 1072 | if (card->rtd[i].dai_link->ignore_suspend) |
920 | continue; | 1073 | continue; |
921 | 1074 | ||
922 | snd_pcm_suspend_all(card->dai_link[i].pcm); | 1075 | snd_pcm_suspend_all(card->rtd[i].pcm); |
923 | } | 1076 | } |
924 | 1077 | ||
925 | if (card->suspend_pre) | 1078 | if (card->suspend_pre) |
926 | card->suspend_pre(pdev, PMSG_SUSPEND); | 1079 | card->suspend_pre(card); |
927 | 1080 | ||
928 | for (i = 0; i < card->num_links; i++) { | 1081 | for (i = 0; i < card->num_rtd; i++) { |
929 | struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai; | 1082 | struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai; |
1083 | struct snd_soc_platform *platform = card->rtd[i].platform; | ||
930 | 1084 | ||
931 | if (card->dai_link[i].ignore_suspend) | 1085 | if (card->rtd[i].dai_link->ignore_suspend) |
932 | continue; | 1086 | continue; |
933 | 1087 | ||
934 | if (cpu_dai->suspend && !cpu_dai->ac97_control) | 1088 | if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control) |
935 | cpu_dai->suspend(cpu_dai); | 1089 | cpu_dai->driver->suspend(cpu_dai); |
936 | if (platform->suspend) | 1090 | if (platform->driver->suspend && !platform->suspended) { |
937 | platform->suspend(&card->dai_link[i]); | 1091 | platform->driver->suspend(cpu_dai); |
1092 | platform->suspended = 1; | ||
1093 | } | ||
938 | } | 1094 | } |
939 | 1095 | ||
940 | /* close any waiting streams and save state */ | 1096 | /* close any waiting streams and save state */ |
941 | run_delayed_work(&card->delayed_work); | 1097 | for (i = 0; i < card->num_rtd; i++) { |
942 | codec->suspend_bias_level = codec->bias_level; | 1098 | flush_delayed_work_sync(&card->rtd[i].delayed_work); |
1099 | card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level; | ||
1100 | } | ||
943 | 1101 | ||
944 | for (i = 0; i < codec->num_dai; i++) { | 1102 | for (i = 0; i < card->num_rtd; i++) { |
945 | char *stream = codec->dai[i].playback.stream_name; | 1103 | struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver; |
946 | 1104 | ||
947 | if (card->dai_link[i].ignore_suspend) | 1105 | if (card->rtd[i].dai_link->ignore_suspend) |
948 | continue; | 1106 | continue; |
949 | 1107 | ||
950 | if (stream != NULL) | 1108 | if (driver->playback.stream_name != NULL) |
951 | snd_soc_dapm_stream_event(codec, stream, | 1109 | snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name, |
952 | SND_SOC_DAPM_STREAM_SUSPEND); | 1110 | SND_SOC_DAPM_STREAM_SUSPEND); |
953 | stream = codec->dai[i].capture.stream_name; | 1111 | |
954 | if (stream != NULL) | 1112 | if (driver->capture.stream_name != NULL) |
955 | snd_soc_dapm_stream_event(codec, stream, | 1113 | snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name, |
956 | SND_SOC_DAPM_STREAM_SUSPEND); | 1114 | SND_SOC_DAPM_STREAM_SUSPEND); |
957 | } | 1115 | } |
958 | 1116 | ||
959 | /* If there are paths active then the CODEC will be held with | 1117 | /* suspend all CODECs */ |
960 | * bias _ON and should not be suspended. */ | 1118 | list_for_each_entry(codec, &card->codec_dev_list, card_list) { |
961 | if (codec_dev->suspend) { | 1119 | /* If there are paths active then the CODEC will be held with |
962 | switch (codec->bias_level) { | 1120 | * bias _ON and should not be suspended. */ |
963 | case SND_SOC_BIAS_STANDBY: | 1121 | if (!codec->suspended && codec->driver->suspend) { |
964 | case SND_SOC_BIAS_OFF: | 1122 | switch (codec->dapm.bias_level) { |
965 | codec_dev->suspend(pdev, PMSG_SUSPEND); | 1123 | case SND_SOC_BIAS_STANDBY: |
966 | break; | 1124 | case SND_SOC_BIAS_OFF: |
967 | default: | 1125 | codec->driver->suspend(codec, PMSG_SUSPEND); |
968 | dev_dbg(socdev->dev, "CODEC is on over suspend\n"); | 1126 | codec->suspended = 1; |
969 | break; | 1127 | break; |
1128 | default: | ||
1129 | dev_dbg(codec->dev, "CODEC is on over suspend\n"); | ||
1130 | break; | ||
1131 | } | ||
970 | } | 1132 | } |
971 | } | 1133 | } |
972 | 1134 | ||
973 | for (i = 0; i < card->num_links; i++) { | 1135 | for (i = 0; i < card->num_rtd; i++) { |
974 | struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai; | 1136 | struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai; |
975 | 1137 | ||
976 | if (card->dai_link[i].ignore_suspend) | 1138 | if (card->rtd[i].dai_link->ignore_suspend) |
977 | continue; | 1139 | continue; |
978 | 1140 | ||
979 | if (cpu_dai->suspend && cpu_dai->ac97_control) | 1141 | if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control) |
980 | cpu_dai->suspend(cpu_dai); | 1142 | cpu_dai->driver->suspend(cpu_dai); |
981 | } | 1143 | } |
982 | 1144 | ||
983 | if (card->suspend_post) | 1145 | if (card->suspend_post) |
984 | card->suspend_post(pdev, PMSG_SUSPEND); | 1146 | card->suspend_post(card); |
985 | 1147 | ||
986 | return 0; | 1148 | return 0; |
987 | } | 1149 | } |
1150 | EXPORT_SYMBOL_GPL(snd_soc_suspend); | ||
988 | 1151 | ||
989 | /* deferred resume work, so resume can complete before we finished | 1152 | /* deferred resume work, so resume can complete before we finished |
990 | * setting our codec back up, which can be very slow on I2C | 1153 | * setting our codec back up, which can be very slow on I2C |
991 | */ | 1154 | */ |
992 | static void soc_resume_deferred(struct work_struct *work) | 1155 | static void soc_resume_deferred(struct work_struct *work) |
993 | { | 1156 | { |
994 | struct snd_soc_card *card = container_of(work, | 1157 | struct snd_soc_card *card = |
995 | struct snd_soc_card, | 1158 | container_of(work, struct snd_soc_card, deferred_resume_work); |
996 | deferred_resume_work); | 1159 | struct snd_soc_codec *codec; |
997 | struct snd_soc_device *socdev = card->socdev; | ||
998 | struct snd_soc_platform *platform = card->platform; | ||
999 | struct snd_soc_codec_device *codec_dev = socdev->codec_dev; | ||
1000 | struct snd_soc_codec *codec = card->codec; | ||
1001 | struct platform_device *pdev = to_platform_device(socdev->dev); | ||
1002 | int i; | 1160 | int i; |
1003 | 1161 | ||
1004 | /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time, | 1162 | /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time, |
1005 | * so userspace apps are blocked from touching us | 1163 | * so userspace apps are blocked from touching us |
1006 | */ | 1164 | */ |
1007 | 1165 | ||
1008 | dev_dbg(socdev->dev, "starting resume work\n"); | 1166 | dev_dbg(card->dev, "starting resume work\n"); |
1009 | 1167 | ||
1010 | /* Bring us up into D2 so that DAPM starts enabling things */ | 1168 | /* Bring us up into D2 so that DAPM starts enabling things */ |
1011 | snd_power_change_state(codec->card, SNDRV_CTL_POWER_D2); | 1169 | snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2); |
1012 | 1170 | ||
1013 | if (card->resume_pre) | 1171 | if (card->resume_pre) |
1014 | card->resume_pre(pdev); | 1172 | card->resume_pre(card); |
1015 | 1173 | ||
1016 | for (i = 0; i < card->num_links; i++) { | 1174 | /* resume AC97 DAIs */ |
1017 | struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai; | 1175 | for (i = 0; i < card->num_rtd; i++) { |
1176 | struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai; | ||
1018 | 1177 | ||
1019 | if (card->dai_link[i].ignore_suspend) | 1178 | if (card->rtd[i].dai_link->ignore_suspend) |
1020 | continue; | 1179 | continue; |
1021 | 1180 | ||
1022 | if (cpu_dai->resume && cpu_dai->ac97_control) | 1181 | if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control) |
1023 | cpu_dai->resume(cpu_dai); | 1182 | cpu_dai->driver->resume(cpu_dai); |
1024 | } | 1183 | } |
1025 | 1184 | ||
1026 | /* If the CODEC was idle over suspend then it will have been | 1185 | list_for_each_entry(codec, &card->codec_dev_list, card_list) { |
1027 | * left with bias OFF or STANDBY and suspended so we must now | 1186 | /* If the CODEC was idle over suspend then it will have been |
1028 | * resume. Otherwise the suspend was suppressed. | 1187 | * left with bias OFF or STANDBY and suspended so we must now |
1029 | */ | 1188 | * resume. Otherwise the suspend was suppressed. |
1030 | if (codec_dev->resume) { | 1189 | */ |
1031 | switch (codec->bias_level) { | 1190 | if (codec->driver->resume && codec->suspended) { |
1032 | case SND_SOC_BIAS_STANDBY: | 1191 | switch (codec->dapm.bias_level) { |
1033 | case SND_SOC_BIAS_OFF: | 1192 | case SND_SOC_BIAS_STANDBY: |
1034 | codec_dev->resume(pdev); | 1193 | case SND_SOC_BIAS_OFF: |
1035 | break; | 1194 | codec->driver->resume(codec); |
1036 | default: | 1195 | codec->suspended = 0; |
1037 | dev_dbg(socdev->dev, "CODEC was on over suspend\n"); | 1196 | break; |
1038 | break; | 1197 | default: |
1198 | dev_dbg(codec->dev, "CODEC was on over suspend\n"); | ||
1199 | break; | ||
1200 | } | ||
1039 | } | 1201 | } |
1040 | } | 1202 | } |
1041 | 1203 | ||
1042 | for (i = 0; i < codec->num_dai; i++) { | 1204 | for (i = 0; i < card->num_rtd; i++) { |
1043 | char *stream = codec->dai[i].playback.stream_name; | 1205 | struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver; |
1044 | 1206 | ||
1045 | if (card->dai_link[i].ignore_suspend) | 1207 | if (card->rtd[i].dai_link->ignore_suspend) |
1046 | continue; | 1208 | continue; |
1047 | 1209 | ||
1048 | if (stream != NULL) | 1210 | if (driver->playback.stream_name != NULL) |
1049 | snd_soc_dapm_stream_event(codec, stream, | 1211 | snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name, |
1050 | SND_SOC_DAPM_STREAM_RESUME); | 1212 | SND_SOC_DAPM_STREAM_RESUME); |
1051 | stream = codec->dai[i].capture.stream_name; | 1213 | |
1052 | if (stream != NULL) | 1214 | if (driver->capture.stream_name != NULL) |
1053 | snd_soc_dapm_stream_event(codec, stream, | 1215 | snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name, |
1054 | SND_SOC_DAPM_STREAM_RESUME); | 1216 | SND_SOC_DAPM_STREAM_RESUME); |
1055 | } | 1217 | } |
1056 | 1218 | ||
1057 | /* unmute any active DACs */ | 1219 | /* unmute any active DACs */ |
1058 | for (i = 0; i < card->num_links; i++) { | 1220 | for (i = 0; i < card->num_rtd; i++) { |
1059 | struct snd_soc_dai *dai = card->dai_link[i].codec_dai; | 1221 | struct snd_soc_dai *dai = card->rtd[i].codec_dai; |
1222 | struct snd_soc_dai_driver *drv = dai->driver; | ||
1060 | 1223 | ||
1061 | if (card->dai_link[i].ignore_suspend) | 1224 | if (card->rtd[i].dai_link->ignore_suspend) |
1062 | continue; | 1225 | continue; |
1063 | 1226 | ||
1064 | if (dai->ops->digital_mute && dai->playback.active) | 1227 | if (drv->ops->digital_mute && dai->playback_active) |
1065 | dai->ops->digital_mute(dai, 0); | 1228 | drv->ops->digital_mute(dai, 0); |
1066 | } | 1229 | } |
1067 | 1230 | ||
1068 | for (i = 0; i < card->num_links; i++) { | 1231 | for (i = 0; i < card->num_rtd; i++) { |
1069 | struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai; | 1232 | struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai; |
1233 | struct snd_soc_platform *platform = card->rtd[i].platform; | ||
1070 | 1234 | ||
1071 | if (card->dai_link[i].ignore_suspend) | 1235 | if (card->rtd[i].dai_link->ignore_suspend) |
1072 | continue; | 1236 | continue; |
1073 | 1237 | ||
1074 | if (cpu_dai->resume && !cpu_dai->ac97_control) | 1238 | if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control) |
1075 | cpu_dai->resume(cpu_dai); | 1239 | cpu_dai->driver->resume(cpu_dai); |
1076 | if (platform->resume) | 1240 | if (platform->driver->resume && platform->suspended) { |
1077 | platform->resume(&card->dai_link[i]); | 1241 | platform->driver->resume(cpu_dai); |
1242 | platform->suspended = 0; | ||
1243 | } | ||
1078 | } | 1244 | } |
1079 | 1245 | ||
1080 | if (card->resume_post) | 1246 | if (card->resume_post) |
1081 | card->resume_post(pdev); | 1247 | card->resume_post(card); |
1082 | 1248 | ||
1083 | dev_dbg(socdev->dev, "resume work completed\n"); | 1249 | dev_dbg(card->dev, "resume work completed\n"); |
1084 | 1250 | ||
1085 | /* userspace can access us now we are back as we were before */ | 1251 | /* userspace can access us now we are back as we were before */ |
1086 | snd_power_change_state(codec->card, SNDRV_CTL_POWER_D0); | 1252 | snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0); |
1087 | } | 1253 | } |
1088 | 1254 | ||
1089 | /* powers up audio subsystem after a suspend */ | 1255 | /* powers up audio subsystem after a suspend */ |
1090 | static int soc_resume(struct device *dev) | 1256 | int snd_soc_resume(struct device *dev) |
1091 | { | 1257 | { |
1092 | struct platform_device *pdev = to_platform_device(dev); | 1258 | struct snd_soc_card *card = dev_get_drvdata(dev); |
1093 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); | 1259 | int i; |
1094 | struct snd_soc_card *card = socdev->card; | ||
1095 | struct snd_soc_dai *cpu_dai = card->dai_link[0].cpu_dai; | ||
1096 | |||
1097 | /* If the initialization of this soc device failed, there is no codec | ||
1098 | * associated with it. Just bail out in this case. | ||
1099 | */ | ||
1100 | if (!card->codec) | ||
1101 | return 0; | ||
1102 | 1260 | ||
1103 | /* AC97 devices might have other drivers hanging off them so | 1261 | /* AC97 devices might have other drivers hanging off them so |
1104 | * need to resume immediately. Other drivers don't have that | 1262 | * need to resume immediately. Other drivers don't have that |
1105 | * problem and may take a substantial amount of time to resume | 1263 | * problem and may take a substantial amount of time to resume |
1106 | * due to I/O costs and anti-pop so handle them out of line. | 1264 | * due to I/O costs and anti-pop so handle them out of line. |
1107 | */ | 1265 | */ |
1108 | if (cpu_dai->ac97_control) { | 1266 | for (i = 0; i < card->num_rtd; i++) { |
1109 | dev_dbg(socdev->dev, "Resuming AC97 immediately\n"); | 1267 | struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai; |
1110 | soc_resume_deferred(&card->deferred_resume_work); | 1268 | if (cpu_dai->driver->ac97_control) { |
1111 | } else { | 1269 | dev_dbg(dev, "Resuming AC97 immediately\n"); |
1112 | dev_dbg(socdev->dev, "Scheduling resume work\n"); | 1270 | soc_resume_deferred(&card->deferred_resume_work); |
1113 | if (!schedule_work(&card->deferred_resume_work)) | 1271 | } else { |
1114 | dev_err(socdev->dev, "resume work item may be lost\n"); | 1272 | dev_dbg(dev, "Scheduling resume work\n"); |
1273 | if (!schedule_work(&card->deferred_resume_work)) | ||
1274 | dev_err(dev, "resume work item may be lost\n"); | ||
1275 | } | ||
1115 | } | 1276 | } |
1116 | 1277 | ||
1117 | return 0; | 1278 | return 0; |
1118 | } | 1279 | } |
1280 | EXPORT_SYMBOL_GPL(snd_soc_resume); | ||
1119 | #else | 1281 | #else |
1120 | #define soc_suspend NULL | 1282 | #define snd_soc_suspend NULL |
1121 | #define soc_resume NULL | 1283 | #define snd_soc_resume NULL |
1122 | #endif | 1284 | #endif |
1123 | 1285 | ||
1124 | static struct snd_soc_dai_ops null_dai_ops = { | 1286 | static struct snd_soc_dai_ops null_dai_ops = { |
1125 | }; | 1287 | }; |
1126 | 1288 | ||
1127 | static void snd_soc_instantiate_card(struct snd_soc_card *card) | 1289 | static int soc_bind_dai_link(struct snd_soc_card *card, int num) |
1128 | { | 1290 | { |
1129 | struct platform_device *pdev = container_of(card->dev, | 1291 | struct snd_soc_dai_link *dai_link = &card->dai_link[num]; |
1130 | struct platform_device, | 1292 | struct snd_soc_pcm_runtime *rtd = &card->rtd[num]; |
1131 | dev); | ||
1132 | struct snd_soc_codec_device *codec_dev = card->socdev->codec_dev; | ||
1133 | struct snd_soc_codec *codec; | 1293 | struct snd_soc_codec *codec; |
1134 | struct snd_soc_platform *platform; | 1294 | struct snd_soc_platform *platform; |
1135 | struct snd_soc_dai *dai; | 1295 | struct snd_soc_dai *codec_dai, *cpu_dai; |
1136 | int i, found, ret, ac97; | 1296 | const char *platform_name; |
1297 | |||
1298 | if (rtd->complete) | ||
1299 | return 1; | ||
1300 | dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num); | ||
1301 | |||
1302 | /* do we already have the CPU DAI for this link ? */ | ||
1303 | if (rtd->cpu_dai) { | ||
1304 | goto find_codec; | ||
1305 | } | ||
1306 | /* no, then find CPU DAI from registered DAIs*/ | ||
1307 | list_for_each_entry(cpu_dai, &dai_list, list) { | ||
1308 | if (!strcmp(cpu_dai->name, dai_link->cpu_dai_name)) { | ||
1309 | rtd->cpu_dai = cpu_dai; | ||
1310 | goto find_codec; | ||
1311 | } | ||
1312 | } | ||
1313 | dev_dbg(card->dev, "CPU DAI %s not registered\n", | ||
1314 | dai_link->cpu_dai_name); | ||
1137 | 1315 | ||
1138 | if (card->instantiated) | 1316 | find_codec: |
1139 | return; | 1317 | /* do we already have the CODEC for this link ? */ |
1318 | if (rtd->codec) { | ||
1319 | goto find_platform; | ||
1320 | } | ||
1140 | 1321 | ||
1141 | found = 0; | 1322 | /* no, then find CODEC from registered CODECs*/ |
1142 | list_for_each_entry(platform, &platform_list, list) | 1323 | list_for_each_entry(codec, &codec_list, list) { |
1143 | if (card->platform == platform) { | 1324 | if (!strcmp(codec->name, dai_link->codec_name)) { |
1144 | found = 1; | 1325 | rtd->codec = codec; |
1145 | break; | 1326 | |
1327 | /* CODEC found, so find CODEC DAI from registered DAIs from this CODEC*/ | ||
1328 | list_for_each_entry(codec_dai, &dai_list, list) { | ||
1329 | if (codec->dev == codec_dai->dev && | ||
1330 | !strcmp(codec_dai->name, dai_link->codec_dai_name)) { | ||
1331 | rtd->codec_dai = codec_dai; | ||
1332 | goto find_platform; | ||
1333 | } | ||
1334 | } | ||
1335 | dev_dbg(card->dev, "CODEC DAI %s not registered\n", | ||
1336 | dai_link->codec_dai_name); | ||
1337 | |||
1338 | goto find_platform; | ||
1146 | } | 1339 | } |
1147 | if (!found) { | ||
1148 | dev_dbg(card->dev, "Platform %s not registered\n", | ||
1149 | card->platform->name); | ||
1150 | return; | ||
1151 | } | 1340 | } |
1341 | dev_dbg(card->dev, "CODEC %s not registered\n", | ||
1342 | dai_link->codec_name); | ||
1152 | 1343 | ||
1153 | ac97 = 0; | 1344 | find_platform: |
1154 | for (i = 0; i < card->num_links; i++) { | 1345 | /* do we need a platform? */ |
1155 | found = 0; | 1346 | if (rtd->platform) |
1156 | list_for_each_entry(dai, &dai_list, list) | 1347 | goto out; |
1157 | if (card->dai_link[i].cpu_dai == dai) { | 1348 | |
1158 | found = 1; | 1349 | /* if there's no platform we match on the empty platform */ |
1159 | break; | 1350 | platform_name = dai_link->platform_name; |
1160 | } | 1351 | if (!platform_name) |
1161 | if (!found) { | 1352 | platform_name = "snd-soc-dummy"; |
1162 | dev_dbg(card->dev, "DAI %s not registered\n", | 1353 | |
1163 | card->dai_link[i].cpu_dai->name); | 1354 | /* no, then find one from the set of registered platforms */ |
1164 | return; | 1355 | list_for_each_entry(platform, &platform_list, list) { |
1356 | if (!strcmp(platform->name, platform_name)) { | ||
1357 | rtd->platform = platform; | ||
1358 | goto out; | ||
1165 | } | 1359 | } |
1360 | } | ||
1361 | |||
1362 | dev_dbg(card->dev, "platform %s not registered\n", | ||
1363 | dai_link->platform_name); | ||
1364 | return 0; | ||
1166 | 1365 | ||
1167 | if (card->dai_link[i].cpu_dai->ac97_control) | 1366 | out: |
1168 | ac97 = 1; | 1367 | /* mark rtd as complete if we found all 4 of our client devices */ |
1368 | if (rtd->codec && rtd->codec_dai && rtd->platform && rtd->cpu_dai) { | ||
1369 | rtd->complete = 1; | ||
1370 | card->num_rtd++; | ||
1169 | } | 1371 | } |
1372 | return 1; | ||
1373 | } | ||
1170 | 1374 | ||
1171 | for (i = 0; i < card->num_links; i++) { | 1375 | static void soc_remove_codec(struct snd_soc_codec *codec) |
1172 | if (!card->dai_link[i].codec_dai->ops) | 1376 | { |
1173 | card->dai_link[i].codec_dai->ops = &null_dai_ops; | 1377 | int err; |
1378 | |||
1379 | if (codec->driver->remove) { | ||
1380 | err = codec->driver->remove(codec); | ||
1381 | if (err < 0) | ||
1382 | dev_err(codec->dev, | ||
1383 | "asoc: failed to remove %s: %d\n", | ||
1384 | codec->name, err); | ||
1174 | } | 1385 | } |
1175 | 1386 | ||
1176 | /* If we have AC97 in the system then don't wait for the | 1387 | /* Make sure all DAPM widgets are freed */ |
1177 | * codec. This will need revisiting if we have to handle | 1388 | snd_soc_dapm_free(&codec->dapm); |
1178 | * systems with mixed AC97 and non-AC97 parts. Only check for | 1389 | |
1179 | * DAIs currently; we can't do this per link since some AC97 | 1390 | soc_cleanup_codec_debugfs(codec); |
1180 | * codecs have non-AC97 DAIs. | 1391 | codec->probed = 0; |
1181 | */ | 1392 | list_del(&codec->card_list); |
1182 | if (!ac97) | 1393 | module_put(codec->dev->driver->owner); |
1183 | for (i = 0; i < card->num_links; i++) { | 1394 | } |
1184 | found = 0; | 1395 | |
1185 | list_for_each_entry(dai, &dai_list, list) | 1396 | static void soc_remove_dai_link(struct snd_soc_card *card, int num) |
1186 | if (card->dai_link[i].codec_dai == dai) { | 1397 | { |
1187 | found = 1; | 1398 | struct snd_soc_pcm_runtime *rtd = &card->rtd[num]; |
1188 | break; | 1399 | struct snd_soc_codec *codec = rtd->codec; |
1189 | } | 1400 | struct snd_soc_platform *platform = rtd->platform; |
1190 | if (!found) { | 1401 | struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai; |
1191 | dev_dbg(card->dev, "DAI %s not registered\n", | 1402 | int err; |
1192 | card->dai_link[i].codec_dai->name); | 1403 | |
1193 | return; | 1404 | /* unregister the rtd device */ |
1194 | } | 1405 | if (rtd->dev_registered) { |
1406 | device_remove_file(&rtd->dev, &dev_attr_pmdown_time); | ||
1407 | device_remove_file(&rtd->dev, &dev_attr_codec_reg); | ||
1408 | device_unregister(&rtd->dev); | ||
1409 | rtd->dev_registered = 0; | ||
1410 | } | ||
1411 | |||
1412 | /* remove the CODEC DAI */ | ||
1413 | if (codec_dai && codec_dai->probed) { | ||
1414 | if (codec_dai->driver->remove) { | ||
1415 | err = codec_dai->driver->remove(codec_dai); | ||
1416 | if (err < 0) | ||
1417 | printk(KERN_ERR "asoc: failed to remove %s\n", codec_dai->name); | ||
1418 | } | ||
1419 | codec_dai->probed = 0; | ||
1420 | list_del(&codec_dai->card_list); | ||
1421 | } | ||
1422 | |||
1423 | /* remove the platform */ | ||
1424 | if (platform && platform->probed) { | ||
1425 | if (platform->driver->remove) { | ||
1426 | err = platform->driver->remove(platform); | ||
1427 | if (err < 0) | ||
1428 | printk(KERN_ERR "asoc: failed to remove %s\n", platform->name); | ||
1195 | } | 1429 | } |
1430 | platform->probed = 0; | ||
1431 | list_del(&platform->card_list); | ||
1432 | module_put(platform->dev->driver->owner); | ||
1433 | } | ||
1196 | 1434 | ||
1197 | /* Note that we do not current check for codec components */ | 1435 | /* remove the CODEC */ |
1436 | if (codec && codec->probed) | ||
1437 | soc_remove_codec(codec); | ||
1198 | 1438 | ||
1199 | dev_dbg(card->dev, "All components present, instantiating\n"); | 1439 | /* remove the cpu_dai */ |
1440 | if (cpu_dai && cpu_dai->probed) { | ||
1441 | if (cpu_dai->driver->remove) { | ||
1442 | err = cpu_dai->driver->remove(cpu_dai); | ||
1443 | if (err < 0) | ||
1444 | printk(KERN_ERR "asoc: failed to remove %s\n", cpu_dai->name); | ||
1445 | } | ||
1446 | cpu_dai->probed = 0; | ||
1447 | list_del(&cpu_dai->card_list); | ||
1448 | module_put(cpu_dai->dev->driver->owner); | ||
1449 | } | ||
1450 | } | ||
1200 | 1451 | ||
1201 | /* Found everything, bring it up */ | 1452 | static void soc_remove_dai_links(struct snd_soc_card *card) |
1202 | card->pmdown_time = pmdown_time; | 1453 | { |
1454 | int i; | ||
1203 | 1455 | ||
1204 | if (card->probe) { | 1456 | for (i = 0; i < card->num_rtd; i++) |
1205 | ret = card->probe(pdev); | 1457 | soc_remove_dai_link(card, i); |
1206 | if (ret < 0) | 1458 | |
1207 | return; | 1459 | card->num_rtd = 0; |
1460 | } | ||
1461 | |||
1462 | static void soc_set_name_prefix(struct snd_soc_card *card, | ||
1463 | struct snd_soc_codec *codec) | ||
1464 | { | ||
1465 | int i; | ||
1466 | |||
1467 | if (card->codec_conf == NULL) | ||
1468 | return; | ||
1469 | |||
1470 | for (i = 0; i < card->num_configs; i++) { | ||
1471 | struct snd_soc_codec_conf *map = &card->codec_conf[i]; | ||
1472 | if (map->dev_name && !strcmp(codec->name, map->dev_name)) { | ||
1473 | codec->name_prefix = map->name_prefix; | ||
1474 | break; | ||
1475 | } | ||
1208 | } | 1476 | } |
1477 | } | ||
1209 | 1478 | ||
1210 | for (i = 0; i < card->num_links; i++) { | 1479 | static int soc_probe_codec(struct snd_soc_card *card, |
1211 | struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai; | 1480 | struct snd_soc_codec *codec) |
1212 | if (cpu_dai->probe) { | 1481 | { |
1213 | ret = cpu_dai->probe(pdev, cpu_dai); | 1482 | int ret = 0; |
1214 | if (ret < 0) | 1483 | const struct snd_soc_codec_driver *driver = codec->driver; |
1215 | goto cpu_dai_err; | 1484 | |
1485 | codec->card = card; | ||
1486 | codec->dapm.card = card; | ||
1487 | soc_set_name_prefix(card, codec); | ||
1488 | |||
1489 | if (!try_module_get(codec->dev->driver->owner)) | ||
1490 | return -ENODEV; | ||
1491 | |||
1492 | soc_init_codec_debugfs(codec); | ||
1493 | |||
1494 | if (driver->dapm_widgets) | ||
1495 | snd_soc_dapm_new_controls(&codec->dapm, driver->dapm_widgets, | ||
1496 | driver->num_dapm_widgets); | ||
1497 | |||
1498 | if (driver->probe) { | ||
1499 | ret = driver->probe(codec); | ||
1500 | if (ret < 0) { | ||
1501 | dev_err(codec->dev, | ||
1502 | "asoc: failed to probe CODEC %s: %d\n", | ||
1503 | codec->name, ret); | ||
1504 | goto err_probe; | ||
1216 | } | 1505 | } |
1217 | } | 1506 | } |
1218 | 1507 | ||
1219 | if (codec_dev->probe) { | 1508 | if (driver->controls) |
1220 | ret = codec_dev->probe(pdev); | 1509 | snd_soc_add_controls(codec, driver->controls, |
1221 | if (ret < 0) | 1510 | driver->num_controls); |
1222 | goto cpu_dai_err; | 1511 | if (driver->dapm_routes) |
1512 | snd_soc_dapm_add_routes(&codec->dapm, driver->dapm_routes, | ||
1513 | driver->num_dapm_routes); | ||
1514 | |||
1515 | /* mark codec as probed and add to card codec list */ | ||
1516 | codec->probed = 1; | ||
1517 | list_add(&codec->card_list, &card->codec_dev_list); | ||
1518 | list_add(&codec->dapm.list, &card->dapm_list); | ||
1519 | |||
1520 | return 0; | ||
1521 | |||
1522 | err_probe: | ||
1523 | soc_cleanup_codec_debugfs(codec); | ||
1524 | module_put(codec->dev->driver->owner); | ||
1525 | |||
1526 | return ret; | ||
1527 | } | ||
1528 | |||
1529 | static void rtd_release(struct device *dev) {} | ||
1530 | |||
1531 | static int soc_post_component_init(struct snd_soc_card *card, | ||
1532 | struct snd_soc_codec *codec, | ||
1533 | int num, int dailess) | ||
1534 | { | ||
1535 | struct snd_soc_dai_link *dai_link = NULL; | ||
1536 | struct snd_soc_aux_dev *aux_dev = NULL; | ||
1537 | struct snd_soc_pcm_runtime *rtd; | ||
1538 | const char *temp, *name; | ||
1539 | int ret = 0; | ||
1540 | |||
1541 | if (!dailess) { | ||
1542 | dai_link = &card->dai_link[num]; | ||
1543 | rtd = &card->rtd[num]; | ||
1544 | name = dai_link->name; | ||
1545 | } else { | ||
1546 | aux_dev = &card->aux_dev[num]; | ||
1547 | rtd = &card->rtd_aux[num]; | ||
1548 | name = aux_dev->name; | ||
1549 | } | ||
1550 | rtd->card = card; | ||
1551 | |||
1552 | /* machine controls, routes and widgets are not prefixed */ | ||
1553 | temp = codec->name_prefix; | ||
1554 | codec->name_prefix = NULL; | ||
1555 | |||
1556 | /* do machine specific initialization */ | ||
1557 | if (!dailess && dai_link->init) | ||
1558 | ret = dai_link->init(rtd); | ||
1559 | else if (dailess && aux_dev->init) | ||
1560 | ret = aux_dev->init(&codec->dapm); | ||
1561 | if (ret < 0) { | ||
1562 | dev_err(card->dev, "asoc: failed to init %s: %d\n", name, ret); | ||
1563 | return ret; | ||
1564 | } | ||
1565 | codec->name_prefix = temp; | ||
1566 | |||
1567 | /* Make sure all DAPM widgets are instantiated */ | ||
1568 | snd_soc_dapm_new_widgets(&codec->dapm); | ||
1569 | |||
1570 | /* register the rtd device */ | ||
1571 | rtd->codec = codec; | ||
1572 | rtd->dev.parent = card->dev; | ||
1573 | rtd->dev.release = rtd_release; | ||
1574 | rtd->dev.init_name = name; | ||
1575 | ret = device_register(&rtd->dev); | ||
1576 | if (ret < 0) { | ||
1577 | dev_err(card->dev, | ||
1578 | "asoc: failed to register runtime device: %d\n", ret); | ||
1579 | return ret; | ||
1580 | } | ||
1581 | rtd->dev_registered = 1; | ||
1582 | |||
1583 | /* add DAPM sysfs entries for this codec */ | ||
1584 | ret = snd_soc_dapm_sys_add(&rtd->dev); | ||
1585 | if (ret < 0) | ||
1586 | dev_err(codec->dev, | ||
1587 | "asoc: failed to add codec dapm sysfs entries: %d\n", | ||
1588 | ret); | ||
1589 | |||
1590 | /* add codec sysfs entries */ | ||
1591 | ret = device_create_file(&rtd->dev, &dev_attr_codec_reg); | ||
1592 | if (ret < 0) | ||
1593 | dev_err(codec->dev, | ||
1594 | "asoc: failed to add codec sysfs files: %d\n", ret); | ||
1595 | |||
1596 | return 0; | ||
1597 | } | ||
1598 | |||
1599 | static int soc_probe_dai_link(struct snd_soc_card *card, int num) | ||
1600 | { | ||
1601 | struct snd_soc_dai_link *dai_link = &card->dai_link[num]; | ||
1602 | struct snd_soc_pcm_runtime *rtd = &card->rtd[num]; | ||
1603 | struct snd_soc_codec *codec = rtd->codec; | ||
1604 | struct snd_soc_platform *platform = rtd->platform; | ||
1605 | struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai; | ||
1606 | int ret; | ||
1607 | |||
1608 | dev_dbg(card->dev, "probe %s dai link %d\n", card->name, num); | ||
1609 | |||
1610 | /* config components */ | ||
1611 | codec_dai->codec = codec; | ||
1612 | cpu_dai->platform = platform; | ||
1613 | codec_dai->card = card; | ||
1614 | cpu_dai->card = card; | ||
1615 | |||
1616 | /* set default power off timeout */ | ||
1617 | rtd->pmdown_time = pmdown_time; | ||
1618 | |||
1619 | /* probe the cpu_dai */ | ||
1620 | if (!cpu_dai->probed) { | ||
1621 | if (!try_module_get(cpu_dai->dev->driver->owner)) | ||
1622 | return -ENODEV; | ||
1623 | |||
1624 | if (cpu_dai->driver->probe) { | ||
1625 | ret = cpu_dai->driver->probe(cpu_dai); | ||
1626 | if (ret < 0) { | ||
1627 | printk(KERN_ERR "asoc: failed to probe CPU DAI %s\n", | ||
1628 | cpu_dai->name); | ||
1629 | module_put(cpu_dai->dev->driver->owner); | ||
1630 | return ret; | ||
1631 | } | ||
1632 | } | ||
1633 | cpu_dai->probed = 1; | ||
1634 | /* mark cpu_dai as probed and add to card cpu_dai list */ | ||
1635 | list_add(&cpu_dai->card_list, &card->dai_dev_list); | ||
1223 | } | 1636 | } |
1224 | codec = card->codec; | ||
1225 | 1637 | ||
1226 | if (platform->probe) { | 1638 | /* probe the CODEC */ |
1227 | ret = platform->probe(pdev); | 1639 | if (!codec->probed) { |
1640 | ret = soc_probe_codec(card, codec); | ||
1228 | if (ret < 0) | 1641 | if (ret < 0) |
1229 | goto platform_err; | 1642 | return ret; |
1230 | } | 1643 | } |
1231 | 1644 | ||
1232 | /* DAPM stream work */ | 1645 | /* probe the platform */ |
1233 | INIT_DELAYED_WORK(&card->delayed_work, close_delayed_work); | 1646 | if (!platform->probed) { |
1234 | #ifdef CONFIG_PM | 1647 | if (!try_module_get(platform->dev->driver->owner)) |
1235 | /* deferred resume work */ | 1648 | return -ENODEV; |
1236 | INIT_WORK(&card->deferred_resume_work, soc_resume_deferred); | ||
1237 | #endif | ||
1238 | 1649 | ||
1239 | for (i = 0; i < card->num_links; i++) { | 1650 | if (platform->driver->probe) { |
1240 | if (card->dai_link[i].init) { | 1651 | ret = platform->driver->probe(platform); |
1241 | ret = card->dai_link[i].init(codec); | ||
1242 | if (ret < 0) { | 1652 | if (ret < 0) { |
1243 | printk(KERN_ERR "asoc: failed to init %s\n", | 1653 | printk(KERN_ERR "asoc: failed to probe platform %s\n", |
1244 | card->dai_link[i].stream_name); | 1654 | platform->name); |
1245 | continue; | 1655 | module_put(platform->dev->driver->owner); |
1656 | return ret; | ||
1246 | } | 1657 | } |
1247 | } | 1658 | } |
1248 | if (card->dai_link[i].codec_dai->ac97_control) | 1659 | /* mark platform as probed and add to card platform list */ |
1249 | ac97 = 1; | 1660 | platform->probed = 1; |
1661 | list_add(&platform->card_list, &card->platform_dev_list); | ||
1250 | } | 1662 | } |
1251 | 1663 | ||
1252 | snprintf(codec->card->shortname, sizeof(codec->card->shortname), | 1664 | /* probe the CODEC DAI */ |
1253 | "%s", card->name); | 1665 | if (!codec_dai->probed) { |
1254 | snprintf(codec->card->longname, sizeof(codec->card->longname), | 1666 | if (codec_dai->driver->probe) { |
1255 | "%s (%s)", card->name, codec->name); | 1667 | ret = codec_dai->driver->probe(codec_dai); |
1668 | if (ret < 0) { | ||
1669 | printk(KERN_ERR "asoc: failed to probe CODEC DAI %s\n", | ||
1670 | codec_dai->name); | ||
1671 | return ret; | ||
1672 | } | ||
1673 | } | ||
1256 | 1674 | ||
1257 | /* Make sure all DAPM widgets are instantiated */ | 1675 | /* mark cpu_dai as probed and add to card cpu_dai list */ |
1258 | snd_soc_dapm_new_widgets(codec); | 1676 | codec_dai->probed = 1; |
1677 | list_add(&codec_dai->card_list, &card->dai_dev_list); | ||
1678 | } | ||
1679 | |||
1680 | /* DAPM dai link stream work */ | ||
1681 | INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work); | ||
1682 | |||
1683 | ret = soc_post_component_init(card, codec, num, 0); | ||
1684 | if (ret) | ||
1685 | return ret; | ||
1686 | |||
1687 | ret = device_create_file(&rtd->dev, &dev_attr_pmdown_time); | ||
1688 | if (ret < 0) | ||
1689 | printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n"); | ||
1259 | 1690 | ||
1260 | ret = snd_card_register(codec->card); | 1691 | /* create the pcm */ |
1692 | ret = soc_new_pcm(rtd, num); | ||
1261 | if (ret < 0) { | 1693 | if (ret < 0) { |
1262 | printk(KERN_ERR "asoc: failed to register soundcard for %s\n", | 1694 | printk(KERN_ERR "asoc: can't create pcm %s\n", dai_link->stream_name); |
1263 | codec->name); | 1695 | return ret; |
1264 | goto card_err; | ||
1265 | } | 1696 | } |
1266 | 1697 | ||
1267 | mutex_lock(&codec->mutex); | 1698 | /* add platform data for AC97 devices */ |
1699 | if (rtd->codec_dai->driver->ac97_control) | ||
1700 | snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata); | ||
1701 | |||
1702 | return 0; | ||
1703 | } | ||
1704 | |||
1268 | #ifdef CONFIG_SND_SOC_AC97_BUS | 1705 | #ifdef CONFIG_SND_SOC_AC97_BUS |
1706 | static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd) | ||
1707 | { | ||
1708 | int ret; | ||
1709 | |||
1269 | /* Only instantiate AC97 if not already done by the adaptor | 1710 | /* Only instantiate AC97 if not already done by the adaptor |
1270 | * for the generic AC97 subsystem. | 1711 | * for the generic AC97 subsystem. |
1271 | */ | 1712 | */ |
1272 | if (ac97 && strcmp(codec->name, "AC97") != 0) { | 1713 | if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) { |
1273 | ret = soc_ac97_dev_register(codec); | 1714 | /* |
1715 | * It is possible that the AC97 device is already registered to | ||
1716 | * the device subsystem. This happens when the device is created | ||
1717 | * via snd_ac97_mixer(). Currently only SoC codec that does so | ||
1718 | * is the generic AC97 glue but others migh emerge. | ||
1719 | * | ||
1720 | * In those cases we don't try to register the device again. | ||
1721 | */ | ||
1722 | if (!rtd->codec->ac97_created) | ||
1723 | return 0; | ||
1724 | |||
1725 | ret = soc_ac97_dev_register(rtd->codec); | ||
1274 | if (ret < 0) { | 1726 | if (ret < 0) { |
1275 | printk(KERN_ERR "asoc: AC97 device register failed\n"); | 1727 | printk(KERN_ERR "asoc: AC97 device register failed\n"); |
1276 | snd_card_free(codec->card); | 1728 | return ret; |
1277 | mutex_unlock(&codec->mutex); | ||
1278 | goto card_err; | ||
1279 | } | 1729 | } |
1730 | |||
1731 | rtd->codec->ac97_registered = 1; | ||
1280 | } | 1732 | } |
1733 | return 0; | ||
1734 | } | ||
1735 | |||
1736 | static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec) | ||
1737 | { | ||
1738 | if (codec->ac97_registered) { | ||
1739 | soc_ac97_dev_unregister(codec); | ||
1740 | codec->ac97_registered = 0; | ||
1741 | } | ||
1742 | } | ||
1281 | #endif | 1743 | #endif |
1282 | 1744 | ||
1283 | ret = snd_soc_dapm_sys_add(card->socdev->dev); | 1745 | static int soc_probe_aux_dev(struct snd_soc_card *card, int num) |
1284 | if (ret < 0) | 1746 | { |
1285 | printk(KERN_WARNING "asoc: failed to add dapm sysfs entries\n"); | 1747 | struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num]; |
1748 | struct snd_soc_codec *codec; | ||
1749 | int ret = -ENODEV; | ||
1750 | |||
1751 | /* find CODEC from registered CODECs*/ | ||
1752 | list_for_each_entry(codec, &codec_list, list) { | ||
1753 | if (!strcmp(codec->name, aux_dev->codec_name)) { | ||
1754 | if (codec->probed) { | ||
1755 | dev_err(codec->dev, | ||
1756 | "asoc: codec already probed"); | ||
1757 | ret = -EBUSY; | ||
1758 | goto out; | ||
1759 | } | ||
1760 | goto found; | ||
1761 | } | ||
1762 | } | ||
1763 | /* codec not found */ | ||
1764 | dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name); | ||
1765 | goto out; | ||
1286 | 1766 | ||
1287 | ret = device_create_file(card->socdev->dev, &dev_attr_pmdown_time); | 1767 | found: |
1768 | ret = soc_probe_codec(card, codec); | ||
1288 | if (ret < 0) | 1769 | if (ret < 0) |
1289 | printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n"); | 1770 | return ret; |
1290 | 1771 | ||
1291 | ret = device_create_file(card->socdev->dev, &dev_attr_codec_reg); | 1772 | ret = soc_post_component_init(card, codec, num, 1); |
1292 | if (ret < 0) | ||
1293 | printk(KERN_WARNING "asoc: failed to add codec sysfs files\n"); | ||
1294 | 1773 | ||
1295 | soc_init_codec_debugfs(codec); | 1774 | out: |
1296 | mutex_unlock(&codec->mutex); | 1775 | return ret; |
1776 | } | ||
1297 | 1777 | ||
1298 | card->instantiated = 1; | 1778 | static void soc_remove_aux_dev(struct snd_soc_card *card, int num) |
1779 | { | ||
1780 | struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num]; | ||
1781 | struct snd_soc_codec *codec = rtd->codec; | ||
1299 | 1782 | ||
1300 | return; | 1783 | /* unregister the rtd device */ |
1784 | if (rtd->dev_registered) { | ||
1785 | device_remove_file(&rtd->dev, &dev_attr_codec_reg); | ||
1786 | device_unregister(&rtd->dev); | ||
1787 | rtd->dev_registered = 0; | ||
1788 | } | ||
1301 | 1789 | ||
1302 | card_err: | 1790 | if (codec && codec->probed) |
1303 | if (platform->remove) | 1791 | soc_remove_codec(codec); |
1304 | platform->remove(pdev); | 1792 | } |
1305 | 1793 | ||
1306 | platform_err: | 1794 | static int snd_soc_init_codec_cache(struct snd_soc_codec *codec, |
1307 | if (codec_dev->remove) | 1795 | enum snd_soc_compress_type compress_type) |
1308 | codec_dev->remove(pdev); | 1796 | { |
1797 | int ret; | ||
1798 | |||
1799 | if (codec->cache_init) | ||
1800 | return 0; | ||
1309 | 1801 | ||
1310 | cpu_dai_err: | 1802 | /* override the compress_type if necessary */ |
1311 | for (i--; i >= 0; i--) { | 1803 | if (compress_type && codec->compress_type != compress_type) |
1312 | struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai; | 1804 | codec->compress_type = compress_type; |
1313 | if (cpu_dai->remove) | 1805 | ret = snd_soc_cache_init(codec); |
1314 | cpu_dai->remove(pdev, cpu_dai); | 1806 | if (ret < 0) { |
1807 | dev_err(codec->dev, "Failed to set cache compression type: %d\n", | ||
1808 | ret); | ||
1809 | return ret; | ||
1315 | } | 1810 | } |
1811 | codec->cache_init = 1; | ||
1812 | return 0; | ||
1813 | } | ||
1316 | 1814 | ||
1815 | static void snd_soc_instantiate_card(struct snd_soc_card *card) | ||
1816 | { | ||
1817 | struct snd_soc_codec *codec; | ||
1818 | struct snd_soc_codec_conf *codec_conf; | ||
1819 | enum snd_soc_compress_type compress_type; | ||
1820 | int ret, i; | ||
1821 | |||
1822 | mutex_lock(&card->mutex); | ||
1823 | |||
1824 | if (card->instantiated) { | ||
1825 | mutex_unlock(&card->mutex); | ||
1826 | return; | ||
1827 | } | ||
1828 | |||
1829 | /* bind DAIs */ | ||
1830 | for (i = 0; i < card->num_links; i++) | ||
1831 | soc_bind_dai_link(card, i); | ||
1832 | |||
1833 | /* bind completed ? */ | ||
1834 | if (card->num_rtd != card->num_links) { | ||
1835 | mutex_unlock(&card->mutex); | ||
1836 | return; | ||
1837 | } | ||
1838 | |||
1839 | /* initialize the register cache for each available codec */ | ||
1840 | list_for_each_entry(codec, &codec_list, list) { | ||
1841 | if (codec->cache_init) | ||
1842 | continue; | ||
1843 | /* by default we don't override the compress_type */ | ||
1844 | compress_type = 0; | ||
1845 | /* check to see if we need to override the compress_type */ | ||
1846 | for (i = 0; i < card->num_configs; ++i) { | ||
1847 | codec_conf = &card->codec_conf[i]; | ||
1848 | if (!strcmp(codec->name, codec_conf->dev_name)) { | ||
1849 | compress_type = codec_conf->compress_type; | ||
1850 | if (compress_type && compress_type | ||
1851 | != codec->compress_type) | ||
1852 | break; | ||
1853 | } | ||
1854 | } | ||
1855 | ret = snd_soc_init_codec_cache(codec, compress_type); | ||
1856 | if (ret < 0) { | ||
1857 | mutex_unlock(&card->mutex); | ||
1858 | return; | ||
1859 | } | ||
1860 | } | ||
1861 | |||
1862 | /* card bind complete so register a sound card */ | ||
1863 | ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1, | ||
1864 | card->owner, 0, &card->snd_card); | ||
1865 | if (ret < 0) { | ||
1866 | printk(KERN_ERR "asoc: can't create sound card for card %s\n", | ||
1867 | card->name); | ||
1868 | mutex_unlock(&card->mutex); | ||
1869 | return; | ||
1870 | } | ||
1871 | card->snd_card->dev = card->dev; | ||
1872 | |||
1873 | card->dapm.bias_level = SND_SOC_BIAS_OFF; | ||
1874 | card->dapm.dev = card->dev; | ||
1875 | card->dapm.card = card; | ||
1876 | list_add(&card->dapm.list, &card->dapm_list); | ||
1877 | |||
1878 | #ifdef CONFIG_DEBUG_FS | ||
1879 | snd_soc_dapm_debugfs_init(&card->dapm, card->debugfs_card_root); | ||
1880 | #endif | ||
1881 | |||
1882 | #ifdef CONFIG_PM_SLEEP | ||
1883 | /* deferred resume work */ | ||
1884 | INIT_WORK(&card->deferred_resume_work, soc_resume_deferred); | ||
1885 | #endif | ||
1886 | |||
1887 | if (card->dapm_widgets) | ||
1888 | snd_soc_dapm_new_controls(&card->dapm, card->dapm_widgets, | ||
1889 | card->num_dapm_widgets); | ||
1890 | |||
1891 | /* initialise the sound card only once */ | ||
1892 | if (card->probe) { | ||
1893 | ret = card->probe(card); | ||
1894 | if (ret < 0) | ||
1895 | goto card_probe_error; | ||
1896 | } | ||
1897 | |||
1898 | for (i = 0; i < card->num_links; i++) { | ||
1899 | ret = soc_probe_dai_link(card, i); | ||
1900 | if (ret < 0) { | ||
1901 | pr_err("asoc: failed to instantiate card %s: %d\n", | ||
1902 | card->name, ret); | ||
1903 | goto probe_dai_err; | ||
1904 | } | ||
1905 | } | ||
1906 | |||
1907 | for (i = 0; i < card->num_aux_devs; i++) { | ||
1908 | ret = soc_probe_aux_dev(card, i); | ||
1909 | if (ret < 0) { | ||
1910 | pr_err("asoc: failed to add auxiliary devices %s: %d\n", | ||
1911 | card->name, ret); | ||
1912 | goto probe_aux_dev_err; | ||
1913 | } | ||
1914 | } | ||
1915 | |||
1916 | /* We should have a non-codec control add function but we don't */ | ||
1917 | if (card->controls) | ||
1918 | snd_soc_add_controls(list_first_entry(&card->codec_dev_list, | ||
1919 | struct snd_soc_codec, | ||
1920 | card_list), | ||
1921 | card->controls, | ||
1922 | card->num_controls); | ||
1923 | |||
1924 | if (card->dapm_routes) | ||
1925 | snd_soc_dapm_add_routes(&card->dapm, card->dapm_routes, | ||
1926 | card->num_dapm_routes); | ||
1927 | |||
1928 | snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname), | ||
1929 | "%s", card->name); | ||
1930 | snprintf(card->snd_card->longname, sizeof(card->snd_card->longname), | ||
1931 | "%s", card->long_name ? card->long_name : card->name); | ||
1932 | if (card->driver_name) | ||
1933 | strlcpy(card->snd_card->driver, card->driver_name, | ||
1934 | sizeof(card->snd_card->driver)); | ||
1935 | |||
1936 | if (card->late_probe) { | ||
1937 | ret = card->late_probe(card); | ||
1938 | if (ret < 0) { | ||
1939 | dev_err(card->dev, "%s late_probe() failed: %d\n", | ||
1940 | card->name, ret); | ||
1941 | goto probe_aux_dev_err; | ||
1942 | } | ||
1943 | } | ||
1944 | |||
1945 | ret = snd_card_register(card->snd_card); | ||
1946 | if (ret < 0) { | ||
1947 | printk(KERN_ERR "asoc: failed to register soundcard for %s\n", card->name); | ||
1948 | goto probe_aux_dev_err; | ||
1949 | } | ||
1950 | |||
1951 | #ifdef CONFIG_SND_SOC_AC97_BUS | ||
1952 | /* register any AC97 codecs */ | ||
1953 | for (i = 0; i < card->num_rtd; i++) { | ||
1954 | ret = soc_register_ac97_dai_link(&card->rtd[i]); | ||
1955 | if (ret < 0) { | ||
1956 | printk(KERN_ERR "asoc: failed to register AC97 %s\n", card->name); | ||
1957 | while (--i >= 0) | ||
1958 | soc_unregister_ac97_dai_link(card->rtd[i].codec); | ||
1959 | goto probe_aux_dev_err; | ||
1960 | } | ||
1961 | } | ||
1962 | #endif | ||
1963 | |||
1964 | card->instantiated = 1; | ||
1965 | mutex_unlock(&card->mutex); | ||
1966 | return; | ||
1967 | |||
1968 | probe_aux_dev_err: | ||
1969 | for (i = 0; i < card->num_aux_devs; i++) | ||
1970 | soc_remove_aux_dev(card, i); | ||
1971 | |||
1972 | probe_dai_err: | ||
1973 | soc_remove_dai_links(card); | ||
1974 | |||
1975 | card_probe_error: | ||
1317 | if (card->remove) | 1976 | if (card->remove) |
1318 | card->remove(pdev); | 1977 | card->remove(card); |
1978 | |||
1979 | snd_card_free(card->snd_card); | ||
1980 | |||
1981 | mutex_unlock(&card->mutex); | ||
1319 | } | 1982 | } |
1320 | 1983 | ||
1321 | /* | 1984 | /* |
@@ -1332,15 +1995,19 @@ static void snd_soc_instantiate_cards(void) | |||
1332 | /* probes a new socdev */ | 1995 | /* probes a new socdev */ |
1333 | static int soc_probe(struct platform_device *pdev) | 1996 | static int soc_probe(struct platform_device *pdev) |
1334 | { | 1997 | { |
1998 | struct snd_soc_card *card = platform_get_drvdata(pdev); | ||
1335 | int ret = 0; | 1999 | int ret = 0; |
1336 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); | ||
1337 | struct snd_soc_card *card = socdev->card; | ||
1338 | 2000 | ||
1339 | /* Bodge while we push things out of socdev */ | 2001 | /* |
1340 | card->socdev = socdev; | 2002 | * no card, so machine driver should be registering card |
2003 | * we should not be here in that case so ret error | ||
2004 | */ | ||
2005 | if (!card) | ||
2006 | return -EINVAL; | ||
1341 | 2007 | ||
1342 | /* Bodge while we unpick instantiation */ | 2008 | /* Bodge while we unpick instantiation */ |
1343 | card->dev = &pdev->dev; | 2009 | card->dev = &pdev->dev; |
2010 | |||
1344 | ret = snd_soc_register_card(card); | 2011 | ret = snd_soc_register_card(card); |
1345 | if (ret != 0) { | 2012 | if (ret != 0) { |
1346 | dev_err(&pdev->dev, "Failed to register card\n"); | 2013 | dev_err(&pdev->dev, "Failed to register card\n"); |
@@ -1350,122 +2017,124 @@ static int soc_probe(struct platform_device *pdev) | |||
1350 | return 0; | 2017 | return 0; |
1351 | } | 2018 | } |
1352 | 2019 | ||
1353 | /* removes a socdev */ | 2020 | static int soc_cleanup_card_resources(struct snd_soc_card *card) |
1354 | static int soc_remove(struct platform_device *pdev) | ||
1355 | { | 2021 | { |
1356 | int i; | 2022 | int i; |
1357 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); | ||
1358 | struct snd_soc_card *card = socdev->card; | ||
1359 | struct snd_soc_platform *platform = card->platform; | ||
1360 | struct snd_soc_codec_device *codec_dev = socdev->codec_dev; | ||
1361 | 2023 | ||
1362 | if (card->instantiated) { | 2024 | /* make sure any delayed work runs */ |
1363 | run_delayed_work(&card->delayed_work); | 2025 | for (i = 0; i < card->num_rtd; i++) { |
2026 | struct snd_soc_pcm_runtime *rtd = &card->rtd[i]; | ||
2027 | flush_delayed_work_sync(&rtd->delayed_work); | ||
2028 | } | ||
1364 | 2029 | ||
1365 | if (platform->remove) | 2030 | /* remove auxiliary devices */ |
1366 | platform->remove(pdev); | 2031 | for (i = 0; i < card->num_aux_devs; i++) |
2032 | soc_remove_aux_dev(card, i); | ||
1367 | 2033 | ||
1368 | if (codec_dev->remove) | 2034 | /* remove and free each DAI */ |
1369 | codec_dev->remove(pdev); | 2035 | soc_remove_dai_links(card); |
1370 | 2036 | ||
1371 | for (i = 0; i < card->num_links; i++) { | 2037 | soc_cleanup_card_debugfs(card); |
1372 | struct snd_soc_dai *cpu_dai = card->dai_link[i].cpu_dai; | ||
1373 | if (cpu_dai->remove) | ||
1374 | cpu_dai->remove(pdev, cpu_dai); | ||
1375 | } | ||
1376 | 2038 | ||
1377 | if (card->remove) | 2039 | /* remove the card */ |
1378 | card->remove(pdev); | 2040 | if (card->remove) |
1379 | } | 2041 | card->remove(card); |
1380 | 2042 | ||
1381 | snd_soc_unregister_card(card); | 2043 | snd_soc_dapm_free(&card->dapm); |
2044 | |||
2045 | kfree(card->rtd); | ||
2046 | snd_card_free(card->snd_card); | ||
2047 | return 0; | ||
2048 | |||
2049 | } | ||
1382 | 2050 | ||
2051 | /* removes a socdev */ | ||
2052 | static int soc_remove(struct platform_device *pdev) | ||
2053 | { | ||
2054 | struct snd_soc_card *card = platform_get_drvdata(pdev); | ||
2055 | |||
2056 | snd_soc_unregister_card(card); | ||
1383 | return 0; | 2057 | return 0; |
1384 | } | 2058 | } |
1385 | 2059 | ||
1386 | static int soc_poweroff(struct device *dev) | 2060 | int snd_soc_poweroff(struct device *dev) |
1387 | { | 2061 | { |
1388 | struct platform_device *pdev = to_platform_device(dev); | 2062 | struct snd_soc_card *card = dev_get_drvdata(dev); |
1389 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); | 2063 | int i; |
1390 | struct snd_soc_card *card = socdev->card; | ||
1391 | 2064 | ||
1392 | if (!card->instantiated) | 2065 | if (!card->instantiated) |
1393 | return 0; | 2066 | return 0; |
1394 | 2067 | ||
1395 | /* Flush out pmdown_time work - we actually do want to run it | 2068 | /* Flush out pmdown_time work - we actually do want to run it |
1396 | * now, we're shutting down so no imminent restart. */ | 2069 | * now, we're shutting down so no imminent restart. */ |
1397 | run_delayed_work(&card->delayed_work); | 2070 | for (i = 0; i < card->num_rtd; i++) { |
2071 | struct snd_soc_pcm_runtime *rtd = &card->rtd[i]; | ||
2072 | flush_delayed_work_sync(&rtd->delayed_work); | ||
2073 | } | ||
1398 | 2074 | ||
1399 | snd_soc_dapm_shutdown(socdev); | 2075 | snd_soc_dapm_shutdown(card); |
1400 | 2076 | ||
1401 | return 0; | 2077 | return 0; |
1402 | } | 2078 | } |
2079 | EXPORT_SYMBOL_GPL(snd_soc_poweroff); | ||
1403 | 2080 | ||
1404 | static const struct dev_pm_ops soc_pm_ops = { | 2081 | const struct dev_pm_ops snd_soc_pm_ops = { |
1405 | .suspend = soc_suspend, | 2082 | .suspend = snd_soc_suspend, |
1406 | .resume = soc_resume, | 2083 | .resume = snd_soc_resume, |
1407 | .poweroff = soc_poweroff, | 2084 | .poweroff = snd_soc_poweroff, |
1408 | }; | 2085 | }; |
2086 | EXPORT_SYMBOL_GPL(snd_soc_pm_ops); | ||
1409 | 2087 | ||
1410 | /* ASoC platform driver */ | 2088 | /* ASoC platform driver */ |
1411 | static struct platform_driver soc_driver = { | 2089 | static struct platform_driver soc_driver = { |
1412 | .driver = { | 2090 | .driver = { |
1413 | .name = "soc-audio", | 2091 | .name = "soc-audio", |
1414 | .owner = THIS_MODULE, | 2092 | .owner = THIS_MODULE, |
1415 | .pm = &soc_pm_ops, | 2093 | .pm = &snd_soc_pm_ops, |
1416 | }, | 2094 | }, |
1417 | .probe = soc_probe, | 2095 | .probe = soc_probe, |
1418 | .remove = soc_remove, | 2096 | .remove = soc_remove, |
1419 | }; | 2097 | }; |
1420 | 2098 | ||
1421 | /* create a new pcm */ | 2099 | /* create a new pcm */ |
1422 | static int soc_new_pcm(struct snd_soc_device *socdev, | 2100 | static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num) |
1423 | struct snd_soc_dai_link *dai_link, int num) | 2101 | { |
1424 | { | 2102 | struct snd_soc_codec *codec = rtd->codec; |
1425 | struct snd_soc_card *card = socdev->card; | 2103 | struct snd_soc_platform *platform = rtd->platform; |
1426 | struct snd_soc_codec *codec = card->codec; | 2104 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
1427 | struct snd_soc_platform *platform = card->platform; | 2105 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
1428 | struct snd_soc_dai *codec_dai = dai_link->codec_dai; | ||
1429 | struct snd_soc_dai *cpu_dai = dai_link->cpu_dai; | ||
1430 | struct snd_soc_pcm_runtime *rtd; | ||
1431 | struct snd_pcm *pcm; | 2106 | struct snd_pcm *pcm; |
1432 | char new_name[64]; | 2107 | char new_name[64]; |
1433 | int ret = 0, playback = 0, capture = 0; | 2108 | int ret = 0, playback = 0, capture = 0; |
1434 | 2109 | ||
1435 | rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime), GFP_KERNEL); | ||
1436 | if (rtd == NULL) | ||
1437 | return -ENOMEM; | ||
1438 | |||
1439 | rtd->dai = dai_link; | ||
1440 | rtd->socdev = socdev; | ||
1441 | codec_dai->codec = card->codec; | ||
1442 | |||
1443 | /* check client and interface hw capabilities */ | 2110 | /* check client and interface hw capabilities */ |
1444 | snprintf(new_name, sizeof(new_name), "%s %s-%d", | 2111 | snprintf(new_name, sizeof(new_name), "%s %s-%d", |
1445 | dai_link->stream_name, codec_dai->name, num); | 2112 | rtd->dai_link->stream_name, codec_dai->name, num); |
1446 | 2113 | ||
1447 | if (codec_dai->playback.channels_min) | 2114 | if (codec_dai->driver->playback.channels_min) |
1448 | playback = 1; | 2115 | playback = 1; |
1449 | if (codec_dai->capture.channels_min) | 2116 | if (codec_dai->driver->capture.channels_min) |
1450 | capture = 1; | 2117 | capture = 1; |
1451 | 2118 | ||
1452 | ret = snd_pcm_new(codec->card, new_name, codec->pcm_devs++, playback, | 2119 | dev_dbg(rtd->card->dev, "registered pcm #%d %s\n",num,new_name); |
1453 | capture, &pcm); | 2120 | ret = snd_pcm_new(rtd->card->snd_card, new_name, |
2121 | num, playback, capture, &pcm); | ||
1454 | if (ret < 0) { | 2122 | if (ret < 0) { |
1455 | printk(KERN_ERR "asoc: can't create pcm for codec %s\n", | 2123 | printk(KERN_ERR "asoc: can't create pcm for codec %s\n", codec->name); |
1456 | codec->name); | ||
1457 | kfree(rtd); | ||
1458 | return ret; | 2124 | return ret; |
1459 | } | 2125 | } |
1460 | 2126 | ||
1461 | dai_link->pcm = pcm; | 2127 | rtd->pcm = pcm; |
1462 | pcm->private_data = rtd; | 2128 | pcm->private_data = rtd; |
1463 | soc_pcm_ops.mmap = platform->pcm_ops->mmap; | 2129 | if (platform->driver->ops) { |
1464 | soc_pcm_ops.ioctl = platform->pcm_ops->ioctl; | 2130 | soc_pcm_ops.mmap = platform->driver->ops->mmap; |
1465 | soc_pcm_ops.copy = platform->pcm_ops->copy; | 2131 | soc_pcm_ops.pointer = platform->driver->ops->pointer; |
1466 | soc_pcm_ops.silence = platform->pcm_ops->silence; | 2132 | soc_pcm_ops.ioctl = platform->driver->ops->ioctl; |
1467 | soc_pcm_ops.ack = platform->pcm_ops->ack; | 2133 | soc_pcm_ops.copy = platform->driver->ops->copy; |
1468 | soc_pcm_ops.page = platform->pcm_ops->page; | 2134 | soc_pcm_ops.silence = platform->driver->ops->silence; |
2135 | soc_pcm_ops.ack = platform->driver->ops->ack; | ||
2136 | soc_pcm_ops.page = platform->driver->ops->page; | ||
2137 | } | ||
1469 | 2138 | ||
1470 | if (playback) | 2139 | if (playback) |
1471 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops); | 2140 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops); |
@@ -1473,14 +2142,16 @@ static int soc_new_pcm(struct snd_soc_device *socdev, | |||
1473 | if (capture) | 2142 | if (capture) |
1474 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops); | 2143 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops); |
1475 | 2144 | ||
1476 | ret = platform->pcm_new(codec->card, codec_dai, pcm); | 2145 | if (platform->driver->pcm_new) { |
1477 | if (ret < 0) { | 2146 | ret = platform->driver->pcm_new(rtd->card->snd_card, |
1478 | printk(KERN_ERR "asoc: platform pcm constructor failed\n"); | 2147 | codec_dai, pcm); |
1479 | kfree(rtd); | 2148 | if (ret < 0) { |
1480 | return ret; | 2149 | pr_err("asoc: platform pcm constructor failed\n"); |
2150 | return ret; | ||
2151 | } | ||
1481 | } | 2152 | } |
1482 | 2153 | ||
1483 | pcm->private_free = platform->pcm_free; | 2154 | pcm->private_free = platform->driver->pcm_free; |
1484 | printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name, | 2155 | printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name, |
1485 | cpu_dai->name); | 2156 | cpu_dai->name); |
1486 | return ret; | 2157 | return ret; |
@@ -1494,16 +2165,53 @@ static int soc_new_pcm(struct snd_soc_device *socdev, | |||
1494 | * | 2165 | * |
1495 | * Boolean function indiciating if a CODEC register is volatile. | 2166 | * Boolean function indiciating if a CODEC register is volatile. |
1496 | */ | 2167 | */ |
1497 | int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, int reg) | 2168 | int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, |
2169 | unsigned int reg) | ||
1498 | { | 2170 | { |
1499 | if (codec->volatile_register) | 2171 | if (codec->volatile_register) |
1500 | return codec->volatile_register(reg); | 2172 | return codec->volatile_register(codec, reg); |
1501 | else | 2173 | else |
1502 | return 0; | 2174 | return 0; |
1503 | } | 2175 | } |
1504 | EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register); | 2176 | EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register); |
1505 | 2177 | ||
1506 | /** | 2178 | /** |
2179 | * snd_soc_codec_readable_register: Report if a register is readable. | ||
2180 | * | ||
2181 | * @codec: CODEC to query. | ||
2182 | * @reg: Register to query. | ||
2183 | * | ||
2184 | * Boolean function indicating if a CODEC register is readable. | ||
2185 | */ | ||
2186 | int snd_soc_codec_readable_register(struct snd_soc_codec *codec, | ||
2187 | unsigned int reg) | ||
2188 | { | ||
2189 | if (codec->readable_register) | ||
2190 | return codec->readable_register(codec, reg); | ||
2191 | else | ||
2192 | return 0; | ||
2193 | } | ||
2194 | EXPORT_SYMBOL_GPL(snd_soc_codec_readable_register); | ||
2195 | |||
2196 | /** | ||
2197 | * snd_soc_codec_writable_register: Report if a register is writable. | ||
2198 | * | ||
2199 | * @codec: CODEC to query. | ||
2200 | * @reg: Register to query. | ||
2201 | * | ||
2202 | * Boolean function indicating if a CODEC register is writable. | ||
2203 | */ | ||
2204 | int snd_soc_codec_writable_register(struct snd_soc_codec *codec, | ||
2205 | unsigned int reg) | ||
2206 | { | ||
2207 | if (codec->writable_register) | ||
2208 | return codec->writable_register(codec, reg); | ||
2209 | else | ||
2210 | return 0; | ||
2211 | } | ||
2212 | EXPORT_SYMBOL_GPL(snd_soc_codec_writable_register); | ||
2213 | |||
2214 | /** | ||
1507 | * snd_soc_new_ac97_codec - initailise AC97 device | 2215 | * snd_soc_new_ac97_codec - initailise AC97 device |
1508 | * @codec: audio codec | 2216 | * @codec: audio codec |
1509 | * @ops: AC97 bus operations | 2217 | * @ops: AC97 bus operations |
@@ -1532,7 +2240,13 @@ int snd_soc_new_ac97_codec(struct snd_soc_codec *codec, | |||
1532 | 2240 | ||
1533 | codec->ac97->bus->ops = ops; | 2241 | codec->ac97->bus->ops = ops; |
1534 | codec->ac97->num = num; | 2242 | codec->ac97->num = num; |
1535 | codec->dev = &codec->ac97->dev; | 2243 | |
2244 | /* | ||
2245 | * Mark the AC97 device to be created by us. This way we ensure that the | ||
2246 | * device will be registered with the device subsystem later on. | ||
2247 | */ | ||
2248 | codec->ac97_created = 1; | ||
2249 | |||
1536 | mutex_unlock(&codec->mutex); | 2250 | mutex_unlock(&codec->mutex); |
1537 | return 0; | 2251 | return 0; |
1538 | } | 2252 | } |
@@ -1547,13 +2261,45 @@ EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec); | |||
1547 | void snd_soc_free_ac97_codec(struct snd_soc_codec *codec) | 2261 | void snd_soc_free_ac97_codec(struct snd_soc_codec *codec) |
1548 | { | 2262 | { |
1549 | mutex_lock(&codec->mutex); | 2263 | mutex_lock(&codec->mutex); |
2264 | #ifdef CONFIG_SND_SOC_AC97_BUS | ||
2265 | soc_unregister_ac97_dai_link(codec); | ||
2266 | #endif | ||
1550 | kfree(codec->ac97->bus); | 2267 | kfree(codec->ac97->bus); |
1551 | kfree(codec->ac97); | 2268 | kfree(codec->ac97); |
1552 | codec->ac97 = NULL; | 2269 | codec->ac97 = NULL; |
2270 | codec->ac97_created = 0; | ||
1553 | mutex_unlock(&codec->mutex); | 2271 | mutex_unlock(&codec->mutex); |
1554 | } | 2272 | } |
1555 | EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec); | 2273 | EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec); |
1556 | 2274 | ||
2275 | unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg) | ||
2276 | { | ||
2277 | unsigned int ret; | ||
2278 | |||
2279 | ret = codec->read(codec, reg); | ||
2280 | dev_dbg(codec->dev, "read %x => %x\n", reg, ret); | ||
2281 | trace_snd_soc_reg_read(codec, reg, ret); | ||
2282 | |||
2283 | return ret; | ||
2284 | } | ||
2285 | EXPORT_SYMBOL_GPL(snd_soc_read); | ||
2286 | |||
2287 | unsigned int snd_soc_write(struct snd_soc_codec *codec, | ||
2288 | unsigned int reg, unsigned int val) | ||
2289 | { | ||
2290 | dev_dbg(codec->dev, "write %x = %x\n", reg, val); | ||
2291 | trace_snd_soc_reg_write(codec, reg, val); | ||
2292 | return codec->write(codec, reg, val); | ||
2293 | } | ||
2294 | EXPORT_SYMBOL_GPL(snd_soc_write); | ||
2295 | |||
2296 | unsigned int snd_soc_bulk_write_raw(struct snd_soc_codec *codec, | ||
2297 | unsigned int reg, const void *data, size_t len) | ||
2298 | { | ||
2299 | return codec->bulk_write_raw(codec, reg, data, len); | ||
2300 | } | ||
2301 | EXPORT_SYMBOL_GPL(snd_soc_bulk_write_raw); | ||
2302 | |||
1557 | /** | 2303 | /** |
1558 | * snd_soc_update_bits - update codec register bits | 2304 | * snd_soc_update_bits - update codec register bits |
1559 | * @codec: audio codec | 2305 | * @codec: audio codec |
@@ -1563,19 +2309,27 @@ EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec); | |||
1563 | * | 2309 | * |
1564 | * Writes new register value. | 2310 | * Writes new register value. |
1565 | * | 2311 | * |
1566 | * Returns 1 for change else 0. | 2312 | * Returns 1 for change, 0 for no change, or negative error code. |
1567 | */ | 2313 | */ |
1568 | int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg, | 2314 | int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg, |
1569 | unsigned int mask, unsigned int value) | 2315 | unsigned int mask, unsigned int value) |
1570 | { | 2316 | { |
1571 | int change; | 2317 | int change; |
1572 | unsigned int old, new; | 2318 | unsigned int old, new; |
2319 | int ret; | ||
1573 | 2320 | ||
1574 | old = snd_soc_read(codec, reg); | 2321 | ret = snd_soc_read(codec, reg); |
2322 | if (ret < 0) | ||
2323 | return ret; | ||
2324 | |||
2325 | old = ret; | ||
1575 | new = (old & ~mask) | value; | 2326 | new = (old & ~mask) | value; |
1576 | change = old != new; | 2327 | change = old != new; |
1577 | if (change) | 2328 | if (change) { |
1578 | snd_soc_write(codec, reg, new); | 2329 | ret = snd_soc_write(codec, reg, new); |
2330 | if (ret < 0) | ||
2331 | return ret; | ||
2332 | } | ||
1579 | 2333 | ||
1580 | return change; | 2334 | return change; |
1581 | } | 2335 | } |
@@ -1633,95 +2387,6 @@ int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg, | |||
1633 | EXPORT_SYMBOL_GPL(snd_soc_test_bits); | 2387 | EXPORT_SYMBOL_GPL(snd_soc_test_bits); |
1634 | 2388 | ||
1635 | /** | 2389 | /** |
1636 | * snd_soc_new_pcms - create new sound card and pcms | ||
1637 | * @socdev: the SoC audio device | ||
1638 | * @idx: ALSA card index | ||
1639 | * @xid: card identification | ||
1640 | * | ||
1641 | * Create a new sound card based upon the codec and interface pcms. | ||
1642 | * | ||
1643 | * Returns 0 for success, else error. | ||
1644 | */ | ||
1645 | int snd_soc_new_pcms(struct snd_soc_device *socdev, int idx, const char *xid) | ||
1646 | { | ||
1647 | struct snd_soc_card *card = socdev->card; | ||
1648 | struct snd_soc_codec *codec = card->codec; | ||
1649 | int ret, i; | ||
1650 | |||
1651 | mutex_lock(&codec->mutex); | ||
1652 | |||
1653 | /* register a sound card */ | ||
1654 | ret = snd_card_create(idx, xid, codec->owner, 0, &codec->card); | ||
1655 | if (ret < 0) { | ||
1656 | printk(KERN_ERR "asoc: can't create sound card for codec %s\n", | ||
1657 | codec->name); | ||
1658 | mutex_unlock(&codec->mutex); | ||
1659 | return ret; | ||
1660 | } | ||
1661 | |||
1662 | codec->socdev = socdev; | ||
1663 | codec->card->dev = socdev->dev; | ||
1664 | codec->card->private_data = codec; | ||
1665 | strncpy(codec->card->driver, codec->name, sizeof(codec->card->driver)); | ||
1666 | |||
1667 | /* create the pcms */ | ||
1668 | for (i = 0; i < card->num_links; i++) { | ||
1669 | ret = soc_new_pcm(socdev, &card->dai_link[i], i); | ||
1670 | if (ret < 0) { | ||
1671 | printk(KERN_ERR "asoc: can't create pcm %s\n", | ||
1672 | card->dai_link[i].stream_name); | ||
1673 | mutex_unlock(&codec->mutex); | ||
1674 | return ret; | ||
1675 | } | ||
1676 | /* Check for codec->ac97 to handle the ac97.c fun */ | ||
1677 | if (card->dai_link[i].codec_dai->ac97_control && codec->ac97) { | ||
1678 | snd_ac97_dev_add_pdata(codec->ac97, | ||
1679 | card->dai_link[i].cpu_dai->ac97_pdata); | ||
1680 | } | ||
1681 | } | ||
1682 | |||
1683 | mutex_unlock(&codec->mutex); | ||
1684 | return ret; | ||
1685 | } | ||
1686 | EXPORT_SYMBOL_GPL(snd_soc_new_pcms); | ||
1687 | |||
1688 | /** | ||
1689 | * snd_soc_free_pcms - free sound card and pcms | ||
1690 | * @socdev: the SoC audio device | ||
1691 | * | ||
1692 | * Frees sound card and pcms associated with the socdev. | ||
1693 | * Also unregister the codec if it is an AC97 device. | ||
1694 | */ | ||
1695 | void snd_soc_free_pcms(struct snd_soc_device *socdev) | ||
1696 | { | ||
1697 | struct snd_soc_codec *codec = socdev->card->codec; | ||
1698 | #ifdef CONFIG_SND_SOC_AC97_BUS | ||
1699 | struct snd_soc_dai *codec_dai; | ||
1700 | int i; | ||
1701 | #endif | ||
1702 | |||
1703 | mutex_lock(&codec->mutex); | ||
1704 | soc_cleanup_codec_debugfs(codec); | ||
1705 | #ifdef CONFIG_SND_SOC_AC97_BUS | ||
1706 | for (i = 0; i < codec->num_dai; i++) { | ||
1707 | codec_dai = &codec->dai[i]; | ||
1708 | if (codec_dai->ac97_control && codec->ac97 && | ||
1709 | strcmp(codec->name, "AC97") != 0) { | ||
1710 | soc_ac97_dev_unregister(codec); | ||
1711 | goto free_card; | ||
1712 | } | ||
1713 | } | ||
1714 | free_card: | ||
1715 | #endif | ||
1716 | |||
1717 | if (codec->card) | ||
1718 | snd_card_free(codec->card); | ||
1719 | device_remove_file(socdev->dev, &dev_attr_codec_reg); | ||
1720 | mutex_unlock(&codec->mutex); | ||
1721 | } | ||
1722 | EXPORT_SYMBOL_GPL(snd_soc_free_pcms); | ||
1723 | |||
1724 | /** | ||
1725 | * snd_soc_set_runtime_hwparams - set the runtime hardware parameters | 2390 | * snd_soc_set_runtime_hwparams - set the runtime hardware parameters |
1726 | * @substream: the pcm substream | 2391 | * @substream: the pcm substream |
1727 | * @hw: the hardware parameters | 2392 | * @hw: the hardware parameters |
@@ -1749,22 +2414,45 @@ EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams); | |||
1749 | * @_template: control template | 2414 | * @_template: control template |
1750 | * @data: control private data | 2415 | * @data: control private data |
1751 | * @long_name: control long name | 2416 | * @long_name: control long name |
2417 | * @prefix: control name prefix | ||
1752 | * | 2418 | * |
1753 | * Create a new mixer control from a template control. | 2419 | * Create a new mixer control from a template control. |
1754 | * | 2420 | * |
1755 | * Returns 0 for success, else error. | 2421 | * Returns 0 for success, else error. |
1756 | */ | 2422 | */ |
1757 | struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template, | 2423 | struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template, |
1758 | void *data, char *long_name) | 2424 | void *data, char *long_name, |
2425 | const char *prefix) | ||
1759 | { | 2426 | { |
1760 | struct snd_kcontrol_new template; | 2427 | struct snd_kcontrol_new template; |
2428 | struct snd_kcontrol *kcontrol; | ||
2429 | char *name = NULL; | ||
2430 | int name_len; | ||
1761 | 2431 | ||
1762 | memcpy(&template, _template, sizeof(template)); | 2432 | memcpy(&template, _template, sizeof(template)); |
1763 | if (long_name) | ||
1764 | template.name = long_name; | ||
1765 | template.index = 0; | 2433 | template.index = 0; |
1766 | 2434 | ||
1767 | return snd_ctl_new1(&template, data); | 2435 | if (!long_name) |
2436 | long_name = template.name; | ||
2437 | |||
2438 | if (prefix) { | ||
2439 | name_len = strlen(long_name) + strlen(prefix) + 2; | ||
2440 | name = kmalloc(name_len, GFP_ATOMIC); | ||
2441 | if (!name) | ||
2442 | return NULL; | ||
2443 | |||
2444 | snprintf(name, name_len, "%s %s", prefix, long_name); | ||
2445 | |||
2446 | template.name = name; | ||
2447 | } else { | ||
2448 | template.name = long_name; | ||
2449 | } | ||
2450 | |||
2451 | kcontrol = snd_ctl_new1(&template, data); | ||
2452 | |||
2453 | kfree(name); | ||
2454 | |||
2455 | return kcontrol; | ||
1768 | } | 2456 | } |
1769 | EXPORT_SYMBOL_GPL(snd_soc_cnew); | 2457 | EXPORT_SYMBOL_GPL(snd_soc_cnew); |
1770 | 2458 | ||
@@ -1782,15 +2470,17 @@ EXPORT_SYMBOL_GPL(snd_soc_cnew); | |||
1782 | int snd_soc_add_controls(struct snd_soc_codec *codec, | 2470 | int snd_soc_add_controls(struct snd_soc_codec *codec, |
1783 | const struct snd_kcontrol_new *controls, int num_controls) | 2471 | const struct snd_kcontrol_new *controls, int num_controls) |
1784 | { | 2472 | { |
1785 | struct snd_card *card = codec->card; | 2473 | struct snd_card *card = codec->card->snd_card; |
1786 | int err, i; | 2474 | int err, i; |
1787 | 2475 | ||
1788 | for (i = 0; i < num_controls; i++) { | 2476 | for (i = 0; i < num_controls; i++) { |
1789 | const struct snd_kcontrol_new *control = &controls[i]; | 2477 | const struct snd_kcontrol_new *control = &controls[i]; |
1790 | err = snd_ctl_add(card, snd_soc_cnew(control, codec, NULL)); | 2478 | err = snd_ctl_add(card, snd_soc_cnew(control, codec, |
2479 | control->name, | ||
2480 | codec->name_prefix)); | ||
1791 | if (err < 0) { | 2481 | if (err < 0) { |
1792 | dev_err(codec->dev, "%s: Failed to add %s\n", | 2482 | dev_err(codec->dev, "%s: Failed to add %s: %d\n", |
1793 | codec->name, control->name); | 2483 | codec->name, control->name, err); |
1794 | return err; | 2484 | return err; |
1795 | } | 2485 | } |
1796 | } | 2486 | } |
@@ -2337,7 +3027,7 @@ EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8); | |||
2337 | int snd_soc_limit_volume(struct snd_soc_codec *codec, | 3027 | int snd_soc_limit_volume(struct snd_soc_codec *codec, |
2338 | const char *name, int max) | 3028 | const char *name, int max) |
2339 | { | 3029 | { |
2340 | struct snd_card *card = codec->card; | 3030 | struct snd_card *card = codec->card->snd_card; |
2341 | struct snd_kcontrol *kctl; | 3031 | struct snd_kcontrol *kctl; |
2342 | struct soc_mixer_control *mc; | 3032 | struct soc_mixer_control *mc; |
2343 | int found = 0; | 3033 | int found = 0; |
@@ -2469,14 +3159,36 @@ EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx); | |||
2469 | int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id, | 3159 | int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id, |
2470 | unsigned int freq, int dir) | 3160 | unsigned int freq, int dir) |
2471 | { | 3161 | { |
2472 | if (dai->ops && dai->ops->set_sysclk) | 3162 | if (dai->driver && dai->driver->ops->set_sysclk) |
2473 | return dai->ops->set_sysclk(dai, clk_id, freq, dir); | 3163 | return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir); |
3164 | else if (dai->codec && dai->codec->driver->set_sysclk) | ||
3165 | return dai->codec->driver->set_sysclk(dai->codec, clk_id, | ||
3166 | freq, dir); | ||
2474 | else | 3167 | else |
2475 | return -EINVAL; | 3168 | return -EINVAL; |
2476 | } | 3169 | } |
2477 | EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk); | 3170 | EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk); |
2478 | 3171 | ||
2479 | /** | 3172 | /** |
3173 | * snd_soc_codec_set_sysclk - configure CODEC system or master clock. | ||
3174 | * @codec: CODEC | ||
3175 | * @clk_id: DAI specific clock ID | ||
3176 | * @freq: new clock frequency in Hz | ||
3177 | * @dir: new clock direction - input/output. | ||
3178 | * | ||
3179 | * Configures the CODEC master (MCLK) or system (SYSCLK) clocking. | ||
3180 | */ | ||
3181 | int snd_soc_codec_set_sysclk(struct snd_soc_codec *codec, int clk_id, | ||
3182 | unsigned int freq, int dir) | ||
3183 | { | ||
3184 | if (codec->driver->set_sysclk) | ||
3185 | return codec->driver->set_sysclk(codec, clk_id, freq, dir); | ||
3186 | else | ||
3187 | return -EINVAL; | ||
3188 | } | ||
3189 | EXPORT_SYMBOL_GPL(snd_soc_codec_set_sysclk); | ||
3190 | |||
3191 | /** | ||
2480 | * snd_soc_dai_set_clkdiv - configure DAI clock dividers. | 3192 | * snd_soc_dai_set_clkdiv - configure DAI clock dividers. |
2481 | * @dai: DAI | 3193 | * @dai: DAI |
2482 | * @div_id: DAI specific clock divider ID | 3194 | * @div_id: DAI specific clock divider ID |
@@ -2489,8 +3201,8 @@ EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk); | |||
2489 | int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai, | 3201 | int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai, |
2490 | int div_id, int div) | 3202 | int div_id, int div) |
2491 | { | 3203 | { |
2492 | if (dai->ops && dai->ops->set_clkdiv) | 3204 | if (dai->driver && dai->driver->ops->set_clkdiv) |
2493 | return dai->ops->set_clkdiv(dai, div_id, div); | 3205 | return dai->driver->ops->set_clkdiv(dai, div_id, div); |
2494 | else | 3206 | else |
2495 | return -EINVAL; | 3207 | return -EINVAL; |
2496 | } | 3208 | } |
@@ -2509,14 +3221,38 @@ EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv); | |||
2509 | int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source, | 3221 | int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source, |
2510 | unsigned int freq_in, unsigned int freq_out) | 3222 | unsigned int freq_in, unsigned int freq_out) |
2511 | { | 3223 | { |
2512 | if (dai->ops && dai->ops->set_pll) | 3224 | if (dai->driver && dai->driver->ops->set_pll) |
2513 | return dai->ops->set_pll(dai, pll_id, source, | 3225 | return dai->driver->ops->set_pll(dai, pll_id, source, |
2514 | freq_in, freq_out); | 3226 | freq_in, freq_out); |
3227 | else if (dai->codec && dai->codec->driver->set_pll) | ||
3228 | return dai->codec->driver->set_pll(dai->codec, pll_id, source, | ||
3229 | freq_in, freq_out); | ||
2515 | else | 3230 | else |
2516 | return -EINVAL; | 3231 | return -EINVAL; |
2517 | } | 3232 | } |
2518 | EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll); | 3233 | EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll); |
2519 | 3234 | ||
3235 | /* | ||
3236 | * snd_soc_codec_set_pll - configure codec PLL. | ||
3237 | * @codec: CODEC | ||
3238 | * @pll_id: DAI specific PLL ID | ||
3239 | * @source: DAI specific source for the PLL | ||
3240 | * @freq_in: PLL input clock frequency in Hz | ||
3241 | * @freq_out: requested PLL output clock frequency in Hz | ||
3242 | * | ||
3243 | * Configures and enables PLL to generate output clock based on input clock. | ||
3244 | */ | ||
3245 | int snd_soc_codec_set_pll(struct snd_soc_codec *codec, int pll_id, int source, | ||
3246 | unsigned int freq_in, unsigned int freq_out) | ||
3247 | { | ||
3248 | if (codec->driver->set_pll) | ||
3249 | return codec->driver->set_pll(codec, pll_id, source, | ||
3250 | freq_in, freq_out); | ||
3251 | else | ||
3252 | return -EINVAL; | ||
3253 | } | ||
3254 | EXPORT_SYMBOL_GPL(snd_soc_codec_set_pll); | ||
3255 | |||
2520 | /** | 3256 | /** |
2521 | * snd_soc_dai_set_fmt - configure DAI hardware audio format. | 3257 | * snd_soc_dai_set_fmt - configure DAI hardware audio format. |
2522 | * @dai: DAI | 3258 | * @dai: DAI |
@@ -2526,8 +3262,8 @@ EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll); | |||
2526 | */ | 3262 | */ |
2527 | int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt) | 3263 | int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt) |
2528 | { | 3264 | { |
2529 | if (dai->ops && dai->ops->set_fmt) | 3265 | if (dai->driver && dai->driver->ops->set_fmt) |
2530 | return dai->ops->set_fmt(dai, fmt); | 3266 | return dai->driver->ops->set_fmt(dai, fmt); |
2531 | else | 3267 | else |
2532 | return -EINVAL; | 3268 | return -EINVAL; |
2533 | } | 3269 | } |
@@ -2547,8 +3283,8 @@ EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt); | |||
2547 | int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai, | 3283 | int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai, |
2548 | unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width) | 3284 | unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width) |
2549 | { | 3285 | { |
2550 | if (dai->ops && dai->ops->set_tdm_slot) | 3286 | if (dai->driver && dai->driver->ops->set_tdm_slot) |
2551 | return dai->ops->set_tdm_slot(dai, tx_mask, rx_mask, | 3287 | return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask, |
2552 | slots, slot_width); | 3288 | slots, slot_width); |
2553 | else | 3289 | else |
2554 | return -EINVAL; | 3290 | return -EINVAL; |
@@ -2571,8 +3307,8 @@ int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai, | |||
2571 | unsigned int tx_num, unsigned int *tx_slot, | 3307 | unsigned int tx_num, unsigned int *tx_slot, |
2572 | unsigned int rx_num, unsigned int *rx_slot) | 3308 | unsigned int rx_num, unsigned int *rx_slot) |
2573 | { | 3309 | { |
2574 | if (dai->ops && dai->ops->set_channel_map) | 3310 | if (dai->driver && dai->driver->ops->set_channel_map) |
2575 | return dai->ops->set_channel_map(dai, tx_num, tx_slot, | 3311 | return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot, |
2576 | rx_num, rx_slot); | 3312 | rx_num, rx_slot); |
2577 | else | 3313 | else |
2578 | return -EINVAL; | 3314 | return -EINVAL; |
@@ -2588,8 +3324,8 @@ EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map); | |||
2588 | */ | 3324 | */ |
2589 | int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate) | 3325 | int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate) |
2590 | { | 3326 | { |
2591 | if (dai->ops && dai->ops->set_tristate) | 3327 | if (dai->driver && dai->driver->ops->set_tristate) |
2592 | return dai->ops->set_tristate(dai, tristate); | 3328 | return dai->driver->ops->set_tristate(dai, tristate); |
2593 | else | 3329 | else |
2594 | return -EINVAL; | 3330 | return -EINVAL; |
2595 | } | 3331 | } |
@@ -2604,8 +3340,8 @@ EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate); | |||
2604 | */ | 3340 | */ |
2605 | int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute) | 3341 | int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute) |
2606 | { | 3342 | { |
2607 | if (dai->ops && dai->ops->digital_mute) | 3343 | if (dai->driver && dai->driver->ops->digital_mute) |
2608 | return dai->ops->digital_mute(dai, mute); | 3344 | return dai->driver->ops->digital_mute(dai, mute); |
2609 | else | 3345 | else |
2610 | return -EINVAL; | 3346 | return -EINVAL; |
2611 | } | 3347 | } |
@@ -2616,17 +3352,33 @@ EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute); | |||
2616 | * | 3352 | * |
2617 | * @card: Card to register | 3353 | * @card: Card to register |
2618 | * | 3354 | * |
2619 | * Note that currently this is an internal only function: it will be | ||
2620 | * exposed to machine drivers after further backporting of ASoC v2 | ||
2621 | * registration APIs. | ||
2622 | */ | 3355 | */ |
2623 | static int snd_soc_register_card(struct snd_soc_card *card) | 3356 | int snd_soc_register_card(struct snd_soc_card *card) |
2624 | { | 3357 | { |
3358 | int i; | ||
3359 | |||
2625 | if (!card->name || !card->dev) | 3360 | if (!card->name || !card->dev) |
2626 | return -EINVAL; | 3361 | return -EINVAL; |
2627 | 3362 | ||
3363 | dev_set_drvdata(card->dev, card); | ||
3364 | |||
3365 | snd_soc_initialize_card_lists(card); | ||
3366 | |||
3367 | soc_init_card_debugfs(card); | ||
3368 | |||
3369 | card->rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime) * | ||
3370 | (card->num_links + card->num_aux_devs), | ||
3371 | GFP_KERNEL); | ||
3372 | if (card->rtd == NULL) | ||
3373 | return -ENOMEM; | ||
3374 | card->rtd_aux = &card->rtd[card->num_links]; | ||
3375 | |||
3376 | for (i = 0; i < card->num_links; i++) | ||
3377 | card->rtd[i].dai_link = &card->dai_link[i]; | ||
3378 | |||
2628 | INIT_LIST_HEAD(&card->list); | 3379 | INIT_LIST_HEAD(&card->list); |
2629 | card->instantiated = 0; | 3380 | card->instantiated = 0; |
3381 | mutex_init(&card->mutex); | ||
2630 | 3382 | ||
2631 | mutex_lock(&client_mutex); | 3383 | mutex_lock(&client_mutex); |
2632 | list_add(&card->list, &card_list); | 3384 | list_add(&card->list, &card_list); |
@@ -2637,45 +3389,113 @@ static int snd_soc_register_card(struct snd_soc_card *card) | |||
2637 | 3389 | ||
2638 | return 0; | 3390 | return 0; |
2639 | } | 3391 | } |
3392 | EXPORT_SYMBOL_GPL(snd_soc_register_card); | ||
2640 | 3393 | ||
2641 | /** | 3394 | /** |
2642 | * snd_soc_unregister_card - Unregister a card with the ASoC core | 3395 | * snd_soc_unregister_card - Unregister a card with the ASoC core |
2643 | * | 3396 | * |
2644 | * @card: Card to unregister | 3397 | * @card: Card to unregister |
2645 | * | 3398 | * |
2646 | * Note that currently this is an internal only function: it will be | ||
2647 | * exposed to machine drivers after further backporting of ASoC v2 | ||
2648 | * registration APIs. | ||
2649 | */ | 3399 | */ |
2650 | static int snd_soc_unregister_card(struct snd_soc_card *card) | 3400 | int snd_soc_unregister_card(struct snd_soc_card *card) |
2651 | { | 3401 | { |
3402 | if (card->instantiated) | ||
3403 | soc_cleanup_card_resources(card); | ||
2652 | mutex_lock(&client_mutex); | 3404 | mutex_lock(&client_mutex); |
2653 | list_del(&card->list); | 3405 | list_del(&card->list); |
2654 | mutex_unlock(&client_mutex); | 3406 | mutex_unlock(&client_mutex); |
2655 | |||
2656 | dev_dbg(card->dev, "Unregistered card '%s'\n", card->name); | 3407 | dev_dbg(card->dev, "Unregistered card '%s'\n", card->name); |
2657 | 3408 | ||
2658 | return 0; | 3409 | return 0; |
2659 | } | 3410 | } |
3411 | EXPORT_SYMBOL_GPL(snd_soc_unregister_card); | ||
3412 | |||
3413 | /* | ||
3414 | * Simplify DAI link configuration by removing ".-1" from device names | ||
3415 | * and sanitizing names. | ||
3416 | */ | ||
3417 | static char *fmt_single_name(struct device *dev, int *id) | ||
3418 | { | ||
3419 | char *found, name[NAME_SIZE]; | ||
3420 | int id1, id2; | ||
3421 | |||
3422 | if (dev_name(dev) == NULL) | ||
3423 | return NULL; | ||
3424 | |||
3425 | strlcpy(name, dev_name(dev), NAME_SIZE); | ||
3426 | |||
3427 | /* are we a "%s.%d" name (platform and SPI components) */ | ||
3428 | found = strstr(name, dev->driver->name); | ||
3429 | if (found) { | ||
3430 | /* get ID */ | ||
3431 | if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) { | ||
3432 | |||
3433 | /* discard ID from name if ID == -1 */ | ||
3434 | if (*id == -1) | ||
3435 | found[strlen(dev->driver->name)] = '\0'; | ||
3436 | } | ||
3437 | |||
3438 | } else { | ||
3439 | /* I2C component devices are named "bus-addr" */ | ||
3440 | if (sscanf(name, "%x-%x", &id1, &id2) == 2) { | ||
3441 | char tmp[NAME_SIZE]; | ||
3442 | |||
3443 | /* create unique ID number from I2C addr and bus */ | ||
3444 | *id = ((id1 & 0xffff) << 16) + id2; | ||
3445 | |||
3446 | /* sanitize component name for DAI link creation */ | ||
3447 | snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name); | ||
3448 | strlcpy(name, tmp, NAME_SIZE); | ||
3449 | } else | ||
3450 | *id = 0; | ||
3451 | } | ||
3452 | |||
3453 | return kstrdup(name, GFP_KERNEL); | ||
3454 | } | ||
3455 | |||
3456 | /* | ||
3457 | * Simplify DAI link naming for single devices with multiple DAIs by removing | ||
3458 | * any ".-1" and using the DAI name (instead of device name). | ||
3459 | */ | ||
3460 | static inline char *fmt_multiple_name(struct device *dev, | ||
3461 | struct snd_soc_dai_driver *dai_drv) | ||
3462 | { | ||
3463 | if (dai_drv->name == NULL) { | ||
3464 | printk(KERN_ERR "asoc: error - multiple DAI %s registered with no name\n", | ||
3465 | dev_name(dev)); | ||
3466 | return NULL; | ||
3467 | } | ||
3468 | |||
3469 | return kstrdup(dai_drv->name, GFP_KERNEL); | ||
3470 | } | ||
2660 | 3471 | ||
2661 | /** | 3472 | /** |
2662 | * snd_soc_register_dai - Register a DAI with the ASoC core | 3473 | * snd_soc_register_dai - Register a DAI with the ASoC core |
2663 | * | 3474 | * |
2664 | * @dai: DAI to register | 3475 | * @dai: DAI to register |
2665 | */ | 3476 | */ |
2666 | int snd_soc_register_dai(struct snd_soc_dai *dai) | 3477 | int snd_soc_register_dai(struct device *dev, |
3478 | struct snd_soc_dai_driver *dai_drv) | ||
2667 | { | 3479 | { |
2668 | if (!dai->name) | 3480 | struct snd_soc_dai *dai; |
2669 | return -EINVAL; | ||
2670 | 3481 | ||
2671 | /* The device should become mandatory over time */ | 3482 | dev_dbg(dev, "dai register %s\n", dev_name(dev)); |
2672 | if (!dai->dev) | ||
2673 | printk(KERN_WARNING "No device for DAI %s\n", dai->name); | ||
2674 | 3483 | ||
2675 | if (!dai->ops) | 3484 | dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL); |
2676 | dai->ops = &null_dai_ops; | 3485 | if (dai == NULL) |
3486 | return -ENOMEM; | ||
2677 | 3487 | ||
2678 | INIT_LIST_HEAD(&dai->list); | 3488 | /* create DAI component name */ |
3489 | dai->name = fmt_single_name(dev, &dai->id); | ||
3490 | if (dai->name == NULL) { | ||
3491 | kfree(dai); | ||
3492 | return -ENOMEM; | ||
3493 | } | ||
3494 | |||
3495 | dai->dev = dev; | ||
3496 | dai->driver = dai_drv; | ||
3497 | if (!dai->driver->ops) | ||
3498 | dai->driver->ops = &null_dai_ops; | ||
2679 | 3499 | ||
2680 | mutex_lock(&client_mutex); | 3500 | mutex_lock(&client_mutex); |
2681 | list_add(&dai->list, &dai_list); | 3501 | list_add(&dai->list, &dai_list); |
@@ -2693,13 +3513,24 @@ EXPORT_SYMBOL_GPL(snd_soc_register_dai); | |||
2693 | * | 3513 | * |
2694 | * @dai: DAI to unregister | 3514 | * @dai: DAI to unregister |
2695 | */ | 3515 | */ |
2696 | void snd_soc_unregister_dai(struct snd_soc_dai *dai) | 3516 | void snd_soc_unregister_dai(struct device *dev) |
2697 | { | 3517 | { |
3518 | struct snd_soc_dai *dai; | ||
3519 | |||
3520 | list_for_each_entry(dai, &dai_list, list) { | ||
3521 | if (dev == dai->dev) | ||
3522 | goto found; | ||
3523 | } | ||
3524 | return; | ||
3525 | |||
3526 | found: | ||
2698 | mutex_lock(&client_mutex); | 3527 | mutex_lock(&client_mutex); |
2699 | list_del(&dai->list); | 3528 | list_del(&dai->list); |
2700 | mutex_unlock(&client_mutex); | 3529 | mutex_unlock(&client_mutex); |
2701 | 3530 | ||
2702 | pr_debug("Unregistered DAI '%s'\n", dai->name); | 3531 | pr_debug("Unregistered DAI '%s'\n", dai->name); |
3532 | kfree(dai->name); | ||
3533 | kfree(dai); | ||
2703 | } | 3534 | } |
2704 | EXPORT_SYMBOL_GPL(snd_soc_unregister_dai); | 3535 | EXPORT_SYMBOL_GPL(snd_soc_unregister_dai); |
2705 | 3536 | ||
@@ -2709,21 +3540,54 @@ EXPORT_SYMBOL_GPL(snd_soc_unregister_dai); | |||
2709 | * @dai: Array of DAIs to register | 3540 | * @dai: Array of DAIs to register |
2710 | * @count: Number of DAIs | 3541 | * @count: Number of DAIs |
2711 | */ | 3542 | */ |
2712 | int snd_soc_register_dais(struct snd_soc_dai *dai, size_t count) | 3543 | int snd_soc_register_dais(struct device *dev, |
3544 | struct snd_soc_dai_driver *dai_drv, size_t count) | ||
2713 | { | 3545 | { |
2714 | int i, ret; | 3546 | struct snd_soc_dai *dai; |
3547 | int i, ret = 0; | ||
3548 | |||
3549 | dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count); | ||
2715 | 3550 | ||
2716 | for (i = 0; i < count; i++) { | 3551 | for (i = 0; i < count; i++) { |
2717 | ret = snd_soc_register_dai(&dai[i]); | 3552 | |
2718 | if (ret != 0) | 3553 | dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL); |
3554 | if (dai == NULL) { | ||
3555 | ret = -ENOMEM; | ||
2719 | goto err; | 3556 | goto err; |
3557 | } | ||
3558 | |||
3559 | /* create DAI component name */ | ||
3560 | dai->name = fmt_multiple_name(dev, &dai_drv[i]); | ||
3561 | if (dai->name == NULL) { | ||
3562 | kfree(dai); | ||
3563 | ret = -EINVAL; | ||
3564 | goto err; | ||
3565 | } | ||
3566 | |||
3567 | dai->dev = dev; | ||
3568 | dai->driver = &dai_drv[i]; | ||
3569 | if (dai->driver->id) | ||
3570 | dai->id = dai->driver->id; | ||
3571 | else | ||
3572 | dai->id = i; | ||
3573 | if (!dai->driver->ops) | ||
3574 | dai->driver->ops = &null_dai_ops; | ||
3575 | |||
3576 | mutex_lock(&client_mutex); | ||
3577 | list_add(&dai->list, &dai_list); | ||
3578 | mutex_unlock(&client_mutex); | ||
3579 | |||
3580 | pr_debug("Registered DAI '%s'\n", dai->name); | ||
2720 | } | 3581 | } |
2721 | 3582 | ||
3583 | mutex_lock(&client_mutex); | ||
3584 | snd_soc_instantiate_cards(); | ||
3585 | mutex_unlock(&client_mutex); | ||
2722 | return 0; | 3586 | return 0; |
2723 | 3587 | ||
2724 | err: | 3588 | err: |
2725 | for (i--; i >= 0; i--) | 3589 | for (i--; i >= 0; i--) |
2726 | snd_soc_unregister_dai(&dai[i]); | 3590 | snd_soc_unregister_dai(dev); |
2727 | 3591 | ||
2728 | return ret; | 3592 | return ret; |
2729 | } | 3593 | } |
@@ -2735,12 +3599,12 @@ EXPORT_SYMBOL_GPL(snd_soc_register_dais); | |||
2735 | * @dai: Array of DAIs to unregister | 3599 | * @dai: Array of DAIs to unregister |
2736 | * @count: Number of DAIs | 3600 | * @count: Number of DAIs |
2737 | */ | 3601 | */ |
2738 | void snd_soc_unregister_dais(struct snd_soc_dai *dai, size_t count) | 3602 | void snd_soc_unregister_dais(struct device *dev, size_t count) |
2739 | { | 3603 | { |
2740 | int i; | 3604 | int i; |
2741 | 3605 | ||
2742 | for (i = 0; i < count; i++) | 3606 | for (i = 0; i < count; i++) |
2743 | snd_soc_unregister_dai(&dai[i]); | 3607 | snd_soc_unregister_dai(dev); |
2744 | } | 3608 | } |
2745 | EXPORT_SYMBOL_GPL(snd_soc_unregister_dais); | 3609 | EXPORT_SYMBOL_GPL(snd_soc_unregister_dais); |
2746 | 3610 | ||
@@ -2749,12 +3613,26 @@ EXPORT_SYMBOL_GPL(snd_soc_unregister_dais); | |||
2749 | * | 3613 | * |
2750 | * @platform: platform to register | 3614 | * @platform: platform to register |
2751 | */ | 3615 | */ |
2752 | int snd_soc_register_platform(struct snd_soc_platform *platform) | 3616 | int snd_soc_register_platform(struct device *dev, |
3617 | struct snd_soc_platform_driver *platform_drv) | ||
2753 | { | 3618 | { |
2754 | if (!platform->name) | 3619 | struct snd_soc_platform *platform; |
2755 | return -EINVAL; | 3620 | |
3621 | dev_dbg(dev, "platform register %s\n", dev_name(dev)); | ||
3622 | |||
3623 | platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL); | ||
3624 | if (platform == NULL) | ||
3625 | return -ENOMEM; | ||
2756 | 3626 | ||
2757 | INIT_LIST_HEAD(&platform->list); | 3627 | /* create platform component name */ |
3628 | platform->name = fmt_single_name(dev, &platform->id); | ||
3629 | if (platform->name == NULL) { | ||
3630 | kfree(platform); | ||
3631 | return -ENOMEM; | ||
3632 | } | ||
3633 | |||
3634 | platform->dev = dev; | ||
3635 | platform->driver = platform_drv; | ||
2758 | 3636 | ||
2759 | mutex_lock(&client_mutex); | 3637 | mutex_lock(&client_mutex); |
2760 | list_add(&platform->list, &platform_list); | 3638 | list_add(&platform->list, &platform_list); |
@@ -2772,13 +3650,24 @@ EXPORT_SYMBOL_GPL(snd_soc_register_platform); | |||
2772 | * | 3650 | * |
2773 | * @platform: platform to unregister | 3651 | * @platform: platform to unregister |
2774 | */ | 3652 | */ |
2775 | void snd_soc_unregister_platform(struct snd_soc_platform *platform) | 3653 | void snd_soc_unregister_platform(struct device *dev) |
2776 | { | 3654 | { |
3655 | struct snd_soc_platform *platform; | ||
3656 | |||
3657 | list_for_each_entry(platform, &platform_list, list) { | ||
3658 | if (dev == platform->dev) | ||
3659 | goto found; | ||
3660 | } | ||
3661 | return; | ||
3662 | |||
3663 | found: | ||
2777 | mutex_lock(&client_mutex); | 3664 | mutex_lock(&client_mutex); |
2778 | list_del(&platform->list); | 3665 | list_del(&platform->list); |
2779 | mutex_unlock(&client_mutex); | 3666 | mutex_unlock(&client_mutex); |
2780 | 3667 | ||
2781 | pr_debug("Unregistered platform '%s'\n", platform->name); | 3668 | pr_debug("Unregistered platform '%s'\n", platform->name); |
3669 | kfree(platform->name); | ||
3670 | kfree(platform); | ||
2782 | } | 3671 | } |
2783 | EXPORT_SYMBOL_GPL(snd_soc_unregister_platform); | 3672 | EXPORT_SYMBOL_GPL(snd_soc_unregister_platform); |
2784 | 3673 | ||
@@ -2820,22 +3709,86 @@ static void fixup_codec_formats(struct snd_soc_pcm_stream *stream) | |||
2820 | * | 3709 | * |
2821 | * @codec: codec to register | 3710 | * @codec: codec to register |
2822 | */ | 3711 | */ |
2823 | int snd_soc_register_codec(struct snd_soc_codec *codec) | 3712 | int snd_soc_register_codec(struct device *dev, |
3713 | const struct snd_soc_codec_driver *codec_drv, | ||
3714 | struct snd_soc_dai_driver *dai_drv, | ||
3715 | int num_dai) | ||
2824 | { | 3716 | { |
2825 | int i; | 3717 | size_t reg_size; |
3718 | struct snd_soc_codec *codec; | ||
3719 | int ret, i; | ||
2826 | 3720 | ||
2827 | if (!codec->name) | 3721 | dev_dbg(dev, "codec register %s\n", dev_name(dev)); |
2828 | return -EINVAL; | 3722 | |
3723 | codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL); | ||
3724 | if (codec == NULL) | ||
3725 | return -ENOMEM; | ||
3726 | |||
3727 | /* create CODEC component name */ | ||
3728 | codec->name = fmt_single_name(dev, &codec->id); | ||
3729 | if (codec->name == NULL) { | ||
3730 | kfree(codec); | ||
3731 | return -ENOMEM; | ||
3732 | } | ||
3733 | |||
3734 | if (codec_drv->compress_type) | ||
3735 | codec->compress_type = codec_drv->compress_type; | ||
3736 | else | ||
3737 | codec->compress_type = SND_SOC_FLAT_COMPRESSION; | ||
3738 | |||
3739 | codec->write = codec_drv->write; | ||
3740 | codec->read = codec_drv->read; | ||
3741 | codec->volatile_register = codec_drv->volatile_register; | ||
3742 | codec->readable_register = codec_drv->readable_register; | ||
3743 | codec->writable_register = codec_drv->writable_register; | ||
3744 | codec->dapm.bias_level = SND_SOC_BIAS_OFF; | ||
3745 | codec->dapm.dev = dev; | ||
3746 | codec->dapm.codec = codec; | ||
3747 | codec->dapm.seq_notifier = codec_drv->seq_notifier; | ||
3748 | codec->dev = dev; | ||
3749 | codec->driver = codec_drv; | ||
3750 | codec->num_dai = num_dai; | ||
3751 | mutex_init(&codec->mutex); | ||
3752 | |||
3753 | /* allocate CODEC register cache */ | ||
3754 | if (codec_drv->reg_cache_size && codec_drv->reg_word_size) { | ||
3755 | reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size; | ||
3756 | codec->reg_size = reg_size; | ||
3757 | /* it is necessary to make a copy of the default register cache | ||
3758 | * because in the case of using a compression type that requires | ||
3759 | * the default register cache to be marked as __devinitconst the | ||
3760 | * kernel might have freed the array by the time we initialize | ||
3761 | * the cache. | ||
3762 | */ | ||
3763 | if (codec_drv->reg_cache_default) { | ||
3764 | codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default, | ||
3765 | reg_size, GFP_KERNEL); | ||
3766 | if (!codec->reg_def_copy) { | ||
3767 | ret = -ENOMEM; | ||
3768 | goto fail; | ||
3769 | } | ||
3770 | } | ||
3771 | } | ||
2829 | 3772 | ||
2830 | /* The device should become mandatory over time */ | 3773 | if (codec_drv->reg_access_size && codec_drv->reg_access_default) { |
2831 | if (!codec->dev) | 3774 | if (!codec->volatile_register) |
2832 | printk(KERN_WARNING "No device for codec %s\n", codec->name); | 3775 | codec->volatile_register = snd_soc_default_volatile_register; |
3776 | if (!codec->readable_register) | ||
3777 | codec->readable_register = snd_soc_default_readable_register; | ||
3778 | if (!codec->writable_register) | ||
3779 | codec->writable_register = snd_soc_default_writable_register; | ||
3780 | } | ||
2833 | 3781 | ||
2834 | INIT_LIST_HEAD(&codec->list); | 3782 | for (i = 0; i < num_dai; i++) { |
3783 | fixup_codec_formats(&dai_drv[i].playback); | ||
3784 | fixup_codec_formats(&dai_drv[i].capture); | ||
3785 | } | ||
2835 | 3786 | ||
2836 | for (i = 0; i < codec->num_dai; i++) { | 3787 | /* register any DAIs */ |
2837 | fixup_codec_formats(&codec->dai[i].playback); | 3788 | if (num_dai) { |
2838 | fixup_codec_formats(&codec->dai[i].capture); | 3789 | ret = snd_soc_register_dais(dev, dai_drv, num_dai); |
3790 | if (ret < 0) | ||
3791 | goto fail; | ||
2839 | } | 3792 | } |
2840 | 3793 | ||
2841 | mutex_lock(&client_mutex); | 3794 | mutex_lock(&client_mutex); |
@@ -2844,8 +3797,14 @@ int snd_soc_register_codec(struct snd_soc_codec *codec) | |||
2844 | mutex_unlock(&client_mutex); | 3797 | mutex_unlock(&client_mutex); |
2845 | 3798 | ||
2846 | pr_debug("Registered codec '%s'\n", codec->name); | 3799 | pr_debug("Registered codec '%s'\n", codec->name); |
2847 | |||
2848 | return 0; | 3800 | return 0; |
3801 | |||
3802 | fail: | ||
3803 | kfree(codec->reg_def_copy); | ||
3804 | codec->reg_def_copy = NULL; | ||
3805 | kfree(codec->name); | ||
3806 | kfree(codec); | ||
3807 | return ret; | ||
2849 | } | 3808 | } |
2850 | EXPORT_SYMBOL_GPL(snd_soc_register_codec); | 3809 | EXPORT_SYMBOL_GPL(snd_soc_register_codec); |
2851 | 3810 | ||
@@ -2854,39 +3813,73 @@ EXPORT_SYMBOL_GPL(snd_soc_register_codec); | |||
2854 | * | 3813 | * |
2855 | * @codec: codec to unregister | 3814 | * @codec: codec to unregister |
2856 | */ | 3815 | */ |
2857 | void snd_soc_unregister_codec(struct snd_soc_codec *codec) | 3816 | void snd_soc_unregister_codec(struct device *dev) |
2858 | { | 3817 | { |
3818 | struct snd_soc_codec *codec; | ||
3819 | int i; | ||
3820 | |||
3821 | list_for_each_entry(codec, &codec_list, list) { | ||
3822 | if (dev == codec->dev) | ||
3823 | goto found; | ||
3824 | } | ||
3825 | return; | ||
3826 | |||
3827 | found: | ||
3828 | if (codec->num_dai) | ||
3829 | for (i = 0; i < codec->num_dai; i++) | ||
3830 | snd_soc_unregister_dai(dev); | ||
3831 | |||
2859 | mutex_lock(&client_mutex); | 3832 | mutex_lock(&client_mutex); |
2860 | list_del(&codec->list); | 3833 | list_del(&codec->list); |
2861 | mutex_unlock(&client_mutex); | 3834 | mutex_unlock(&client_mutex); |
2862 | 3835 | ||
2863 | pr_debug("Unregistered codec '%s'\n", codec->name); | 3836 | pr_debug("Unregistered codec '%s'\n", codec->name); |
3837 | |||
3838 | snd_soc_cache_exit(codec); | ||
3839 | kfree(codec->reg_def_copy); | ||
3840 | kfree(codec->name); | ||
3841 | kfree(codec); | ||
2864 | } | 3842 | } |
2865 | EXPORT_SYMBOL_GPL(snd_soc_unregister_codec); | 3843 | EXPORT_SYMBOL_GPL(snd_soc_unregister_codec); |
2866 | 3844 | ||
2867 | static int __init snd_soc_init(void) | 3845 | static int __init snd_soc_init(void) |
2868 | { | 3846 | { |
2869 | #ifdef CONFIG_DEBUG_FS | 3847 | #ifdef CONFIG_DEBUG_FS |
2870 | debugfs_root = debugfs_create_dir("asoc", NULL); | 3848 | snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL); |
2871 | if (IS_ERR(debugfs_root) || !debugfs_root) { | 3849 | if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) { |
2872 | printk(KERN_WARNING | 3850 | printk(KERN_WARNING |
2873 | "ASoC: Failed to create debugfs directory\n"); | 3851 | "ASoC: Failed to create debugfs directory\n"); |
2874 | debugfs_root = NULL; | 3852 | snd_soc_debugfs_root = NULL; |
2875 | } | 3853 | } |
3854 | |||
3855 | if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL, | ||
3856 | &codec_list_fops)) | ||
3857 | pr_warn("ASoC: Failed to create CODEC list debugfs file\n"); | ||
3858 | |||
3859 | if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL, | ||
3860 | &dai_list_fops)) | ||
3861 | pr_warn("ASoC: Failed to create DAI list debugfs file\n"); | ||
3862 | |||
3863 | if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL, | ||
3864 | &platform_list_fops)) | ||
3865 | pr_warn("ASoC: Failed to create platform list debugfs file\n"); | ||
2876 | #endif | 3866 | #endif |
2877 | 3867 | ||
3868 | snd_soc_util_init(); | ||
3869 | |||
2878 | return platform_driver_register(&soc_driver); | 3870 | return platform_driver_register(&soc_driver); |
2879 | } | 3871 | } |
3872 | module_init(snd_soc_init); | ||
2880 | 3873 | ||
2881 | static void __exit snd_soc_exit(void) | 3874 | static void __exit snd_soc_exit(void) |
2882 | { | 3875 | { |
3876 | snd_soc_util_exit(); | ||
3877 | |||
2883 | #ifdef CONFIG_DEBUG_FS | 3878 | #ifdef CONFIG_DEBUG_FS |
2884 | debugfs_remove_recursive(debugfs_root); | 3879 | debugfs_remove_recursive(snd_soc_debugfs_root); |
2885 | #endif | 3880 | #endif |
2886 | platform_driver_unregister(&soc_driver); | 3881 | platform_driver_unregister(&soc_driver); |
2887 | } | 3882 | } |
2888 | |||
2889 | module_init(snd_soc_init); | ||
2890 | module_exit(snd_soc_exit); | 3883 | module_exit(snd_soc_exit); |
2891 | 3884 | ||
2892 | /* Module information */ | 3885 | /* Module information */ |