Changeset 410
- Timestamp:
- Jan 25, 2009, 11:51:57 PM (16 years ago)
- Location:
- GPL/branches/uniaud32-2.0
- Files:
-
- 94 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/core/info.c ¶
r399 r410 682 682 683 683 /* 684 * called on card->id change 685 */ 686 void snd_info_card_id_change(struct snd_card *card) 687 { 688 mutex_lock(&info_mutex); 689 if (card->proc_root_link) { 690 snd_remove_proc_entry(snd_proc_root, card->proc_root_link); 691 card->proc_root_link = NULL; 692 } 693 #ifndef TARGET_OS2 694 if (strcmp(card->id, card->proc_root->name)) 695 card->proc_root_link = proc_symlink(card->id, 696 snd_proc_root, 697 card->proc_root->name); 698 #endif 699 mutex_unlock(&info_mutex); 700 } 701 702 /* 684 703 * de-register the card proc file 685 704 * called from init.c -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/core/init.c ¶
r402 r410 138 138 139 139 /** 140 * snd_card_ new- create and initialize a soundcard structure140 * snd_card_create - create and initialize a soundcard structure 141 141 * @idx: card index (address) [0 ... (SNDRV_CARDS-1)] 142 142 * @xid: card identification (ASCII string) 143 143 * @module: top level module for locking 144 144 * @extra_size: allocate this extra size after the main soundcard structure 145 * @card_ret: the pointer to store the created card instance 145 146 * 146 147 * Creates and initializes a soundcard structure. 147 148 * 148 * Returns kmallocated snd_card structure. Creates the ALSA control interface 149 * (which is blocked until snd_card_register function is called). 149 * The function allocates snd_card instance via kzalloc with the given 150 * space for the driver to use freely. The allocated struct is stored 151 * in the given card_ret pointer. 152 * 153 * Returns zero if successful or a negative error code. 150 154 */ 151 struct snd_card *snd_card_new(int idx, const char *xid, 152 struct module *module, int extra_size) 155 int snd_card_create(int idx, const char *xid, 156 struct module *module, int extra_size, 157 struct snd_card **card_ret) 153 158 { 154 159 struct snd_card *card; 155 160 int err, idx2; 161 162 if (snd_BUG_ON(!card_ret)) 163 return -EINVAL; 164 *card_ret = NULL; 156 165 157 166 if (extra_size < 0) 158 167 extra_size = 0; 159 168 card = kzalloc(sizeof(*card) + extra_size, GFP_KERNEL); 160 161 if (card == NULL) 162 return NULL; 169 if (!card) 170 return -ENOMEM; 163 171 if (xid) { 164 if (!snd_info_check_reserved_words(xid)) 172 if (!snd_info_check_reserved_words(xid)) { 173 snd_printk(KERN_ERR 174 "given id string '%s' is reserved.\n", xid); 175 err = -EBUSY; 165 176 goto __error; 177 } 166 178 strlcpy(card->id, xid, sizeof(card->id)); 167 179 } … … 220 232 /* the control interface cannot be accessed from the user space until */ 221 233 /* snd_cards_bitmask and snd_cards are set with snd_card_register */ 222 if ((err = snd_ctl_create(card)) < 0) { 223 snd_printd("unable to register control minors\n"); 234 err = snd_ctl_create(card); 235 if (err < 0) { 236 snd_printk(KERN_ERR "unable to register control minors\n"); 224 237 goto __error; 225 238 } 226 if ((err = snd_info_card_create(card)) < 0) { 227 snd_printd("unable to create card info\n"); 239 err = snd_info_card_create(card); 240 if (err < 0) { 241 snd_printk(KERN_ERR "unable to create card info\n"); 228 242 goto __error_ctl; 229 243 } 230 244 if (extra_size > 0) 231 245 card->private_data = (char *)card + sizeof(struct snd_card); 232 return card; 246 *card_ret = card; 247 return 0; 233 248 234 249 __error_ctl: … … 236 251 __error: 237 252 kfree(card); 238 return NULL; 239 } 240 241 EXPORT_SYMBOL(snd_card_new); 253 return err; 254 } 255 EXPORT_SYMBOL(snd_card_create); 242 256 243 257 /* return non-zero if a card is already locked */ … … 573 587 } 574 588 589 #ifndef CONFIG_SYSFS_DEPRECATED 590 static ssize_t 591 card_id_show_attr(struct device *dev, 592 struct device_attribute *attr, char *buf) 593 { 594 struct snd_card *card = dev_get_drvdata(dev); 595 return snprintf(buf, PAGE_SIZE, "%s\n", card ? card->id : "(null)"); 596 } 597 598 static ssize_t 599 card_id_store_attr(struct device *dev, struct device_attribute *attr, 600 const char *buf, size_t count) 601 { 602 struct snd_card *card = dev_get_drvdata(dev); 603 char buf1[sizeof(card->id)]; 604 size_t copy = count > sizeof(card->id) - 1 ? 605 sizeof(card->id) - 1 : count; 606 size_t idx; 607 int c; 608 609 for (idx = 0; idx < copy; idx++) { 610 c = buf[idx]; 611 if (!isalnum(c) && c != '_' && c != '-') 612 return -EINVAL; 613 } 614 memcpy(buf1, buf, copy); 615 buf1[copy] = '\0'; 616 mutex_lock(&snd_card_mutex); 617 if (!snd_info_check_reserved_words(buf1)) { 618 __exist: 619 mutex_unlock(&snd_card_mutex); 620 return -EEXIST; 621 } 622 for (idx = 0; idx < snd_ecards_limit; idx++) { 623 if (snd_cards[idx] && !strcmp(snd_cards[idx]->id, buf1)) 624 goto __exist; 625 } 626 strcpy(card->id, buf1); 627 snd_info_card_id_change(card); 628 mutex_unlock(&snd_card_mutex); 629 630 return count; 631 } 632 633 static struct device_attribute card_id_attrs = 634 __ATTR(id, S_IRUGO | S_IWUSR, card_id_show_attr, card_id_store_attr); 635 636 static ssize_t 637 card_number_show_attr(struct device *dev, 638 struct device_attribute *attr, char *buf) 639 { 640 struct snd_card *card = dev_get_drvdata(dev); 641 return snprintf(buf, PAGE_SIZE, "%i\n", card ? card->number : -1); 642 } 643 644 static struct device_attribute card_number_attrs = 645 __ATTR(number, S_IRUGO, card_number_show_attr, NULL); 646 #endif /* CONFIG_SYSFS_DEPRECATED */ 647 575 648 /** 576 649 * snd_card_register - register the soundcard … … 593 666 if (!card->card_dev) { 594 667 card->card_dev = device_create(sound_class, card->dev, 595 MKDEV(0, 0), NULL,668 MKDEV(0, 0), card, 596 669 "card%i", card->number); 597 670 if (IS_ERR(card->card_dev)) … … 615 688 if (snd_mixer_oss_notify_callback) 616 689 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_REGISTER); 690 #endif 691 #ifndef CONFIG_SYSFS_DEPRECATED 692 if (card->card_dev) { 693 err = device_create_file(card->card_dev, &card_id_attrs); 694 if (err < 0) 695 return err; 696 err = device_create_file(card->card_dev, &card_number_attrs); 697 if (err < 0) 698 return err; 699 } 617 700 #endif 618 701 return 0; -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/core/rawmidi.c ¶
r402 r410 156 156 return; 157 157 if (up) { 158 tasklet_ hi_schedule(&substream->runtime->tasklet);158 tasklet_schedule(&substream->runtime->tasklet); 159 159 } else { 160 160 tasklet_kill(&substream->runtime->tasklet); … … 929 929 if (result > 0) { 930 930 if (runtime->event) 931 tasklet_ hi_schedule(&runtime->tasklet);931 tasklet_schedule(&runtime->tasklet); 932 932 else if (snd_rawmidi_ready(substream)) 933 933 wake_up(&runtime->sleep); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/core/rtctimer.c ¶
r399 r410 119 119 static void rtctimer_interrupt(void *private_data) 120 120 { 121 tasklet_ hi_schedule(private_data);121 tasklet_schedule(private_data); 122 122 } 123 123 -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/core/sound.c ¶
r399 r410 161 161 old_fops = file->f_op; 162 162 file->f_op = fops_get(mptr->f_ops); 163 if (file->f_op == NULL) { 164 file->f_op = old_fops; 165 return -ENODEV; 166 } 163 167 if (file->f_op->open) 164 168 err = file->f_op->open(inode, file); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/core/timer.c ¶
r402 r410 748 748 749 749 if (use_tasklet) 750 tasklet_ hi_schedule(&timer->task_queue);750 tasklet_schedule(&timer->task_queue); 751 751 } 752 752 -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/core/vmaster.c ¶
r399 r410 51 51 struct link_ctl_info info; 52 52 int vals[2]; /* current values */ 53 unsigned int flags; 53 54 struct snd_kcontrol slave; /* the copy of original control entry */ 54 55 }; 55 56 57 static int slave_update(struct link_slave *slave) 58 { 59 struct snd_ctl_elem_value *uctl; 60 int err, ch; 61 62 uctl = kmalloc(sizeof(*uctl), GFP_KERNEL); 63 if (!uctl) 64 return -ENOMEM; 65 uctl->id = slave->slave.id; 66 err = slave->slave.get(&slave->slave, uctl); 67 for (ch = 0; ch < slave->info.count; ch++) 68 slave->vals[ch] = uctl->value.integer.value[ch]; 69 kfree(uctl); 70 return 0; 71 } 72 56 73 /* get the slave ctl info and save the initial values */ 57 74 static int slave_init(struct link_slave *slave) 58 75 { 59 76 struct snd_ctl_elem_info *uinfo; 60 struct snd_ctl_elem_value *uctl; 61 int err, ch; 62 63 if (slave->info.count) 64 return 0; /* already initialized */ 77 int err; 78 79 if (slave->info.count) { 80 /* already initialized */ 81 if (slave->flags & SND_CTL_SLAVE_NEED_UPDATE) 82 return slave_update(slave); 83 return 0; 84 } 65 85 66 86 uinfo = kmalloc(sizeof(*uinfo), GFP_KERNEL); … … 86 106 kfree(uinfo); 87 107 88 uctl = kmalloc(sizeof(*uctl), GFP_KERNEL); 89 if (!uctl) 90 return -ENOMEM; 91 uctl->id = slave->slave.id; 92 err = slave->slave.get(&slave->slave, uctl); 93 for (ch = 0; ch < slave->info.count; ch++) 94 slave->vals[ch] = uctl->value.integer.value[ch]; 95 kfree(uctl); 96 return 0; 108 return slave_update(slave); 97 109 } 98 110 … … 230 242 * - master can only attenuate the volume, no gain 231 243 */ 232 int snd_ctl_add_slave(struct snd_kcontrol *master, struct snd_kcontrol *slave) 244 int _snd_ctl_add_slave(struct snd_kcontrol *master, struct snd_kcontrol *slave, 245 unsigned int flags) 233 246 { 234 247 struct link_master *master_link = snd_kcontrol_chip(master); … … 242 255 memcpy(srec->slave.vd, slave->vd, slave->count * sizeof(*slave->vd)); 243 256 srec->master = master_link; 257 srec->flags = flags; 244 258 245 259 /* override callbacks */ … … 255 269 return 0; 256 270 } 257 258 EXPORT_SYMBOL(snd_ctl_add_slave); 271 EXPORT_SYMBOL(_snd_ctl_add_slave); 259 272 260 273 /* … … 368 381 return kctl; 369 382 } 370 371 383 EXPORT_SYMBOL(snd_ctl_make_virtual_master); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/drivers/dummy.c ¶
r399 r410 589 589 int dev = devptr->id; 590 590 591 card = snd_card_new(index[dev], id[dev], THIS_MODULE,592 sizeof(struct snd_dummy));593 if ( card == NULL)594 return -ENOMEM;591 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 592 sizeof(struct snd_dummy), &card); 593 if (err < 0) 594 return err; 595 595 dummy = card->private_data; 596 596 dummy->card = card; -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/drivers/mpu401/mpu401.c ¶
r399 r410 89 89 90 90 *rcard = NULL; 91 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);92 if ( card == NULL)93 return -ENOMEM;91 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 92 if (err < 0) 93 return err; 94 94 strcpy(card->driver, "MPU-401 UART"); 95 95 strcpy(card->shortname, card->driver); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/drivers/mtpav.c ¶
r399 r410 697 697 struct mtpav *mtp_card; 698 698 699 card = snd_card_new(index, id, THIS_MODULE, sizeof(*mtp_card));700 if ( ! card)701 return -ENOMEM;699 err = snd_card_create(index, id, THIS_MODULE, sizeof(*mtp_card), &card); 700 if (err < 0) 701 return err; 702 702 703 703 mtp_card = card->private_data; -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/drivers/serial-u16550.c ¶
r305 r410 937 937 } 938 938 939 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);940 if ( card == NULL)941 return -ENOMEM;939 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 940 if (err < 0) 941 return err; 942 942 943 943 strcpy(card->driver, "Serial"); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/drivers/virmidi.c ¶
r305 r410 91 91 int dev = devptr->id; 92 92 93 card = snd_card_new(index[dev], id[dev], THIS_MODULE,94 sizeof(struct snd_card_virmidi));95 if ( card == NULL)96 return -ENOMEM;93 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 94 sizeof(struct snd_card_virmidi), &card); 95 if (err < 0) 96 return err; 97 97 vmidi = (struct snd_card_virmidi *)card->private_data; 98 98 vmidi->card = card; -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/include/sound/compat_22.h ¶
r305 r410 56 56 #endif 57 57 58 #define tasklet_hi_schedule(t) queue_task((t), &tq_immediate); \ 59 mark_bh(IMMEDIATE_BH) 60 61 #define tasklet_init(t,f,d) (t)->next = NULL; \ 62 (t)->sync = 0; \ 63 (t)->routine = (void (*)(void *))(f); \ 64 (t)->data = (void *)(d) 65 66 #define tasklet_struct tq_struct 58 /* this is identical with tq_struct but the "routine" field is renamed to "func" */ 59 struct tasklet_struct { 60 struct tasklet_struct *next; /* linked list of active bh's */ 61 unsigned long sync; /* must be initialized to zero */ 62 void (*func)(void *); /* function to call */ 63 void *data; /* argument to function */ 64 }; 65 66 #define tasklet_schedule(t) do { \ 67 queue_task((struct tq_struct *)(t), &tq_immediate);\ 68 mark_bh(IMMEDIATE_BH); \ 69 } while (0) 70 71 #define tasklet_hi_schedule(t) tasklet_schedule(t) 72 73 #define tasklet_init(t,f,d) do { \ 74 (t)->next = NULL; \ 75 (t)->sync = 0; \ 76 (t)->func = (void (*)(void *))(f); \ 77 (t)->data = (void *)(d); \ 78 } while (0) 67 79 68 80 #define tasklet_unlock_wait(t) while (test_bit(0, &(t)->sync)) { } 81 #define tasklet_kill(t) tasklet_unlock_wait(t) /* FIXME: world is not perfect... */ 69 82 70 83 #define rwlock_init(x) do { *(x) = RW_LOCK_UNLOCKED; } while(0) -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/include/sound/config.h ¶
r399 r410 40 40 #endif 41 41 42 #ifndef __deprecated 43 # define __deprecated /* unimplemented */ 44 #endif 45 42 46 typedef unsigned int fmode_t; 43 47 … … 223 227 int snd_compat_schedule_work(struct work_struct *work); 224 228 #define schedule_work(w) snd_compat_schedule_work(w) 229 void snd_compat_flush_workqueue(struct workqueue_struct *wq); 230 #define flush_workqueue(wq) snd_compat_flush_workqueue((wq)); 225 231 226 232 /* Name change */ … … 309 315 #define CONFIG_HAVE_PCI_DEV_PRESENT 310 316 #define CONFIG_SND_DEBUG_DETECT 317 #define CONFIG_SND_DEBUG_VERBOSE 311 318 #define CONFIG_SYSFS_DEPRECATED 312 319 #undef interrupt -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/include/sound/control.h ¶
r398 r410 179 179 struct snd_kcontrol *snd_ctl_make_virtual_master(char *name, 180 180 const unsigned int *tlv); 181 int snd_ctl_add_slave(struct snd_kcontrol *master, struct snd_kcontrol *slave); 182 181 int _snd_ctl_add_slave(struct snd_kcontrol *master, struct snd_kcontrol *slave, 182 unsigned int flags); 183 /* optional flags for slave */ 184 #define SND_CTL_SLAVE_NEED_UPDATE (1 << 0) 185 186 static inline int 187 snd_ctl_add_slave(struct snd_kcontrol *master, struct snd_kcontrol *slave) 188 { 189 return _snd_ctl_add_slave(master, slave, 0); 190 } 191 192 static inline int 193 snd_ctl_add_slave_uncached(struct snd_kcontrol *master, 194 struct snd_kcontrol *slave) 195 { 196 return _snd_ctl_add_slave(master, slave, SND_CTL_SLAVE_NEED_UPDATE); 197 } 198 183 199 #endif /* __SOUND_CONTROL_H */ -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/include/sound/core.h ¶
r402 r410 320 320 #endif 321 321 322 int snd_card_create(int idx, const char *id, 323 struct module *module, int extra_size, 324 struct snd_card **card_ret); 325 326 static inline __deprecated 322 327 struct snd_card *snd_card_new(int idx, const char *id, 323 struct module *module, int extra_size); 328 struct module *module, int extra_size) 329 { 330 struct snd_card *card; 331 if (snd_card_create(idx, id, module, extra_size, &card) < 0) 332 return NULL; 333 return card; 334 } 335 324 336 int snd_card_disconnect(struct snd_card *card); 325 337 int snd_card_free(struct snd_card *card); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/include/sound/info.h ¶
r305 r410 41 41 42 42 struct snd_info_entry_text { 43 void (*read) (struct snd_info_entry *entry, struct snd_info_buffer *buffer); 44 void (*write) (struct snd_info_entry *entry, struct snd_info_buffer *buffer); 43 void (*read)(struct snd_info_entry *entry, 44 struct snd_info_buffer *buffer); 45 void (*write)(struct snd_info_entry *entry, 46 struct snd_info_buffer *buffer); 45 47 }; 46 48 47 49 struct snd_info_entry_ops { 48 int (*open) (struct snd_info_entry *entry, 49 unsigned short mode, void **file_private_data); 50 int (*release) (struct snd_info_entry * entry, 51 unsigned short mode, void *file_private_data); 52 long (*read) (struct snd_info_entry *entry, void *file_private_data, 53 struct file * file, char __user *buf, 50 int (*open)(struct snd_info_entry *entry, 51 unsigned short mode, void **file_private_data); 52 int (*release)(struct snd_info_entry *entry, 53 unsigned short mode, void *file_private_data); 54 long (*read)(struct snd_info_entry *entry, void *file_private_data, 55 struct file *file, char __user *buf, 56 unsigned long count, unsigned long pos); 57 long (*write)(struct snd_info_entry *entry, void *file_private_data, 58 struct file *file, const char __user *buf, 54 59 unsigned long count, unsigned long pos); 55 long (*write) (struct snd_info_entry *entry, void *file_private_data, 56 struct file * file, const char __user *buf, 57 unsigned long count, unsigned long pos); 58 long long (*llseek) (struct snd_info_entry *entry, void *file_private_data, 59 struct file * file, long long offset, int orig); 60 unsigned int (*poll) (struct snd_info_entry *entry, void *file_private_data, 61 struct file * file, poll_table * wait); 62 int (*ioctl) (struct snd_info_entry *entry, void *file_private_data, 63 struct file * file, unsigned int cmd, unsigned long arg); 64 int (*mmap) (struct snd_info_entry *entry, void *file_private_data, 65 struct inode * inode, struct file * file, 66 struct vm_area_struct * vma); 60 long long (*llseek)(struct snd_info_entry *entry, 61 void *file_private_data, struct file *file, 62 long long offset, int orig); 63 unsigned int(*poll)(struct snd_info_entry *entry, 64 void *file_private_data, struct file *file, 65 poll_table *wait); 66 int (*ioctl)(struct snd_info_entry *entry, void *file_private_data, 67 struct file *file, unsigned int cmd, unsigned long arg); 68 int (*mmap)(struct snd_info_entry *entry, void *file_private_data, 69 struct inode *inode, struct file *file, 70 struct vm_area_struct *vma); 67 71 }; 68 72 … … 108 112 109 113 #ifndef TARGET_OS2 110 int snd_iprintf(struct snd_info_buffer * buffer, char *fmt,...) __attribute__ ((format (printf, 2, 3))); 114 int snd_iprintf(struct snd_info_buffer *buffer, char *fmt, ...) \ 115 __attribute__ ((format (printf, 2, 3))); 111 116 #else 112 117 int snd_iprintf(struct snd_info_buffer * buffer, char *fmt,...); … … 115 120 int snd_info_done(void); 116 121 117 int snd_info_get_line(struct snd_info_buffer * 122 int snd_info_get_line(struct snd_info_buffer *buffer, char *line, int len); 118 123 char *snd_info_get_str(char *dest, char *src, int len); 119 struct snd_info_entry *snd_info_create_module_entry(struct module * 124 struct snd_info_entry *snd_info_create_module_entry(struct module *module, 120 125 const char *name, 121 struct snd_info_entry * 122 struct snd_info_entry *snd_info_create_card_entry(struct snd_card * 126 struct snd_info_entry *parent); 127 struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card, 123 128 const char *name, 124 struct snd_info_entry * parent); 125 void snd_info_free_entry(struct snd_info_entry * entry); 126 int snd_info_store_text(struct snd_info_entry * entry); 127 int snd_info_restore_text(struct snd_info_entry * entry); 128 129 int snd_info_card_create(struct snd_card * card); 130 int snd_info_card_register(struct snd_card * card); 131 int snd_info_card_free(struct snd_card * card); 132 void snd_info_card_disconnect(struct snd_card * card); 133 int snd_info_register(struct snd_info_entry * entry); 129 struct snd_info_entry *parent); 130 void snd_info_free_entry(struct snd_info_entry *entry); 131 int snd_info_store_text(struct snd_info_entry *entry); 132 int snd_info_restore_text(struct snd_info_entry *entry); 133 134 int snd_info_card_create(struct snd_card *card); 135 int snd_info_card_register(struct snd_card *card); 136 int snd_info_card_free(struct snd_card *card); 137 void snd_info_card_disconnect(struct snd_card *card); 138 void snd_info_card_id_change(struct snd_card *card); 139 int snd_info_register(struct snd_info_entry *entry); 134 140 135 141 /* for card drivers */ 136 int snd_card_proc_new(struct snd_card *card, const char *name, struct snd_info_entry **entryp); 142 int snd_card_proc_new(struct snd_card *card, const char *name, 143 struct snd_info_entry **entryp); 137 144 138 145 static inline void snd_info_set_text_ops(struct snd_info_entry *entry, 139 140 146 void *private_data, 147 void (*read)(struct snd_info_entry *, struct snd_info_buffer *)) 141 148 { 142 149 entry->private_data = private_data; … … 151 158 #define snd_oss_root NULL 152 159 153 static inline int snd_iprintf(struct snd_info_buffer * buffer, char *fmt,...) { return 0; }160 static inline int snd_iprintf(struct snd_info_buffer *buffer, char *fmt, ...) { return 0; } 154 161 static inline int snd_info_init(void) { return 0; } 155 162 static inline int snd_info_done(void) { return 0; } 156 163 157 static inline int snd_info_get_line(struct snd_info_buffer * 164 static inline int snd_info_get_line(struct snd_info_buffer *buffer, char *line, int len) { return 0; } 158 165 static inline char *snd_info_get_str(char *dest, char *src, int len) { return NULL; } 159 static inline struct snd_info_entry *snd_info_create_module_entry(struct module * module, const char *name, struct snd_info_entry * parent) { return NULL; } 160 static inline struct snd_info_entry *snd_info_create_card_entry(struct snd_card * card, const char *name, struct snd_info_entry * parent) { return NULL; } 161 static inline void snd_info_free_entry(struct snd_info_entry * entry) { ; } 162 163 static inline int snd_info_card_create(struct snd_card * card) { return 0; } 164 static inline int snd_info_card_register(struct snd_card * card) { return 0; } 165 static inline int snd_info_card_free(struct snd_card * card) { return 0; } 166 static inline void snd_info_card_disconnect(struct snd_card * card) { } 167 static inline int snd_info_register(struct snd_info_entry * entry) { return 0; } 166 static inline struct snd_info_entry *snd_info_create_module_entry(struct module *module, const char *name, struct snd_info_entry *parent) { return NULL; } 167 static inline struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card, const char *name, struct snd_info_entry *parent) { return NULL; } 168 static inline void snd_info_free_entry(struct snd_info_entry *entry) { ; } 169 170 static inline int snd_info_card_create(struct snd_card *card) { return 0; } 171 static inline int snd_info_card_register(struct snd_card *card) { return 0; } 172 static inline int snd_info_card_free(struct snd_card *card) { return 0; } 173 static inline void snd_info_card_disconnect(struct snd_card *card) { } 174 static inline void snd_info_card_id_change(struct snd_card *card) { } 175 static inline int snd_info_register(struct snd_info_entry *entry) { return 0; } 168 176 169 177 static inline int snd_card_proc_new(struct snd_card *card, const char *name, -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/include/sound/jack.h ¶
r401 r410 31 31 * Jack types which can be reported. These values are used as a 32 32 * bitmask. 33 * 34 * Note that this must be kept in sync with the lookup table in 35 * sound/core/jack.c. 33 36 */ 34 37 enum snd_jack_types { … … 37 40 SND_JACK_HEADSET = SND_JACK_HEADPHONE | SND_JACK_MICROPHONE, 38 41 SND_JACK_LINEOUT = 0x0004, 42 SND_JACK_MECHANICAL = 0x0008, /* If detected separately */ 43 SND_JACK_VIDEOOUT = 0x0010, 44 SND_JACK_AVOUT = SND_JACK_LINEOUT | SND_JACK_VIDEOOUT, 39 45 }; 40 46 -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/include/sound/soc-dapm.h ¶
r399 r410 77 77 { .id = snd_soc_dapm_mixer, .name = wname, .reg = wreg, .shift = wshift, \ 78 78 .invert = winvert, .kcontrols = wcontrols, .num_kcontrols = wncontrols} 79 #define SND_SOC_DAPM_MIXER_NAMED_CTL(wname, wreg, wshift, winvert, \ 80 wcontrols, wncontrols)\ 81 { .id = snd_soc_dapm_mixer_named_ctl, .name = wname, .reg = wreg, \ 82 .shift = wshift, .invert = winvert, .kcontrols = wcontrols, \ 83 .num_kcontrols = wncontrols} 79 84 #define SND_SOC_DAPM_MICBIAS(wname, wreg, wshift, winvert) \ 80 85 { .id = snd_soc_dapm_micbias, .name = wname, .reg = wreg, .shift = wshift, \ … … 86 91 { .id = snd_soc_dapm_mux, .name = wname, .reg = wreg, .shift = wshift, \ 87 92 .invert = winvert, .kcontrols = wcontrols, .num_kcontrols = 1} 93 #define SND_SOC_DAPM_VALUE_MUX(wname, wreg, wshift, winvert, wcontrols) \ 94 { .id = snd_soc_dapm_value_mux, .name = wname, .reg = wreg, \ 95 .shift = wshift, .invert = winvert, .kcontrols = wcontrols, \ 96 .num_kcontrols = 1} 88 97 89 98 /* path domain with event - event handler must return 0 for success */ … … 98 107 .invert = winvert, .kcontrols = wcontrols, .num_kcontrols = wncontrols, \ 99 108 .event = wevent, .event_flags = wflags} 109 #define SND_SOC_DAPM_MIXER_NAMED_CTL_E(wname, wreg, wshift, winvert, \ 110 wcontrols, wncontrols, wevent, wflags) \ 111 { .id = snd_soc_dapm_mixer, .name = wname, .reg = wreg, .shift = wshift, \ 112 .invert = winvert, .kcontrols = wcontrols, \ 113 .num_kcontrols = wncontrols, .event = wevent, .event_flags = wflags} 100 114 #define SND_SOC_DAPM_MICBIAS_E(wname, wreg, wshift, winvert, wevent, wflags) \ 101 115 { .id = snd_soc_dapm_micbias, .name = wname, .reg = wreg, .shift = wshift, \ … … 173 187 .put = snd_soc_dapm_put_enum_double, \ 174 188 .private_value = (unsigned long)&xenum } 189 #define SOC_DAPM_VALUE_ENUM(xname, xenum) \ 190 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ 191 .info = snd_soc_info_enum_double, \ 192 .get = snd_soc_dapm_get_value_enum_double, \ 193 .put = snd_soc_dapm_put_value_enum_double, \ 194 .private_value = (unsigned long)&xenum } 175 195 176 196 /* dapm stream operations */ … … 215 235 int snd_soc_dapm_put_enum_double(struct snd_kcontrol *kcontrol, 216 236 struct snd_ctl_elem_value *ucontrol); 237 int snd_soc_dapm_get_value_enum_double(struct snd_kcontrol *kcontrol, 238 struct snd_ctl_elem_value *ucontrol); 239 int snd_soc_dapm_put_value_enum_double(struct snd_kcontrol *kcontrol, 240 struct snd_ctl_elem_value *ucontrol); 217 241 int snd_soc_dapm_new_control(struct snd_soc_codec *codec, 218 242 const struct snd_soc_dapm_widget *widget); … … 237 261 238 262 /* dapm audio pin control and status */ 239 int snd_soc_dapm_enable_pin(struct snd_soc_codec *codec, c har *pin);240 int snd_soc_dapm_disable_pin(struct snd_soc_codec *codec, c har *pin);241 int snd_soc_dapm_nc_pin(struct snd_soc_codec *codec, c har *pin);242 int snd_soc_dapm_get_pin_status(struct snd_soc_codec *codec, c har *pin);263 int snd_soc_dapm_enable_pin(struct snd_soc_codec *codec, const char *pin); 264 int snd_soc_dapm_disable_pin(struct snd_soc_codec *codec, const char *pin); 265 int snd_soc_dapm_nc_pin(struct snd_soc_codec *codec, const char *pin); 266 int snd_soc_dapm_get_pin_status(struct snd_soc_codec *codec, const char *pin); 243 267 int snd_soc_dapm_sync(struct snd_soc_codec *codec); 244 268 … … 248 272 snd_soc_dapm_output, /* output pin */ 249 273 snd_soc_dapm_mux, /* selects 1 analog signal from many inputs */ 274 snd_soc_dapm_value_mux, /* selects 1 analog signal from many inputs */ 250 275 snd_soc_dapm_mixer, /* mixes several analog signals together */ 276 snd_soc_dapm_mixer_named_ctl, /* mixer with named controls */ 251 277 snd_soc_dapm_pga, /* programmable gain/attenuation (volume) */ 252 278 snd_soc_dapm_adc, /* analog to digital converter */ -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/include/sound/soc.h ¶
r402 r410 95 95 #define SOC_ENUM_SINGLE_EXT(xmax, xtexts) \ 96 96 { .max = xmax, .texts = xtexts } 97 #define SOC_VALUE_ENUM_DOUBLE(xreg, xshift_l, xshift_r, xmask, xmax, xtexts, xvalues) \ 98 { .reg = xreg, .shift_l = xshift_l, .shift_r = xshift_r, \ 99 .mask = xmask, .max = xmax, .texts = xtexts, .values = xvalues} 100 #define SOC_VALUE_ENUM_SINGLE(xreg, xshift, xmask, xmax, xtexts, xvalues) \ 101 SOC_VALUE_ENUM_DOUBLE(xreg, xshift, xshift, xmask, xmax, xtexts, xvalues) 97 102 #define SOC_ENUM(xname, xenum) \ 98 103 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname,\ 99 104 .info = snd_soc_info_enum_double, \ 100 105 .get = snd_soc_get_enum_double, .put = snd_soc_put_enum_double, \ 106 .private_value = (unsigned long)&xenum } 107 #define SOC_VALUE_ENUM(xname, xenum) \ 108 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname,\ 109 .info = snd_soc_info_enum_double, \ 110 .get = snd_soc_get_value_enum_double, \ 111 .put = snd_soc_put_value_enum_double, \ 101 112 .private_value = (unsigned long)&xenum } 102 113 #define SOC_SINGLE_EXT(xname, xreg, xshift, xmax, xinvert,\ … … 144 155 }; 145 156 146 /* 147 * Digital Audio Interface (DAI) types 148 */ 149 #define SND_SOC_DAI_AC97 0x1 150 #define SND_SOC_DAI_I2S 0x2 151 #define SND_SOC_DAI_PCM 0x4 152 #define SND_SOC_DAI_AC97_BUS 0x8 /* for custom i.e. non ac97_codec.c */ 153 154 /* 155 * DAI hardware audio formats 156 */ 157 #define SND_SOC_DAIFMT_I2S 0 /* I2S mode */ 158 #define SND_SOC_DAIFMT_RIGHT_J 1 /* Right justified mode */ 159 #define SND_SOC_DAIFMT_LEFT_J 2 /* Left Justified mode */ 160 #define SND_SOC_DAIFMT_DSP_A 3 /* L data msb after FRM or LRC */ 161 #define SND_SOC_DAIFMT_DSP_B 4 /* L data msb during FRM or LRC */ 162 #define SND_SOC_DAIFMT_AC97 5 /* AC97 */ 163 164 #define SND_SOC_DAIFMT_MSB SND_SOC_DAIFMT_LEFT_J 165 #define SND_SOC_DAIFMT_LSB SND_SOC_DAIFMT_RIGHT_J 166 167 /* 168 * DAI Gating 169 */ 170 #define SND_SOC_DAIFMT_CONT (0 << 4) /* continuous clock */ 171 #define SND_SOC_DAIFMT_GATED (1 << 4) /* clock is gated when not Tx/Rx */ 172 173 /* 174 * DAI Sync 175 * Synchronous LR (Left Right) clocks and Frame signals. 176 */ 177 #define SND_SOC_DAIFMT_SYNC (0 << 5) /* Tx FRM = Rx FRM */ 178 #define SND_SOC_DAIFMT_ASYNC (1 << 5) /* Tx FRM ~ Rx FRM */ 179 180 /* 181 * TDM 182 */ 183 #define SND_SOC_DAIFMT_TDM (1 << 6) 184 185 /* 186 * DAI hardware signal inversions 187 */ 188 #define SND_SOC_DAIFMT_NB_NF (0 << 8) /* normal bclk + frm */ 189 #define SND_SOC_DAIFMT_NB_IF (1 << 8) /* normal bclk + inv frm */ 190 #define SND_SOC_DAIFMT_IB_NF (2 << 8) /* invert bclk + nor frm */ 191 #define SND_SOC_DAIFMT_IB_IF (3 << 8) /* invert bclk + frm */ 192 193 /* 194 * DAI hardware clock masters 195 * This is wrt the codec, the inverse is true for the interface 196 * i.e. if the codec is clk and frm master then the interface is 197 * clk and frame slave. 198 */ 199 #define SND_SOC_DAIFMT_CBM_CFM (0 << 12) /* codec clk & frm master */ 200 #define SND_SOC_DAIFMT_CBS_CFM (1 << 12) /* codec clk slave & frm master */ 201 #define SND_SOC_DAIFMT_CBM_CFS (2 << 12) /* codec clk master & frame slave */ 202 #define SND_SOC_DAIFMT_CBS_CFS (3 << 12) /* codec clk & frm slave */ 203 204 #define SND_SOC_DAIFMT_FORMAT_MASK 0x000f 205 #define SND_SOC_DAIFMT_CLOCK_MASK 0x00f0 206 #define SND_SOC_DAIFMT_INV_MASK 0x0f00 207 #define SND_SOC_DAIFMT_MASTER_MASK 0xf000 208 209 210 /* 211 * Master Clock Directions 212 */ 213 #define SND_SOC_CLOCK_IN 0 214 #define SND_SOC_CLOCK_OUT 1 215 216 /* 217 * AC97 codec ID's bitmask 218 */ 219 #define SND_SOC_DAI_AC97_ID0 (1 << 0) 220 #define SND_SOC_DAI_AC97_ID1 (1 << 1) 221 #define SND_SOC_DAI_AC97_ID2 (1 << 2) 222 #define SND_SOC_DAI_AC97_ID3 (1 << 3) 223 157 struct snd_jack; 158 struct snd_soc_card; 224 159 struct snd_soc_device; 225 160 struct snd_soc_pcm_stream; … … 228 163 struct snd_soc_pcm_runtime; 229 164 struct snd_soc_dai; 165 struct snd_soc_platform; 230 166 struct snd_soc_codec; 231 struct snd_soc_machine_config;232 167 struct soc_enum; 233 168 struct snd_soc_ac97_ops; 234 struct snd_soc_clock_info; 169 struct snd_soc_jack; 170 struct snd_soc_jack_pin; 235 171 236 172 typedef int (*hw_write_t)(void *,const char* ,int); … … 238 174 239 175 extern struct snd_ac97_bus_ops soc_ac97_ops; 176 177 int snd_soc_register_platform(struct snd_soc_platform *platform); 178 void snd_soc_unregister_platform(struct snd_soc_platform *platform); 179 int snd_soc_register_codec(struct snd_soc_codec *codec); 180 void snd_soc_unregister_codec(struct snd_soc_codec *codec); 240 181 241 182 /* pcm <-> DAI connect */ 242 183 void snd_soc_free_pcms(struct snd_soc_device *socdev); 243 184 int snd_soc_new_pcms(struct snd_soc_device *socdev, int idx, const char *xid); 244 int snd_soc_ register_card(struct snd_soc_device *socdev);185 int snd_soc_init_card(struct snd_soc_device *socdev); 245 186 246 187 /* set runtime hw params */ 247 188 int snd_soc_set_runtime_hwparams(struct snd_pcm_substream *substream, 248 189 const struct snd_pcm_hardware *hw); 190 191 /* Jack reporting */ 192 int snd_soc_jack_new(struct snd_soc_card *card, const char *id, int type, 193 struct snd_soc_jack *jack); 194 void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask); 195 int snd_soc_jack_add_pins(struct snd_soc_jack *jack, int count, 196 struct snd_soc_jack_pin *pins); 249 197 250 198 /* codec IO */ … … 262 210 void snd_soc_free_ac97_codec(struct snd_soc_codec *codec); 263 211 264 /* Digital Audio Interface clocking API.*/265 int snd_soc_dai_set_sysclk(struct snd_soc_dai *dai, int clk_id,266 unsigned int freq, int dir);267 268 int snd_soc_dai_set_clkdiv(struct snd_soc_dai *dai,269 int div_id, int div);270 271 int snd_soc_dai_set_pll(struct snd_soc_dai *dai,272 int pll_id, unsigned int freq_in, unsigned int freq_out);273 274 /* Digital Audio interface formatting */275 int snd_soc_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt);276 277 int snd_soc_dai_set_tdm_slot(struct snd_soc_dai *dai,278 unsigned int mask, int slots);279 280 int snd_soc_dai_set_tristate(struct snd_soc_dai *dai, int tristate);281 282 /* Digital Audio Interface mute */283 int snd_soc_dai_digital_mute(struct snd_soc_dai *dai, int mute);284 285 212 /* 286 213 *Controls … … 288 215 struct snd_kcontrol *snd_soc_cnew(const struct snd_kcontrol_new *_template, 289 216 void *data, char *long_name); 217 int snd_soc_add_controls(struct snd_soc_codec *codec, 218 const struct snd_kcontrol_new *controls, int num_controls); 290 219 int snd_soc_info_enum_double(struct snd_kcontrol *kcontrol, 291 220 struct snd_ctl_elem_info *uinfo); … … 295 224 struct snd_ctl_elem_value *ucontrol); 296 225 int snd_soc_put_enum_double(struct snd_kcontrol *kcontrol, 226 struct snd_ctl_elem_value *ucontrol); 227 int snd_soc_get_value_enum_double(struct snd_kcontrol *kcontrol, 228 struct snd_ctl_elem_value *ucontrol); 229 int snd_soc_put_value_enum_double(struct snd_kcontrol *kcontrol, 297 230 struct snd_ctl_elem_value *ucontrol); 298 231 int snd_soc_info_volsw(struct snd_kcontrol *kcontrol, … … 317 250 int snd_soc_put_volsw_s8(struct snd_kcontrol *kcontrol, 318 251 struct snd_ctl_elem_value *ucontrol); 252 253 /** 254 * struct snd_soc_jack_pin - Describes a pin to update based on jack detection 255 * 256 * @pin: name of the pin to update 257 * @mask: bits to check for in reported jack status 258 * @invert: if non-zero then pin is enabled when status is not reported 259 */ 260 struct snd_soc_jack_pin { 261 struct list_head list; 262 const char *pin; 263 int mask; 264 bool invert; 265 }; 266 267 struct snd_soc_jack { 268 struct snd_jack *jack; 269 struct snd_soc_card *card; 270 struct list_head pins; 271 int status; 272 }; 319 273 320 274 /* SoC PCM stream information */ … … 340 294 }; 341 295 342 /* ASoC DAI ops */343 struct snd_soc_dai_ops {344 /* DAI clocking configuration */345 int (*set_sysclk)(struct snd_soc_dai *dai,346 int clk_id, unsigned int freq, int dir);347 int (*set_pll)(struct snd_soc_dai *dai,348 int pll_id, unsigned int freq_in, unsigned int freq_out);349 int (*set_clkdiv)(struct snd_soc_dai *dai, int div_id, int div);350 351 /* DAI format configuration */352 int (*set_fmt)(struct snd_soc_dai *dai, unsigned int fmt);353 int (*set_tdm_slot)(struct snd_soc_dai *dai,354 unsigned int mask, int slots);355 int (*set_tristate)(struct snd_soc_dai *dai, int tristate);356 357 /* digital mute */358 int (*digital_mute)(struct snd_soc_dai *dai, int mute);359 };360 361 /* SoC DAI (Digital Audio Interface) */362 struct snd_soc_dai {363 /* DAI description */364 char *name;365 unsigned int id;366 unsigned char type;367 368 /* DAI callbacks */369 int (*probe)(struct platform_device *pdev,370 struct snd_soc_dai *dai);371 void (*remove)(struct platform_device *pdev,372 struct snd_soc_dai *dai);373 int (*suspend)(struct platform_device *pdev,374 struct snd_soc_dai *dai);375 int (*resume)(struct platform_device *pdev,376 struct snd_soc_dai *dai);377 378 /* ops */379 struct snd_soc_ops ops;380 struct snd_soc_dai_ops dai_ops;381 382 /* DAI capabilities */383 struct snd_soc_pcm_stream capture;384 struct snd_soc_pcm_stream playback;385 386 /* DAI runtime info */387 struct snd_pcm_runtime *runtime;388 struct snd_soc_codec *codec;389 unsigned int active;390 unsigned char pop_wait:1;391 void *dma_data;392 393 /* DAI private data */394 void *private_data;395 };396 397 296 /* SoC Audio Codec */ 398 297 struct snd_soc_codec { … … 400 299 struct module *owner; 401 300 struct mutex mutex; 301 struct device *dev; 302 303 struct list_head list; 402 304 403 305 /* callbacks */ … … 435 337 struct snd_soc_dai *dai; 436 338 unsigned int num_dai; 339 340 #ifdef CONFIG_DEBUG_FS 341 struct dentry *debugfs_reg; 342 struct dentry *debugfs_pop_time; 343 #endif 437 344 }; 438 345 … … 448 355 struct snd_soc_platform { 449 356 char *name; 357 struct list_head list; 450 358 451 359 int (*probe)(struct platform_device *pdev); 452 360 int (*remove)(struct platform_device *pdev); 453 int (*suspend)(struct platform_device *pdev, 454 struct snd_soc_dai *dai); 455 int (*resume)(struct platform_device *pdev, 456 struct snd_soc_dai *dai); 361 int (*suspend)(struct snd_soc_dai *dai); 362 int (*resume)(struct snd_soc_dai *dai); 457 363 458 364 /* pcm creation and destruction */ … … 484 390 }; 485 391 486 /* SoC machine*/487 struct snd_soc_ machine{392 /* SoC card */ 393 struct snd_soc_card { 488 394 char *name; 395 struct device *dev; 396 397 struct list_head list; 398 399 int instantiated; 489 400 490 401 int (*probe)(struct platform_device *pdev); … … 499 410 500 411 /* callbacks */ 501 int (*set_bias_level)(struct snd_soc_ machine*,412 int (*set_bias_level)(struct snd_soc_card *, 502 413 enum snd_soc_bias_level level); 503 414 … … 505 416 struct snd_soc_dai_link *dai_link; 506 417 int num_links; 418 419 struct snd_soc_device *socdev; 420 421 struct snd_soc_platform *platform; 422 struct delayed_work delayed_work; 423 struct work_struct deferred_resume_work; 507 424 }; 508 425 … … 510 427 struct snd_soc_device { 511 428 struct device *dev; 512 struct snd_soc_machine *machine; 513 struct snd_soc_platform *platform; 429 struct snd_soc_card *card; 514 430 struct snd_soc_codec *codec; 515 431 struct snd_soc_codec_device *codec_dev; 516 struct delayed_work delayed_work;517 struct work_struct deferred_resume_work;518 432 void *codec_data; 519 #ifdef CONFIG_DEBUG_FS520 struct dentry *debugfs_root;521 #endif522 433 }; 523 434 … … 541 452 unsigned char shift_r; 542 453 unsigned int max; 454 unsigned int mask; 543 455 const char **texts; 456 const unsigned int *values; 544 457 void *dapm; 545 458 }; 546 459 460 #include <sound/soc-dai.h> 461 547 462 #endif -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/include/sound/tea575x-tuner.h ¶
r399 r410 37 37 struct snd_card *card; 38 38 struct video_device vd; /* video device */ 39 struct file_operations fops;39 struct v4l2_file_operations fops; 40 40 int dev_nr; /* requested device number + 1 */ 41 41 int vd_registered; /* video device is registered */ -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/include/sound/version.h ¶
r402 r410 1 1 /* include/version.h */ 2 #define CONFIG_SND_VERSION "1.0.1 8a"2 #define CONFIG_SND_VERSION "1.0.19" 3 3 #define CONFIG_SND_DATE "" -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/ad1816a/ad1816a.c ¶
r399 r410 158 158 struct snd_opl3 *opl3; 159 159 160 if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE, 161 sizeof(struct snd_card_ad1816a))) == NULL) 162 return -ENOMEM; 160 error = snd_card_create(index[dev], id[dev], THIS_MODULE, 161 sizeof(struct snd_card_ad1816a), &card); 162 if (error < 0) 163 return error; 163 164 acard = (struct snd_card_ad1816a *)card->private_data; 164 165 -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/ad1848/ad1848.c ¶
r402 r410 92 92 int error; 93 93 94 card = snd_card_new(index[n], id[n], THIS_MODULE, 0);95 if ( !card)96 return -EINVAL;94 error = snd_card_create(index[n], id[n], THIS_MODULE, 0, &card); 95 if (error < 0) 96 return error; 97 97 98 98 error = snd_wss_create(card, port[n], -1, irq[n], dma1[n], -1, -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/als100.c ¶
r305 r410 164 164 struct snd_opl3 *opl3; 165 165 166 if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE, 167 sizeof(struct snd_card_als100))) == NULL) 168 return -ENOMEM; 166 error = snd_card_create(index[dev], id[dev], THIS_MODULE, 167 sizeof(struct snd_card_als100), &card); 168 if (error < 0) 169 return error; 169 170 acard = card->private_data; 170 171 -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/azt2320.c ¶
r399 r410 185 185 struct snd_opl3 *opl3; 186 186 187 if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE, 188 sizeof(struct snd_card_azt2320))) == NULL) 189 return -ENOMEM; 187 error = snd_card_create(index[dev], id[dev], THIS_MODULE, 188 sizeof(struct snd_card_azt2320), &card); 189 if (error < 0) 190 return error; 190 191 acard = (struct snd_card_azt2320 *)card->private_data; 191 192 -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/cmi8330.c ¶
r399 r410 468 468 #define PFX "cmi8330: " 469 469 470 static struct snd_card *snd_cmi8330_card_new(int dev)470 static int snd_cmi8330_card_new(int dev, struct snd_card **cardp) 471 471 { 472 472 struct snd_card *card; 473 473 struct snd_cmi8330 *acard; 474 475 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 476 sizeof(struct snd_cmi8330)); 477 if (card == NULL) { 474 int err; 475 476 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 477 sizeof(struct snd_cmi8330), &card); 478 if (err < 0) { 478 479 snd_printk(KERN_ERR PFX "could not get a new card\n"); 479 return NULL;480 return err; 480 481 } 481 482 acard = card->private_data; 482 483 acard->card = card; 483 return card; 484 *cardp = card; 485 return 0; 484 486 } 485 487 … … 565 567 int err; 566 568 567 card = snd_cmi8330_card_new(dev);568 if ( ! card)569 return -ENOMEM;569 err = snd_cmi8330_card_new(dev, &card); 570 if (err < 0) 571 return err; 570 572 snd_card_set_dev(card, pdev); 571 573 if ((err = snd_cmi8330_probe(card, dev)) < 0) { … … 629 631 return -ENODEV; 630 632 631 card = snd_cmi8330_card_new(dev);632 if ( ! card)633 return -ENOMEM;633 res = snd_cmi8330_card_new(dev, &card); 634 if (res < 0) 635 return res; 634 636 if ((res = snd_cmi8330_pnp(dev, card->private_data, pcard, pid)) < 0) { 635 637 snd_printk(KERN_ERR PFX "PnP detection failed\n"); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/cs423x/cs4231.c ¶
r402 r410 96 96 int error; 97 97 98 card = snd_card_new(index[n], id[n], THIS_MODULE, 0);99 if ( !card)100 return -EINVAL;98 error = snd_card_create(index[n], id[n], THIS_MODULE, 0, &card); 99 if (error < 0) 100 return error; 101 101 102 102 error = snd_wss_create(card, port[n], -1, irq[n], dma1[n], dma2[n], -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/cs423x/cs4236.c ¶
r402 r410 383 383 } 384 384 385 static struct snd_card *snd_cs423x_card_new(int dev)385 static int snd_cs423x_card_new(int dev, struct snd_card **cardp) 386 386 { 387 387 struct snd_card *card; 388 389 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 390 sizeof(struct snd_card_cs4236)); 391 if (card == NULL) 392 return NULL; 388 int err; 389 390 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 391 sizeof(struct snd_card_cs4236), &card); 392 if (err < 0) 393 return err; 393 394 card->private_free = snd_card_cs4236_free; 394 return card; 395 *cardp = card; 396 return 0; 395 397 } 396 398 … … 513 515 int err; 514 516 515 card = snd_cs423x_card_new(dev);516 if ( ! card)517 return -ENOMEM;517 err = snd_cs423x_card_new(dev, &card); 518 if (err < 0) 519 return err; 518 520 snd_card_set_dev(card, pdev); 519 521 if ((err = snd_cs423x_probe(card, dev)) < 0) { … … 595 597 return -ENODEV; 596 598 597 card = snd_cs423x_card_new(dev);598 if ( ! card)599 return -ENOMEM;599 err = snd_cs423x_card_new(dev, &card); 600 if (err < 0) 601 return err; 600 602 if ((err = snd_card_cs4232_pnp(dev, card->private_data, pdev)) < 0) { 601 603 printk(KERN_ERR "PnP BIOS detection failed for " IDENT "\n"); … … 657 659 return -ENODEV; 658 660 659 card = snd_cs423x_card_new(dev);660 if ( ! card)661 return -ENOMEM;661 res = snd_cs423x_card_new(dev, &card); 662 if (res < 0) 663 return res; 662 664 if ((res = snd_card_cs423x_pnpc(dev, card->private_data, pcard, pid)) < 0) { 663 665 printk(KERN_ERR "isapnp detection failed and probing for " IDENT -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/es1688/es1688.c ¶
r402 r410 123 123 int error; 124 124 125 card = snd_card_new(index[n], id[n], THIS_MODULE, 0);126 if ( !card)127 return -EINVAL;125 error = snd_card_create(index[n], id[n], THIS_MODULE, 0, &card); 126 if (error < 0) 127 return error; 128 128 129 129 error = snd_es1688_legacy_create(card, dev, n, &chip); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/es18xx.c ¶
r305 r410 2126 2126 #endif 2127 2127 2128 static struct snd_card *snd_es18xx_card_new(int dev)2129 { 2130 return snd_card_ new(index[dev], id[dev], THIS_MODULE,2131 sizeof(struct snd_audiodrive));2128 static int snd_es18xx_card_new(int dev, struct snd_card **cardp) 2129 { 2130 return snd_card_create(index[dev], id[dev], THIS_MODULE, 2131 sizeof(struct snd_audiodrive), cardp); 2132 2132 } 2133 2133 … … 2198 2198 int err; 2199 2199 2200 card = snd_es18xx_card_new(dev);2201 if ( ! card)2202 return -ENOMEM;2200 err = snd_es18xx_card_new(dev, &card); 2201 if (err < 0) 2202 return err; 2203 2203 snd_card_set_dev(card, devptr); 2204 2204 if ((err = snd_audiodrive_probe(card, dev)) < 0) { … … 2304 2304 return -ENODEV; 2305 2305 2306 card = snd_es18xx_card_new(dev);2307 if ( ! card)2308 return -ENOMEM;2306 err = snd_es18xx_card_new(dev, &card); 2307 if (err < 0) 2308 return err; 2309 2309 if ((err = snd_audiodrive_pnp(dev, card->private_data, pdev)) < 0) { 2310 2310 snd_card_free(card); … … 2363 2363 return -ENODEV; 2364 2364 2365 card = snd_es18xx_card_new(dev);2366 if ( ! card)2367 return -ENOMEM;2365 res = snd_es18xx_card_new(dev, &card); 2366 if (res < 0) 2367 return res; 2368 2368 2369 2369 if ((res = snd_audiodrive_pnpc(dev, card->private_data, pcard, pid)) < 0) { -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/gus/gusclassic.c ¶
r402 r410 149 149 int error; 150 150 151 card = snd_card_new(index[n], id[n], THIS_MODULE, 0);152 if ( !card)153 return -EINVAL;151 error = snd_card_create(index[n], id[n], THIS_MODULE, 0, &card); 152 if (error < 0) 153 return error; 154 154 155 155 if (pcm_channels[n] < 2) -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/gus/gusextreme.c ¶
r402 r410 242 242 int error; 243 243 244 card = snd_card_new(index[n], id[n], THIS_MODULE, 0);245 if ( !card)246 return -EINVAL;244 error = snd_card_create(index[n], id[n], THIS_MODULE, 0, &card); 245 if (error < 0) 246 return error; 247 247 248 248 if (mpu_port[n] == SNDRV_AUTO_PORT) -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/gus/gusmax.c ¶
r399 r410 215 215 struct snd_gusmax *maxcard; 216 216 217 card = snd_card_new(index[dev], id[dev], THIS_MODULE,218 sizeof(struct snd_gusmax));219 if ( card == NULL)220 return -ENOMEM;217 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 218 sizeof(struct snd_gusmax), &card); 219 if (err < 0) 220 return err; 221 221 card->private_free = snd_gusmax_free; 222 222 maxcard = (struct snd_gusmax *)card->private_data; -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/gus/interwave.c ¶
r399 r410 627 627 } 628 628 629 static struct snd_card *snd_interwave_card_new(int dev)629 static int snd_interwave_card_new(int dev, struct snd_card **cardp) 630 630 { 631 631 struct snd_card *card; 632 632 struct snd_interwave *iwcard; 633 634 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 635 sizeof(struct snd_interwave)); 636 if (card == NULL) 637 return NULL; 633 int err; 634 635 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 636 sizeof(struct snd_interwave), &card); 637 if (err < 0) 638 return err; 638 639 iwcard = card->private_data; 639 640 iwcard->card = card; 640 641 iwcard->irq = -1; 641 642 card->private_free = snd_interwave_free; 642 return card; 643 *cardp = card; 644 return 0; 643 645 } 644 646 … … 779 781 int err; 780 782 781 card = snd_interwave_card_new(dev);782 if ( ! card)783 return -ENOMEM;783 err = snd_interwave_card_new(dev, &card); 784 if (err < 0) 785 return err; 784 786 785 787 snd_card_set_dev(card, devptr); … … 877 879 return -ENODEV; 878 880 879 card = snd_interwave_card_new(dev);880 if ( ! card)881 return -ENOMEM;881 res = snd_interwave_card_new(dev, &card); 882 if (res < 0) 883 return res; 882 884 883 885 if ((res = snd_interwave_pnp(dev, card->private_data, pcard, pid)) < 0) { -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/opl3sa2.c ¶
r399 r410 622 622 } 623 623 624 static struct snd_card *snd_opl3sa2_card_new(int dev)624 static int snd_opl3sa2_card_new(int dev, struct snd_card **cardp) 625 625 { 626 626 struct snd_card *card; 627 627 struct snd_opl3sa2 *chip; 628 629 card = snd_card_new(index[dev], id[dev], THIS_MODULE, sizeof(struct snd_opl3sa2)); 630 if (card == NULL) 631 return NULL; 628 int err; 629 630 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 631 sizeof(struct snd_opl3sa2), &card); 632 if (err < 0) 633 return err; 632 634 strcpy(card->driver, "OPL3SA2"); 633 635 strcpy(card->shortname, "Yamaha OPL3-SA2"); … … 636 638 chip->irq = -1; 637 639 card->private_free = snd_opl3sa2_free; 638 return card; 640 *cardp = card; 641 return 0; 639 642 } 640 643 … … 728 731 return -ENODEV; 729 732 730 card = snd_opl3sa2_card_new(dev);731 if ( ! card)732 return -ENOMEM;733 err = snd_opl3sa2_card_new(dev, &card); 734 if (err < 0) 735 return err; 733 736 if ((err = snd_opl3sa2_pnp(dev, card->private_data, pdev)) < 0) { 734 737 snd_card_free(card); … … 794 797 return -ENODEV; 795 798 796 card = snd_opl3sa2_card_new(dev);797 if ( ! card)798 return -ENOMEM;799 err = snd_opl3sa2_card_new(dev, &card); 800 if (err < 0) 801 return err; 799 802 if ((err = snd_opl3sa2_pnp(dev, card->private_data, pdev)) < 0) { 800 803 snd_card_free(card); … … 875 878 int err; 876 879 877 card = snd_opl3sa2_card_new(dev);878 if ( ! card)879 return -ENOMEM;880 err = snd_opl3sa2_card_new(dev, &card); 881 if (err < 0) 882 return err; 880 883 snd_card_set_dev(card, pdev); 881 884 if ((err = snd_opl3sa2_probe(card, dev)) < 0) { -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/opti9xx/opti92x-ad1848.c ¶
r399 r410 831 831 } 832 832 833 static struct snd_card *snd_opti9xx_card_new(void)833 static int snd_opti9xx_card_new(struct snd_card **cardp) 834 834 { 835 835 struct snd_card *card; 836 837 card = snd_card_new(index, id, THIS_MODULE, sizeof(struct snd_opti9xx)); 838 if (! card) 839 return NULL; 836 int err; 837 838 err = snd_card_create(index, id, THIS_MODULE, 839 sizeof(struct snd_opti9xx), &card); 840 if (err < 0) 841 return err; 840 842 card->private_free = snd_card_opti9xx_free; 841 return card; 843 *cardp = card; 844 return 0; 842 845 } 843 846 … … 904 907 #endif 905 908 906 card = snd_opti9xx_card_new();907 if ( ! card)908 return -ENOMEM;909 error = snd_opti9xx_card_new(&card); 910 if (error < 0) 911 return error; 909 912 910 913 if ((error = snd_card_opti9xx_detect(card, card->private_data)) < 0) { … … 951 954 if (! isapnp) 952 955 return -ENODEV; 953 card = snd_opti9xx_card_new();954 if ( ! card)955 return -ENOMEM;956 error = snd_opti9xx_card_new(&card); 957 if (error < 0) 958 return error; 956 959 chip = card->private_data; 957 960 -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/sb/es968.c ¶
r305 r410 109 109 struct snd_card_es968 *acard; 110 110 111 if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE, 112 sizeof(struct snd_card_es968))) == NULL) 113 return -ENOMEM; 111 error = snd_card_create(index[dev], id[dev], THIS_MODULE, 112 sizeof(struct snd_card_es968), &card); 113 if (error < 0) 114 return error; 114 115 acard = card->private_data; 115 116 if ((error = snd_card_es968_pnp(dev, acard, pcard, pid))) { -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/sb/sb16.c ¶
r305 r410 325 325 #endif 326 326 327 static struct snd_card *snd_sb16_card_new(int dev) 328 { 329 struct snd_card *card = snd_card_new(index[dev], id[dev], THIS_MODULE, 330 sizeof(struct snd_card_sb16)); 331 if (card == NULL) 332 return NULL; 327 static int snd_sb16_card_new(int dev, struct snd_card **cardp) 328 { 329 struct snd_card *card; 330 int err; 331 332 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 333 sizeof(struct snd_card_sb16), &card); 334 if (err < 0) 335 return err; 333 336 card->private_free = snd_sb16_free; 334 return card; 337 *cardp = card; 338 return 0; 335 339 } 336 340 … … 490 494 int err; 491 495 492 card = snd_sb16_card_new(dev);493 if ( ! card)494 return -ENOMEM;496 err = snd_sb16_card_new(dev, &card); 497 if (err < 0) 498 return err; 495 499 496 500 acard = card->private_data; … … 611 615 if (!enable[dev] || !isapnp[dev]) 612 616 continue; 613 card = snd_sb16_card_new(dev);614 if ( ! card)615 return -ENOMEM;617 res = snd_sb16_card_new(dev, &card); 618 if (res < 0) 619 return res; 616 620 snd_card_set_dev(card, &pcard->card->dev); 617 621 if ((res = snd_card_sb16_pnp(dev, card->private_data, pcard, pid)) < 0 || -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/sb/sb8.c ¶
r402 r410 104 104 int err; 105 105 106 card = snd_card_new(index[dev], id[dev], THIS_MODULE,107 sizeof(struct snd_sb8));108 if ( card == NULL)109 return -ENOMEM;106 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 107 sizeof(struct snd_sb8), &card); 108 if (err < 0) 109 return err; 110 110 acard = card->private_data; 111 111 card->private_free = snd_sb8_free; … … 141 141 } 142 142 } 143 if (i >= ARRAY_SIZE(possible_ports)) 143 if (i >= ARRAY_SIZE(possible_ports)) { 144 err = -EINVAL; 144 145 goto _err; 146 } 145 147 } 146 148 acard->chip = chip; -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/sgalaxy.c ¶
r399 r410 244 244 struct snd_wss *chip; 245 245 246 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);247 if ( card == NULL)248 return -ENOMEM;246 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 247 if (err < 0) 248 return err; 249 249 250 250 xirq = irq[dev]; -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/isa/wavefront/wavefront.c ¶
r399 r410 339 339 } 340 340 341 static struct snd_card *snd_wavefront_card_new(int dev)341 static int snd_wavefront_card_new(int dev, struct snd_card **cardp) 342 342 { 343 343 struct snd_card *card; 344 344 snd_wavefront_card_t *acard; 345 346 card = snd_card_new (index[dev], id[dev], THIS_MODULE, 347 sizeof(snd_wavefront_card_t)); 348 if (card == NULL) 349 return NULL; 345 int err; 346 347 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 348 sizeof(snd_wavefront_card_t), &card); 349 if (err < 0) 350 return err; 350 351 351 352 acard = card->private_data; … … 358 359 card->private_free = snd_wavefront_free; 359 360 360 return card; 361 *cardp = card; 362 return 0; 361 363 } 362 364 … … 568 570 int err; 569 571 570 card = snd_wavefront_card_new(dev);571 if ( ! card)572 return -ENOMEM;572 err = snd_wavefront_card_new(dev, &card); 573 if (err < 0) 574 return err; 573 575 snd_card_set_dev(card, pdev); 574 576 if ((err = snd_wavefront_probe(card, dev)) < 0) { … … 617 619 return -ENODEV; 618 620 619 card = snd_wavefront_card_new(dev);620 if ( ! card)621 return -ENOMEM;621 res = snd_wavefront_card_new(dev, &card); 622 if (res < 0) 623 return res; 622 624 623 625 if (snd_wavefront_pnp (dev, card->private_data, pcard, pid) < 0) { -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/ac97/ac97_codec.c ¶
r402 r410 176 176 { 0x574d4C05, 0xffffffff, "WM9705,WM9710", patch_wolfson05, NULL}, 177 177 { 0x574d4C09, 0xffffffff, "WM9709", NULL, NULL}, 178 { 0x574d4C12, 0xffffffff, "WM9711,WM9712 ", patch_wolfson11, NULL},178 { 0x574d4C12, 0xffffffff, "WM9711,WM9712,WM9715", patch_wolfson11, NULL}, 179 179 { 0x574d4c13, 0xffffffff, "WM9713,WM9714", patch_wolfson13, NULL, AC97_DEFAULT_POWER_OFF}, 180 180 { 0x594d4800, 0xffffffff, "YMF743", patch_yamaha_ymf743, NULL }, -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/ali5451/ali5451.c ¶
r358 r410 2322 2322 snd_ali_printk("probe ...\n"); 2323 2323 2324 card = snd_card_new(index, id, THIS_MODULE, 0);2325 if ( !card)2326 return -ENOMEM;2324 err = snd_card_create(index, id, THIS_MODULE, 0, &card); 2325 if (err < 0) 2326 return err; 2327 2327 2328 2328 err = snd_ali_create(card, pci, pcm_channels, spdif, &codec); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/als4000.c ¶
r399 r410 890 890 pci_set_master(pci); 891 891 892 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 893 sizeof(*acard) /* private_data: acard */); 894 if (card == NULL) { 892 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 893 sizeof(*acard) /* private_data: acard */, 894 &card); 895 if (err < 0) { 895 896 pci_release_regions(pci); 896 897 pci_disable_device(pci); 897 return -ENOMEM;898 return err; 898 899 } 899 900 -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/atiixp.c ¶
r399 r410 1648 1648 int err; 1649 1649 1650 card = snd_card_new(index, id, THIS_MODULE, 0);1651 if ( card == NULL)1652 return -ENOMEM;1650 err = snd_card_create(index, id, THIS_MODULE, 0, &card); 1651 if (err < 0) 1652 return err; 1653 1653 1654 1654 strcpy(card->driver, spdif_aclink ? "ATIIXP" : "ATIIXP-SPDMA"); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/au88x0/au88x0.c ¶
r399 r410 251 251 } 252 252 // (2) 253 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);254 if ( card == NULL)255 return -ENOMEM;253 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 254 if (err < 0) 255 return err; 256 256 257 257 // (3) -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/bt87x.c ¶
r399 r410 924 924 } 925 925 926 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);927 if ( !card)928 return -ENOMEM;926 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 927 if (err < 0) 928 return err; 929 929 930 930 err = snd_bt87x_create(card, pci, &chip); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/ca0106/ca0106.h ¶
r305 r410 665 665 u32 serial; 666 666 char * name; 667 int ac97; 668 int gpio_type; 669 int i2c_adc; 670 int spi_dac; 667 int ac97; /* ac97 = 0 -> Select MIC, Line in, TAD in, AUX in. 668 ac97 = 1 -> Default to AC97 in. */ 669 int gpio_type; /* gpio_type = 1 -> shared mic-in/line-in 670 gpio_type = 2 -> shared side-out/line-in. */ 671 int i2c_adc; /* with i2c_adc=1, the driver adds some capture volume 672 controls, phone, mic, line-in and aux. */ 673 int spi_dac; /* spi_dac=1 adds the mute switch for each analog 674 output, front, rear, etc. */ 671 675 }; 672 676 … … 687 691 688 692 struct snd_ac97 *ac97; 689 struct snd_pcm *pcm ;693 struct snd_pcm *pcm[4]; 690 694 691 695 struct snd_ca0106_channel playback_channels[4]; 692 696 struct snd_ca0106_channel capture_channels[4]; 693 u32 spdif_bits[4]; /* s/pdif out setup */ 697 u32 spdif_bits[4]; /* s/pdif out default setup */ 698 u32 spdif_str_bits[4]; /* s/pdif out per-stream setup */ 694 699 int spdif_enable; 695 700 int capture_source; … … 704 709 705 710 u16 spi_dac_reg[16]; 711 712 #ifdef CONFIG_PM 713 #define NUM_SAVED_VOLUMES 9 714 unsigned int saved_vol[NUM_SAVED_VOLUMES]; 715 #endif 706 716 }; 707 717 … … 722 732 int snd_ca0106_spi_write(struct snd_ca0106 * emu, 723 733 unsigned int data); 734 735 #ifdef CONFIG_PM 736 void snd_ca0106_mixer_suspend(struct snd_ca0106 *chip); 737 void snd_ca0106_mixer_resume(struct snd_ca0106 *chip); 738 #else 739 #define snd_ca0106_mixer_suspend(chip) do { } while (0) 740 #define snd_ca0106_mixer_resume(chip) do { } while (0) 741 #endif -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/ca0106/ca0106_main.c ¶
r399 r410 255 255 .gpio_type = 2, 256 256 .i2c_adc = 1, 257 .spi_dac = 2} ,257 .spi_dac = 1 } , 258 258 /* Shuttle XPC SD31P which has an onboard Creative Labs 259 259 * Sound Blaster Live! 24-bit EAX … … 306 306 SNDRV_PCM_INFO_MMAP_VALID), 307 307 .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE, 308 #if 0 /* FIXME: looks like 44.1kHz capture causes noisy output on 48kHz */ 308 309 .rates = (SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 | 309 310 SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000), 310 311 .rate_min = 44100, 312 #else 313 .rates = (SNDRV_PCM_RATE_48000 | 314 SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000), 315 .rate_min = 48000, 316 #endif /* FIXME */ 311 317 .rate_max = 192000, 312 318 .channels_min = 2, … … 480 486 }; 481 487 488 static void restore_spdif_bits(struct snd_ca0106 *chip, int idx) 489 { 490 if (chip->spdif_str_bits[idx] != chip->spdif_bits[idx]) { 491 chip->spdif_str_bits[idx] = chip->spdif_bits[idx]; 492 snd_ca0106_ptr_write(chip, SPCS0 + idx, 0, 493 chip->spdif_str_bits[idx]); 494 } 495 } 496 482 497 /* open_playback callback */ 483 498 static int snd_ca0106_pcm_open_playback_channel(struct snd_pcm_substream *substream, … … 525 540 return err; 526 541 } 542 543 restore_spdif_bits(chip, channel_id); 544 527 545 return 0; 528 546 } … … 535 553 struct snd_ca0106_pcm *epcm = runtime->private_data; 536 554 chip->playback_channels[epcm->channel_id].use = 0; 555 556 restore_spdif_bits(chip, epcm->channel_id); 537 557 538 558 if (chip->details->spi_dac && epcm->channel_id != PCM_FRONT_CHANNEL) { … … 848 868 u32 basic = 0; 849 869 u32 extended = 0; 850 int running=0; 870 u32 bits; 871 int running = 0; 851 872 852 873 switch (cmd) { 853 874 case SNDRV_PCM_TRIGGER_START: 854 running=1; 875 case SNDRV_PCM_TRIGGER_RESUME: 876 running = 1; 855 877 break; 856 878 case SNDRV_PCM_TRIGGER_STOP: 879 case SNDRV_PCM_TRIGGER_SUSPEND: 857 880 default: 858 running =0;881 running = 0; 859 882 break; 860 883 } … … 866 889 epcm = runtime->private_data; 867 890 channel = epcm->channel_id; 868 / /snd_printk("channel=%d\n",channel);891 /* snd_printk("channel=%d\n",channel); */ 869 892 epcm->running = running; 870 basic |= (0x1 <<channel);871 extended |= (0x10 <<channel);893 basic |= (0x1 << channel); 894 extended |= (0x10 << channel); 872 895 snd_pcm_trigger_done(s, substream); 873 896 } 874 / /snd_printk("basic=0x%x, extended=0x%x\n",basic, extended);897 /* snd_printk("basic=0x%x, extended=0x%x\n",basic, extended); */ 875 898 876 899 switch (cmd) { 877 900 case SNDRV_PCM_TRIGGER_START: 878 snd_ca0106_ptr_write(emu, EXTENDED_INT_MASK, 0, snd_ca0106_ptr_read(emu, EXTENDED_INT_MASK, 0) | (extended)); 879 snd_ca0106_ptr_write(emu, BASIC_INTERRUPT, 0, snd_ca0106_ptr_read(emu, BASIC_INTERRUPT, 0)|(basic)); 901 case SNDRV_PCM_TRIGGER_RESUME: 902 bits = snd_ca0106_ptr_read(emu, EXTENDED_INT_MASK, 0); 903 bits |= extended; 904 snd_ca0106_ptr_write(emu, EXTENDED_INT_MASK, 0, bits); 905 bits = snd_ca0106_ptr_read(emu, BASIC_INTERRUPT, 0); 906 bits |= basic; 907 snd_ca0106_ptr_write(emu, BASIC_INTERRUPT, 0, bits); 880 908 break; 881 909 case SNDRV_PCM_TRIGGER_STOP: 882 snd_ca0106_ptr_write(emu, BASIC_INTERRUPT, 0, snd_ca0106_ptr_read(emu, BASIC_INTERRUPT, 0) & ~(basic)); 883 snd_ca0106_ptr_write(emu, EXTENDED_INT_MASK, 0, snd_ca0106_ptr_read(emu, EXTENDED_INT_MASK, 0) & ~(extended)); 910 case SNDRV_PCM_TRIGGER_SUSPEND: 911 bits = snd_ca0106_ptr_read(emu, BASIC_INTERRUPT, 0); 912 bits &= ~basic; 913 snd_ca0106_ptr_write(emu, BASIC_INTERRUPT, 0, bits); 914 bits = snd_ca0106_ptr_read(emu, EXTENDED_INT_MASK, 0); 915 bits &= ~extended; 916 snd_ca0106_ptr_write(emu, EXTENDED_INT_MASK, 0, bits); 884 917 break; 885 918 default: … … 1104 1137 } 1105 1138 1139 static void ca0106_stop_chip(struct snd_ca0106 *chip); 1140 1106 1141 static int snd_ca0106_free(struct snd_ca0106 *chip) 1107 1142 { 1108 if (chip->res_port != NULL) { /* avoid access to already used hardware */ 1109 // disable interrupts 1110 snd_ca0106_ptr_write(chip, BASIC_INTERRUPT, 0, 0); 1111 outl(0, chip->port + INTE); 1112 snd_ca0106_ptr_write(chip, EXTENDED_INT_MASK, 0, 0); 1113 udelay(1000); 1114 // disable audio 1115 //outl(HCFG_LOCKSOUNDCACHE, chip->port + HCFG); 1116 outl(0, chip->port + HCFG); 1117 /* FIXME: We need to stop and DMA transfers here. 1118 * But as I am not sure how yet, we cannot from the dma pages. 1119 * So we can fix: snd-malloc: Memory leak? pages not freed = 8 1120 */ 1143 if (chip->res_port != NULL) { 1144 /* avoid access to already used hardware */ 1145 ca0106_stop_chip(chip); 1121 1146 } 1122 1147 if (chip->irq >= 0) … … 1204 1229 } 1205 1230 1206 static int __devinit snd_ca0106_pcm(struct snd_ca0106 *emu, int device , struct snd_pcm **rpcm)1231 static int __devinit snd_ca0106_pcm(struct snd_ca0106 *emu, int device) 1207 1232 { 1208 1233 struct snd_pcm *pcm; … … 1210 1235 int err; 1211 1236 1212 if (rpcm) 1213 *rpcm = NULL; 1214 if ((err = snd_pcm_new(emu->card, "ca0106", device, 1, 1, &pcm)) < 0) 1237 err = snd_pcm_new(emu->card, "ca0106", device, 1, 1, &pcm); 1238 if (err < 0) 1215 1239 return err; 1216 1240 … … 1239 1263 pcm->dev_subclass = SNDRV_PCM_SUBCLASS_GENERIC_MIX; 1240 1264 strcpy(pcm->name, "CA0106"); 1241 emu->pcm = pcm;1242 1265 1243 1266 for(substream = pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream; … … 1261 1284 } 1262 1285 1263 if (rpcm) 1264 *rpcm = pcm; 1286 emu->pcm[device] = pcm; 1265 1287 1266 1288 return 0; … … 1302 1324 }; 1303 1325 1304 static int __devinit snd_ca0106_create(int dev, struct snd_card *card, 1305 struct pci_dev *pci, 1306 struct snd_ca0106 **rchip) 1307 { 1308 struct snd_ca0106 *chip; 1309 struct snd_ca0106_details *c; 1310 int err; 1326 static void ca0106_init_chip(struct snd_ca0106 *chip, int resume) 1327 { 1311 1328 int ch; 1312 static struct snd_device_ops ops = { 1313 .dev_free = snd_ca0106_dev_free, 1314 }; 1315 1316 *rchip = NULL; 1317 1318 if ((err = pci_enable_device(pci)) < 0) 1319 return err; 1320 if (pci_set_dma_mask(pci, DMA_32BIT_MASK) < 0 || 1321 pci_set_consistent_dma_mask(pci, DMA_32BIT_MASK) < 0) { 1322 printk(KERN_ERR "error to set 32bit mask DMA\n"); 1323 pci_disable_device(pci); 1324 return -ENXIO; 1325 } 1326 1327 chip = kzalloc(sizeof(*chip), GFP_KERNEL); 1328 if (chip == NULL) { 1329 pci_disable_device(pci); 1330 return -ENOMEM; 1331 } 1332 1333 chip->card = card; 1334 chip->pci = pci; 1335 chip->irq = -1; 1336 1337 spin_lock_init(&chip->emu_lock); 1338 1339 chip->port = pci_resource_start(pci, 0); 1340 if ((chip->res_port = request_region(chip->port, 0x20, 1341 "snd_ca0106")) == NULL) { 1342 snd_ca0106_free(chip); 1343 printk(KERN_ERR "cannot allocate the port\n"); 1344 return -EBUSY; 1345 } 1346 1347 if (request_irq(pci->irq, snd_ca0106_interrupt, 1348 IRQF_SHARED, "snd_ca0106", chip)) { 1349 snd_ca0106_free(chip); 1350 printk(KERN_ERR "cannot grab irq\n"); 1351 return -EBUSY; 1352 } 1353 chip->irq = pci->irq; 1354 1355 /* This stores the periods table. */ 1356 if(snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci), 1024, &chip->buffer) < 0) { 1357 snd_ca0106_free(chip); 1358 return -ENOMEM; 1359 } 1360 1361 pci_set_master(pci); 1362 /* read serial */ 1363 pci_read_config_dword(pci, PCI_SUBSYSTEM_VENDOR_ID, &chip->serial); 1364 pci_read_config_word(pci, PCI_SUBSYSTEM_ID, &chip->model); 1365 #if 1 1366 printk(KERN_INFO "snd-ca0106: Model %04x Rev %08x Serial %08x\n", chip->model, 1367 #ifndef TARGET_OS2 1368 pci->revision, chip->serial); 1369 #else 1370 snd_pci_revision(pci), chip->serial); 1371 #endif 1372 #endif 1373 strcpy(card->driver, "CA0106"); 1374 strcpy(card->shortname, "CA0106"); 1375 1376 for (c = ca0106_chip_details; c->serial; c++) { 1377 if (subsystem[dev]) { 1378 if (c->serial == subsystem[dev]) 1379 break; 1380 } else if (c->serial == chip->serial) 1381 break; 1382 } 1383 chip->details = c; 1384 if (subsystem[dev]) { 1385 printk(KERN_INFO "snd-ca0106: Sound card name=%s, subsystem=0x%x. Forced to subsystem=0x%x\n", 1386 c->name, chip->serial, subsystem[dev]); 1387 } 1388 1389 sprintf(card->longname, "%s at 0x%lx irq %i", 1390 c->name, chip->port, chip->irq); 1329 unsigned int def_bits; 1391 1330 1392 1331 outl(0, chip->port + INTE); … … 1406 1345 * P = 0 (Consumer) 1407 1346 */ 1408 snd_ca0106_ptr_write(chip, SPCS0, 0, 1409 chip->spdif_bits[0] = 1410 SPCS_CLKACCY_1000PPM | SPCS_SAMPLERATE_48 | 1411 SPCS_CHANNELNUM_LEFT | SPCS_SOURCENUM_UNSPEC | 1412 SPCS_GENERATIONSTATUS | 0x00001200 | 1413 0x00000000 | SPCS_EMPHASIS_NONE | SPCS_COPYRIGHT); 1347 def_bits = 1348 SPCS_CLKACCY_1000PPM | SPCS_SAMPLERATE_48 | 1349 SPCS_CHANNELNUM_LEFT | SPCS_SOURCENUM_UNSPEC | 1350 SPCS_GENERATIONSTATUS | 0x00001200 | 1351 0x00000000 | SPCS_EMPHASIS_NONE | SPCS_COPYRIGHT; 1352 if (!resume) { 1353 chip->spdif_str_bits[0] = chip->spdif_bits[0] = def_bits; 1354 chip->spdif_str_bits[1] = chip->spdif_bits[1] = def_bits; 1355 chip->spdif_str_bits[2] = chip->spdif_bits[2] = def_bits; 1356 chip->spdif_str_bits[3] = chip->spdif_bits[3] = def_bits; 1357 } 1414 1358 /* Only SPCS1 has been tested */ 1415 snd_ca0106_ptr_write(chip, SPCS1, 0, 1416 chip->spdif_bits[1] = 1417 SPCS_CLKACCY_1000PPM | SPCS_SAMPLERATE_48 | 1418 SPCS_CHANNELNUM_LEFT | SPCS_SOURCENUM_UNSPEC | 1419 SPCS_GENERATIONSTATUS | 0x00001200 | 1420 0x00000000 | SPCS_EMPHASIS_NONE | SPCS_COPYRIGHT); 1421 snd_ca0106_ptr_write(chip, SPCS2, 0, 1422 chip->spdif_bits[2] = 1423 SPCS_CLKACCY_1000PPM | SPCS_SAMPLERATE_48 | 1424 SPCS_CHANNELNUM_LEFT | SPCS_SOURCENUM_UNSPEC | 1425 SPCS_GENERATIONSTATUS | 0x00001200 | 1426 0x00000000 | SPCS_EMPHASIS_NONE | SPCS_COPYRIGHT); 1427 snd_ca0106_ptr_write(chip, SPCS3, 0, 1428 chip->spdif_bits[3] = 1429 SPCS_CLKACCY_1000PPM | SPCS_SAMPLERATE_48 | 1430 SPCS_CHANNELNUM_LEFT | SPCS_SOURCENUM_UNSPEC | 1431 SPCS_GENERATIONSTATUS | 0x00001200 | 1432 0x00000000 | SPCS_EMPHASIS_NONE | SPCS_COPYRIGHT); 1359 snd_ca0106_ptr_write(chip, SPCS1, 0, chip->spdif_str_bits[1]); 1360 snd_ca0106_ptr_write(chip, SPCS0, 0, chip->spdif_str_bits[0]); 1361 snd_ca0106_ptr_write(chip, SPCS2, 0, chip->spdif_str_bits[2]); 1362 snd_ca0106_ptr_write(chip, SPCS3, 0, chip->spdif_str_bits[3]); 1433 1363 1434 1364 snd_ca0106_ptr_write(chip, PLAYBACK_MUTE, 0, 0x00fc0000); … … 1438 1368 outb(AC97_REC_GAIN, chip->port + AC97ADDRESS); 1439 1369 outw(0x8000, chip->port + AC97DATA); 1440 #if 0 1370 #if 0 /* FIXME: what are these? */ 1441 1371 snd_ca0106_ptr_write(chip, SPCS0, 0, 0x2108006); 1442 1372 snd_ca0106_ptr_write(chip, 0x42, 0, 0x2108006); … … 1445 1375 #endif 1446 1376 1447 //snd_ca0106_ptr_write(chip, SPDIF_SELECT2, 0, 0xf0f003f); /* OSS drivers set this. */ 1377 /* OSS drivers set this. */ 1378 /* snd_ca0106_ptr_write(chip, SPDIF_SELECT2, 0, 0xf0f003f); */ 1379 1448 1380 /* Analog or Digital output */ 1449 1381 snd_ca0106_ptr_write(chip, SPDIF_SELECT1, 0, 0xf); 1450 snd_ca0106_ptr_write(chip, SPDIF_SELECT2, 0, 0x000f0000); /* 0x0b000000 for digital, 0x000b0000 for analog, from win2000 drivers. Use 0x000f0000 for surround71 */ 1382 /* 0x0b000000 for digital, 0x000b0000 for analog, from win2000 drivers. 1383 * Use 0x000f0000 for surround71 1384 */ 1385 snd_ca0106_ptr_write(chip, SPDIF_SELECT2, 0, 0x000f0000); 1386 1451 1387 chip->spdif_enable = 0; /* Set digital SPDIF output off */ 1452 //snd_ca0106_ptr_write(chip, 0x45, 0, 0); /* Analogue out */ 1453 //snd_ca0106_ptr_write(chip, 0x45, 0, 0xf00); /* Digital out */ 1454 1455 snd_ca0106_ptr_write(chip, CAPTURE_CONTROL, 0, 0x40c81000); /* goes to 0x40c80000 when doing SPDIF IN/OUT */ 1456 snd_ca0106_ptr_write(chip, CAPTURE_CONTROL, 1, 0xffffffff); /* (Mute) CAPTURE feedback into PLAYBACK volume. Only lower 16 bits matter. */ 1457 snd_ca0106_ptr_write(chip, CAPTURE_CONTROL, 2, 0x30300000); /* SPDIF IN Volume */ 1458 snd_ca0106_ptr_write(chip, CAPTURE_CONTROL, 3, 0x00700000); /* SPDIF IN Volume, 0x70 = (vol & 0x3f) | 0x40 */ 1388 /*snd_ca0106_ptr_write(chip, 0x45, 0, 0);*/ /* Analogue out */ 1389 /*snd_ca0106_ptr_write(chip, 0x45, 0, 0xf00);*/ /* Digital out */ 1390 1391 /* goes to 0x40c80000 when doing SPDIF IN/OUT */ 1392 snd_ca0106_ptr_write(chip, CAPTURE_CONTROL, 0, 0x40c81000); 1393 /* (Mute) CAPTURE feedback into PLAYBACK volume. 1394 * Only lower 16 bits matter. 1395 */ 1396 snd_ca0106_ptr_write(chip, CAPTURE_CONTROL, 1, 0xffffffff); 1397 /* SPDIF IN Volume */ 1398 snd_ca0106_ptr_write(chip, CAPTURE_CONTROL, 2, 0x30300000); 1399 /* SPDIF IN Volume, 0x70 = (vol & 0x3f) | 0x40 */ 1400 snd_ca0106_ptr_write(chip, CAPTURE_CONTROL, 3, 0x00700000); 1401 1459 1402 snd_ca0106_ptr_write(chip, PLAYBACK_ROUTING1, 0, 0x32765410); 1460 1403 snd_ca0106_ptr_write(chip, PLAYBACK_ROUTING2, 0, 0x76767676); 1461 1404 snd_ca0106_ptr_write(chip, CAPTURE_ROUTING1, 0, 0x32765410); 1462 1405 snd_ca0106_ptr_write(chip, CAPTURE_ROUTING2, 0, 0x76767676); 1463 for(ch = 0; ch < 4; ch++) { 1464 snd_ca0106_ptr_write(chip, CAPTURE_VOLUME1, ch, 0x30303030); /* Only high 16 bits matter */ 1406 1407 for (ch = 0; ch < 4; ch++) { 1408 /* Only high 16 bits matter */ 1409 snd_ca0106_ptr_write(chip, CAPTURE_VOLUME1, ch, 0x30303030); 1465 1410 snd_ca0106_ptr_write(chip, CAPTURE_VOLUME2, ch, 0x30303030); 1466 //snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME1, ch, 0x40404040); /* Mute */ 1467 //snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME2, ch, 0x40404040); /* Mute */ 1468 snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME1, ch, 0xffffffff); /* Mute */ 1469 snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME2, ch, 0xffffffff); /* Mute */ 1411 #if 0 /* Mute */ 1412 snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME1, ch, 0x40404040); 1413 snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME2, ch, 0x40404040); 1414 snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME1, ch, 0xffffffff); 1415 snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME2, ch, 0xffffffff); 1416 #endif 1470 1417 } 1471 1418 if (chip->details->i2c_adc == 1) { … … 1473 1420 snd_ca0106_ptr_write(chip, CAPTURE_SOURCE, 0x0, 0x333300e4); 1474 1421 /* Default to CAPTURE_SOURCE to i2s in */ 1475 chip->capture_source = 3; 1422 if (!resume) 1423 chip->capture_source = 3; 1476 1424 } else if (chip->details->ac97 == 1) { 1477 1425 /* Default to AC97 in */ 1478 1426 snd_ca0106_ptr_write(chip, CAPTURE_SOURCE, 0x0, 0x444400e4); 1479 1427 /* Default to CAPTURE_SOURCE to AC97 in */ 1480 chip->capture_source = 4; 1428 if (!resume) 1429 chip->capture_source = 4; 1481 1430 } else { 1482 1431 /* Select MIC, Line in, TAD in, AUX in */ 1483 1432 snd_ca0106_ptr_write(chip, CAPTURE_SOURCE, 0x0, 0x333300e4); 1484 1433 /* Default to Set CAPTURE_SOURCE to i2s in */ 1485 chip->capture_source = 3; 1486 } 1487 1488 if (chip->details->gpio_type == 2) { /* The SB0438 use GPIO differently. */ 1489 /* FIXME: Still need to find out what the other GPIO bits do. E.g. For digital spdif out. */ 1434 if (!resume) 1435 chip->capture_source = 3; 1436 } 1437 1438 if (chip->details->gpio_type == 2) { 1439 /* The SB0438 use GPIO differently. */ 1440 /* FIXME: Still need to find out what the other GPIO bits do. 1441 * E.g. For digital spdif out. 1442 */ 1490 1443 outl(0x0, chip->port+GPIO); 1491 / /outl(0x00f0e000, chip->port+GPIO);/* Analog */1444 /* outl(0x00f0e000, chip->port+GPIO); */ /* Analog */ 1492 1445 outl(0x005f5301, chip->port+GPIO); /* Analog */ 1493 } else if (chip->details->gpio_type == 1) { /* The SB0410 and SB0413 use GPIO differently. */ 1494 /* FIXME: Still need to find out what the other GPIO bits do. E.g. For digital spdif out. */ 1446 } else if (chip->details->gpio_type == 1) { 1447 /* The SB0410 and SB0413 use GPIO differently. */ 1448 /* FIXME: Still need to find out what the other GPIO bits do. 1449 * E.g. For digital spdif out. 1450 */ 1495 1451 outl(0x0, chip->port+GPIO); 1496 / /outl(0x00f0e000, chip->port+GPIO);/* Analog */1452 /* outl(0x00f0e000, chip->port+GPIO); */ /* Analog */ 1497 1453 outl(0x005f5301, chip->port+GPIO); /* Analog */ 1498 1454 } else { 1499 1455 outl(0x0, chip->port+GPIO); 1500 1456 outl(0x005f03a3, chip->port+GPIO); /* Analog */ 1501 / /outl(0x005f02a2, chip->port+GPIO);/* SPDIF */1457 /* outl(0x005f02a2, chip->port+GPIO); */ /* SPDIF */ 1502 1458 } 1503 1459 snd_ca0106_intr_enable(chip, 0x105); /* Win2000 uses 0x1e0 */ 1504 1460 1505 //outl(HCFG_LOCKSOUNDCACHE|HCFG_AUDIOENABLE, chip->port+HCFG); 1506 //outl(0x00001409, chip->port+HCFG); /* 0x1000 causes AC3 to fails. Maybe it effects 24 bit output. */ 1507 //outl(0x00000009, chip->port+HCFG); 1508 outl(HCFG_AC97 | HCFG_AUDIOENABLE, chip->port+HCFG); /* AC97 2.0, Enable outputs. */ 1509 1510 if (chip->details->i2c_adc == 1) { /* The SB0410 and SB0413 use I2C to control ADC. */ 1461 /* outl(HCFG_LOCKSOUNDCACHE|HCFG_AUDIOENABLE, chip->port+HCFG); */ 1462 /* 0x1000 causes AC3 to fails. Maybe it effects 24 bit output. */ 1463 /* outl(0x00001409, chip->port+HCFG); */ 1464 /* outl(0x00000009, chip->port+HCFG); */ 1465 /* AC97 2.0, Enable outputs. */ 1466 outl(HCFG_AC97 | HCFG_AUDIOENABLE, chip->port+HCFG); 1467 1468 if (chip->details->i2c_adc == 1) { 1469 /* The SB0410 and SB0413 use I2C to control ADC. */ 1511 1470 int size, n; 1512 1471 1513 1472 size = ARRAY_SIZE(i2c_adc_init); 1514 //snd_printk("I2C:array size=0x%x\n", size); 1515 for (n=0; n < size; n++) { 1516 snd_ca0106_i2c_write(chip, i2c_adc_init[n][0], i2c_adc_init[n][1]); 1473 /* snd_printk("I2C:array size=0x%x\n", size); */ 1474 for (n = 0; n < size; n++) 1475 snd_ca0106_i2c_write(chip, i2c_adc_init[n][0], 1476 i2c_adc_init[n][1]); 1477 for (n = 0; n < 4; n++) { 1478 chip->i2c_capture_volume[n][0] = 0xcf; 1479 chip->i2c_capture_volume[n][1] = 0xcf; 1517 1480 } 1518 for (n=0; n < 4; n++) { 1519 chip->i2c_capture_volume[n][0]= 0xcf; 1520 chip->i2c_capture_volume[n][1]= 0xcf; 1521 } 1522 chip->i2c_capture_source=2; /* Line in */ 1523 //snd_ca0106_i2c_write(chip, ADC_MUX, ADC_MUX_LINEIN); /* Enable Line-in capture. MIC in currently untested. */ 1524 } 1525 if (chip->details->spi_dac == 1) { /* The SB0570 use SPI to control DAC. */ 1481 chip->i2c_capture_source = 2; /* Line in */ 1482 /* Enable Line-in capture. MIC in currently untested. */ 1483 /* snd_ca0106_i2c_write(chip, ADC_MUX, ADC_MUX_LINEIN); */ 1484 } 1485 1486 if (chip->details->spi_dac == 1) { 1487 /* The SB0570 use SPI to control DAC. */ 1526 1488 int size, n; 1527 1489 … … 1535 1497 } 1536 1498 } 1537 1538 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, 1539 chip, &ops)) < 0) { 1499 } 1500 1501 static void ca0106_stop_chip(struct snd_ca0106 *chip) 1502 { 1503 /* disable interrupts */ 1504 snd_ca0106_ptr_write(chip, BASIC_INTERRUPT, 0, 0); 1505 outl(0, chip->port + INTE); 1506 snd_ca0106_ptr_write(chip, EXTENDED_INT_MASK, 0, 0); 1507 udelay(1000); 1508 /* disable audio */ 1509 /* outl(HCFG_LOCKSOUNDCACHE, chip->port + HCFG); */ 1510 outl(0, chip->port + HCFG); 1511 /* FIXME: We need to stop and DMA transfers here. 1512 * But as I am not sure how yet, we cannot from the dma pages. 1513 * So we can fix: snd-malloc: Memory leak? pages not freed = 8 1514 */ 1515 } 1516 1517 static int __devinit snd_ca0106_create(int dev, struct snd_card *card, 1518 struct pci_dev *pci, 1519 struct snd_ca0106 **rchip) 1520 { 1521 struct snd_ca0106 *chip; 1522 struct snd_ca0106_details *c; 1523 int err; 1524 static struct snd_device_ops ops = { 1525 .dev_free = snd_ca0106_dev_free, 1526 }; 1527 1528 *rchip = NULL; 1529 1530 err = pci_enable_device(pci); 1531 if (err < 0) 1532 return err; 1533 if (pci_set_dma_mask(pci, DMA_32BIT_MASK) < 0 || 1534 pci_set_consistent_dma_mask(pci, DMA_32BIT_MASK) < 0) { 1535 printk(KERN_ERR "error to set 32bit mask DMA\n"); 1536 pci_disable_device(pci); 1537 return -ENXIO; 1538 } 1539 1540 chip = kzalloc(sizeof(*chip), GFP_KERNEL); 1541 if (chip == NULL) { 1542 pci_disable_device(pci); 1543 return -ENOMEM; 1544 } 1545 1546 chip->card = card; 1547 chip->pci = pci; 1548 chip->irq = -1; 1549 1550 spin_lock_init(&chip->emu_lock); 1551 1552 chip->port = pci_resource_start(pci, 0); 1553 chip->res_port = request_region(chip->port, 0x20, "snd_ca0106"); 1554 if (!chip->res_port) { 1555 snd_ca0106_free(chip); 1556 printk(KERN_ERR "cannot allocate the port\n"); 1557 return -EBUSY; 1558 } 1559 1560 if (request_irq(pci->irq, snd_ca0106_interrupt, 1561 IRQF_SHARED, "snd_ca0106", chip)) { 1562 snd_ca0106_free(chip); 1563 printk(KERN_ERR "cannot grab irq\n"); 1564 return -EBUSY; 1565 } 1566 chip->irq = pci->irq; 1567 1568 /* This stores the periods table. */ 1569 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci), 1570 1024, &chip->buffer) < 0) { 1571 snd_ca0106_free(chip); 1572 return -ENOMEM; 1573 } 1574 1575 pci_set_master(pci); 1576 /* read serial */ 1577 pci_read_config_dword(pci, PCI_SUBSYSTEM_VENDOR_ID, &chip->serial); 1578 pci_read_config_word(pci, PCI_SUBSYSTEM_ID, &chip->model); 1579 printk(KERN_INFO "snd-ca0106: Model %04x Rev %08x Serial %08x\n", 1580 #ifndef TARGET_OS2 1581 chip->model, pci->revision, chip->serial); 1582 #else 1583 chip->model, snd_pci_revision(pci), chip->serial); 1584 #endif 1585 strcpy(card->driver, "CA0106"); 1586 strcpy(card->shortname, "CA0106"); 1587 1588 for (c = ca0106_chip_details; c->serial; c++) { 1589 if (subsystem[dev]) { 1590 if (c->serial == subsystem[dev]) 1591 break; 1592 } else if (c->serial == chip->serial) 1593 break; 1594 } 1595 chip->details = c; 1596 if (subsystem[dev]) { 1597 printk(KERN_INFO "snd-ca0106: Sound card name=%s, " 1598 "subsystem=0x%x. Forced to subsystem=0x%x\n", 1599 c->name, chip->serial, subsystem[dev]); 1600 } 1601 1602 sprintf(card->longname, "%s at 0x%lx irq %i", 1603 c->name, chip->port, chip->irq); 1604 1605 ca0106_init_chip(chip, 0); 1606 1607 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops); 1608 if (err < 0) { 1540 1609 snd_ca0106_free(chip); 1541 1610 return err; … … 1634 1703 struct snd_card *card; 1635 1704 struct snd_ca0106 *chip; 1636 int err;1705 int i, err; 1637 1706 1638 1707 if (dev >= SNDRV_CARDS) … … 1643 1712 } 1644 1713 1645 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0); 1646 if (card == NULL) 1647 return -ENOMEM; 1648 1649 if ((err = snd_ca0106_create(dev, card, pci, &chip)) < 0) { 1650 snd_card_free(card); 1714 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 1715 if (err < 0) 1651 1716 return err; 1652 } 1653 1654 if ((err = snd_ca0106_pcm(chip, 0, NULL)) < 0) { 1655 snd_card_free(card); 1656 return err; 1657 } 1658 if ((err = snd_ca0106_pcm(chip, 1, NULL)) < 0) { 1659 snd_card_free(card); 1660 return err; 1661 } 1662 if ((err = snd_ca0106_pcm(chip, 2, NULL)) < 0) { 1663 snd_card_free(card); 1664 return err; 1665 } 1666 if ((err = snd_ca0106_pcm(chip, 3, NULL)) < 0) { 1667 snd_card_free(card); 1668 return err; 1669 } 1670 if (chip->details->ac97 == 1) { /* The SB0410 and SB0413 do not have an AC97 chip. */ 1671 if ((err = snd_ca0106_ac97(chip)) < 0) { 1672 snd_card_free(card); 1673 return err; 1674 } 1675 } 1676 if ((err = snd_ca0106_mixer(chip)) < 0) { 1677 snd_card_free(card); 1678 return err; 1679 } 1717 1718 err = snd_ca0106_create(dev, card, pci, &chip); 1719 if (err < 0) 1720 goto error; 1721 card->private_data = chip; 1722 1723 for (i = 0; i < 4; i++) { 1724 err = snd_ca0106_pcm(chip, i); 1725 if (err < 0) 1726 goto error; 1727 } 1728 1729 if (chip->details->ac97 == 1) { 1730 /* The SB0410 and SB0413 do not have an AC97 chip. */ 1731 err = snd_ca0106_ac97(chip); 1732 if (err < 0) 1733 goto error; 1734 } 1735 err = snd_ca0106_mixer(chip); 1736 if (err < 0) 1737 goto error; 1680 1738 1681 1739 snd_printdd("ca0106: probe for MIDI channel A ..."); 1682 if ((err = snd_ca0106_midi(chip,CA0106_MIDI_CHAN_A)) < 0) { 1683 snd_card_free(card); 1684 snd_printdd(" failed, err=0x%x\n",err); 1685 return err; 1686 } 1740 err = snd_ca0106_midi(chip, CA0106_MIDI_CHAN_A); 1741 if (err < 0) 1742 goto error; 1687 1743 snd_printdd(" done.\n"); 1688 1744 … … 1693 1749 snd_card_set_dev(card, &pci->dev); 1694 1750 1695 if ((err = snd_card_register(card)) < 0) { 1696 snd_card_free(card); 1697 return err; 1698 } 1751 err = snd_card_register(card); 1752 if (err < 0) 1753 goto error; 1699 1754 1700 1755 pci_set_drvdata(pci, card); 1701 1756 dev++; 1702 1757 return 0; 1758 1759 error: 1760 snd_card_free(card); 1761 return err; 1703 1762 } 1704 1763 … … 1708 1767 pci_set_drvdata(pci, NULL); 1709 1768 } 1769 1770 #ifdef CONFIG_PM 1771 static int snd_ca0106_suspend(struct pci_dev *pci, pm_message_t state) 1772 { 1773 struct snd_card *card = pci_get_drvdata(pci); 1774 struct snd_ca0106 *chip = card->private_data; 1775 int i; 1776 1777 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); 1778 for (i = 0; i < 4; i++) 1779 snd_pcm_suspend_all(chip->pcm[i]); 1780 if (chip->details->ac97) 1781 snd_ac97_suspend(chip->ac97); 1782 snd_ca0106_mixer_suspend(chip); 1783 1784 ca0106_stop_chip(chip); 1785 1786 pci_disable_device(pci); 1787 pci_save_state(pci); 1788 pci_set_power_state(pci, pci_choose_state(pci, state)); 1789 return 0; 1790 } 1791 1792 static int snd_ca0106_resume(struct pci_dev *pci) 1793 { 1794 struct snd_card *card = pci_get_drvdata(pci); 1795 struct snd_ca0106 *chip = card->private_data; 1796 int i; 1797 1798 pci_set_power_state(pci, PCI_D0); 1799 pci_restore_state(pci); 1800 1801 if (pci_enable_device(pci) < 0) { 1802 snd_card_disconnect(card); 1803 return -EIO; 1804 } 1805 1806 pci_set_master(pci); 1807 1808 ca0106_init_chip(chip, 1); 1809 1810 if (chip->details->ac97) 1811 snd_ac97_resume(chip->ac97); 1812 snd_ca0106_mixer_resume(chip); 1813 if (chip->details->spi_dac) { 1814 for (i = 0; i < ARRAY_SIZE(chip->spi_dac_reg); i++) 1815 snd_ca0106_spi_write(chip, chip->spi_dac_reg[i]); 1816 } 1817 1818 snd_power_change_state(card, SNDRV_CTL_POWER_D0); 1819 return 0; 1820 } 1821 #endif 1710 1822 1711 1823 // PCI IDs … … 1722 1834 .probe = snd_ca0106_probe, 1723 1835 .remove = __devexit_p(snd_ca0106_remove), 1836 #ifdef CONFIG_PM 1837 .suspend = snd_ca0106_suspend, 1838 .resume = snd_ca0106_resume, 1839 #endif 1724 1840 }; 1725 1841 -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/ca0106/ca0106_mixer.c ¶
r399 r410 76 76 #include "ca0106.h" 77 77 78 static void ca0106_spdif_enable(struct snd_ca0106 *emu) 79 { 80 unsigned int val; 81 82 if (emu->spdif_enable) { 83 /* Digital */ 84 snd_ca0106_ptr_write(emu, SPDIF_SELECT1, 0, 0xf); 85 snd_ca0106_ptr_write(emu, SPDIF_SELECT2, 0, 0x0b000000); 86 val = snd_ca0106_ptr_read(emu, CAPTURE_CONTROL, 0) & ~0x1000; 87 snd_ca0106_ptr_write(emu, CAPTURE_CONTROL, 0, val); 88 val = inl(emu->port + GPIO) & ~0x101; 89 outl(val, emu->port + GPIO); 90 91 } else { 92 /* Analog */ 93 snd_ca0106_ptr_write(emu, SPDIF_SELECT1, 0, 0xf); 94 snd_ca0106_ptr_write(emu, SPDIF_SELECT2, 0, 0x000f0000); 95 val = snd_ca0106_ptr_read(emu, CAPTURE_CONTROL, 0) | 0x1000; 96 snd_ca0106_ptr_write(emu, CAPTURE_CONTROL, 0, val); 97 val = inl(emu->port + GPIO) | 0x101; 98 outl(val, emu->port + GPIO); 99 } 100 } 101 102 static void ca0106_set_capture_source(struct snd_ca0106 *emu) 103 { 104 unsigned int val = emu->capture_source; 105 unsigned int source, mask; 106 source = (val << 28) | (val << 24) | (val << 20) | (val << 16); 107 mask = snd_ca0106_ptr_read(emu, CAPTURE_SOURCE, 0) & 0xffff; 108 snd_ca0106_ptr_write(emu, CAPTURE_SOURCE, 0, source | mask); 109 } 110 111 static void ca0106_set_i2c_capture_source(struct snd_ca0106 *emu, 112 unsigned int val, int force) 113 { 114 unsigned int ngain, ogain; 115 u32 source; 116 117 snd_ca0106_i2c_write(emu, ADC_MUX, 0); /* Mute input */ 118 ngain = emu->i2c_capture_volume[val][0]; /* Left */ 119 ogain = emu->i2c_capture_volume[emu->i2c_capture_source][0]; /* Left */ 120 if (force || ngain != ogain) 121 snd_ca0106_i2c_write(emu, ADC_ATTEN_ADCL, ngain & 0xff); 122 ngain = emu->i2c_capture_volume[val][1]; /* Right */ 123 ogain = emu->i2c_capture_volume[emu->i2c_capture_source][1]; /* Right */ 124 if (force || ngain != ogain) 125 snd_ca0106_i2c_write(emu, ADC_ATTEN_ADCR, ngain & 0xff); 126 source = 1 << val; 127 snd_ca0106_i2c_write(emu, ADC_MUX, source); /* Set source */ 128 emu->i2c_capture_source = val; 129 } 130 131 static void ca0106_set_capture_mic_line_in(struct snd_ca0106 *emu) 132 { 133 u32 tmp; 134 135 if (emu->capture_mic_line_in) { 136 /* snd_ca0106_i2c_write(emu, ADC_MUX, 0); */ /* Mute input */ 137 tmp = inl(emu->port+GPIO) & ~0x400; 138 tmp = tmp | 0x400; 139 outl(tmp, emu->port+GPIO); 140 /* snd_ca0106_i2c_write(emu, ADC_MUX, ADC_MUX_MIC); */ 141 } else { 142 /* snd_ca0106_i2c_write(emu, ADC_MUX, 0); */ /* Mute input */ 143 tmp = inl(emu->port+GPIO) & ~0x400; 144 outl(tmp, emu->port+GPIO); 145 /* snd_ca0106_i2c_write(emu, ADC_MUX, ADC_MUX_LINEIN); */ 146 } 147 } 148 149 static void ca0106_set_spdif_bits(struct snd_ca0106 *emu, int idx) 150 { 151 snd_ca0106_ptr_write(emu, SPCS0 + idx, 0, emu->spdif_str_bits[idx]); 152 } 153 154 /* 155 */ 78 156 static const DECLARE_TLV_DB_SCALE(snd_ca0106_db_scale1, -5175, 25, 1); 79 157 static const DECLARE_TLV_DB_SCALE(snd_ca0106_db_scale2, -10350, 50, 1); … … 96 174 unsigned int val; 97 175 int change = 0; 98 u32 mask;99 176 100 177 val = !!ucontrol->value.integer.value[0]; … … 102 179 if (change) { 103 180 emu->spdif_enable = val; 104 if (val) { 105 /* Digital */ 106 snd_ca0106_ptr_write(emu, SPDIF_SELECT1, 0, 0xf); 107 snd_ca0106_ptr_write(emu, SPDIF_SELECT2, 0, 0x0b000000); 108 snd_ca0106_ptr_write(emu, CAPTURE_CONTROL, 0, 109 snd_ca0106_ptr_read(emu, CAPTURE_CONTROL, 0) & ~0x1000); 110 mask = inl(emu->port + GPIO) & ~0x101; 111 outl(mask, emu->port + GPIO); 112 113 } else { 114 /* Analog */ 115 snd_ca0106_ptr_write(emu, SPDIF_SELECT1, 0, 0xf); 116 snd_ca0106_ptr_write(emu, SPDIF_SELECT2, 0, 0x000f0000); 117 snd_ca0106_ptr_write(emu, CAPTURE_CONTROL, 0, 118 snd_ca0106_ptr_read(emu, CAPTURE_CONTROL, 0) | 0x1000); 119 mask = inl(emu->port + GPIO) | 0x101; 120 outl(mask, emu->port + GPIO); 121 } 181 ca0106_spdif_enable(emu); 122 182 } 123 183 return change; … … 155 215 unsigned int val; 156 216 int change = 0; 157 u32 mask;158 u32 source;159 217 160 218 val = ucontrol->value.enumerated.item[0] ; … … 164 222 if (change) { 165 223 emu->capture_source = val; 166 source = (val << 28) | (val << 24) | (val << 20) | (val << 16); 167 mask = snd_ca0106_ptr_read(emu, CAPTURE_SOURCE, 0) & 0xffff; 168 snd_ca0106_ptr_write(emu, CAPTURE_SOURCE, 0, source | mask); 224 ca0106_set_capture_source(emu); 169 225 } 170 226 return change; … … 201 257 struct snd_ca0106 *emu = snd_kcontrol_chip(kcontrol); 202 258 unsigned int source_id; 203 unsigned int ngain, ogain;204 259 int change = 0; 205 u32 source;206 260 /* If the capture source has changed, 207 261 * update the capture volume from the cached value … … 213 267 change = (emu->i2c_capture_source != source_id); 214 268 if (change) { 215 snd_ca0106_i2c_write(emu, ADC_MUX, 0); /* Mute input */ 216 ngain = emu->i2c_capture_volume[source_id][0]; /* Left */ 217 ogain = emu->i2c_capture_volume[emu->i2c_capture_source][0]; /* Left */ 218 if (ngain != ogain) 219 snd_ca0106_i2c_write(emu, ADC_ATTEN_ADCL, ((ngain) & 0xff)); 220 ngain = emu->i2c_capture_volume[source_id][1]; /* Left */ 221 ogain = emu->i2c_capture_volume[emu->i2c_capture_source][1]; /* Left */ 222 if (ngain != ogain) 223 snd_ca0106_i2c_write(emu, ADC_ATTEN_ADCR, ((ngain) & 0xff)); 224 source = 1 << source_id; 225 snd_ca0106_i2c_write(emu, ADC_MUX, source); /* Set source */ 226 emu->i2c_capture_source = source_id; 269 ca0106_set_i2c_capture_source(emu, source_id, 0); 227 270 } 228 271 return change; … … 272 315 unsigned int val; 273 316 int change = 0; 274 u32 tmp;275 317 276 318 val = ucontrol->value.enumerated.item[0] ; … … 280 322 if (change) { 281 323 emu->capture_mic_line_in = val; 282 if (val) { 283 //snd_ca0106_i2c_write(emu, ADC_MUX, 0); /* Mute input */ 284 tmp = inl(emu->port+GPIO) & ~0x400; 285 tmp = tmp | 0x400; 286 outl(tmp, emu->port+GPIO); 287 //snd_ca0106_i2c_write(emu, ADC_MUX, ADC_MUX_MIC); 288 } else { 289 //snd_ca0106_i2c_write(emu, ADC_MUX, 0); /* Mute input */ 290 tmp = inl(emu->port+GPIO) & ~0x400; 291 outl(tmp, emu->port+GPIO); 292 //snd_ca0106_i2c_write(emu, ADC_MUX, ADC_MUX_LINEIN); 293 } 324 ca0106_set_capture_mic_line_in(emu); 294 325 } 295 326 return change; … … 323 354 } 324 355 325 static int snd_ca0106_spdif_get(struct snd_kcontrol *kcontrol, 356 static void decode_spdif_bits(unsigned char *status, unsigned int bits) 357 { 358 status[0] = (bits >> 0) & 0xff; 359 status[1] = (bits >> 8) & 0xff; 360 status[2] = (bits >> 16) & 0xff; 361 status[3] = (bits >> 24) & 0xff; 362 } 363 364 static int snd_ca0106_spdif_get_default(struct snd_kcontrol *kcontrol, 326 365 struct snd_ctl_elem_value *ucontrol) 327 366 { … … 329 368 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); 330 369 331 ucontrol->value.iec958.status[0] = (emu->spdif_bits[idx] >> 0) & 0xff; 332 ucontrol->value.iec958.status[1] = (emu->spdif_bits[idx] >> 8) & 0xff; 333 ucontrol->value.iec958.status[2] = (emu->spdif_bits[idx] >> 16) & 0xff; 334 ucontrol->value.iec958.status[3] = (emu->spdif_bits[idx] >> 24) & 0xff; 370 decode_spdif_bits(ucontrol->value.iec958.status, 371 emu->spdif_bits[idx]); 372 return 0; 373 } 374 375 static int snd_ca0106_spdif_get_stream(struct snd_kcontrol *kcontrol, 376 struct snd_ctl_elem_value *ucontrol) 377 { 378 struct snd_ca0106 *emu = snd_kcontrol_chip(kcontrol); 379 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); 380 381 decode_spdif_bits(ucontrol->value.iec958.status, 382 emu->spdif_str_bits[idx]); 335 383 return 0; 336 384 } … … 346 394 } 347 395 348 static int snd_ca0106_spdif_put(struct snd_kcontrol *kcontrol, 396 static unsigned int encode_spdif_bits(unsigned char *status) 397 { 398 return ((unsigned int)status[0] << 0) | 399 ((unsigned int)status[1] << 8) | 400 ((unsigned int)status[2] << 16) | 401 ((unsigned int)status[3] << 24); 402 } 403 404 static int snd_ca0106_spdif_put_default(struct snd_kcontrol *kcontrol, 349 405 struct snd_ctl_elem_value *ucontrol) 350 406 { 351 407 struct snd_ca0106 *emu = snd_kcontrol_chip(kcontrol); 352 408 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); 353 int change;354 409 unsigned int val; 355 410 356 val = (ucontrol->value.iec958.status[0] << 0) | 357 (ucontrol->value.iec958.status[1] << 8) | 358 (ucontrol->value.iec958.status[2] << 16) | 359 (ucontrol->value.iec958.status[3] << 24); 360 change = val != emu->spdif_bits[idx]; 361 if (change) { 362 snd_ca0106_ptr_write(emu, SPCS0 + idx, 0, val); 411 val = encode_spdif_bits(ucontrol->value.iec958.status); 412 if (val != emu->spdif_bits[idx]) { 363 413 emu->spdif_bits[idx] = val; 364 } 365 return change; 414 /* FIXME: this isn't safe, but needed to keep the compatibility 415 * with older alsa-lib config 416 */ 417 emu->spdif_str_bits[idx] = val; 418 ca0106_set_spdif_bits(emu, idx); 419 return 1; 420 } 421 return 0; 422 } 423 424 static int snd_ca0106_spdif_put_stream(struct snd_kcontrol *kcontrol, 425 struct snd_ctl_elem_value *ucontrol) 426 { 427 struct snd_ca0106 *emu = snd_kcontrol_chip(kcontrol); 428 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); 429 unsigned int val; 430 431 val = encode_spdif_bits(ucontrol->value.iec958.status); 432 if (val != emu->spdif_str_bits[idx]) { 433 emu->spdif_str_bits[idx] = val; 434 ca0106_set_spdif_bits(emu, idx); 435 return 1; 436 } 437 return 0; 366 438 } 367 439 … … 574 646 .count = 4, 575 647 .info = snd_ca0106_spdif_info, 576 .get = snd_ca0106_spdif_get, 577 .put = snd_ca0106_spdif_put 648 .get = snd_ca0106_spdif_get_default, 649 .put = snd_ca0106_spdif_put_default 650 }, 651 { 652 .iface = SNDRV_CTL_ELEM_IFACE_PCM, 653 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PCM_STREAM), 654 .count = 4, 655 .info = snd_ca0106_spdif_info, 656 .get = snd_ca0106_spdif_get_stream, 657 .put = snd_ca0106_spdif_put_stream 578 658 }, 579 659 }; … … 774 854 } 775 855 856 #ifdef CONFIG_PM 857 struct ca0106_vol_tbl { 858 unsigned int channel_id; 859 unsigned int reg; 860 }; 861 862 static struct ca0106_vol_tbl saved_volumes[NUM_SAVED_VOLUMES] = { 863 { CONTROL_FRONT_CHANNEL, PLAYBACK_VOLUME2 }, 864 { CONTROL_REAR_CHANNEL, PLAYBACK_VOLUME2 }, 865 { CONTROL_CENTER_LFE_CHANNEL, PLAYBACK_VOLUME2 }, 866 { CONTROL_UNKNOWN_CHANNEL, PLAYBACK_VOLUME2 }, 867 { CONTROL_FRONT_CHANNEL, PLAYBACK_VOLUME1 }, 868 { CONTROL_REAR_CHANNEL, PLAYBACK_VOLUME1 }, 869 { CONTROL_CENTER_LFE_CHANNEL, PLAYBACK_VOLUME1 }, 870 { CONTROL_UNKNOWN_CHANNEL, PLAYBACK_VOLUME1 }, 871 { 1, CAPTURE_CONTROL }, 872 }; 873 874 void snd_ca0106_mixer_suspend(struct snd_ca0106 *chip) 875 { 876 int i; 877 878 /* save volumes */ 879 for (i = 0; i < NUM_SAVED_VOLUMES; i++) 880 chip->saved_vol[i] = 881 snd_ca0106_ptr_read(chip, saved_volumes[i].reg, 882 saved_volumes[i].channel_id); 883 } 884 885 void snd_ca0106_mixer_resume(struct snd_ca0106 *chip) 886 { 887 int i; 888 889 for (i = 0; i < NUM_SAVED_VOLUMES; i++) 890 snd_ca0106_ptr_write(chip, saved_volumes[i].reg, 891 saved_volumes[i].channel_id, 892 chip->saved_vol[i]); 893 894 ca0106_spdif_enable(chip); 895 ca0106_set_capture_source(chip); 896 ca0106_set_i2c_capture_source(chip, chip->i2c_capture_source, 1); 897 for (i = 0; i < 4; i++) 898 ca0106_set_spdif_bits(chip, i); 899 if (chip->details->i2c_adc) 900 ca0106_set_capture_mic_line_in(chip); 901 } 902 #endif /* CONFIG_PM */ -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/cmipci.c ¶
r399 r410 3289 3289 } 3290 3290 3291 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);3292 if ( card == NULL)3293 return -ENOMEM;3291 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 3292 if (err < 0) 3293 return err; 3294 3294 3295 3295 switch (pci->device) { -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/cs4281.c ¶
r399 r410 1926 1926 } 1927 1927 1928 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);1929 if ( card == NULL)1930 return -ENOMEM;1928 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 1929 if (err < 0) 1930 return err; 1931 1931 1932 1932 if ((err = snd_cs4281_create(card, pci, &chip, dual_codec[dev])) < 0) { -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/cs46xx/cs46xx.c ¶
r305 r410 92 92 } 93 93 94 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);95 if ( card == NULL)96 return -ENOMEM;94 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 95 if (err < 0) 96 return err; 97 97 if ((err = snd_cs46xx_create(card, pci, 98 98 external_amp[dev], thinkpad[dev], -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/cs46xx/cs46xx_lib.c ¶
r399 r410 3641 3641 struct snd_card *card = pci_get_drvdata(pci); 3642 3642 struct snd_cs46xx *chip = card->private_data; 3643 int i, amp_saved; 3643 int amp_saved; 3644 #ifdef CONFIG_SND_CS46XX_NEW_DSP 3645 int i; 3646 #endif 3644 3647 3645 3648 pci_set_power_state(pci, PCI_D0); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/emu10k1/emu10k1.c ¶
r305 r410 121 121 } 122 122 123 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);124 if ( card == NULL)125 return -ENOMEM;123 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 124 if (err < 0) 125 return err; 126 126 if (max_buffer_size[dev] < 32) 127 127 max_buffer_size[dev] = 32; -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/emu10k1/emu10k1x.c ¶
r399 r410 1549 1549 } 1550 1550 1551 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);1552 if ( card == NULL)1553 return -ENOMEM;1551 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 1552 if (err < 0) 1553 return err; 1554 1554 1555 1555 if ((err = snd_emu10k1x_create(card, pci, &chip)) < 0) { -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/emu10k1/emumixer.c ¶
r399 r410 1639 1639 .put = snd_emu10k1_shared_spdif_put 1640 1640 }; 1641 1642 /* workaround for too low volume on Audigy due to 16bit/24bit conversion */ 1643 1644 #define snd_audigy_capture_boost_info snd_ctl_boolean_mono_info 1645 1646 static int snd_audigy_capture_boost_get(struct snd_kcontrol *kcontrol, 1647 struct snd_ctl_elem_value *ucontrol) 1648 { 1649 struct snd_emu10k1 *emu = snd_kcontrol_chip(kcontrol); 1650 unsigned int val; 1651 1652 /* FIXME: better to use a cached version */ 1653 val = snd_ac97_read(emu->ac97, AC97_REC_GAIN); 1654 ucontrol->value.integer.value[0] = !!val; 1655 return 0; 1656 } 1657 1658 static int snd_audigy_capture_boost_put(struct snd_kcontrol *kcontrol, 1659 struct snd_ctl_elem_value *ucontrol) 1660 { 1661 struct snd_emu10k1 *emu = snd_kcontrol_chip(kcontrol); 1662 unsigned int val; 1663 1664 if (ucontrol->value.integer.value[0]) 1665 val = 0x0f0f; 1666 else 1667 val = 0; 1668 return snd_ac97_update(emu->ac97, AC97_REC_GAIN, val); 1669 } 1670 1671 static struct snd_kcontrol_new snd_audigy_capture_boost __devinitdata = 1672 { 1673 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 1674 .name = "Analog Capture Boost", 1675 .info = snd_audigy_capture_boost_info, 1676 .get = snd_audigy_capture_boost_get, 1677 .put = snd_audigy_capture_boost_put 1678 }; 1679 1641 1680 1642 1681 /* … … 2088 2127 } 2089 2128 2090 return 0; 2091 } 2129 if (emu->card_capabilities->ac97_chip && emu->audigy) { 2130 err = snd_ctl_add(card, snd_ctl_new1(&snd_audigy_capture_boost, 2131 emu)); 2132 if (err < 0) 2133 return err; 2134 } 2135 2136 return 0; 2137 } -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/ens1370.c ¶
r399 r410 2414 2414 } 2415 2415 2416 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);2417 if ( card == NULL)2418 return -ENOMEM;2416 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 2417 if (err < 0) 2418 return err; 2419 2419 2420 2420 if ((err = snd_ensoniq_create(card, pci, &ensoniq)) < 0) { -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/es1938.c ¶
r399 r410 1800 1800 } 1801 1801 1802 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);1803 if ( card == NULL)1804 return -ENOMEM;1802 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 1803 if (err < 0) 1804 return err; 1805 1805 for (idx = 0; idx < 5; idx++) { 1806 1806 if (pci_resource_start(pci, idx) == 0 || -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/es1968.c ¶
r399 r410 1963 1963 1964 1964 if (event & ESM_HWVOL_IRQ) 1965 tasklet_ hi_schedule(&chip->hwvol_tq); /* we'll do this later */1965 tasklet_schedule(&chip->hwvol_tq); /* we'll do this later */ 1966 1966 1967 1967 /* else ack 'em all, i imagine */ … … 2655 2655 } 2656 2656 2657 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);2658 if ( !card)2659 return -ENOMEM;2657 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 2658 if (err < 0) 2659 return err; 2660 2660 2661 2661 if (total_bufsize[dev] < 128) -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/fm801.c ¶
r358 r410 1473 1473 } 1474 1474 1475 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);1476 if ( card == NULL)1477 return -ENOMEM;1475 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 1476 if (err < 0) 1477 return err; 1478 1478 if ((err = snd_fm801_create(card, pci, tea575x_tuner[dev], &chip)) < 0) { 1479 1479 snd_card_free(card); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/hda_beep.h ¶
r401 r410 32 32 int tone; 33 33 int nid; 34 int enabled; 34 35 struct work_struct beep_work; /* scheduled task for beep event */ 35 36 }; -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/hda_codec.c ¶
r402 r410 32 32 #include "hda_local.h" 33 33 #include <sound/hda_hwdep.h> 34 #include "hda_patch.h" /* codec presets */35 36 #ifdef CONFIG_SND_HDA_POWER_SAVE37 /* define this option here to hide as static */38 static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT;39 module_param(power_save, int, 0644);40 MODULE_PARM_DESC(power_save, "Automatic power-saving timeout "41 "(in second, 0 = disable).");42 #endif43 34 44 35 /* … … 56 47 { 0x1057, "Motorola" }, 57 48 { 0x1095, "Silicon Image" }, 49 { 0x10de, "Nvidia" }, 58 50 { 0x10ec, "Realtek" }, 59 51 { 0x1106, "VIA" }, … … 67 59 { 0x1aec, "Wolfson Microelectronics" }, 68 60 { 0x434d, "C-Media" }, 61 { 0x8086, "Intel" }, 69 62 { 0x8384, "SigmaTel" }, 70 63 {0} /* terminator */ 71 64 }; 72 65 73 static const struct hda_codec_preset *hda_preset_tables[] = { 74 #ifdef CONFIG_SND_HDA_CODEC_REALTEK 75 snd_hda_preset_realtek, 76 #endif 77 #ifdef CONFIG_SND_HDA_CODEC_CMEDIA 78 snd_hda_preset_cmedia, 79 #endif 80 #ifdef CONFIG_SND_HDA_CODEC_ANALOG 81 snd_hda_preset_analog, 82 #endif 83 #ifdef CONFIG_SND_HDA_CODEC_SIGMATEL 84 snd_hda_preset_sigmatel, 85 #endif 86 #ifdef CONFIG_SND_HDA_CODEC_SI3054 87 snd_hda_preset_si3054, 88 #endif 89 #ifdef CONFIG_SND_HDA_CODEC_ATIHDMI 90 snd_hda_preset_atihdmi, 91 #endif 92 #ifdef CONFIG_SND_HDA_CODEC_CONEXANT 93 snd_hda_preset_conexant, 94 #endif 95 #ifdef CONFIG_SND_HDA_CODEC_VIA 96 snd_hda_preset_via, 97 #endif 98 #ifdef CONFIG_SND_HDA_CODEC_NVHDMI 99 snd_hda_preset_nvhdmi, 100 #endif 101 #ifdef CONFIG_SND_HDA_CODEC_INTELHDMI 102 snd_hda_preset_intelhdmi, 103 #endif 104 NULL 105 }; 66 static DEFINE_MUTEX(preset_mutex); 67 static LIST_HEAD(hda_preset_tables); 68 69 int snd_hda_add_codec_preset(struct hda_codec_preset_list *preset) 70 { 71 mutex_lock(&preset_mutex); 72 list_add_tail(&preset->list, &hda_preset_tables); 73 mutex_unlock(&preset_mutex); 74 return 0; 75 } 76 EXPORT_SYMBOL_HDA(snd_hda_add_codec_preset); 77 78 int snd_hda_delete_codec_preset(struct hda_codec_preset_list *preset) 79 { 80 mutex_lock(&preset_mutex); 81 list_del(&preset->list); 82 mutex_unlock(&preset_mutex); 83 return 0; 84 } 85 EXPORT_SYMBOL_HDA(snd_hda_delete_codec_preset); 106 86 107 87 #ifdef CONFIG_SND_HDA_POWER_SAVE … … 137 117 return "UNKNOWN"; 138 118 } 119 EXPORT_SYMBOL_HDA(snd_hda_get_jack_location); 139 120 140 121 const char *snd_hda_get_jack_connectivity(u32 cfg) … … 144 125 return jack_locations[(cfg >> (AC_DEFCFG_LOCATION_SHIFT + 4)) & 3]; 145 126 } 127 EXPORT_SYMBOL_HDA(snd_hda_get_jack_connectivity); 146 128 147 129 const char *snd_hda_get_jack_type(u32 cfg) … … 157 139 >> AC_DEFCFG_DEVICE_SHIFT]; 158 140 } 141 EXPORT_SYMBOL_HDA(snd_hda_get_jack_type); 159 142 160 143 /* … … 205 188 return res; 206 189 } 190 EXPORT_SYMBOL_HDA(snd_hda_codec_read); 207 191 208 192 /** … … 233 217 return err; 234 218 } 219 EXPORT_SYMBOL_HDA(snd_hda_codec_write); 235 220 236 221 /** … … 247 232 snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param); 248 233 } 234 EXPORT_SYMBOL_HDA(snd_hda_sequence_write); 249 235 250 236 /** … … 268 254 return (int)(parm & 0x7fff); 269 255 } 256 EXPORT_SYMBOL_HDA(snd_hda_get_sub_nodes); 270 257 271 258 /** … … 356 343 return conns; 357 344 } 345 EXPORT_SYMBOL_HDA(snd_hda_get_connections); 358 346 359 347 … … 386 374 unsol->queue[wp + 1] = res_ex; 387 375 388 /* 2.4 kernels seem to have a problem with workq wrapper... */ 389 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0) 390 schedule_work(&unsol->work); 391 #endif 392 return 0; 393 } 376 queue_work(bus->workq, &unsol->work); 377 378 return 0; 379 } 380 EXPORT_SYMBOL_HDA(snd_hda_queue_unsol_event); 394 381 395 382 /* … … 453 440 if (!bus) 454 441 return 0; 455 if (bus->unsol) { 456 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0) 457 flush_scheduled_work(); 458 #endif 442 if (bus->workq) 443 flush_workqueue(bus->workq); 444 if (bus->unsol) 459 445 kfree(bus->unsol); 460 }461 446 list_for_each_entry_safe(codec, n, &bus->codec_list, list, struct hda_codec) { 462 447 snd_hda_codec_free(codec); … … 464 449 if (bus->ops.private_free) 465 450 bus->ops.private_free(bus); 451 if (bus->workq) 452 destroy_workqueue(bus->workq); 466 453 kfree(bus); 467 454 return 0; … … 471 458 { 472 459 struct hda_bus *bus = device->device_data; 460 bus->shutdown = 1; 473 461 return snd_hda_bus_free(bus); 474 462 } … … 496 484 * Returns 0 if successful, or a negative error code. 497 485 */ 498 int __devinitsnd_hda_bus_new(struct snd_card *card,486 int /*__devinit*/ snd_hda_bus_new(struct snd_card *card, 499 487 const struct hda_bus_template *temp, 500 488 struct hda_bus **busp) … … 502 490 struct hda_bus *bus; 503 491 int err; 492 char qname[8]; 504 493 static struct snd_device_ops dev_ops = { 505 494 .dev_register = snd_hda_bus_dev_register, … … 525 514 bus->pci = temp->pci; 526 515 bus->modelname = temp->modelname; 516 bus->power_save = temp->power_save; 527 517 bus->ops = temp->ops; 528 518 529 519 mutex_init(&bus->cmd_mutex); 530 520 INIT_LIST_HEAD(&bus->codec_list); 521 522 snprintf(qname, sizeof(qname), "hda%d", card->number); 523 bus->workq = create_workqueue(qname); 524 if (!bus->workq) { 525 snd_printk(KERN_ERR "cannot create workqueue %s\n", qname); 526 kfree(bus); 527 return -ENOMEM; 528 } 531 529 532 530 err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops); … … 539 537 return 0; 540 538 } 539 EXPORT_SYMBOL_HDA(snd_hda_bus_new); 541 540 542 541 #ifdef CONFIG_SND_HDA_GENERIC … … 547 546 #endif 548 547 548 #ifdef MODULE 549 #define HDA_MODREQ_MAX_COUNT 2 /* two request_modules()'s */ 550 #else 551 #define HDA_MODREQ_MAX_COUNT 0 /* all presets are statically linked */ 552 #endif 553 549 554 /* 550 555 * find a matching codec preset … … 553 558 find_codec_preset(struct hda_codec *codec) 554 559 { 555 const struct hda_codec_preset **tbl, *preset; 560 struct hda_codec_preset_list *tbl; 561 const struct hda_codec_preset *preset; 562 int mod_requested = 0; 556 563 557 564 if (is_generic_config(codec)) 558 565 return NULL; /* use the generic parser */ 559 566 560 for (tbl = hda_preset_tables; *tbl; tbl++) { 561 for (preset = *tbl; preset->id; preset++) { 567 again: 568 mutex_lock(&preset_mutex); 569 list_for_each_entry(tbl, &hda_preset_tables, list, struct hda_codec_preset_list) { 570 if (!try_module_get(tbl->owner)) { 571 snd_printk(KERN_ERR "hda_codec: cannot module_get\n"); 572 continue; 573 } 574 for (preset = tbl->preset; preset->id; preset++) { 562 575 u32 mask = preset->mask; 563 576 if (preset->afg && preset->afg != codec->afg) … … 569 582 if (preset->id == (codec->vendor_id & mask) && 570 583 (!preset->rev || 571 preset->rev == codec->revision_id)) 584 preset->rev == codec->revision_id)) { 585 mutex_unlock(&preset_mutex); 586 codec->owner = tbl->owner; 572 587 return preset; 573 } 574 } 588 } 589 } 590 module_put(tbl->owner); 591 } 592 mutex_unlock(&preset_mutex); 593 594 #ifndef TARGET_OS2 595 if (mod_requested < HDA_MODREQ_MAX_COUNT) { 596 char name[32]; 597 if (!mod_requested) 598 snprintf(name, sizeof(name), "snd-hda-codec-id:%08x", 599 codec->vendor_id); 600 else 601 snprintf(name, sizeof(name), "snd-hda-codec-id:%04x*", 602 (codec->vendor_id >> 16) & 0xffff); 603 request_module(name); 604 mod_requested++; 605 goto again; 606 } 607 #endif 575 608 return NULL; 576 609 } … … 611 644 * look for an AFG and MFG nodes 612 645 */ 613 static void __devinitsetup_fg_nodes(struct hda_codec *codec)646 static void /*__devinit*/ setup_fg_nodes(struct hda_codec *codec) 614 647 { 615 648 int i, total_nodes; … … 667 700 #ifdef CONFIG_SND_HDA_POWER_SAVE 668 701 cancel_delayed_work(&codec->power_work); 669 flush_ scheduled_work();702 flush_workqueue(codec->bus->workq); 670 703 #endif 671 704 list_del(&codec->list); … … 674 707 if (codec->patch_ops.free) 675 708 codec->patch_ops.free(codec); 709 module_put(codec->owner); 676 710 free_hda_cache(&codec->amp_cache); 677 711 free_hda_cache(&codec->cmd_cache); … … 690 724 * Returns 0 if successful, or a negative error code. 691 725 */ 692 int __devinitsnd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr,693 struct hda_codec **codecp)726 int /*__devinit*/ snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr, 727 int do_init, struct hda_codec **codecp) 694 728 { 695 729 struct hda_codec *codec; … … 717 751 codec->addr = codec_addr; 718 752 mutex_init(&codec->spdif_mutex); 753 mutex_init(&codec->control_mutex); 719 754 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info)); 720 755 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head)); … … 775 810 codec->modelname = kstrdup(bus->modelname, GFP_KERNEL); 776 811 777 err = snd_hda_codec_configure(codec); 778 if (err < 0) { 779 snd_hda_codec_free(codec); 780 return err; 812 if (do_init) { 813 err = snd_hda_codec_configure(codec); 814 if (err < 0) { 815 snd_hda_codec_free(codec); 816 return err; 817 } 781 818 } 782 819 snd_hda_codec_proc_new(codec); … … 792 829 return 0; 793 830 } 831 EXPORT_SYMBOL_HDA(snd_hda_codec_new); 794 832 795 833 int snd_hda_codec_configure(struct hda_codec *codec) … … 851 889 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, format); 852 890 } 891 EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream); 853 892 854 893 void snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid) … … 864 903 #endif 865 904 } 905 EXPORT_SYMBOL_HDA(snd_hda_codec_cleanup_stream); 866 906 867 907 /* … … 875 915 876 916 /* initialize the hash table */ 877 static void __devinitinit_hda_cache(struct hda_cache_rec *cache,917 static void /*__devinit*/ init_hda_cache(struct hda_cache_rec *cache, 878 918 unsigned int record_size) 879 919 { … … 945 985 return info->amp_caps; 946 986 } 987 EXPORT_SYMBOL_HDA(query_amp_caps); 947 988 948 989 int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir, … … 958 999 return 0; 959 1000 } 1001 EXPORT_SYMBOL_HDA(snd_hda_override_amp_caps); 960 1002 961 1003 /* … … 1011 1053 return get_vol_mute(codec, info, nid, ch, direction, index); 1012 1054 } 1055 EXPORT_SYMBOL_HDA(snd_hda_codec_amp_read); 1013 1056 1014 1057 /* … … 1030 1073 return 1; 1031 1074 } 1075 EXPORT_SYMBOL_HDA(snd_hda_codec_amp_update); 1032 1076 1033 1077 /* … … 1043 1087 return ret; 1044 1088 } 1089 EXPORT_SYMBOL_HDA(snd_hda_codec_amp_stereo); 1045 1090 1046 1091 #ifdef SND_HDA_NEEDS_RESUME … … 1068 1113 } 1069 1114 } 1115 EXPORT_SYMBOL_HDA(snd_hda_codec_resume_amp); 1070 1116 #endif /* SND_HDA_NEEDS_RESUME */ 1071 1117 … … 1095 1141 return 0; 1096 1142 } 1143 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_info); 1097 1144 1098 1145 int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol, … … 1114 1161 return 0; 1115 1162 } 1163 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_get); 1116 1164 1117 1165 int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol, … … 1138 1186 return change; 1139 1187 } 1188 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_put); 1140 1189 1141 1190 int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag, … … 1164 1213 return 0; 1165 1214 } 1215 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_tlv); 1166 1216 1167 1217 /* … … 1183 1233 tlv[3] = step; 1184 1234 } 1235 EXPORT_SYMBOL_HDA(snd_hda_set_vmaster_tlv); 1185 1236 1186 1237 /* find a mixer control element with the given name */ … … 1202 1253 return _snd_hda_find_mixer_ctl(codec, name, 0); 1203 1254 } 1255 EXPORT_SYMBOL_HDA(snd_hda_find_mixer_ctl); 1204 1256 1205 1257 /* Add a control element and assign to the codec */ … … 1218 1270 return 0; 1219 1271 } 1220 1272 EXPORT_SYMBOL_HDA(snd_hda_ctl_add); 1273 1274 #ifdef CONFIG_SND_HDA_RECONFIG 1221 1275 /* Clear all controls assigned to the given codec */ 1222 1276 void snd_hda_ctls_clear(struct hda_codec *codec) … … 1235 1289 #ifdef CONFIG_SND_HDA_POWER_SAVE 1236 1290 cancel_delayed_work(&codec->power_work); 1237 flush_ scheduled_work();1291 flush_workqueue(codec->bus->workq); 1238 1292 #endif 1239 1293 snd_hda_ctls_clear(codec); 1240 1294 /* relase PCMs */ 1241 1295 for (i = 0; i < codec->num_pcms; i++) { 1242 if (codec->pcm_info[i].pcm) 1296 if (codec->pcm_info[i].pcm) { 1243 1297 snd_device_free(codec->bus->card, 1244 1298 codec->pcm_info[i].pcm); 1299 clear_bit(codec->pcm_info[i].device, 1300 codec->bus->pcm_dev_bits); 1301 } 1245 1302 } 1246 1303 if (codec->patch_ops.free) 1247 1304 codec->patch_ops.free(codec); 1305 codec->proc_widget_hook = NULL; 1248 1306 codec->spec = NULL; 1249 1307 free_hda_cache(&codec->amp_cache); 1250 1308 free_hda_cache(&codec->cmd_cache); 1309 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info)); 1310 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head)); 1251 1311 codec->num_pcms = 0; 1252 1312 codec->pcm_info = NULL; 1253 1313 codec->preset = NULL; 1254 } 1314 module_put(codec->owner); 1315 codec->owner = NULL; 1316 } 1317 #endif /* CONFIG_SND_HDA_RECONFIG */ 1255 1318 1256 1319 /* create a virtual master control and add slaves */ … … 1289 1352 return 0; 1290 1353 } 1354 EXPORT_SYMBOL_HDA(snd_hda_add_vmaster); 1291 1355 1292 1356 /* switch */ … … 1302 1366 return 0; 1303 1367 } 1368 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info); 1304 1369 1305 1370 int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol, … … 1321 1386 return 0; 1322 1387 } 1388 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get); 1323 1389 1324 1390 int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol, … … 1351 1417 return change; 1352 1418 } 1419 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put); 1353 1420 1354 1421 /* … … 1368 1435 int err; 1369 1436 1370 mutex_lock(&codec-> spdif_mutex); /* reuse spdif_mutex */1437 mutex_lock(&codec->control_mutex); 1371 1438 pval = kcontrol->private_value; 1372 1439 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */ 1373 1440 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol); 1374 1441 kcontrol->private_value = pval; 1375 mutex_unlock(&codec-> spdif_mutex);1442 mutex_unlock(&codec->control_mutex); 1376 1443 return err; 1377 1444 } 1445 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get); 1378 1446 1379 1447 int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol, … … 1384 1452 int i, indices, err = 0, change = 0; 1385 1453 1386 mutex_lock(&codec-> spdif_mutex); /* reuse spdif_mutex */1454 mutex_lock(&codec->control_mutex); 1387 1455 pval = kcontrol->private_value; 1388 1456 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT; … … 1396 1464 } 1397 1465 kcontrol->private_value = pval; 1398 mutex_unlock(&codec-> spdif_mutex);1466 mutex_unlock(&codec->control_mutex); 1399 1467 return err < 0 ? err : change; 1400 1468 } 1469 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put); 1401 1470 1402 1471 /* … … 1410 1479 int err; 1411 1480 1412 mutex_lock(&codec-> spdif_mutex); /* reuse spdif_mutex */1481 mutex_lock(&codec->control_mutex); 1413 1482 c = (struct hda_bind_ctls *)kcontrol->private_value; 1414 1483 kcontrol->private_value = *c->values; 1415 1484 err = c->ops->info(kcontrol, uinfo); 1416 1485 kcontrol->private_value = (long)c; 1417 mutex_unlock(&codec-> spdif_mutex);1486 mutex_unlock(&codec->control_mutex); 1418 1487 return err; 1419 1488 } 1489 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info); 1420 1490 1421 1491 int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol, … … 1426 1496 int err; 1427 1497 1428 mutex_lock(&codec-> spdif_mutex); /* reuse spdif_mutex */1498 mutex_lock(&codec->control_mutex); 1429 1499 c = (struct hda_bind_ctls *)kcontrol->private_value; 1430 1500 kcontrol->private_value = *c->values; 1431 1501 err = c->ops->get(kcontrol, ucontrol); 1432 1502 kcontrol->private_value = (long)c; 1433 mutex_unlock(&codec-> spdif_mutex);1503 mutex_unlock(&codec->control_mutex); 1434 1504 return err; 1435 1505 } 1506 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get); 1436 1507 1437 1508 int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol, … … 1443 1514 int err = 0, change = 0; 1444 1515 1445 mutex_lock(&codec-> spdif_mutex); /* reuse spdif_mutex */1516 mutex_lock(&codec->control_mutex); 1446 1517 c = (struct hda_bind_ctls *)kcontrol->private_value; 1447 1518 for (vals = c->values; *vals; vals++) { … … 1453 1524 } 1454 1525 kcontrol->private_value = (long)c; 1455 mutex_unlock(&codec-> spdif_mutex);1526 mutex_unlock(&codec->control_mutex); 1456 1527 return err < 0 ? err : change; 1457 1528 } 1529 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put); 1458 1530 1459 1531 int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag, … … 1464 1536 int err; 1465 1537 1466 mutex_lock(&codec-> spdif_mutex); /* reuse spdif_mutex */1538 mutex_lock(&codec->control_mutex); 1467 1539 c = (struct hda_bind_ctls *)kcontrol->private_value; 1468 1540 kcontrol->private_value = *c->values; 1469 1541 err = c->ops->tlv(kcontrol, op_flag, size, tlv); 1470 1542 kcontrol->private_value = (long)c; 1471 mutex_unlock(&codec-> spdif_mutex);1543 mutex_unlock(&codec->control_mutex); 1472 1544 return err; 1473 1545 } 1546 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_tlv); 1474 1547 1475 1548 struct hda_ctl_ops snd_hda_bind_vol = { … … 1479 1552 .tlv = snd_hda_mixer_amp_tlv 1480 1553 }; 1554 EXPORT_SYMBOL_HDA(snd_hda_bind_vol); 1481 1555 1482 1556 struct hda_ctl_ops snd_hda_bind_sw = { … … 1486 1560 .tlv = snd_hda_mixer_amp_tlv 1487 1561 }; 1562 EXPORT_SYMBOL_HDA(snd_hda_bind_sw); 1488 1563 1489 1564 /* … … 1592 1667 hda_nid_t *d; 1593 1668 1594 snd_hda_codec_write (codec, nid, 0, verb, val);1669 snd_hda_codec_write_cache(codec, nid, 0, verb, val); 1595 1670 d = codec->slave_dig_outs; 1596 1671 if (!d) 1597 1672 return; 1598 1673 for (; *d; d++) 1599 snd_hda_codec_write (codec, *d, 0, verb, val);1674 snd_hda_codec_write_cache(codec, *d, 0, verb, val); 1600 1675 } 1601 1676 … … 1747 1822 return 0; 1748 1823 } 1824 EXPORT_SYMBOL_HDA(snd_hda_create_spdif_out_ctls); 1749 1825 1750 1826 /* … … 1784 1860 snd_ctl_new1(&spdif_share_sw, mout)); 1785 1861 } 1862 EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw); 1786 1863 1787 1864 /* … … 1893 1970 return 0; 1894 1971 } 1972 EXPORT_SYMBOL_HDA(snd_hda_create_spdif_in_ctls); 1895 1973 1896 1974 #ifdef SND_HDA_NEEDS_RESUME … … 1938 2016 return err; 1939 2017 } 2018 EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache); 1940 2019 1941 2020 /* resume the all commands from the cache */ … … 1953 2032 } 1954 2033 } 2034 EXPORT_SYMBOL_HDA(snd_hda_codec_resume_cache); 1955 2035 1956 2036 /** … … 1970 2050 seq->param); 1971 2051 } 2052 EXPORT_SYMBOL_HDA(snd_hda_sequence_write_cache); 1972 2053 #endif /* SND_HDA_NEEDS_RESUME */ 1973 2054 … … 2088 2169 * Returns 0 if successful, otherwise a negative error code. 2089 2170 */ 2090 int __devinitsnd_hda_build_controls(struct hda_bus *bus)2171 int /*__devinit*/ snd_hda_build_controls(struct hda_bus *bus) 2091 2172 { 2092 2173 struct hda_codec *codec; … … 2100 2181 return 0; 2101 2182 } 2183 EXPORT_SYMBOL_HDA(snd_hda_build_controls); 2102 2184 2103 2185 int snd_hda_codec_build_controls(struct hda_codec *codec) … … 2211 2293 return val; 2212 2294 } 2295 EXPORT_SYMBOL_HDA(snd_hda_calc_stream_format); 2213 2296 2214 2297 /** … … 2225 2308 * Returns 0 if successful, otherwise a negative error code. 2226 2309 */ 2227 int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,2310 static int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid, 2228 2311 u32 *ratesp, u64 *formatsp, unsigned int *bpsp) 2229 2312 { … … 2390 2473 return 1; 2391 2474 } 2475 EXPORT_SYMBOL_HDA(snd_hda_is_supported_format); 2392 2476 2393 2477 /* … … 2447 2531 2448 2532 /* 2449 * attach a new PCM stream 2450 */ 2451 static int __devinit 2452 snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm) 2453 { 2454 struct hda_bus *bus = codec->bus; 2455 struct hda_pcm_stream *info; 2456 int stream, err; 2457 2458 if (snd_BUG_ON(!pcm->name)) 2459 return -EINVAL; 2460 for (stream = 0; stream < 2; stream++) { 2461 info = &pcm->stream[stream]; 2462 if (info->substreams) { 2463 err = set_pcm_default_values(codec, info); 2464 if (err < 0) 2465 return err; 2466 } 2467 } 2468 return bus->ops.attach_pcm(bus, codec, pcm); 2469 } 2470 2471 /** 2472 * snd_hda_build_pcms - build PCM information 2473 * @bus: the BUS 2474 * 2475 * Create PCM information for each codec included in the bus. 2476 * 2477 * The build_pcms codec patch is requested to set up codec->num_pcms and 2478 * codec->pcm_info properly. The array is referred by the top-level driver 2479 * to create its PCM instances. 2480 * The allocated codec->pcm_info should be released in codec->patch_ops.free 2481 * callback. 2482 * 2483 * At least, substreams, channels_min and channels_max must be filled for 2484 * each stream. substreams = 0 indicates that the stream doesn't exist. 2485 * When rates and/or formats are zero, the supported values are queried 2486 * from the given nid. The nid is used also by the default ops.prepare 2487 * and ops.cleanup callbacks. 2488 * 2489 * The driver needs to call ops.open in its open callback. Similarly, 2490 * ops.close is supposed to be called in the close callback. 2491 * ops.prepare should be called in the prepare or hw_params callback 2492 * with the proper parameters for set up. 2493 * ops.cleanup should be called in hw_free for clean up of streams. 2494 * 2495 * This function returns 0 if successfull, or a negative error code. 2496 */ 2497 int snd_hda_build_pcms(struct hda_bus *bus) 2533 * get the empty PCM device number to assign 2534 */ 2535 static int get_empty_pcm_device(struct hda_bus *bus, int type) 2498 2536 { 2499 2537 static const char *dev_name[HDA_PCM_NTYPES] = { … … 2509 2547 /* normal audio device indices; not linear to keep compatibility */ 2510 2548 static int audio_idx[4] = { 0, 2, 4, 5 }; 2511 struct hda_codec *codec; 2512 int num_devs[HDA_PCM_NTYPES]; 2513 2514 memset(num_devs, 0, sizeof(num_devs)); 2515 list_for_each_entry(codec, &bus->codec_list, list, struct hda_codec) { 2516 unsigned int pcm; 2517 int err; 2518 if (!codec->num_pcms) { 2519 if (!codec->patch_ops.build_pcms) 2520 continue; 2521 err = codec->patch_ops.build_pcms(codec); 2549 int i, dev; 2550 2551 switch (type) { 2552 case HDA_PCM_TYPE_AUDIO: 2553 for (i = 0; i < ARRAY_SIZE(audio_idx); i++) { 2554 dev = audio_idx[i]; 2555 if (!test_bit(dev, bus->pcm_dev_bits)) 2556 break; 2557 } 2558 if (i >= ARRAY_SIZE(audio_idx)) { 2559 snd_printk(KERN_WARNING "Too many audio devices\n"); 2560 return -EAGAIN; 2561 } 2562 break; 2563 case HDA_PCM_TYPE_SPDIF: 2564 case HDA_PCM_TYPE_HDMI: 2565 case HDA_PCM_TYPE_MODEM: 2566 dev = dev_idx[type]; 2567 if (test_bit(dev, bus->pcm_dev_bits)) { 2568 snd_printk(KERN_WARNING "%s already defined\n", 2569 dev_name[type]); 2570 return -EAGAIN; 2571 } 2572 break; 2573 default: 2574 snd_printk(KERN_WARNING "Invalid PCM type %d\n", type); 2575 return -EINVAL; 2576 } 2577 set_bit(dev, bus->pcm_dev_bits); 2578 return dev; 2579 } 2580 2581 /* 2582 * attach a new PCM stream 2583 */ 2584 static int snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm) 2585 { 2586 struct hda_bus *bus = codec->bus; 2587 struct hda_pcm_stream *info; 2588 int stream, err; 2589 2590 if (snd_BUG_ON(!pcm->name)) 2591 return -EINVAL; 2592 for (stream = 0; stream < 2; stream++) { 2593 info = &pcm->stream[stream]; 2594 if (info->substreams) { 2595 err = set_pcm_default_values(codec, info); 2522 2596 if (err < 0) 2523 2597 return err; 2524 2598 } 2525 for (pcm = 0; pcm < codec->num_pcms; pcm++) { 2526 struct hda_pcm *cpcm = &codec->pcm_info[pcm]; 2527 int type = cpcm->pcm_type; 2528 int dev; 2529 2530 if (!cpcm->stream[0].substreams && 2531 !cpcm->stream[1].substreams) 2532 continue; /* no substreams assigned */ 2533 2534 switch (type) { 2535 case HDA_PCM_TYPE_AUDIO: 2536 if (num_devs[type] >= ARRAY_SIZE(audio_idx)) { 2537 snd_printk(KERN_WARNING 2538 "Too many audio devices\n"); 2539 continue; 2540 } 2541 dev = audio_idx[num_devs[type]]; 2542 break; 2543 case HDA_PCM_TYPE_SPDIF: 2544 case HDA_PCM_TYPE_HDMI: 2545 case HDA_PCM_TYPE_MODEM: 2546 if (num_devs[type]) { 2547 snd_printk(KERN_WARNING 2548 "%s already defined\n", 2549 dev_name[type]); 2550 continue; 2551 } 2552 dev = dev_idx[type]; 2553 break; 2554 default: 2555 snd_printk(KERN_WARNING 2556 "Invalid PCM type %d\n", type); 2557 continue; 2558 } 2559 num_devs[type]++; 2560 if (!cpcm->pcm) { 2561 cpcm->device = dev; 2562 err = snd_hda_attach_pcm(codec, cpcm); 2563 if (err < 0) 2564 return err; 2565 } 2566 } 2567 } 2568 return 0; 2569 } 2599 } 2600 return bus->ops.attach_pcm(bus, codec, pcm); 2601 } 2602 2603 /* assign all PCMs of the given codec */ 2604 int snd_hda_codec_build_pcms(struct hda_codec *codec) 2605 { 2606 unsigned int pcm; 2607 int err; 2608 2609 if (!codec->num_pcms) { 2610 if (!codec->patch_ops.build_pcms) 2611 return 0; 2612 err = codec->patch_ops.build_pcms(codec); 2613 if (err < 0) 2614 return err; 2615 } 2616 for (pcm = 0; pcm < codec->num_pcms; pcm++) { 2617 struct hda_pcm *cpcm = &codec->pcm_info[pcm]; 2618 int dev; 2619 2620 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams) 2621 return 0; /* no substreams assigned */ 2622 2623 if (!cpcm->pcm) { 2624 dev = get_empty_pcm_device(codec->bus, cpcm->pcm_type); 2625 if (dev < 0) 2626 return 0; 2627 cpcm->device = dev; 2628 err = snd_hda_attach_pcm(codec, cpcm); 2629 if (err < 0) 2630 return err; 2631 } 2632 } 2633 return 0; 2634 } 2635 2636 /** 2637 * snd_hda_build_pcms - build PCM information 2638 * @bus: the BUS 2639 * 2640 * Create PCM information for each codec included in the bus. 2641 * 2642 * The build_pcms codec patch is requested to set up codec->num_pcms and 2643 * codec->pcm_info properly. The array is referred by the top-level driver 2644 * to create its PCM instances. 2645 * The allocated codec->pcm_info should be released in codec->patch_ops.free 2646 * callback. 2647 * 2648 * At least, substreams, channels_min and channels_max must be filled for 2649 * each stream. substreams = 0 indicates that the stream doesn't exist. 2650 * When rates and/or formats are zero, the supported values are queried 2651 * from the given nid. The nid is used also by the default ops.prepare 2652 * and ops.cleanup callbacks. 2653 * 2654 * The driver needs to call ops.open in its open callback. Similarly, 2655 * ops.close is supposed to be called in the close callback. 2656 * ops.prepare should be called in the prepare or hw_params callback 2657 * with the proper parameters for set up. 2658 * ops.cleanup should be called in hw_free for clean up of streams. 2659 * 2660 * This function returns 0 if successfull, or a negative error code. 2661 */ 2662 int __devinit snd_hda_build_pcms(struct hda_bus *bus) 2663 { 2664 struct hda_codec *codec; 2665 2666 list_for_each_entry(codec, &bus->codec_list, list, struct hda_codec) { 2667 int err = snd_hda_codec_build_pcms(codec); 2668 if (err < 0) 2669 return err; 2670 } 2671 return 0; 2672 } 2673 EXPORT_SYMBOL_HDA(snd_hda_build_pcms); 2570 2674 2571 2675 /** … … 2623 2727 return -1; 2624 2728 } 2729 EXPORT_SYMBOL_HDA(snd_hda_check_board_config); 2730 2731 /** 2732 * snd_hda_check_board_codec_sid_config - compare the current codec 2733 subsystem ID with the 2734 config table 2735 2736 This is important for Gateway notebooks with SB450 HDA Audio 2737 where the vendor ID of the PCI device is: 2738 ATI Technologies Inc SB450 HDA Audio [1002:437b] 2739 and the vendor/subvendor are found only at the codec. 2740 2741 * @codec: the HDA codec 2742 * @num_configs: number of config enums 2743 * @models: array of model name strings 2744 * @tbl: configuration table, terminated by null entries 2745 * 2746 * Compares the modelname or PCI subsystem id of the current codec with the 2747 * given configuration table. If a matching entry is found, returns its 2748 * config value (supposed to be 0 or positive). 2749 * 2750 * If no entries are matching, the function returns a negative value. 2751 */ 2752 int snd_hda_check_board_codec_sid_config(struct hda_codec *codec, 2753 int num_configs, const char **models, 2754 const struct snd_pci_quirk *tbl) 2755 { 2756 const struct snd_pci_quirk *q; 2757 2758 /* Search for codec ID */ 2759 for (q = tbl; q->subvendor; q++) { 2760 unsigned long vendorid = (q->subdevice) | (q->subvendor << 16); 2761 2762 if (vendorid == codec->subsystem_id) 2763 break; 2764 } 2765 2766 if (!q->subvendor) 2767 return -1; 2768 2769 tbl = q; 2770 2771 if (tbl->value >= 0 && tbl->value < num_configs) { 2772 #ifdef CONFIG_SND_DEBUG_DETECT 2773 char tmp[10]; 2774 const char *model = NULL; 2775 if (models) 2776 model = models[tbl->value]; 2777 if (!model) { 2778 sprintf(tmp, "#%d", tbl->value); 2779 model = tmp; 2780 } 2781 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected " 2782 "for config %x:%x (%s)\n", 2783 model, tbl->subvendor, tbl->subdevice, 2784 (tbl->name ? tbl->name : "Unknown device")); 2785 #endif 2786 return tbl->value; 2787 } 2788 return -1; 2789 } 2790 EXPORT_SYMBOL_HDA(snd_hda_check_board_codec_sid_config); 2625 2791 2626 2792 /** … … 2658 2824 return 0; 2659 2825 } 2826 EXPORT_SYMBOL_HDA(snd_hda_add_new_ctls); 2660 2827 2661 2828 #ifdef CONFIG_SND_HDA_POWER_SAVE … … 2700 2867 codec->power_transition = 0; 2701 2868 } 2869 EXPORT_SYMBOL_HDA(snd_hda_power_up); 2870 2871 #define power_save(codec) \ 2872 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0) 2873 2874 #define power_save(codec) \ 2875 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0) 2702 2876 2703 2877 void snd_hda_power_down(struct hda_codec *codec) … … 2706 2880 if (!codec->power_on || codec->power_count || codec->power_transition) 2707 2881 return; 2708 if (power_save ) {2882 if (power_save(codec)) { 2709 2883 codec->power_transition = 1; /* avoid reentrance */ 2710 schedule_delayed_work(&codec->power_work, 2711 msecs_to_jiffies(power_save * 1000)); 2712 } 2713 } 2884 queue_delayed_work(codec->bus->workq, &codec->power_work, 2885 msecs_to_jiffies(power_save(codec) * 1000)); 2886 } 2887 } 2888 EXPORT_SYMBOL_HDA(snd_hda_power_down); 2714 2889 2715 2890 int snd_hda_check_amp_list_power(struct hda_codec *codec, … … 2748 2923 return 0; 2749 2924 } 2925 EXPORT_SYMBOL_HDA(snd_hda_check_amp_list_power); 2750 2926 #endif 2751 2927 … … 2767 2943 return 0; 2768 2944 } 2945 EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info); 2769 2946 2770 2947 int snd_hda_ch_mode_get(struct hda_codec *codec, … … 2784 2961 return 0; 2785 2962 } 2963 EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get); 2786 2964 2787 2965 int snd_hda_ch_mode_put(struct hda_codec *codec, … … 2804 2982 return 1; 2805 2983 } 2984 EXPORT_SYMBOL_HDA(snd_hda_ch_mode_put); 2806 2985 2807 2986 /* … … 2824 3003 return 0; 2825 3004 } 3005 EXPORT_SYMBOL_HDA(snd_hda_input_mux_info); 2826 3006 2827 3007 int snd_hda_input_mux_put(struct hda_codec *codec, … … 2845 3025 return 1; 2846 3026 } 3027 EXPORT_SYMBOL_HDA(snd_hda_input_mux_put); 2847 3028 2848 3029 … … 2897 3078 return 0; 2898 3079 } 3080 EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open); 2899 3081 2900 3082 int snd_hda_multi_out_dig_prepare(struct hda_codec *codec, … … 2909 3091 return 0; 2910 3092 } 3093 EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare); 2911 3094 2912 3095 /* … … 2921 3104 return 0; 2922 3105 } 3106 EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close); 2923 3107 2924 3108 /* … … 2960 3144 SNDRV_PCM_HW_PARAM_CHANNELS, 2); 2961 3145 } 3146 EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open); 2962 3147 2963 3148 /* … … 3018 3203 return 0; 3019 3204 } 3205 EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare); 3020 3206 3021 3207 /* … … 3044 3230 return 0; 3045 3231 } 3232 EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_cleanup); 3046 3233 3047 3234 /* … … 3329 3516 return 0; 3330 3517 } 3518 EXPORT_SYMBOL_HDA(snd_hda_parse_pin_def_config); 3331 3519 3332 3520 /* labels for input pins */ … … 3334 3522 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux" 3335 3523 }; 3524 EXPORT_SYMBOL_HDA(auto_pin_cfg_labels); 3336 3525 3337 3526 … … 3361 3550 return 0; 3362 3551 } 3552 EXPORT_SYMBOL_HDA(snd_hda_suspend); 3363 3553 3364 3554 /** 3365 3555 * snd_hda_resume - resume the codecs 3366 3556 * @bus: the HDA bus 3367 * @state: resume state3368 3557 * 3369 3558 * Returns 0 if successful. … … 3382 3571 return 0; 3383 3572 } 3384 #ifdef CONFIG_SND_HDA_POWER_SAVE 3385 int snd_hda_codecs_inuse(struct hda_bus *bus) 3386 { 3387 struct hda_codec *codec; 3388 3389 list_for_each_entry(codec, &bus->codec_list, list, struct hda_codec) { 3390 if (snd_hda_codec_needs_resume(codec)) 3391 return 1; 3392 } 3393 return 0; 3394 } 3395 #endif 3396 #endif 3573 EXPORT_SYMBOL_HDA(snd_hda_resume); 3574 #endif /* CONFIG_PM */ 3397 3575 3398 3576 /* … … 3423 3601 return snd_array_elem(array, array->used++); 3424 3602 } 3603 EXPORT_SYMBOL_HDA(snd_array_new); 3425 3604 3426 3605 /* free the given array elements */ … … 3432 3611 array->list = NULL; 3433 3612 } 3613 EXPORT_SYMBOL_HDA(snd_array_free); 3614 3615 /* 3616 * used by hda_proc.c and hda_eld.c 3617 */ 3618 void snd_print_pcm_rates(int pcm, char *buf, int buflen) 3619 { 3620 static unsigned int rates[] = { 3621 8000, 11025, 16000, 22050, 32000, 44100, 48000, 88200, 3622 96000, 176400, 192000, 384000 3623 }; 3624 int i, j; 3625 3626 for (i = 0, j = 0; i < ARRAY_SIZE(rates); i++) 3627 if (pcm & (1 << i)) 3628 j += snprintf(buf + j, buflen - j, " %d", rates[i]); 3629 3630 buf[j] = '\0'; /* necessary when j == 0 */ 3631 } 3632 EXPORT_SYMBOL_HDA(snd_print_pcm_rates); 3633 3634 void snd_print_pcm_bits(int pcm, char *buf, int buflen) 3635 { 3636 static unsigned int bits[] = { 8, 16, 20, 24, 32 }; 3637 int i, j; 3638 3639 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++) 3640 if (pcm & (AC_SUPPCM_BITS_8 << i)) 3641 j += snprintf(buf + j, buflen - j, " %d", bits[i]); 3642 3643 buf[j] = '\0'; /* necessary when j == 0 */ 3644 } 3645 EXPORT_SYMBOL_HDA(snd_print_pcm_bits); 3646 3647 MODULE_DESCRIPTION("HDA codec core"); 3648 MODULE_LICENSE("GPL"); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/hda_codec.h ¶
r402 r410 586 586 struct pci_dev *pci; 587 587 const char *modelname; 588 int *power_save; 588 589 struct hda_bus_ops ops; 589 590 }; … … 602 603 struct pci_dev *pci; 603 604 const char *modelname; 605 int *power_save; 604 606 struct hda_bus_ops ops; 605 607 … … 617 619 /* unsolicited event queue */ 618 620 struct hda_bus_unsolicited *unsol; 619 620 struct snd_info_entry *proc; 621 struct workqueue_struct *workq; /* common workqueue for codecs */ 622 623 /* assigned PCMs */ 624 DECLARE_BITMAP(pcm_dev_bits, SNDRV_PCM_DEVICES); 621 625 622 626 /* misc op flags */ 623 627 unsigned int needs_damn_long_delay :1; 628 unsigned int shutdown :1; /* being unloaded */ 624 629 }; 625 630 … … 641 646 }; 642 647 648 struct hda_codec_preset_list { 649 const struct hda_codec_preset *preset; 650 struct module *owner; 651 struct list_head list; 652 }; 653 654 /* initial hook */ 655 int snd_hda_add_codec_preset(struct hda_codec_preset_list *preset); 656 int snd_hda_delete_codec_preset(struct hda_codec_preset_list *preset); 657 643 658 /* ops set by the preset patch */ 644 659 struct hda_codec_ops { … … 734 749 /* detected preset */ 735 750 const struct hda_codec_preset *preset; 751 struct module *owner; 736 752 const char *name; /* codec name */ 737 753 const char *modelname; /* model name for preset */ … … 765 781 struct semaphore spdif_mutex; 766 782 #endif 783 struct mutex control_mutex; 767 784 unsigned int spdif_status; /* IEC958 status bits */ 768 785 unsigned short spdif_ctls; /* SPDIF control bits */ … … 787 804 struct delayed_work power_work; /* delayed task for powerdown */ 788 805 #endif 806 807 /* codec-specific additional proc output */ 808 void (*proc_widget_hook)(struct snd_info_buffer *buffer, 809 struct hda_codec *codec, hda_nid_t nid); 789 810 }; 790 811 … … 801 822 struct hda_bus **busp); 802 823 int snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr, 803 struct hda_codec **codecp);824 int do_init, struct hda_codec **codecp); 804 825 805 826 /* … … 852 873 */ 853 874 int snd_hda_build_pcms(struct hda_bus *bus); 875 int snd_hda_codec_build_pcms(struct hda_codec *codec); 854 876 void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid, 855 877 u32 stream_tag, … … 860 882 unsigned int format, 861 883 unsigned int maxbps); 862 int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,863 u32 *ratesp, u64 *formatsp, unsigned int *bpsp);864 884 int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid, 865 885 unsigned int format); … … 892 912 void snd_hda_power_down(struct hda_codec *codec); 893 913 #define snd_hda_codec_needs_resume(codec) codec->power_count 894 int snd_hda_codecs_inuse(struct hda_bus *bus);895 914 #else 896 915 static inline void snd_hda_power_up(struct hda_codec *codec) {} 897 916 static inline void snd_hda_power_down(struct hda_codec *codec) {} 898 917 #define snd_hda_codec_needs_resume(codec) 1 899 #define snd_hda_codecs_inuse(bus) 1 918 #endif 919 920 /* 921 * Codec modularization 922 */ 923 924 /* Export symbols only for communication with codec drivers; 925 * When built in kernel, all HD-audio drivers are supposed to be statically 926 * linked to the kernel. Thus, the symbols don't have to (or shouldn't) be 927 * exported unless it's built as a module. 928 */ 929 #if defined(MODULE) && !defined(TARGET_OS2) 930 #define EXPORT_SYMBOL_HDA(sym) EXPORT_SYMBOL_GPL(sym) 931 #else 932 #define EXPORT_SYMBOL_HDA(sym) 900 933 #endif 901 934 -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/hda_generic.c ¶
r399 r410 739 739 /*knew = (struct snd_kcontrol_new)HDA_CODEC_MUTE(name, node->nid, 0, HDA_OUTPUT);*/ 740 740 knew.iface = SNDRV_CTL_ELEM_IFACE_MIXER; 741 knew.index = index;741 knew.index = 0; 742 742 knew.name = name; 743 743 knew.info = snd_hda_mixer_amp_switch_info; … … 747 747 if (is_loopback) 748 748 add_input_loopback(codec, node->nid, HDA_OUTPUT, 0); 749 snd_printdd("[%s] NID=0x%x, DIR=OUT \n", name, node->nid);749 snd_printdd("[%s] NID=0x%x, DIR=OUT1\n", name, node->nid); 750 750 err = snd_hda_ctl_add(codec, snd_ctl_new1(&knew, codec)); 751 751 if (err < 0) … … 1138 1138 return err; 1139 1139 } 1140 EXPORT_SYMBOL(snd_hda_parse_generic_codec); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/hda_hwdep.c ¶
r399 r410 117 117 } 118 118 119 int __devinitsnd_hda_create_hwdep(struct hda_codec *codec)119 int /*__devinit*/ snd_hda_create_hwdep(struct hda_codec *codec) 120 120 { 121 121 char hwname[16]; … … 146 146 } 147 147 148 #ifdef CONFIG_SND_HDA_RECONFIG 149 148 150 /* 149 151 * sysfs interface … … 167 169 return err; 168 170 /* rebuild PCMs */ 169 err = snd_hda_ build_pcms(codec->bus);171 err = snd_hda_codec_build_pcms(codec); 170 172 if (err < 0) 171 173 return err; … … 314 316 } 315 317 316 #ifndef TARGET_OS2317 318 #define CODEC_ATTR_RW(type) \ 318 319 __ATTR(type, 0644, type##_show, type##_store) … … 349 350 return 0; 350 351 } 351 #endif /* TARGET_OS2 */ 352 353 #endif /* CONFIG_SND_HDA_RECONFIG */ -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/hda_intel.c ¶
r402 r410 51 51 #include "hda_codec.h" 52 52 53 53 54 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; 54 55 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; … … 63 64 static int probe_mask[SNDRV_CARDS] = {-1}; 64 65 #endif 66 static int probe_only[SNDRV_CARDS]; 65 67 static int single_cmd; 66 68 static int enable_msi; … … 81 83 module_param_array(probe_mask, int, NULL, 0444); 82 84 MODULE_PARM_DESC(probe_mask, "Bitmask to probe codecs (default = -1)."); 85 module_param_array(probe_only, bool, NULL, 0444); 86 MODULE_PARM_DESC(probe_only, "Only probing and no codec initialization."); 83 87 module_param(single_cmd, bool, 0444); 84 88 MODULE_PARM_DESC(single_cmd, "Use single command to communicate with codecs " … … 88 92 89 93 #ifdef CONFIG_SND_HDA_POWER_SAVE 90 /* power_save option is defined in hda_codec.c */ 94 static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT; 95 module_param(power_save, int, 0644); 96 MODULE_PARM_DESC(power_save, "Automatic power-saving timeout " 97 "(in second, 0 = disable)."); 91 98 92 99 /* reset the HD-audio controller in power save mode. … … 297 304 #define VIA_HDAC_DEVICE_ID 0x3288 298 305 306 /* HD Audio class code */ 307 #define PCI_CLASS_MULTIMEDIA_HD_AUDIO 0x0403 299 308 300 309 /* … … 435 444 AZX_DRIVER_NVIDIA, 436 445 AZX_DRIVER_TERA, 446 AZX_DRIVER_GENERIC, 437 447 AZX_NUM_DRIVERS, /* keep this as last entry */ 438 448 }; … … 448 458 [AZX_DRIVER_NVIDIA] = "HDA NVidia", 449 459 [AZX_DRIVER_TERA] = "HDA Teradici", 460 [AZX_DRIVER_GENERIC] = "HD-Audio Generic", 450 461 }; 451 462 … … 1012 1023 snd_pcm_period_elapsed(azx_dev->substream); 1013 1024 spin_lock(&chip->reg_lock); 1014 } else {1025 } else if (chip->bus && chip->bus->workq) { 1015 1026 /* bogus IRQ, process it later */ 1016 1027 azx_dev->irq_pending = 1; 1017 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0) 1018 schedule_work(&chip->irq_pending_work); 1019 #endif 1028 queue_work(chip->bus->workq, 1029 &chip->irq_pending_work); 1020 1030 } 1021 1031 } … … 1255 1265 1256 1266 static int __devinit azx_codec_create(struct azx *chip, const char *model, 1257 unsigned int codec_probe_mask) 1267 unsigned int codec_probe_mask, 1268 int no_init) 1258 1269 { 1259 1270 struct hda_bus_template bus_temp; … … 1269 1280 bus_temp.ops.attach_pcm = azx_attach_pcm_stream; 1270 1281 #ifdef CONFIG_SND_HDA_POWER_SAVE 1282 bus_temp.power_save = &power_save; 1271 1283 bus_temp.ops.pm_notify = azx_power_notify; 1272 1284 #endif … … 1312 1324 if ((chip->codec_mask & (1 << c)) & codec_probe_mask) { 1313 1325 struct hda_codec *codec; 1314 err = snd_hda_codec_new(chip->bus, c, &codec);1326 err = snd_hda_codec_new(chip->bus, c, !no_init, &codec); 1315 1327 if (err < 0) 1316 1328 continue; … … 1767 1779 chip->azx_dev[i].irq_pending = 0; 1768 1780 spin_unlock_irq(&chip->reg_lock); 1769 flush_scheduled_work();1770 1781 } 1771 1782 … … 1938 1949 * power management 1939 1950 */ 1951 1952 static int snd_hda_codecs_inuse(struct hda_bus *bus) 1953 { 1954 struct hda_codec *codec; 1955 1956 list_for_each_entry(codec, &bus->codec_list, list, struct hda_codec) { 1957 if (snd_hda_codec_needs_resume(codec)) 1958 return 1; 1959 } 1960 return 0; 1961 } 1962 1940 1963 static int azx_suspend(struct pci_dev *pci, pm_message_t state) 1941 1964 { … … 1963 1986 } 1964 1987 1988 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 19) 1989 static int azx_resume_early(struct pci_dev *pci) 1990 { 1991 return pci_restore_state(pci); 1992 } 1993 #endif 1994 1965 1995 static int azx_resume(struct pci_dev *pci) 1966 1996 { … … 1968 1998 struct azx *chip = card->private_data; 1969 1999 1970 pci_set_power_state(pci, PCI_D0); 2000 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19) 1971 2001 pci_restore_state(pci); 2002 #endif 2003 1972 2004 if (pci_enable_device(pci) < 0) { 1973 2005 printk(KERN_ERR "hda-intel: pci_enable_device failed, " … … 2110 2142 SND_PCI_QUIRK(0x17aa, 0x2010, "Thinkpad X/T/R60", 0x01), 2111 2143 SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X/T/R61", 0x01), 2112 /* broken BIOS */ 2113 SND_PCI_QUIRK(0x1028, 0x20ac, "Dell Studio Desktop", 0x01), 2144 /* broken BIOS */ 2145 SND_PCI_QUIRK(0x1028, 0x20ac, "Dell Studio Desktop", 0x01), 2146 /* including bogus ALC268 in slot#2 that conflicts with ALC888 */ 2147 SND_PCI_QUIRK(0x17c0, 0x4085, "Medion MD96630", 0x01), 2114 2148 {0} 2115 2149 }; … … 2246 2280 chip->capture_streams = ATIHDMI_NUM_CAPTURE; 2247 2281 break; 2282 case AZX_DRIVER_GENERIC: 2248 2283 default: 2249 2284 chip->playback_streams = ICH6_NUM_PLAYBACK; … … 2348 2383 } 2349 2384 2350 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);2351 if ( !card) {2385 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 2386 if (err < 0) { 2352 2387 snd_printk(KERN_ERR SFX "Error creating card!\n"); 2353 return -ENOMEM;2388 return err; 2354 2389 } 2355 2390 2356 2391 err = azx_create(card, pci, dev, pci_id->driver_data, &chip); 2357 if (err < 0) { 2358 snd_card_free(card); 2359 return err; 2360 } 2392 if (err < 0) 2393 goto out_free; 2361 2394 card->private_data = chip; 2362 2395 2363 2396 /* create codec instances */ 2364 err = azx_codec_create(chip, model[dev], probe_mask[dev]); 2365 if (err < 0) { 2366 snd_card_free(card); 2367 return err; 2368 } 2397 err = azx_codec_create(chip, model[dev], probe_mask[dev], 2398 probe_only[dev]); 2399 if (err < 0) 2400 goto out_free; 2369 2401 2370 2402 /* create PCM streams */ 2371 2403 err = snd_hda_build_pcms(chip->bus); 2372 if (err < 0) { 2373 snd_card_free(card); 2374 return err; 2375 } 2404 if (err < 0) 2405 goto out_free; 2376 2406 2377 2407 /* create mixer controls */ 2378 2408 err = azx_mixer_create(chip); 2379 if (err < 0) { 2380 snd_card_free(card); 2381 return err; 2382 } 2409 if (err < 0) 2410 goto out_free; 2383 2411 2384 2412 snd_card_set_dev(card, &pci->dev); 2385 2413 2386 2414 err = snd_card_register(card); 2387 if (err < 0) { 2388 snd_card_free(card); 2389 return err; 2390 } 2415 if (err < 0) 2416 goto out_free; 2391 2417 2392 2418 pci_set_drvdata(pci, card); … … 2396 2422 2397 2423 dev++; 2424 return err; 2425 out_free: 2426 snd_card_free(card); 2398 2427 return err; 2399 2428 } … … 2470 2499 /* Teradici */ 2471 2500 { PCI_DEVICE(0x6549, 0x1200), .driver_data = AZX_DRIVER_TERA }, 2501 /* AMD Generic, PCI class code and Vendor ID for HD Audio */ 2502 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_ANY_ID), 2503 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8, 2504 .class_mask = 0xffffff, 2505 .driver_data = AZX_DRIVER_GENERIC }, 2472 2506 { 0, } 2473 2507 }; … … 2482 2516 #ifdef CONFIG_PM 2483 2517 .suspend = azx_suspend, 2518 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 19) 2519 .resume_early = azx_resume_early, 2520 #endif 2484 2521 .resume = azx_resume, 2485 2522 #endif -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/hda_local.h ¶
r402 r410 289 289 #endif 290 290 291 #define SND_PRINT_RATES_ADVISED_BUFSIZE 80 292 void snd_print_pcm_rates(int pcm, char *buf, int buflen); 293 294 #define SND_PRINT_BITS_ADVISED_BUFSIZE 16 295 void snd_print_pcm_bits(int pcm, char *buf, int buflen); 296 291 297 /* 292 298 * Misc … … 295 301 const char **modelnames, 296 302 const struct snd_pci_quirk *pci_list); 303 int snd_hda_check_board_codec_sid_config(struct hda_codec *codec, 304 int num_configs, const char **models, 305 const struct snd_pci_quirk *tbl); 297 306 int snd_hda_add_new_ctls(struct hda_codec *codec, 298 307 struct snd_kcontrol_new *knew); … … 408 417 #ifdef CONFIG_SND_HDA_HWDEP 409 418 int snd_hda_create_hwdep(struct hda_codec *codec); 419 #else 420 static inline int snd_hda_create_hwdep(struct hda_codec *codec) { return 0; } 421 #endif 422 423 #ifdef CONFIG_SND_HDA_RECONFIG 410 424 int snd_hda_hwdep_add_sysfs(struct hda_codec *codec); 411 425 #else 412 static inline int snd_hda_create_hwdep(struct hda_codec *codec) { return 0; } 426 static inline int snd_hda_hwdep_add_sysfs(struct hda_codec *codec) 427 { 428 return 0; 429 } 413 430 #endif 414 431 … … 445 462 #define get_amp_index(kc) (((kc)->private_value >> 19) & 0xf) 446 463 464 /* 465 * CEA Short Audio Descriptor data 466 */ 467 struct cea_sad { 468 int channels; 469 int format; /* (format == 0) indicates invalid SAD */ 470 int rates; 471 int sample_bits; /* for LPCM */ 472 int max_bitrate; /* for AC3...ATRAC */ 473 int profile; /* for WMAPRO */ 474 }; 475 476 #define ELD_FIXED_BYTES 20 477 #define ELD_MAX_MNL 16 478 #define ELD_MAX_SAD 16 479 480 /* 481 * ELD: EDID Like Data 482 */ 483 struct hdmi_eld { 484 int eld_size; 485 int baseline_len; 486 int eld_ver; /* (eld_ver == 0) indicates invalid ELD */ 487 int cea_edid_ver; 488 char monitor_name[ELD_MAX_MNL + 1]; 489 int manufacture_id; 490 int product_id; 491 u64 port_id; 492 int support_hdcp; 493 int support_ai; 494 int conn_type; 495 int aud_synch_delay; 496 int spk_alloc; 497 int sad_count; 498 struct cea_sad sad[ELD_MAX_SAD]; 499 #ifdef CONFIG_PROC_FS 500 struct snd_info_entry *proc_entry; 501 #endif 502 }; 503 504 int snd_hdmi_get_eld_size(struct hda_codec *codec, hda_nid_t nid); 505 int snd_hdmi_get_eld(struct hdmi_eld *, struct hda_codec *, hda_nid_t); 506 void snd_hdmi_show_eld(struct hdmi_eld *eld); 507 508 #ifdef CONFIG_PROC_FS 509 int snd_hda_eld_proc_new(struct hda_codec *codec, struct hdmi_eld *eld); 510 void snd_hda_eld_proc_free(struct hda_codec *codec, struct hdmi_eld *eld); 511 #else 512 static inline int snd_hda_eld_proc_new(struct hda_codec *codec, 513 struct hdmi_eld *eld) 514 { 515 return 0; 516 } 517 static inline void snd_hda_eld_proc_free(struct hda_codec *codec, 518 struct hdmi_eld *eld) 519 { 520 } 521 #endif 522 523 #define SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE 80 524 void snd_print_channel_allocation(int spk_alloc, char *buf, int buflen); 525 447 526 #endif /* __SOUND_HDA_LOCAL_H */ -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/hda_proc.c ¶
r402 r410 92 92 static void print_pcm_rates(struct snd_info_buffer *buffer, unsigned int pcm) 93 93 { 94 static unsigned int rates[] = { 95 8000, 11025, 16000, 22050, 32000, 44100, 48000, 88200, 96 96000, 176400, 192000, 384000 97 }; 98 int i; 94 char buf[SND_PRINT_RATES_ADVISED_BUFSIZE]; 99 95 100 96 pcm &= AC_SUPPCM_RATES; 101 97 snd_iprintf(buffer, " rates [0x%x]:", pcm); 102 for (i = 0; i < ARRAY_SIZE(rates); i++) 103 if (pcm & (1 << i)) 104 snd_iprintf(buffer, " %d", rates[i]); 105 snd_iprintf(buffer, "\n"); 98 snd_print_pcm_rates(pcm, buf, sizeof(buf)); 99 snd_iprintf(buffer, "%s\n", buf); 106 100 } 107 101 108 102 static void print_pcm_bits(struct snd_info_buffer *buffer, unsigned int pcm) 109 103 { 110 static unsigned int bits[] = { 8, 16, 20, 24, 32 }; 111 int i; 112 113 pcm = (pcm >> 16) & 0xff; 114 snd_iprintf(buffer, " bits [0x%x]:", pcm); 115 for (i = 0; i < ARRAY_SIZE(bits); i++) 116 if (pcm & (1 << i)) 117 snd_iprintf(buffer, " %d", bits[i]); 118 snd_iprintf(buffer, "\n"); 104 char buf[SND_PRINT_BITS_ADVISED_BUFSIZE]; 105 106 snd_iprintf(buffer, " bits [0x%x]:", (pcm >> 16) & 0xff); 107 snd_print_pcm_bits(pcm, buf, sizeof(buf)); 108 snd_iprintf(buffer, "%s\n", buf); 119 109 } 120 110 … … 425 415 } 426 416 427 static void print_realtek_coef(struct snd_info_buffer *buffer,428 struct hda_codec *codec, hda_nid_t nid)429 {430 int coeff = snd_hda_codec_read(codec, nid, 0,431 AC_VERB_GET_PROC_COEF, 0);432 snd_iprintf(buffer, " Processing Coefficient: 0x%02x\n", coeff);433 coeff = snd_hda_codec_read(codec, nid, 0,434 AC_VERB_GET_COEF_INDEX, 0);435 snd_iprintf(buffer, " Coefficient Index: 0x%02x\n", coeff);436 }437 438 417 static void print_gpio(struct snd_info_buffer *buffer, 439 418 struct hda_codec *codec, hda_nid_t nid) … … 468 447 snd_iprintf(buffer, 469 448 " IO[%d]: enable=%d, dir=%d, wake=%d, " 470 "sticky=%d, data=%d \n", i,449 "sticky=%d, data=%d, unsol=%d\n", i, 471 450 (enable & (1<<i)) ? 1 : 0, 472 451 (direction & (1<<i)) ? 1 : 0, 473 452 (wake & (1<<i)) ? 1 : 0, 474 453 (sticky & (1<<i)) ? 1 : 0, 475 (data & (1<<i)) ? 1 : 0); 454 (data & (1<<i)) ? 1 : 0, 455 (unsol & (1<<i)) ? 1 : 0); 476 456 /* FIXME: add GPO and GPI pin information */ 477 457 } … … 514 494 515 495 print_gpio(buffer, codec, codec->afg); 496 if (codec->proc_widget_hook) 497 codec->proc_widget_hook(buffer, codec, codec->afg); 516 498 517 499 for (i = 0; i < nodes; i++, nid++) { … … 616 598 print_proc_caps(buffer, codec, nid); 617 599 618 /* NID 0x20 == Realtek Define Registers */ 619 if (codec->vendor_id == 0x10ec && nid == 0x20) 620 print_realtek_coef(buffer, codec, nid); 600 if (codec->proc_widget_hook) 601 codec->proc_widget_hook(buffer, codec, nid); 621 602 } 622 603 snd_hda_power_down(codec); -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/patch_analog.c ¶
r402 r410 28 28 #include "hda_codec.h" 29 29 #include "hda_local.h" 30 #include "hda_patch.h"31 30 32 31 struct ad198x_spec { … … 639 638 640 639 static struct snd_kcontrol_new ad1986a_laptop_eapd_mixers[] = { 640 HDA_BIND_VOL("Master Playback Volume", &ad1986a_laptop_master_vol), 641 HDA_BIND_SW("Master Playback Switch", &ad1986a_laptop_master_sw), 642 HDA_CODEC_VOLUME("PCM Playback Volume", 0x03, 0x0, HDA_OUTPUT), 643 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT), 644 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0, HDA_OUTPUT), 645 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0, HDA_OUTPUT), 646 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT), 647 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT), 648 HDA_CODEC_VOLUME("Mic Boost", 0x0f, 0x0, HDA_OUTPUT), 649 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT), 650 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT), 651 { 652 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 653 .name = "Capture Source", 654 .info = ad198x_mux_enum_info, 655 .get = ad198x_mux_enum_get, 656 .put = ad198x_mux_enum_put, 657 }, 658 { 659 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 660 .name = "External Amplifier", 661 .info = ad198x_eapd_info, 662 .get = ad198x_eapd_get, 663 .put = ad198x_eapd_put, 664 .private_value = 0x1b | (1 << 8), /* port-D, inversed */ 665 }, 666 {0} /* end */ 667 }; 668 669 static struct snd_kcontrol_new ad1986a_samsung_mixers[] = { 641 670 HDA_BIND_VOL("Master Playback Volume", &ad1986a_laptop_master_vol), 642 671 HDA_BIND_SW("Master Playback Switch", &ad1986a_laptop_master_sw), … … 931 960 AD1986A_LAPTOP_AUTOMUTE, 932 961 AD1986A_ULTRA, 962 AD1986A_SAMSUNG, 933 963 AD1986A_MODELS 934 964 }; … … 941 971 [AD1986A_LAPTOP_AUTOMUTE] = "laptop-automute", 942 972 [AD1986A_ULTRA] = "ultra", 973 [AD1986A_SAMSUNG] = "samsung", 943 974 }; 944 975 … … 963 994 SND_PCI_QUIRK(0x144d, 0xb03c, "Samsung R55", AD1986A_3STACK), 964 995 SND_PCI_QUIRK(0x144d, 0xc01e, "FSC V2060", AD1986A_LAPTOP), 965 SND_PCI_QUIRK(0x144d, 0xc023, "Samsung X60", AD1986A_ LAPTOP_EAPD),966 SND_PCI_QUIRK(0x144d, 0xc024, "Samsung R65", AD1986A_ LAPTOP_EAPD),967 SND_PCI_QUIRK(0x144d, 0xc026, "Samsung X11", AD1986A_ LAPTOP_EAPD),996 SND_PCI_QUIRK(0x144d, 0xc023, "Samsung X60", AD1986A_SAMSUNG), 997 SND_PCI_QUIRK(0x144d, 0xc024, "Samsung R65", AD1986A_SAMSUNG), 998 SND_PCI_QUIRK(0x144d, 0xc026, "Samsung X11", AD1986A_SAMSUNG), 968 999 SND_PCI_QUIRK(0x144d, 0xc027, "Samsung Q1", AD1986A_ULTRA), 969 1000 SND_PCI_QUIRK(0x144d, 0xc504, "Samsung Q35", AD1986A_3STACK), … … 1047 1078 case AD1986A_LAPTOP_EAPD: 1048 1079 spec->mixers[0] = ad1986a_laptop_eapd_mixers; 1080 spec->num_init_verbs = 2; 1081 spec->init_verbs[1] = ad1986a_eapd_init_verbs; 1082 spec->multiout.max_channels = 2; 1083 spec->multiout.num_dacs = 1; 1084 spec->multiout.dac_nids = ad1986a_laptop_dac_nids; 1085 if (!is_jack_available(codec, 0x25)) 1086 spec->multiout.dig_out_nid = 0; 1087 spec->input_mux = &ad1986a_laptop_eapd_capture_source; 1088 break; 1089 case AD1986A_SAMSUNG: 1090 spec->mixers[0] = ad1986a_samsung_mixers; 1049 1091 spec->num_init_verbs = 3; 1050 1092 spec->init_verbs[1] = ad1986a_eapd_init_verbs; … … 3859 3901 static struct snd_pci_quirk ad1884a_cfg_tbl[] = { 3860 3902 SND_PCI_QUIRK(0x103c, 0x3030, "HP", AD1884A_MOBILE), 3903 SND_PCI_QUIRK(0x103c, 0x3037, "HP 2230s", AD1884A_LAPTOP), 3861 3904 SND_PCI_QUIRK(0x103c, 0x3056, "HP", AD1884A_MOBILE), 3905 SND_PCI_QUIRK(0x103c, 0x30e6, "HP 6730b", AD1884A_LAPTOP), 3862 3906 SND_PCI_QUIRK(0x103c, 0x30e7, "HP EliteBook 8530p", AD1884A_LAPTOP), 3863 3907 SND_PCI_QUIRK(0x103c, 0x3614, "HP 6730s", AD1884A_LAPTOP), … … 4220 4264 spec->adc_nids = ad1882_adc_nids; 4221 4265 spec->capsrc_nids = ad1882_capsrc_nids; 4222 if (codec->vendor_id == 0x11d 1882)4266 if (codec->vendor_id == 0x11d41882) 4223 4267 spec->input_mux = &ad1882_capture_source; 4224 4268 else … … 4226 4270 spec->num_mixers = 2; 4227 4271 spec->mixers[0] = ad1882_base_mixers; 4228 if (codec->vendor_id == 0x11d 1882)4272 if (codec->vendor_id == 0x11d41882) 4229 4273 spec->mixers[1] = ad1882_loopback_mixers; 4230 4274 else … … 4266 4310 * patch entries 4267 4311 */ 4268 st ruct hda_codec_preset snd_hda_preset_analog[] = {4312 static struct hda_codec_preset snd_hda_preset_analog[] = { 4269 4313 { .id = 0x11d4184a, .name = "AD1884A", .patch = patch_ad1884a }, 4270 4314 { .id = 0x11d41882, .name = "AD1882", .patch = patch_ad1882 }, … … 4284 4328 {0} /* terminator */ 4285 4329 }; 4330 4331 MODULE_ALIAS("snd-hda-codec-id:11d4*"); 4332 4333 MODULE_LICENSE("GPL"); 4334 MODULE_DESCRIPTION("Analog Devices HD-audio codec"); 4335 4336 static struct hda_codec_preset_list analog_list = { 4337 .preset = snd_hda_preset_analog, 4338 .owner = THIS_MODULE, 4339 }; 4340 4341 static int __init patch_analog_init(void) 4342 { 4343 return snd_hda_add_codec_preset(&analog_list); 4344 } 4345 4346 static void __exit patch_analog_exit(void) 4347 { 4348 snd_hda_delete_codec_preset(&analog_list); 4349 } 4350 4351 module_init(patch_analog_init) 4352 module_exit(patch_analog_exit) -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/patch_atihdmi.c ¶
r399 r410 28 28 #include "hda_codec.h" 29 29 #include "hda_local.h" 30 #include "hda_patch.h"31 30 32 31 struct atihdmi_spec { … … 188 187 * patch entries 189 188 */ 190 st ruct hda_codec_preset snd_hda_preset_atihdmi[] = {191 { .id = 0x1002793c, .name = " ATIRS600 HDMI", .patch = patch_atihdmi },192 { .id = 0x10027919, .name = " ATIRS600 HDMI", .patch = patch_atihdmi },193 { .id = 0x1002791a, .name = " ATIRS690/780 HDMI", .patch = patch_atihdmi },194 { .id = 0x1002aa01, .name = " ATIR6xx HDMI", .patch = patch_atihdmi },189 static struct hda_codec_preset snd_hda_preset_atihdmi[] = { 190 { .id = 0x1002793c, .name = "RS600 HDMI", .patch = patch_atihdmi }, 191 { .id = 0x10027919, .name = "RS600 HDMI", .patch = patch_atihdmi }, 192 { .id = 0x1002791a, .name = "RS690/780 HDMI", .patch = patch_atihdmi }, 193 { .id = 0x1002aa01, .name = "R6xx HDMI", .patch = patch_atihdmi }, 195 194 { .id = 0x10951390, .name = "SiI1390 HDMI", .patch = patch_atihdmi }, 196 { .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_atihdmi },197 195 { .id = 0x17e80047, .name = "Chrontel HDMI", .patch = patch_atihdmi }, 198 196 {0} /* terminator */ 199 197 }; 198 199 MODULE_ALIAS("snd-hda-codec-id:1002793c"); 200 MODULE_ALIAS("snd-hda-codec-id:10027919"); 201 MODULE_ALIAS("snd-hda-codec-id:1002791a"); 202 MODULE_ALIAS("snd-hda-codec-id:1002aa01"); 203 MODULE_ALIAS("snd-hda-codec-id:10951390"); 204 MODULE_ALIAS("snd-hda-codec-id:17e80047"); 205 206 MODULE_LICENSE("GPL"); 207 MODULE_DESCRIPTION("ATI HDMI HD-audio codec"); 208 209 static struct hda_codec_preset_list atihdmi_list = { 210 .preset = snd_hda_preset_atihdmi, 211 .owner = THIS_MODULE, 212 }; 213 214 static int __init patch_atihdmi_init(void) 215 { 216 return snd_hda_add_codec_preset(&atihdmi_list); 217 } 218 219 static void __exit patch_atihdmi_exit(void) 220 { 221 snd_hda_delete_codec_preset(&atihdmi_list); 222 } 223 224 module_init(patch_atihdmi_init) 225 module_exit(patch_atihdmi_exit) -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/patch_cmedia.c ¶
r399 r410 29 29 #include "hda_codec.h" 30 30 #include "hda_local.h" 31 #include "hda_patch.h"32 31 #define NUM_PINS 11 33 32 … … 737 736 * patch entries 738 737 */ 739 st ruct hda_codec_preset snd_hda_preset_cmedia[] = {738 static struct hda_codec_preset snd_hda_preset_cmedia[] = { 740 739 { .id = 0x13f69880, .name = "CMI9880", .patch = patch_cmi9880 }, 741 740 { .id = 0x434d4980, .name = "CMI9880", .patch = patch_cmi9880 }, 742 741 {0} /* terminator */ 743 742 }; 743 744 MODULE_ALIAS("snd-hda-codec-id:13f69880"); 745 MODULE_ALIAS("snd-hda-codec-id:434d4980"); 746 747 MODULE_LICENSE("GPL"); 748 MODULE_DESCRIPTION("C-Media HD-audio codec"); 749 750 static struct hda_codec_preset_list cmedia_list = { 751 .preset = snd_hda_preset_cmedia, 752 .owner = THIS_MODULE, 753 }; 754 755 static int __init patch_cmedia_init(void) 756 { 757 return snd_hda_add_codec_preset(&cmedia_list); 758 } 759 760 static void __exit patch_cmedia_exit(void) 761 { 762 snd_hda_delete_codec_preset(&cmedia_list); 763 } 764 765 module_init(patch_cmedia_init) 766 module_exit(patch_cmedia_exit) -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/patch_conexant.c ¶
r399 r410 26 26 #include <linux/pci.h> 27 27 #include <sound/core.h> 28 #include <sound/jack.h> 29 28 30 #include "hda_codec.h" 29 31 #include "hda_local.h" 30 #include "hda_patch.h"31 32 32 33 #define CXT_PIN_DIR_IN 0x00 … … 39 40 #define CONEXANT_MIC_EVENT 0x38 40 41 41 42 /* Conexant 5051 specific */ 43 44 #define CXT5051_SPDIF_OUT 0x1C 45 #define CXT5051_PORTB_EVENT 0x38 46 #define CXT5051_PORTC_EVENT 0x39 47 48 49 struct conexant_jack { 50 51 hda_nid_t nid; 52 int type; 53 struct snd_jack *jack; 54 55 }; 42 56 43 57 struct conexant_spec { … … 84 98 85 99 unsigned int spdif_route; 100 101 /* jack detection */ 102 struct snd_array jacks; 86 103 87 104 /* dynamic controls, init_verbs and input_mux */ … … 331 348 } 332 349 350 static int conexant_add_jack(struct hda_codec *codec, 351 hda_nid_t nid, int type) 352 { 353 struct conexant_spec *spec; 354 struct conexant_jack *jack; 355 const char *name; 356 357 spec = codec->spec; 358 snd_array_init(&spec->jacks, sizeof(*jack), 32); 359 jack = snd_array_new(&spec->jacks); 360 name = (type == SND_JACK_HEADPHONE) ? "Headphone" : "Mic" ; 361 362 if (!jack) 363 return -ENOMEM; 364 365 jack->nid = nid; 366 jack->type = type; 367 368 return snd_jack_new(codec->bus->card, name, type, &jack->jack); 369 } 370 371 static void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid) 372 { 373 struct conexant_spec *spec = codec->spec; 374 struct conexant_jack *jacks = spec->jacks.list; 375 376 if (jacks) { 377 int i; 378 for (i = 0; i < spec->jacks.used; i++) { 379 if (jacks->nid == nid) { 380 unsigned int present; 381 present = snd_hda_codec_read(codec, nid, 0, 382 AC_VERB_GET_PIN_SENSE, 0) & 383 AC_PINSENSE_PRESENCE; 384 385 present = (present) ? jacks->type : 0 ; 386 387 snd_jack_report(jacks->jack, 388 present); 389 } 390 jacks++; 391 } 392 } 393 } 394 395 static int conexant_init_jacks(struct hda_codec *codec) 396 { 397 #ifdef CONFIG_SND_JACK 398 struct conexant_spec *spec = codec->spec; 399 int i; 400 401 for (i = 0; i < spec->num_init_verbs; i++) { 402 const struct hda_verb *hv; 403 404 hv = spec->init_verbs[i]; 405 while (hv->nid) { 406 int err = 0; 407 switch (hv->param ^ AC_USRSP_EN) { 408 case CONEXANT_HP_EVENT: 409 err = conexant_add_jack(codec, hv->nid, 410 SND_JACK_HEADPHONE); 411 conexant_report_jack(codec, hv->nid); 412 break; 413 case CXT5051_PORTC_EVENT: 414 case CONEXANT_MIC_EVENT: 415 err = conexant_add_jack(codec, hv->nid, 416 SND_JACK_MICROPHONE); 417 conexant_report_jack(codec, hv->nid); 418 break; 419 } 420 if (err < 0) 421 return err; 422 ++hv; 423 } 424 } 425 #endif 426 return 0; 427 428 } 429 333 430 static int conexant_init(struct hda_codec *codec) 334 431 { … … 343 440 static void conexant_free(struct hda_codec *codec) 344 441 { 442 #ifdef CONFIG_SND_JACK 443 struct conexant_spec *spec = codec->spec; 444 if (spec->jacks.list) { 445 struct conexant_jack *jacks = spec->jacks.list; 446 int i; 447 for (i = 0; i < spec->jacks.used; i++) 448 snd_device_free(codec->bus->card, &jacks[i].jack); 449 snd_array_free(&spec->jacks); 450 } 451 #endif 345 452 kfree(codec->spec); 346 453 } … … 1528 1635 static hda_nid_t cxt5051_dac_nids[1] = { 0x10 }; 1529 1636 static hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 }; 1530 #define CXT5051_SPDIF_OUT 0x1C1531 #define CXT5051_PORTB_EVENT 0x381532 #define CXT5051_PORTC_EVENT 0x391533 1637 1534 1638 static struct hda_channel_mode cxt5051_modes[1] = { … … 1610 1714 unsigned int res) 1611 1715 { 1716 int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20; 1612 1717 switch (res >> 26) { 1613 1718 case CONEXANT_HP_EVENT: … … 1621 1726 break; 1622 1727 } 1728 conexant_report_jack(codec, nid); 1623 1729 } 1624 1730 … … 1695 1801 { 1696 1802 conexant_init(codec); 1803 conexant_init_jacks(codec); 1697 1804 if (codec->patch_ops.unsol_event) { 1698 1805 cxt5051_hp_automute(codec); … … 1772 1879 */ 1773 1880 1774 st ruct hda_codec_preset snd_hda_preset_conexant[] = {1881 static struct hda_codec_preset snd_hda_preset_conexant[] = { 1775 1882 { .id = 0x14f15045, .name = "CX20549 (Venice)", 1776 1883 .patch = patch_cxt5045 }, … … 1781 1888 {0} /* terminator */ 1782 1889 }; 1890 1891 MODULE_ALIAS("snd-hda-codec-id:14f15045"); 1892 MODULE_ALIAS("snd-hda-codec-id:14f15047"); 1893 MODULE_ALIAS("snd-hda-codec-id:14f15051"); 1894 1895 MODULE_LICENSE("GPL"); 1896 MODULE_DESCRIPTION("Conexant HD-audio codec"); 1897 1898 static struct hda_codec_preset_list conexant_list = { 1899 .preset = snd_hda_preset_conexant, 1900 .owner = THIS_MODULE, 1901 }; 1902 1903 static int __init patch_conexant_init(void) 1904 { 1905 return snd_hda_add_codec_preset(&conexant_list); 1906 } 1907 1908 static void __exit patch_conexant_exit(void) 1909 { 1910 snd_hda_delete_codec_preset(&conexant_list); 1911 } 1912 1913 module_init(patch_conexant_init) 1914 module_exit(patch_conexant_exit) -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/patch_realtek.c ¶
r402 r410 31 31 #include "hda_codec.h" 32 32 #include "hda_local.h" 33 #include "hda_patch.h"34 33 35 34 #define ALC880_FRONT_EVENT 0x01 … … 217 216 ALC883_ACER, 218 217 ALC883_ACER_ASPIRE, 218 ALC888_ACER_ASPIRE_4930G, 219 219 ALC883_MEDION, 220 220 ALC883_MEDION_MD2, … … 230 230 ALC883_CLEVO_M720, 231 231 ALC883_FUJITSU_PI2515, 232 ALC888_FUJITSU_XA3530, 232 233 ALC883_3ST_6ch_INTEL, 233 234 ALC888_ASUS_M90V, 234 235 ALC888_ASUS_EEE1601, 236 ALC1200_ASUS_P5Q, 235 237 ALC883_AUTO, 236 238 ALC883_MODEL_LAST, … … 382 384 struct hda_codec *codec = snd_kcontrol_chip(kcontrol); 383 385 struct alc_spec *spec = codec->spec; 384 const struct hda_input_mux *imux = spec->input_mux;386 const struct hda_input_mux *imux; 385 387 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id); 388 unsigned int mux_idx; 386 389 hda_nid_t nid = spec->capsrc_nids ? 387 390 spec->capsrc_nids[adc_idx] : spec->adc_nids[adc_idx]; 391 392 mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx; 393 imux = &spec->input_mux[mux_idx]; 388 394 389 395 if (spec->is_mix_capture) { … … 407 413 } else { 408 414 /* MUX style (e.g. ALC880) */ 409 unsigned int mux_idx; 410 mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx; 411 return snd_hda_input_mux_put(codec, &spec->input_mux[mux_idx], 412 ucontrol, nid, 415 return snd_hda_input_mux_put(codec, imux, ucontrol, nid, 413 416 &spec->cur_mux[adc_idx]); 414 417 } … … 762 765 spec->init_verbs[spec->num_init_verbs++] = verb; 763 766 } 767 768 #ifdef CONFIG_PROC_FS 769 /* 770 * hook for proc 771 */ 772 static void print_realtek_coef(struct snd_info_buffer *buffer, 773 struct hda_codec *codec, hda_nid_t nid) 774 { 775 int coeff; 776 777 if (nid != 0x20) 778 return; 779 coeff = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0); 780 snd_iprintf(buffer, " Processing Coefficient: 0x%02x\n", coeff); 781 coeff = snd_hda_codec_read(codec, nid, 0, 782 AC_VERB_GET_COEF_INDEX, 0); 783 snd_iprintf(buffer, " Coefficient Index: 0x%02x\n", coeff); 784 } 785 #else 786 #define print_realtek_coef NULL 787 #endif 764 788 765 789 /* … … 1154 1178 1155 1179 /* 1180 * ALC888 1181 */ 1182 1183 /* 1184 * 2ch mode 1185 */ 1186 static struct hda_verb alc888_4ST_ch2_intel_init[] = { 1187 /* Mic-in jack as mic in */ 1188 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, 1189 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE }, 1190 /* Line-in jack as Line in */ 1191 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, 1192 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE }, 1193 /* Line-Out as Front */ 1194 { 0x17, AC_VERB_SET_CONNECT_SEL, 0x00}, 1195 {0} /* end */ 1196 }; 1197 1198 /* 1199 * 4ch mode 1200 */ 1201 static struct hda_verb alc888_4ST_ch4_intel_init[] = { 1202 /* Mic-in jack as mic in */ 1203 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, 1204 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE }, 1205 /* Line-in jack as Surround */ 1206 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, 1207 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, 1208 /* Line-Out as Front */ 1209 { 0x17, AC_VERB_SET_CONNECT_SEL, 0x00}, 1210 {0} /* end */ 1211 }; 1212 1213 /* 1214 * 6ch mode 1215 */ 1216 static struct hda_verb alc888_4ST_ch6_intel_init[] = { 1217 /* Mic-in jack as CLFE */ 1218 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, 1219 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, 1220 /* Line-in jack as Surround */ 1221 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, 1222 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, 1223 /* Line-Out as CLFE (workaround because Mic-in is not loud enough) */ 1224 { 0x17, AC_VERB_SET_CONNECT_SEL, 0x03}, 1225 {0} /* end */ 1226 }; 1227 1228 /* 1229 * 8ch mode 1230 */ 1231 static struct hda_verb alc888_4ST_ch8_intel_init[] = { 1232 /* Mic-in jack as CLFE */ 1233 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, 1234 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, 1235 /* Line-in jack as Surround */ 1236 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, 1237 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, 1238 /* Line-Out as Side */ 1239 { 0x17, AC_VERB_SET_CONNECT_SEL, 0x03}, 1240 {0} /* end */ 1241 }; 1242 1243 static struct hda_channel_mode alc888_4ST_8ch_intel_modes[4] = { 1244 { 2, alc888_4ST_ch2_intel_init }, 1245 { 4, alc888_4ST_ch4_intel_init }, 1246 { 6, alc888_4ST_ch6_intel_init }, 1247 { 8, alc888_4ST_ch8_intel_init }, 1248 }; 1249 1250 /* 1251 * ALC888 Fujitsu Siemens Amillo xa3530 1252 */ 1253 1254 static struct hda_verb alc888_fujitsu_xa3530_verbs[] = { 1255 /* Front Mic: set to PIN_IN (empty by default) */ 1256 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, 1257 /* Connect Internal HP to Front */ 1258 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, 1259 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, 1260 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, 1261 /* Connect Bass HP to Front */ 1262 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, 1263 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, 1264 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00}, 1265 /* Connect Line-Out side jack (SPDIF) to Side */ 1266 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, 1267 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, 1268 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03}, 1269 /* Connect Mic jack to CLFE */ 1270 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, 1271 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, 1272 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, 1273 /* Connect Line-in jack to Surround */ 1274 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, 1275 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, 1276 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, 1277 /* Connect HP out jack to Front */ 1278 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, 1279 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, 1280 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, 1281 /* Enable unsolicited event for HP jack and Line-out jack */ 1282 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN}, 1283 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN}, 1284 {0} 1285 }; 1286 1287 static void alc888_fujitsu_xa3530_automute(struct hda_codec *codec) 1288 { 1289 unsigned int present; 1290 unsigned int bits; 1291 /* Line out presence */ 1292 present = snd_hda_codec_read(codec, 0x17, 0, 1293 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; 1294 /* HP out presence */ 1295 present = present || snd_hda_codec_read(codec, 0x1b, 0, 1296 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; 1297 bits = present ? HDA_AMP_MUTE : 0; 1298 /* Toggle internal speakers muting */ 1299 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0, 1300 HDA_AMP_MUTE, bits); 1301 /* Toggle internal bass muting */ 1302 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, 1303 HDA_AMP_MUTE, bits); 1304 } 1305 1306 static void alc888_fujitsu_xa3530_unsol_event(struct hda_codec *codec, 1307 unsigned int res) 1308 { 1309 if (res >> 26 == ALC880_HP_EVENT) 1310 alc888_fujitsu_xa3530_automute(codec); 1311 } 1312 1313 1314 /* 1315 * ALC888 Acer Aspire 4930G model 1316 */ 1317 1318 static struct hda_verb alc888_acer_aspire_4930g_verbs[] = { 1319 /* Front Mic: set to PIN_IN (empty by default) */ 1320 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, 1321 /* Unselect Front Mic by default in input mixer 3 */ 1322 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0xb)}, 1323 /* Enable unsolicited event for HP jack */ 1324 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN}, 1325 /* Connect Internal HP to front */ 1326 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, 1327 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, 1328 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, 1329 /* Connect HP out to front */ 1330 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, 1331 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, 1332 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00}, 1333 {0} 1334 }; 1335 1336 static struct hda_input_mux alc888_2_capture_sources[2] = { 1337 /* Front mic only available on one ADC */ 1338 { 1339 .num_items = 4, 1340 .items = { 1341 { "Mic", 0x0 }, 1342 { "Line", 0x2 }, 1343 { "CD", 0x4 }, 1344 { "Front Mic", 0xb }, 1345 }, 1346 }, 1347 { 1348 .num_items = 3, 1349 .items = { 1350 { "Mic", 0x0 }, 1351 { "Line", 0x2 }, 1352 { "CD", 0x4 }, 1353 }, 1354 } 1355 }; 1356 1357 static struct snd_kcontrol_new alc888_base_mixer[] = { 1358 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT), 1359 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT), 1360 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT), 1361 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT), 1362 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, 1363 HDA_OUTPUT), 1364 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT), 1365 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT), 1366 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT), 1367 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT), 1368 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT), 1369 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT), 1370 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT), 1371 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT), 1372 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT), 1373 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT), 1374 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT), 1375 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT), 1376 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT), 1377 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT), 1378 {0} /* end */ 1379 }; 1380 1381 static void alc888_acer_aspire_4930g_automute(struct hda_codec *codec) 1382 { 1383 unsigned int present; 1384 unsigned int bits; 1385 present = snd_hda_codec_read(codec, 0x15, 0, 1386 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; 1387 bits = present ? HDA_AMP_MUTE : 0; 1388 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0, 1389 HDA_AMP_MUTE, bits); 1390 } 1391 1392 static void alc888_acer_aspire_4930g_unsol_event(struct hda_codec *codec, 1393 unsigned int res) 1394 { 1395 if (res >> 26 == ALC880_HP_EVENT) 1396 alc888_acer_aspire_4930g_automute(codec); 1397 } 1398 1399 /* 1156 1400 * ALC880 3-stack model 1157 1401 * … … 1258 1502 int err; 1259 1503 1260 mutex_lock(&codec-> spdif_mutex); /* reuse spdif_mutex */1504 mutex_lock(&codec->control_mutex); 1261 1505 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, 1262 1506 HDA_INPUT); 1263 1507 err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo); 1264 mutex_unlock(&codec-> spdif_mutex); /* reuse spdif_mutex */1508 mutex_unlock(&codec->control_mutex); 1265 1509 return err; 1266 1510 } … … 1273 1517 int err; 1274 1518 1275 mutex_lock(&codec-> spdif_mutex); /* reuse spdif_mutex */1519 mutex_lock(&codec->control_mutex); 1276 1520 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, 1277 1521 HDA_INPUT); 1278 1522 err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv); 1279 mutex_unlock(&codec-> spdif_mutex); /* reuse spdif_mutex */1523 mutex_unlock(&codec->control_mutex); 1280 1524 return err; 1281 1525 } … … 1293 1537 int err; 1294 1538 1295 mutex_lock(&codec-> spdif_mutex); /* reuse spdif_mutex */1539 mutex_lock(&codec->control_mutex); 1296 1540 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(spec->adc_nids[adc_idx], 1297 1541 3, 0, HDA_INPUT); 1298 1542 err = func(kcontrol, ucontrol); 1299 mutex_unlock(&codec-> spdif_mutex); /* reuse spdif_mutex */1543 mutex_unlock(&codec->control_mutex); 1300 1544 return err; 1301 1545 } … … 4046 4290 alc_capture_mixer3, 4047 4291 }; 4048 if (spec->num_adc_nids > 0 && spec->num_adc_nids < 3)4292 if (spec->num_adc_nids > 0 && spec->num_adc_nids <= 3) 4049 4293 spec->cap_mixer = caps[spec->num_adc_nids - 1]; 4050 4294 } … … 4121 4365 spec->loopback.amplist = alc880_loopbacks; 4122 4366 #endif 4367 codec->proc_widget_hook = print_realtek_coef; 4123 4368 4124 4369 return 0; … … 5646 5891 spec->loopback.amplist = alc260_loopbacks; 5647 5892 #endif 5893 codec->proc_widget_hook = print_realtek_coef; 5648 5894 5649 5895 return 0; … … 6851 7097 spec->loopback.amplist = alc882_loopbacks; 6852 7098 #endif 7099 codec->proc_widget_hook = print_realtek_coef; 6853 7100 6854 7101 return 0; … … 6869 7116 #define ALC883_DIGIN_NID 0x0a 6870 7117 7118 #define ALC1200_DIGOUT_NID 0x10 7119 6871 7120 static hda_nid_t alc883_dac_nids[4] = { 6872 7121 /* front, rear, clfe, rear_surr */ … … 6884 7133 }; 6885 7134 7135 static hda_nid_t alc883_adc_nids_rev[2] = { 7136 /* ADC2-1 */ 7137 0x09, 0x08 7138 }; 7139 6886 7140 static hda_nid_t alc883_capsrc_nids[2] = { 0x23, 0x22 }; 7141 7142 static hda_nid_t alc883_capsrc_nids_rev[2] = { 0x22, 0x23 }; 6887 7143 6888 7144 /* input MUX */ … … 8177 8433 [ALC883_ACER] = "acer", 8178 8434 [ALC883_ACER_ASPIRE] = "acer-aspire", 8435 [ALC888_ACER_ASPIRE_4930G] = "acer-aspire-4930g", 8179 8436 [ALC883_MEDION] = "medion", 8180 8437 [ALC883_MEDION_MD2] = "medion-md2", … … 8190 8447 [ALC883_CLEVO_M720] = "clevo-m720", 8191 8448 [ALC883_FUJITSU_PI2515] = "fujitsu-pi2515", 8449 [ALC888_FUJITSU_XA3530] = "fujitsu-xa3530", 8192 8450 [ALC883_3ST_6ch_INTEL] = "3stack-6ch-intel", 8451 [ALC1200_ASUS_P5Q] = "asus-p5q", 8193 8452 [ALC883_AUTO] = "auto", 8194 8453 }; … … 8201 8460 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_ACER_ASPIRE), 8202 8461 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_ACER_ASPIRE), 8462 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G", 8463 ALC888_ACER_ASPIRE_4930G), 8464 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G", 8465 ALC888_ACER_ASPIRE_4930G), 8466 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G", 8467 ALC888_ACER_ASPIRE_4930G), 8203 8468 SND_PCI_QUIRK(0x1025, 0, "Acer laptop", ALC883_ACER), /* default Acer */ 8204 8469 SND_PCI_QUIRK(0x1028, 0x020d, "Dell Inspiron 530", ALC888_6ST_DELL), … … 8207 8472 SND_PCI_QUIRK(0x103c, 0x2a60, "HP Lucknow", ALC888_3ST_HP), 8208 8473 SND_PCI_QUIRK(0x103c, 0x2a61, "HP Nettle", ALC883_6ST_DIG), 8474 SND_PCI_QUIRK(0x103c, 0x2a66, "HP Acacia", ALC888_3ST_HP), 8209 8475 SND_PCI_QUIRK(0x1043, 0x1873, "Asus M90V", ALC888_ASUS_M90V), 8210 8476 SND_PCI_QUIRK(0x1043, 0x8249, "Asus M2A-VM HDMI", ALC883_3ST_6ch_DIG), 8477 SND_PCI_QUIRK(0x1043, 0x82fe, "Asus P5Q-EM HDMI", ALC1200_ASUS_P5Q), 8211 8478 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_ASUS_EEE1601), 8212 8479 SND_PCI_QUIRK(0x105b, 0x0ce8, "Foxconn P35AX-S", ALC883_6ST_DIG), 8213 8480 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC883_6ST_DIG), 8481 SND_PCI_QUIRK(0x1071, 0x8227, "Mitac 82801H", ALC883_MITAC), 8214 8482 SND_PCI_QUIRK(0x1071, 0x8253, "Mitac 8252d", ALC883_MITAC), 8215 8483 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC883_LAPTOP_EAPD), … … 8235 8503 SND_PCI_QUIRK(0x1462, 0x7187, "MSI", ALC883_6ST_DIG), 8236 8504 SND_PCI_QUIRK(0x1462, 0x7250, "MSI", ALC883_6ST_DIG), 8505 SND_PCI_QUIRK(0x1462, 0x7260, "MSI 7260", ALC883_TARGA_DIG), 8237 8506 SND_PCI_QUIRK(0x1462, 0x7267, "MSI", ALC883_3ST_6ch_DIG), 8238 8507 SND_PCI_QUIRK(0x1462, 0x7280, "MSI", ALC883_6ST_DIG), … … 8246 8515 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_MEDION), 8247 8516 SND_PCI_QUIRK(0x1734, 0x1108, "Fujitsu AMILO Pi2515", ALC883_FUJITSU_PI2515), 8517 SND_PCI_QUIRK(0x1734, 0x113d, "Fujitsu AMILO Xa3530", 8518 ALC888_FUJITSU_XA3530), 8248 8519 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo 101e", ALC883_LENOVO_101E_2ch), 8249 8520 SND_PCI_QUIRK(0x17aa, 0x2085, "Lenovo NB0763", ALC883_LENOVO_NB0763), … … 8257 8528 SND_PCI_QUIRK(0x8086, 0x0001, "DG33BUC", ALC883_3ST_6ch_INTEL), 8258 8529 SND_PCI_QUIRK(0x8086, 0x0002, "DG33FBC", ALC883_3ST_6ch_INTEL), 8530 SND_PCI_QUIRK(0x8086, 0x2503, "82801H", ALC883_MITAC), 8531 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC883_3ST_6ch_INTEL), 8259 8532 SND_PCI_QUIRK(0x8086, 0xd601, "D102GGC", ALC883_3ST_6ch), 8260 8533 {0} … … 8371 8644 .init_hook = alc883_acer_aspire_automute, 8372 8645 }, 8646 [ALC888_ACER_ASPIRE_4930G] = { 8647 .mixers = { alc888_base_mixer, 8648 alc883_chmode_mixer }, 8649 .init_verbs = { alc883_init_verbs, alc880_gpio1_init_verbs, 8650 alc888_acer_aspire_4930g_verbs }, 8651 .num_dacs = ARRAY_SIZE(alc883_dac_nids), 8652 .dac_nids = alc883_dac_nids, 8653 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids_rev), 8654 .adc_nids = alc883_adc_nids_rev, 8655 .capsrc_nids = alc883_capsrc_nids_rev, 8656 .dig_out_nid = ALC883_DIGOUT_NID, 8657 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes), 8658 .channel_mode = alc883_3ST_6ch_modes, 8659 .need_dac_fix = 1, 8660 .num_mux_defs = 8661 ARRAY_SIZE(alc888_2_capture_sources), 8662 .input_mux = alc888_2_capture_sources, 8663 .unsol_event = alc888_acer_aspire_4930g_unsol_event, 8664 .init_hook = alc888_acer_aspire_4930g_automute, 8665 }, 8373 8666 [ALC883_MEDION] = { 8374 8667 .mixers = { alc883_fivestack_mixer, … … 8513 8806 .unsol_event = alc883_2ch_fujitsu_pi2515_unsol_event, 8514 8807 .init_hook = alc883_2ch_fujitsu_pi2515_automute, 8808 }, 8809 [ALC888_FUJITSU_XA3530] = { 8810 .mixers = { alc888_base_mixer, alc883_chmode_mixer }, 8811 .init_verbs = { alc883_init_verbs, 8812 alc888_fujitsu_xa3530_verbs }, 8813 .num_dacs = ARRAY_SIZE(alc883_dac_nids), 8814 .dac_nids = alc883_dac_nids, 8815 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids_rev), 8816 .adc_nids = alc883_adc_nids_rev, 8817 .capsrc_nids = alc883_capsrc_nids_rev, 8818 .dig_out_nid = ALC883_DIGOUT_NID, 8819 .num_channel_mode = ARRAY_SIZE(alc888_4ST_8ch_intel_modes), 8820 .channel_mode = alc888_4ST_8ch_intel_modes, 8821 .num_mux_defs = 8822 ARRAY_SIZE(alc888_2_capture_sources), 8823 .input_mux = alc888_2_capture_sources, 8824 .unsol_event = alc888_fujitsu_xa3530_unsol_event, 8825 .init_hook = alc888_fujitsu_xa3530_automute, 8515 8826 }, 8516 8827 [ALC888_LENOVO_SKY] = { … … 8555 8866 .unsol_event = alc883_eee1601_unsol_event, 8556 8867 .init_hook = alc883_eee1601_inithook, 8868 }, 8869 [ALC1200_ASUS_P5Q] = { 8870 .mixers = { alc883_base_mixer, alc883_chmode_mixer }, 8871 .init_verbs = { alc883_init_verbs }, 8872 .num_dacs = ARRAY_SIZE(alc883_dac_nids), 8873 .dac_nids = alc883_dac_nids, 8874 .dig_out_nid = ALC1200_DIGOUT_NID, 8875 .dig_in_nid = ALC883_DIGIN_NID, 8876 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes), 8877 .channel_mode = alc883_sixstack_modes, 8878 .input_mux = &alc883_capture_source, 8557 8879 }, 8558 8880 }; … … 8752 9074 spec->loopback.amplist = alc883_loopbacks; 8753 9075 #endif 9076 codec->proc_widget_hook = print_realtek_coef; 8754 9077 8755 9078 return 0; … … 10244 10567 SND_PCI_QUIRK(0x104d, 0x900e, "Sony ASSAMD", ALC262_SONY_ASSAMD), 10245 10568 SND_PCI_QUIRK(0x104d, 0x9015, "Sony 0x9015", ALC262_SONY_ASSAMD), 10569 SND_PCI_QUIRK(0x104d, 0x9033, "Sony VAIO VGN-SR19XN", 10570 ALC262_SONY_ASSAMD), 10246 10571 SND_PCI_QUIRK(0x1179, 0x0001, "Toshiba dynabook SS RX1", 10247 10572 ALC262_TOSHIBA_RX1), … … 10251 10576 SND_PCI_QUIRK(0x144d, 0xc032, "Samsung Q1 Ultra", ALC262_ULTRA), 10252 10577 SND_PCI_QUIRK(0x144d, 0xc039, "Samsung Q1U EL", ALC262_ULTRA), 10578 SND_PCI_QUIRK(0x144d, 0xc510, "Samsung Q45", ALC262_HIPPO), 10253 10579 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000 y410", ALC262_LENOVO_3000), 10254 10580 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_BENQ_ED8), … … 10558 10884 spec->loopback.amplist = alc262_loopbacks; 10559 10885 #endif 10886 codec->proc_widget_hook = print_realtek_coef; 10560 10887 10561 10888 return 0; … … 11371 11698 ALC268_ACER_ASPIRE_ONE), 11372 11699 SND_PCI_QUIRK(0x1028, 0x0253, "Dell OEM", ALC268_DELL), 11700 SND_PCI_QUIRK(0x1028, 0x02b0, "Dell Inspiron Mini9", ALC268_DELL), 11373 11701 SND_PCI_QUIRK(0x103c, 0x30cc, "TOSHIBA", ALC268_TOSHIBA), 11374 11702 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC268_3ST), … … 11622 11950 if (board_config == ALC268_AUTO) 11623 11951 spec->init_hook = alc268_auto_init; 11952 11953 codec->proc_widget_hook = print_realtek_coef; 11624 11954 11625 11955 return 0; … … 12424 12754 spec->loopback.amplist = alc269_loopbacks; 12425 12755 #endif 12756 codec->proc_widget_hook = print_realtek_coef; 12426 12757 12427 12758 return 0; … … 13511 13842 spec->loopback.amplist = alc861_loopbacks; 13512 13843 #endif 13844 codec->proc_widget_hook = print_realtek_coef; 13513 13845 13514 13846 return 0; … … 14472 14804 spec->loopback.amplist = alc861vd_loopbacks; 14473 14805 #endif 14806 codec->proc_widget_hook = print_realtek_coef; 14474 14807 14475 14808 return 0; … … 16281 16614 spec->loopback.amplist = alc662_loopbacks; 16282 16615 #endif 16616 codec->proc_widget_hook = print_realtek_coef; 16283 16617 16284 16618 return 0; … … 16288 16622 * patch entries 16289 16623 */ 16290 st ruct hda_codec_preset snd_hda_preset_realtek[] = {16624 static struct hda_codec_preset snd_hda_preset_realtek[] = { 16291 16625 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 }, 16292 16626 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 }, … … 16314 16648 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 }, 16315 16649 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc883 }, 16316 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc883 },16317 16650 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200", 16318 16651 .patch = patch_alc883 }, 16652 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc883 }, 16319 16653 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc883 }, 16320 16654 {0} /* terminator */ 16321 16655 }; 16656 16657 MODULE_ALIAS("snd-hda-codec-id:10ec*"); 16658 16659 MODULE_LICENSE("GPL"); 16660 MODULE_DESCRIPTION("Realtek HD-audio codec"); 16661 16662 static struct hda_codec_preset_list realtek_list = { 16663 .preset = snd_hda_preset_realtek, 16664 .owner = THIS_MODULE, 16665 }; 16666 16667 static int __init patch_realtek_init(void) 16668 { 16669 return snd_hda_add_codec_preset(&realtek_list); 16670 } 16671 16672 static void __exit patch_realtek_exit(void) 16673 { 16674 snd_hda_delete_codec_preset(&realtek_list); 16675 } 16676 16677 module_init(patch_realtek_init) 16678 module_exit(patch_realtek_exit) -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/patch_si3054.c ¶
r399 r410 29 29 #include "hda_codec.h" 30 30 #include "hda_local.h" 31 #include "hda_patch.h"32 31 33 32 /* si3054 verbs */ … … 284 283 * patch entries 285 284 */ 286 st ruct hda_codec_preset snd_hda_preset_si3054[] = {285 static struct hda_codec_preset snd_hda_preset_si3054[] = { 287 286 { .id = 0x163c3055, .name = "Si3054", .patch = patch_si3054 }, 288 287 { .id = 0x163c3155, .name = "Si3054", .patch = patch_si3054 }, … … 302 301 }; 303 302 303 MODULE_ALIAS("snd-hda-codec-id:163c3055"); 304 MODULE_ALIAS("snd-hda-codec-id:163c3155"); 305 MODULE_ALIAS("snd-hda-codec-id:11c13026"); 306 MODULE_ALIAS("snd-hda-codec-id:11c13055"); 307 MODULE_ALIAS("snd-hda-codec-id:11c13155"); 308 MODULE_ALIAS("snd-hda-codec-id:10573055"); 309 MODULE_ALIAS("snd-hda-codec-id:10573057"); 310 MODULE_ALIAS("snd-hda-codec-id:10573155"); 311 MODULE_ALIAS("snd-hda-codec-id:11063288"); 312 MODULE_ALIAS("snd-hda-codec-id:15433155"); 313 MODULE_ALIAS("snd-hda-codec-id:18540018"); 314 315 MODULE_LICENSE("GPL"); 316 MODULE_DESCRIPTION("Si3054 HD-audio modem codec"); 317 318 static struct hda_codec_preset_list si3054_list = { 319 .preset = snd_hda_preset_si3054, 320 .owner = THIS_MODULE, 321 }; 322 323 static int __init patch_si3054_init(void) 324 { 325 return snd_hda_add_codec_preset(&si3054_list); 326 } 327 328 static void __exit patch_si3054_exit(void) 329 { 330 snd_hda_delete_codec_preset(&si3054_list); 331 } 332 333 module_init(patch_si3054_init) 334 module_exit(patch_si3054_exit) -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/patch_sigmatel.c ¶
r402 r410 34 34 #include "hda_codec.h" 35 35 #include "hda_local.h" 36 #include "hda_patch.h"37 36 #include "hda_beep.h" 38 37 39 #define STAC_INSERT_EVENT 0x10 40 #define STAC_PWR_EVENT 0x20 41 #define STAC_HP_EVENT 0x30 42 #define STAC_VREF_EVENT 0x40 38 enum { 39 STAC_VREF_EVENT = 1, 40 STAC_INSERT_EVENT, 41 STAC_PWR_EVENT, 42 STAC_HP_EVENT, 43 }; 43 44 44 45 enum { … … 55 56 STAC_9200_DELL_M26, 56 57 STAC_9200_DELL_M27, 57 STAC_9200_GATEWAY, 58 STAC_9200_M4, 59 STAC_9200_M4_2, 58 60 STAC_9200_PANASONIC, 59 61 STAC_9200_MODELS … … 69 71 70 72 enum { 73 STAC_92HD73XX_NO_JD, /* no jack-detection */ 71 74 STAC_92HD73XX_REF, 72 STAC_DELL_M6, 75 STAC_DELL_M6_AMIC, 76 STAC_DELL_M6_DMIC, 77 STAC_DELL_M6_BOTH, 73 78 STAC_DELL_EQ, 74 79 STAC_92HD73XX_MODELS … … 84 89 STAC_DELL_M4_1, 85 90 STAC_DELL_M4_2, 91 STAC_DELL_M4_3, 86 92 STAC_HP_M4, 93 STAC_HP_DV5, 87 94 STAC_92HD71BXX_MODELS 88 95 }; … … 90 97 enum { 91 98 STAC_925x_REF, 99 STAC_M1, 100 STAC_M1_2, 101 STAC_M2, 92 102 STAC_M2_2, 93 STAC_MA6, 94 STAC_PA6, 103 STAC_M3, 104 STAC_M5, 105 STAC_M6, 95 106 STAC_925x_MODELS 96 107 }; … … 124 135 125 136 enum { 137 STAC_D965_REF_NO_JD, /* no jack-detection */ 126 138 STAC_D965_REF, 127 139 STAC_D965_3ST, … … 134 146 struct sigmatel_event { 135 147 hda_nid_t nid; 148 unsigned char type; 149 unsigned char tag; 136 150 int data; 137 151 }; … … 148 162 149 163 int board_config; 164 unsigned int eapd_switch: 1; 150 165 unsigned int surr_switch: 1; 151 unsigned int line_switch: 1;152 unsigned int mic_switch: 1;153 166 unsigned int alt_switch: 1; 154 167 unsigned int hp_detect: 1; … … 187 200 struct hda_multi_out multiout; 188 201 hda_nid_t dac_nids[5]; 202 hda_nid_t hp_dacs[5]; 203 hda_nid_t speaker_dacs[5]; 189 204 190 205 /* capture */ … … 210 225 unsigned int num_pins; 211 226 unsigned int *pin_configs; 212 unsigned int *bios_pin_configs;213 227 214 228 /* codec specific stuff */ … … 231 245 unsigned int io_switch[2]; 232 246 unsigned int clfe_swap; 233 unsigned int hp_switch; 247 hda_nid_t line_switch; /* shared line-in for input and output */ 248 hda_nid_t mic_switch; /* shared mic-in for input and output */ 249 hda_nid_t hp_switch; /* NID of HP as line-out */ 234 250 unsigned int aloopback; 235 251 … … 282 298 283 299 #define STAC92HD73_DAC_COUNT 5 284 static hda_nid_t stac92hd73xx_dac_nids[STAC92HD73_DAC_COUNT] = {285 0x15, 0x16, 0x17, 0x18, 0x19,286 };287 300 288 301 static hda_nid_t stac92hd73xx_mux_nids[4] = { … … 303 316 }; 304 317 305 #define STAC92HD81_DAC_COUNT 2306 318 #define STAC92HD83_DAC_COUNT 3 307 static hda_nid_t stac92hd83xxx_dac_nids[STAC92HD73_DAC_COUNT] = {308 0x13, 0x14, 0x22,309 };310 319 311 320 static hda_nid_t stac92hd83xxx_dmux_nids[2] = { … … 326 335 327 336 static unsigned int stac92hd83xxx_pwr_mapping[4] = { 328 0x03, 0x0c, 0x10, 0x40, 337 0x03, 0x0c, 0x20, 0x80, 338 }; 339 340 static hda_nid_t stac92hd83xxx_amp_nids[1] = { 341 0xc, 329 342 }; 330 343 … … 347 360 static hda_nid_t stac92hd71bxx_smux_nids[2] = { 348 361 0x24, 0x25, 349 };350 351 static hda_nid_t stac92hd71bxx_dac_nids[1] = {352 0x10, /*0x11, */353 362 }; 354 363 … … 584 593 nid = codec->slave_dig_outs[smux_idx - 1]; 585 594 if (spec->cur_smux[smux_idx] == smux->num_items - 1) 586 val = AMP_OUT_MUTE;595 val = HDA_AMP_MUTE; 587 596 else 588 val = AMP_OUT_UNMUTE;597 val = 0; 589 598 /* un/mute SPDIF out */ 590 snd_hda_codec_ write_cache(codec, nid, 0,591 AC_VERB_SET_AMP_GAIN_MUTE, val);599 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0, 600 HDA_AMP_MUTE, val); 592 601 } 593 602 return 0; … … 754 763 /* set master volume and direct control */ 755 764 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, 756 /* setup audio connections */757 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00},758 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x01},759 { 0x11, AC_VERB_SET_CONNECT_SEL, 0x02},760 765 /* setup adcs to point to mixer */ 761 766 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b}, … … 776 781 * and direct control */ 777 782 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec}, 778 /* setup audio connections */779 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},780 { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x02},781 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x01},782 783 /* setup adcs to point to mixer */ 783 784 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b}, … … 793 794 static struct hda_verb dell_m6_core_init[] = { 794 795 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, 795 /* setup audio connections */796 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},797 { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x01},798 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x02},799 796 /* setup adcs to point to mixer */ 800 797 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b}, … … 811 808 /* set master volume and direct control */ 812 809 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, 813 /* setup audio connections */814 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00},815 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x01},816 { 0x11, AC_VERB_SET_CONNECT_SEL, 0x02},817 /* connect hp ports to dac3 */818 { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x03},819 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x03},820 810 /* setup adcs to point to mixer */ 821 811 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b}, … … 835 825 /* set master volume and direct control */ 836 826 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, 837 /* setup audio connections */838 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },839 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x01 },840 { 0x11, AC_VERB_SET_CONNECT_SEL, 0x02 },841 827 /* dac3 is connected to import3 mux */ 842 828 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0xb07f}, 843 /* connect hp ports to dac4 */844 { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x04},845 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x04},846 829 /* setup adcs to point to mixer */ 847 830 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x0b}, … … 869 852 /* power state controls amps */ 870 853 { 0x01, AC_VERB_SET_EAPD, 1 << 2}, 854 {0} 871 855 }; 872 856 … … 874 858 /* set master volume and direct control */ 875 859 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, 876 /* connect headphone jack to dac1 */877 { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x01},878 860 /* unmute right and left channels for nodes 0x0a, 0xd, 0x0f */ 879 861 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, 880 862 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, 881 863 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, 864 {0} 882 865 }; 883 866 … … 894 877 /* set master volume and direct control */ 895 878 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, 896 /* connect headphone jack to dac1 */897 { 0x0a, AC_VERB_SET_CONNECT_SEL, 0x01},898 879 /* unmute right and left channels for nodes 0x0a, 0xd */ 899 880 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, … … 905 886 /* set dac0mux for dac converter */ 906 887 { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00}, 888 /* mute the master volume */ 889 { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE }, 907 890 {0} 908 891 }; … … 1095 1078 HDA_CODEC_MUTE_IDX("Capture Switch", 0x1, 0x18, 0x0, HDA_OUTPUT), 1096 1079 1097 HDA_CODEC_VOLUME("DAC0 Capture Volume", 0x1b, 0 , HDA_INPUT),1098 HDA_CODEC_MUTE("DAC0 Capture Switch", 0x1b, 0 , HDA_INPUT),1099 1100 HDA_CODEC_VOLUME("DAC1 Capture Volume", 0x1b, 0x 1, HDA_INPUT),1101 HDA_CODEC_MUTE("DAC1 Capture Switch", 0x1b, 0x 1, HDA_INPUT),1102 1103 HDA_CODEC_VOLUME("Front Mic Capture Volume", 0x1b, 0x 2, HDA_INPUT),1104 HDA_CODEC_MUTE("Front Mic Capture Switch", 0x1b, 0x 2, HDA_INPUT),1105 1106 HDA_CODEC_VOLUME("Line In Capture Volume", 0x1b, 0x 3, HDA_INPUT),1107 HDA_CODEC_MUTE("Line In Capture Switch", 0x1b, 0x 3, HDA_INPUT),1080 HDA_CODEC_VOLUME("DAC0 Capture Volume", 0x1b, 0x3, HDA_INPUT), 1081 HDA_CODEC_MUTE("DAC0 Capture Switch", 0x1b, 0x3, HDA_INPUT), 1082 1083 HDA_CODEC_VOLUME("DAC1 Capture Volume", 0x1b, 0x4, HDA_INPUT), 1084 HDA_CODEC_MUTE("DAC1 Capture Switch", 0x1b, 0x4, HDA_INPUT), 1085 1086 HDA_CODEC_VOLUME("Front Mic Capture Volume", 0x1b, 0x0, HDA_INPUT), 1087 HDA_CODEC_MUTE("Front Mic Capture Switch", 0x1b, 0x0, HDA_INPUT), 1088 1089 HDA_CODEC_VOLUME("Line In Capture Volume", 0x1b, 0x2, HDA_INPUT), 1090 HDA_CODEC_MUTE("Line In Capture Switch", 0x1b, 0x2, HDA_INPUT), 1108 1091 1109 1092 /* 1110 HDA_CODEC_VOLUME("Mic Capture Volume", 0x1b, 0x 4, HDA_INPUT),1111 HDA_CODEC_MUTE("Mic Capture Switch", 0x1b 0x 4, HDA_INPUT),1093 HDA_CODEC_VOLUME("Mic Capture Volume", 0x1b, 0x1, HDA_INPUT), 1094 HDA_CODEC_MUTE("Mic Capture Switch", 0x1b 0x1, HDA_INPUT), 1112 1095 */ 1113 1096 {0} /* end */ … … 1156 1139 1157 1140 static struct snd_kcontrol_new stac925x_mixer[] = { 1141 HDA_CODEC_VOLUME("Master Playback Volume", 0x0e, 0, HDA_OUTPUT), 1142 HDA_CODEC_MUTE("Master Playback Switch", 0x0e, 0, HDA_OUTPUT), 1158 1143 STAC_INPUT_SOURCE(1), 1159 1144 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_OUTPUT), … … 1249 1234 1250 1235 static void stac92xx_free_kctls(struct hda_codec *codec); 1236 static int stac92xx_add_jack(struct hda_codec *codec, hda_nid_t nid, int type); 1251 1237 1252 1238 static int stac92xx_build_controls(struct hda_codec *codec) 1253 1239 { 1254 1240 struct sigmatel_spec *spec = codec->spec; 1241 struct auto_pin_cfg *cfg = &spec->autocfg; 1242 hda_nid_t nid; 1255 1243 int err; 1256 1244 int i; … … 1283 1271 } 1284 1272 stac_smux_mixer.count = spec->num_smuxes; 1285 err = snd_ ctl_add(codec->bus->card,1273 err = snd_hda_ctl_add(codec, 1286 1274 snd_ctl_new1(&stac_smux_mixer, codec)); 1287 1275 if (err < 0) … … 1323 1311 1324 1312 stac92xx_free_kctls(codec); /* no longer needed */ 1313 1314 /* create jack input elements */ 1315 if (spec->hp_detect) { 1316 for (i = 0; i < cfg->hp_outs; i++) { 1317 int type = SND_JACK_HEADPHONE; 1318 nid = cfg->hp_pins[i]; 1319 /* jack detection */ 1320 if (cfg->hp_outs == i) 1321 type |= SND_JACK_LINEOUT; 1322 err = stac92xx_add_jack(codec, nid, type); 1323 if (err < 0) 1324 return err; 1325 } 1326 } 1327 for (i = 0; i < cfg->line_outs; i++) { 1328 err = stac92xx_add_jack(codec, cfg->line_out_pins[i], 1329 SND_JACK_LINEOUT); 1330 if (err < 0) 1331 return err; 1332 } 1333 for (i = 0; i < AUTO_PIN_LAST; i++) { 1334 nid = cfg->input_pins[i]; 1335 if (nid) { 1336 err = stac92xx_add_jack(codec, nid, 1337 SND_JACK_MICROPHONE); 1338 if (err < 0) 1339 return err; 1340 } 1341 } 1342 1325 1343 return 0; 1326 1344 } … … 1331 1349 }; 1332 1350 1333 /* 1351 static unsigned int gateway9200_m4_pin_configs[8] = { 1352 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010, 1353 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3, 1354 }; 1355 static unsigned int gateway9200_m4_2_pin_configs[8] = { 1356 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010, 1357 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3, 1358 }; 1359 1360 /* 1334 1361 STAC 9200 pin configs for 1335 1362 102801A8 … … 1461 1488 [STAC_9200_DELL_M26] = dell9200_m26_pin_configs, 1462 1489 [STAC_9200_DELL_M27] = dell9200_m27_pin_configs, 1490 [STAC_9200_M4] = gateway9200_m4_pin_configs, 1491 [STAC_9200_M4_2] = gateway9200_m4_2_pin_configs, 1463 1492 [STAC_9200_PANASONIC] = ref9200_pin_configs, 1464 1493 }; … … 1477 1506 [STAC_9200_DELL_M26] = "dell-m26", 1478 1507 [STAC_9200_DELL_M27] = "dell-m27", 1479 [STAC_9200_GATEWAY] = "gateway", 1508 [STAC_9200_M4] = "gateway-m4", 1509 [STAC_9200_M4_2] = "gateway-m4-2", 1480 1510 [STAC_9200_PANASONIC] = "panasonic", 1481 1511 }; … … 1547 1577 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC), 1548 1578 /* Gateway machines needs EAPD to be set on resume */ 1549 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_GATEWAY), 1550 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", 1551 STAC_9200_GATEWAY), 1552 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", 1553 STAC_9200_GATEWAY), 1579 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4), 1580 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2), 1581 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2), 1554 1582 /* OQO Mobile */ 1555 1583 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO), … … 1562 1590 }; 1563 1591 1564 static unsigned int stac925x_MA6_pin_configs[8] = { 1565 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021, 1566 0x90a70320, 0x90100211, 0x400003f1, 0x9033032e, 1567 }; 1568 1569 static unsigned int stac925x_PA6_pin_configs[8] = { 1570 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021, 1571 0x50a103f0, 0x90100211, 0x400003f1, 0x9033032e, 1592 static unsigned int stac925xM1_pin_configs[8] = { 1593 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020, 1594 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e, 1595 }; 1596 1597 static unsigned int stac925xM1_2_pin_configs[8] = { 1598 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020, 1599 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e, 1600 }; 1601 1602 static unsigned int stac925xM2_pin_configs[8] = { 1603 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020, 1604 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e, 1572 1605 }; 1573 1606 1574 1607 static unsigned int stac925xM2_2_pin_configs[8] = { 1575 0x40c003f3, 0x424503f2, 0x04180011, 0x02a19020, 1576 0x50a103f0, 0x90100212, 0x400003f1, 0x9033032e, 1608 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020, 1609 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e, 1610 }; 1611 1612 static unsigned int stac925xM3_pin_configs[8] = { 1613 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020, 1614 0x40a000f0, 0x90100210, 0x400003f1, 0x503303f3, 1615 }; 1616 1617 static unsigned int stac925xM5_pin_configs[8] = { 1618 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020, 1619 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e, 1620 }; 1621 1622 static unsigned int stac925xM6_pin_configs[8] = { 1623 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020, 1624 0x40a000f0, 0x90100210, 0x400003f1, 0x90330320, 1577 1625 }; 1578 1626 1579 1627 static unsigned int *stac925x_brd_tbl[STAC_925x_MODELS] = { 1580 1628 [STAC_REF] = ref925x_pin_configs, 1629 [STAC_M1] = stac925xM1_pin_configs, 1630 [STAC_M1_2] = stac925xM1_2_pin_configs, 1631 [STAC_M2] = stac925xM2_pin_configs, 1581 1632 [STAC_M2_2] = stac925xM2_2_pin_configs, 1582 [STAC_MA6] = stac925x_MA6_pin_configs, 1583 [STAC_PA6] = stac925x_PA6_pin_configs, 1633 [STAC_M3] = stac925xM3_pin_configs, 1634 [STAC_M5] = stac925xM5_pin_configs, 1635 [STAC_M6] = stac925xM6_pin_configs, 1584 1636 }; 1585 1637 1586 1638 static const char *stac925x_models[STAC_925x_MODELS] = { 1587 1639 [STAC_REF] = "ref", 1640 [STAC_M1] = "m1", 1641 [STAC_M1_2] = "m1-2", 1642 [STAC_M2] = "m2", 1588 1643 [STAC_M2_2] = "m2-2", 1589 [STAC_MA6] = "m6", 1590 [STAC_PA6] = "pa6", 1644 [STAC_M3] = "m3", 1645 [STAC_M5] = "m5", 1646 [STAC_M6] = "m6", 1647 }; 1648 1649 static struct snd_pci_quirk stac925x_codec_id_cfg_tbl[] = { 1650 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2), 1651 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5), 1652 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1), 1653 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2), 1654 SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2), 1655 /* Not sure about the brand name for those */ 1656 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1), 1657 SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3), 1658 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6), 1659 SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2), 1660 {0} /* terminator */ 1591 1661 }; 1592 1662 … … 1595 1665 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF), 1596 1666 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF), 1597 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_REF), 1598 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_REF), 1599 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_MA6), 1600 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_PA6), 1601 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway MX6453", STAC_M2_2), 1667 1668 /* Default table for unknown ID */ 1669 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2), 1670 1602 1671 {0} /* terminator */ 1603 1672 }; … … 1619 1688 static unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = { 1620 1689 [STAC_92HD73XX_REF] = ref92hd73xx_pin_configs, 1621 [STAC_DELL_M6] = dell_m6_pin_configs, 1690 [STAC_DELL_M6_AMIC] = dell_m6_pin_configs, 1691 [STAC_DELL_M6_DMIC] = dell_m6_pin_configs, 1692 [STAC_DELL_M6_BOTH] = dell_m6_pin_configs, 1622 1693 [STAC_DELL_EQ] = dell_m6_pin_configs, 1623 1694 }; 1624 1695 1625 1696 static const char *stac92hd73xx_models[STAC_92HD73XX_MODELS] = { 1697 [STAC_92HD73XX_NO_JD] = "no-jd", 1626 1698 [STAC_92HD73XX_REF] = "ref", 1627 [STAC_DELL_M6] = "dell-m6", 1699 [STAC_DELL_M6_AMIC] = "dell-m6-amic", 1700 [STAC_DELL_M6_DMIC] = "dell-m6-dmic", 1701 [STAC_DELL_M6_BOTH] = "dell-m6", 1628 1702 [STAC_DELL_EQ] = "dell-eq", 1629 1703 }; … … 1634 1708 "DFI LanParty", STAC_92HD73XX_REF), 1635 1709 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254, 1636 " unknown Dell", STAC_DELL_M6),1710 "Dell Studio 1535", STAC_DELL_M6_DMIC), 1637 1711 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255, 1638 "unknown Dell", STAC_DELL_M6 ),1712 "unknown Dell", STAC_DELL_M6_DMIC), 1639 1713 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256, 1640 "unknown Dell", STAC_DELL_M6 ),1714 "unknown Dell", STAC_DELL_M6_BOTH), 1641 1715 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257, 1642 "unknown Dell", STAC_DELL_M6 ),1716 "unknown Dell", STAC_DELL_M6_BOTH), 1643 1717 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e, 1644 "unknown Dell", STAC_DELL_M6 ),1718 "unknown Dell", STAC_DELL_M6_AMIC), 1645 1719 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f, 1646 "unknown Dell", STAC_DELL_M6 ),1720 "unknown Dell", STAC_DELL_M6_AMIC), 1647 1721 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271, 1648 "unknown Dell", STAC_DELL_M6), 1722 "unknown Dell", STAC_DELL_M6_DMIC), 1723 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0272, 1724 "unknown Dell", STAC_DELL_M6_DMIC), 1725 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x029f, 1726 "Dell Studio 1537", STAC_DELL_M6_DMIC), 1727 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a0, 1728 "Dell Studio 17", STAC_DELL_M6_DMIC), 1649 1729 {0} /* terminator */ 1650 1730 }; … … 1668 1748 /* SigmaTel reference board */ 1669 1749 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, 1670 "DFI LanParty", STAC_92HD71BXX_REF), 1750 "DFI LanParty", STAC_92HD83XXX_REF), 1751 {0} /* terminator */ 1671 1752 }; 1672 1753 … … 1689 1770 }; 1690 1771 1772 static unsigned int dell_m4_3_pin_configs[11] = { 1773 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110, 1774 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a000f0, 1775 0x40f000f0, 0x044413b0, 0x044413b0, 1776 }; 1777 1691 1778 static unsigned int *stac92hd71bxx_brd_tbl[STAC_92HD71BXX_MODELS] = { 1692 1779 [STAC_92HD71BXX_REF] = ref92hd71bxx_pin_configs, 1693 1780 [STAC_DELL_M4_1] = dell_m4_1_pin_configs, 1694 1781 [STAC_DELL_M4_2] = dell_m4_2_pin_configs, 1782 [STAC_DELL_M4_3] = dell_m4_3_pin_configs, 1695 1783 [STAC_HP_M4] = NULL, 1784 [STAC_HP_DV5] = NULL, 1696 1785 }; 1697 1786 … … 1700 1789 [STAC_DELL_M4_1] = "dell-m4-1", 1701 1790 [STAC_DELL_M4_2] = "dell-m4-2", 1791 [STAC_DELL_M4_3] = "dell-m4-3", 1702 1792 [STAC_HP_M4] = "hp-m4", 1793 [STAC_HP_DV5] = "hp-dv5", 1703 1794 }; 1704 1795 … … 1707 1798 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, 1708 1799 "DFI LanParty", STAC_92HD71BXX_REF), 1800 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30f2, 1801 "HP dv5", STAC_HP_M4), 1802 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30f4, 1803 "HP dv7", STAC_HP_M4), 1804 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30fc, 1805 "HP dv7", STAC_HP_M4), 1806 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3603, 1807 "HP dv5", STAC_HP_DV5), 1709 1808 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a, 1710 1809 "unknown HP", STAC_HP_M4), … … 1731 1830 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264, 1732 1831 "unknown Dell", STAC_DELL_M4_2), 1832 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa, 1833 "unknown Dell", STAC_DELL_M4_3), 1733 1834 {0} /* terminator */ 1734 1835 }; … … 2020 2121 2021 2122 static unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = { 2123 [STAC_D965_REF_NO_JD] = ref927x_pin_configs, 2022 2124 [STAC_D965_REF] = ref927x_pin_configs, 2023 2125 [STAC_D965_3ST] = d965_3st_pin_configs, … … 2028 2130 2029 2131 static const char *stac927x_models[STAC_927X_MODELS] = { 2132 [STAC_D965_REF_NO_JD] = "ref-no-jd", 2030 2133 [STAC_D965_REF] = "ref", 2031 2134 [STAC_D965_3ST] = "3stack", … … 2186 2289 struct sigmatel_spec *spec = codec->spec; 2187 2290 2188 if (! spec->bios_pin_configs) { 2189 spec->bios_pin_configs = kcalloc(spec->num_pins, 2190 sizeof(*spec->bios_pin_configs), GFP_KERNEL); 2191 if (! spec->bios_pin_configs) 2192 return -ENOMEM; 2193 } 2291 kfree(spec->pin_configs); 2292 spec->pin_configs = kcalloc(spec->num_pins, sizeof(*spec->pin_configs), 2293 GFP_KERNEL); 2294 if (!spec->pin_configs) 2295 return -ENOMEM; 2194 2296 2195 2297 for (i = 0; i < spec->num_pins; i++) { … … 2201 2303 snd_printdd(KERN_INFO "hda_codec: pin nid %2.2x bios pin config %8.8x\n", 2202 2304 nid, pin_cfg); 2203 spec-> bios_pin_configs[i] = pin_cfg;2305 spec->pin_configs[i] = pin_cfg; 2204 2306 } 2205 2307 … … 2243 2345 } 2244 2346 2347 static int stac_save_pin_cfgs(struct hda_codec *codec, unsigned int *pins) 2348 { 2349 struct sigmatel_spec *spec = codec->spec; 2350 2351 if (!pins) 2352 return stac92xx_save_bios_config_regs(codec); 2353 2354 kfree(spec->pin_configs); 2355 spec->pin_configs = kmemdup(pins, 2356 spec->num_pins * sizeof(*pins), 2357 GFP_KERNEL); 2358 if (!spec->pin_configs) 2359 return -ENOMEM; 2360 2361 stac92xx_set_config_regs(codec); 2362 return 0; 2363 } 2364 2365 static void stac_change_pin_config(struct hda_codec *codec, hda_nid_t nid, 2366 unsigned int cfg) 2367 { 2368 struct sigmatel_spec *spec = codec->spec; 2369 int i; 2370 2371 for (i = 0; i < spec->num_pins; i++) { 2372 if (spec->pin_nids[i] == nid) { 2373 spec->pin_configs[i] = cfg; 2374 stac92xx_set_config_reg(codec, nid, cfg); 2375 break; 2376 } 2377 } 2378 } 2379 2245 2380 /* 2246 2381 * Analog playback callbacks … … 2320 2455 if (spec->powerdown_adcs) { 2321 2456 msleep(40); 2322 snd_hda_codec_write _cache(codec, nid, 0,2457 snd_hda_codec_write(codec, nid, 0, 2323 2458 AC_VERB_SET_POWER_STATE, AC_PWRST_D0); 2324 2459 } … … 2336 2471 snd_hda_codec_cleanup_stream(codec, nid); 2337 2472 if (spec->powerdown_adcs) 2338 snd_hda_codec_write _cache(codec, nid, 0,2473 snd_hda_codec_write(codec, nid, 0, 2339 2474 AC_VERB_SET_POWER_STATE, AC_PWRST_D3); 2340 2475 return 0; … … 2464 2599 struct sigmatel_spec *spec = codec->spec; 2465 2600 2466 ucontrol->value.integer.value[0] = spec->hp_switch;2601 ucontrol->value.integer.value[0] = !!spec->hp_switch; 2467 2602 return 0; 2468 2603 } 2604 2605 static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid, 2606 unsigned char type); 2469 2607 2470 2608 static int stac92xx_hp_switch_put(struct snd_kcontrol *kcontrol, … … 2473 2611 struct hda_codec *codec = snd_kcontrol_chip(kcontrol); 2474 2612 struct sigmatel_spec *spec = codec->spec; 2475 struct auto_pin_cfg *cfg = &spec->autocfg; 2476 int nid = cfg->hp_pins[cfg->hp_outs - 1]; 2477 2478 spec->hp_switch = ucontrol->value.integer.value[0]; 2613 int nid = kcontrol->private_value; 2614 2615 spec->hp_switch = ucontrol->value.integer.value[0] ? nid : 0; 2479 2616 2480 2617 /* check to be sure that the ports are upto date with 2481 2618 * switch changes 2482 2619 */ 2483 codec->patch_ops.unsol_event(codec, (STAC_HP_EVENT | nid) << 26);2620 stac_issue_unsol_event(codec, nid, STAC_HP_EVENT); 2484 2621 2485 2622 return 1; … … 2521 2658 */ 2522 2659 if (spec->hp_detect) 2523 codec->patch_ops.unsol_event(codec, 2524 (STAC_HP_EVENT | nid) << 26); 2660 stac_issue_unsol_event(codec, nid, STAC_HP_EVENT); 2525 2661 2526 2662 return 1; … … 2610 2746 2611 2747 /* add dynamic controls */ 2612 static int stac92xx_add_control_idx(struct sigmatel_spec *spec, int type, 2613 int idx, const char *name, unsigned long val) 2748 static int stac92xx_add_control_temp(struct sigmatel_spec *spec, 2749 struct snd_kcontrol_new *ktemp, 2750 int idx, const char *name, 2751 unsigned long val) 2614 2752 { 2615 2753 struct snd_kcontrol_new *knew; … … 2619 2757 if (!knew) 2620 2758 return -ENOMEM; 2621 *knew = stac92xx_control_templates[type];2759 *knew = *ktemp; 2622 2760 knew->index = idx; 2623 2761 knew->name = kstrdup(name, GFP_KERNEL); 2624 if (! 2762 if (!knew->name) 2625 2763 return -ENOMEM; 2626 2764 knew->private_value = val; … … 2628 2766 } 2629 2767 2768 static inline int stac92xx_add_control_idx(struct sigmatel_spec *spec, 2769 int type, int idx, const char *name, 2770 unsigned long val) 2771 { 2772 return stac92xx_add_control_temp(spec, 2773 &stac92xx_control_templates[type], 2774 idx, name, val); 2775 } 2776 2630 2777 2631 2778 /* add dynamic controls */ 2632 static in t stac92xx_add_control(struct sigmatel_spec *spec, int type,2633 const char *name, unsigned long val)2779 static inline int stac92xx_add_control(struct sigmatel_spec *spec, int type, 2780 const char *name, unsigned long val) 2634 2781 { 2635 2782 return stac92xx_add_control_idx(spec, type, 0, name, val); 2636 2783 } 2637 2784 2638 /* flag inputs as additional dynamic lineouts */ 2639 static int stac92xx_add_dyn_out_pins(struct hda_codec *codec, struct auto_pin_cfg *cfg) 2640 { 2641 struct sigmatel_spec *spec = codec->spec; 2642 unsigned int wcaps, wtype; 2643 int i, num_dacs = 0; 2644 2645 /* use the wcaps cache to count all DACs available for line-outs */ 2646 for (i = 0; i < codec->num_nodes; i++) { 2647 wcaps = codec->wcaps[i]; 2648 wtype = (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; 2649 2650 if (wtype == AC_WID_AUD_OUT && !(wcaps & AC_WCAP_DIGITAL)) 2651 num_dacs++; 2652 } 2653 2654 snd_printdd("%s: total dac count=%d\n", __func__, num_dacs); 2655 2656 switch (cfg->line_outs) { 2657 case 3: 2658 /* add line-in as side */ 2659 if (cfg->input_pins[AUTO_PIN_LINE] && num_dacs > 3) { 2660 cfg->line_out_pins[cfg->line_outs] = 2661 cfg->input_pins[AUTO_PIN_LINE]; 2662 spec->line_switch = 1; 2663 cfg->line_outs++; 2785 /* check whether the line-input can be used as line-out */ 2786 static hda_nid_t check_line_out_switch(struct hda_codec *codec) 2787 { 2788 struct sigmatel_spec *spec = codec->spec; 2789 struct auto_pin_cfg *cfg = &spec->autocfg; 2790 hda_nid_t nid; 2791 unsigned int pincap; 2792 2793 if (cfg->line_out_type != AUTO_PIN_LINE_OUT) 2794 return 0; 2795 nid = cfg->input_pins[AUTO_PIN_LINE]; 2796 pincap = snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP); 2797 if (pincap & AC_PINCAP_OUT) 2798 return nid; 2799 return 0; 2800 } 2801 2802 /* check whether the mic-input can be used as line-out */ 2803 static hda_nid_t check_mic_out_switch(struct hda_codec *codec) 2804 { 2805 struct sigmatel_spec *spec = codec->spec; 2806 struct auto_pin_cfg *cfg = &spec->autocfg; 2807 unsigned int def_conf, pincap; 2808 unsigned int mic_pin; 2809 2810 if (cfg->line_out_type != AUTO_PIN_LINE_OUT) 2811 return 0; 2812 mic_pin = AUTO_PIN_MIC; 2813 for (;;) { 2814 hda_nid_t nid = cfg->input_pins[mic_pin]; 2815 def_conf = snd_hda_codec_read(codec, nid, 0, 2816 AC_VERB_GET_CONFIG_DEFAULT, 0); 2817 /* some laptops have an internal analog microphone 2818 * which can't be used as a output */ 2819 if (get_defcfg_connect(def_conf) != AC_JACK_PORT_FIXED) { 2820 pincap = snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP); 2821 if (pincap & AC_PINCAP_OUT) 2822 return nid; 2664 2823 } 2665 break; 2666 case 2: 2667 /* add line-in as clfe and mic as side */ 2668 if (cfg->input_pins[AUTO_PIN_LINE] && num_dacs > 2) { 2669 cfg->line_out_pins[cfg->line_outs] = 2670 cfg->input_pins[AUTO_PIN_LINE]; 2671 spec->line_switch = 1; 2672 cfg->line_outs++; 2673 } 2674 if (cfg->input_pins[AUTO_PIN_MIC] && num_dacs > 3) { 2675 cfg->line_out_pins[cfg->line_outs] = 2676 cfg->input_pins[AUTO_PIN_MIC]; 2677 spec->mic_switch = 1; 2678 cfg->line_outs++; 2679 } 2680 break; 2681 case 1: 2682 /* add line-in as surr and mic as clfe */ 2683 if (cfg->input_pins[AUTO_PIN_LINE] && num_dacs > 1) { 2684 cfg->line_out_pins[cfg->line_outs] = 2685 cfg->input_pins[AUTO_PIN_LINE]; 2686 spec->line_switch = 1; 2687 cfg->line_outs++; 2688 } 2689 if (cfg->input_pins[AUTO_PIN_MIC] && num_dacs > 2) { 2690 cfg->line_out_pins[cfg->line_outs] = 2691 cfg->input_pins[AUTO_PIN_MIC]; 2692 spec->mic_switch = 1; 2693 cfg->line_outs++; 2694 } 2695 break; 2696 } 2697 2824 if (mic_pin == AUTO_PIN_MIC) 2825 mic_pin = AUTO_PIN_FRONT_MIC; 2826 else 2827 break; 2828 } 2698 2829 return 0; 2699 2830 } 2700 2701 2831 2702 2832 static int is_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid) … … 2711 2841 return 0; 2712 2842 } 2843 2844 static int check_all_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid) 2845 { 2846 int i; 2847 if (is_in_dac_nids(spec, nid)) 2848 return 1; 2849 for (i = 0; i < spec->autocfg.hp_outs; i++) 2850 if (spec->hp_dacs[i] == nid) 2851 return 1; 2852 for (i = 0; i < spec->autocfg.speaker_outs; i++) 2853 if (spec->speaker_dacs[i] == nid) 2854 return 1; 2855 return 0; 2856 } 2857 2858 static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid) 2859 { 2860 struct sigmatel_spec *spec = codec->spec; 2861 int j, conn_len; 2862 hda_nid_t conn[HDA_MAX_CONNECTIONS]; 2863 unsigned int wcaps, wtype; 2864 2865 conn_len = snd_hda_get_connections(codec, nid, conn, 2866 HDA_MAX_CONNECTIONS); 2867 for (j = 0; j < conn_len; j++) { 2868 wcaps = snd_hda_param_read(codec, conn[j], 2869 AC_PAR_AUDIO_WIDGET_CAP); 2870 wtype = (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; 2871 /* we check only analog outputs */ 2872 if (wtype != AC_WID_AUD_OUT || (wcaps & AC_WCAP_DIGITAL)) 2873 continue; 2874 /* if this route has a free DAC, assign it */ 2875 if (!check_all_dac_nids(spec, conn[j])) { 2876 if (conn_len > 1) { 2877 /* select this DAC in the pin's input mux */ 2878 snd_hda_codec_write_cache(codec, nid, 0, 2879 AC_VERB_SET_CONNECT_SEL, j); 2880 } 2881 return conn[j]; 2882 } 2883 } 2884 return 0; 2885 } 2886 2887 static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid); 2888 static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid); 2713 2889 2714 2890 /* … … 2719 2895 * and 9202/925x. For those, dac_nids[] must be hard-coded. 2720 2896 */ 2721 static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec, 2722 struct auto_pin_cfg *cfg) 2723 { 2724 struct sigmatel_spec *spec = codec->spec; 2725 int i, j, conn_len = 0; 2726 hda_nid_t nid, conn[HDA_MAX_CONNECTIONS]; 2727 unsigned int wcaps, wtype; 2897 static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec) 2898 { 2899 struct sigmatel_spec *spec = codec->spec; 2900 struct auto_pin_cfg *cfg = &spec->autocfg; 2901 int i; 2902 hda_nid_t nid, dac; 2728 2903 2729 2904 for (i = 0; i < cfg->line_outs; i++) { 2730 2905 nid = cfg->line_out_pins[i]; 2731 conn_len = snd_hda_get_connections(codec, nid, conn, 2732 HDA_MAX_CONNECTIONS); 2733 for (j = 0; j < conn_len; j++) { 2734 wcaps = snd_hda_param_read(codec, conn[j], 2735 AC_PAR_AUDIO_WIDGET_CAP); 2736 wtype = (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; 2737 if (wtype != AC_WID_AUD_OUT || 2738 (wcaps & AC_WCAP_DIGITAL)) 2739 continue; 2740 /* conn[j] is a DAC routed to this line-out */ 2741 if (!is_in_dac_nids(spec, conn[j])) 2742 break; 2743 } 2744 2745 if (j == conn_len) { 2906 dac = get_unassigned_dac(codec, nid); 2907 if (!dac) { 2746 2908 if (spec->multiout.num_dacs > 0) { 2747 2909 /* we have already working output pins, … … 2757 2919 return -ENODEV; 2758 2920 } 2759 2760 spec->multiout.dac_nids[i] = conn[j]; 2761 spec->multiout.num_dacs++; 2762 if (conn_len > 1) { 2763 /* select this DAC in the pin's input mux */ 2764 snd_hda_codec_write_cache(codec, nid, 0, 2765 AC_VERB_SET_CONNECT_SEL, j); 2766 2921 add_spec_dacs(spec, dac); 2922 } 2923 2924 /* add line-in as output */ 2925 nid = check_line_out_switch(codec); 2926 if (nid) { 2927 dac = get_unassigned_dac(codec, nid); 2928 if (dac) { 2929 snd_printdd("STAC: Add line-in 0x%x as output %d\n", 2930 nid, cfg->line_outs); 2931 cfg->line_out_pins[cfg->line_outs] = nid; 2932 cfg->line_outs++; 2933 spec->line_switch = nid; 2934 add_spec_dacs(spec, dac); 2767 2935 } 2768 2936 } 2769 2770 snd_printd("dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n", 2937 /* add mic as output */ 2938 nid = check_mic_out_switch(codec); 2939 if (nid) { 2940 dac = get_unassigned_dac(codec, nid); 2941 if (dac) { 2942 snd_printdd("STAC: Add mic-in 0x%x as output %d\n", 2943 nid, cfg->line_outs); 2944 cfg->line_out_pins[cfg->line_outs] = nid; 2945 cfg->line_outs++; 2946 spec->mic_switch = nid; 2947 add_spec_dacs(spec, dac); 2948 } 2949 } 2950 2951 for (i = 0; i < cfg->hp_outs; i++) { 2952 nid = cfg->hp_pins[i]; 2953 dac = get_unassigned_dac(codec, nid); 2954 if (dac) { 2955 if (!spec->multiout.hp_nid) 2956 spec->multiout.hp_nid = dac; 2957 else 2958 add_spec_extra_dacs(spec, dac); 2959 } 2960 spec->hp_dacs[i] = dac; 2961 } 2962 2963 for (i = 0; i < cfg->speaker_outs; i++) { 2964 nid = cfg->speaker_pins[i]; 2965 dac = get_unassigned_dac(codec, nid); 2966 if (dac) 2967 add_spec_extra_dacs(spec, dac); 2968 spec->speaker_dacs[i] = dac; 2969 } 2970 2971 snd_printd("stac92xx: dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n", 2771 2972 spec->multiout.num_dacs, 2772 2973 spec->multiout.dac_nids[0], … … 2775 2976 spec->multiout.dac_nids[3], 2776 2977 spec->multiout.dac_nids[4]); 2978 2777 2979 return 0; 2778 2980 } … … 2799 3001 static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid) 2800 3002 { 2801 if (!spec->multiout.hp_nid) 2802 spec->multiout.hp_nid = nid; 2803 else if (spec->multiout.num_dacs > 4) { 3003 if (spec->multiout.num_dacs > 4) { 2804 3004 printk(KERN_WARNING "stac92xx: No space for DAC 0x%x\n", nid); 2805 3005 return 1; … … 2811 3011 } 2812 3012 2813 static int check_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid) 2814 { 2815 if (is_in_dac_nids(spec, nid)) 2816 return 1; 3013 static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid) 3014 { 3015 int i; 3016 for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++) { 3017 if (!spec->multiout.extra_out_nid[i]) { 3018 spec->multiout.extra_out_nid[i] = nid; 3019 return 0; 3020 } 3021 } 3022 printk(KERN_WARNING "stac92xx: No space for extra DAC 0x%x\n", nid); 3023 return 1; 3024 } 3025 3026 static int is_unique_dac(struct sigmatel_spec *spec, hda_nid_t nid) 3027 { 3028 int i; 3029 3030 if (spec->autocfg.line_outs != 1) 3031 return 0; 2817 3032 if (spec->multiout.hp_nid == nid) 2818 return 1; 2819 return 0; 3033 return 0; 3034 for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++) 3035 if (spec->multiout.extra_out_nid[i] == nid) 3036 return 0; 3037 return 1; 2820 3038 } 2821 3039 … … 2824 3042 const struct auto_pin_cfg *cfg) 2825 3043 { 3044 struct sigmatel_spec *spec = codec->spec; 2826 3045 static const char *chname[4] = { 2827 3046 "Front", "Surround", NULL /*CLFE*/, "Side" … … 2829 3048 hda_nid_t nid = 0; 2830 3049 int i, err; 2831 2832 struct sigmatel_spec *spec = codec->spec; 2833 unsigned int wid_caps, pincap; 2834 2835 2836 for (i = 0; i < cfg->line_outs && i < spec->multiout.num_dacs; i++) { 2837 if (!spec->multiout.dac_nids[i]) 2838 continue; 2839 3050 unsigned int wid_caps; 3051 3052 for (i = 0; i < cfg->line_outs && spec->multiout.dac_nids[i]; i++) { 2840 3053 nid = spec->multiout.dac_nids[i]; 2841 2842 3054 if (i == 2) { 2843 3055 /* Center/LFE */ … … 2861 3073 2862 3074 } else { 2863 err = create_controls(spec, chname[i], nid, 3); 3075 const char *name = chname[i]; 3076 /* if it's a single DAC, assign a better name */ 3077 if (!i && is_unique_dac(spec, nid)) { 3078 switch (cfg->line_out_type) { 3079 case AUTO_PIN_HP_OUT: 3080 name = "Headphone"; 3081 break; 3082 case AUTO_PIN_SPEAKER_OUT: 3083 name = "Speaker"; 3084 break; 3085 } 3086 } 3087 err = create_controls(spec, name, nid, 3); 2864 3088 if (err < 0) 2865 3089 return err; … … 2867 3091 } 2868 3092 2869 if ((spec->multiout.num_dacs - cfg->line_outs) > 0 && 2870 cfg->hp_outs && !spec->multiout.hp_nid) 2871 spec->multiout.hp_nid = nid; 2872 2873 if (cfg->hp_outs > 1) { 3093 if (cfg->hp_outs > 1 && cfg->line_out_type == AUTO_PIN_LINE_OUT) { 2874 3094 err = stac92xx_add_control(spec, 2875 3095 STAC_CTL_WIDGET_HP_SWITCH, 2876 "Headphone as Line Out Switch", 0); 3096 "Headphone as Line Out Switch", 3097 cfg->hp_pins[cfg->hp_outs - 1]); 2877 3098 if (err < 0) 2878 3099 return err; … … 2880 3101 2881 3102 if (spec->line_switch) { 2882 nid = cfg->input_pins[AUTO_PIN_LINE]; 2883 pincap = snd_hda_param_read(codec, nid, 2884 AC_PAR_PIN_CAP); 2885 if (pincap & AC_PINCAP_OUT) { 2886 err = stac92xx_add_control(spec, 2887 STAC_CTL_WIDGET_IO_SWITCH, 2888 "Line In as Output Switch", nid << 8); 2889 if (err < 0) 2890 return err; 2891 } 3103 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_IO_SWITCH, 3104 "Line In as Output Switch", 3105 spec->line_switch << 8); 3106 if (err < 0) 3107 return err; 2892 3108 } 2893 3109 2894 3110 if (spec->mic_switch) { 2895 unsigned int def_conf; 2896 unsigned int mic_pin = AUTO_PIN_MIC; 2897 again: 2898 nid = cfg->input_pins[mic_pin]; 2899 def_conf = snd_hda_codec_read(codec, nid, 0, 2900 AC_VERB_GET_CONFIG_DEFAULT, 0); 2901 /* some laptops have an internal analog microphone 2902 * which can't be used as a output */ 2903 if (get_defcfg_connect(def_conf) != AC_JACK_PORT_FIXED) { 2904 pincap = snd_hda_param_read(codec, nid, 2905 AC_PAR_PIN_CAP); 2906 if (pincap & AC_PINCAP_OUT) { 2907 err = stac92xx_add_control(spec, 2908 STAC_CTL_WIDGET_IO_SWITCH, 2909 "Mic as Output Switch", (nid << 8) | 1); 2910 nid = snd_hda_codec_read(codec, nid, 0, 2911 AC_VERB_GET_CONNECT_LIST, 0) & 0xff; 2912 if (!check_in_dac_nids(spec, nid)) 2913 add_spec_dacs(spec, nid); 2914 if (err < 0) 2915 return err; 2916 } 2917 } else if (mic_pin == AUTO_PIN_MIC) { 2918 mic_pin = AUTO_PIN_FRONT_MIC; 2919 goto again; 2920 } 3111 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_IO_SWITCH, 3112 "Mic as Output Switch", 3113 (spec->mic_switch << 8) | 1); 3114 if (err < 0) 3115 return err; 2921 3116 } 2922 3117 … … 2930 3125 struct sigmatel_spec *spec = codec->spec; 2931 3126 hda_nid_t nid; 2932 int i, old_num_dacs, err;2933 2934 old_num_dacs = spec->multiout.num_dacs;3127 int i, err, nums; 3128 3129 nums = 0; 2935 3130 for (i = 0; i < cfg->hp_outs; i++) { 3131 static const char *pfxs[] = { 3132 "Headphone", "Headphone2", "Headphone3", 3133 }; 2936 3134 unsigned int wid_caps = get_wcaps(codec, cfg->hp_pins[i]); 2937 3135 if (wid_caps & AC_WCAP_UNSOL_CAP) 2938 3136 spec->hp_detect = 1; 2939 nid = snd_hda_codec_read(codec, cfg->hp_pins[i], 0, 2940 AC_VERB_GET_CONNECT_LIST, 0) & 0xff; 2941 if (check_in_dac_nids(spec, nid)) 2942 nid = 0; 2943 if (! nid) 3137 if (nums >= ARRAY_SIZE(pfxs)) 2944 3138 continue; 2945 add_spec_dacs(spec, nid); 2946 } 3139 nid = spec->hp_dacs[i]; 3140 if (!nid) 3141 continue; 3142 err = create_controls(spec, pfxs[nums++], nid, 3); 3143 if (err < 0) 3144 return err; 3145 } 3146 nums = 0; 2947 3147 for (i = 0; i < cfg->speaker_outs; i++) { 2948 nid = snd_hda_codec_read(codec, cfg->speaker_pins[i], 0,2949 AC_VERB_GET_CONNECT_LIST, 0) & 0xff;2950 if (check_in_dac_nids(spec, nid))2951 nid = 0;2952 if (! nid)2953 continue;2954 add_spec_dacs(spec, nid);2955 }2956 for (i = 0; i < cfg->line_outs; i++) {2957 nid = snd_hda_codec_read(codec, cfg->line_out_pins[i], 0,2958 AC_VERB_GET_CONNECT_LIST, 0) & 0xff;2959 if (check_in_dac_nids(spec, nid))2960 nid = 0;2961 if (! nid)2962 continue;2963 add_spec_dacs(spec, nid);2964 }2965 for (i = old_num_dacs; i < spec->multiout.num_dacs; i++) {2966 3148 static const char *pfxs[] = { 2967 3149 "Speaker", "External Speaker", "Speaker2", 2968 3150 }; 2969 err = create_controls(spec, pfxs[i - old_num_dacs], 2970 spec->multiout.dac_nids[i], 3); 3151 if (nums >= ARRAY_SIZE(pfxs)) 3152 continue; 3153 nid = spec->speaker_dacs[i]; 3154 if (!nid) 3155 continue; 3156 err = create_controls(spec, pfxs[nums++], nid, 3); 2971 3157 if (err < 0) 2972 3158 return err; 2973 3159 } 2974 if (spec->multiout.hp_nid) {2975 err = create_controls(spec, "Headphone",2976 spec->multiout.hp_nid, 3);2977 if (err < 0)2978 return err;2979 }2980 2981 3160 return 0; 2982 3161 } … … 3071 3250 return 0; 3072 3251 } 3252 3253 #ifdef CONFIG_SND_HDA_INPUT_BEEP 3254 #define stac92xx_dig_beep_switch_info snd_ctl_boolean_mono_info 3255 3256 static int stac92xx_dig_beep_switch_get(struct snd_kcontrol *kcontrol, 3257 struct snd_ctl_elem_value *ucontrol) 3258 { 3259 struct hda_codec *codec = snd_kcontrol_chip(kcontrol); 3260 ucontrol->value.integer.value[0] = codec->beep->enabled; 3261 return 0; 3262 } 3263 3264 static int stac92xx_dig_beep_switch_put(struct snd_kcontrol *kcontrol, 3265 struct snd_ctl_elem_value *ucontrol) 3266 { 3267 struct hda_codec *codec = snd_kcontrol_chip(kcontrol); 3268 int enabled = !!ucontrol->value.integer.value[0]; 3269 if (codec->beep->enabled != enabled) { 3270 codec->beep->enabled = enabled; 3271 return 1; 3272 } 3273 return 0; 3274 } 3275 3276 static struct snd_kcontrol_new stac92xx_dig_beep_ctrl = { 3277 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 3278 .info = stac92xx_dig_beep_switch_info, 3279 .get = stac92xx_dig_beep_switch_get, 3280 .put = stac92xx_dig_beep_switch_put, 3281 }; 3282 3283 static int stac92xx_beep_switch_ctl(struct hda_codec *codec) 3284 { 3285 return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl, 3286 0, "PC Beep Playback Switch", 0); 3287 } 3288 #endif 3073 3289 3074 3290 static int stac92xx_auto_create_mux_input_ctls(struct hda_codec *codec) … … 3279 3495 struct sigmatel_spec *spec = codec->spec; 3280 3496 int err; 3281 int hp_speaker_swap = 0;3282 3497 3283 3498 if ((err = snd_hda_parse_pin_def_config(codec, … … 3297 3512 * HP pins as primary outputs. 3298 3513 */ 3514 snd_printdd("stac92xx: Enabling multi-HPs workaround\n"); 3299 3515 memcpy(spec->autocfg.speaker_pins, spec->autocfg.line_out_pins, 3300 3516 sizeof(spec->autocfg.line_out_pins)); … … 3303 3519 sizeof(spec->autocfg.hp_pins)); 3304 3520 spec->autocfg.line_outs = spec->autocfg.hp_outs; 3305 hp_speaker_swap = 1; 3521 spec->autocfg.line_out_type = AUTO_PIN_HP_OUT; 3522 spec->autocfg.hp_outs = 0; 3306 3523 } 3307 3524 if (spec->autocfg.mono_out_pin) { … … 3355 3572 } 3356 3573 3357 if ((err = stac92xx_add_dyn_out_pins(codec, &spec->autocfg)) < 0) 3358 return err; 3359 if (spec->multiout.num_dacs == 0) 3360 if ((err = stac92xx_auto_fill_dac_nids(codec, &spec->autocfg)) < 0) 3574 if (!spec->multiout.num_dacs) { 3575 err = stac92xx_auto_fill_dac_nids(codec); 3576 if (err < 0) 3361 3577 return err; 3362 3363 err = stac92xx_auto_create_multi_out_ctls(codec,&spec->autocfg);3364 3365 if (err < 0)3366 return err;3578 err = stac92xx_auto_create_multi_out_ctls(codec, 3579 &spec->autocfg); 3580 if (err < 0) 3581 return err; 3582 } 3367 3583 3368 3584 /* setup analog beep controls */ … … 3378 3594 if (spec->digbeep_nid > 0) { 3379 3595 hda_nid_t nid = spec->digbeep_nid; 3596 unsigned int caps; 3380 3597 3381 3598 err = stac92xx_auto_create_beep_ctls(codec, nid); … … 3385 3602 if (err < 0) 3386 3603 return err; 3604 /* if no beep switch is available, make its own one */ 3605 caps = query_amp_caps(codec, nid, HDA_OUTPUT); 3606 if (codec->beep && 3607 !((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT)) { 3608 err = stac92xx_beep_switch_ctl(codec); 3609 if (err < 0) 3610 return err; 3611 } 3387 3612 } 3388 3613 #endif 3389 3390 if (hp_speaker_swap == 1) {3391 /* Restore the hp_outs and line_outs */3392 memcpy(spec->autocfg.hp_pins, spec->autocfg.line_out_pins,3393 sizeof(spec->autocfg.line_out_pins));3394 spec->autocfg.hp_outs = spec->autocfg.line_outs;3395 memcpy(spec->autocfg.line_out_pins, spec->autocfg.speaker_pins,3396 sizeof(spec->autocfg.speaker_pins));3397 spec->autocfg.line_outs = spec->autocfg.speaker_outs;3398 memset(spec->autocfg.speaker_pins, 0,3399 sizeof(spec->autocfg.speaker_pins));3400 spec->autocfg.speaker_outs = 0;3401 }3402 3614 3403 3615 err = stac92xx_auto_create_hp_ctls(codec, &spec->autocfg); … … 3449 3661 3450 3662 spec->input_mux = &spec->private_imux; 3451 spec->dinput_mux = &spec->private_dimux; 3663 if (!spec->dinput_mux) 3664 spec->dinput_mux = &spec->private_dimux; 3452 3665 spec->sinput_mux = &spec->private_smux; 3453 3666 spec->mono_mux = &spec->private_mono_mux; … … 3542 3755 return err; 3543 3756 3757 if (spec->num_muxes > 0) { 3758 err = stac92xx_auto_create_mux_input_ctls(codec); 3759 if (err < 0) 3760 return err; 3761 } 3762 3544 3763 if (spec->autocfg.dig_out_pin) 3545 3764 spec->multiout.dig_out_nid = 0x05; … … 3595 3814 hda_nid_t nid, int type) 3596 3815 { 3816 #ifdef CONFIG_SND_JACK 3597 3817 struct sigmatel_spec *spec = codec->spec; 3598 3818 struct sigmatel_jack *jack; … … 3618 3838 3619 3839 return snd_jack_new(codec->bus->card, name, type, &jack->jack); 3620 } 3621 3622 static int stac92xx_add_event(struct sigmatel_spec *spec, hda_nid_t nid, 3623 int data) 3840 #else 3841 return 0; 3842 #endif 3843 } 3844 3845 static int stac_add_event(struct sigmatel_spec *spec, hda_nid_t nid, 3846 unsigned char type, int data) 3624 3847 { 3625 3848 struct sigmatel_event *event; … … 3630 3853 return -ENOMEM; 3631 3854 event->nid = nid; 3855 event->type = type; 3856 event->tag = spec->events.used; 3632 3857 event->data = data; 3633 3858 3634 return 0; 3635 } 3636 3637 static int stac92xx_event_data(struct hda_codec *codec, hda_nid_t nid) 3638 { 3639 struct sigmatel_spec *spec = codec->spec; 3640 struct sigmatel_event *events = spec->events.list; 3641 if (events) { 3642 int i; 3643 for (i = 0; i < spec->events.used; i++) 3644 if (events[i].nid == nid) 3645 return events[i].data; 3646 } 3647 return 0; 3859 return event->tag; 3860 } 3861 3862 static struct sigmatel_event *stac_get_event(struct hda_codec *codec, 3863 hda_nid_t nid, unsigned char type) 3864 { 3865 struct sigmatel_spec *spec = codec->spec; 3866 struct sigmatel_event *event = spec->events.list; 3867 int i; 3868 3869 for (i = 0; i < spec->events.used; i++, event++) { 3870 if (event->nid == nid && event->type == type) 3871 return event; 3872 } 3873 return NULL; 3874 } 3875 3876 static struct sigmatel_event *stac_get_event_from_tag(struct hda_codec *codec, 3877 unsigned char tag) 3878 { 3879 struct sigmatel_spec *spec = codec->spec; 3880 struct sigmatel_event *event = spec->events.list; 3881 int i; 3882 3883 for (i = 0; i < spec->events.used; i++, event++) { 3884 if (event->tag == tag) 3885 return event; 3886 } 3887 return NULL; 3648 3888 } 3649 3889 3650 3890 static void enable_pin_detect(struct hda_codec *codec, hda_nid_t nid, 3651 unsigned int event) 3652 { 3653 if (get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP) { 3654 snd_hda_codec_write_cache(codec, nid, 0, 3655 AC_VERB_SET_UNSOLICITED_ENABLE, 3656 (AC_USRSP_EN | event | nid)); 3657 } 3891 unsigned int type) 3892 { 3893 struct sigmatel_event *event; 3894 int tag; 3895 3896 if (!(get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP)) 3897 return; 3898 event = stac_get_event(codec, nid, type); 3899 if (event) 3900 tag = event->tag; 3901 else 3902 tag = stac_add_event(codec->spec, nid, type, 0); 3903 if (tag < 0) 3904 return; 3905 snd_hda_codec_write_cache(codec, nid, 0, 3906 AC_VERB_SET_UNSOLICITED_ENABLE, 3907 AC_USRSP_EN | tag); 3658 3908 } 3659 3909 … … 3675 3925 hda_nid_t *dac; 3676 3926 for (dac = spec->dac_list; *dac; dac++) 3677 if (!is_in_dac_nids(spec, *dac) && 3678 spec->multiout.hp_nid != *dac) 3679 snd_hda_codec_write_cache(codec, *dac, 0, 3927 if (!check_all_dac_nids(spec, *dac)) 3928 snd_hda_codec_write(codec, *dac, 0, 3680 3929 AC_VERB_SET_POWER_STATE, AC_PWRST_D3); 3681 3930 } 3682 3931 3932 static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid, 3933 int enable); 3934 3683 3935 static int stac92xx_init(struct hda_codec *codec) 3684 3936 { 3685 3937 struct sigmatel_spec *spec = codec->spec; 3686 3938 struct auto_pin_cfg *cfg = &spec->autocfg; 3687 int i, err; 3939 unsigned int gpio; 3940 int i; 3688 3941 3689 3942 snd_hda_sequence_write(codec, spec->init); … … 3692 3945 if (spec->powerdown_adcs) 3693 3946 for (i = 0; i < spec->num_adcs; i++) 3694 snd_hda_codec_write _cache(codec,3947 snd_hda_codec_write(codec, 3695 3948 spec->adc_nids[i], 0, 3696 3949 AC_VERB_SET_POWER_STATE, AC_PWRST_D3); 3950 3951 /* set up GPIO */ 3952 gpio = spec->gpio_data; 3953 /* turn on EAPD statically when spec->eapd_switch isn't set. 3954 * otherwise, unsol event will turn it on/off dynamically 3955 */ 3956 if (!spec->eapd_switch) 3957 gpio |= spec->eapd_mask; 3958 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, gpio); 3959 3697 3960 /* set up pins */ 3698 3961 if (spec->hp_detect) { 3699 3962 /* Enable unsolicited responses on the HP widget */ 3700 3963 for (i = 0; i < cfg->hp_outs; i++) { 3701 int type = SND_JACK_HEADPHONE;3702 3964 hda_nid_t nid = cfg->hp_pins[i]; 3703 enable_pin_detect(codec, nid, STAC_HP_EVENT | nid); 3704 /* jack detection */ 3705 if (cfg->hp_outs == i) 3706 type |= SND_JACK_LINEOUT; 3707 err = stac92xx_add_jack(codec, nid, type); 3708 if (err < 0) 3709 return err; 3710 3965 enable_pin_detect(codec, nid, STAC_HP_EVENT); 3711 3966 } 3712 3967 /* force to enable the first line-out; the others are set up … … 3716 3971 AC_PINCTL_OUT_EN); 3717 3972 /* fake event to set up pins */ 3718 codec->patch_ops.unsol_event(codec,3719 (STAC_HP_EVENT | spec->autocfg.hp_pins[0]) << 26);3973 stac_issue_unsol_event(codec, spec->autocfg.hp_pins[0], 3974 STAC_HP_EVENT); 3720 3975 } else { 3721 3976 stac92xx_auto_init_multi_out(codec); 3722 3977 stac92xx_auto_init_hp_out(codec); 3723 } 3724 for (i = 0; i < cfg->line_outs; i++) { 3725 err = stac92xx_add_jack(codec, 3726 cfg->line_out_pins[i], SND_JACK_LINEOUT); 3727 if (err < 0) 3728 return err; 3978 for (i = 0; i < cfg->hp_outs; i++) 3979 stac_toggle_power_map(codec, cfg->hp_pins[i], 1); 3729 3980 } 3730 3981 for (i = 0; i < AUTO_PIN_LAST; i++) { 3731 3982 hda_nid_t nid = cfg->input_pins[i]; 3732 3983 if (nid) { 3733 unsigned int pinctl = snd_hda_codec_read(codec, nid, 3734 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0); 3735 /* if PINCTL already set then skip */ 3736 if (pinctl & AC_PINCAP_IN) 3737 continue; 3738 pinctl = AC_PINCTL_IN_EN; 3739 if (i == AUTO_PIN_MIC || i == AUTO_PIN_FRONT_MIC) 3740 pinctl |= stac92xx_get_vref(codec, nid); 3741 stac92xx_auto_set_pinctl(codec, nid, pinctl); 3742 err = stac92xx_add_jack(codec, nid, 3743 SND_JACK_MICROPHONE); 3744 if (err < 0) 3745 return err; 3746 enable_pin_detect(codec, nid, STAC_INSERT_EVENT | nid); 3984 unsigned int pinctl, conf; 3985 if (i == AUTO_PIN_MIC || i == AUTO_PIN_FRONT_MIC) { 3986 /* for mic pins, force to initialize */ 3987 pinctl = stac92xx_get_vref(codec, nid); 3988 pinctl |= AC_PINCTL_IN_EN; 3989 stac92xx_auto_set_pinctl(codec, nid, pinctl); 3990 } else { 3991 pinctl = snd_hda_codec_read(codec, nid, 0, 3992 AC_VERB_GET_PIN_WIDGET_CONTROL, 0); 3993 /* if PINCTL already set then skip */ 3994 if (!(pinctl & AC_PINCTL_IN_EN)) { 3995 pinctl |= AC_PINCTL_IN_EN; 3996 stac92xx_auto_set_pinctl(codec, nid, 3997 pinctl); 3998 } 3999 } 4000 conf = snd_hda_codec_read(codec, nid, 0, 4001 AC_VERB_GET_CONFIG_DEFAULT, 0); 4002 if (get_defcfg_connect(conf) != AC_JACK_PORT_FIXED) { 4003 enable_pin_detect(codec, nid, 4004 STAC_INSERT_EVENT); 4005 stac_issue_unsol_event(codec, nid, 4006 STAC_INSERT_EVENT); 4007 } 3747 4008 } 3748 4009 } … … 3750 4011 stac92xx_auto_set_pinctl(codec, spec->dmic_nids[i], 3751 4012 AC_PINCTL_IN_EN); 3752 for (i = 0; i < spec->num_pwrs; i++) {3753 int event = is_nid_hp_pin(cfg, spec->pwr_nids[i])3754 ? STAC_HP_EVENT : STAC_PWR_EVENT;3755 int pinctl = snd_hda_codec_read(codec, spec->pwr_nids[i],3756 0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0);3757 int def_conf = snd_hda_codec_read(codec, spec->pwr_nids[i],3758 0, AC_VERB_GET_CONFIG_DEFAULT, 0);3759 def_conf = get_defcfg_connect(def_conf);3760 /* outputs are only ports capable of power management3761 * any attempts on powering down a input port cause the3762 * referenced VREF to act quirky.3763 */3764 if (pinctl & AC_PINCTL_IN_EN)3765 continue;3766 /* skip any ports that don't have jacks since presence3767 * detection is useless */3768 if (def_conf && def_conf != AC_JACK_PORT_FIXED)3769 continue;3770 enable_pin_detect(codec, spec->pwr_nids[i], event | i);3771 codec->patch_ops.unsol_event(codec, (event | i) << 26);3772 }3773 if (spec->dac_list)3774 stac92xx_power_down(codec);3775 4013 if (cfg->dig_out_pin) 3776 4014 stac92xx_auto_set_pinctl(codec, cfg->dig_out_pin, … … 3779 4017 stac92xx_auto_set_pinctl(codec, cfg->dig_in_pin, 3780 4018 AC_PINCTL_IN_EN); 3781 3782 stac_gpio_set(codec, spec->gpio_mask, 3783 spec->gpio_dir, spec->gpio_data); 3784 4019 for (i = 0; i < spec->num_pwrs; i++) { 4020 hda_nid_t nid = spec->pwr_nids[i]; 4021 int pinctl, def_conf; 4022 4023 /* power on when no jack detection is available */ 4024 if (!spec->hp_detect) { 4025 stac_toggle_power_map(codec, nid, 1); 4026 continue; 4027 } 4028 4029 if (is_nid_hp_pin(cfg, nid)) 4030 continue; /* already has an unsol event */ 4031 4032 pinctl = snd_hda_codec_read(codec, nid, 0, 4033 AC_VERB_GET_PIN_WIDGET_CONTROL, 0); 4034 /* outputs are only ports capable of power management 4035 * any attempts on powering down a input port cause the 4036 * referenced VREF to act quirky. 4037 */ 4038 if (pinctl & AC_PINCTL_IN_EN) { 4039 stac_toggle_power_map(codec, nid, 1); 4040 continue; 4041 } 4042 def_conf = snd_hda_codec_read(codec, nid, 0, 4043 AC_VERB_GET_CONFIG_DEFAULT, 0); 4044 def_conf = get_defcfg_connect(def_conf); 4045 /* skip any ports that don't have jacks since presence 4046 * detection is useless */ 4047 if (def_conf != AC_JACK_PORT_COMPLEX) { 4048 if (def_conf != AC_JACK_PORT_NONE) 4049 stac_toggle_power_map(codec, nid, 1); 4050 continue; 4051 } 4052 if (!stac_get_event(codec, nid, STAC_INSERT_EVENT)) { 4053 enable_pin_detect(codec, nid, STAC_PWR_EVENT); 4054 stac_issue_unsol_event(codec, nid, STAC_PWR_EVENT); 4055 } 4056 } 4057 if (spec->dac_list) 4058 stac92xx_power_down(codec); 3785 4059 return 0; 3786 4060 } … … 3788 4062 static void stac92xx_free_jacks(struct hda_codec *codec) 3789 4063 { 3790 struct sigmatel_spec *spec = codec->spec; 3791 if (spec->jacks.list) { 4064 #ifdef CONFIG_SND_JACK 4065 /* free jack instances manually when clearing/reconfiguring */ 4066 struct sigmatel_spec *spec = codec->spec; 4067 if (!codec->bus->shutdown && spec->jacks.list) { 3792 4068 struct sigmatel_jack *jacks = spec->jacks.list; 3793 4069 int i; … … 3796 4072 } 3797 4073 snd_array_free(&spec->jacks); 4074 #endif 3798 4075 } 3799 4076 … … 3818 4095 return; 3819 4096 3820 if (spec->bios_pin_configs) 3821 kfree(spec->bios_pin_configs); 4097 kfree(spec->pin_configs); 3822 4098 stac92xx_free_jacks(codec); 3823 4099 snd_array_free(&spec->events); … … 3840 4116 */ 3841 4117 struct sigmatel_spec *spec = codec->spec; 3842 struct auto_pin_cfg *cfg = &spec->autocfg; 3843 if ((nid == cfg->input_pins[AUTO_PIN_LINE] && 3844 spec->line_switch) || 3845 (nid == cfg->input_pins[AUTO_PIN_MIC] && 3846 spec->mic_switch)) 4118 if (nid == spec->line_switch || nid == spec->mic_switch) 3847 4119 return; 3848 4120 } … … 3868 4140 } 3869 4141 3870 static int get_ hp_pin_presence(struct hda_codec *codec, hda_nid_t nid)4142 static int get_pin_presence(struct hda_codec *codec, hda_nid_t nid) 3871 4143 { 3872 4144 if (!nid) 3873 4145 return 0; 3874 4146 if (snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PIN_SENSE, 0x00) 3875 & (1 << 31)) { 3876 unsigned int pinctl; 3877 pinctl = snd_hda_codec_read(codec, nid, 0, 3878 AC_VERB_GET_PIN_WIDGET_CONTROL, 0); 3879 if (pinctl & AC_PINCTL_IN_EN) 3880 return 0; /* mic- or line-input */ 3881 else 3882 return 1; /* HP-output */ 3883 } 4147 & (1 << 31)) 4148 return 1; 3884 4149 return 0; 3885 4150 } 3886 4151 3887 static void stac92xx_hp_detect(struct hda_codec *codec, unsigned int res) 3888 { 3889 struct sigmatel_spec *spec = codec->spec; 4152 /* return non-zero if the hp-pin of the given array index isn't 4153 * a jack-detection target 4154 */ 4155 static int no_hp_sensing(struct sigmatel_spec *spec, int i) 4156 { 3890 4157 struct auto_pin_cfg *cfg = &spec->autocfg; 3891 int nid = cfg->hp_pins[cfg->hp_outs - 1]; 4158 4159 /* ignore sensing of shared line and mic jacks */ 4160 if (cfg->hp_pins[i] == spec->line_switch) 4161 return 1; 4162 if (cfg->hp_pins[i] == spec->mic_switch) 4163 return 1; 4164 /* ignore if the pin is set as line-out */ 4165 if (cfg->hp_pins[i] == spec->hp_switch) 4166 return 1; 4167 return 0; 4168 } 4169 4170 static void stac92xx_hp_detect(struct hda_codec *codec) 4171 { 4172 struct sigmatel_spec *spec = codec->spec; 4173 struct auto_pin_cfg *cfg = &spec->autocfg; 3892 4174 int i, presence; 3893 4175 … … 3900 4182 if (presence) 3901 4183 break; 3902 if (spec->hp_switch && cfg->hp_pins[i] == nid) 3903 break; 3904 presence = get_hp_pin_presence(codec, cfg->hp_pins[i]); 4184 if (no_hp_sensing(spec, i)) 4185 continue; 4186 presence = get_pin_presence(codec, cfg->hp_pins[i]); 4187 if (presence) { 4188 unsigned int pinctl; 4189 pinctl = snd_hda_codec_read(codec, cfg->hp_pins[i], 0, 4190 AC_VERB_GET_PIN_WIDGET_CONTROL, 0); 4191 if (pinctl & AC_PINCTL_IN_EN) 4192 presence = 0; /* mic- or line-input */ 4193 } 3905 4194 } 3906 4195 3907 4196 if (presence) { 3908 /* disable lineouts , enable hp*/4197 /* disable lineouts */ 3909 4198 if (spec->hp_switch) 3910 stac92xx_reset_pinctl(codec, nid, AC_PINCTL_OUT_EN); 4199 stac92xx_reset_pinctl(codec, spec->hp_switch, 4200 AC_PINCTL_OUT_EN); 3911 4201 for (i = 0; i < cfg->line_outs; i++) 3912 4202 stac92xx_reset_pinctl(codec, cfg->line_out_pins[i], … … 3915 4205 stac92xx_reset_pinctl(codec, cfg->speaker_pins[i], 3916 4206 AC_PINCTL_OUT_EN); 3917 if (spec->eapd_mask )4207 if (spec->eapd_mask && spec->eapd_switch) 3918 4208 stac_gpio_set(codec, spec->gpio_mask, 3919 4209 spec->gpio_dir, spec->gpio_data & 3920 4210 ~spec->eapd_mask); 3921 4211 } else { 3922 /* enable lineouts , disable hp*/4212 /* enable lineouts */ 3923 4213 if (spec->hp_switch) 3924 stac92xx_set_pinctl(codec, nid, AC_PINCTL_OUT_EN); 4214 stac92xx_set_pinctl(codec, spec->hp_switch, 4215 AC_PINCTL_OUT_EN); 3925 4216 for (i = 0; i < cfg->line_outs; i++) 3926 4217 stac92xx_set_pinctl(codec, cfg->line_out_pins[i], … … 3929 4220 stac92xx_set_pinctl(codec, cfg->speaker_pins[i], 3930 4221 AC_PINCTL_OUT_EN); 3931 if (spec->eapd_mask )4222 if (spec->eapd_mask && spec->eapd_switch) 3932 4223 stac_gpio_set(codec, spec->gpio_mask, 3933 4224 spec->gpio_dir, spec->gpio_data | 3934 4225 spec->eapd_mask); 3935 4226 } 3936 if (!spec->hp_switch && cfg->hp_outs > 1 && presence) 3937 stac92xx_set_pinctl(codec, nid, AC_PINCTL_OUT_EN); 4227 /* toggle hp outs */ 4228 for (i = 0; i < cfg->hp_outs; i++) { 4229 unsigned int val = AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN; 4230 if (no_hp_sensing(spec, i)) 4231 continue; 4232 if (presence) 4233 stac92xx_set_pinctl(codec, cfg->hp_pins[i], val); 4234 #if 0 /* FIXME */ 4235 /* Resetting the pinctl like below may lead to (a sort of) regressions 4236 * on some devices since they use the HP pin actually for line/speaker 4237 * outs although the default pin config shows a different pin (that is 4238 * wrong and useless). 4239 * 4240 * So, it's basically a problem of default pin configs, likely a BIOS issue. 4241 * But, disabling the code below just works around it, and I'm too tired of 4242 * bug reports with such devices... 4243 */ 4244 else 4245 stac92xx_reset_pinctl(codec, cfg->hp_pins[i], val); 4246 #endif /* FIXME */ 4247 } 3938 4248 } 3939 4249 3940 static void stac92xx_pin_sense(struct hda_codec *codec, int idx) 3941 { 3942 struct sigmatel_spec *spec = codec->spec; 3943 hda_nid_t nid = spec->pwr_nids[idx]; 3944 int presence, val; 3945 val = snd_hda_codec_read(codec, codec->afg, 0, 0x0fec, 0x0) 3946 & 0x000000ff; 3947 presence = get_hp_pin_presence(codec, nid); 4250 static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid, 4251 int enable) 4252 { 4253 struct sigmatel_spec *spec = codec->spec; 4254 unsigned int idx, val; 4255 4256 for (idx = 0; idx < spec->num_pwrs; idx++) { 4257 if (spec->pwr_nids[idx] == nid) 4258 break; 4259 } 4260 if (idx >= spec->num_pwrs) 4261 return; 3948 4262 3949 4263 /* several codecs have two power down bits */ … … 3953 4267 idx = 1 << idx; 3954 4268 3955 if (presence) 4269 val = snd_hda_codec_read(codec, codec->afg, 0, 0x0fec, 0x0) & 0xff; 4270 if (enable) 3956 4271 val &= ~idx; 3957 4272 else … … 3960 4275 /* power down unused output ports */ 3961 4276 snd_hda_codec_write(codec, codec->afg, 0, 0x7ec, val); 4277 } 4278 4279 static void stac92xx_pin_sense(struct hda_codec *codec, hda_nid_t nid) 4280 { 4281 stac_toggle_power_map(codec, nid, get_pin_presence(codec, nid)); 3962 4282 } 3963 4283 … … 3981 4301 ? SND_JACK_HEADPHONE : SND_JACK_LINEOUT; 3982 4302 snd_jack_report(jacks->jack, 3983 get_ hp_pin_presence(codec, nid)4303 get_pin_presence(codec, nid) 3984 4304 ? type : 0); 3985 4305 } … … 3989 4309 } 3990 4310 4311 static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid, 4312 unsigned char type) 4313 { 4314 struct sigmatel_event *event = stac_get_event(codec, nid, type); 4315 if (!event) 4316 return; 4317 codec->patch_ops.unsol_event(codec, (unsigned)event->tag << 26); 4318 } 4319 3991 4320 static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res) 3992 4321 { 3993 4322 struct sigmatel_spec *spec = codec->spec; 3994 int event = (res >> 26) & 0x70; 3995 int nid = res >> 26 & 0x0f; 3996 3997 switch (event) { 4323 struct sigmatel_event *event; 4324 int tag, data; 4325 4326 tag = (res >> 26) & 0x7f; 4327 event = stac_get_event_from_tag(codec, tag); 4328 if (!event) 4329 return; 4330 4331 switch (event->type) { 3998 4332 case STAC_HP_EVENT: 3999 stac92xx_hp_detect(codec , res);4333 stac92xx_hp_detect(codec); 4000 4334 /* fallthru */ 4001 4335 case STAC_INSERT_EVENT: 4002 4336 case STAC_PWR_EVENT: 4003 if (nid) { 4004 if (spec->num_pwrs > 0) 4005 stac92xx_pin_sense(codec, nid); 4006 stac92xx_report_jack(codec, nid); 4007 } 4337 if (spec->num_pwrs > 0) 4338 stac92xx_pin_sense(codec, event->nid); 4339 stac92xx_report_jack(codec, event->nid); 4008 4340 break; 4009 case STAC_VREF_EVENT: { 4010 int data = snd_hda_codec_read(codec, codec->afg, 0, 4011 AC_VERB_GET_GPIO_DATA, 0); 4012 int idx = stac92xx_event_data(codec, nid); 4341 case STAC_VREF_EVENT: 4342 data = snd_hda_codec_read(codec, codec->afg, 0, 4343 AC_VERB_GET_GPIO_DATA, 0); 4013 4344 /* toggle VREF state based on GPIOx status */ 4014 4345 snd_hda_codec_write(codec, codec->afg, 0, 0x7e0, 4015 !!(data & (1 << idx)));4346 !!(data & (1 << event->data))); 4016 4347 break; 4017 } 4018 } 4019 } 4348 } 4349 } 4350 4351 #ifdef CONFIG_PROC_FS 4352 static void stac92hd_proc_hook(struct snd_info_buffer *buffer, 4353 struct hda_codec *codec, hda_nid_t nid) 4354 { 4355 if (nid == codec->afg) 4356 snd_iprintf(buffer, "Power-Map: 0x%02x\n", 4357 snd_hda_codec_read(codec, nid, 0, 0x0fec, 0x0)); 4358 } 4359 4360 static void analog_loop_proc_hook(struct snd_info_buffer *buffer, 4361 struct hda_codec *codec, 4362 unsigned int verb) 4363 { 4364 snd_iprintf(buffer, "Analog Loopback: 0x%02x\n", 4365 snd_hda_codec_read(codec, codec->afg, 0, verb, 0)); 4366 } 4367 4368 /* stac92hd71bxx, stac92hd73xx */ 4369 static void stac92hd7x_proc_hook(struct snd_info_buffer *buffer, 4370 struct hda_codec *codec, hda_nid_t nid) 4371 { 4372 stac92hd_proc_hook(buffer, codec, nid); 4373 if (nid == codec->afg) 4374 analog_loop_proc_hook(buffer, codec, 0xfa0); 4375 } 4376 4377 static void stac9205_proc_hook(struct snd_info_buffer *buffer, 4378 struct hda_codec *codec, hda_nid_t nid) 4379 { 4380 if (nid == codec->afg) 4381 analog_loop_proc_hook(buffer, codec, 0xfe0); 4382 } 4383 4384 static void stac927x_proc_hook(struct snd_info_buffer *buffer, 4385 struct hda_codec *codec, hda_nid_t nid) 4386 { 4387 if (nid == codec->afg) 4388 analog_loop_proc_hook(buffer, codec, 0xfeb); 4389 } 4390 #else 4391 #define stac92hd_proc_hook NULL 4392 #define stac92hd7x_proc_hook NULL 4393 #define stac9205_proc_hook NULL 4394 #define stac927x_proc_hook NULL 4395 #endif 4020 4396 4021 4397 #ifdef SND_HDA_NEEDS_RESUME … … 4025 4401 4026 4402 stac92xx_set_config_regs(codec); 4027 snd_hda_sequence_write(codec, spec->init); 4028 stac_gpio_set(codec, spec->gpio_mask, 4029 spec->gpio_dir, spec->gpio_data); 4403 stac92xx_init(codec); 4030 4404 snd_hda_codec_resume_amp(codec); 4031 4405 snd_hda_codec_resume_cache(codec); 4032 /* power down inactive DACs */ 4033 if (spec->dac_list) 4034 stac92xx_power_down(codec); 4035 /* invoke unsolicited event to reset the HP state */ 4406 /* fake event to set up pins again to override cached values */ 4036 4407 if (spec->hp_detect) 4037 codec->patch_ops.unsol_event(codec, STAC_HP_EVENT << 26); 4408 stac_issue_unsol_event(codec, spec->autocfg.hp_pins[0], 4409 STAC_HP_EVENT); 4410 return 0; 4411 } 4412 4413 static int stac92xx_suspend(struct hda_codec *codec, pm_message_t state) 4414 { 4415 struct sigmatel_spec *spec = codec->spec; 4416 if (spec->eapd_mask) 4417 stac_gpio_set(codec, spec->gpio_mask, 4418 spec->gpio_dir, spec->gpio_data & 4419 ~spec->eapd_mask); 4038 4420 return 0; 4039 4421 } … … 4047 4429 .unsol_event = stac92xx_unsol_event, 4048 4430 #ifdef SND_HDA_NEEDS_RESUME 4431 .suspend = stac92xx_suspend, 4049 4432 .resume = stac92xx_resume, 4050 4433 #endif … … 4069 4452 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9200, using BIOS defaults\n"); 4070 4453 err = stac92xx_save_bios_config_regs(codec); 4071 if (err < 0) { 4072 stac92xx_free(codec); 4073 return err; 4074 } 4075 spec->pin_configs = spec->bios_pin_configs; 4076 } else { 4077 spec->pin_configs = stac9200_brd_tbl[spec->board_config]; 4078 stac92xx_set_config_regs(codec); 4454 } else 4455 err = stac_save_pin_cfgs(codec, 4456 stac9200_brd_tbl[spec->board_config]); 4457 if (err < 0) { 4458 stac92xx_free(codec); 4459 return err; 4079 4460 } 4080 4461 … … 4089 4470 spec->num_pwrs = 0; 4090 4471 4091 if (spec->board_config == STAC_9200_GATEWAY || 4472 if (spec->board_config == STAC_9200_M4 || 4473 spec->board_config == STAC_9200_M4_2 || 4092 4474 spec->board_config == STAC_9200_OQO) 4093 4475 spec->init = stac9200_eapd_init; … … 4107 4489 } 4108 4490 4491 /* CF-74 has no headphone detection, and the driver should *NOT* 4492 * do detection and HP/speaker toggle because the hardware does it. 4493 */ 4494 if (spec->board_config == STAC_9200_PANASONIC) 4495 spec->hp_detect = 0; 4496 4109 4497 codec->patch_ops = stac92xx_patch_ops; 4110 4498 … … 4124 4512 spec->num_pins = ARRAY_SIZE(stac925x_pin_nids); 4125 4513 spec->pin_nids = stac925x_pin_nids; 4126 spec->board_config = snd_hda_check_board_config(codec, STAC_925x_MODELS, 4514 4515 /* Check first for codec ID */ 4516 spec->board_config = snd_hda_check_board_codec_sid_config(codec, 4517 STAC_925x_MODELS, 4518 stac925x_models, 4519 stac925x_codec_id_cfg_tbl); 4520 4521 /* Now checks for PCI ID, if codec ID is not found */ 4522 if (spec->board_config < 0) 4523 spec->board_config = snd_hda_check_board_config(codec, 4524 STAC_925x_MODELS, 4127 4525 stac925x_models, 4128 4526 stac925x_cfg_tbl); 4129 4527 again: 4130 4528 if (spec->board_config < 0) { 4131 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC925x," 4529 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC925x," 4132 4530 "using BIOS defaults\n"); 4133 4531 err = stac92xx_save_bios_config_regs(codec); 4134 if (err < 0) { 4135 stac92xx_free(codec); 4136 return err; 4137 } 4138 spec->pin_configs = spec->bios_pin_configs; 4139 } else if (stac925x_brd_tbl[spec->board_config] != NULL){ 4140 spec->pin_configs = stac925x_brd_tbl[spec->board_config]; 4141 stac92xx_set_config_regs(codec); 4532 } else 4533 err = stac_save_pin_cfgs(codec, 4534 stac925x_brd_tbl[spec->board_config]); 4535 if (err < 0) { 4536 stac92xx_free(codec); 4537 return err; 4142 4538 } 4143 4539 … … 4203 4599 hda_nid_t conn[STAC92HD73_DAC_COUNT + 2]; 4204 4600 int err = 0; 4601 int num_dacs; 4205 4602 4206 4603 spec = kzalloc(sizeof(*spec), GFP_KERNEL); … … 4221 4618 " STAC92HD73XX, using BIOS defaults\n"); 4222 4619 err = stac92xx_save_bios_config_regs(codec); 4223 if (err < 0) { 4224 stac92xx_free(codec); 4225 return err; 4226 } 4227 spec->pin_configs = spec->bios_pin_configs; 4228 } else { 4229 spec->pin_configs = stac92hd73xx_brd_tbl[spec->board_config]; 4230 stac92xx_set_config_regs(codec); 4231 } 4232 4233 spec->multiout.num_dacs = snd_hda_get_connections(codec, 0x0a, 4620 } else 4621 err = stac_save_pin_cfgs(codec, 4622 stac92hd73xx_brd_tbl[spec->board_config]); 4623 if (err < 0) { 4624 stac92xx_free(codec); 4625 return err; 4626 } 4627 4628 num_dacs = snd_hda_get_connections(codec, 0x0a, 4234 4629 conn, STAC92HD73_DAC_COUNT + 2) - 1; 4235 4630 4236 if ( spec->multiout.num_dacs < 0) {4631 if (num_dacs < 3 || num_dacs > 5) { 4237 4632 printk(KERN_WARNING "hda_codec: Could not determine " 4238 4633 "number of channels defaulting to DAC count\n"); 4239 spec->multiout.num_dacs = STAC92HD73_DAC_COUNT; 4240 } 4241 4242 switch (spec->multiout.num_dacs) { 4634 num_dacs = STAC92HD73_DAC_COUNT; 4635 } 4636 switch (num_dacs) { 4243 4637 case 0x3: /* 6 Channel */ 4244 4638 spec->mixer = stac92hd73xx_6ch_mixer; … … 4252 4646 spec->mixer = stac92hd73xx_10ch_mixer; 4253 4647 spec->init = stac92hd73xx_10ch_core_init; 4254 } ;4255 4256 spec->multiout.dac_nids = stac92hd73xx_dac_nids; 4648 } 4649 spec->multiout.dac_nids = spec->dac_nids; 4650 4257 4651 spec->aloopback_mask = 0x01; 4258 4652 spec->aloopback_shift = 8; … … 4277 4671 spec->init = dell_eq_core_init; 4278 4672 /* fallthru */ 4279 case STAC_DELL_M6: 4673 case STAC_DELL_M6_AMIC: 4674 case STAC_DELL_M6_DMIC: 4675 case STAC_DELL_M6_BOTH: 4280 4676 spec->num_smuxes = 0; 4281 4677 spec->mixer = &stac92hd73xx_6ch_mixer[DELL_M6_MIXER]; 4282 4678 spec->amp_nids = &stac92hd73xx_amp_nids[DELL_M6_AMP]; 4679 spec->eapd_switch = 0; 4283 4680 spec->num_amps = 1; 4284 4681 4285 if ( !spec->init)4682 if (spec->board_config != STAC_DELL_EQ) 4286 4683 spec->init = dell_m6_core_init; 4287 switch (codec->subsystem_id) { 4288 case 0x1028025e: /* Analog Mics */ 4289 case 0x1028025f: 4684 switch (spec->board_config) { 4685 case STAC_DELL_M6_AMIC: /* Analog Mics */ 4290 4686 stac92xx_set_config_reg(codec, 0x0b, 0x90A70170); 4291 4687 spec->num_dmics = 0; 4292 4688 spec->private_dimux.num_items = 1; 4293 4689 break; 4294 case 0x10280271: /* Digital Mics */ 4295 case 0x10280272: 4296 case 0x10280254: 4297 case 0x10280255: 4690 case STAC_DELL_M6_DMIC: /* Digital Mics */ 4298 4691 stac92xx_set_config_reg(codec, 0x13, 0x90A60160); 4299 4692 spec->num_dmics = 1; 4300 4693 spec->private_dimux.num_items = 2; 4301 4694 break; 4302 case 0x10280256: /* Both */ 4303 case 0x10280057: 4695 case STAC_DELL_M6_BOTH: /* Both */ 4304 4696 stac92xx_set_config_reg(codec, 0x0b, 0x90A70170); 4305 4697 stac92xx_set_config_reg(codec, 0x13, 0x90A60160); … … 4312 4704 spec->num_dmics = STAC92HD73XX_NUM_DMICS; 4313 4705 spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids); 4706 spec->eapd_switch = 1; 4314 4707 } 4315 4708 if (spec->board_config > STAC_92HD73XX_REF) { … … 4340 4733 } 4341 4734 4735 if (spec->board_config == STAC_92HD73XX_NO_JD) 4736 spec->hp_detect = 0; 4737 4342 4738 codec->patch_ops = stac92xx_patch_ops; 4739 4740 codec->proc_widget_hook = stac92hd7x_proc_hook; 4343 4741 4344 4742 return 0; … … 4371 4769 spec->adc_nids = stac92hd83xxx_adc_nids; 4372 4770 spec->pwr_nids = stac92hd83xxx_pwr_nids; 4771 spec->amp_nids = stac92hd83xxx_amp_nids; 4373 4772 spec->pwr_mapping = stac92hd83xxx_pwr_mapping; 4374 4773 spec->num_pwrs = ARRAY_SIZE(stac92hd83xxx_pwr_nids); 4375 spec->multiout.dac_nids = s tac92hd83xxx_dac_nids;4774 spec->multiout.dac_nids = spec->dac_nids; 4376 4775 4377 4776 spec->init = stac92hd83xxx_core_init; 4378 4777 switch (codec->vendor_id) { 4379 4778 case 0x111d7605: 4380 spec->multiout.num_dacs = STAC92HD81_DAC_COUNT;4381 4779 break; 4382 4780 default: 4383 4781 spec->num_pwrs--; 4384 4782 spec->init++; /* switch to config #2 */ 4385 spec->multiout.num_dacs = STAC92HD83_DAC_COUNT;4386 4783 } 4387 4784 … … 4390 4787 spec->num_dmuxes = ARRAY_SIZE(stac92hd83xxx_dmux_nids); 4391 4788 spec->num_adcs = ARRAY_SIZE(stac92hd83xxx_adc_nids); 4789 spec->num_amps = ARRAY_SIZE(stac92hd83xxx_amp_nids); 4392 4790 spec->num_dmics = STAC92HD83XXX_NUM_DMICS; 4393 4791 spec->dinput_mux = &stac92hd83xxx_dmux; … … 4402 4800 " STAC92HD83XXX, using BIOS defaults\n"); 4403 4801 err = stac92xx_save_bios_config_regs(codec); 4404 if (err < 0) { 4405 stac92xx_free(codec); 4406 return err; 4407 } 4408 spec->pin_configs = spec->bios_pin_configs; 4409 } else { 4410 spec->pin_configs = stac92hd83xxx_brd_tbl[spec->board_config]; 4411 stac92xx_set_config_regs(codec); 4802 } else 4803 err = stac_save_pin_cfgs(codec, 4804 stac92hd83xxx_brd_tbl[spec->board_config]); 4805 if (err < 0) { 4806 stac92xx_free(codec); 4807 return err; 4412 4808 } 4413 4809 … … 4430 4826 codec->patch_ops = stac92xx_patch_ops; 4431 4827 4828 codec->proc_widget_hook = stac92hd_proc_hook; 4829 4432 4830 return 0; 4433 4831 } 4434 4435 #ifdef SND_HDA_NEEDS_RESUME4436 static void stac92hd71xx_set_power_state(struct hda_codec *codec, int pwr)4437 {4438 struct sigmatel_spec *spec = codec->spec;4439 int i;4440 snd_hda_codec_write_cache(codec, codec->afg, 0,4441 AC_VERB_SET_POWER_STATE, pwr);4442 4443 msleep(1);4444 for (i = 0; i < spec->num_adcs; i++) {4445 snd_hda_codec_write_cache(codec,4446 spec->adc_nids[i], 0,4447 AC_VERB_SET_POWER_STATE, pwr);4448 }4449 };4450 4451 static int stac92hd71xx_resume(struct hda_codec *codec)4452 {4453 stac92hd71xx_set_power_state(codec, AC_PWRST_D0);4454 return stac92xx_resume(codec);4455 }4456 4457 static int stac92hd71xx_suspend(struct hda_codec *codec, pm_message_t state)4458 {4459 stac92hd71xx_set_power_state(codec, AC_PWRST_D3);4460 return 0;4461 };4462 4463 #endif4464 4465 static struct hda_codec_ops stac92hd71bxx_patch_ops = {4466 .build_controls = stac92xx_build_controls,4467 .build_pcms = stac92xx_build_pcms,4468 .init = stac92xx_init,4469 .free = stac92xx_free,4470 .unsol_event = stac92xx_unsol_event,4471 #ifdef SND_HDA_NEEDS_RESUME4472 .resume = stac92hd71xx_resume,4473 .suspend = stac92hd71xx_suspend,4474 #endif4475 };4476 4832 4477 4833 static struct hda_input_mux stac92hd71bxx_dmux = { … … 4510 4866 " STAC92HD71BXX, using BIOS defaults\n"); 4511 4867 err = stac92xx_save_bios_config_regs(codec); 4512 if (err < 0) { 4513 stac92xx_free(codec); 4514 return err; 4515 } 4516 spec->pin_configs = spec->bios_pin_configs; 4517 } else { 4518 spec->pin_configs = stac92hd71bxx_brd_tbl[spec->board_config]; 4519 stac92xx_set_config_regs(codec); 4868 } else 4869 err = stac_save_pin_cfgs(codec, 4870 stac92hd71bxx_brd_tbl[spec->board_config]); 4871 if (err < 0) { 4872 stac92xx_free(codec); 4873 return err; 4874 } 4875 4876 if (spec->board_config > STAC_92HD71BXX_REF) { 4877 /* GPIO0 = EAPD */ 4878 spec->gpio_mask = 0x01; 4879 spec->gpio_dir = 0x01; 4880 spec->gpio_data = 0x01; 4520 4881 } 4521 4882 … … 4530 4891 break; 4531 4892 case 0x111d7608: /* 5 Port with Analog Mixer */ 4532 switch ( codec->subsystem_id) {4533 case 0x103c361a:4893 switch (spec->board_config) { 4894 case STAC_HP_M4: 4534 4895 /* Enable VREF power saving on GPIO1 detect */ 4535 snd_hda_codec_write(codec, codec->afg, 0, 4896 err = stac_add_event(spec, codec->afg, 4897 STAC_VREF_EVENT, 0x02); 4898 if (err < 0) 4899 return err; 4900 snd_hda_codec_write_cache(codec, codec->afg, 0, 4536 4901 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x02); 4537 4902 snd_hda_codec_write_cache(codec, codec->afg, 0, 4538 4903 AC_VERB_SET_UNSOLICITED_ENABLE, 4539 (AC_USRSP_EN | STAC_VREF_EVENT | codec->afg)); 4540 err = stac92xx_add_event(spec, codec->afg, 0x02); 4541 if (err < 0) 4542 return err; 4904 AC_USRSP_EN | err); 4543 4905 spec->gpio_mask |= 0x02; 4544 4906 break; 4545 4907 } 4546 4908 if ((codec->revision_id & 0xf) == 0 || 4547 (codec->revision_id & 0xf) == 1) { 4548 #ifdef SND_HDA_NEEDS_RESUME 4549 codec->patch_ops = stac92hd71bxx_patch_ops; 4550 #endif 4909 (codec->revision_id & 0xf) == 1) 4551 4910 spec->stream_delay = 40; /* 40 milliseconds */ 4552 }4553 4911 4554 4912 /* no output amps */ … … 4559 4917 /* disable VSW */ 4560 4918 spec->init = &stac92hd71bxx_analog_core_init[HD_DISABLE_PORTF]; 4561 stac 92xx_set_config_reg(codec, 0xf, 0x40f000f0);4919 stac_change_pin_config(codec, 0xf, 0x40f000f0); 4562 4920 break; 4563 4921 case 0x111d7603: /* 6 Port with Analog Mixer */ 4564 if ((codec->revision_id & 0xf) == 1) { 4565 #ifdef SND_HDA_NEEDS_RESUME 4566 codec->patch_ops = stac92hd71bxx_patch_ops; 4567 #endif 4922 if ((codec->revision_id & 0xf) == 1) 4568 4923 spec->stream_delay = 40; /* 40 milliseconds */ 4569 }4570 4924 4571 4925 /* no output amps */ … … 4582 4936 spec->aloopback_shift = 0; 4583 4937 4584 if (spec->board_config > STAC_92HD71BXX_REF) {4585 /* GPIO0 = EAPD */4586 spec->gpio_mask = 0x01;4587 spec->gpio_dir = 0x01;4588 spec->gpio_data = 0x01;4589 }4590 4591 4938 spec->powerdown_adcs = 1; 4592 4939 spec->digbeep_nid = 0x26; … … 4603 4950 switch (spec->board_config) { 4604 4951 case STAC_HP_M4: 4952 /* enable internal microphone */ 4953 stac_change_pin_config(codec, 0x0e, 0x01813040); 4954 stac92xx_auto_set_pinctl(codec, 0x0e, 4955 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80); 4956 /* fallthru */ 4957 case STAC_DELL_M4_2: 4605 4958 spec->num_dmics = 0; 4606 4959 spec->num_smuxes = 0; 4607 4960 spec->num_dmuxes = 0; 4608 4609 /* enable internal microphone */ 4610 stac92xx_set_config_reg(codec, 0x0e, 0x01813040); 4611 stac92xx_auto_set_pinctl(codec, 0x0e, 4612 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80); 4961 break; 4962 case STAC_DELL_M4_1: 4963 case STAC_DELL_M4_3: 4964 spec->num_dmics = 1; 4965 spec->num_smuxes = 0; 4966 spec->num_dmuxes = 0; 4613 4967 break; 4614 4968 default: … … 4618 4972 }; 4619 4973 4620 spec->multiout.num_dacs = 1; 4621 spec->multiout.hp_nid = 0x11; 4622 spec->multiout.dac_nids = stac92hd71bxx_dac_nids; 4974 spec->multiout.dac_nids = spec->dac_nids; 4623 4975 if (spec->dinput_mux) 4624 4976 spec->private_dimux.num_items += … … 4641 4993 return err; 4642 4994 } 4995 4996 codec->proc_widget_hook = stac92hd7x_proc_hook; 4643 4997 4644 4998 return 0; … … 4703 5057 "using BIOS defaults\n"); 4704 5058 err = stac92xx_save_bios_config_regs(codec); 4705 if (err < 0) { 4706 stac92xx_free(codec); 4707 return err; 4708 } 4709 spec->pin_configs = spec->bios_pin_configs; 4710 } else if (stac922x_brd_tbl[spec->board_config] != NULL) { 4711 spec->pin_configs = stac922x_brd_tbl[spec->board_config]; 4712 stac92xx_set_config_regs(codec); 5059 } else 5060 err = stac_save_pin_cfgs(codec, 5061 stac922x_brd_tbl[spec->board_config]); 5062 if (err < 0) { 5063 stac92xx_free(codec); 5064 return err; 4713 5065 } 4714 5066 … … 4773 5125 "STAC927x, using BIOS defaults\n"); 4774 5126 err = stac92xx_save_bios_config_regs(codec); 4775 if (err < 0) { 4776 stac92xx_free(codec); 4777 return err; 4778 } 4779 spec->pin_configs = spec->bios_pin_configs; 4780 } else { 4781 spec->pin_configs = stac927x_brd_tbl[spec->board_config]; 4782 stac92xx_set_config_regs(codec); 5127 } else 5128 err = stac_save_pin_cfgs(codec, 5129 stac927x_brd_tbl[spec->board_config]); 5130 if (err < 0) { 5131 stac92xx_free(codec); 5132 return err; 4783 5133 } 4784 5134 … … 4810 5160 case 0x1028022e: 4811 5161 /* correct the device field to SPDIF out */ 4812 stac 92xx_set_config_reg(codec, 0x21, 0x01442070);5162 stac_change_pin_config(codec, 0x21, 0x01442070); 4813 5163 break; 4814 5164 }; 4815 5165 /* configure the analog microphone on some laptops */ 4816 stac 92xx_set_config_reg(codec, 0x0c, 0x90a79130);5166 stac_change_pin_config(codec, 0x0c, 0x90a79130); 4817 5167 /* correct the front output jack as a hp out */ 4818 stac 92xx_set_config_reg(codec, 0x0f, 0x0227011f);5168 stac_change_pin_config(codec, 0x0f, 0x0227011f); 4819 5169 /* correct the front input jack as a mic */ 4820 stac 92xx_set_config_reg(codec, 0x0e, 0x02a79130);5170 stac_change_pin_config(codec, 0x0e, 0x02a79130); 4821 5171 /* fallthru */ 4822 5172 case STAC_DELL_3ST: … … 4847 5197 spec->aloopback_mask = 0x40; 4848 5198 spec->aloopback_shift = 0; 5199 spec->eapd_switch = 1; 4849 5200 4850 5201 err = stac92xx_parse_auto_config(codec, 0x1e, 0x20); … … 4864 5215 4865 5216 codec->patch_ops = stac92xx_patch_ops; 5217 5218 codec->proc_widget_hook = stac927x_proc_hook; 4866 5219 4867 5220 /* … … 4877 5230 codec->bus->needs_damn_long_delay = 1; 4878 5231 5232 /* no jack detecion for ref-no-jd model */ 5233 if (spec->board_config == STAC_D965_REF_NO_JD) 5234 spec->hp_detect = 0; 5235 4879 5236 return 0; 4880 5237 } … … 4899 5256 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9205, using BIOS defaults\n"); 4900 5257 err = stac92xx_save_bios_config_regs(codec); 4901 if (err < 0) { 4902 stac92xx_free(codec); 4903 return err; 4904 } 4905 spec->pin_configs = spec->bios_pin_configs; 4906 } else { 4907 spec->pin_configs = stac9205_brd_tbl[spec->board_config]; 4908 stac92xx_set_config_regs(codec); 5258 } else 5259 err = stac_save_pin_cfgs(codec, 5260 stac9205_brd_tbl[spec->board_config]); 5261 if (err < 0) { 5262 stac92xx_free(codec); 5263 return err; 4909 5264 } 4910 5265 … … 4927 5282 spec->aloopback_mask = 0x40; 4928 5283 spec->aloopback_shift = 0; 5284 spec->eapd_switch = 1; 4929 5285 spec->multiout.dac_nids = spec->dac_nids; 4930 5286 … … 4932 5288 case STAC_9205_DELL_M43: 4933 5289 /* Enable SPDIF in/out */ 4934 stac 92xx_set_config_reg(codec, 0x1f, 0x01441030);4935 stac 92xx_set_config_reg(codec, 0x20, 0x1c410030);5290 stac_change_pin_config(codec, 0x1f, 0x01441030); 5291 stac_change_pin_config(codec, 0x20, 0x1c410030); 4936 5292 4937 5293 /* Enable unsol response for GPIO4/Dock HP connection */ 4938 snd_hda_codec_write(codec, codec->afg, 0, 5294 err = stac_add_event(spec, codec->afg, STAC_VREF_EVENT, 0x01); 5295 if (err < 0) 5296 return err; 5297 snd_hda_codec_write_cache(codec, codec->afg, 0, 4939 5298 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10); 4940 5299 snd_hda_codec_write_cache(codec, codec->afg, 0, 4941 AC_VERB_SET_UNSOLICITED_ENABLE, 4942 (AC_USRSP_EN | STAC_VREF_EVENT | codec->afg)); 4943 err = stac92xx_add_event(spec, codec->afg, 0x01); 4944 if (err < 0) 4945 return err; 5300 AC_VERB_SET_UNSOLICITED_ENABLE, 5301 AC_USRSP_EN | err); 4946 5302 4947 5303 spec->gpio_dir = 0x0b; … … 4981 5337 codec->patch_ops = stac92xx_patch_ops; 4982 5338 5339 codec->proc_widget_hook = stac9205_proc_hook; 5340 4983 5341 return 0; 4984 5342 } … … 5037 5395 }; 5038 5396 5039 /* bind volumes of both NID 0x02 and 0x05 */5040 static struct hda_bind_ctls vaio_bind_master_vol = {5041 .ops = &snd_hda_bind_vol,5042 .values = {5043 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT),5044 HDA_COMPOSE_AMP_VAL(0x05, 3, 0, HDA_OUTPUT),5045 05046 },5047 };5048 5049 /* bind volumes of both NID 0x02 and 0x05 */5050 static struct hda_bind_ctls vaio_bind_master_sw = {5051 .ops = &snd_hda_bind_sw,5052 .values = {5053 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT),5054 HDA_COMPOSE_AMP_VAL(0x05, 3, 0, HDA_OUTPUT),5055 0,5056 },5057 };5058 5059 5397 static struct snd_kcontrol_new vaio_mixer[] = { 5060 HDA_BIND_VOL("Master Playback Volume", &vaio_bind_master_vol), 5061 HDA_BIND_SW("Master Playback Switch", &vaio_bind_master_sw), 5398 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x02, 0, HDA_OUTPUT), 5399 HDA_CODEC_MUTE("Headphone Playback Switch", 0x02, 0, HDA_OUTPUT), 5400 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x05, 0, HDA_OUTPUT), 5401 HDA_CODEC_MUTE("Speaker Playback Switch", 0x05, 0, HDA_OUTPUT), 5062 5402 /* HDA_CODEC_VOLUME("CD Capture Volume", 0x07, 0, HDA_INPUT), */ 5063 5403 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_INPUT), … … 5075 5415 5076 5416 static struct snd_kcontrol_new vaio_ar_mixer[] = { 5077 HDA_BIND_VOL("Master Playback Volume", &vaio_bind_master_vol), 5078 HDA_BIND_SW("Master Playback Switch", &vaio_bind_master_sw), 5417 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x02, 0, HDA_OUTPUT), 5418 HDA_CODEC_MUTE("Headphone Playback Switch", 0x02, 0, HDA_OUTPUT), 5419 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x05, 0, HDA_OUTPUT), 5420 HDA_CODEC_MUTE("Speaker Playback Switch", 0x05, 0, HDA_OUTPUT), 5079 5421 /* HDA_CODEC_VOLUME("CD Capture Volume", 0x07, 0, HDA_INPUT), */ 5080 5422 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_INPUT), … … 5117 5459 static void stac9872_vaio_hp_detect(struct hda_codec *codec, unsigned int res) 5118 5460 { 5119 if (get_ hp_pin_presence(codec, 0x0a)) {5461 if (get_pin_presence(codec, 0x0a)) { 5120 5462 stac92xx_reset_pinctl(codec, 0x0f, AC_PINCTL_OUT_EN); 5121 5463 stac92xx_set_pinctl(codec, 0x0a, AC_PINCTL_OUT_EN); … … 5228 5570 * patch entries 5229 5571 */ 5230 st ruct hda_codec_preset snd_hda_preset_sigmatel[] = {5572 static struct hda_codec_preset snd_hda_preset_sigmatel[] = { 5231 5573 { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 }, 5232 5574 { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x }, … … 5292 5634 {0} /* terminator */ 5293 5635 }; 5636 5637 MODULE_ALIAS("snd-hda-codec-id:8384*"); 5638 MODULE_ALIAS("snd-hda-codec-id:111d*"); 5639 5640 MODULE_LICENSE("GPL"); 5641 MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec"); 5642 5643 static struct hda_codec_preset_list sigmatel_list = { 5644 .preset = snd_hda_preset_sigmatel, 5645 .owner = THIS_MODULE, 5646 }; 5647 5648 static int __init patch_sigmatel_init(void) 5649 { 5650 return snd_hda_add_codec_preset(&sigmatel_list); 5651 } 5652 5653 static void __exit patch_sigmatel_exit(void) 5654 { 5655 snd_hda_delete_codec_preset(&sigmatel_list); 5656 } 5657 5658 module_init(patch_sigmatel_init) 5659 module_exit(patch_sigmatel_exit) -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/hda/patch_via.c ¶
r399 r410 48 48 #include "hda_codec.h" 49 49 #include "hda_local.h" 50 #include "hda_patch.h"51 50 52 51 /* amp values */ … … 142 141 AUTO_SEQ_SIDE 143 142 }; 144 145 #define get_amp_nid(kc) ((kc)->private_value & 0xffff)146 143 147 144 /* Some VT1708S based boards gets the micboost setting wrong, so we have … … 3253 3250 * patch entries 3254 3251 */ 3255 st ruct hda_codec_preset snd_hda_preset_via[] = {3256 { .id = 0x11061708, .name = "V IA VT1708", .patch = patch_vt1708},3257 { .id = 0x11061709, .name = "V IA VT1708", .patch = patch_vt1708},3258 { .id = 0x1106170 A, .name = "VIAVT1708", .patch = patch_vt1708},3259 { .id = 0x1106170 B, .name = "VIAVT1708", .patch = patch_vt1708},3260 { .id = 0x1106 E710, .name = "VIAVT1709 10-Ch",3252 static struct hda_codec_preset snd_hda_preset_via[] = { 3253 { .id = 0x11061708, .name = "VT1708", .patch = patch_vt1708}, 3254 { .id = 0x11061709, .name = "VT1708", .patch = patch_vt1708}, 3255 { .id = 0x1106170a, .name = "VT1708", .patch = patch_vt1708}, 3256 { .id = 0x1106170b, .name = "VT1708", .patch = patch_vt1708}, 3257 { .id = 0x1106e710, .name = "VT1709 10-Ch", 3261 3258 .patch = patch_vt1709_10ch}, 3262 { .id = 0x1106 E711, .name = "VIAVT1709 10-Ch",3259 { .id = 0x1106e711, .name = "VT1709 10-Ch", 3263 3260 .patch = patch_vt1709_10ch}, 3264 { .id = 0x1106 E712, .name = "VIAVT1709 10-Ch",3261 { .id = 0x1106e712, .name = "VT1709 10-Ch", 3265 3262 .patch = patch_vt1709_10ch}, 3266 { .id = 0x1106 E713, .name = "VIAVT1709 10-Ch",3263 { .id = 0x1106e713, .name = "VT1709 10-Ch", 3267 3264 .patch = patch_vt1709_10ch}, 3268 { .id = 0x1106 E714, .name = "VIAVT1709 6-Ch",3265 { .id = 0x1106e714, .name = "VT1709 6-Ch", 3269 3266 .patch = patch_vt1709_6ch}, 3270 { .id = 0x1106 E715, .name = "VIAVT1709 6-Ch",3267 { .id = 0x1106e715, .name = "VT1709 6-Ch", 3271 3268 .patch = patch_vt1709_6ch}, 3272 { .id = 0x1106 E716, .name = "VIAVT1709 6-Ch",3269 { .id = 0x1106e716, .name = "VT1709 6-Ch", 3273 3270 .patch = patch_vt1709_6ch}, 3274 { .id = 0x1106 E717, .name = "VIAVT1709 6-Ch",3271 { .id = 0x1106e717, .name = "VT1709 6-Ch", 3275 3272 .patch = patch_vt1709_6ch}, 3276 { .id = 0x1106 E720, .name = "VIAVT1708B 8-Ch",3273 { .id = 0x1106e720, .name = "VT1708B 8-Ch", 3277 3274 .patch = patch_vt1708B_8ch}, 3278 { .id = 0x1106 E721, .name = "VIAVT1708B 8-Ch",3275 { .id = 0x1106e721, .name = "VT1708B 8-Ch", 3279 3276 .patch = patch_vt1708B_8ch}, 3280 { .id = 0x1106 E722, .name = "VIAVT1708B 8-Ch",3277 { .id = 0x1106e722, .name = "VT1708B 8-Ch", 3281 3278 .patch = patch_vt1708B_8ch}, 3282 { .id = 0x1106 E723, .name = "VIAVT1708B 8-Ch",3279 { .id = 0x1106e723, .name = "VT1708B 8-Ch", 3283 3280 .patch = patch_vt1708B_8ch}, 3284 { .id = 0x1106 E724, .name = "VIAVT1708B 4-Ch",3281 { .id = 0x1106e724, .name = "VT1708B 4-Ch", 3285 3282 .patch = patch_vt1708B_4ch}, 3286 { .id = 0x1106 E725, .name = "VIAVT1708B 4-Ch",3283 { .id = 0x1106e725, .name = "VT1708B 4-Ch", 3287 3284 .patch = patch_vt1708B_4ch}, 3288 { .id = 0x1106 E726, .name = "VIAVT1708B 4-Ch",3285 { .id = 0x1106e726, .name = "VT1708B 4-Ch", 3289 3286 .patch = patch_vt1708B_4ch}, 3290 { .id = 0x1106 E727, .name = "VIAVT1708B 4-Ch",3287 { .id = 0x1106e727, .name = "VT1708B 4-Ch", 3291 3288 .patch = patch_vt1708B_4ch}, 3292 { .id = 0x11060397, .name = "V IA VT1708S",3289 { .id = 0x11060397, .name = "VT1708S", 3293 3290 .patch = patch_vt1708S}, 3294 { .id = 0x11061397, .name = "V IA VT1708S",3291 { .id = 0x11061397, .name = "VT1708S", 3295 3292 .patch = patch_vt1708S}, 3296 { .id = 0x11062397, .name = "V IA VT1708S",3293 { .id = 0x11062397, .name = "VT1708S", 3297 3294 .patch = patch_vt1708S}, 3298 { .id = 0x11063397, .name = "V IA VT1708S",3295 { .id = 0x11063397, .name = "VT1708S", 3299 3296 .patch = patch_vt1708S}, 3300 { .id = 0x11064397, .name = "V IA VT1708S",3297 { .id = 0x11064397, .name = "VT1708S", 3301 3298 .patch = patch_vt1708S}, 3302 { .id = 0x11065397, .name = "V IA VT1708S",3299 { .id = 0x11065397, .name = "VT1708S", 3303 3300 .patch = patch_vt1708S}, 3304 { .id = 0x11066397, .name = "V IA VT1708S",3301 { .id = 0x11066397, .name = "VT1708S", 3305 3302 .patch = patch_vt1708S}, 3306 { .id = 0x11067397, .name = "V IA VT1708S",3303 { .id = 0x11067397, .name = "VT1708S", 3307 3304 .patch = patch_vt1708S}, 3308 { .id = 0x11060398, .name = "V IA VT1702",3305 { .id = 0x11060398, .name = "VT1702", 3309 3306 .patch = patch_vt1702}, 3310 { .id = 0x11061398, .name = "V IA VT1702",3307 { .id = 0x11061398, .name = "VT1702", 3311 3308 .patch = patch_vt1702}, 3312 { .id = 0x11062398, .name = "V IA VT1702",3309 { .id = 0x11062398, .name = "VT1702", 3313 3310 .patch = patch_vt1702}, 3314 { .id = 0x11063398, .name = "V IA VT1702",3311 { .id = 0x11063398, .name = "VT1702", 3315 3312 .patch = patch_vt1702}, 3316 { .id = 0x11064398, .name = "V IA VT1702",3313 { .id = 0x11064398, .name = "VT1702", 3317 3314 .patch = patch_vt1702}, 3318 { .id = 0x11065398, .name = "V IA VT1702",3315 { .id = 0x11065398, .name = "VT1702", 3319 3316 .patch = patch_vt1702}, 3320 { .id = 0x11066398, .name = "V IA VT1702",3317 { .id = 0x11066398, .name = "VT1702", 3321 3318 .patch = patch_vt1702}, 3322 { .id = 0x11067398, .name = "V IA VT1702",3319 { .id = 0x11067398, .name = "VT1702", 3323 3320 .patch = patch_vt1702}, 3324 3321 {0} /* terminator */ 3325 3322 }; 3323 3324 MODULE_ALIAS("snd-hda-codec-id:1106*"); 3325 3326 static struct hda_codec_preset_list via_list = { 3327 .preset = snd_hda_preset_via, 3328 .owner = THIS_MODULE, 3329 }; 3330 3331 MODULE_LICENSE("GPL"); 3332 MODULE_DESCRIPTION("VIA HD-audio codec"); 3333 3334 static int __init patch_via_init(void) 3335 { 3336 return snd_hda_add_codec_preset(&via_list); 3337 } 3338 3339 static void __exit patch_via_exit(void) 3340 { 3341 snd_hda_delete_codec_preset(&via_list); 3342 } 3343 3344 module_init(patch_via_init) 3345 module_exit(patch_via_exit) -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/intel8x0.c ¶
r402 r410 3065 3065 struct shortname_table *name; 3066 3066 3067 card = snd_card_new(index, id, THIS_MODULE, 0);3068 if ( card == NULL)3069 return -ENOMEM;3067 err = snd_card_create(index, id, THIS_MODULE, 0, &card); 3068 if (err < 0) 3069 return err; 3070 3070 3071 3071 if (spdif_aclink < 0) -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/korg1212/korg1212.c ¶
r399 r410 2444 2444 return -ENOENT; 2445 2445 } 2446 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);2447 if (card == NULL)2448 return -ENOMEM;2446 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 2447 if (err < 0) 2448 return err; 2449 2449 2450 2450 if ((err = snd_korg1212_create(card, pci, &korg1212)) < 0) { -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/maestro3.c ¶
r399 r410 1675 1675 1676 1676 if (status & HV_INT_PENDING) 1677 tasklet_ hi_schedule(&chip->hwvol_tq);1677 tasklet_schedule(&chip->hwvol_tq); 1678 1678 1679 1679 /* … … 2701 2701 } 2702 2702 2703 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);2704 if ( card == NULL)2705 return -ENOMEM;2703 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 2704 if (err < 0) 2705 return err; 2706 2706 2707 2707 switch (pci->device) { -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/nm256/nm256.c ¶
r399 r410 1671 1671 } 1672 1672 1673 card = snd_card_new(index, id, THIS_MODULE, 0);1674 if ( card == NULL)1675 return -ENOMEM;1673 err = snd_card_create(index, id, THIS_MODULE, 0, &card); 1674 if (err < 0) 1675 return err; 1676 1676 1677 1677 switch (pci->device) { -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/rme96.c ¶
r399 r410 2349 2349 return -ENOENT; 2350 2350 } 2351 if ((card = snd_card_new(index[dev], id[dev], THIS_MODULE, 2352 sizeof(struct rme96))) == NULL) 2353 return -ENOMEM; 2351 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 2352 sizeof(struct rme96), &card); 2353 if (err < 0) 2354 return err; 2354 2355 card->private_free = snd_rme96_card_free; 2355 2356 rme96 = (struct rme96 *)card->private_data; -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/rme9652/hdsp.c ¶
r402 r410 1453 1453 return -1; 1454 1454 1455 sprintf (hdsp->midi[id].rmidi->name, "%s MIDI %d", card->id, id+1);1455 sprintf(hdsp->midi[id].rmidi->name, "HDSP MIDI %d", id+1); 1456 1456 hdsp->midi[id].rmidi->private_data = &hdsp->midi[id]; 1457 1457 … … 3751 3751 } 3752 3752 if (hdsp->use_midi_tasklet && schedule) 3753 tasklet_ hi_schedule(&hdsp->midi_tasklet);3753 tasklet_schedule(&hdsp->midi_tasklet); 3754 3754 return IRQ_HANDLED; 3755 3755 } … … 5159 5159 } 5160 5160 5161 if (!(card = snd_card_new(index[dev], id[dev], THIS_MODULE, sizeof(struct hdsp)))) 5162 return -ENOMEM; 5161 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 5162 sizeof(struct hdsp), &card); 5163 if (err < 0) 5164 return err; 5163 5165 5164 5166 hdsp = (struct hdsp *) card->private_data; -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/rme9652/hdspm.c ¶
r399 r410 1294 1294 return err; 1295 1295 1296 sprintf (hdspm->midi[id].rmidi->name, "%s MIDI %d", card->id, id+1);1296 sprintf(hdspm->midi[id].rmidi->name, "HDSPM MIDI %d", id+1); 1297 1297 hdspm->midi[id].rmidi->private_data = &hdspm->midi[id]; 1298 1298 … … 3477 3477 } 3478 3478 if (schedule) 3479 tasklet_ hi_schedule(&hdspm->midi_tasklet);3479 tasklet_schedule(&hdspm->midi_tasklet); 3480 3480 return IRQ_HANDLED; 3481 3481 } … … 4504 4504 } 4505 4505 4506 card = snd_card_new(index[dev], id[dev],4507 THIS_MODULE, sizeof(struct hdspm));4508 if ( !card)4509 return -ENOMEM;4506 err = snd_card_create(index[dev], id[dev], 4507 THIS_MODULE, sizeof(struct hdspm), &card); 4508 if (err < 0) 4509 return err; 4510 4510 4511 4511 hdspm = card->private_data; -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/rme9652/rme9652.c ¶
r399 r410 2595 2595 } 2596 2596 2597 card = snd_card_new(index[dev], id[dev], THIS_MODULE,2598 sizeof(struct snd_rme9652));2599 2600 if ( !card)2601 return -ENOMEM;2597 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 2598 sizeof(struct snd_rme9652), &card); 2599 2600 if (err < 0) 2601 return err; 2602 2602 2603 2603 rme9652 = (struct snd_rme9652 *) card->private_data; -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/sonicvibes.c ¶
r399 r410 1424 1424 } 1425 1425 1426 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);1427 if ( card == NULL)1428 return -ENOMEM;1426 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 1427 if (err < 0) 1428 return err; 1429 1429 for (idx = 0; idx < 5; idx++) { 1430 1430 if (pci_resource_start(pci, idx) == 0 || -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/trident/trident.c ¶
r305 r410 95 95 } 96 96 97 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);98 if ( card == NULL)99 return -ENOMEM;97 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 98 if (err < 0) 99 return err; 100 100 101 101 if ((err = snd_trident_create(card, pci, -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/via82xx.c ¶
r399 r410 2439 2439 #endif 2440 2440 2441 card = snd_card_new(index, id, THIS_MODULE, 0);2442 if ( card == NULL)2443 return -ENOMEM;2441 err = snd_card_create(index, id, THIS_MODULE, 0, &card); 2442 if (err < 0) 2443 return err; 2444 2444 2445 2445 card_type = pci_id->driver_data; -
TabularUnified GPL/branches/uniaud32-2.0/alsa-kernel/pci/ymfpci/ymfpci.c ¶
r305 r410 188 188 } 189 189 190 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);191 if ( card == NULL)192 return -ENOMEM;190 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); 191 if (err < 0) 192 return err; 193 193 194 194 switch (pci_id->device) { -
TabularUnified GPL/branches/uniaud32-2.0/include/linux/interrupt.h ¶
r305 r410 79 79 extern void tasklet_hi_schedule(struct tasklet_struct *t); 80 80 81 #define tasklet_schedule tasklet_hi_schedule 82 81 83 extern void tasklet_init(struct tasklet_struct *t, 82 84 void (*func)(unsigned long), unsigned long data); -
TabularUnified GPL/branches/uniaud32-2.0/include/linux/pci.h ¶
r309 r410 657 657 658 658 void pci_save_state(struct pci_dev *dev); 659 voidpci_restore_state(struct pci_dev *dev);659 int pci_restore_state(struct pci_dev *dev); 660 660 661 661 unsigned long pci_get_dma_mask(struct pci_dev *); -
TabularUnified GPL/branches/uniaud32-2.0/lib32/pci.c ¶
r333 r410 755 755 } 756 756 757 voidpci_restore_state(struct pci_dev *pci)757 int pci_restore_state(struct pci_dev *pci) 758 758 { 759 759 int i; … … 763 763 saved_tbl[i].pci = NULL; 764 764 pci_orig_restore_state(pci, saved_tbl[i].config); 765 return ;765 return 0; 766 766 } 767 767 } 768 768 printk(KERN_DEBUG "snd: no saved pci config!\n"); 769 return 1; 769 770 } 770 771 -
TabularUnified GPL/branches/uniaud32-2.0/uniaud.inc ¶
r402 r410 13 13 # ex RC3 GA FIXPACK2 beta_47 14 14 # Comment out to avoid a fixpack line in bldlevel 15 FIXPACK = SVN r402 15 FIXPACK = SVN r402+ 16 16 17 17 # ALSA BUILD VERSION … … 20 20 # Leave empty or use MIXED 21 21 # STRING must be max X chars 22 ALSAVERSION = 1.0.1 8a22 ALSAVERSION = 1.0.19 23 23
Note:
See TracChangeset
for help on using the changeset viewer.