Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1 | /* |
| 2 | * soc-core.c -- ALSA SoC Audio Layer |
| 3 | * |
| 4 | * Copyright 2005 Wolfson Microelectronics PLC. |
Liam Girdwood | 0664d88 | 2006-12-18 14:39:02 +0100 | [diff] [blame] | 5 | * Copyright 2005 Openedhand Ltd. |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 6 | * Copyright (C) 2010 Slimlogic Ltd. |
| 7 | * Copyright (C) 2010 Texas Instruments Inc. |
Liam Girdwood | 0664d88 | 2006-12-18 14:39:02 +0100 | [diff] [blame] | 8 | * |
Liam Girdwood | d331124 | 2008-10-12 13:17:36 +0100 | [diff] [blame] | 9 | * Author: Liam Girdwood <lrg@slimlogic.co.uk> |
Liam Girdwood | 0664d88 | 2006-12-18 14:39:02 +0100 | [diff] [blame] | 10 | * with code, comments and ideas from :- |
| 11 | * Richard Purdie <richard@openedhand.com> |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 12 | * |
| 13 | * This program is free software; you can redistribute it and/or modify it |
| 14 | * under the terms of the GNU General Public License as published by the |
| 15 | * Free Software Foundation; either version 2 of the License, or (at your |
| 16 | * option) any later version. |
| 17 | * |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 18 | * TODO: |
| 19 | * o Add hw rules to enforce rates, etc. |
| 20 | * o More testing with other codecs/machines. |
| 21 | * o Add more codecs and platforms to ensure good API coverage. |
| 22 | * o Support TDM on PCM and I2S |
| 23 | */ |
| 24 | |
| 25 | #include <linux/module.h> |
| 26 | #include <linux/moduleparam.h> |
| 27 | #include <linux/init.h> |
| 28 | #include <linux/delay.h> |
| 29 | #include <linux/pm.h> |
| 30 | #include <linux/bitops.h> |
Troy Kisky | 12ef193 | 2008-10-13 17:42:14 -0700 | [diff] [blame] | 31 | #include <linux/debugfs.h> |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 32 | #include <linux/platform_device.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 33 | #include <linux/slab.h> |
Marek Vasut | 474828a | 2009-07-22 13:01:03 +0200 | [diff] [blame] | 34 | #include <sound/ac97_codec.h> |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 35 | #include <sound/core.h> |
Mark Brown | 3028eb8 | 2010-12-05 12:22:46 +0000 | [diff] [blame] | 36 | #include <sound/jack.h> |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 37 | #include <sound/pcm.h> |
| 38 | #include <sound/pcm_params.h> |
| 39 | #include <sound/soc.h> |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 40 | #include <sound/initval.h> |
| 41 | |
Mark Brown | a8b1d34 | 2010-11-03 18:05:58 -0400 | [diff] [blame] | 42 | #define CREATE_TRACE_POINTS |
| 43 | #include <trace/events/asoc.h> |
| 44 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 45 | #define NAME_SIZE 32 |
| 46 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 47 | static DEFINE_MUTEX(pcm_mutex); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 48 | static DECLARE_WAIT_QUEUE_HEAD(soc_pm_waitq); |
| 49 | |
Mark Brown | 384c89e | 2008-12-03 17:34:03 +0000 | [diff] [blame] | 50 | #ifdef CONFIG_DEBUG_FS |
Mark Brown | 8a9dab1 | 2011-01-10 22:25:21 +0000 | [diff] [blame] | 51 | struct dentry *snd_soc_debugfs_root; |
| 52 | EXPORT_SYMBOL_GPL(snd_soc_debugfs_root); |
Mark Brown | 384c89e | 2008-12-03 17:34:03 +0000 | [diff] [blame] | 53 | #endif |
| 54 | |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 55 | static DEFINE_MUTEX(client_mutex); |
| 56 | static LIST_HEAD(card_list); |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 57 | static LIST_HEAD(dai_list); |
Mark Brown | 12a48a8c | 2008-12-03 19:40:30 +0000 | [diff] [blame] | 58 | static LIST_HEAD(platform_list); |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 59 | static LIST_HEAD(codec_list); |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 60 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 61 | static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num); |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 62 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 63 | /* |
| 64 | * This is a timeout to do a DAPM powerdown after a stream is closed(). |
| 65 | * It can be used to eliminate pops between different playback streams, e.g. |
| 66 | * between two audio tracks. |
| 67 | */ |
| 68 | static int pmdown_time = 5000; |
| 69 | module_param(pmdown_time, int, 0); |
| 70 | MODULE_PARM_DESC(pmdown_time, "DAPM stream powerdown time (msecs)"); |
| 71 | |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 72 | /* codec register dump */ |
| 73 | static ssize_t soc_codec_reg_show(struct snd_soc_codec *codec, char *buf) |
| 74 | { |
Mark Brown | 5164d74 | 2010-07-14 16:14:33 +0100 | [diff] [blame] | 75 | int ret, i, step = 1, count = 0; |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 76 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 77 | if (!codec->driver->reg_cache_size) |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 78 | return 0; |
| 79 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 80 | if (codec->driver->reg_cache_step) |
| 81 | step = codec->driver->reg_cache_step; |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 82 | |
| 83 | count += sprintf(buf, "%s registers\n", codec->name); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 84 | for (i = 0; i < codec->driver->reg_cache_size; i += step) { |
Dimitris Papastamos | 1500b7b | 2011-01-13 12:20:38 +0000 | [diff] [blame] | 85 | if (codec->readable_register && !codec->readable_register(codec, i)) |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 86 | continue; |
| 87 | |
| 88 | count += sprintf(buf + count, "%2x: ", i); |
| 89 | if (count >= PAGE_SIZE - 1) |
| 90 | break; |
| 91 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 92 | if (codec->driver->display_register) { |
| 93 | count += codec->driver->display_register(codec, buf + count, |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 94 | PAGE_SIZE - count, i); |
Mark Brown | 5164d74 | 2010-07-14 16:14:33 +0100 | [diff] [blame] | 95 | } else { |
| 96 | /* If the read fails it's almost certainly due to |
| 97 | * the register being volatile and the device being |
| 98 | * powered off. |
| 99 | */ |
Dimitris Papastamos | e4f078d | 2010-12-07 16:30:38 +0000 | [diff] [blame] | 100 | ret = snd_soc_read(codec, i); |
Mark Brown | 5164d74 | 2010-07-14 16:14:33 +0100 | [diff] [blame] | 101 | if (ret >= 0) |
| 102 | count += snprintf(buf + count, |
| 103 | PAGE_SIZE - count, |
| 104 | "%4x", ret); |
| 105 | else |
| 106 | count += snprintf(buf + count, |
| 107 | PAGE_SIZE - count, |
| 108 | "<no data: %d>", ret); |
| 109 | } |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 110 | |
| 111 | if (count >= PAGE_SIZE - 1) |
| 112 | break; |
| 113 | |
| 114 | count += snprintf(buf + count, PAGE_SIZE - count, "\n"); |
| 115 | if (count >= PAGE_SIZE - 1) |
| 116 | break; |
| 117 | } |
| 118 | |
| 119 | /* Truncate count; min() would cause a warning */ |
| 120 | if (count >= PAGE_SIZE) |
| 121 | count = PAGE_SIZE - 1; |
| 122 | |
| 123 | return count; |
| 124 | } |
| 125 | static ssize_t codec_reg_show(struct device *dev, |
| 126 | struct device_attribute *attr, char *buf) |
| 127 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 128 | struct snd_soc_pcm_runtime *rtd = |
| 129 | container_of(dev, struct snd_soc_pcm_runtime, dev); |
| 130 | |
| 131 | return soc_codec_reg_show(rtd->codec, buf); |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | static DEVICE_ATTR(codec_reg, 0444, codec_reg_show, NULL); |
| 135 | |
Mark Brown | dbe2140 | 2010-02-12 11:37:24 +0000 | [diff] [blame] | 136 | static ssize_t pmdown_time_show(struct device *dev, |
| 137 | struct device_attribute *attr, char *buf) |
| 138 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 139 | struct snd_soc_pcm_runtime *rtd = |
| 140 | container_of(dev, struct snd_soc_pcm_runtime, dev); |
Mark Brown | dbe2140 | 2010-02-12 11:37:24 +0000 | [diff] [blame] | 141 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 142 | return sprintf(buf, "%ld\n", rtd->pmdown_time); |
Mark Brown | dbe2140 | 2010-02-12 11:37:24 +0000 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | static ssize_t pmdown_time_set(struct device *dev, |
| 146 | struct device_attribute *attr, |
| 147 | const char *buf, size_t count) |
| 148 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 149 | struct snd_soc_pcm_runtime *rtd = |
| 150 | container_of(dev, struct snd_soc_pcm_runtime, dev); |
Mark Brown | c593b52 | 2010-10-27 20:11:17 -0700 | [diff] [blame] | 151 | int ret; |
Mark Brown | dbe2140 | 2010-02-12 11:37:24 +0000 | [diff] [blame] | 152 | |
Mark Brown | c593b52 | 2010-10-27 20:11:17 -0700 | [diff] [blame] | 153 | ret = strict_strtol(buf, 10, &rtd->pmdown_time); |
| 154 | if (ret) |
| 155 | return ret; |
Mark Brown | dbe2140 | 2010-02-12 11:37:24 +0000 | [diff] [blame] | 156 | |
| 157 | return count; |
| 158 | } |
| 159 | |
| 160 | static DEVICE_ATTR(pmdown_time, 0644, pmdown_time_show, pmdown_time_set); |
| 161 | |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 162 | #ifdef CONFIG_DEBUG_FS |
| 163 | static int codec_reg_open_file(struct inode *inode, struct file *file) |
| 164 | { |
| 165 | file->private_data = inode->i_private; |
| 166 | return 0; |
| 167 | } |
| 168 | |
| 169 | static ssize_t codec_reg_read_file(struct file *file, char __user *user_buf, |
| 170 | size_t count, loff_t *ppos) |
| 171 | { |
| 172 | ssize_t ret; |
| 173 | struct snd_soc_codec *codec = file->private_data; |
| 174 | char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
| 175 | if (!buf) |
| 176 | return -ENOMEM; |
| 177 | ret = soc_codec_reg_show(codec, buf); |
| 178 | if (ret >= 0) |
| 179 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret); |
| 180 | kfree(buf); |
| 181 | return ret; |
| 182 | } |
| 183 | |
| 184 | static ssize_t codec_reg_write_file(struct file *file, |
| 185 | const char __user *user_buf, size_t count, loff_t *ppos) |
| 186 | { |
| 187 | char buf[32]; |
| 188 | int buf_size; |
| 189 | char *start = buf; |
| 190 | unsigned long reg, value; |
| 191 | int step = 1; |
| 192 | struct snd_soc_codec *codec = file->private_data; |
| 193 | |
| 194 | buf_size = min(count, (sizeof(buf)-1)); |
| 195 | if (copy_from_user(buf, user_buf, buf_size)) |
| 196 | return -EFAULT; |
| 197 | buf[buf_size] = 0; |
| 198 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 199 | if (codec->driver->reg_cache_step) |
| 200 | step = codec->driver->reg_cache_step; |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 201 | |
| 202 | while (*start == ' ') |
| 203 | start++; |
| 204 | reg = simple_strtoul(start, &start, 16); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 205 | if ((reg >= codec->driver->reg_cache_size) || (reg % step)) |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 206 | return -EINVAL; |
| 207 | while (*start == ' ') |
| 208 | start++; |
| 209 | if (strict_strtoul(start, 16, &value)) |
| 210 | return -EINVAL; |
Mark Brown | 0d51a9c | 2011-01-06 16:04:57 +0000 | [diff] [blame] | 211 | |
| 212 | /* Userspace has been fiddling around behind the kernel's back */ |
| 213 | add_taint(TAINT_USER); |
| 214 | |
Dimitris Papastamos | e4f078d | 2010-12-07 16:30:38 +0000 | [diff] [blame] | 215 | snd_soc_write(codec, reg, value); |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 216 | return buf_size; |
| 217 | } |
| 218 | |
| 219 | static const struct file_operations codec_reg_fops = { |
| 220 | .open = codec_reg_open_file, |
| 221 | .read = codec_reg_read_file, |
| 222 | .write = codec_reg_write_file, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 223 | .llseek = default_llseek, |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 224 | }; |
| 225 | |
| 226 | static void soc_init_codec_debugfs(struct snd_soc_codec *codec) |
| 227 | { |
Jarkko Nikula | d6ce4cf | 2010-11-05 20:35:20 +0200 | [diff] [blame] | 228 | struct dentry *debugfs_card_root = codec->card->debugfs_card_root; |
| 229 | |
| 230 | codec->debugfs_codec_root = debugfs_create_dir(codec->name, |
| 231 | debugfs_card_root); |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 232 | if (!codec->debugfs_codec_root) { |
| 233 | printk(KERN_WARNING |
| 234 | "ASoC: Failed to create codec debugfs directory\n"); |
| 235 | return; |
| 236 | } |
| 237 | |
| 238 | codec->debugfs_reg = debugfs_create_file("codec_reg", 0644, |
| 239 | codec->debugfs_codec_root, |
| 240 | codec, &codec_reg_fops); |
| 241 | if (!codec->debugfs_reg) |
| 242 | printk(KERN_WARNING |
| 243 | "ASoC: Failed to create codec register debugfs file\n"); |
| 244 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 245 | codec->dapm.debugfs_dapm = debugfs_create_dir("dapm", |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 246 | codec->debugfs_codec_root); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 247 | if (!codec->dapm.debugfs_dapm) |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 248 | printk(KERN_WARNING |
| 249 | "Failed to create DAPM debugfs directory\n"); |
| 250 | |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 251 | snd_soc_dapm_debugfs_init(&codec->dapm); |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | static void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec) |
| 255 | { |
| 256 | debugfs_remove_recursive(codec->debugfs_codec_root); |
| 257 | } |
| 258 | |
Mark Brown | c3c5a19 | 2010-09-15 18:15:14 +0100 | [diff] [blame] | 259 | static ssize_t codec_list_read_file(struct file *file, char __user *user_buf, |
| 260 | size_t count, loff_t *ppos) |
| 261 | { |
| 262 | char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
Mark Brown | 2b194f9d | 2010-10-13 10:52:16 +0100 | [diff] [blame] | 263 | ssize_t len, ret = 0; |
Mark Brown | c3c5a19 | 2010-09-15 18:15:14 +0100 | [diff] [blame] | 264 | struct snd_soc_codec *codec; |
| 265 | |
| 266 | if (!buf) |
| 267 | return -ENOMEM; |
| 268 | |
Mark Brown | 2b194f9d | 2010-10-13 10:52:16 +0100 | [diff] [blame] | 269 | list_for_each_entry(codec, &codec_list, list) { |
| 270 | len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", |
| 271 | codec->name); |
| 272 | if (len >= 0) |
| 273 | ret += len; |
| 274 | if (ret > PAGE_SIZE) { |
| 275 | ret = PAGE_SIZE; |
| 276 | break; |
| 277 | } |
| 278 | } |
Mark Brown | c3c5a19 | 2010-09-15 18:15:14 +0100 | [diff] [blame] | 279 | |
| 280 | if (ret >= 0) |
| 281 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret); |
| 282 | |
| 283 | kfree(buf); |
| 284 | |
| 285 | return ret; |
| 286 | } |
| 287 | |
| 288 | static const struct file_operations codec_list_fops = { |
| 289 | .read = codec_list_read_file, |
| 290 | .llseek = default_llseek,/* read accesses f_pos */ |
| 291 | }; |
| 292 | |
Mark Brown | f320878 | 2010-09-15 18:19:07 +0100 | [diff] [blame] | 293 | static ssize_t dai_list_read_file(struct file *file, char __user *user_buf, |
| 294 | size_t count, loff_t *ppos) |
| 295 | { |
| 296 | char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
Mark Brown | 2b194f9d | 2010-10-13 10:52:16 +0100 | [diff] [blame] | 297 | ssize_t len, ret = 0; |
Mark Brown | f320878 | 2010-09-15 18:19:07 +0100 | [diff] [blame] | 298 | struct snd_soc_dai *dai; |
| 299 | |
| 300 | if (!buf) |
| 301 | return -ENOMEM; |
| 302 | |
Mark Brown | 2b194f9d | 2010-10-13 10:52:16 +0100 | [diff] [blame] | 303 | list_for_each_entry(dai, &dai_list, list) { |
| 304 | len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", dai->name); |
| 305 | if (len >= 0) |
| 306 | ret += len; |
| 307 | if (ret > PAGE_SIZE) { |
| 308 | ret = PAGE_SIZE; |
| 309 | break; |
| 310 | } |
| 311 | } |
Mark Brown | f320878 | 2010-09-15 18:19:07 +0100 | [diff] [blame] | 312 | |
Mark Brown | 2b194f9d | 2010-10-13 10:52:16 +0100 | [diff] [blame] | 313 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret); |
Mark Brown | f320878 | 2010-09-15 18:19:07 +0100 | [diff] [blame] | 314 | |
| 315 | kfree(buf); |
| 316 | |
| 317 | return ret; |
| 318 | } |
| 319 | |
| 320 | static const struct file_operations dai_list_fops = { |
| 321 | .read = dai_list_read_file, |
| 322 | .llseek = default_llseek,/* read accesses f_pos */ |
| 323 | }; |
| 324 | |
Mark Brown | 19c7ac2 | 2010-09-15 18:22:40 +0100 | [diff] [blame] | 325 | static ssize_t platform_list_read_file(struct file *file, |
| 326 | char __user *user_buf, |
| 327 | size_t count, loff_t *ppos) |
| 328 | { |
| 329 | char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL); |
Mark Brown | 2b194f9d | 2010-10-13 10:52:16 +0100 | [diff] [blame] | 330 | ssize_t len, ret = 0; |
Mark Brown | 19c7ac2 | 2010-09-15 18:22:40 +0100 | [diff] [blame] | 331 | struct snd_soc_platform *platform; |
| 332 | |
| 333 | if (!buf) |
| 334 | return -ENOMEM; |
| 335 | |
Mark Brown | 2b194f9d | 2010-10-13 10:52:16 +0100 | [diff] [blame] | 336 | list_for_each_entry(platform, &platform_list, list) { |
| 337 | len = snprintf(buf + ret, PAGE_SIZE - ret, "%s\n", |
| 338 | platform->name); |
| 339 | if (len >= 0) |
| 340 | ret += len; |
| 341 | if (ret > PAGE_SIZE) { |
| 342 | ret = PAGE_SIZE; |
| 343 | break; |
| 344 | } |
| 345 | } |
Mark Brown | 19c7ac2 | 2010-09-15 18:22:40 +0100 | [diff] [blame] | 346 | |
Mark Brown | 2b194f9d | 2010-10-13 10:52:16 +0100 | [diff] [blame] | 347 | ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret); |
Mark Brown | 19c7ac2 | 2010-09-15 18:22:40 +0100 | [diff] [blame] | 348 | |
| 349 | kfree(buf); |
| 350 | |
| 351 | return ret; |
| 352 | } |
| 353 | |
| 354 | static const struct file_operations platform_list_fops = { |
| 355 | .read = platform_list_read_file, |
| 356 | .llseek = default_llseek,/* read accesses f_pos */ |
| 357 | }; |
| 358 | |
Jarkko Nikula | a605215 | 2010-11-05 20:35:19 +0200 | [diff] [blame] | 359 | static void soc_init_card_debugfs(struct snd_soc_card *card) |
| 360 | { |
| 361 | card->debugfs_card_root = debugfs_create_dir(card->name, |
Mark Brown | 8a9dab1 | 2011-01-10 22:25:21 +0000 | [diff] [blame] | 362 | snd_soc_debugfs_root); |
Jarkko Nikula | 3a45b86 | 2010-11-05 20:35:21 +0200 | [diff] [blame] | 363 | if (!card->debugfs_card_root) { |
Jarkko Nikula | a605215 | 2010-11-05 20:35:19 +0200 | [diff] [blame] | 364 | dev_warn(card->dev, |
| 365 | "ASoC: Failed to create codec debugfs directory\n"); |
Jarkko Nikula | 3a45b86 | 2010-11-05 20:35:21 +0200 | [diff] [blame] | 366 | return; |
| 367 | } |
| 368 | |
| 369 | card->debugfs_pop_time = debugfs_create_u32("dapm_pop_time", 0644, |
| 370 | card->debugfs_card_root, |
| 371 | &card->pop_time); |
| 372 | if (!card->debugfs_pop_time) |
| 373 | dev_warn(card->dev, |
| 374 | "Failed to create pop time debugfs file\n"); |
Jarkko Nikula | a605215 | 2010-11-05 20:35:19 +0200 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | static void soc_cleanup_card_debugfs(struct snd_soc_card *card) |
| 378 | { |
| 379 | debugfs_remove_recursive(card->debugfs_card_root); |
| 380 | } |
| 381 | |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 382 | #else |
| 383 | |
| 384 | static inline void soc_init_codec_debugfs(struct snd_soc_codec *codec) |
| 385 | { |
| 386 | } |
| 387 | |
| 388 | static inline void soc_cleanup_codec_debugfs(struct snd_soc_codec *codec) |
| 389 | { |
| 390 | } |
Axel Lin | b95fccb | 2010-11-09 17:06:44 +0800 | [diff] [blame] | 391 | |
| 392 | static inline void soc_init_card_debugfs(struct snd_soc_card *card) |
| 393 | { |
| 394 | } |
| 395 | |
| 396 | static inline void soc_cleanup_card_debugfs(struct snd_soc_card *card) |
| 397 | { |
| 398 | } |
Mark Brown | 2624d5f | 2009-11-03 21:56:13 +0000 | [diff] [blame] | 399 | #endif |
| 400 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 401 | #ifdef CONFIG_SND_SOC_AC97_BUS |
| 402 | /* unregister ac97 codec */ |
| 403 | static int soc_ac97_dev_unregister(struct snd_soc_codec *codec) |
| 404 | { |
| 405 | if (codec->ac97->dev.bus) |
| 406 | device_unregister(&codec->ac97->dev); |
| 407 | return 0; |
| 408 | } |
| 409 | |
| 410 | /* stop no dev release warning */ |
| 411 | static void soc_ac97_device_release(struct device *dev){} |
| 412 | |
| 413 | /* register ac97 codec to bus */ |
| 414 | static int soc_ac97_dev_register(struct snd_soc_codec *codec) |
| 415 | { |
| 416 | int err; |
| 417 | |
| 418 | codec->ac97->dev.bus = &ac97_bus_type; |
Mark Brown | 4ac5c61 | 2009-04-01 19:35:01 +0100 | [diff] [blame] | 419 | codec->ac97->dev.parent = codec->card->dev; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 420 | codec->ac97->dev.release = soc_ac97_device_release; |
| 421 | |
Kay Sievers | bb072bf | 2008-11-02 03:50:35 +0100 | [diff] [blame] | 422 | dev_set_name(&codec->ac97->dev, "%d-%d:%s", |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 423 | codec->card->snd_card->number, 0, codec->name); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 424 | err = device_register(&codec->ac97->dev); |
| 425 | if (err < 0) { |
| 426 | snd_printk(KERN_ERR "Can't register ac97 bus\n"); |
| 427 | codec->ac97->dev.bus = NULL; |
| 428 | return err; |
| 429 | } |
| 430 | return 0; |
| 431 | } |
| 432 | #endif |
| 433 | |
Mark Brown | 06f409d | 2009-04-07 18:10:13 +0100 | [diff] [blame] | 434 | static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream) |
| 435 | { |
| 436 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 437 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| 438 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
Mark Brown | 06f409d | 2009-04-07 18:10:13 +0100 | [diff] [blame] | 439 | int ret; |
| 440 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 441 | if (codec_dai->driver->symmetric_rates || cpu_dai->driver->symmetric_rates || |
| 442 | rtd->dai_link->symmetric_rates) { |
| 443 | dev_dbg(&rtd->dev, "Symmetry forces %dHz rate\n", |
| 444 | rtd->rate); |
Mark Brown | 06f409d | 2009-04-07 18:10:13 +0100 | [diff] [blame] | 445 | |
| 446 | ret = snd_pcm_hw_constraint_minmax(substream->runtime, |
| 447 | SNDRV_PCM_HW_PARAM_RATE, |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 448 | rtd->rate, |
| 449 | rtd->rate); |
Mark Brown | 06f409d | 2009-04-07 18:10:13 +0100 | [diff] [blame] | 450 | if (ret < 0) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 451 | dev_err(&rtd->dev, |
Mark Brown | 06f409d | 2009-04-07 18:10:13 +0100 | [diff] [blame] | 452 | "Unable to apply rate symmetry constraint: %d\n", ret); |
| 453 | return ret; |
| 454 | } |
| 455 | } |
| 456 | |
| 457 | return 0; |
| 458 | } |
| 459 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 460 | /* |
| 461 | * Called by ALSA when a PCM substream is opened, the runtime->hw record is |
| 462 | * then initialized and any private data can be allocated. This also calls |
| 463 | * startup for the cpu DAI, platform, machine and codec DAI. |
| 464 | */ |
| 465 | static int soc_pcm_open(struct snd_pcm_substream *substream) |
| 466 | { |
| 467 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 468 | struct snd_pcm_runtime *runtime = substream->runtime; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 469 | struct snd_soc_platform *platform = rtd->platform; |
| 470 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| 471 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
| 472 | struct snd_soc_dai_driver *cpu_dai_drv = cpu_dai->driver; |
| 473 | struct snd_soc_dai_driver *codec_dai_drv = codec_dai->driver; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 474 | int ret = 0; |
| 475 | |
| 476 | mutex_lock(&pcm_mutex); |
| 477 | |
| 478 | /* startup the audio subsystem */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 479 | if (cpu_dai->driver->ops->startup) { |
| 480 | ret = cpu_dai->driver->ops->startup(substream, cpu_dai); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 481 | if (ret < 0) { |
| 482 | printk(KERN_ERR "asoc: can't open interface %s\n", |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 483 | cpu_dai->name); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 484 | goto out; |
| 485 | } |
| 486 | } |
| 487 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 488 | if (platform->driver->ops->open) { |
| 489 | ret = platform->driver->ops->open(substream); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 490 | if (ret < 0) { |
| 491 | printk(KERN_ERR "asoc: can't open platform %s\n", platform->name); |
| 492 | goto platform_err; |
| 493 | } |
| 494 | } |
| 495 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 496 | if (codec_dai->driver->ops->startup) { |
| 497 | ret = codec_dai->driver->ops->startup(substream, codec_dai); |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 498 | if (ret < 0) { |
| 499 | printk(KERN_ERR "asoc: can't open codec %s\n", |
| 500 | codec_dai->name); |
| 501 | goto codec_dai_err; |
| 502 | } |
| 503 | } |
| 504 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 505 | if (rtd->dai_link->ops && rtd->dai_link->ops->startup) { |
| 506 | ret = rtd->dai_link->ops->startup(substream); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 507 | if (ret < 0) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 508 | printk(KERN_ERR "asoc: %s startup failed\n", rtd->dai_link->name); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 509 | goto machine_err; |
| 510 | } |
| 511 | } |
| 512 | |
Mark Brown | a00f90f | 2010-12-02 16:24:24 +0000 | [diff] [blame] | 513 | /* Check that the codec and cpu DAIs are compatible */ |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 514 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 515 | runtime->hw.rate_min = |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 516 | max(codec_dai_drv->playback.rate_min, |
| 517 | cpu_dai_drv->playback.rate_min); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 518 | runtime->hw.rate_max = |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 519 | min(codec_dai_drv->playback.rate_max, |
| 520 | cpu_dai_drv->playback.rate_max); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 521 | runtime->hw.channels_min = |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 522 | max(codec_dai_drv->playback.channels_min, |
| 523 | cpu_dai_drv->playback.channels_min); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 524 | runtime->hw.channels_max = |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 525 | min(codec_dai_drv->playback.channels_max, |
| 526 | cpu_dai_drv->playback.channels_max); |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 527 | runtime->hw.formats = |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 528 | codec_dai_drv->playback.formats & cpu_dai_drv->playback.formats; |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 529 | runtime->hw.rates = |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 530 | codec_dai_drv->playback.rates & cpu_dai_drv->playback.rates; |
| 531 | if (codec_dai_drv->playback.rates |
Jassi Brar | d9ad629 | 2010-03-12 13:38:52 +0900 | [diff] [blame] | 532 | & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS)) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 533 | runtime->hw.rates |= cpu_dai_drv->playback.rates; |
| 534 | if (cpu_dai_drv->playback.rates |
Jassi Brar | d9ad629 | 2010-03-12 13:38:52 +0900 | [diff] [blame] | 535 | & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS)) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 536 | runtime->hw.rates |= codec_dai_drv->playback.rates; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 537 | } else { |
| 538 | runtime->hw.rate_min = |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 539 | max(codec_dai_drv->capture.rate_min, |
| 540 | cpu_dai_drv->capture.rate_min); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 541 | runtime->hw.rate_max = |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 542 | min(codec_dai_drv->capture.rate_max, |
| 543 | cpu_dai_drv->capture.rate_max); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 544 | runtime->hw.channels_min = |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 545 | max(codec_dai_drv->capture.channels_min, |
| 546 | cpu_dai_drv->capture.channels_min); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 547 | runtime->hw.channels_max = |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 548 | min(codec_dai_drv->capture.channels_max, |
| 549 | cpu_dai_drv->capture.channels_max); |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 550 | runtime->hw.formats = |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 551 | codec_dai_drv->capture.formats & cpu_dai_drv->capture.formats; |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 552 | runtime->hw.rates = |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 553 | codec_dai_drv->capture.rates & cpu_dai_drv->capture.rates; |
| 554 | if (codec_dai_drv->capture.rates |
Jassi Brar | d9ad629 | 2010-03-12 13:38:52 +0900 | [diff] [blame] | 555 | & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS)) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 556 | runtime->hw.rates |= cpu_dai_drv->capture.rates; |
| 557 | if (cpu_dai_drv->capture.rates |
Jassi Brar | d9ad629 | 2010-03-12 13:38:52 +0900 | [diff] [blame] | 558 | & (SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_CONTINUOUS)) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 559 | runtime->hw.rates |= codec_dai_drv->capture.rates; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 560 | } |
| 561 | |
| 562 | snd_pcm_limit_hw_rates(runtime); |
| 563 | if (!runtime->hw.rates) { |
| 564 | printk(KERN_ERR "asoc: %s <-> %s No matching rates\n", |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 565 | codec_dai->name, cpu_dai->name); |
Jassi Brar | bb1c047 | 2010-02-25 11:24:53 +0900 | [diff] [blame] | 566 | goto config_err; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 567 | } |
| 568 | if (!runtime->hw.formats) { |
| 569 | printk(KERN_ERR "asoc: %s <-> %s No matching formats\n", |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 570 | codec_dai->name, cpu_dai->name); |
Jassi Brar | bb1c047 | 2010-02-25 11:24:53 +0900 | [diff] [blame] | 571 | goto config_err; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 572 | } |
| 573 | if (!runtime->hw.channels_min || !runtime->hw.channels_max) { |
| 574 | printk(KERN_ERR "asoc: %s <-> %s No matching channels\n", |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 575 | codec_dai->name, cpu_dai->name); |
Jassi Brar | bb1c047 | 2010-02-25 11:24:53 +0900 | [diff] [blame] | 576 | goto config_err; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 577 | } |
| 578 | |
Mark Brown | 06f409d | 2009-04-07 18:10:13 +0100 | [diff] [blame] | 579 | /* Symmetry only applies if we've already got an active stream. */ |
| 580 | if (cpu_dai->active || codec_dai->active) { |
| 581 | ret = soc_pcm_apply_symmetry(substream); |
| 582 | if (ret != 0) |
Jassi Brar | bb1c047 | 2010-02-25 11:24:53 +0900 | [diff] [blame] | 583 | goto config_err; |
Mark Brown | 06f409d | 2009-04-07 18:10:13 +0100 | [diff] [blame] | 584 | } |
| 585 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 586 | pr_debug("asoc: %s <-> %s info:\n", |
| 587 | codec_dai->name, cpu_dai->name); |
Mark Brown | f24368c | 2008-10-21 21:45:08 +0100 | [diff] [blame] | 588 | pr_debug("asoc: rate mask 0x%x\n", runtime->hw.rates); |
| 589 | pr_debug("asoc: min ch %d max ch %d\n", runtime->hw.channels_min, |
| 590 | runtime->hw.channels_max); |
| 591 | pr_debug("asoc: min rate %d max rate %d\n", runtime->hw.rate_min, |
| 592 | runtime->hw.rate_max); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 593 | |
Jassi Brar | 14dc573 | 2010-02-26 09:12:32 +0900 | [diff] [blame] | 594 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 595 | cpu_dai->playback_active++; |
| 596 | codec_dai->playback_active++; |
Jassi Brar | 14dc573 | 2010-02-26 09:12:32 +0900 | [diff] [blame] | 597 | } else { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 598 | cpu_dai->capture_active++; |
| 599 | codec_dai->capture_active++; |
Jassi Brar | 14dc573 | 2010-02-26 09:12:32 +0900 | [diff] [blame] | 600 | } |
| 601 | cpu_dai->active++; |
| 602 | codec_dai->active++; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 603 | rtd->codec->active++; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 604 | mutex_unlock(&pcm_mutex); |
| 605 | return 0; |
| 606 | |
Jassi Brar | bb1c047 | 2010-02-25 11:24:53 +0900 | [diff] [blame] | 607 | config_err: |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 608 | if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown) |
| 609 | rtd->dai_link->ops->shutdown(substream); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 610 | |
Jassi Brar | bb1c047 | 2010-02-25 11:24:53 +0900 | [diff] [blame] | 611 | machine_err: |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 612 | if (codec_dai->driver->ops->shutdown) |
| 613 | codec_dai->driver->ops->shutdown(substream, codec_dai); |
Jassi Brar | bb1c047 | 2010-02-25 11:24:53 +0900 | [diff] [blame] | 614 | |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 615 | codec_dai_err: |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 616 | if (platform->driver->ops->close) |
| 617 | platform->driver->ops->close(substream); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 618 | |
| 619 | platform_err: |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 620 | if (cpu_dai->driver->ops->shutdown) |
| 621 | cpu_dai->driver->ops->shutdown(substream, cpu_dai); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 622 | out: |
| 623 | mutex_unlock(&pcm_mutex); |
| 624 | return ret; |
| 625 | } |
| 626 | |
| 627 | /* |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 628 | * Power down the audio subsystem pmdown_time msecs after close is called. |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 629 | * This is to ensure there are no pops or clicks in between any music tracks |
| 630 | * due to DAPM power cycling. |
| 631 | */ |
Andrew Morton | 4484bb2 | 2006-12-15 09:30:07 +0100 | [diff] [blame] | 632 | static void close_delayed_work(struct work_struct *work) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 633 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 634 | struct snd_soc_pcm_runtime *rtd = |
| 635 | container_of(work, struct snd_soc_pcm_runtime, delayed_work.work); |
| 636 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 637 | |
| 638 | mutex_lock(&pcm_mutex); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 639 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 640 | pr_debug("pop wq checking: %s status: %s waiting: %s\n", |
| 641 | codec_dai->driver->playback.stream_name, |
| 642 | codec_dai->playback_active ? "active" : "inactive", |
| 643 | codec_dai->pop_wait ? "yes" : "no"); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 644 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 645 | /* are we waiting on this codec DAI stream */ |
| 646 | if (codec_dai->pop_wait == 1) { |
| 647 | codec_dai->pop_wait = 0; |
| 648 | snd_soc_dapm_stream_event(rtd, |
| 649 | codec_dai->driver->playback.stream_name, |
| 650 | SND_SOC_DAPM_STREAM_STOP); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 651 | } |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 652 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 653 | mutex_unlock(&pcm_mutex); |
| 654 | } |
| 655 | |
| 656 | /* |
| 657 | * Called by ALSA when a PCM substream is closed. Private data can be |
| 658 | * freed here. The cpu DAI, codec DAI, machine and platform are also |
| 659 | * shutdown. |
| 660 | */ |
| 661 | static int soc_codec_close(struct snd_pcm_substream *substream) |
| 662 | { |
| 663 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 664 | struct snd_soc_platform *platform = rtd->platform; |
| 665 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| 666 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
| 667 | struct snd_soc_codec *codec = rtd->codec; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 668 | |
| 669 | mutex_lock(&pcm_mutex); |
| 670 | |
Jassi Brar | 14dc573 | 2010-02-26 09:12:32 +0900 | [diff] [blame] | 671 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 672 | cpu_dai->playback_active--; |
| 673 | codec_dai->playback_active--; |
Jassi Brar | 14dc573 | 2010-02-26 09:12:32 +0900 | [diff] [blame] | 674 | } else { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 675 | cpu_dai->capture_active--; |
| 676 | codec_dai->capture_active--; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 677 | } |
Jassi Brar | 14dc573 | 2010-02-26 09:12:32 +0900 | [diff] [blame] | 678 | |
| 679 | cpu_dai->active--; |
| 680 | codec_dai->active--; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 681 | codec->active--; |
| 682 | |
Mark Brown | 6010b2d | 2008-09-06 18:33:24 +0100 | [diff] [blame] | 683 | /* Muting the DAC suppresses artifacts caused during digital |
| 684 | * shutdown, for example from stopping clocks. |
| 685 | */ |
| 686 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 687 | snd_soc_dai_digital_mute(codec_dai, 1); |
| 688 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 689 | if (cpu_dai->driver->ops->shutdown) |
| 690 | cpu_dai->driver->ops->shutdown(substream, cpu_dai); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 691 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 692 | if (codec_dai->driver->ops->shutdown) |
| 693 | codec_dai->driver->ops->shutdown(substream, codec_dai); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 694 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 695 | if (rtd->dai_link->ops && rtd->dai_link->ops->shutdown) |
| 696 | rtd->dai_link->ops->shutdown(substream); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 697 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 698 | if (platform->driver->ops->close) |
| 699 | platform->driver->ops->close(substream); |
| 700 | cpu_dai->runtime = NULL; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 701 | |
| 702 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
| 703 | /* start delayed pop wq here for playback streams */ |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 704 | codec_dai->pop_wait = 1; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 705 | schedule_delayed_work(&rtd->delayed_work, |
| 706 | msecs_to_jiffies(rtd->pmdown_time)); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 707 | } else { |
| 708 | /* capture streams can be powered down now */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 709 | snd_soc_dapm_stream_event(rtd, |
| 710 | codec_dai->driver->capture.stream_name, |
Liam Girdwood | 0b4d221 | 2008-01-10 14:36:20 +0100 | [diff] [blame] | 711 | SND_SOC_DAPM_STREAM_STOP); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 712 | } |
| 713 | |
| 714 | mutex_unlock(&pcm_mutex); |
| 715 | return 0; |
| 716 | } |
| 717 | |
| 718 | /* |
| 719 | * Called by ALSA when the PCM substream is prepared, can set format, sample |
| 720 | * rate, etc. This function is non atomic and can be called multiple times, |
| 721 | * it can refer to the runtime info. |
| 722 | */ |
| 723 | static int soc_pcm_prepare(struct snd_pcm_substream *substream) |
| 724 | { |
| 725 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 726 | struct snd_soc_platform *platform = rtd->platform; |
| 727 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| 728 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 729 | int ret = 0; |
| 730 | |
| 731 | mutex_lock(&pcm_mutex); |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 732 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 733 | if (rtd->dai_link->ops && rtd->dai_link->ops->prepare) { |
| 734 | ret = rtd->dai_link->ops->prepare(substream); |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 735 | if (ret < 0) { |
| 736 | printk(KERN_ERR "asoc: machine prepare error\n"); |
| 737 | goto out; |
| 738 | } |
| 739 | } |
| 740 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 741 | if (platform->driver->ops->prepare) { |
| 742 | ret = platform->driver->ops->prepare(substream); |
Liam Girdwood | a71a468 | 2006-10-19 20:35:56 +0200 | [diff] [blame] | 743 | if (ret < 0) { |
| 744 | printk(KERN_ERR "asoc: platform prepare error\n"); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 745 | goto out; |
Liam Girdwood | a71a468 | 2006-10-19 20:35:56 +0200 | [diff] [blame] | 746 | } |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 747 | } |
| 748 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 749 | if (codec_dai->driver->ops->prepare) { |
| 750 | ret = codec_dai->driver->ops->prepare(substream, codec_dai); |
Liam Girdwood | a71a468 | 2006-10-19 20:35:56 +0200 | [diff] [blame] | 751 | if (ret < 0) { |
| 752 | printk(KERN_ERR "asoc: codec DAI prepare error\n"); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 753 | goto out; |
Liam Girdwood | a71a468 | 2006-10-19 20:35:56 +0200 | [diff] [blame] | 754 | } |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 755 | } |
| 756 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 757 | if (cpu_dai->driver->ops->prepare) { |
| 758 | ret = cpu_dai->driver->ops->prepare(substream, cpu_dai); |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 759 | if (ret < 0) { |
| 760 | printk(KERN_ERR "asoc: cpu DAI prepare error\n"); |
| 761 | goto out; |
| 762 | } |
| 763 | } |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 764 | |
Mark Brown | d45f621 | 2008-10-14 13:58:36 +0100 | [diff] [blame] | 765 | /* cancel any delayed stream shutdown that is pending */ |
| 766 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK && |
| 767 | codec_dai->pop_wait) { |
| 768 | codec_dai->pop_wait = 0; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 769 | cancel_delayed_work(&rtd->delayed_work); |
Mark Brown | d45f621 | 2008-10-14 13:58:36 +0100 | [diff] [blame] | 770 | } |
| 771 | |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 772 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 773 | snd_soc_dapm_stream_event(rtd, |
| 774 | codec_dai->driver->playback.stream_name, |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 775 | SND_SOC_DAPM_STREAM_START); |
| 776 | else |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 777 | snd_soc_dapm_stream_event(rtd, |
| 778 | codec_dai->driver->capture.stream_name, |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 779 | SND_SOC_DAPM_STREAM_START); |
Mark Brown | d45f621 | 2008-10-14 13:58:36 +0100 | [diff] [blame] | 780 | |
Mark Brown | 452c5ea | 2009-05-17 21:41:23 +0100 | [diff] [blame] | 781 | snd_soc_dai_digital_mute(codec_dai, 0); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 782 | |
| 783 | out: |
| 784 | mutex_unlock(&pcm_mutex); |
| 785 | return ret; |
| 786 | } |
| 787 | |
| 788 | /* |
| 789 | * Called by ALSA when the hardware params are set by application. This |
| 790 | * function can also be called multiple times and can allocate buffers |
| 791 | * (using snd_pcm_lib_* ). It's non-atomic. |
| 792 | */ |
| 793 | static int soc_pcm_hw_params(struct snd_pcm_substream *substream, |
| 794 | struct snd_pcm_hw_params *params) |
| 795 | { |
| 796 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 797 | struct snd_soc_platform *platform = rtd->platform; |
| 798 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| 799 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 800 | int ret = 0; |
| 801 | |
| 802 | mutex_lock(&pcm_mutex); |
| 803 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 804 | if (rtd->dai_link->ops && rtd->dai_link->ops->hw_params) { |
| 805 | ret = rtd->dai_link->ops->hw_params(substream, params); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 806 | if (ret < 0) { |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 807 | printk(KERN_ERR "asoc: machine hw_params failed\n"); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 808 | goto out; |
| 809 | } |
| 810 | } |
| 811 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 812 | if (codec_dai->driver->ops->hw_params) { |
| 813 | ret = codec_dai->driver->ops->hw_params(substream, params, codec_dai); |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 814 | if (ret < 0) { |
| 815 | printk(KERN_ERR "asoc: can't set codec %s hw params\n", |
| 816 | codec_dai->name); |
| 817 | goto codec_err; |
| 818 | } |
| 819 | } |
| 820 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 821 | if (cpu_dai->driver->ops->hw_params) { |
| 822 | ret = cpu_dai->driver->ops->hw_params(substream, params, cpu_dai); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 823 | if (ret < 0) { |
Mark Brown | 3ff3f64 | 2008-05-19 12:32:25 +0200 | [diff] [blame] | 824 | printk(KERN_ERR "asoc: interface %s hw params failed\n", |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 825 | cpu_dai->name); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 826 | goto interface_err; |
| 827 | } |
| 828 | } |
| 829 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 830 | if (platform->driver->ops->hw_params) { |
| 831 | ret = platform->driver->ops->hw_params(substream, params); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 832 | if (ret < 0) { |
Mark Brown | 3ff3f64 | 2008-05-19 12:32:25 +0200 | [diff] [blame] | 833 | printk(KERN_ERR "asoc: platform %s hw params failed\n", |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 834 | platform->name); |
| 835 | goto platform_err; |
| 836 | } |
| 837 | } |
| 838 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 839 | rtd->rate = params_rate(params); |
Mark Brown | 06f409d | 2009-04-07 18:10:13 +0100 | [diff] [blame] | 840 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 841 | out: |
| 842 | mutex_unlock(&pcm_mutex); |
| 843 | return ret; |
| 844 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 845 | platform_err: |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 846 | if (cpu_dai->driver->ops->hw_free) |
| 847 | cpu_dai->driver->ops->hw_free(substream, cpu_dai); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 848 | |
| 849 | interface_err: |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 850 | if (codec_dai->driver->ops->hw_free) |
| 851 | codec_dai->driver->ops->hw_free(substream, codec_dai); |
Liam Girdwood | cb666e5 | 2007-02-02 17:13:49 +0100 | [diff] [blame] | 852 | |
| 853 | codec_err: |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 854 | if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free) |
| 855 | rtd->dai_link->ops->hw_free(substream); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 856 | |
| 857 | mutex_unlock(&pcm_mutex); |
| 858 | return ret; |
| 859 | } |
| 860 | |
| 861 | /* |
Mark Brown | a00f90f | 2010-12-02 16:24:24 +0000 | [diff] [blame] | 862 | * Frees resources allocated by hw_params, can be called multiple times |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 863 | */ |
| 864 | static int soc_pcm_hw_free(struct snd_pcm_substream *substream) |
| 865 | { |
| 866 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 867 | struct snd_soc_platform *platform = rtd->platform; |
| 868 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| 869 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
| 870 | struct snd_soc_codec *codec = rtd->codec; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 871 | |
| 872 | mutex_lock(&pcm_mutex); |
| 873 | |
| 874 | /* apply codec digital mute */ |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 875 | if (!codec->active) |
| 876 | snd_soc_dai_digital_mute(codec_dai, 1); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 877 | |
| 878 | /* free any machine hw params */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 879 | if (rtd->dai_link->ops && rtd->dai_link->ops->hw_free) |
| 880 | rtd->dai_link->ops->hw_free(substream); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 881 | |
| 882 | /* free any DMA resources */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 883 | if (platform->driver->ops->hw_free) |
| 884 | platform->driver->ops->hw_free(substream); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 885 | |
Mark Brown | a00f90f | 2010-12-02 16:24:24 +0000 | [diff] [blame] | 886 | /* now free hw params for the DAIs */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 887 | if (codec_dai->driver->ops->hw_free) |
| 888 | codec_dai->driver->ops->hw_free(substream, codec_dai); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 889 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 890 | if (cpu_dai->driver->ops->hw_free) |
| 891 | cpu_dai->driver->ops->hw_free(substream, cpu_dai); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 892 | |
| 893 | mutex_unlock(&pcm_mutex); |
| 894 | return 0; |
| 895 | } |
| 896 | |
| 897 | static int soc_pcm_trigger(struct snd_pcm_substream *substream, int cmd) |
| 898 | { |
| 899 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 900 | struct snd_soc_platform *platform = rtd->platform; |
| 901 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| 902 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 903 | int ret; |
| 904 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 905 | if (codec_dai->driver->ops->trigger) { |
| 906 | ret = codec_dai->driver->ops->trigger(substream, cmd, codec_dai); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 907 | if (ret < 0) |
| 908 | return ret; |
| 909 | } |
| 910 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 911 | if (platform->driver->ops->trigger) { |
| 912 | ret = platform->driver->ops->trigger(substream, cmd); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 913 | if (ret < 0) |
| 914 | return ret; |
| 915 | } |
| 916 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 917 | if (cpu_dai->driver->ops->trigger) { |
| 918 | ret = cpu_dai->driver->ops->trigger(substream, cmd, cpu_dai); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 919 | if (ret < 0) |
| 920 | return ret; |
| 921 | } |
| 922 | return 0; |
| 923 | } |
| 924 | |
Peter Ujfalusi | 377b6f6 | 2010-03-03 15:08:06 +0200 | [diff] [blame] | 925 | /* |
| 926 | * soc level wrapper for pointer callback |
Peter Ujfalusi | 258020d | 2010-03-03 15:08:07 +0200 | [diff] [blame] | 927 | * If cpu_dai, codec_dai, platform driver has the delay callback, than |
| 928 | * the runtime->delay will be updated accordingly. |
Peter Ujfalusi | 377b6f6 | 2010-03-03 15:08:06 +0200 | [diff] [blame] | 929 | */ |
| 930 | static snd_pcm_uframes_t soc_pcm_pointer(struct snd_pcm_substream *substream) |
| 931 | { |
| 932 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 933 | struct snd_soc_platform *platform = rtd->platform; |
| 934 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
| 935 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
Peter Ujfalusi | 258020d | 2010-03-03 15:08:07 +0200 | [diff] [blame] | 936 | struct snd_pcm_runtime *runtime = substream->runtime; |
Peter Ujfalusi | 377b6f6 | 2010-03-03 15:08:06 +0200 | [diff] [blame] | 937 | snd_pcm_uframes_t offset = 0; |
Peter Ujfalusi | 258020d | 2010-03-03 15:08:07 +0200 | [diff] [blame] | 938 | snd_pcm_sframes_t delay = 0; |
Peter Ujfalusi | 377b6f6 | 2010-03-03 15:08:06 +0200 | [diff] [blame] | 939 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 940 | if (platform->driver->ops->pointer) |
| 941 | offset = platform->driver->ops->pointer(substream); |
Peter Ujfalusi | 377b6f6 | 2010-03-03 15:08:06 +0200 | [diff] [blame] | 942 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 943 | if (cpu_dai->driver->ops->delay) |
| 944 | delay += cpu_dai->driver->ops->delay(substream, cpu_dai); |
Peter Ujfalusi | 258020d | 2010-03-03 15:08:07 +0200 | [diff] [blame] | 945 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 946 | if (codec_dai->driver->ops->delay) |
| 947 | delay += codec_dai->driver->ops->delay(substream, codec_dai); |
Peter Ujfalusi | 258020d | 2010-03-03 15:08:07 +0200 | [diff] [blame] | 948 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 949 | if (platform->driver->delay) |
| 950 | delay += platform->driver->delay(substream, codec_dai); |
Peter Ujfalusi | 258020d | 2010-03-03 15:08:07 +0200 | [diff] [blame] | 951 | |
| 952 | runtime->delay = delay; |
| 953 | |
Peter Ujfalusi | 377b6f6 | 2010-03-03 15:08:06 +0200 | [diff] [blame] | 954 | return offset; |
| 955 | } |
| 956 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 957 | /* ASoC PCM operations */ |
| 958 | static struct snd_pcm_ops soc_pcm_ops = { |
| 959 | .open = soc_pcm_open, |
| 960 | .close = soc_codec_close, |
| 961 | .hw_params = soc_pcm_hw_params, |
| 962 | .hw_free = soc_pcm_hw_free, |
| 963 | .prepare = soc_pcm_prepare, |
| 964 | .trigger = soc_pcm_trigger, |
Peter Ujfalusi | 377b6f6 | 2010-03-03 15:08:06 +0200 | [diff] [blame] | 965 | .pointer = soc_pcm_pointer, |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 966 | }; |
| 967 | |
| 968 | #ifdef CONFIG_PM |
| 969 | /* powers down audio subsystem for suspend */ |
Mark Brown | 416356f | 2009-06-30 19:05:15 +0100 | [diff] [blame] | 970 | static int soc_suspend(struct device *dev) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 971 | { |
Mark Brown | 416356f | 2009-06-30 19:05:15 +0100 | [diff] [blame] | 972 | struct platform_device *pdev = to_platform_device(dev); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 973 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 974 | struct snd_soc_codec *codec; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 975 | int i; |
| 976 | |
Daniel Mack | e3509ff | 2009-06-03 17:44:49 +0200 | [diff] [blame] | 977 | /* If the initialization of this soc device failed, there is no codec |
| 978 | * associated with it. Just bail out in this case. |
| 979 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 980 | if (list_empty(&card->codec_dev_list)) |
Daniel Mack | e3509ff | 2009-06-03 17:44:49 +0200 | [diff] [blame] | 981 | return 0; |
| 982 | |
Andy Green | 6ed2597 | 2008-06-13 16:24:05 +0100 | [diff] [blame] | 983 | /* Due to the resume being scheduled into a workqueue we could |
| 984 | * suspend before that's finished - wait for it to complete. |
| 985 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 986 | snd_power_lock(card->snd_card); |
| 987 | snd_power_wait(card->snd_card, SNDRV_CTL_POWER_D0); |
| 988 | snd_power_unlock(card->snd_card); |
Andy Green | 6ed2597 | 2008-06-13 16:24:05 +0100 | [diff] [blame] | 989 | |
| 990 | /* we're going to block userspace touching us until resume completes */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 991 | snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D3hot); |
Andy Green | 6ed2597 | 2008-06-13 16:24:05 +0100 | [diff] [blame] | 992 | |
Mark Brown | a00f90f | 2010-12-02 16:24:24 +0000 | [diff] [blame] | 993 | /* mute any active DACs */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 994 | for (i = 0; i < card->num_rtd; i++) { |
| 995 | struct snd_soc_dai *dai = card->rtd[i].codec_dai; |
| 996 | struct snd_soc_dai_driver *drv = dai->driver; |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 997 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 998 | if (card->rtd[i].dai_link->ignore_suspend) |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 999 | continue; |
| 1000 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1001 | if (drv->ops->digital_mute && dai->playback_active) |
| 1002 | drv->ops->digital_mute(dai, 1); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1003 | } |
| 1004 | |
Liam Girdwood | 4ccab3e | 2008-01-10 14:39:01 +0100 | [diff] [blame] | 1005 | /* suspend all pcms */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1006 | for (i = 0; i < card->num_rtd; i++) { |
| 1007 | if (card->rtd[i].dai_link->ignore_suspend) |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 1008 | continue; |
| 1009 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1010 | snd_pcm_suspend_all(card->rtd[i].pcm); |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 1011 | } |
Liam Girdwood | 4ccab3e | 2008-01-10 14:39:01 +0100 | [diff] [blame] | 1012 | |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 1013 | if (card->suspend_pre) |
Mark Brown | 416356f | 2009-06-30 19:05:15 +0100 | [diff] [blame] | 1014 | card->suspend_pre(pdev, PMSG_SUSPEND); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1015 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1016 | for (i = 0; i < card->num_rtd; i++) { |
| 1017 | struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai; |
| 1018 | struct snd_soc_platform *platform = card->rtd[i].platform; |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 1019 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1020 | if (card->rtd[i].dai_link->ignore_suspend) |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 1021 | continue; |
| 1022 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1023 | if (cpu_dai->driver->suspend && !cpu_dai->driver->ac97_control) |
| 1024 | cpu_dai->driver->suspend(cpu_dai); |
| 1025 | if (platform->driver->suspend && !platform->suspended) { |
| 1026 | platform->driver->suspend(cpu_dai); |
| 1027 | platform->suspended = 1; |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 1028 | } |
| 1029 | } |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1030 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1031 | /* close any waiting streams and save state */ |
| 1032 | for (i = 0; i < card->num_rtd; i++) { |
Tejun Heo | 5b84ba2 | 2010-12-11 17:51:26 +0100 | [diff] [blame] | 1033 | flush_delayed_work_sync(&card->rtd[i].delayed_work); |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1034 | card->rtd[i].codec->dapm.suspend_bias_level = card->rtd[i].codec->dapm.bias_level; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1035 | } |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 1036 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1037 | for (i = 0; i < card->num_rtd; i++) { |
| 1038 | struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver; |
| 1039 | |
| 1040 | if (card->rtd[i].dai_link->ignore_suspend) |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 1041 | continue; |
| 1042 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1043 | if (driver->playback.stream_name != NULL) |
| 1044 | snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name, |
| 1045 | SND_SOC_DAPM_STREAM_SUSPEND); |
| 1046 | |
| 1047 | if (driver->capture.stream_name != NULL) |
| 1048 | snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name, |
| 1049 | SND_SOC_DAPM_STREAM_SUSPEND); |
| 1050 | } |
| 1051 | |
| 1052 | /* suspend all CODECs */ |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1053 | list_for_each_entry(codec, &card->codec_dev_list, card_list) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1054 | /* If there are paths active then the CODEC will be held with |
| 1055 | * bias _ON and should not be suspended. */ |
| 1056 | if (!codec->suspended && codec->driver->suspend) { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1057 | switch (codec->dapm.bias_level) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1058 | case SND_SOC_BIAS_STANDBY: |
| 1059 | case SND_SOC_BIAS_OFF: |
| 1060 | codec->driver->suspend(codec, PMSG_SUSPEND); |
| 1061 | codec->suspended = 1; |
| 1062 | break; |
| 1063 | default: |
| 1064 | dev_dbg(codec->dev, "CODEC is on over suspend\n"); |
| 1065 | break; |
| 1066 | } |
| 1067 | } |
| 1068 | } |
| 1069 | |
| 1070 | for (i = 0; i < card->num_rtd; i++) { |
| 1071 | struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai; |
| 1072 | |
| 1073 | if (card->rtd[i].dai_link->ignore_suspend) |
| 1074 | continue; |
| 1075 | |
| 1076 | if (cpu_dai->driver->suspend && cpu_dai->driver->ac97_control) |
| 1077 | cpu_dai->driver->suspend(cpu_dai); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1078 | } |
| 1079 | |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 1080 | if (card->suspend_post) |
Mark Brown | 416356f | 2009-06-30 19:05:15 +0100 | [diff] [blame] | 1081 | card->suspend_post(pdev, PMSG_SUSPEND); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1082 | |
| 1083 | return 0; |
| 1084 | } |
| 1085 | |
Andy Green | 6ed2597 | 2008-06-13 16:24:05 +0100 | [diff] [blame] | 1086 | /* deferred resume work, so resume can complete before we finished |
| 1087 | * setting our codec back up, which can be very slow on I2C |
| 1088 | */ |
| 1089 | static void soc_resume_deferred(struct work_struct *work) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1090 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1091 | struct snd_soc_card *card = |
| 1092 | container_of(work, struct snd_soc_card, deferred_resume_work); |
| 1093 | struct platform_device *pdev = to_platform_device(card->dev); |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1094 | struct snd_soc_codec *codec; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1095 | int i; |
| 1096 | |
Andy Green | 6ed2597 | 2008-06-13 16:24:05 +0100 | [diff] [blame] | 1097 | /* our power state is still SNDRV_CTL_POWER_D3hot from suspend time, |
| 1098 | * so userspace apps are blocked from touching us |
| 1099 | */ |
| 1100 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1101 | dev_dbg(card->dev, "starting resume work\n"); |
Andy Green | 6ed2597 | 2008-06-13 16:24:05 +0100 | [diff] [blame] | 1102 | |
Mark Brown | 9949788b | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 1103 | /* Bring us up into D2 so that DAPM starts enabling things */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1104 | snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D2); |
Mark Brown | 9949788b | 2010-05-07 20:24:05 +0100 | [diff] [blame] | 1105 | |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 1106 | if (card->resume_pre) |
| 1107 | card->resume_pre(pdev); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1108 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1109 | /* resume AC97 DAIs */ |
| 1110 | for (i = 0; i < card->num_rtd; i++) { |
| 1111 | struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai; |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 1112 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1113 | if (card->rtd[i].dai_link->ignore_suspend) |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 1114 | continue; |
| 1115 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1116 | if (cpu_dai->driver->resume && cpu_dai->driver->ac97_control) |
| 1117 | cpu_dai->driver->resume(cpu_dai); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1118 | } |
| 1119 | |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1120 | list_for_each_entry(codec, &card->codec_dev_list, card_list) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1121 | /* If the CODEC was idle over suspend then it will have been |
| 1122 | * left with bias OFF or STANDBY and suspended so we must now |
| 1123 | * resume. Otherwise the suspend was suppressed. |
| 1124 | */ |
| 1125 | if (codec->driver->resume && codec->suspended) { |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 1126 | switch (codec->dapm.bias_level) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1127 | case SND_SOC_BIAS_STANDBY: |
| 1128 | case SND_SOC_BIAS_OFF: |
| 1129 | codec->driver->resume(codec); |
| 1130 | codec->suspended = 0; |
| 1131 | break; |
| 1132 | default: |
| 1133 | dev_dbg(codec->dev, "CODEC was on over suspend\n"); |
| 1134 | break; |
| 1135 | } |
Mark Brown | 1547aba | 2010-05-07 21:11:40 +0100 | [diff] [blame] | 1136 | } |
| 1137 | } |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1138 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1139 | for (i = 0; i < card->num_rtd; i++) { |
| 1140 | struct snd_soc_dai_driver *driver = card->rtd[i].codec_dai->driver; |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 1141 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1142 | if (card->rtd[i].dai_link->ignore_suspend) |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 1143 | continue; |
| 1144 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1145 | if (driver->playback.stream_name != NULL) |
| 1146 | snd_soc_dapm_stream_event(&card->rtd[i], driver->playback.stream_name, |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1147 | SND_SOC_DAPM_STREAM_RESUME); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1148 | |
| 1149 | if (driver->capture.stream_name != NULL) |
| 1150 | snd_soc_dapm_stream_event(&card->rtd[i], driver->capture.stream_name, |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1151 | SND_SOC_DAPM_STREAM_RESUME); |
| 1152 | } |
| 1153 | |
Mark Brown | 3ff3f64 | 2008-05-19 12:32:25 +0200 | [diff] [blame] | 1154 | /* unmute any active DACs */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1155 | for (i = 0; i < card->num_rtd; i++) { |
| 1156 | struct snd_soc_dai *dai = card->rtd[i].codec_dai; |
| 1157 | struct snd_soc_dai_driver *drv = dai->driver; |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 1158 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1159 | if (card->rtd[i].dai_link->ignore_suspend) |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 1160 | continue; |
| 1161 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1162 | if (drv->ops->digital_mute && dai->playback_active) |
| 1163 | drv->ops->digital_mute(dai, 0); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1164 | } |
| 1165 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1166 | for (i = 0; i < card->num_rtd; i++) { |
| 1167 | struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai; |
| 1168 | struct snd_soc_platform *platform = card->rtd[i].platform; |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 1169 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1170 | if (card->rtd[i].dai_link->ignore_suspend) |
Mark Brown | 3efab7d | 2010-05-09 13:25:43 +0100 | [diff] [blame] | 1171 | continue; |
| 1172 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1173 | if (cpu_dai->driver->resume && !cpu_dai->driver->ac97_control) |
| 1174 | cpu_dai->driver->resume(cpu_dai); |
| 1175 | if (platform->driver->resume && platform->suspended) { |
| 1176 | platform->driver->resume(cpu_dai); |
| 1177 | platform->suspended = 0; |
| 1178 | } |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1179 | } |
| 1180 | |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 1181 | if (card->resume_post) |
| 1182 | card->resume_post(pdev); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1183 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1184 | dev_dbg(card->dev, "resume work completed\n"); |
Andy Green | 6ed2597 | 2008-06-13 16:24:05 +0100 | [diff] [blame] | 1185 | |
| 1186 | /* userspace can access us now we are back as we were before */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1187 | snd_power_change_state(card->snd_card, SNDRV_CTL_POWER_D0); |
Andy Green | 6ed2597 | 2008-06-13 16:24:05 +0100 | [diff] [blame] | 1188 | } |
| 1189 | |
| 1190 | /* powers up audio subsystem after a suspend */ |
Mark Brown | 416356f | 2009-06-30 19:05:15 +0100 | [diff] [blame] | 1191 | static int soc_resume(struct device *dev) |
Andy Green | 6ed2597 | 2008-06-13 16:24:05 +0100 | [diff] [blame] | 1192 | { |
Mark Brown | 416356f | 2009-06-30 19:05:15 +0100 | [diff] [blame] | 1193 | struct platform_device *pdev = to_platform_device(dev); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1194 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
| 1195 | int i; |
Peter Ujfalusi | b9dd94a | 2010-02-22 13:27:13 +0200 | [diff] [blame] | 1196 | |
Mark Brown | 64ab9ba | 2009-03-31 11:27:03 +0100 | [diff] [blame] | 1197 | /* AC97 devices might have other drivers hanging off them so |
| 1198 | * need to resume immediately. Other drivers don't have that |
| 1199 | * problem and may take a substantial amount of time to resume |
| 1200 | * due to I/O costs and anti-pop so handle them out of line. |
| 1201 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1202 | for (i = 0; i < card->num_rtd; i++) { |
| 1203 | struct snd_soc_dai *cpu_dai = card->rtd[i].cpu_dai; |
| 1204 | if (cpu_dai->driver->ac97_control) { |
| 1205 | dev_dbg(dev, "Resuming AC97 immediately\n"); |
| 1206 | soc_resume_deferred(&card->deferred_resume_work); |
| 1207 | } else { |
| 1208 | dev_dbg(dev, "Scheduling resume work\n"); |
| 1209 | if (!schedule_work(&card->deferred_resume_work)) |
| 1210 | dev_err(dev, "resume work item may be lost\n"); |
| 1211 | } |
Mark Brown | 64ab9ba | 2009-03-31 11:27:03 +0100 | [diff] [blame] | 1212 | } |
Andy Green | 6ed2597 | 2008-06-13 16:24:05 +0100 | [diff] [blame] | 1213 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1214 | return 0; |
| 1215 | } |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1216 | #else |
| 1217 | #define soc_suspend NULL |
| 1218 | #define soc_resume NULL |
| 1219 | #endif |
| 1220 | |
Barry Song | 02a06d3 | 2009-10-16 18:13:38 +0800 | [diff] [blame] | 1221 | static struct snd_soc_dai_ops null_dai_ops = { |
| 1222 | }; |
| 1223 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1224 | static int soc_bind_dai_link(struct snd_soc_card *card, int num) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1225 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1226 | struct snd_soc_dai_link *dai_link = &card->dai_link[num]; |
| 1227 | struct snd_soc_pcm_runtime *rtd = &card->rtd[num]; |
Mark Brown | fe3e78e | 2009-11-03 22:13:13 +0000 | [diff] [blame] | 1228 | struct snd_soc_codec *codec; |
Mark Brown | 435c5e2 | 2008-12-04 15:32:53 +0000 | [diff] [blame] | 1229 | struct snd_soc_platform *platform; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1230 | struct snd_soc_dai *codec_dai, *cpu_dai; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1231 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1232 | if (rtd->complete) |
| 1233 | return 1; |
| 1234 | dev_dbg(card->dev, "binding %s at idx %d\n", dai_link->name, num); |
Mark Brown | 6308419 | 2008-12-02 15:08:03 +0000 | [diff] [blame] | 1235 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1236 | /* do we already have the CPU DAI for this link ? */ |
| 1237 | if (rtd->cpu_dai) { |
| 1238 | goto find_codec; |
| 1239 | } |
| 1240 | /* no, then find CPU DAI from registered DAIs*/ |
| 1241 | list_for_each_entry(cpu_dai, &dai_list, list) { |
| 1242 | if (!strcmp(cpu_dai->name, dai_link->cpu_dai_name)) { |
| 1243 | |
| 1244 | if (!try_module_get(cpu_dai->dev->driver->owner)) |
| 1245 | return -ENODEV; |
| 1246 | |
| 1247 | rtd->cpu_dai = cpu_dai; |
| 1248 | goto find_codec; |
Mark Brown | 435c5e2 | 2008-12-04 15:32:53 +0000 | [diff] [blame] | 1249 | } |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1250 | } |
| 1251 | dev_dbg(card->dev, "CPU DAI %s not registered\n", |
| 1252 | dai_link->cpu_dai_name); |
| 1253 | |
| 1254 | find_codec: |
| 1255 | /* do we already have the CODEC for this link ? */ |
| 1256 | if (rtd->codec) { |
| 1257 | goto find_platform; |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 1258 | } |
| 1259 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1260 | /* no, then find CODEC from registered CODECs*/ |
| 1261 | list_for_each_entry(codec, &codec_list, list) { |
| 1262 | if (!strcmp(codec->name, dai_link->codec_name)) { |
| 1263 | rtd->codec = codec; |
Mark Brown | 6b05eda | 2008-12-08 19:26:48 +0000 | [diff] [blame] | 1264 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1265 | /* CODEC found, so find CODEC DAI from registered DAIs from this CODEC*/ |
| 1266 | list_for_each_entry(codec_dai, &dai_list, list) { |
| 1267 | if (codec->dev == codec_dai->dev && |
| 1268 | !strcmp(codec_dai->name, dai_link->codec_dai_name)) { |
| 1269 | rtd->codec_dai = codec_dai; |
| 1270 | goto find_platform; |
Mark Brown | 6b05eda | 2008-12-08 19:26:48 +0000 | [diff] [blame] | 1271 | } |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1272 | } |
| 1273 | dev_dbg(card->dev, "CODEC DAI %s not registered\n", |
| 1274 | dai_link->codec_dai_name); |
| 1275 | |
| 1276 | goto find_platform; |
| 1277 | } |
| 1278 | } |
| 1279 | dev_dbg(card->dev, "CODEC %s not registered\n", |
| 1280 | dai_link->codec_name); |
| 1281 | |
| 1282 | find_platform: |
| 1283 | /* do we already have the CODEC DAI for this link ? */ |
| 1284 | if (rtd->platform) { |
| 1285 | goto out; |
| 1286 | } |
| 1287 | /* no, then find CPU DAI from registered DAIs*/ |
| 1288 | list_for_each_entry(platform, &platform_list, list) { |
| 1289 | if (!strcmp(platform->name, dai_link->platform_name)) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1290 | rtd->platform = platform; |
| 1291 | goto out; |
| 1292 | } |
| 1293 | } |
| 1294 | |
| 1295 | dev_dbg(card->dev, "platform %s not registered\n", |
| 1296 | dai_link->platform_name); |
| 1297 | return 0; |
| 1298 | |
| 1299 | out: |
| 1300 | /* mark rtd as complete if we found all 4 of our client devices */ |
| 1301 | if (rtd->codec && rtd->codec_dai && rtd->platform && rtd->cpu_dai) { |
| 1302 | rtd->complete = 1; |
| 1303 | card->num_rtd++; |
| 1304 | } |
| 1305 | return 1; |
| 1306 | } |
| 1307 | |
Jarkko Nikula | 589c356 | 2010-12-06 16:27:07 +0200 | [diff] [blame] | 1308 | static void soc_remove_codec(struct snd_soc_codec *codec) |
| 1309 | { |
| 1310 | int err; |
| 1311 | |
| 1312 | if (codec->driver->remove) { |
| 1313 | err = codec->driver->remove(codec); |
| 1314 | if (err < 0) |
| 1315 | dev_err(codec->dev, |
| 1316 | "asoc: failed to remove %s: %d\n", |
| 1317 | codec->name, err); |
| 1318 | } |
| 1319 | |
| 1320 | /* Make sure all DAPM widgets are freed */ |
| 1321 | snd_soc_dapm_free(&codec->dapm); |
| 1322 | |
| 1323 | soc_cleanup_codec_debugfs(codec); |
| 1324 | codec->probed = 0; |
| 1325 | list_del(&codec->card_list); |
| 1326 | module_put(codec->dev->driver->owner); |
| 1327 | } |
| 1328 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1329 | static void soc_remove_dai_link(struct snd_soc_card *card, int num) |
| 1330 | { |
| 1331 | struct snd_soc_pcm_runtime *rtd = &card->rtd[num]; |
| 1332 | struct snd_soc_codec *codec = rtd->codec; |
| 1333 | struct snd_soc_platform *platform = rtd->platform; |
| 1334 | struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai; |
| 1335 | int err; |
| 1336 | |
| 1337 | /* unregister the rtd device */ |
| 1338 | if (rtd->dev_registered) { |
| 1339 | device_remove_file(&rtd->dev, &dev_attr_pmdown_time); |
Jarkko Nikula | 589c356 | 2010-12-06 16:27:07 +0200 | [diff] [blame] | 1340 | device_remove_file(&rtd->dev, &dev_attr_codec_reg); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1341 | device_unregister(&rtd->dev); |
| 1342 | rtd->dev_registered = 0; |
| 1343 | } |
| 1344 | |
| 1345 | /* remove the CODEC DAI */ |
| 1346 | if (codec_dai && codec_dai->probed) { |
| 1347 | if (codec_dai->driver->remove) { |
| 1348 | err = codec_dai->driver->remove(codec_dai); |
| 1349 | if (err < 0) |
| 1350 | printk(KERN_ERR "asoc: failed to remove %s\n", codec_dai->name); |
| 1351 | } |
| 1352 | codec_dai->probed = 0; |
| 1353 | list_del(&codec_dai->card_list); |
| 1354 | } |
| 1355 | |
| 1356 | /* remove the platform */ |
| 1357 | if (platform && platform->probed) { |
| 1358 | if (platform->driver->remove) { |
| 1359 | err = platform->driver->remove(platform); |
| 1360 | if (err < 0) |
| 1361 | printk(KERN_ERR "asoc: failed to remove %s\n", platform->name); |
| 1362 | } |
| 1363 | platform->probed = 0; |
| 1364 | list_del(&platform->card_list); |
| 1365 | module_put(platform->dev->driver->owner); |
| 1366 | } |
| 1367 | |
| 1368 | /* remove the CODEC */ |
Jarkko Nikula | 589c356 | 2010-12-06 16:27:07 +0200 | [diff] [blame] | 1369 | if (codec && codec->probed) |
| 1370 | soc_remove_codec(codec); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1371 | |
| 1372 | /* remove the cpu_dai */ |
| 1373 | if (cpu_dai && cpu_dai->probed) { |
| 1374 | if (cpu_dai->driver->remove) { |
| 1375 | err = cpu_dai->driver->remove(cpu_dai); |
| 1376 | if (err < 0) |
| 1377 | printk(KERN_ERR "asoc: failed to remove %s\n", cpu_dai->name); |
| 1378 | } |
| 1379 | cpu_dai->probed = 0; |
| 1380 | list_del(&cpu_dai->card_list); |
| 1381 | module_put(cpu_dai->dev->driver->owner); |
| 1382 | } |
| 1383 | } |
| 1384 | |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 1385 | static void soc_set_name_prefix(struct snd_soc_card *card, |
| 1386 | struct snd_soc_codec *codec) |
| 1387 | { |
| 1388 | int i; |
| 1389 | |
Dimitris Papastamos | ff819b8 | 2010-12-02 14:53:03 +0000 | [diff] [blame] | 1390 | if (card->codec_conf == NULL) |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 1391 | return; |
| 1392 | |
Dimitris Papastamos | ff819b8 | 2010-12-02 14:53:03 +0000 | [diff] [blame] | 1393 | for (i = 0; i < card->num_configs; i++) { |
| 1394 | struct snd_soc_codec_conf *map = &card->codec_conf[i]; |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 1395 | if (map->dev_name && !strcmp(codec->name, map->dev_name)) { |
| 1396 | codec->name_prefix = map->name_prefix; |
| 1397 | break; |
| 1398 | } |
| 1399 | } |
| 1400 | } |
| 1401 | |
Jarkko Nikula | 589c356 | 2010-12-06 16:27:07 +0200 | [diff] [blame] | 1402 | static int soc_probe_codec(struct snd_soc_card *card, |
| 1403 | struct snd_soc_codec *codec) |
| 1404 | { |
| 1405 | int ret = 0; |
| 1406 | |
| 1407 | codec->card = card; |
| 1408 | codec->dapm.card = card; |
| 1409 | soc_set_name_prefix(card, codec); |
| 1410 | |
| 1411 | if (codec->driver->probe) { |
| 1412 | ret = codec->driver->probe(codec); |
| 1413 | if (ret < 0) { |
| 1414 | dev_err(codec->dev, |
| 1415 | "asoc: failed to probe CODEC %s: %d\n", |
| 1416 | codec->name, ret); |
| 1417 | return ret; |
| 1418 | } |
| 1419 | } |
| 1420 | |
| 1421 | soc_init_codec_debugfs(codec); |
| 1422 | |
| 1423 | /* mark codec as probed and add to card codec list */ |
Harsha Priya | f6c2ed5 | 2011-01-05 11:34:51 +0530 | [diff] [blame] | 1424 | if (!try_module_get(codec->dev->driver->owner)) |
| 1425 | return -ENODEV; |
| 1426 | |
Jarkko Nikula | 589c356 | 2010-12-06 16:27:07 +0200 | [diff] [blame] | 1427 | codec->probed = 1; |
| 1428 | list_add(&codec->card_list, &card->codec_dev_list); |
Jarkko Nikula | 7be31be8 | 2010-12-14 12:18:32 +0200 | [diff] [blame] | 1429 | list_add(&codec->dapm.list, &card->dapm_list); |
Jarkko Nikula | 589c356 | 2010-12-06 16:27:07 +0200 | [diff] [blame] | 1430 | |
| 1431 | return ret; |
| 1432 | } |
| 1433 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1434 | static void rtd_release(struct device *dev) {} |
| 1435 | |
Jarkko Nikula | 589c356 | 2010-12-06 16:27:07 +0200 | [diff] [blame] | 1436 | static int soc_post_component_init(struct snd_soc_card *card, |
| 1437 | struct snd_soc_codec *codec, |
| 1438 | int num, int dailess) |
| 1439 | { |
| 1440 | struct snd_soc_dai_link *dai_link = NULL; |
| 1441 | struct snd_soc_aux_dev *aux_dev = NULL; |
| 1442 | struct snd_soc_pcm_runtime *rtd; |
| 1443 | const char *temp, *name; |
| 1444 | int ret = 0; |
| 1445 | |
| 1446 | if (!dailess) { |
| 1447 | dai_link = &card->dai_link[num]; |
| 1448 | rtd = &card->rtd[num]; |
| 1449 | name = dai_link->name; |
| 1450 | } else { |
| 1451 | aux_dev = &card->aux_dev[num]; |
| 1452 | rtd = &card->rtd_aux[num]; |
| 1453 | name = aux_dev->name; |
| 1454 | } |
| 1455 | |
| 1456 | /* machine controls, routes and widgets are not prefixed */ |
| 1457 | temp = codec->name_prefix; |
| 1458 | codec->name_prefix = NULL; |
| 1459 | |
| 1460 | /* do machine specific initialization */ |
| 1461 | if (!dailess && dai_link->init) |
| 1462 | ret = dai_link->init(rtd); |
| 1463 | else if (dailess && aux_dev->init) |
| 1464 | ret = aux_dev->init(&codec->dapm); |
| 1465 | if (ret < 0) { |
| 1466 | dev_err(card->dev, "asoc: failed to init %s: %d\n", name, ret); |
| 1467 | return ret; |
| 1468 | } |
| 1469 | codec->name_prefix = temp; |
| 1470 | |
| 1471 | /* Make sure all DAPM widgets are instantiated */ |
| 1472 | snd_soc_dapm_new_widgets(&codec->dapm); |
Jarkko Nikula | 589c356 | 2010-12-06 16:27:07 +0200 | [diff] [blame] | 1473 | |
| 1474 | /* register the rtd device */ |
| 1475 | rtd->codec = codec; |
| 1476 | rtd->card = card; |
| 1477 | rtd->dev.parent = card->dev; |
| 1478 | rtd->dev.release = rtd_release; |
| 1479 | rtd->dev.init_name = name; |
| 1480 | ret = device_register(&rtd->dev); |
| 1481 | if (ret < 0) { |
| 1482 | dev_err(card->dev, |
| 1483 | "asoc: failed to register runtime device: %d\n", ret); |
| 1484 | return ret; |
| 1485 | } |
| 1486 | rtd->dev_registered = 1; |
| 1487 | |
| 1488 | /* add DAPM sysfs entries for this codec */ |
| 1489 | ret = snd_soc_dapm_sys_add(&rtd->dev); |
| 1490 | if (ret < 0) |
| 1491 | dev_err(codec->dev, |
| 1492 | "asoc: failed to add codec dapm sysfs entries: %d\n", |
| 1493 | ret); |
| 1494 | |
| 1495 | /* add codec sysfs entries */ |
| 1496 | ret = device_create_file(&rtd->dev, &dev_attr_codec_reg); |
| 1497 | if (ret < 0) |
| 1498 | dev_err(codec->dev, |
| 1499 | "asoc: failed to add codec sysfs files: %d\n", ret); |
| 1500 | |
| 1501 | return 0; |
| 1502 | } |
| 1503 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1504 | static int soc_probe_dai_link(struct snd_soc_card *card, int num) |
| 1505 | { |
| 1506 | struct snd_soc_dai_link *dai_link = &card->dai_link[num]; |
| 1507 | struct snd_soc_pcm_runtime *rtd = &card->rtd[num]; |
| 1508 | struct snd_soc_codec *codec = rtd->codec; |
| 1509 | struct snd_soc_platform *platform = rtd->platform; |
| 1510 | struct snd_soc_dai *codec_dai = rtd->codec_dai, *cpu_dai = rtd->cpu_dai; |
| 1511 | int ret; |
| 1512 | |
| 1513 | dev_dbg(card->dev, "probe %s dai link %d\n", card->name, num); |
| 1514 | |
| 1515 | /* config components */ |
| 1516 | codec_dai->codec = codec; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1517 | cpu_dai->platform = platform; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1518 | codec_dai->card = card; |
| 1519 | cpu_dai->card = card; |
| 1520 | |
| 1521 | /* set default power off timeout */ |
| 1522 | rtd->pmdown_time = pmdown_time; |
| 1523 | |
| 1524 | /* probe the cpu_dai */ |
| 1525 | if (!cpu_dai->probed) { |
| 1526 | if (cpu_dai->driver->probe) { |
| 1527 | ret = cpu_dai->driver->probe(cpu_dai); |
| 1528 | if (ret < 0) { |
| 1529 | printk(KERN_ERR "asoc: failed to probe CPU DAI %s\n", |
| 1530 | cpu_dai->name); |
| 1531 | return ret; |
| 1532 | } |
| 1533 | } |
| 1534 | cpu_dai->probed = 1; |
| 1535 | /* mark cpu_dai as probed and add to card cpu_dai list */ |
| 1536 | list_add(&cpu_dai->card_list, &card->dai_dev_list); |
| 1537 | } |
| 1538 | |
| 1539 | /* probe the CODEC */ |
| 1540 | if (!codec->probed) { |
Jarkko Nikula | 589c356 | 2010-12-06 16:27:07 +0200 | [diff] [blame] | 1541 | ret = soc_probe_codec(card, codec); |
| 1542 | if (ret < 0) |
| 1543 | return ret; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1544 | } |
| 1545 | |
| 1546 | /* probe the platform */ |
| 1547 | if (!platform->probed) { |
| 1548 | if (platform->driver->probe) { |
| 1549 | ret = platform->driver->probe(platform); |
| 1550 | if (ret < 0) { |
| 1551 | printk(KERN_ERR "asoc: failed to probe platform %s\n", |
| 1552 | platform->name); |
| 1553 | return ret; |
| 1554 | } |
| 1555 | } |
| 1556 | /* mark platform as probed and add to card platform list */ |
Harsha Priya | f6c2ed5 | 2011-01-05 11:34:51 +0530 | [diff] [blame] | 1557 | |
| 1558 | if (!try_module_get(platform->dev->driver->owner)) |
| 1559 | return -ENODEV; |
| 1560 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1561 | platform->probed = 1; |
| 1562 | list_add(&platform->card_list, &card->platform_dev_list); |
| 1563 | } |
| 1564 | |
| 1565 | /* probe the CODEC DAI */ |
| 1566 | if (!codec_dai->probed) { |
| 1567 | if (codec_dai->driver->probe) { |
| 1568 | ret = codec_dai->driver->probe(codec_dai); |
| 1569 | if (ret < 0) { |
| 1570 | printk(KERN_ERR "asoc: failed to probe CODEC DAI %s\n", |
| 1571 | codec_dai->name); |
| 1572 | return ret; |
Mark Brown | 6b05eda | 2008-12-08 19:26:48 +0000 | [diff] [blame] | 1573 | } |
| 1574 | } |
| 1575 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1576 | /* mark cpu_dai as probed and add to card cpu_dai list */ |
| 1577 | codec_dai->probed = 1; |
| 1578 | list_add(&codec_dai->card_list, &card->dai_dev_list); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1579 | } |
| 1580 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1581 | /* DAPM dai link stream work */ |
| 1582 | INIT_DELAYED_WORK(&rtd->delayed_work, close_delayed_work); |
| 1583 | |
Jarkko Nikula | 589c356 | 2010-12-06 16:27:07 +0200 | [diff] [blame] | 1584 | ret = soc_post_component_init(card, codec, num, 0); |
| 1585 | if (ret) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1586 | return ret; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1587 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1588 | ret = device_create_file(&rtd->dev, &dev_attr_pmdown_time); |
| 1589 | if (ret < 0) |
| 1590 | printk(KERN_WARNING "asoc: failed to add pmdown_time sysfs\n"); |
| 1591 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1592 | /* create the pcm */ |
| 1593 | ret = soc_new_pcm(rtd, num); |
| 1594 | if (ret < 0) { |
| 1595 | printk(KERN_ERR "asoc: can't create pcm %s\n", dai_link->stream_name); |
| 1596 | return ret; |
| 1597 | } |
| 1598 | |
| 1599 | /* add platform data for AC97 devices */ |
| 1600 | if (rtd->codec_dai->driver->ac97_control) |
| 1601 | snd_ac97_dev_add_pdata(codec->ac97, rtd->cpu_dai->ac97_pdata); |
| 1602 | |
| 1603 | return 0; |
| 1604 | } |
| 1605 | |
| 1606 | #ifdef CONFIG_SND_SOC_AC97_BUS |
| 1607 | static int soc_register_ac97_dai_link(struct snd_soc_pcm_runtime *rtd) |
| 1608 | { |
| 1609 | int ret; |
| 1610 | |
| 1611 | /* Only instantiate AC97 if not already done by the adaptor |
| 1612 | * for the generic AC97 subsystem. |
| 1613 | */ |
| 1614 | if (rtd->codec_dai->driver->ac97_control && !rtd->codec->ac97_registered) { |
Mika Westerberg | 0562f78 | 2010-10-13 11:30:32 +0300 | [diff] [blame] | 1615 | /* |
| 1616 | * It is possible that the AC97 device is already registered to |
| 1617 | * the device subsystem. This happens when the device is created |
| 1618 | * via snd_ac97_mixer(). Currently only SoC codec that does so |
| 1619 | * is the generic AC97 glue but others migh emerge. |
| 1620 | * |
| 1621 | * In those cases we don't try to register the device again. |
| 1622 | */ |
| 1623 | if (!rtd->codec->ac97_created) |
| 1624 | return 0; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1625 | |
| 1626 | ret = soc_ac97_dev_register(rtd->codec); |
| 1627 | if (ret < 0) { |
| 1628 | printk(KERN_ERR "asoc: AC97 device register failed\n"); |
| 1629 | return ret; |
| 1630 | } |
| 1631 | |
| 1632 | rtd->codec->ac97_registered = 1; |
| 1633 | } |
| 1634 | return 0; |
| 1635 | } |
| 1636 | |
| 1637 | static void soc_unregister_ac97_dai_link(struct snd_soc_codec *codec) |
| 1638 | { |
| 1639 | if (codec->ac97_registered) { |
| 1640 | soc_ac97_dev_unregister(codec); |
| 1641 | codec->ac97_registered = 0; |
| 1642 | } |
| 1643 | } |
| 1644 | #endif |
| 1645 | |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1646 | static int soc_probe_aux_dev(struct snd_soc_card *card, int num) |
| 1647 | { |
| 1648 | struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num]; |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1649 | struct snd_soc_codec *codec; |
Jarkko Nikula | 676ad98 | 2010-12-03 09:18:22 +0200 | [diff] [blame] | 1650 | int ret = -ENODEV; |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1651 | |
| 1652 | /* find CODEC from registered CODECs*/ |
| 1653 | list_for_each_entry(codec, &codec_list, list) { |
| 1654 | if (!strcmp(codec->name, aux_dev->codec_name)) { |
| 1655 | if (codec->probed) { |
| 1656 | dev_err(codec->dev, |
| 1657 | "asoc: codec already probed"); |
| 1658 | ret = -EBUSY; |
| 1659 | goto out; |
| 1660 | } |
Jarkko Nikula | 676ad98 | 2010-12-03 09:18:22 +0200 | [diff] [blame] | 1661 | goto found; |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1662 | } |
| 1663 | } |
Jarkko Nikula | 676ad98 | 2010-12-03 09:18:22 +0200 | [diff] [blame] | 1664 | /* codec not found */ |
| 1665 | dev_err(card->dev, "asoc: codec %s not found", aux_dev->codec_name); |
| 1666 | goto out; |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1667 | |
Jarkko Nikula | 676ad98 | 2010-12-03 09:18:22 +0200 | [diff] [blame] | 1668 | found: |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1669 | if (!try_module_get(codec->dev->driver->owner)) |
| 1670 | return -ENODEV; |
| 1671 | |
Jarkko Nikula | 589c356 | 2010-12-06 16:27:07 +0200 | [diff] [blame] | 1672 | ret = soc_probe_codec(card, codec); |
| 1673 | if (ret < 0) |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1674 | return ret; |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1675 | |
Jarkko Nikula | 589c356 | 2010-12-06 16:27:07 +0200 | [diff] [blame] | 1676 | ret = soc_post_component_init(card, codec, num, 1); |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1677 | |
| 1678 | out: |
| 1679 | return ret; |
| 1680 | } |
| 1681 | |
| 1682 | static void soc_remove_aux_dev(struct snd_soc_card *card, int num) |
| 1683 | { |
| 1684 | struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num]; |
| 1685 | struct snd_soc_codec *codec = rtd->codec; |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1686 | |
| 1687 | /* unregister the rtd device */ |
| 1688 | if (rtd->dev_registered) { |
Jarkko Nikula | 589c356 | 2010-12-06 16:27:07 +0200 | [diff] [blame] | 1689 | device_remove_file(&rtd->dev, &dev_attr_codec_reg); |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1690 | device_unregister(&rtd->dev); |
| 1691 | rtd->dev_registered = 0; |
| 1692 | } |
| 1693 | |
Jarkko Nikula | 589c356 | 2010-12-06 16:27:07 +0200 | [diff] [blame] | 1694 | if (codec && codec->probed) |
| 1695 | soc_remove_codec(codec); |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1696 | } |
| 1697 | |
Dimitris Papastamos | fdf0f54 | 2010-12-02 16:11:06 +0000 | [diff] [blame] | 1698 | static int snd_soc_init_codec_cache(struct snd_soc_codec *codec, |
| 1699 | enum snd_soc_compress_type compress_type) |
| 1700 | { |
| 1701 | int ret; |
| 1702 | |
| 1703 | if (codec->cache_init) |
| 1704 | return 0; |
| 1705 | |
| 1706 | /* override the compress_type if necessary */ |
| 1707 | if (compress_type && codec->compress_type != compress_type) |
| 1708 | codec->compress_type = compress_type; |
Dimitris Papastamos | fdf0f54 | 2010-12-02 16:11:06 +0000 | [diff] [blame] | 1709 | ret = snd_soc_cache_init(codec); |
| 1710 | if (ret < 0) { |
| 1711 | dev_err(codec->dev, "Failed to set cache compression type: %d\n", |
| 1712 | ret); |
| 1713 | return ret; |
| 1714 | } |
| 1715 | codec->cache_init = 1; |
| 1716 | return 0; |
| 1717 | } |
| 1718 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1719 | static void snd_soc_instantiate_card(struct snd_soc_card *card) |
| 1720 | { |
| 1721 | struct platform_device *pdev = to_platform_device(card->dev); |
Dimitris Papastamos | fdf0f54 | 2010-12-02 16:11:06 +0000 | [diff] [blame] | 1722 | struct snd_soc_codec *codec; |
| 1723 | struct snd_soc_codec_conf *codec_conf; |
| 1724 | enum snd_soc_compress_type compress_type; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1725 | int ret, i; |
| 1726 | |
| 1727 | mutex_lock(&card->mutex); |
| 1728 | |
| 1729 | if (card->instantiated) { |
| 1730 | mutex_unlock(&card->mutex); |
| 1731 | return; |
| 1732 | } |
| 1733 | |
| 1734 | /* bind DAIs */ |
| 1735 | for (i = 0; i < card->num_links; i++) |
| 1736 | soc_bind_dai_link(card, i); |
| 1737 | |
| 1738 | /* bind completed ? */ |
| 1739 | if (card->num_rtd != card->num_links) { |
| 1740 | mutex_unlock(&card->mutex); |
| 1741 | return; |
| 1742 | } |
| 1743 | |
Dimitris Papastamos | fdf0f54 | 2010-12-02 16:11:06 +0000 | [diff] [blame] | 1744 | /* initialize the register cache for each available codec */ |
| 1745 | list_for_each_entry(codec, &codec_list, list) { |
| 1746 | if (codec->cache_init) |
| 1747 | continue; |
Dimitris Papastamos | 861f2fa | 2011-01-11 11:43:51 +0000 | [diff] [blame] | 1748 | /* by default we don't override the compress_type */ |
| 1749 | compress_type = 0; |
Dimitris Papastamos | fdf0f54 | 2010-12-02 16:11:06 +0000 | [diff] [blame] | 1750 | /* check to see if we need to override the compress_type */ |
| 1751 | for (i = 0; i < card->num_configs; ++i) { |
| 1752 | codec_conf = &card->codec_conf[i]; |
| 1753 | if (!strcmp(codec->name, codec_conf->dev_name)) { |
| 1754 | compress_type = codec_conf->compress_type; |
| 1755 | if (compress_type && compress_type |
| 1756 | != codec->compress_type) |
| 1757 | break; |
| 1758 | } |
| 1759 | } |
Dimitris Papastamos | fdf0f54 | 2010-12-02 16:11:06 +0000 | [diff] [blame] | 1760 | ret = snd_soc_init_codec_cache(codec, compress_type); |
| 1761 | if (ret < 0) { |
| 1762 | mutex_unlock(&card->mutex); |
| 1763 | return; |
| 1764 | } |
| 1765 | } |
| 1766 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1767 | /* card bind complete so register a sound card */ |
| 1768 | ret = snd_card_create(SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1, |
| 1769 | card->owner, 0, &card->snd_card); |
| 1770 | if (ret < 0) { |
| 1771 | printk(KERN_ERR "asoc: can't create sound card for card %s\n", |
| 1772 | card->name); |
| 1773 | mutex_unlock(&card->mutex); |
| 1774 | return; |
| 1775 | } |
| 1776 | card->snd_card->dev = card->dev; |
| 1777 | |
Randy Dunlap | 1301a96 | 2008-06-17 19:19:34 +0100 | [diff] [blame] | 1778 | #ifdef CONFIG_PM |
Andy Green | 6ed2597 | 2008-06-13 16:24:05 +0100 | [diff] [blame] | 1779 | /* deferred resume work */ |
Mark Brown | 6308419 | 2008-12-02 15:08:03 +0000 | [diff] [blame] | 1780 | INIT_WORK(&card->deferred_resume_work, soc_resume_deferred); |
Randy Dunlap | 1301a96 | 2008-06-17 19:19:34 +0100 | [diff] [blame] | 1781 | #endif |
Andy Green | 6ed2597 | 2008-06-13 16:24:05 +0100 | [diff] [blame] | 1782 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1783 | /* initialise the sound card only once */ |
| 1784 | if (card->probe) { |
| 1785 | ret = card->probe(pdev); |
| 1786 | if (ret < 0) |
| 1787 | goto card_probe_error; |
| 1788 | } |
| 1789 | |
Mark Brown | fe3e78e | 2009-11-03 22:13:13 +0000 | [diff] [blame] | 1790 | for (i = 0; i < card->num_links; i++) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1791 | ret = soc_probe_dai_link(card, i); |
| 1792 | if (ret < 0) { |
Mark Brown | 321de0d | 2010-09-21 15:09:37 +0100 | [diff] [blame] | 1793 | pr_err("asoc: failed to instantiate card %s: %d\n", |
| 1794 | card->name, ret); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1795 | goto probe_dai_err; |
| 1796 | } |
| 1797 | } |
| 1798 | |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1799 | for (i = 0; i < card->num_aux_devs; i++) { |
| 1800 | ret = soc_probe_aux_dev(card, i); |
| 1801 | if (ret < 0) { |
| 1802 | pr_err("asoc: failed to add auxiliary devices %s: %d\n", |
| 1803 | card->name, ret); |
| 1804 | goto probe_aux_dev_err; |
| 1805 | } |
| 1806 | } |
| 1807 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1808 | snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname), |
| 1809 | "%s", card->name); |
| 1810 | snprintf(card->snd_card->longname, sizeof(card->snd_card->longname), |
| 1811 | "%s", card->name); |
| 1812 | |
| 1813 | ret = snd_card_register(card->snd_card); |
| 1814 | if (ret < 0) { |
| 1815 | printk(KERN_ERR "asoc: failed to register soundcard for %s\n", card->name); |
Axel Lin | 6b3ed78 | 2010-12-07 16:12:29 +0800 | [diff] [blame] | 1816 | goto probe_aux_dev_err; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1817 | } |
| 1818 | |
| 1819 | #ifdef CONFIG_SND_SOC_AC97_BUS |
| 1820 | /* register any AC97 codecs */ |
| 1821 | for (i = 0; i < card->num_rtd; i++) { |
Axel Lin | 6b3ed78 | 2010-12-07 16:12:29 +0800 | [diff] [blame] | 1822 | ret = soc_register_ac97_dai_link(&card->rtd[i]); |
| 1823 | if (ret < 0) { |
| 1824 | printk(KERN_ERR "asoc: failed to register AC97 %s\n", card->name); |
| 1825 | while (--i >= 0) |
Mark Brown | 7d8316d | 2010-12-13 17:03:27 +0000 | [diff] [blame] | 1826 | soc_unregister_ac97_dai_link(card->rtd[i].codec); |
Axel Lin | 6b3ed78 | 2010-12-07 16:12:29 +0800 | [diff] [blame] | 1827 | goto probe_aux_dev_err; |
Mark Brown | fe3e78e | 2009-11-03 22:13:13 +0000 | [diff] [blame] | 1828 | } |
Axel Lin | 6b3ed78 | 2010-12-07 16:12:29 +0800 | [diff] [blame] | 1829 | } |
Mark Brown | fe3e78e | 2009-11-03 22:13:13 +0000 | [diff] [blame] | 1830 | #endif |
| 1831 | |
Mark Brown | 435c5e2 | 2008-12-04 15:32:53 +0000 | [diff] [blame] | 1832 | card->instantiated = 1; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1833 | mutex_unlock(&card->mutex); |
Mark Brown | 435c5e2 | 2008-12-04 15:32:53 +0000 | [diff] [blame] | 1834 | return; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1835 | |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 1836 | probe_aux_dev_err: |
| 1837 | for (i = 0; i < card->num_aux_devs; i++) |
| 1838 | soc_remove_aux_dev(card, i); |
| 1839 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1840 | probe_dai_err: |
| 1841 | for (i = 0; i < card->num_links; i++) |
| 1842 | soc_remove_dai_link(card, i); |
Mark Brown | fe3e78e | 2009-11-03 22:13:13 +0000 | [diff] [blame] | 1843 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1844 | card_probe_error: |
Mark Brown | 8750654 | 2008-11-18 20:50:34 +0000 | [diff] [blame] | 1845 | if (card->remove) |
| 1846 | card->remove(pdev); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1847 | |
| 1848 | snd_card_free(card->snd_card); |
| 1849 | |
| 1850 | mutex_unlock(&card->mutex); |
Mark Brown | 435c5e2 | 2008-12-04 15:32:53 +0000 | [diff] [blame] | 1851 | } |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1852 | |
Mark Brown | 435c5e2 | 2008-12-04 15:32:53 +0000 | [diff] [blame] | 1853 | /* |
Uwe Kleine-König | 421f91d | 2010-06-11 12:17:00 +0200 | [diff] [blame] | 1854 | * Attempt to initialise any uninitialised cards. Must be called with |
Mark Brown | 435c5e2 | 2008-12-04 15:32:53 +0000 | [diff] [blame] | 1855 | * client_mutex. |
| 1856 | */ |
| 1857 | static void snd_soc_instantiate_cards(void) |
| 1858 | { |
| 1859 | struct snd_soc_card *card; |
| 1860 | list_for_each_entry(card, &card_list, list) |
| 1861 | snd_soc_instantiate_card(card); |
| 1862 | } |
| 1863 | |
| 1864 | /* probes a new socdev */ |
| 1865 | static int soc_probe(struct platform_device *pdev) |
| 1866 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1867 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
Mark Brown | 435c5e2 | 2008-12-04 15:32:53 +0000 | [diff] [blame] | 1868 | int ret = 0; |
Mark Brown | 435c5e2 | 2008-12-04 15:32:53 +0000 | [diff] [blame] | 1869 | |
Vinod Koul | 70a7ca3 | 2011-01-14 19:22:48 +0530 | [diff] [blame] | 1870 | /* |
| 1871 | * no card, so machine driver should be registering card |
| 1872 | * we should not be here in that case so ret error |
| 1873 | */ |
| 1874 | if (!card) |
| 1875 | return -EINVAL; |
| 1876 | |
Mark Brown | 435c5e2 | 2008-12-04 15:32:53 +0000 | [diff] [blame] | 1877 | /* Bodge while we unpick instantiation */ |
| 1878 | card->dev = &pdev->dev; |
Vinod Koul | 4e10bda | 2011-01-13 22:48:52 +0530 | [diff] [blame] | 1879 | snd_soc_initialize_card_lists(card); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1880 | |
Mark Brown | 435c5e2 | 2008-12-04 15:32:53 +0000 | [diff] [blame] | 1881 | ret = snd_soc_register_card(card); |
| 1882 | if (ret != 0) { |
| 1883 | dev_err(&pdev->dev, "Failed to register card\n"); |
| 1884 | return ret; |
| 1885 | } |
| 1886 | |
| 1887 | return 0; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1888 | } |
| 1889 | |
Vinod Koul | b0e2648 | 2011-01-13 22:48:02 +0530 | [diff] [blame] | 1890 | static int soc_cleanup_card_resources(struct snd_soc_card *card) |
| 1891 | { |
| 1892 | struct platform_device *pdev = to_platform_device(card->dev); |
| 1893 | int i; |
| 1894 | |
| 1895 | /* make sure any delayed work runs */ |
| 1896 | for (i = 0; i < card->num_rtd; i++) { |
| 1897 | struct snd_soc_pcm_runtime *rtd = &card->rtd[i]; |
| 1898 | flush_delayed_work_sync(&rtd->delayed_work); |
| 1899 | } |
| 1900 | |
| 1901 | /* remove auxiliary devices */ |
| 1902 | for (i = 0; i < card->num_aux_devs; i++) |
| 1903 | soc_remove_aux_dev(card, i); |
| 1904 | |
| 1905 | /* remove and free each DAI */ |
| 1906 | for (i = 0; i < card->num_rtd; i++) |
| 1907 | soc_remove_dai_link(card, i); |
| 1908 | |
| 1909 | soc_cleanup_card_debugfs(card); |
| 1910 | |
| 1911 | /* remove the card */ |
| 1912 | if (card->remove) |
| 1913 | card->remove(pdev); |
| 1914 | |
| 1915 | kfree(card->rtd); |
| 1916 | snd_card_free(card->snd_card); |
| 1917 | return 0; |
| 1918 | |
| 1919 | } |
| 1920 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1921 | /* removes a socdev */ |
| 1922 | static int soc_remove(struct platform_device *pdev) |
| 1923 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1924 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1925 | |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 1926 | snd_soc_unregister_card(card); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1927 | return 0; |
| 1928 | } |
| 1929 | |
Mark Brown | 416356f | 2009-06-30 19:05:15 +0100 | [diff] [blame] | 1930 | static int soc_poweroff(struct device *dev) |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 1931 | { |
Mark Brown | 416356f | 2009-06-30 19:05:15 +0100 | [diff] [blame] | 1932 | struct platform_device *pdev = to_platform_device(dev); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1933 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
| 1934 | int i; |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 1935 | |
| 1936 | if (!card->instantiated) |
Mark Brown | 416356f | 2009-06-30 19:05:15 +0100 | [diff] [blame] | 1937 | return 0; |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 1938 | |
| 1939 | /* Flush out pmdown_time work - we actually do want to run it |
| 1940 | * now, we're shutting down so no imminent restart. */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1941 | for (i = 0; i < card->num_rtd; i++) { |
| 1942 | struct snd_soc_pcm_runtime *rtd = &card->rtd[i]; |
Tejun Heo | 5b84ba2 | 2010-12-11 17:51:26 +0100 | [diff] [blame] | 1943 | flush_delayed_work_sync(&rtd->delayed_work); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1944 | } |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 1945 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1946 | snd_soc_dapm_shutdown(card); |
Mark Brown | 416356f | 2009-06-30 19:05:15 +0100 | [diff] [blame] | 1947 | |
| 1948 | return 0; |
Mark Brown | 5173747 | 2009-06-22 13:16:51 +0100 | [diff] [blame] | 1949 | } |
| 1950 | |
Alexey Dobriyan | 4714521 | 2009-12-14 18:00:08 -0800 | [diff] [blame] | 1951 | static const struct dev_pm_ops soc_pm_ops = { |
Mark Brown | 416356f | 2009-06-30 19:05:15 +0100 | [diff] [blame] | 1952 | .suspend = soc_suspend, |
| 1953 | .resume = soc_resume, |
| 1954 | .poweroff = soc_poweroff, |
| 1955 | }; |
| 1956 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1957 | /* ASoC platform driver */ |
| 1958 | static struct platform_driver soc_driver = { |
| 1959 | .driver = { |
| 1960 | .name = "soc-audio", |
Kay Sievers | 8b45a20 | 2008-04-14 13:33:36 +0200 | [diff] [blame] | 1961 | .owner = THIS_MODULE, |
Mark Brown | 416356f | 2009-06-30 19:05:15 +0100 | [diff] [blame] | 1962 | .pm = &soc_pm_ops, |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1963 | }, |
| 1964 | .probe = soc_probe, |
| 1965 | .remove = soc_remove, |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1966 | }; |
| 1967 | |
| 1968 | /* create a new pcm */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1969 | static int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1970 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1971 | struct snd_soc_codec *codec = rtd->codec; |
| 1972 | struct snd_soc_platform *platform = rtd->platform; |
| 1973 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
| 1974 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1975 | struct snd_pcm *pcm; |
| 1976 | char new_name[64]; |
| 1977 | int ret = 0, playback = 0, capture = 0; |
| 1978 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1979 | /* check client and interface hw capabilities */ |
Mark Brown | 40ca114 | 2009-12-24 13:44:28 +0000 | [diff] [blame] | 1980 | snprintf(new_name, sizeof(new_name), "%s %s-%d", |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1981 | rtd->dai_link->stream_name, codec_dai->name, num); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1982 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1983 | if (codec_dai->driver->playback.channels_min) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1984 | playback = 1; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1985 | if (codec_dai->driver->capture.channels_min) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1986 | capture = 1; |
| 1987 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1988 | dev_dbg(rtd->card->dev, "registered pcm #%d %s\n",num,new_name); |
| 1989 | ret = snd_pcm_new(rtd->card->snd_card, new_name, |
| 1990 | num, playback, capture, &pcm); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1991 | if (ret < 0) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1992 | printk(KERN_ERR "asoc: can't create pcm for codec %s\n", codec->name); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1993 | return ret; |
| 1994 | } |
| 1995 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1996 | rtd->pcm = pcm; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 1997 | pcm->private_data = rtd; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 1998 | soc_pcm_ops.mmap = platform->driver->ops->mmap; |
| 1999 | soc_pcm_ops.pointer = platform->driver->ops->pointer; |
| 2000 | soc_pcm_ops.ioctl = platform->driver->ops->ioctl; |
| 2001 | soc_pcm_ops.copy = platform->driver->ops->copy; |
| 2002 | soc_pcm_ops.silence = platform->driver->ops->silence; |
| 2003 | soc_pcm_ops.ack = platform->driver->ops->ack; |
| 2004 | soc_pcm_ops.page = platform->driver->ops->page; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2005 | |
| 2006 | if (playback) |
| 2007 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &soc_pcm_ops); |
| 2008 | |
| 2009 | if (capture) |
| 2010 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &soc_pcm_ops); |
| 2011 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2012 | ret = platform->driver->pcm_new(rtd->card->snd_card, codec_dai, pcm); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2013 | if (ret < 0) { |
| 2014 | printk(KERN_ERR "asoc: platform pcm constructor failed\n"); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2015 | return ret; |
| 2016 | } |
| 2017 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2018 | pcm->private_free = platform->driver->pcm_free; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2019 | printk(KERN_INFO "asoc: %s <-> %s mapping ok\n", codec_dai->name, |
| 2020 | cpu_dai->name); |
| 2021 | return ret; |
| 2022 | } |
| 2023 | |
Mark Brown | 096e49d | 2009-07-05 15:12:22 +0100 | [diff] [blame] | 2024 | /** |
| 2025 | * snd_soc_codec_volatile_register: Report if a register is volatile. |
| 2026 | * |
| 2027 | * @codec: CODEC to query. |
| 2028 | * @reg: Register to query. |
| 2029 | * |
| 2030 | * Boolean function indiciating if a CODEC register is volatile. |
| 2031 | */ |
Mark Brown | 181e055 | 2011-01-24 14:05:25 +0000 | [diff] [blame^] | 2032 | int snd_soc_codec_volatile_register(struct snd_soc_codec *codec, |
| 2033 | unsigned int reg) |
Mark Brown | 096e49d | 2009-07-05 15:12:22 +0100 | [diff] [blame] | 2034 | { |
Dimitris Papastamos | 1500b7b | 2011-01-13 12:20:38 +0000 | [diff] [blame] | 2035 | if (codec->volatile_register) |
| 2036 | return codec->volatile_register(codec, reg); |
Mark Brown | 096e49d | 2009-07-05 15:12:22 +0100 | [diff] [blame] | 2037 | else |
| 2038 | return 0; |
| 2039 | } |
| 2040 | EXPORT_SYMBOL_GPL(snd_soc_codec_volatile_register); |
| 2041 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2042 | /** |
| 2043 | * snd_soc_new_ac97_codec - initailise AC97 device |
| 2044 | * @codec: audio codec |
| 2045 | * @ops: AC97 bus operations |
| 2046 | * @num: AC97 codec number |
| 2047 | * |
| 2048 | * Initialises AC97 codec resources for use by ad-hoc devices only. |
| 2049 | */ |
| 2050 | int snd_soc_new_ac97_codec(struct snd_soc_codec *codec, |
| 2051 | struct snd_ac97_bus_ops *ops, int num) |
| 2052 | { |
| 2053 | mutex_lock(&codec->mutex); |
| 2054 | |
| 2055 | codec->ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL); |
| 2056 | if (codec->ac97 == NULL) { |
| 2057 | mutex_unlock(&codec->mutex); |
| 2058 | return -ENOMEM; |
| 2059 | } |
| 2060 | |
| 2061 | codec->ac97->bus = kzalloc(sizeof(struct snd_ac97_bus), GFP_KERNEL); |
| 2062 | if (codec->ac97->bus == NULL) { |
| 2063 | kfree(codec->ac97); |
| 2064 | codec->ac97 = NULL; |
| 2065 | mutex_unlock(&codec->mutex); |
| 2066 | return -ENOMEM; |
| 2067 | } |
| 2068 | |
| 2069 | codec->ac97->bus->ops = ops; |
| 2070 | codec->ac97->num = num; |
Mika Westerberg | 0562f78 | 2010-10-13 11:30:32 +0300 | [diff] [blame] | 2071 | |
| 2072 | /* |
| 2073 | * Mark the AC97 device to be created by us. This way we ensure that the |
| 2074 | * device will be registered with the device subsystem later on. |
| 2075 | */ |
| 2076 | codec->ac97_created = 1; |
| 2077 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2078 | mutex_unlock(&codec->mutex); |
| 2079 | return 0; |
| 2080 | } |
| 2081 | EXPORT_SYMBOL_GPL(snd_soc_new_ac97_codec); |
| 2082 | |
| 2083 | /** |
| 2084 | * snd_soc_free_ac97_codec - free AC97 codec device |
| 2085 | * @codec: audio codec |
| 2086 | * |
| 2087 | * Frees AC97 codec device resources. |
| 2088 | */ |
| 2089 | void snd_soc_free_ac97_codec(struct snd_soc_codec *codec) |
| 2090 | { |
| 2091 | mutex_lock(&codec->mutex); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2092 | #ifdef CONFIG_SND_SOC_AC97_BUS |
| 2093 | soc_unregister_ac97_dai_link(codec); |
| 2094 | #endif |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2095 | kfree(codec->ac97->bus); |
| 2096 | kfree(codec->ac97); |
| 2097 | codec->ac97 = NULL; |
Mika Westerberg | 0562f78 | 2010-10-13 11:30:32 +0300 | [diff] [blame] | 2098 | codec->ac97_created = 0; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2099 | mutex_unlock(&codec->mutex); |
| 2100 | } |
| 2101 | EXPORT_SYMBOL_GPL(snd_soc_free_ac97_codec); |
| 2102 | |
Mark Brown | c375370 | 2010-11-01 15:41:57 -0400 | [diff] [blame] | 2103 | unsigned int snd_soc_read(struct snd_soc_codec *codec, unsigned int reg) |
| 2104 | { |
| 2105 | unsigned int ret; |
| 2106 | |
Mark Brown | c3acec2 | 2010-12-02 16:15:29 +0000 | [diff] [blame] | 2107 | ret = codec->read(codec, reg); |
Mark Brown | c375370 | 2010-11-01 15:41:57 -0400 | [diff] [blame] | 2108 | dev_dbg(codec->dev, "read %x => %x\n", reg, ret); |
Mark Brown | a8b1d34 | 2010-11-03 18:05:58 -0400 | [diff] [blame] | 2109 | trace_snd_soc_reg_read(codec, reg, ret); |
Mark Brown | c375370 | 2010-11-01 15:41:57 -0400 | [diff] [blame] | 2110 | |
| 2111 | return ret; |
| 2112 | } |
| 2113 | EXPORT_SYMBOL_GPL(snd_soc_read); |
| 2114 | |
| 2115 | unsigned int snd_soc_write(struct snd_soc_codec *codec, |
| 2116 | unsigned int reg, unsigned int val) |
| 2117 | { |
| 2118 | dev_dbg(codec->dev, "write %x = %x\n", reg, val); |
Mark Brown | a8b1d34 | 2010-11-03 18:05:58 -0400 | [diff] [blame] | 2119 | trace_snd_soc_reg_write(codec, reg, val); |
Mark Brown | c3acec2 | 2010-12-02 16:15:29 +0000 | [diff] [blame] | 2120 | return codec->write(codec, reg, val); |
Mark Brown | c375370 | 2010-11-01 15:41:57 -0400 | [diff] [blame] | 2121 | } |
| 2122 | EXPORT_SYMBOL_GPL(snd_soc_write); |
| 2123 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2124 | /** |
| 2125 | * snd_soc_update_bits - update codec register bits |
| 2126 | * @codec: audio codec |
| 2127 | * @reg: codec register |
| 2128 | * @mask: register mask |
| 2129 | * @value: new value |
| 2130 | * |
| 2131 | * Writes new register value. |
| 2132 | * |
Timur Tabi | 180c329 | 2011-01-10 15:58:13 -0600 | [diff] [blame] | 2133 | * Returns 1 for change, 0 for no change, or negative error code. |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2134 | */ |
| 2135 | int snd_soc_update_bits(struct snd_soc_codec *codec, unsigned short reg, |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 2136 | unsigned int mask, unsigned int value) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2137 | { |
| 2138 | int change; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 2139 | unsigned int old, new; |
Timur Tabi | 180c329 | 2011-01-10 15:58:13 -0600 | [diff] [blame] | 2140 | int ret; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2141 | |
Timur Tabi | 180c329 | 2011-01-10 15:58:13 -0600 | [diff] [blame] | 2142 | ret = snd_soc_read(codec, reg); |
| 2143 | if (ret < 0) |
| 2144 | return ret; |
| 2145 | |
| 2146 | old = ret; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2147 | new = (old & ~mask) | value; |
| 2148 | change = old != new; |
Timur Tabi | 180c329 | 2011-01-10 15:58:13 -0600 | [diff] [blame] | 2149 | if (change) { |
| 2150 | ret = snd_soc_write(codec, reg, new); |
| 2151 | if (ret < 0) |
| 2152 | return ret; |
| 2153 | } |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2154 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2155 | return change; |
| 2156 | } |
| 2157 | EXPORT_SYMBOL_GPL(snd_soc_update_bits); |
| 2158 | |
| 2159 | /** |
Eero Nurkkala | 6c508c6 | 2009-10-30 13:34:03 +0200 | [diff] [blame] | 2160 | * snd_soc_update_bits_locked - update codec register bits |
| 2161 | * @codec: audio codec |
| 2162 | * @reg: codec register |
| 2163 | * @mask: register mask |
| 2164 | * @value: new value |
| 2165 | * |
| 2166 | * Writes new register value, and takes the codec mutex. |
| 2167 | * |
| 2168 | * Returns 1 for change else 0. |
| 2169 | */ |
Mark Brown | dd1b3d5 | 2009-12-04 14:22:03 +0000 | [diff] [blame] | 2170 | int snd_soc_update_bits_locked(struct snd_soc_codec *codec, |
| 2171 | unsigned short reg, unsigned int mask, |
| 2172 | unsigned int value) |
Eero Nurkkala | 6c508c6 | 2009-10-30 13:34:03 +0200 | [diff] [blame] | 2173 | { |
| 2174 | int change; |
| 2175 | |
| 2176 | mutex_lock(&codec->mutex); |
| 2177 | change = snd_soc_update_bits(codec, reg, mask, value); |
| 2178 | mutex_unlock(&codec->mutex); |
| 2179 | |
| 2180 | return change; |
| 2181 | } |
Mark Brown | dd1b3d5 | 2009-12-04 14:22:03 +0000 | [diff] [blame] | 2182 | EXPORT_SYMBOL_GPL(snd_soc_update_bits_locked); |
Eero Nurkkala | 6c508c6 | 2009-10-30 13:34:03 +0200 | [diff] [blame] | 2183 | |
| 2184 | /** |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2185 | * snd_soc_test_bits - test register for change |
| 2186 | * @codec: audio codec |
| 2187 | * @reg: codec register |
| 2188 | * @mask: register mask |
| 2189 | * @value: new value |
| 2190 | * |
| 2191 | * Tests a register with a new value and checks if the new value is |
| 2192 | * different from the old value. |
| 2193 | * |
| 2194 | * Returns 1 for change else 0. |
| 2195 | */ |
| 2196 | int snd_soc_test_bits(struct snd_soc_codec *codec, unsigned short reg, |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 2197 | unsigned int mask, unsigned int value) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2198 | { |
| 2199 | int change; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 2200 | unsigned int old, new; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2201 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2202 | old = snd_soc_read(codec, reg); |
| 2203 | new = (old & ~mask) | value; |
| 2204 | change = old != new; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2205 | |
| 2206 | return change; |
| 2207 | } |
| 2208 | EXPORT_SYMBOL_GPL(snd_soc_test_bits); |
| 2209 | |
| 2210 | /** |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2211 | * snd_soc_set_runtime_hwparams - set the runtime hardware parameters |
| 2212 | * @substream: the pcm substream |
| 2213 | * @hw: the hardware parameters |
| 2214 | * |
| 2215 | * Sets the substream runtime hardware parameters. |
| 2216 | */ |
| 2217 | int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream, |
| 2218 | const struct snd_pcm_hardware *hw) |
| 2219 | { |
| 2220 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 2221 | runtime->hw.info = hw->info; |
| 2222 | runtime->hw.formats = hw->formats; |
| 2223 | runtime->hw.period_bytes_min = hw->period_bytes_min; |
| 2224 | runtime->hw.period_bytes_max = hw->period_bytes_max; |
| 2225 | runtime->hw.periods_min = hw->periods_min; |
| 2226 | runtime->hw.periods_max = hw->periods_max; |
| 2227 | runtime->hw.buffer_bytes_max = hw->buffer_bytes_max; |
| 2228 | runtime->hw.fifo_size = hw->fifo_size; |
| 2229 | return 0; |
| 2230 | } |
| 2231 | EXPORT_SYMBOL_GPL(snd_soc_set_runtime_hwparams); |
| 2232 | |
| 2233 | /** |
| 2234 | * snd_soc_cnew - create new control |
| 2235 | * @_template: control template |
| 2236 | * @data: control private data |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 2237 | * @long_name: control long name |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2238 | * |
| 2239 | * Create a new mixer control from a template control. |
| 2240 | * |
| 2241 | * Returns 0 for success, else error. |
| 2242 | */ |
| 2243 | struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template, |
| 2244 | void *data, char *long_name) |
| 2245 | { |
| 2246 | struct snd_kcontrol_new template; |
| 2247 | |
| 2248 | memcpy(&template, _template, sizeof(template)); |
| 2249 | if (long_name) |
| 2250 | template.name = long_name; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2251 | template.index = 0; |
| 2252 | |
| 2253 | return snd_ctl_new1(&template, data); |
| 2254 | } |
| 2255 | EXPORT_SYMBOL_GPL(snd_soc_cnew); |
| 2256 | |
| 2257 | /** |
Ian Molton | 3e8e195 | 2009-01-09 00:23:21 +0000 | [diff] [blame] | 2258 | * snd_soc_add_controls - add an array of controls to a codec. |
| 2259 | * Convienience function to add a list of controls. Many codecs were |
| 2260 | * duplicating this code. |
| 2261 | * |
| 2262 | * @codec: codec to add controls to |
| 2263 | * @controls: array of controls to add |
| 2264 | * @num_controls: number of elements in the array |
| 2265 | * |
| 2266 | * Return 0 for success, else error. |
| 2267 | */ |
| 2268 | int snd_soc_add_controls(struct snd_soc_codec *codec, |
| 2269 | const struct snd_kcontrol_new *controls, int num_controls) |
| 2270 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2271 | struct snd_card *card = codec->card->snd_card; |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 2272 | char prefixed_name[44], *name; |
Ian Molton | 3e8e195 | 2009-01-09 00:23:21 +0000 | [diff] [blame] | 2273 | int err, i; |
| 2274 | |
| 2275 | for (i = 0; i < num_controls; i++) { |
| 2276 | const struct snd_kcontrol_new *control = &controls[i]; |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 2277 | if (codec->name_prefix) { |
| 2278 | snprintf(prefixed_name, sizeof(prefixed_name), "%s %s", |
| 2279 | codec->name_prefix, control->name); |
| 2280 | name = prefixed_name; |
| 2281 | } else { |
| 2282 | name = control->name; |
| 2283 | } |
| 2284 | err = snd_ctl_add(card, snd_soc_cnew(control, codec, name)); |
Ian Molton | 3e8e195 | 2009-01-09 00:23:21 +0000 | [diff] [blame] | 2285 | if (err < 0) { |
Mark Brown | 082100d | 2010-09-20 19:03:28 +0100 | [diff] [blame] | 2286 | dev_err(codec->dev, "%s: Failed to add %s: %d\n", |
Jarkko Nikula | ead9b91 | 2010-11-13 20:40:44 +0200 | [diff] [blame] | 2287 | codec->name, name, err); |
Ian Molton | 3e8e195 | 2009-01-09 00:23:21 +0000 | [diff] [blame] | 2288 | return err; |
| 2289 | } |
| 2290 | } |
| 2291 | |
| 2292 | return 0; |
| 2293 | } |
| 2294 | EXPORT_SYMBOL_GPL(snd_soc_add_controls); |
| 2295 | |
| 2296 | /** |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2297 | * snd_soc_info_enum_double - enumerated double mixer info callback |
| 2298 | * @kcontrol: mixer control |
| 2299 | * @uinfo: control element information |
| 2300 | * |
| 2301 | * Callback to provide information about a double enumerated |
| 2302 | * mixer control. |
| 2303 | * |
| 2304 | * Returns 0 for success. |
| 2305 | */ |
| 2306 | int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol, |
| 2307 | struct snd_ctl_elem_info *uinfo) |
| 2308 | { |
| 2309 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
| 2310 | |
| 2311 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 2312 | uinfo->count = e->shift_l == e->shift_r ? 1 : 2; |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 2313 | uinfo->value.enumerated.items = e->max; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2314 | |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 2315 | if (uinfo->value.enumerated.item > e->max - 1) |
| 2316 | uinfo->value.enumerated.item = e->max - 1; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2317 | strcpy(uinfo->value.enumerated.name, |
| 2318 | e->texts[uinfo->value.enumerated.item]); |
| 2319 | return 0; |
| 2320 | } |
| 2321 | EXPORT_SYMBOL_GPL(snd_soc_info_enum_double); |
| 2322 | |
| 2323 | /** |
| 2324 | * snd_soc_get_enum_double - enumerated double mixer get callback |
| 2325 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 2326 | * @ucontrol: control element information |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2327 | * |
| 2328 | * Callback to get the value of a double enumerated mixer. |
| 2329 | * |
| 2330 | * Returns 0 for success. |
| 2331 | */ |
| 2332 | int snd_soc_get_enum_double(struct snd_kcontrol *kcontrol, |
| 2333 | struct snd_ctl_elem_value *ucontrol) |
| 2334 | { |
| 2335 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2336 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 2337 | unsigned int val, bitmask; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2338 | |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 2339 | for (bitmask = 1; bitmask < e->max; bitmask <<= 1) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2340 | ; |
| 2341 | val = snd_soc_read(codec, e->reg); |
Mark Brown | 3ff3f64 | 2008-05-19 12:32:25 +0200 | [diff] [blame] | 2342 | ucontrol->value.enumerated.item[0] |
| 2343 | = (val >> e->shift_l) & (bitmask - 1); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2344 | if (e->shift_l != e->shift_r) |
| 2345 | ucontrol->value.enumerated.item[1] = |
| 2346 | (val >> e->shift_r) & (bitmask - 1); |
| 2347 | |
| 2348 | return 0; |
| 2349 | } |
| 2350 | EXPORT_SYMBOL_GPL(snd_soc_get_enum_double); |
| 2351 | |
| 2352 | /** |
| 2353 | * snd_soc_put_enum_double - enumerated double mixer put callback |
| 2354 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 2355 | * @ucontrol: control element information |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2356 | * |
| 2357 | * Callback to set the value of a double enumerated mixer. |
| 2358 | * |
| 2359 | * Returns 0 for success. |
| 2360 | */ |
| 2361 | int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol, |
| 2362 | struct snd_ctl_elem_value *ucontrol) |
| 2363 | { |
| 2364 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2365 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 2366 | unsigned int val; |
| 2367 | unsigned int mask, bitmask; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2368 | |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 2369 | for (bitmask = 1; bitmask < e->max; bitmask <<= 1) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2370 | ; |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 2371 | if (ucontrol->value.enumerated.item[0] > e->max - 1) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2372 | return -EINVAL; |
| 2373 | val = ucontrol->value.enumerated.item[0] << e->shift_l; |
| 2374 | mask = (bitmask - 1) << e->shift_l; |
| 2375 | if (e->shift_l != e->shift_r) { |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 2376 | if (ucontrol->value.enumerated.item[1] > e->max - 1) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2377 | return -EINVAL; |
| 2378 | val |= ucontrol->value.enumerated.item[1] << e->shift_r; |
| 2379 | mask |= (bitmask - 1) << e->shift_r; |
| 2380 | } |
| 2381 | |
Eero Nurkkala | 6c508c6 | 2009-10-30 13:34:03 +0200 | [diff] [blame] | 2382 | return snd_soc_update_bits_locked(codec, e->reg, mask, val); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2383 | } |
| 2384 | EXPORT_SYMBOL_GPL(snd_soc_put_enum_double); |
| 2385 | |
| 2386 | /** |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 2387 | * snd_soc_get_value_enum_double - semi enumerated double mixer get callback |
| 2388 | * @kcontrol: mixer control |
| 2389 | * @ucontrol: control element information |
| 2390 | * |
| 2391 | * Callback to get the value of a double semi enumerated mixer. |
| 2392 | * |
| 2393 | * Semi enumerated mixer: the enumerated items are referred as values. Can be |
| 2394 | * used for handling bitfield coded enumeration for example. |
| 2395 | * |
| 2396 | * Returns 0 for success. |
| 2397 | */ |
| 2398 | int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol, |
| 2399 | struct snd_ctl_elem_value *ucontrol) |
| 2400 | { |
| 2401 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
Peter Ujfalusi | 7415555 | 2009-01-08 13:34:29 +0200 | [diff] [blame] | 2402 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 2403 | unsigned int reg_val, val, mux; |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 2404 | |
| 2405 | reg_val = snd_soc_read(codec, e->reg); |
| 2406 | val = (reg_val >> e->shift_l) & e->mask; |
| 2407 | for (mux = 0; mux < e->max; mux++) { |
| 2408 | if (val == e->values[mux]) |
| 2409 | break; |
| 2410 | } |
| 2411 | ucontrol->value.enumerated.item[0] = mux; |
| 2412 | if (e->shift_l != e->shift_r) { |
| 2413 | val = (reg_val >> e->shift_r) & e->mask; |
| 2414 | for (mux = 0; mux < e->max; mux++) { |
| 2415 | if (val == e->values[mux]) |
| 2416 | break; |
| 2417 | } |
| 2418 | ucontrol->value.enumerated.item[1] = mux; |
| 2419 | } |
| 2420 | |
| 2421 | return 0; |
| 2422 | } |
| 2423 | EXPORT_SYMBOL_GPL(snd_soc_get_value_enum_double); |
| 2424 | |
| 2425 | /** |
| 2426 | * snd_soc_put_value_enum_double - semi enumerated double mixer put callback |
| 2427 | * @kcontrol: mixer control |
| 2428 | * @ucontrol: control element information |
| 2429 | * |
| 2430 | * Callback to set the value of a double semi enumerated mixer. |
| 2431 | * |
| 2432 | * Semi enumerated mixer: the enumerated items are referred as values. Can be |
| 2433 | * used for handling bitfield coded enumeration for example. |
| 2434 | * |
| 2435 | * Returns 0 for success. |
| 2436 | */ |
| 2437 | int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol, |
| 2438 | struct snd_ctl_elem_value *ucontrol) |
| 2439 | { |
| 2440 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
Peter Ujfalusi | 7415555 | 2009-01-08 13:34:29 +0200 | [diff] [blame] | 2441 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 2442 | unsigned int val; |
| 2443 | unsigned int mask; |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 2444 | |
| 2445 | if (ucontrol->value.enumerated.item[0] > e->max - 1) |
| 2446 | return -EINVAL; |
| 2447 | val = e->values[ucontrol->value.enumerated.item[0]] << e->shift_l; |
| 2448 | mask = e->mask << e->shift_l; |
| 2449 | if (e->shift_l != e->shift_r) { |
| 2450 | if (ucontrol->value.enumerated.item[1] > e->max - 1) |
| 2451 | return -EINVAL; |
| 2452 | val |= e->values[ucontrol->value.enumerated.item[1]] << e->shift_r; |
| 2453 | mask |= e->mask << e->shift_r; |
| 2454 | } |
| 2455 | |
Eero Nurkkala | 6c508c6 | 2009-10-30 13:34:03 +0200 | [diff] [blame] | 2456 | return snd_soc_update_bits_locked(codec, e->reg, mask, val); |
Peter Ujfalusi | 2e72f8e | 2009-01-05 09:54:57 +0200 | [diff] [blame] | 2457 | } |
| 2458 | EXPORT_SYMBOL_GPL(snd_soc_put_value_enum_double); |
| 2459 | |
| 2460 | /** |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2461 | * snd_soc_info_enum_ext - external enumerated single mixer info callback |
| 2462 | * @kcontrol: mixer control |
| 2463 | * @uinfo: control element information |
| 2464 | * |
| 2465 | * Callback to provide information about an external enumerated |
| 2466 | * single mixer. |
| 2467 | * |
| 2468 | * Returns 0 for success. |
| 2469 | */ |
| 2470 | int snd_soc_info_enum_ext(struct snd_kcontrol *kcontrol, |
| 2471 | struct snd_ctl_elem_info *uinfo) |
| 2472 | { |
| 2473 | struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; |
| 2474 | |
| 2475 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 2476 | uinfo->count = 1; |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 2477 | uinfo->value.enumerated.items = e->max; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2478 | |
Jon Smirl | f8ba0b7 | 2008-07-29 11:42:27 +0100 | [diff] [blame] | 2479 | if (uinfo->value.enumerated.item > e->max - 1) |
| 2480 | uinfo->value.enumerated.item = e->max - 1; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2481 | strcpy(uinfo->value.enumerated.name, |
| 2482 | e->texts[uinfo->value.enumerated.item]); |
| 2483 | return 0; |
| 2484 | } |
| 2485 | EXPORT_SYMBOL_GPL(snd_soc_info_enum_ext); |
| 2486 | |
| 2487 | /** |
| 2488 | * snd_soc_info_volsw_ext - external single mixer info callback |
| 2489 | * @kcontrol: mixer control |
| 2490 | * @uinfo: control element information |
| 2491 | * |
| 2492 | * Callback to provide information about a single external mixer control. |
| 2493 | * |
| 2494 | * Returns 0 for success. |
| 2495 | */ |
| 2496 | int snd_soc_info_volsw_ext(struct snd_kcontrol *kcontrol, |
| 2497 | struct snd_ctl_elem_info *uinfo) |
| 2498 | { |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 2499 | int max = kcontrol->private_value; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2500 | |
Mark Brown | fd5dfad | 2009-04-15 21:37:46 +0100 | [diff] [blame] | 2501 | if (max == 1 && !strstr(kcontrol->id.name, " Volume")) |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 2502 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| 2503 | else |
| 2504 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 2505 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2506 | uinfo->count = 1; |
| 2507 | uinfo->value.integer.min = 0; |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 2508 | uinfo->value.integer.max = max; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2509 | return 0; |
| 2510 | } |
| 2511 | EXPORT_SYMBOL_GPL(snd_soc_info_volsw_ext); |
| 2512 | |
| 2513 | /** |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2514 | * snd_soc_info_volsw - single mixer info callback |
| 2515 | * @kcontrol: mixer control |
| 2516 | * @uinfo: control element information |
| 2517 | * |
| 2518 | * Callback to provide information about a single mixer control. |
| 2519 | * |
| 2520 | * Returns 0 for success. |
| 2521 | */ |
| 2522 | int snd_soc_info_volsw(struct snd_kcontrol *kcontrol, |
| 2523 | struct snd_ctl_elem_info *uinfo) |
| 2524 | { |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2525 | struct soc_mixer_control *mc = |
| 2526 | (struct soc_mixer_control *)kcontrol->private_value; |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 2527 | int platform_max; |
Mark Brown | 762b8df | 2008-10-30 12:37:08 +0000 | [diff] [blame] | 2528 | unsigned int shift = mc->shift; |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 2529 | unsigned int rshift = mc->rshift; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2530 | |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 2531 | if (!mc->platform_max) |
| 2532 | mc->platform_max = mc->max; |
| 2533 | platform_max = mc->platform_max; |
| 2534 | |
| 2535 | if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume")) |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 2536 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| 2537 | else |
| 2538 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 2539 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2540 | uinfo->count = shift == rshift ? 1 : 2; |
| 2541 | uinfo->value.integer.min = 0; |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 2542 | uinfo->value.integer.max = platform_max; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2543 | return 0; |
| 2544 | } |
| 2545 | EXPORT_SYMBOL_GPL(snd_soc_info_volsw); |
| 2546 | |
| 2547 | /** |
| 2548 | * snd_soc_get_volsw - single mixer get callback |
| 2549 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 2550 | * @ucontrol: control element information |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2551 | * |
| 2552 | * Callback to get the value of a single mixer control. |
| 2553 | * |
| 2554 | * Returns 0 for success. |
| 2555 | */ |
| 2556 | int snd_soc_get_volsw(struct snd_kcontrol *kcontrol, |
| 2557 | struct snd_ctl_elem_value *ucontrol) |
| 2558 | { |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2559 | struct soc_mixer_control *mc = |
| 2560 | (struct soc_mixer_control *)kcontrol->private_value; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2561 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 2562 | unsigned int reg = mc->reg; |
| 2563 | unsigned int shift = mc->shift; |
| 2564 | unsigned int rshift = mc->rshift; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2565 | int max = mc->max; |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 2566 | unsigned int mask = (1 << fls(max)) - 1; |
| 2567 | unsigned int invert = mc->invert; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2568 | |
| 2569 | ucontrol->value.integer.value[0] = |
| 2570 | (snd_soc_read(codec, reg) >> shift) & mask; |
| 2571 | if (shift != rshift) |
| 2572 | ucontrol->value.integer.value[1] = |
| 2573 | (snd_soc_read(codec, reg) >> rshift) & mask; |
| 2574 | if (invert) { |
| 2575 | ucontrol->value.integer.value[0] = |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 2576 | max - ucontrol->value.integer.value[0]; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2577 | if (shift != rshift) |
| 2578 | ucontrol->value.integer.value[1] = |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 2579 | max - ucontrol->value.integer.value[1]; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2580 | } |
| 2581 | |
| 2582 | return 0; |
| 2583 | } |
| 2584 | EXPORT_SYMBOL_GPL(snd_soc_get_volsw); |
| 2585 | |
| 2586 | /** |
| 2587 | * snd_soc_put_volsw - single mixer put callback |
| 2588 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 2589 | * @ucontrol: control element information |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2590 | * |
| 2591 | * Callback to set the value of a single mixer control. |
| 2592 | * |
| 2593 | * Returns 0 for success. |
| 2594 | */ |
| 2595 | int snd_soc_put_volsw(struct snd_kcontrol *kcontrol, |
| 2596 | struct snd_ctl_elem_value *ucontrol) |
| 2597 | { |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2598 | struct soc_mixer_control *mc = |
| 2599 | (struct soc_mixer_control *)kcontrol->private_value; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2600 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 2601 | unsigned int reg = mc->reg; |
| 2602 | unsigned int shift = mc->shift; |
| 2603 | unsigned int rshift = mc->rshift; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2604 | int max = mc->max; |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 2605 | unsigned int mask = (1 << fls(max)) - 1; |
| 2606 | unsigned int invert = mc->invert; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 2607 | unsigned int val, val2, val_mask; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2608 | |
| 2609 | val = (ucontrol->value.integer.value[0] & mask); |
| 2610 | if (invert) |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 2611 | val = max - val; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2612 | val_mask = mask << shift; |
| 2613 | val = val << shift; |
| 2614 | if (shift != rshift) { |
| 2615 | val2 = (ucontrol->value.integer.value[1] & mask); |
| 2616 | if (invert) |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 2617 | val2 = max - val2; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2618 | val_mask |= mask << rshift; |
| 2619 | val |= val2 << rshift; |
| 2620 | } |
Eero Nurkkala | 6c508c6 | 2009-10-30 13:34:03 +0200 | [diff] [blame] | 2621 | return snd_soc_update_bits_locked(codec, reg, val_mask, val); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2622 | } |
| 2623 | EXPORT_SYMBOL_GPL(snd_soc_put_volsw); |
| 2624 | |
| 2625 | /** |
| 2626 | * snd_soc_info_volsw_2r - double mixer info callback |
| 2627 | * @kcontrol: mixer control |
| 2628 | * @uinfo: control element information |
| 2629 | * |
| 2630 | * Callback to provide information about a double mixer control that |
| 2631 | * spans 2 codec registers. |
| 2632 | * |
| 2633 | * Returns 0 for success. |
| 2634 | */ |
| 2635 | int snd_soc_info_volsw_2r(struct snd_kcontrol *kcontrol, |
| 2636 | struct snd_ctl_elem_info *uinfo) |
| 2637 | { |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2638 | struct soc_mixer_control *mc = |
| 2639 | (struct soc_mixer_control *)kcontrol->private_value; |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 2640 | int platform_max; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2641 | |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 2642 | if (!mc->platform_max) |
| 2643 | mc->platform_max = mc->max; |
| 2644 | platform_max = mc->platform_max; |
| 2645 | |
| 2646 | if (platform_max == 1 && !strstr(kcontrol->id.name, " Volume")) |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 2647 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| 2648 | else |
| 2649 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 2650 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2651 | uinfo->count = 2; |
| 2652 | uinfo->value.integer.min = 0; |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 2653 | uinfo->value.integer.max = platform_max; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2654 | return 0; |
| 2655 | } |
| 2656 | EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r); |
| 2657 | |
| 2658 | /** |
| 2659 | * snd_soc_get_volsw_2r - double mixer get callback |
| 2660 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 2661 | * @ucontrol: control element information |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2662 | * |
| 2663 | * Callback to get the value of a double mixer control that spans 2 registers. |
| 2664 | * |
| 2665 | * Returns 0 for success. |
| 2666 | */ |
| 2667 | int snd_soc_get_volsw_2r(struct snd_kcontrol *kcontrol, |
| 2668 | struct snd_ctl_elem_value *ucontrol) |
| 2669 | { |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2670 | struct soc_mixer_control *mc = |
| 2671 | (struct soc_mixer_control *)kcontrol->private_value; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2672 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 2673 | unsigned int reg = mc->reg; |
| 2674 | unsigned int reg2 = mc->rreg; |
| 2675 | unsigned int shift = mc->shift; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2676 | int max = mc->max; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 2677 | unsigned int mask = (1 << fls(max)) - 1; |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 2678 | unsigned int invert = mc->invert; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2679 | |
| 2680 | ucontrol->value.integer.value[0] = |
| 2681 | (snd_soc_read(codec, reg) >> shift) & mask; |
| 2682 | ucontrol->value.integer.value[1] = |
| 2683 | (snd_soc_read(codec, reg2) >> shift) & mask; |
| 2684 | if (invert) { |
| 2685 | ucontrol->value.integer.value[0] = |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 2686 | max - ucontrol->value.integer.value[0]; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2687 | ucontrol->value.integer.value[1] = |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 2688 | max - ucontrol->value.integer.value[1]; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2689 | } |
| 2690 | |
| 2691 | return 0; |
| 2692 | } |
| 2693 | EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r); |
| 2694 | |
| 2695 | /** |
| 2696 | * snd_soc_put_volsw_2r - double mixer set callback |
| 2697 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 2698 | * @ucontrol: control element information |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2699 | * |
| 2700 | * Callback to set the value of a double mixer control that spans 2 registers. |
| 2701 | * |
| 2702 | * Returns 0 for success. |
| 2703 | */ |
| 2704 | int snd_soc_put_volsw_2r(struct snd_kcontrol *kcontrol, |
| 2705 | struct snd_ctl_elem_value *ucontrol) |
| 2706 | { |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2707 | struct soc_mixer_control *mc = |
| 2708 | (struct soc_mixer_control *)kcontrol->private_value; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2709 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 2710 | unsigned int reg = mc->reg; |
| 2711 | unsigned int reg2 = mc->rreg; |
| 2712 | unsigned int shift = mc->shift; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2713 | int max = mc->max; |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 2714 | unsigned int mask = (1 << fls(max)) - 1; |
| 2715 | unsigned int invert = mc->invert; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2716 | int err; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 2717 | unsigned int val, val2, val_mask; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2718 | |
| 2719 | val_mask = mask << shift; |
| 2720 | val = (ucontrol->value.integer.value[0] & mask); |
| 2721 | val2 = (ucontrol->value.integer.value[1] & mask); |
| 2722 | |
| 2723 | if (invert) { |
Philipp Zabel | a7a4ac8 | 2008-01-10 14:37:42 +0100 | [diff] [blame] | 2724 | val = max - val; |
| 2725 | val2 = max - val2; |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2726 | } |
| 2727 | |
| 2728 | val = val << shift; |
| 2729 | val2 = val2 << shift; |
| 2730 | |
Eero Nurkkala | 6c508c6 | 2009-10-30 13:34:03 +0200 | [diff] [blame] | 2731 | err = snd_soc_update_bits_locked(codec, reg, val_mask, val); |
Mark Brown | 3ff3f64 | 2008-05-19 12:32:25 +0200 | [diff] [blame] | 2732 | if (err < 0) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2733 | return err; |
| 2734 | |
Eero Nurkkala | 6c508c6 | 2009-10-30 13:34:03 +0200 | [diff] [blame] | 2735 | err = snd_soc_update_bits_locked(codec, reg2, val_mask, val2); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 2736 | return err; |
| 2737 | } |
| 2738 | EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r); |
| 2739 | |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 2740 | /** |
| 2741 | * snd_soc_info_volsw_s8 - signed mixer info callback |
| 2742 | * @kcontrol: mixer control |
| 2743 | * @uinfo: control element information |
| 2744 | * |
| 2745 | * Callback to provide information about a signed mixer control. |
| 2746 | * |
| 2747 | * Returns 0 for success. |
| 2748 | */ |
| 2749 | int snd_soc_info_volsw_s8(struct snd_kcontrol *kcontrol, |
| 2750 | struct snd_ctl_elem_info *uinfo) |
| 2751 | { |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2752 | struct soc_mixer_control *mc = |
| 2753 | (struct soc_mixer_control *)kcontrol->private_value; |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 2754 | int platform_max; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2755 | int min = mc->min; |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 2756 | |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 2757 | if (!mc->platform_max) |
| 2758 | mc->platform_max = mc->max; |
| 2759 | platform_max = mc->platform_max; |
| 2760 | |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 2761 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 2762 | uinfo->count = 2; |
| 2763 | uinfo->value.integer.min = 0; |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 2764 | uinfo->value.integer.max = platform_max - min; |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 2765 | return 0; |
| 2766 | } |
| 2767 | EXPORT_SYMBOL_GPL(snd_soc_info_volsw_s8); |
| 2768 | |
| 2769 | /** |
| 2770 | * snd_soc_get_volsw_s8 - signed mixer get callback |
| 2771 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 2772 | * @ucontrol: control element information |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 2773 | * |
| 2774 | * Callback to get the value of a signed mixer control. |
| 2775 | * |
| 2776 | * Returns 0 for success. |
| 2777 | */ |
| 2778 | int snd_soc_get_volsw_s8(struct snd_kcontrol *kcontrol, |
| 2779 | struct snd_ctl_elem_value *ucontrol) |
| 2780 | { |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2781 | struct soc_mixer_control *mc = |
| 2782 | (struct soc_mixer_control *)kcontrol->private_value; |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 2783 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 2784 | unsigned int reg = mc->reg; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2785 | int min = mc->min; |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 2786 | int val = snd_soc_read(codec, reg); |
| 2787 | |
| 2788 | ucontrol->value.integer.value[0] = |
| 2789 | ((signed char)(val & 0xff))-min; |
| 2790 | ucontrol->value.integer.value[1] = |
| 2791 | ((signed char)((val >> 8) & 0xff))-min; |
| 2792 | return 0; |
| 2793 | } |
| 2794 | EXPORT_SYMBOL_GPL(snd_soc_get_volsw_s8); |
| 2795 | |
| 2796 | /** |
| 2797 | * snd_soc_put_volsw_sgn - signed mixer put callback |
| 2798 | * @kcontrol: mixer control |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 2799 | * @ucontrol: control element information |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 2800 | * |
| 2801 | * Callback to set the value of a signed mixer control. |
| 2802 | * |
| 2803 | * Returns 0 for success. |
| 2804 | */ |
| 2805 | int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol, |
| 2806 | struct snd_ctl_elem_value *ucontrol) |
| 2807 | { |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2808 | struct soc_mixer_control *mc = |
| 2809 | (struct soc_mixer_control *)kcontrol->private_value; |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 2810 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
Jon Smirl | 815ecf8d | 2008-07-29 10:22:24 -0400 | [diff] [blame] | 2811 | unsigned int reg = mc->reg; |
Jon Smirl | 4eaa981 | 2008-07-29 11:42:26 +0100 | [diff] [blame] | 2812 | int min = mc->min; |
Daniel Ribeiro | 46f5822 | 2009-06-07 02:49:11 -0300 | [diff] [blame] | 2813 | unsigned int val; |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 2814 | |
| 2815 | val = (ucontrol->value.integer.value[0]+min) & 0xff; |
| 2816 | val |= ((ucontrol->value.integer.value[1]+min) & 0xff) << 8; |
| 2817 | |
Eero Nurkkala | 6c508c6 | 2009-10-30 13:34:03 +0200 | [diff] [blame] | 2818 | return snd_soc_update_bits_locked(codec, reg, 0xffff, val); |
Mark Brown | e13ac2e | 2008-05-28 17:58:05 +0100 | [diff] [blame] | 2819 | } |
| 2820 | EXPORT_SYMBOL_GPL(snd_soc_put_volsw_s8); |
| 2821 | |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 2822 | /** |
Peter Ujfalusi | 637d384 | 2010-05-07 14:05:49 +0300 | [diff] [blame] | 2823 | * snd_soc_limit_volume - Set new limit to an existing volume control. |
| 2824 | * |
| 2825 | * @codec: where to look for the control |
| 2826 | * @name: Name of the control |
| 2827 | * @max: new maximum limit |
| 2828 | * |
| 2829 | * Return 0 for success, else error. |
| 2830 | */ |
| 2831 | int snd_soc_limit_volume(struct snd_soc_codec *codec, |
| 2832 | const char *name, int max) |
| 2833 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2834 | struct snd_card *card = codec->card->snd_card; |
Peter Ujfalusi | 637d384 | 2010-05-07 14:05:49 +0300 | [diff] [blame] | 2835 | struct snd_kcontrol *kctl; |
| 2836 | struct soc_mixer_control *mc; |
| 2837 | int found = 0; |
| 2838 | int ret = -EINVAL; |
| 2839 | |
| 2840 | /* Sanity check for name and max */ |
| 2841 | if (unlikely(!name || max <= 0)) |
| 2842 | return -EINVAL; |
| 2843 | |
| 2844 | list_for_each_entry(kctl, &card->controls, list) { |
| 2845 | if (!strncmp(kctl->id.name, name, sizeof(kctl->id.name))) { |
| 2846 | found = 1; |
| 2847 | break; |
| 2848 | } |
| 2849 | } |
| 2850 | if (found) { |
| 2851 | mc = (struct soc_mixer_control *)kctl->private_value; |
| 2852 | if (max <= mc->max) { |
Peter Ujfalusi | d11bb4a | 2010-05-10 14:39:24 +0300 | [diff] [blame] | 2853 | mc->platform_max = max; |
Peter Ujfalusi | 637d384 | 2010-05-07 14:05:49 +0300 | [diff] [blame] | 2854 | ret = 0; |
| 2855 | } |
| 2856 | } |
| 2857 | return ret; |
| 2858 | } |
| 2859 | EXPORT_SYMBOL_GPL(snd_soc_limit_volume); |
| 2860 | |
| 2861 | /** |
apatard@mandriva.com | b6f4bb3 | 2010-05-15 17:30:01 +0200 | [diff] [blame] | 2862 | * snd_soc_info_volsw_2r_sx - double with tlv and variable data size |
| 2863 | * mixer info callback |
| 2864 | * @kcontrol: mixer control |
| 2865 | * @uinfo: control element information |
| 2866 | * |
| 2867 | * Returns 0 for success. |
| 2868 | */ |
| 2869 | int snd_soc_info_volsw_2r_sx(struct snd_kcontrol *kcontrol, |
| 2870 | struct snd_ctl_elem_info *uinfo) |
| 2871 | { |
| 2872 | struct soc_mixer_control *mc = |
| 2873 | (struct soc_mixer_control *)kcontrol->private_value; |
| 2874 | int max = mc->max; |
| 2875 | int min = mc->min; |
| 2876 | |
| 2877 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 2878 | uinfo->count = 2; |
| 2879 | uinfo->value.integer.min = 0; |
| 2880 | uinfo->value.integer.max = max-min; |
| 2881 | |
| 2882 | return 0; |
| 2883 | } |
| 2884 | EXPORT_SYMBOL_GPL(snd_soc_info_volsw_2r_sx); |
| 2885 | |
| 2886 | /** |
| 2887 | * snd_soc_get_volsw_2r_sx - double with tlv and variable data size |
| 2888 | * mixer get callback |
| 2889 | * @kcontrol: mixer control |
| 2890 | * @uinfo: control element information |
| 2891 | * |
| 2892 | * Returns 0 for success. |
| 2893 | */ |
| 2894 | int snd_soc_get_volsw_2r_sx(struct snd_kcontrol *kcontrol, |
| 2895 | struct snd_ctl_elem_value *ucontrol) |
| 2896 | { |
| 2897 | struct soc_mixer_control *mc = |
| 2898 | (struct soc_mixer_control *)kcontrol->private_value; |
| 2899 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2900 | unsigned int mask = (1<<mc->shift)-1; |
| 2901 | int min = mc->min; |
| 2902 | int val = snd_soc_read(codec, mc->reg) & mask; |
| 2903 | int valr = snd_soc_read(codec, mc->rreg) & mask; |
| 2904 | |
Stuart Longland | 20630c7 | 2010-06-18 12:56:10 +1000 | [diff] [blame] | 2905 | ucontrol->value.integer.value[0] = ((val & 0xff)-min) & mask; |
| 2906 | ucontrol->value.integer.value[1] = ((valr & 0xff)-min) & mask; |
apatard@mandriva.com | b6f4bb3 | 2010-05-15 17:30:01 +0200 | [diff] [blame] | 2907 | return 0; |
| 2908 | } |
| 2909 | EXPORT_SYMBOL_GPL(snd_soc_get_volsw_2r_sx); |
| 2910 | |
| 2911 | /** |
| 2912 | * snd_soc_put_volsw_2r_sx - double with tlv and variable data size |
| 2913 | * mixer put callback |
| 2914 | * @kcontrol: mixer control |
| 2915 | * @uinfo: control element information |
| 2916 | * |
| 2917 | * Returns 0 for success. |
| 2918 | */ |
| 2919 | int snd_soc_put_volsw_2r_sx(struct snd_kcontrol *kcontrol, |
| 2920 | struct snd_ctl_elem_value *ucontrol) |
| 2921 | { |
| 2922 | struct soc_mixer_control *mc = |
| 2923 | (struct soc_mixer_control *)kcontrol->private_value; |
| 2924 | struct snd_soc_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2925 | unsigned int mask = (1<<mc->shift)-1; |
| 2926 | int min = mc->min; |
| 2927 | int ret; |
| 2928 | unsigned int val, valr, oval, ovalr; |
| 2929 | |
| 2930 | val = ((ucontrol->value.integer.value[0]+min) & 0xff); |
| 2931 | val &= mask; |
| 2932 | valr = ((ucontrol->value.integer.value[1]+min) & 0xff); |
| 2933 | valr &= mask; |
| 2934 | |
| 2935 | oval = snd_soc_read(codec, mc->reg) & mask; |
| 2936 | ovalr = snd_soc_read(codec, mc->rreg) & mask; |
| 2937 | |
| 2938 | ret = 0; |
| 2939 | if (oval != val) { |
| 2940 | ret = snd_soc_write(codec, mc->reg, val); |
| 2941 | if (ret < 0) |
Mark Brown | f1df5ae | 2010-06-15 15:14:31 +0100 | [diff] [blame] | 2942 | return ret; |
apatard@mandriva.com | b6f4bb3 | 2010-05-15 17:30:01 +0200 | [diff] [blame] | 2943 | } |
| 2944 | if (ovalr != valr) { |
| 2945 | ret = snd_soc_write(codec, mc->rreg, valr); |
| 2946 | if (ret < 0) |
Mark Brown | f1df5ae | 2010-06-15 15:14:31 +0100 | [diff] [blame] | 2947 | return ret; |
apatard@mandriva.com | b6f4bb3 | 2010-05-15 17:30:01 +0200 | [diff] [blame] | 2948 | } |
| 2949 | |
| 2950 | return 0; |
| 2951 | } |
| 2952 | EXPORT_SYMBOL_GPL(snd_soc_put_volsw_2r_sx); |
| 2953 | |
| 2954 | /** |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 2955 | * snd_soc_dai_set_sysclk - configure DAI system or master clock. |
| 2956 | * @dai: DAI |
| 2957 | * @clk_id: DAI specific clock ID |
| 2958 | * @freq: new clock frequency in Hz |
| 2959 | * @dir: new clock direction - input/output. |
| 2960 | * |
| 2961 | * Configures the DAI master (MCLK) or system (SYSCLK) clocking. |
| 2962 | */ |
| 2963 | int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id, |
| 2964 | unsigned int freq, int dir) |
| 2965 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2966 | if (dai->driver && dai->driver->ops->set_sysclk) |
| 2967 | return dai->driver->ops->set_sysclk(dai, clk_id, freq, dir); |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 2968 | else |
| 2969 | return -EINVAL; |
| 2970 | } |
| 2971 | EXPORT_SYMBOL_GPL(snd_soc_dai_set_sysclk); |
| 2972 | |
| 2973 | /** |
| 2974 | * snd_soc_dai_set_clkdiv - configure DAI clock dividers. |
| 2975 | * @dai: DAI |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 2976 | * @div_id: DAI specific clock divider ID |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 2977 | * @div: new clock divisor. |
| 2978 | * |
| 2979 | * Configures the clock dividers. This is used to derive the best DAI bit and |
| 2980 | * frame clocks from the system or master clock. It's best to set the DAI bit |
| 2981 | * and frame clocks as low as possible to save system power. |
| 2982 | */ |
| 2983 | int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai, |
| 2984 | int div_id, int div) |
| 2985 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 2986 | if (dai->driver && dai->driver->ops->set_clkdiv) |
| 2987 | return dai->driver->ops->set_clkdiv(dai, div_id, div); |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 2988 | else |
| 2989 | return -EINVAL; |
| 2990 | } |
| 2991 | EXPORT_SYMBOL_GPL(snd_soc_dai_set_clkdiv); |
| 2992 | |
| 2993 | /** |
| 2994 | * snd_soc_dai_set_pll - configure DAI PLL. |
| 2995 | * @dai: DAI |
| 2996 | * @pll_id: DAI specific PLL ID |
Mark Brown | 8548803 | 2009-09-05 18:52:16 +0100 | [diff] [blame] | 2997 | * @source: DAI specific source for the PLL |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 2998 | * @freq_in: PLL input clock frequency in Hz |
| 2999 | * @freq_out: requested PLL output clock frequency in Hz |
| 3000 | * |
| 3001 | * Configures and enables PLL to generate output clock based on input clock. |
| 3002 | */ |
Mark Brown | 8548803 | 2009-09-05 18:52:16 +0100 | [diff] [blame] | 3003 | int snd_soc_dai_set_pll(struct snd_soc_dai *dai, int pll_id, int source, |
| 3004 | unsigned int freq_in, unsigned int freq_out) |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 3005 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3006 | if (dai->driver && dai->driver->ops->set_pll) |
| 3007 | return dai->driver->ops->set_pll(dai, pll_id, source, |
Mark Brown | 8548803 | 2009-09-05 18:52:16 +0100 | [diff] [blame] | 3008 | freq_in, freq_out); |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 3009 | else |
| 3010 | return -EINVAL; |
| 3011 | } |
| 3012 | EXPORT_SYMBOL_GPL(snd_soc_dai_set_pll); |
| 3013 | |
| 3014 | /** |
| 3015 | * snd_soc_dai_set_fmt - configure DAI hardware audio format. |
| 3016 | * @dai: DAI |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 3017 | * @fmt: SND_SOC_DAIFMT_ format value. |
| 3018 | * |
| 3019 | * Configures the DAI hardware format and clocking. |
| 3020 | */ |
| 3021 | int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt) |
| 3022 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3023 | if (dai->driver && dai->driver->ops->set_fmt) |
| 3024 | return dai->driver->ops->set_fmt(dai, fmt); |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 3025 | else |
| 3026 | return -EINVAL; |
| 3027 | } |
| 3028 | EXPORT_SYMBOL_GPL(snd_soc_dai_set_fmt); |
| 3029 | |
| 3030 | /** |
| 3031 | * snd_soc_dai_set_tdm_slot - configure DAI TDM. |
| 3032 | * @dai: DAI |
Daniel Ribeiro | a5479e3 | 2009-06-15 21:44:31 -0300 | [diff] [blame] | 3033 | * @tx_mask: bitmask representing active TX slots. |
| 3034 | * @rx_mask: bitmask representing active RX slots. |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 3035 | * @slots: Number of slots in use. |
Daniel Ribeiro | a5479e3 | 2009-06-15 21:44:31 -0300 | [diff] [blame] | 3036 | * @slot_width: Width in bits for each slot. |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 3037 | * |
| 3038 | * Configures a DAI for TDM operation. Both mask and slots are codec and DAI |
| 3039 | * specific. |
| 3040 | */ |
| 3041 | int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai, |
Daniel Ribeiro | a5479e3 | 2009-06-15 21:44:31 -0300 | [diff] [blame] | 3042 | unsigned int tx_mask, unsigned int rx_mask, int slots, int slot_width) |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 3043 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3044 | if (dai->driver && dai->driver->ops->set_tdm_slot) |
| 3045 | return dai->driver->ops->set_tdm_slot(dai, tx_mask, rx_mask, |
Daniel Ribeiro | a5479e3 | 2009-06-15 21:44:31 -0300 | [diff] [blame] | 3046 | slots, slot_width); |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 3047 | else |
| 3048 | return -EINVAL; |
| 3049 | } |
| 3050 | EXPORT_SYMBOL_GPL(snd_soc_dai_set_tdm_slot); |
| 3051 | |
| 3052 | /** |
Barry Song | 472df3c | 2009-09-12 01:16:29 +0800 | [diff] [blame] | 3053 | * snd_soc_dai_set_channel_map - configure DAI audio channel map |
| 3054 | * @dai: DAI |
| 3055 | * @tx_num: how many TX channels |
| 3056 | * @tx_slot: pointer to an array which imply the TX slot number channel |
| 3057 | * 0~num-1 uses |
| 3058 | * @rx_num: how many RX channels |
| 3059 | * @rx_slot: pointer to an array which imply the RX slot number channel |
| 3060 | * 0~num-1 uses |
| 3061 | * |
| 3062 | * configure the relationship between channel number and TDM slot number. |
| 3063 | */ |
| 3064 | int snd_soc_dai_set_channel_map(struct snd_soc_dai *dai, |
| 3065 | unsigned int tx_num, unsigned int *tx_slot, |
| 3066 | unsigned int rx_num, unsigned int *rx_slot) |
| 3067 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3068 | if (dai->driver && dai->driver->ops->set_channel_map) |
| 3069 | return dai->driver->ops->set_channel_map(dai, tx_num, tx_slot, |
Barry Song | 472df3c | 2009-09-12 01:16:29 +0800 | [diff] [blame] | 3070 | rx_num, rx_slot); |
| 3071 | else |
| 3072 | return -EINVAL; |
| 3073 | } |
| 3074 | EXPORT_SYMBOL_GPL(snd_soc_dai_set_channel_map); |
| 3075 | |
| 3076 | /** |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 3077 | * snd_soc_dai_set_tristate - configure DAI system or master clock. |
| 3078 | * @dai: DAI |
| 3079 | * @tristate: tristate enable |
| 3080 | * |
| 3081 | * Tristates the DAI so that others can use it. |
| 3082 | */ |
| 3083 | int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate) |
| 3084 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3085 | if (dai->driver && dai->driver->ops->set_tristate) |
| 3086 | return dai->driver->ops->set_tristate(dai, tristate); |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 3087 | else |
| 3088 | return -EINVAL; |
| 3089 | } |
| 3090 | EXPORT_SYMBOL_GPL(snd_soc_dai_set_tristate); |
| 3091 | |
| 3092 | /** |
| 3093 | * snd_soc_dai_digital_mute - configure DAI system or master clock. |
| 3094 | * @dai: DAI |
| 3095 | * @mute: mute enable |
| 3096 | * |
| 3097 | * Mutes the DAI DAC. |
| 3098 | */ |
| 3099 | int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute) |
| 3100 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3101 | if (dai->driver && dai->driver->ops->digital_mute) |
| 3102 | return dai->driver->ops->digital_mute(dai, mute); |
Liam Girdwood | 8c6529d | 2008-07-08 13:19:13 +0100 | [diff] [blame] | 3103 | else |
| 3104 | return -EINVAL; |
| 3105 | } |
| 3106 | EXPORT_SYMBOL_GPL(snd_soc_dai_digital_mute); |
| 3107 | |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3108 | /** |
| 3109 | * snd_soc_register_card - Register a card with the ASoC core |
| 3110 | * |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 3111 | * @card: Card to register |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3112 | * |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3113 | */ |
Vinod Koul | 70a7ca3 | 2011-01-14 19:22:48 +0530 | [diff] [blame] | 3114 | int snd_soc_register_card(struct snd_soc_card *card) |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3115 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3116 | int i; |
| 3117 | |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3118 | if (!card->name || !card->dev) |
| 3119 | return -EINVAL; |
| 3120 | |
Vinod Koul | 150dd2f | 2011-01-13 22:48:32 +0530 | [diff] [blame] | 3121 | soc_init_card_debugfs(card); |
| 3122 | |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 3123 | card->rtd = kzalloc(sizeof(struct snd_soc_pcm_runtime) * |
| 3124 | (card->num_links + card->num_aux_devs), |
| 3125 | GFP_KERNEL); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3126 | if (card->rtd == NULL) |
| 3127 | return -ENOMEM; |
Jarkko Nikula | 2eea392 | 2010-11-25 17:47:38 +0200 | [diff] [blame] | 3128 | card->rtd_aux = &card->rtd[card->num_links]; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3129 | |
| 3130 | for (i = 0; i < card->num_links; i++) |
| 3131 | card->rtd[i].dai_link = &card->dai_link[i]; |
| 3132 | |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3133 | INIT_LIST_HEAD(&card->list); |
| 3134 | card->instantiated = 0; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3135 | mutex_init(&card->mutex); |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3136 | |
| 3137 | mutex_lock(&client_mutex); |
| 3138 | list_add(&card->list, &card_list); |
Mark Brown | 435c5e2 | 2008-12-04 15:32:53 +0000 | [diff] [blame] | 3139 | snd_soc_instantiate_cards(); |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3140 | mutex_unlock(&client_mutex); |
| 3141 | |
| 3142 | dev_dbg(card->dev, "Registered card '%s'\n", card->name); |
| 3143 | |
| 3144 | return 0; |
| 3145 | } |
Vinod Koul | 70a7ca3 | 2011-01-14 19:22:48 +0530 | [diff] [blame] | 3146 | EXPORT_SYMBOL_GPL(snd_soc_register_card); |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3147 | |
| 3148 | /** |
| 3149 | * snd_soc_unregister_card - Unregister a card with the ASoC core |
| 3150 | * |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 3151 | * @card: Card to unregister |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3152 | * |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3153 | */ |
Vinod Koul | 70a7ca3 | 2011-01-14 19:22:48 +0530 | [diff] [blame] | 3154 | int snd_soc_unregister_card(struct snd_soc_card *card) |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3155 | { |
Vinod Koul | b0e2648 | 2011-01-13 22:48:02 +0530 | [diff] [blame] | 3156 | if (card->instantiated) |
| 3157 | soc_cleanup_card_resources(card); |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3158 | mutex_lock(&client_mutex); |
| 3159 | list_del(&card->list); |
| 3160 | mutex_unlock(&client_mutex); |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3161 | dev_dbg(card->dev, "Unregistered card '%s'\n", card->name); |
| 3162 | |
| 3163 | return 0; |
| 3164 | } |
Vinod Koul | 70a7ca3 | 2011-01-14 19:22:48 +0530 | [diff] [blame] | 3165 | EXPORT_SYMBOL_GPL(snd_soc_unregister_card); |
Mark Brown | c5af3a2 | 2008-11-28 13:29:45 +0000 | [diff] [blame] | 3166 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3167 | /* |
| 3168 | * Simplify DAI link configuration by removing ".-1" from device names |
| 3169 | * and sanitizing names. |
| 3170 | */ |
Dimitris Papastamos | 0b9a214 | 2010-12-06 15:49:20 +0000 | [diff] [blame] | 3171 | static char *fmt_single_name(struct device *dev, int *id) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3172 | { |
| 3173 | char *found, name[NAME_SIZE]; |
| 3174 | int id1, id2; |
| 3175 | |
| 3176 | if (dev_name(dev) == NULL) |
| 3177 | return NULL; |
| 3178 | |
Dimitris Papastamos | 58818a7 | 2010-12-06 15:42:17 +0000 | [diff] [blame] | 3179 | strlcpy(name, dev_name(dev), NAME_SIZE); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3180 | |
| 3181 | /* are we a "%s.%d" name (platform and SPI components) */ |
| 3182 | found = strstr(name, dev->driver->name); |
| 3183 | if (found) { |
| 3184 | /* get ID */ |
| 3185 | if (sscanf(&found[strlen(dev->driver->name)], ".%d", id) == 1) { |
| 3186 | |
| 3187 | /* discard ID from name if ID == -1 */ |
| 3188 | if (*id == -1) |
| 3189 | found[strlen(dev->driver->name)] = '\0'; |
| 3190 | } |
| 3191 | |
| 3192 | } else { |
| 3193 | /* I2C component devices are named "bus-addr" */ |
| 3194 | if (sscanf(name, "%x-%x", &id1, &id2) == 2) { |
| 3195 | char tmp[NAME_SIZE]; |
| 3196 | |
| 3197 | /* create unique ID number from I2C addr and bus */ |
Jarkko Nikula | 0589944 | 2010-10-19 11:10:45 +0300 | [diff] [blame] | 3198 | *id = ((id1 & 0xffff) << 16) + id2; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3199 | |
| 3200 | /* sanitize component name for DAI link creation */ |
| 3201 | snprintf(tmp, NAME_SIZE, "%s.%s", dev->driver->name, name); |
Dimitris Papastamos | 58818a7 | 2010-12-06 15:42:17 +0000 | [diff] [blame] | 3202 | strlcpy(name, tmp, NAME_SIZE); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3203 | } else |
| 3204 | *id = 0; |
| 3205 | } |
| 3206 | |
| 3207 | return kstrdup(name, GFP_KERNEL); |
| 3208 | } |
| 3209 | |
| 3210 | /* |
| 3211 | * Simplify DAI link naming for single devices with multiple DAIs by removing |
| 3212 | * any ".-1" and using the DAI name (instead of device name). |
| 3213 | */ |
| 3214 | static inline char *fmt_multiple_name(struct device *dev, |
| 3215 | struct snd_soc_dai_driver *dai_drv) |
| 3216 | { |
| 3217 | if (dai_drv->name == NULL) { |
| 3218 | printk(KERN_ERR "asoc: error - multiple DAI %s registered with no name\n", |
| 3219 | dev_name(dev)); |
| 3220 | return NULL; |
| 3221 | } |
| 3222 | |
| 3223 | return kstrdup(dai_drv->name, GFP_KERNEL); |
| 3224 | } |
| 3225 | |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3226 | /** |
| 3227 | * snd_soc_register_dai - Register a DAI with the ASoC core |
| 3228 | * |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 3229 | * @dai: DAI to register |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3230 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3231 | int snd_soc_register_dai(struct device *dev, |
| 3232 | struct snd_soc_dai_driver *dai_drv) |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3233 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3234 | struct snd_soc_dai *dai; |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3235 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3236 | dev_dbg(dev, "dai register %s\n", dev_name(dev)); |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3237 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3238 | dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL); |
| 3239 | if (dai == NULL) |
| 3240 | return -ENOMEM; |
Eric Miao | 6335d05 | 2009-03-03 09:41:00 +0800 | [diff] [blame] | 3241 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3242 | /* create DAI component name */ |
| 3243 | dai->name = fmt_single_name(dev, &dai->id); |
| 3244 | if (dai->name == NULL) { |
| 3245 | kfree(dai); |
| 3246 | return -ENOMEM; |
| 3247 | } |
| 3248 | |
| 3249 | dai->dev = dev; |
| 3250 | dai->driver = dai_drv; |
| 3251 | if (!dai->driver->ops) |
| 3252 | dai->driver->ops = &null_dai_ops; |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3253 | |
| 3254 | mutex_lock(&client_mutex); |
| 3255 | list_add(&dai->list, &dai_list); |
Mark Brown | 435c5e2 | 2008-12-04 15:32:53 +0000 | [diff] [blame] | 3256 | snd_soc_instantiate_cards(); |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3257 | mutex_unlock(&client_mutex); |
| 3258 | |
| 3259 | pr_debug("Registered DAI '%s'\n", dai->name); |
| 3260 | |
| 3261 | return 0; |
| 3262 | } |
| 3263 | EXPORT_SYMBOL_GPL(snd_soc_register_dai); |
| 3264 | |
| 3265 | /** |
| 3266 | * snd_soc_unregister_dai - Unregister a DAI from the ASoC core |
| 3267 | * |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 3268 | * @dai: DAI to unregister |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3269 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3270 | void snd_soc_unregister_dai(struct device *dev) |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3271 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3272 | struct snd_soc_dai *dai; |
| 3273 | |
| 3274 | list_for_each_entry(dai, &dai_list, list) { |
| 3275 | if (dev == dai->dev) |
| 3276 | goto found; |
| 3277 | } |
| 3278 | return; |
| 3279 | |
| 3280 | found: |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3281 | mutex_lock(&client_mutex); |
| 3282 | list_del(&dai->list); |
| 3283 | mutex_unlock(&client_mutex); |
| 3284 | |
| 3285 | pr_debug("Unregistered DAI '%s'\n", dai->name); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3286 | kfree(dai->name); |
| 3287 | kfree(dai); |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3288 | } |
| 3289 | EXPORT_SYMBOL_GPL(snd_soc_unregister_dai); |
| 3290 | |
| 3291 | /** |
| 3292 | * snd_soc_register_dais - Register multiple DAIs with the ASoC core |
| 3293 | * |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 3294 | * @dai: Array of DAIs to register |
| 3295 | * @count: Number of DAIs |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3296 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3297 | int snd_soc_register_dais(struct device *dev, |
| 3298 | struct snd_soc_dai_driver *dai_drv, size_t count) |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3299 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3300 | struct snd_soc_dai *dai; |
| 3301 | int i, ret = 0; |
| 3302 | |
Liam Girdwood | 720ffa4 | 2010-08-18 00:30:30 +0100 | [diff] [blame] | 3303 | dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count); |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3304 | |
| 3305 | for (i = 0; i < count; i++) { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3306 | |
| 3307 | dai = kzalloc(sizeof(struct snd_soc_dai), GFP_KERNEL); |
Axel Lin | c46e007 | 2010-11-03 15:04:45 +0800 | [diff] [blame] | 3308 | if (dai == NULL) { |
| 3309 | ret = -ENOMEM; |
| 3310 | goto err; |
| 3311 | } |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3312 | |
| 3313 | /* create DAI component name */ |
| 3314 | dai->name = fmt_multiple_name(dev, &dai_drv[i]); |
| 3315 | if (dai->name == NULL) { |
| 3316 | kfree(dai); |
| 3317 | ret = -EINVAL; |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3318 | goto err; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3319 | } |
| 3320 | |
| 3321 | dai->dev = dev; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3322 | dai->driver = &dai_drv[i]; |
Mark Brown | 0f9141c | 2010-10-12 15:43:21 +0100 | [diff] [blame] | 3323 | if (dai->driver->id) |
| 3324 | dai->id = dai->driver->id; |
| 3325 | else |
| 3326 | dai->id = i; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3327 | if (!dai->driver->ops) |
| 3328 | dai->driver->ops = &null_dai_ops; |
| 3329 | |
| 3330 | mutex_lock(&client_mutex); |
| 3331 | list_add(&dai->list, &dai_list); |
| 3332 | mutex_unlock(&client_mutex); |
| 3333 | |
| 3334 | pr_debug("Registered DAI '%s'\n", dai->name); |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3335 | } |
| 3336 | |
Axel Lin | 1dcb4f3 | 2010-12-06 16:48:03 +0800 | [diff] [blame] | 3337 | mutex_lock(&client_mutex); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3338 | snd_soc_instantiate_cards(); |
Axel Lin | 1dcb4f3 | 2010-12-06 16:48:03 +0800 | [diff] [blame] | 3339 | mutex_unlock(&client_mutex); |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3340 | return 0; |
| 3341 | |
| 3342 | err: |
| 3343 | for (i--; i >= 0; i--) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3344 | snd_soc_unregister_dai(dev); |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3345 | |
| 3346 | return ret; |
| 3347 | } |
| 3348 | EXPORT_SYMBOL_GPL(snd_soc_register_dais); |
| 3349 | |
| 3350 | /** |
| 3351 | * snd_soc_unregister_dais - Unregister multiple DAIs from the ASoC core |
| 3352 | * |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 3353 | * @dai: Array of DAIs to unregister |
| 3354 | * @count: Number of DAIs |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3355 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3356 | void snd_soc_unregister_dais(struct device *dev, size_t count) |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3357 | { |
| 3358 | int i; |
| 3359 | |
| 3360 | for (i = 0; i < count; i++) |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3361 | snd_soc_unregister_dai(dev); |
Mark Brown | 9115171 | 2008-11-30 23:31:24 +0000 | [diff] [blame] | 3362 | } |
| 3363 | EXPORT_SYMBOL_GPL(snd_soc_unregister_dais); |
| 3364 | |
Mark Brown | 12a48a8c | 2008-12-03 19:40:30 +0000 | [diff] [blame] | 3365 | /** |
| 3366 | * snd_soc_register_platform - Register a platform with the ASoC core |
| 3367 | * |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 3368 | * @platform: platform to register |
Mark Brown | 12a48a8c | 2008-12-03 19:40:30 +0000 | [diff] [blame] | 3369 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3370 | int snd_soc_register_platform(struct device *dev, |
| 3371 | struct snd_soc_platform_driver *platform_drv) |
Mark Brown | 12a48a8c | 2008-12-03 19:40:30 +0000 | [diff] [blame] | 3372 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3373 | struct snd_soc_platform *platform; |
Mark Brown | 12a48a8c | 2008-12-03 19:40:30 +0000 | [diff] [blame] | 3374 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3375 | dev_dbg(dev, "platform register %s\n", dev_name(dev)); |
| 3376 | |
| 3377 | platform = kzalloc(sizeof(struct snd_soc_platform), GFP_KERNEL); |
| 3378 | if (platform == NULL) |
| 3379 | return -ENOMEM; |
| 3380 | |
| 3381 | /* create platform component name */ |
| 3382 | platform->name = fmt_single_name(dev, &platform->id); |
| 3383 | if (platform->name == NULL) { |
| 3384 | kfree(platform); |
| 3385 | return -ENOMEM; |
| 3386 | } |
| 3387 | |
| 3388 | platform->dev = dev; |
| 3389 | platform->driver = platform_drv; |
Mark Brown | 12a48a8c | 2008-12-03 19:40:30 +0000 | [diff] [blame] | 3390 | |
| 3391 | mutex_lock(&client_mutex); |
| 3392 | list_add(&platform->list, &platform_list); |
Mark Brown | 435c5e2 | 2008-12-04 15:32:53 +0000 | [diff] [blame] | 3393 | snd_soc_instantiate_cards(); |
Mark Brown | 12a48a8c | 2008-12-03 19:40:30 +0000 | [diff] [blame] | 3394 | mutex_unlock(&client_mutex); |
| 3395 | |
| 3396 | pr_debug("Registered platform '%s'\n", platform->name); |
| 3397 | |
| 3398 | return 0; |
| 3399 | } |
| 3400 | EXPORT_SYMBOL_GPL(snd_soc_register_platform); |
| 3401 | |
| 3402 | /** |
| 3403 | * snd_soc_unregister_platform - Unregister a platform from the ASoC core |
| 3404 | * |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 3405 | * @platform: platform to unregister |
Mark Brown | 12a48a8c | 2008-12-03 19:40:30 +0000 | [diff] [blame] | 3406 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3407 | void snd_soc_unregister_platform(struct device *dev) |
Mark Brown | 12a48a8c | 2008-12-03 19:40:30 +0000 | [diff] [blame] | 3408 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3409 | struct snd_soc_platform *platform; |
| 3410 | |
| 3411 | list_for_each_entry(platform, &platform_list, list) { |
| 3412 | if (dev == platform->dev) |
| 3413 | goto found; |
| 3414 | } |
| 3415 | return; |
| 3416 | |
| 3417 | found: |
Mark Brown | 12a48a8c | 2008-12-03 19:40:30 +0000 | [diff] [blame] | 3418 | mutex_lock(&client_mutex); |
| 3419 | list_del(&platform->list); |
| 3420 | mutex_unlock(&client_mutex); |
| 3421 | |
| 3422 | pr_debug("Unregistered platform '%s'\n", platform->name); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3423 | kfree(platform->name); |
| 3424 | kfree(platform); |
Mark Brown | 12a48a8c | 2008-12-03 19:40:30 +0000 | [diff] [blame] | 3425 | } |
| 3426 | EXPORT_SYMBOL_GPL(snd_soc_unregister_platform); |
| 3427 | |
Mark Brown | 151ab22 | 2009-05-09 16:22:58 +0100 | [diff] [blame] | 3428 | static u64 codec_format_map[] = { |
| 3429 | SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE, |
| 3430 | SNDRV_PCM_FMTBIT_U16_LE | SNDRV_PCM_FMTBIT_U16_BE, |
| 3431 | SNDRV_PCM_FMTBIT_S24_LE | SNDRV_PCM_FMTBIT_S24_BE, |
| 3432 | SNDRV_PCM_FMTBIT_U24_LE | SNDRV_PCM_FMTBIT_U24_BE, |
| 3433 | SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE, |
| 3434 | SNDRV_PCM_FMTBIT_U32_LE | SNDRV_PCM_FMTBIT_U32_BE, |
| 3435 | SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_U24_3BE, |
| 3436 | SNDRV_PCM_FMTBIT_U24_3LE | SNDRV_PCM_FMTBIT_U24_3BE, |
| 3437 | SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S20_3BE, |
| 3438 | SNDRV_PCM_FMTBIT_U20_3LE | SNDRV_PCM_FMTBIT_U20_3BE, |
| 3439 | SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S18_3BE, |
| 3440 | SNDRV_PCM_FMTBIT_U18_3LE | SNDRV_PCM_FMTBIT_U18_3BE, |
| 3441 | SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE, |
| 3442 | SNDRV_PCM_FMTBIT_FLOAT64_LE | SNDRV_PCM_FMTBIT_FLOAT64_BE, |
| 3443 | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE |
| 3444 | | SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_BE, |
| 3445 | }; |
| 3446 | |
| 3447 | /* Fix up the DAI formats for endianness: codecs don't actually see |
| 3448 | * the endianness of the data but we're using the CPU format |
| 3449 | * definitions which do need to include endianness so we ensure that |
| 3450 | * codec DAIs always have both big and little endian variants set. |
| 3451 | */ |
| 3452 | static void fixup_codec_formats(struct snd_soc_pcm_stream *stream) |
| 3453 | { |
| 3454 | int i; |
| 3455 | |
| 3456 | for (i = 0; i < ARRAY_SIZE(codec_format_map); i++) |
| 3457 | if (stream->formats & codec_format_map[i]) |
| 3458 | stream->formats |= codec_format_map[i]; |
| 3459 | } |
| 3460 | |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 3461 | /** |
| 3462 | * snd_soc_register_codec - Register a codec with the ASoC core |
| 3463 | * |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 3464 | * @codec: codec to register |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 3465 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3466 | int snd_soc_register_codec(struct device *dev, |
Mark Brown | 001ae4c | 2010-12-02 16:21:08 +0000 | [diff] [blame] | 3467 | const struct snd_soc_codec_driver *codec_drv, |
| 3468 | struct snd_soc_dai_driver *dai_drv, |
| 3469 | int num_dai) |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 3470 | { |
Dimitris Papastamos | 3335ddc | 2010-12-02 16:11:05 +0000 | [diff] [blame] | 3471 | size_t reg_size; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3472 | struct snd_soc_codec *codec; |
| 3473 | int ret, i; |
Mark Brown | 151ab22 | 2009-05-09 16:22:58 +0100 | [diff] [blame] | 3474 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3475 | dev_dbg(dev, "codec register %s\n", dev_name(dev)); |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 3476 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3477 | codec = kzalloc(sizeof(struct snd_soc_codec), GFP_KERNEL); |
| 3478 | if (codec == NULL) |
| 3479 | return -ENOMEM; |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 3480 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3481 | /* create CODEC component name */ |
| 3482 | codec->name = fmt_single_name(dev, &codec->id); |
| 3483 | if (codec->name == NULL) { |
| 3484 | kfree(codec); |
| 3485 | return -ENOMEM; |
Mark Brown | 151ab22 | 2009-05-09 16:22:58 +0100 | [diff] [blame] | 3486 | } |
| 3487 | |
Dimitris Papastamos | 23bbce3 | 2010-12-02 14:53:01 +0000 | [diff] [blame] | 3488 | if (codec_drv->compress_type) |
| 3489 | codec->compress_type = codec_drv->compress_type; |
| 3490 | else |
| 3491 | codec->compress_type = SND_SOC_FLAT_COMPRESSION; |
| 3492 | |
Mark Brown | c3acec2 | 2010-12-02 16:15:29 +0000 | [diff] [blame] | 3493 | codec->write = codec_drv->write; |
| 3494 | codec->read = codec_drv->read; |
Dimitris Papastamos | 1500b7b | 2011-01-13 12:20:38 +0000 | [diff] [blame] | 3495 | codec->volatile_register = codec_drv->volatile_register; |
| 3496 | codec->readable_register = codec_drv->readable_register; |
Liam Girdwood | ce6120c | 2010-11-05 15:53:46 +0200 | [diff] [blame] | 3497 | codec->dapm.bias_level = SND_SOC_BIAS_OFF; |
| 3498 | codec->dapm.dev = dev; |
| 3499 | codec->dapm.codec = codec; |
Mark Brown | 474b62d | 2011-01-18 16:14:44 +0000 | [diff] [blame] | 3500 | codec->dapm.seq_notifier = codec_drv->seq_notifier; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3501 | codec->dev = dev; |
| 3502 | codec->driver = codec_drv; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3503 | codec->num_dai = num_dai; |
| 3504 | mutex_init(&codec->mutex); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3505 | |
Dimitris Papastamos | 7a30a3d | 2010-11-11 10:04:57 +0000 | [diff] [blame] | 3506 | /* allocate CODEC register cache */ |
| 3507 | if (codec_drv->reg_cache_size && codec_drv->reg_word_size) { |
Dimitris Papastamos | 3335ddc | 2010-12-02 16:11:05 +0000 | [diff] [blame] | 3508 | reg_size = codec_drv->reg_cache_size * codec_drv->reg_word_size; |
Dimitris Papastamos | aea170a | 2011-01-12 10:38:58 +0000 | [diff] [blame] | 3509 | codec->reg_size = reg_size; |
Dimitris Papastamos | 3335ddc | 2010-12-02 16:11:05 +0000 | [diff] [blame] | 3510 | /* it is necessary to make a copy of the default register cache |
| 3511 | * because in the case of using a compression type that requires |
| 3512 | * the default register cache to be marked as __devinitconst the |
| 3513 | * kernel might have freed the array by the time we initialize |
| 3514 | * the cache. |
| 3515 | */ |
Dimitris Papastamos | 2aa8632 | 2011-01-10 10:10:56 +0000 | [diff] [blame] | 3516 | if (codec_drv->reg_cache_default) { |
| 3517 | codec->reg_def_copy = kmemdup(codec_drv->reg_cache_default, |
| 3518 | reg_size, GFP_KERNEL); |
| 3519 | if (!codec->reg_def_copy) { |
| 3520 | ret = -ENOMEM; |
| 3521 | goto fail; |
| 3522 | } |
Dimitris Papastamos | 7a30a3d | 2010-11-11 10:04:57 +0000 | [diff] [blame] | 3523 | } |
| 3524 | } |
| 3525 | |
Dimitris Papastamos | 1500b7b | 2011-01-13 12:20:38 +0000 | [diff] [blame] | 3526 | if (codec_drv->reg_access_size && codec_drv->reg_access_default) { |
| 3527 | if (!codec->volatile_register) |
| 3528 | codec->volatile_register = snd_soc_default_volatile_register; |
| 3529 | if (!codec->readable_register) |
| 3530 | codec->readable_register = snd_soc_default_readable_register; |
| 3531 | } |
| 3532 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3533 | for (i = 0; i < num_dai; i++) { |
| 3534 | fixup_codec_formats(&dai_drv[i].playback); |
| 3535 | fixup_codec_formats(&dai_drv[i].capture); |
| 3536 | } |
| 3537 | |
Mark Brown | 26b01cc | 2010-08-18 20:20:55 +0100 | [diff] [blame] | 3538 | /* register any DAIs */ |
| 3539 | if (num_dai) { |
| 3540 | ret = snd_soc_register_dais(dev, dai_drv, num_dai); |
| 3541 | if (ret < 0) |
Dimitris Papastamos | fdf0f54 | 2010-12-02 16:11:06 +0000 | [diff] [blame] | 3542 | goto fail; |
Mark Brown | 26b01cc | 2010-08-18 20:20:55 +0100 | [diff] [blame] | 3543 | } |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3544 | |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 3545 | mutex_lock(&client_mutex); |
| 3546 | list_add(&codec->list, &codec_list); |
| 3547 | snd_soc_instantiate_cards(); |
| 3548 | mutex_unlock(&client_mutex); |
| 3549 | |
| 3550 | pr_debug("Registered codec '%s'\n", codec->name); |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 3551 | return 0; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3552 | |
Dimitris Papastamos | fdf0f54 | 2010-12-02 16:11:06 +0000 | [diff] [blame] | 3553 | fail: |
Dimitris Papastamos | 3335ddc | 2010-12-02 16:11:05 +0000 | [diff] [blame] | 3554 | kfree(codec->reg_def_copy); |
| 3555 | codec->reg_def_copy = NULL; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3556 | kfree(codec->name); |
| 3557 | kfree(codec); |
| 3558 | return ret; |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 3559 | } |
| 3560 | EXPORT_SYMBOL_GPL(snd_soc_register_codec); |
| 3561 | |
| 3562 | /** |
| 3563 | * snd_soc_unregister_codec - Unregister a codec from the ASoC core |
| 3564 | * |
Mark Brown | ac11a2b | 2009-01-01 12:18:17 +0000 | [diff] [blame] | 3565 | * @codec: codec to unregister |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 3566 | */ |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3567 | void snd_soc_unregister_codec(struct device *dev) |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 3568 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3569 | struct snd_soc_codec *codec; |
| 3570 | int i; |
| 3571 | |
| 3572 | list_for_each_entry(codec, &codec_list, list) { |
| 3573 | if (dev == codec->dev) |
| 3574 | goto found; |
| 3575 | } |
| 3576 | return; |
| 3577 | |
| 3578 | found: |
Mark Brown | 26b01cc | 2010-08-18 20:20:55 +0100 | [diff] [blame] | 3579 | if (codec->num_dai) |
| 3580 | for (i = 0; i < codec->num_dai; i++) |
| 3581 | snd_soc_unregister_dai(dev); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3582 | |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 3583 | mutex_lock(&client_mutex); |
| 3584 | list_del(&codec->list); |
| 3585 | mutex_unlock(&client_mutex); |
| 3586 | |
| 3587 | pr_debug("Unregistered codec '%s'\n", codec->name); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3588 | |
Dimitris Papastamos | 7a30a3d | 2010-11-11 10:04:57 +0000 | [diff] [blame] | 3589 | snd_soc_cache_exit(codec); |
Dimitris Papastamos | 3335ddc | 2010-12-02 16:11:05 +0000 | [diff] [blame] | 3590 | kfree(codec->reg_def_copy); |
Dimitris Papastamos | 1aafcd4 | 2010-10-21 13:19:45 +0100 | [diff] [blame] | 3591 | kfree(codec->name); |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 3592 | kfree(codec); |
Mark Brown | 0d0cf00 | 2008-12-10 14:32:45 +0000 | [diff] [blame] | 3593 | } |
| 3594 | EXPORT_SYMBOL_GPL(snd_soc_unregister_codec); |
| 3595 | |
Takashi Iwai | c9b3a40 | 2008-12-10 07:47:22 +0100 | [diff] [blame] | 3596 | static int __init snd_soc_init(void) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 3597 | { |
Mark Brown | 384c89e | 2008-12-03 17:34:03 +0000 | [diff] [blame] | 3598 | #ifdef CONFIG_DEBUG_FS |
Mark Brown | 8a9dab1 | 2011-01-10 22:25:21 +0000 | [diff] [blame] | 3599 | snd_soc_debugfs_root = debugfs_create_dir("asoc", NULL); |
| 3600 | if (IS_ERR(snd_soc_debugfs_root) || !snd_soc_debugfs_root) { |
Mark Brown | 384c89e | 2008-12-03 17:34:03 +0000 | [diff] [blame] | 3601 | printk(KERN_WARNING |
| 3602 | "ASoC: Failed to create debugfs directory\n"); |
Mark Brown | 8a9dab1 | 2011-01-10 22:25:21 +0000 | [diff] [blame] | 3603 | snd_soc_debugfs_root = NULL; |
Mark Brown | 384c89e | 2008-12-03 17:34:03 +0000 | [diff] [blame] | 3604 | } |
Mark Brown | c3c5a19 | 2010-09-15 18:15:14 +0100 | [diff] [blame] | 3605 | |
Mark Brown | 8a9dab1 | 2011-01-10 22:25:21 +0000 | [diff] [blame] | 3606 | if (!debugfs_create_file("codecs", 0444, snd_soc_debugfs_root, NULL, |
Mark Brown | c3c5a19 | 2010-09-15 18:15:14 +0100 | [diff] [blame] | 3607 | &codec_list_fops)) |
| 3608 | pr_warn("ASoC: Failed to create CODEC list debugfs file\n"); |
| 3609 | |
Mark Brown | 8a9dab1 | 2011-01-10 22:25:21 +0000 | [diff] [blame] | 3610 | if (!debugfs_create_file("dais", 0444, snd_soc_debugfs_root, NULL, |
Mark Brown | f320878 | 2010-09-15 18:19:07 +0100 | [diff] [blame] | 3611 | &dai_list_fops)) |
| 3612 | pr_warn("ASoC: Failed to create DAI list debugfs file\n"); |
Mark Brown | 19c7ac2 | 2010-09-15 18:22:40 +0100 | [diff] [blame] | 3613 | |
Mark Brown | 8a9dab1 | 2011-01-10 22:25:21 +0000 | [diff] [blame] | 3614 | if (!debugfs_create_file("platforms", 0444, snd_soc_debugfs_root, NULL, |
Mark Brown | 19c7ac2 | 2010-09-15 18:22:40 +0100 | [diff] [blame] | 3615 | &platform_list_fops)) |
| 3616 | pr_warn("ASoC: Failed to create platform list debugfs file\n"); |
Mark Brown | 384c89e | 2008-12-03 17:34:03 +0000 | [diff] [blame] | 3617 | #endif |
| 3618 | |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 3619 | return platform_driver_register(&soc_driver); |
| 3620 | } |
Mark Brown | 4abe8e1 | 2010-10-12 17:41:03 +0100 | [diff] [blame] | 3621 | module_init(snd_soc_init); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 3622 | |
Mark Brown | 7d8c16a | 2008-11-30 22:11:24 +0000 | [diff] [blame] | 3623 | static void __exit snd_soc_exit(void) |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 3624 | { |
Mark Brown | 384c89e | 2008-12-03 17:34:03 +0000 | [diff] [blame] | 3625 | #ifdef CONFIG_DEBUG_FS |
Mark Brown | 8a9dab1 | 2011-01-10 22:25:21 +0000 | [diff] [blame] | 3626 | debugfs_remove_recursive(snd_soc_debugfs_root); |
Mark Brown | 384c89e | 2008-12-03 17:34:03 +0000 | [diff] [blame] | 3627 | #endif |
Mark Brown | 3ff3f64 | 2008-05-19 12:32:25 +0200 | [diff] [blame] | 3628 | platform_driver_unregister(&soc_driver); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 3629 | } |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 3630 | module_exit(snd_soc_exit); |
| 3631 | |
| 3632 | /* Module information */ |
Liam Girdwood | d331124 | 2008-10-12 13:17:36 +0100 | [diff] [blame] | 3633 | MODULE_AUTHOR("Liam Girdwood, lrg@slimlogic.co.uk"); |
Frank Mandarino | db2a416 | 2006-10-06 18:31:09 +0200 | [diff] [blame] | 3634 | MODULE_DESCRIPTION("ALSA SoC Core"); |
| 3635 | MODULE_LICENSE("GPL"); |
Kay Sievers | 8b45a20 | 2008-04-14 13:33:36 +0200 | [diff] [blame] | 3636 | MODULE_ALIAS("platform:soc-audio"); |