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