2 * HWDEP Interface for HD-audio codec
4 * Copyright (c) 2007 Takashi Iwai <tiwai@suse.de>
6 * This driver is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This driver is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/init.h>
22 #include <linux/slab.h>
23 #include <linux/pci.h>
24 #include <linux/compat.h>
25 #include <linux/mutex.h>
26 #include <linux/ctype.h>
27 #include <sound/core.h>
28 #include "hda_codec.h"
29 #include "hda_local.h"
30 #include <sound/hda_hwdep.h>
31 #include <sound/minors.h>
33 /* hint string pair */
36 const char *val; /* contained in the same alloc as key */
40 * write/read an out-of-bound verb
42 static int verb_write_ioctl(struct hda_codec *codec,
43 struct hda_verb_ioctl __user *arg)
47 if (get_user(verb, &arg->verb))
49 res = snd_hda_codec_read(codec, verb >> 24, 0,
50 (verb >> 8) & 0xffff, verb & 0xff);
51 if (put_user(res, &arg->res))
56 static int get_wcap_ioctl(struct hda_codec *codec,
57 struct hda_verb_ioctl __user *arg)
61 if (get_user(verb, &arg->verb))
63 res = get_wcaps(codec, verb >> 24);
64 if (put_user(res, &arg->res))
72 static int hda_hwdep_ioctl(struct snd_hwdep *hw, struct file *file,
73 unsigned int cmd, unsigned long arg)
75 struct hda_codec *codec = hw->private_data;
76 void __user *argp = (void __user *)arg;
79 case HDA_IOCTL_PVERSION:
80 return put_user(HDA_HWDEP_VERSION, (int __user *)argp);
81 case HDA_IOCTL_VERB_WRITE:
82 return verb_write_ioctl(codec, argp);
83 case HDA_IOCTL_GET_WCAP:
84 return get_wcap_ioctl(codec, argp);
90 static int hda_hwdep_ioctl_compat(struct snd_hwdep *hw, struct file *file,
91 unsigned int cmd, unsigned long arg)
93 return hda_hwdep_ioctl(hw, file, cmd, (unsigned long)compat_ptr(arg));
97 static int hda_hwdep_open(struct snd_hwdep *hw, struct file *file)
99 #ifndef CONFIG_SND_DEBUG_VERBOSE
100 if (!capable(CAP_SYS_RAWIO))
106 static void clear_hwdep_elements(struct hda_codec *codec)
110 /* clear init verbs */
111 snd_array_free(&codec->init_verbs);
113 for (i = 0; i < codec->hints.used; i++) {
114 struct hda_hint *hint = snd_array_elem(&codec->hints, i);
115 kfree(hint->key); /* we don't need to free hint->val */
117 snd_array_free(&codec->hints);
118 snd_array_free(&codec->user_pins);
121 static void hwdep_free(struct snd_hwdep *hwdep)
123 clear_hwdep_elements(hwdep->private_data);
126 int /*__devinit*/ snd_hda_create_hwdep(struct hda_codec *codec)
129 struct snd_hwdep *hwdep;
132 sprintf(hwname, "HDA Codec %d", codec->addr);
133 err = snd_hwdep_new(codec->bus->card, hwname, codec->addr, &hwdep);
136 codec->hwdep = hwdep;
137 sprintf(hwdep->name, "HDA Codec %d", codec->addr);
138 hwdep->iface = SNDRV_HWDEP_IFACE_HDA;
139 hwdep->private_data = codec;
140 hwdep->private_free = hwdep_free;
141 hwdep->exclusive = 1;
143 hwdep->ops.open = hda_hwdep_open;
144 hwdep->ops.ioctl = hda_hwdep_ioctl;
146 hwdep->ops.ioctl_compat = hda_hwdep_ioctl_compat;
149 snd_array_init(&codec->init_verbs, sizeof(struct hda_verb), 32);
150 snd_array_init(&codec->hints, sizeof(struct hda_hint), 32);
151 snd_array_init(&codec->user_pins, sizeof(struct hda_pincfg), 16);
156 #ifdef CONFIG_SND_HDA_RECONFIG
162 static int clear_codec(struct hda_codec *codec)
166 err = snd_hda_codec_reset(codec);
168 snd_printk(KERN_ERR "The codec is being used, can't free.\n");
171 clear_hwdep_elements(codec);
175 static int reconfig_codec(struct hda_codec *codec)
179 snd_hda_power_up(codec);
180 snd_printk(KERN_INFO "hda-codec: reconfiguring\n");
181 err = snd_hda_codec_reset(codec);
184 "The codec is being used, can't reconfigure.\n");
187 err = snd_hda_codec_configure(codec);
191 err = snd_hda_codec_build_pcms(codec);
195 err = snd_hda_codec_build_controls(codec);
198 err = snd_card_register(codec->bus->card);
200 snd_hda_power_down(codec);
205 * allocate a string at most len chars, and remove the trailing EOL
207 static char *kstrndup_noeol(const char *src, size_t len)
209 char *s = kstrndup(src, len, GFP_KERNEL);
219 #define CODEC_INFO_SHOW(type) \
220 static ssize_t type##_show(struct device *dev, \
221 struct device_attribute *attr, \
224 struct snd_hwdep *hwdep = dev_get_drvdata(dev); \
225 struct hda_codec *codec = hwdep->private_data; \
226 return sprintf(buf, "0x%x\n", codec->type); \
229 #define CODEC_INFO_STR_SHOW(type) \
230 static ssize_t type##_show(struct device *dev, \
231 struct device_attribute *attr, \
234 struct snd_hwdep *hwdep = dev_get_drvdata(dev); \
235 struct hda_codec *codec = hwdep->private_data; \
236 return sprintf(buf, "%s\n", \
237 codec->type ? codec->type : ""); \
240 CODEC_INFO_SHOW(vendor_id);
241 CODEC_INFO_SHOW(subsystem_id);
242 CODEC_INFO_SHOW(revision_id);
243 CODEC_INFO_SHOW(afg);
244 CODEC_INFO_SHOW(mfg);
245 CODEC_INFO_STR_SHOW(vendor_name);
246 CODEC_INFO_STR_SHOW(chip_name);
247 CODEC_INFO_STR_SHOW(modelname);
249 #define CODEC_INFO_STORE(type) \
250 static ssize_t type##_store(struct device *dev, \
251 struct device_attribute *attr, \
252 const char *buf, size_t count) \
254 struct snd_hwdep *hwdep = dev_get_drvdata(dev); \
255 struct hda_codec *codec = hwdep->private_data; \
257 codec->type = simple_strtoul(buf, &after, 0); \
261 #define CODEC_INFO_STR_STORE(type) \
262 static ssize_t type##_store(struct device *dev, \
263 struct device_attribute *attr, \
264 const char *buf, size_t count) \
266 struct snd_hwdep *hwdep = dev_get_drvdata(dev); \
267 struct hda_codec *codec = hwdep->private_data; \
268 char *s = kstrndup_noeol(buf, 64); \
271 kfree(codec->type); \
276 CODEC_INFO_STORE(vendor_id);
277 CODEC_INFO_STORE(subsystem_id);
278 CODEC_INFO_STORE(revision_id);
279 CODEC_INFO_STR_STORE(vendor_name);
280 CODEC_INFO_STR_STORE(chip_name);
281 CODEC_INFO_STR_STORE(modelname);
283 #define CODEC_ACTION_STORE(type) \
284 static ssize_t type##_store(struct device *dev, \
285 struct device_attribute *attr, \
286 const char *buf, size_t count) \
288 struct snd_hwdep *hwdep = dev_get_drvdata(dev); \
289 struct hda_codec *codec = hwdep->private_data; \
292 err = type##_codec(codec); \
293 return err < 0 ? err : count; \
296 CODEC_ACTION_STORE(reconfig);
297 CODEC_ACTION_STORE(clear);
299 static ssize_t init_verbs_show(struct device *dev,
300 struct device_attribute *attr,
303 struct snd_hwdep *hwdep = dev_get_drvdata(dev);
304 struct hda_codec *codec = hwdep->private_data;
306 for (i = 0; i < codec->init_verbs.used; i++) {
307 struct hda_verb *v = snd_array_elem(&codec->init_verbs, i);
308 len += snprintf(buf + len, PAGE_SIZE - len,
309 "0x%02x 0x%03x 0x%04x\n",
310 v->nid, v->verb, v->param);
315 static ssize_t init_verbs_store(struct device *dev,
316 struct device_attribute *attr,
317 const char *buf, size_t count)
319 struct snd_hwdep *hwdep = dev_get_drvdata(dev);
320 struct hda_codec *codec = hwdep->private_data;
322 int nid, verb, param;
324 if (sscanf(buf, "%i %i %i", &nid, &verb, ¶m) != 3)
328 v = snd_array_new(&codec->init_verbs);
337 static ssize_t hints_show(struct device *dev,
338 struct device_attribute *attr,
341 struct snd_hwdep *hwdep = dev_get_drvdata(dev);
342 struct hda_codec *codec = hwdep->private_data;
344 for (i = 0; i < codec->hints.used; i++) {
345 struct hda_hint *hint = snd_array_elem(&codec->hints, i);
346 len += snprintf(buf + len, PAGE_SIZE - len,
347 "%s = %s\n", hint->key, hint->val);
352 static struct hda_hint *get_hint(struct hda_codec *codec, const char *key)
356 for (i = 0; i < codec->hints.used; i++) {
357 struct hda_hint *hint = snd_array_elem(&codec->hints, i);
358 if (!strcmp(hint->key, key))
364 static void remove_trail_spaces(char *str)
369 p = str + strlen(str) - 1;
370 for (; isspace(*p); p--) {
377 #define MAX_HINTS 1024
379 static ssize_t hints_store(struct device *dev,
380 struct device_attribute *attr,
381 const char *buf, size_t count)
383 struct snd_hwdep *hwdep = dev_get_drvdata(dev);
384 struct hda_codec *codec = hwdep->private_data;
386 struct hda_hint *hint;
388 while (isspace(*buf))
390 if (!*buf || *buf == '#' || *buf == '\n')
394 key = kstrndup_noeol(buf, 1024);
397 /* extract key and val */
398 val = strchr(key, '=');
404 while (isspace(*val))
406 remove_trail_spaces(key);
407 remove_trail_spaces(val);
408 hint = get_hint(codec, key);
416 /* allocate a new hint entry */
417 if (codec->hints.used >= MAX_HINTS)
420 hint = snd_array_new(&codec->hints);
430 static ssize_t pin_configs_show(struct hda_codec *codec,
431 struct snd_array *list,
435 for (i = 0; i < list->used; i++) {
436 struct hda_pincfg *pin = snd_array_elem(list, i);
437 len += sprintf(buf + len, "0x%02x 0x%08x\n",
443 static ssize_t init_pin_configs_show(struct device *dev,
444 struct device_attribute *attr,
447 struct snd_hwdep *hwdep = dev_get_drvdata(dev);
448 struct hda_codec *codec = hwdep->private_data;
449 return pin_configs_show(codec, &codec->init_pins, buf);
452 static ssize_t user_pin_configs_show(struct device *dev,
453 struct device_attribute *attr,
456 struct snd_hwdep *hwdep = dev_get_drvdata(dev);
457 struct hda_codec *codec = hwdep->private_data;
458 return pin_configs_show(codec, &codec->user_pins, buf);
461 static ssize_t driver_pin_configs_show(struct device *dev,
462 struct device_attribute *attr,
465 struct snd_hwdep *hwdep = dev_get_drvdata(dev);
466 struct hda_codec *codec = hwdep->private_data;
467 return pin_configs_show(codec, &codec->driver_pins, buf);
470 #define MAX_PIN_CONFIGS 32
472 static ssize_t user_pin_configs_store(struct device *dev,
473 struct device_attribute *attr,
474 const char *buf, size_t count)
476 struct snd_hwdep *hwdep = dev_get_drvdata(dev);
477 struct hda_codec *codec = hwdep->private_data;
481 if (sscanf(buf, "%i %i", &nid, &cfg) != 2)
485 err = snd_hda_add_pincfg(codec, &codec->user_pins, nid, cfg);
491 #define CODEC_ATTR_RW(type) \
492 __ATTR(type, 0644, type##_show, type##_store)
493 #define CODEC_ATTR_RO(type) \
495 #define CODEC_ATTR_WO(type) \
496 __ATTR(type, 0200, NULL, type##_store)
498 static struct device_attribute codec_attrs[] = {
499 CODEC_ATTR_RW(vendor_id),
500 CODEC_ATTR_RW(subsystem_id),
501 CODEC_ATTR_RW(revision_id),
504 CODEC_ATTR_RW(vendor_name),
505 CODEC_ATTR_RW(chip_name),
506 CODEC_ATTR_RW(modelname),
507 CODEC_ATTR_RW(init_verbs),
508 CODEC_ATTR_RW(hints),
509 CODEC_ATTR_RO(init_pin_configs),
510 CODEC_ATTR_RW(user_pin_configs),
511 CODEC_ATTR_RO(driver_pin_configs),
512 CODEC_ATTR_WO(reconfig),
513 CODEC_ATTR_WO(clear),
517 * create sysfs files on hwdep directory
519 int snd_hda_hwdep_add_sysfs(struct hda_codec *codec)
521 struct snd_hwdep *hwdep = codec->hwdep;
524 for (i = 0; i < ARRAY_SIZE(codec_attrs); i++)
525 snd_add_device_sysfs_file(SNDRV_DEVICE_TYPE_HWDEP, hwdep->card,
526 hwdep->device, &codec_attrs[i]);
531 * Look for hint string
533 const char *snd_hda_get_hint(struct hda_codec *codec, const char *key)
535 struct hda_hint *hint = get_hint(codec, key);
536 return hint ? hint->val : NULL;
538 EXPORT_SYMBOL_HDA(snd_hda_get_hint);
540 int snd_hda_get_bool_hint(struct hda_codec *codec, const char *key)
542 const char *p = snd_hda_get_hint(codec, key);
545 switch (toupper(*p)) {
553 EXPORT_SYMBOL_HDA(snd_hda_get_bool_hint);
555 #endif /* CONFIG_SND_HDA_RECONFIG */