Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 3 | * hda_intel.c - Implementation of primary alsa driver code base |
| 4 | * for Intel HD Audio. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * Copyright(c) 2004 Intel Corporation. All rights reserved. |
| 7 | * |
| 8 | * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de> |
| 9 | * PeiSen Hou <pshou@realtek.com.tw> |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify it |
| 12 | * under the terms of the GNU General Public License as published by the Free |
| 13 | * Software Foundation; either version 2 of the License, or (at your option) |
| 14 | * any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 17 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 19 | * more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License along with |
| 22 | * this program; if not, write to the Free Software Foundation, Inc., 59 |
| 23 | * Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 24 | * |
| 25 | * CONTACTS: |
| 26 | * |
| 27 | * Matt Jared matt.jared@intel.com |
| 28 | * Andy Kopp andy.kopp@intel.com |
| 29 | * Dan Kogan dan.d.kogan@intel.com |
| 30 | * |
| 31 | * CHANGES: |
| 32 | * |
| 33 | * 2004.12.01 Major rewrite by tiwai, merged the work of pshou |
| 34 | * |
| 35 | */ |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/delay.h> |
| 38 | #include <linux/interrupt.h> |
Randy Dunlap | 362775e | 2005-11-07 14:43:23 +0100 | [diff] [blame] | 39 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <linux/module.h> |
Andrew Morton | 24982c5 | 2008-03-04 10:08:58 +0100 | [diff] [blame] | 41 | #include <linux/dma-mapping.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/moduleparam.h> |
| 43 | #include <linux/init.h> |
| 44 | #include <linux/slab.h> |
| 45 | #include <linux/pci.h> |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 46 | #include <linux/mutex.h> |
Takashi Iwai | 0cbf009 | 2008-10-29 16:18:25 +0100 | [diff] [blame] | 47 | #include <linux/reboot.h> |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 48 | #include <linux/io.h> |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 49 | #include <linux/pm_runtime.h> |
Pierre-Louis Bossart | 5d890f5 | 2012-10-22 16:42:16 -0500 | [diff] [blame] | 50 | #include <linux/clocksource.h> |
| 51 | #include <linux/time.h> |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 52 | #include <linux/completion.h> |
Pierre-Louis Bossart | 5d890f5 | 2012-10-22 16:42:16 -0500 | [diff] [blame] | 53 | |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 54 | #ifdef CONFIG_X86 |
| 55 | /* for snoop control */ |
| 56 | #include <asm/pgtable.h> |
| 57 | #include <asm/cacheflush.h> |
| 58 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | #include <sound/core.h> |
| 60 | #include <sound/initval.h> |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 61 | #include <linux/vgaarb.h> |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 62 | #include <linux/vga_switcheroo.h> |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 63 | #include <linux/firmware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #include "hda_codec.h" |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 65 | #include "hda_i915.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
| 67 | |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 68 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; |
| 69 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; |
Rusty Russell | a67ff6a | 2011-12-15 13:49:36 +1030 | [diff] [blame] | 70 | static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 71 | static char *model[SNDRV_CARDS]; |
Takashi Iwai | 1dac669 | 2012-09-13 14:59:47 +0200 | [diff] [blame] | 72 | static int position_fix[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1}; |
Takashi Iwai | 5c0d7bc | 2008-06-10 17:53:35 +0200 | [diff] [blame] | 73 | static int bdl_pos_adj[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1}; |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 74 | static int probe_mask[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1}; |
Takashi Iwai | d4d9cd03 | 2008-12-19 15:19:11 +0100 | [diff] [blame] | 75 | static int probe_only[SNDRV_CARDS]; |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 76 | static int jackpoll_ms[SNDRV_CARDS]; |
Rusty Russell | a67ff6a | 2011-12-15 13:49:36 +1030 | [diff] [blame] | 77 | static bool single_cmd; |
Takashi Iwai | 71623855 | 2009-09-28 13:14:04 +0200 | [diff] [blame] | 78 | static int enable_msi = -1; |
Takashi Iwai | 4ea6fbc | 2009-06-17 09:52:54 +0200 | [diff] [blame] | 79 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
| 80 | static char *patch[SNDRV_CARDS]; |
| 81 | #endif |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 82 | #ifdef CONFIG_SND_HDA_INPUT_BEEP |
Takashi Iwai | 0920c9b | 2012-07-03 16:58:48 +0200 | [diff] [blame] | 83 | static bool beep_mode[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 84 | CONFIG_SND_HDA_INPUT_BEEP_MODE}; |
| 85 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 87 | module_param_array(index, int, NULL, 0444); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | MODULE_PARM_DESC(index, "Index value for Intel HD audio interface."); |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 89 | module_param_array(id, charp, NULL, 0444); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | MODULE_PARM_DESC(id, "ID string for Intel HD audio interface."); |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 91 | module_param_array(enable, bool, NULL, 0444); |
| 92 | MODULE_PARM_DESC(enable, "Enable Intel HD audio interface."); |
| 93 | module_param_array(model, charp, NULL, 0444); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | MODULE_PARM_DESC(model, "Use the given board model."); |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 95 | module_param_array(position_fix, int, NULL, 0444); |
David Henningsson | 4cb3631 | 2010-09-30 10:12:50 +0200 | [diff] [blame] | 96 | MODULE_PARM_DESC(position_fix, "DMA pointer read method." |
Takashi Iwai | 1dac669 | 2012-09-13 14:59:47 +0200 | [diff] [blame] | 97 | "(-1 = system default, 0 = auto, 1 = LPIB, 2 = POSBUF, 3 = VIACOMBO, 4 = COMBO)."); |
Takashi Iwai | 555e219 | 2008-06-10 17:53:34 +0200 | [diff] [blame] | 98 | module_param_array(bdl_pos_adj, int, NULL, 0644); |
| 99 | MODULE_PARM_DESC(bdl_pos_adj, "BDL position adjustment offset."); |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 100 | module_param_array(probe_mask, int, NULL, 0444); |
Takashi Iwai | 606ad75 | 2005-11-24 16:03:40 +0100 | [diff] [blame] | 101 | MODULE_PARM_DESC(probe_mask, "Bitmask to probe codecs (default = -1)."); |
Jaroslav Kysela | 079e683 | 2010-03-26 11:16:59 +0100 | [diff] [blame] | 102 | module_param_array(probe_only, int, NULL, 0444); |
Takashi Iwai | d4d9cd03 | 2008-12-19 15:19:11 +0100 | [diff] [blame] | 103 | MODULE_PARM_DESC(probe_only, "Only probing and no codec initialization."); |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 104 | module_param_array(jackpoll_ms, int, NULL, 0444); |
| 105 | MODULE_PARM_DESC(jackpoll_ms, "Ms between polling for jack events (default = 0, using unsol events only)"); |
Takashi Iwai | 2734616 | 2006-01-12 18:28:44 +0100 | [diff] [blame] | 106 | module_param(single_cmd, bool, 0444); |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 107 | MODULE_PARM_DESC(single_cmd, "Use single command to communicate with codecs " |
| 108 | "(for debugging only)."); |
Takashi Iwai | ac9ef6c | 2012-01-20 12:08:44 +0100 | [diff] [blame] | 109 | module_param(enable_msi, bint, 0444); |
Takashi Iwai | 134a11f | 2006-11-10 12:08:37 +0100 | [diff] [blame] | 110 | MODULE_PARM_DESC(enable_msi, "Enable Message Signaled Interrupt (MSI)"); |
Takashi Iwai | 4ea6fbc | 2009-06-17 09:52:54 +0200 | [diff] [blame] | 111 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
| 112 | module_param_array(patch, charp, NULL, 0444); |
| 113 | MODULE_PARM_DESC(patch, "Patch file for Intel HD audio interface."); |
| 114 | #endif |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 115 | #ifdef CONFIG_SND_HDA_INPUT_BEEP |
Takashi Iwai | 0920c9b | 2012-07-03 16:58:48 +0200 | [diff] [blame] | 116 | module_param_array(beep_mode, bool, NULL, 0444); |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 117 | MODULE_PARM_DESC(beep_mode, "Select HDA Beep registration mode " |
Takashi Iwai | 0920c9b | 2012-07-03 16:58:48 +0200 | [diff] [blame] | 118 | "(0=off, 1=on) (default=1)."); |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 119 | #endif |
Takashi Iwai | 606ad75 | 2005-11-24 16:03:40 +0100 | [diff] [blame] | 120 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 121 | #ifdef CONFIG_PM |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 122 | static int param_set_xint(const char *val, const struct kernel_param *kp); |
| 123 | static struct kernel_param_ops param_ops_xint = { |
| 124 | .set = param_set_xint, |
| 125 | .get = param_get_int, |
| 126 | }; |
| 127 | #define param_check_xint param_check_int |
| 128 | |
Takashi Iwai | fee2fba | 2008-11-27 12:43:28 +0100 | [diff] [blame] | 129 | static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT; |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 130 | module_param(power_save, xint, 0644); |
Takashi Iwai | fee2fba | 2008-11-27 12:43:28 +0100 | [diff] [blame] | 131 | MODULE_PARM_DESC(power_save, "Automatic power-saving timeout " |
| 132 | "(in second, 0 = disable)."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
Takashi Iwai | dee1b66 | 2007-08-13 16:10:30 +0200 | [diff] [blame] | 134 | /* reset the HD-audio controller in power save mode. |
| 135 | * this may give more power-saving, but will take longer time to |
| 136 | * wake up. |
| 137 | */ |
Takashi Iwai | 8fc2442 | 2013-04-04 15:35:24 +0200 | [diff] [blame] | 138 | static bool power_save_controller = 1; |
| 139 | module_param(power_save_controller, bool, 0644); |
Takashi Iwai | dee1b66 | 2007-08-13 16:10:30 +0200 | [diff] [blame] | 140 | MODULE_PARM_DESC(power_save_controller, "Reset controller in power save mode."); |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 141 | #endif /* CONFIG_PM */ |
Takashi Iwai | dee1b66 | 2007-08-13 16:10:30 +0200 | [diff] [blame] | 142 | |
Takashi Iwai | 7bfe059 | 2012-01-23 17:53:39 +0100 | [diff] [blame] | 143 | static int align_buffer_size = -1; |
| 144 | module_param(align_buffer_size, bint, 0644); |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 145 | MODULE_PARM_DESC(align_buffer_size, |
| 146 | "Force buffer and period sizes to be multiple of 128 bytes."); |
| 147 | |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 148 | #ifdef CONFIG_X86 |
| 149 | static bool hda_snoop = true; |
| 150 | module_param_named(snoop, hda_snoop, bool, 0444); |
| 151 | MODULE_PARM_DESC(snoop, "Enable/disable snooping"); |
| 152 | #define azx_snoop(chip) (chip)->snoop |
| 153 | #else |
| 154 | #define hda_snoop true |
| 155 | #define azx_snoop(chip) true |
| 156 | #endif |
| 157 | |
| 158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | MODULE_LICENSE("GPL"); |
| 160 | MODULE_SUPPORTED_DEVICE("{{Intel, ICH6}," |
| 161 | "{Intel, ICH6M}," |
Jason Gaston | 2f1b381 | 2005-05-01 08:58:50 -0700 | [diff] [blame] | 162 | "{Intel, ICH7}," |
Frederick Li | f5d40b3 | 2005-05-12 14:55:20 +0200 | [diff] [blame] | 163 | "{Intel, ESB2}," |
Jason Gaston | d298139 | 2006-01-10 11:07:37 +0100 | [diff] [blame] | 164 | "{Intel, ICH8}," |
Jason Gaston | f9cc8a8 | 2006-11-22 11:53:52 +0100 | [diff] [blame] | 165 | "{Intel, ICH9}," |
Jason Gaston | c34f5a0 | 2008-01-29 12:38:49 +0100 | [diff] [blame] | 166 | "{Intel, ICH10}," |
Seth Heasley | b29c236 | 2008-08-08 15:56:39 -0700 | [diff] [blame] | 167 | "{Intel, PCH}," |
Seth Heasley | d2f2fcd | 2010-01-12 17:03:35 -0800 | [diff] [blame] | 168 | "{Intel, CPT}," |
Seth Heasley | d2edeb7 | 2011-04-20 10:59:57 -0700 | [diff] [blame] | 169 | "{Intel, PPT}," |
Seth Heasley | 8bc039a | 2012-01-23 16:24:31 -0800 | [diff] [blame] | 170 | "{Intel, LPT}," |
James Ralston | 144dad9 | 2012-08-09 09:38:59 -0700 | [diff] [blame] | 171 | "{Intel, LPT_LP}," |
James Ralston | 4eeca49 | 2013-11-04 09:27:45 -0800 | [diff] [blame] | 172 | "{Intel, WPT_LP}," |
Wang Xingchao | e926f2c | 2012-06-13 10:23:51 +0800 | [diff] [blame] | 173 | "{Intel, HPT}," |
Seth Heasley | cea310e | 2010-09-10 16:29:56 -0700 | [diff] [blame] | 174 | "{Intel, PBG}," |
Tobin Davis | 4979bca | 2008-01-30 08:13:55 +0100 | [diff] [blame] | 175 | "{Intel, SCH}," |
Takashi Iwai | fc20a56 | 2005-05-12 15:00:41 +0200 | [diff] [blame] | 176 | "{ATI, SB450}," |
Felix Kuehling | 89be83f | 2006-03-31 12:33:59 +0200 | [diff] [blame] | 177 | "{ATI, SB600}," |
Felix Kuehling | 778b6e1 | 2006-05-17 11:22:21 +0200 | [diff] [blame] | 178 | "{ATI, RS600}," |
Felix Kuehling | 5b15c95 | 2006-10-16 12:49:47 +0200 | [diff] [blame] | 179 | "{ATI, RS690}," |
Wolke Liu | e6db111 | 2007-04-27 12:20:57 +0200 | [diff] [blame] | 180 | "{ATI, RS780}," |
| 181 | "{ATI, R600}," |
Herton Ronaldo Krzesinski | 2797f72 | 2007-11-05 18:21:56 +0100 | [diff] [blame] | 182 | "{ATI, RV630}," |
| 183 | "{ATI, RV610}," |
Wolke Liu | 27da183 | 2007-11-16 11:06:30 +0100 | [diff] [blame] | 184 | "{ATI, RV670}," |
| 185 | "{ATI, RV635}," |
| 186 | "{ATI, RV620}," |
| 187 | "{ATI, RV770}," |
Takashi Iwai | fc20a56 | 2005-05-12 15:00:41 +0200 | [diff] [blame] | 188 | "{VIA, VT8251}," |
Takashi Iwai | 4767231 | 2005-08-12 16:44:04 +0200 | [diff] [blame] | 189 | "{VIA, VT8237A}," |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 190 | "{SiS, SIS966}," |
| 191 | "{ULI, M5461}}"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | MODULE_DESCRIPTION("Intel HDA driver"); |
| 193 | |
Takashi Iwai | 4abc1cc | 2009-05-19 12:16:46 +0200 | [diff] [blame] | 194 | #ifdef CONFIG_SND_VERBOSE_PRINTK |
| 195 | #define SFX /* nop */ |
| 196 | #else |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 197 | #define SFX "hda-intel " |
Takashi Iwai | 4abc1cc | 2009-05-19 12:16:46 +0200 | [diff] [blame] | 198 | #endif |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 199 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 200 | #if defined(CONFIG_PM) && defined(CONFIG_VGA_SWITCHEROO) |
| 201 | #ifdef CONFIG_SND_HDA_CODEC_HDMI |
| 202 | #define SUPPORT_VGA_SWITCHEROO |
| 203 | #endif |
| 204 | #endif |
| 205 | |
| 206 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 207 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | * registers |
| 209 | */ |
| 210 | #define ICH6_REG_GCAP 0x00 |
Takashi Iwai | b21fadb | 2009-05-28 12:26:15 +0200 | [diff] [blame] | 211 | #define ICH6_GCAP_64OK (1 << 0) /* 64bit address support */ |
| 212 | #define ICH6_GCAP_NSDO (3 << 1) /* # of serial data out signals */ |
| 213 | #define ICH6_GCAP_BSS (31 << 3) /* # of bidirectional streams */ |
| 214 | #define ICH6_GCAP_ISS (15 << 8) /* # of input streams */ |
| 215 | #define ICH6_GCAP_OSS (15 << 12) /* # of output streams */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | #define ICH6_REG_VMIN 0x02 |
| 217 | #define ICH6_REG_VMAJ 0x03 |
| 218 | #define ICH6_REG_OUTPAY 0x04 |
| 219 | #define ICH6_REG_INPAY 0x06 |
| 220 | #define ICH6_REG_GCTL 0x08 |
Takashi Iwai | 8a933ec | 2009-05-31 09:28:12 +0200 | [diff] [blame] | 221 | #define ICH6_GCTL_RESET (1 << 0) /* controller reset */ |
Takashi Iwai | b21fadb | 2009-05-28 12:26:15 +0200 | [diff] [blame] | 222 | #define ICH6_GCTL_FCNTRL (1 << 1) /* flush control */ |
| 223 | #define ICH6_GCTL_UNSOL (1 << 8) /* accept unsol. response enable */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | #define ICH6_REG_WAKEEN 0x0c |
| 225 | #define ICH6_REG_STATESTS 0x0e |
| 226 | #define ICH6_REG_GSTS 0x10 |
Takashi Iwai | b21fadb | 2009-05-28 12:26:15 +0200 | [diff] [blame] | 227 | #define ICH6_GSTS_FSTS (1 << 1) /* flush status */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | #define ICH6_REG_INTCTL 0x20 |
| 229 | #define ICH6_REG_INTSTS 0x24 |
Jaroslav Kysela | e546372 | 2010-05-11 10:21:46 +0200 | [diff] [blame] | 230 | #define ICH6_REG_WALLCLK 0x30 /* 24Mhz source */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 231 | #define ICH6_REG_OLD_SSYNC 0x34 /* SSYNC for old ICH */ |
| 232 | #define ICH6_REG_SSYNC 0x38 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | #define ICH6_REG_CORBLBASE 0x40 |
| 234 | #define ICH6_REG_CORBUBASE 0x44 |
| 235 | #define ICH6_REG_CORBWP 0x48 |
Takashi Iwai | b21fadb | 2009-05-28 12:26:15 +0200 | [diff] [blame] | 236 | #define ICH6_REG_CORBRP 0x4a |
| 237 | #define ICH6_CORBRP_RST (1 << 15) /* read pointer reset */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | #define ICH6_REG_CORBCTL 0x4c |
Takashi Iwai | b21fadb | 2009-05-28 12:26:15 +0200 | [diff] [blame] | 239 | #define ICH6_CORBCTL_RUN (1 << 1) /* enable DMA */ |
| 240 | #define ICH6_CORBCTL_CMEIE (1 << 0) /* enable memory error irq */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | #define ICH6_REG_CORBSTS 0x4d |
Takashi Iwai | b21fadb | 2009-05-28 12:26:15 +0200 | [diff] [blame] | 242 | #define ICH6_CORBSTS_CMEI (1 << 0) /* memory error indication */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | #define ICH6_REG_CORBSIZE 0x4e |
| 244 | |
| 245 | #define ICH6_REG_RIRBLBASE 0x50 |
| 246 | #define ICH6_REG_RIRBUBASE 0x54 |
| 247 | #define ICH6_REG_RIRBWP 0x58 |
Takashi Iwai | b21fadb | 2009-05-28 12:26:15 +0200 | [diff] [blame] | 248 | #define ICH6_RIRBWP_RST (1 << 15) /* write pointer reset */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | #define ICH6_REG_RINTCNT 0x5a |
| 250 | #define ICH6_REG_RIRBCTL 0x5c |
Takashi Iwai | b21fadb | 2009-05-28 12:26:15 +0200 | [diff] [blame] | 251 | #define ICH6_RBCTL_IRQ_EN (1 << 0) /* enable IRQ */ |
| 252 | #define ICH6_RBCTL_DMA_EN (1 << 1) /* enable DMA */ |
| 253 | #define ICH6_RBCTL_OVERRUN_EN (1 << 2) /* enable overrun irq */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | #define ICH6_REG_RIRBSTS 0x5d |
Takashi Iwai | b21fadb | 2009-05-28 12:26:15 +0200 | [diff] [blame] | 255 | #define ICH6_RBSTS_IRQ (1 << 0) /* response irq */ |
| 256 | #define ICH6_RBSTS_OVERRUN (1 << 2) /* overrun irq */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | #define ICH6_REG_RIRBSIZE 0x5e |
| 258 | |
| 259 | #define ICH6_REG_IC 0x60 |
| 260 | #define ICH6_REG_IR 0x64 |
| 261 | #define ICH6_REG_IRS 0x68 |
| 262 | #define ICH6_IRS_VALID (1<<1) |
| 263 | #define ICH6_IRS_BUSY (1<<0) |
| 264 | |
| 265 | #define ICH6_REG_DPLBASE 0x70 |
| 266 | #define ICH6_REG_DPUBASE 0x74 |
| 267 | #define ICH6_DPLBASE_ENABLE 0x1 /* Enable position buffer */ |
| 268 | |
| 269 | /* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */ |
| 270 | enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 }; |
| 271 | |
| 272 | /* stream register offsets from stream base */ |
| 273 | #define ICH6_REG_SD_CTL 0x00 |
| 274 | #define ICH6_REG_SD_STS 0x03 |
| 275 | #define ICH6_REG_SD_LPIB 0x04 |
| 276 | #define ICH6_REG_SD_CBL 0x08 |
| 277 | #define ICH6_REG_SD_LVI 0x0c |
| 278 | #define ICH6_REG_SD_FIFOW 0x0e |
| 279 | #define ICH6_REG_SD_FIFOSIZE 0x10 |
| 280 | #define ICH6_REG_SD_FORMAT 0x12 |
| 281 | #define ICH6_REG_SD_BDLPL 0x18 |
| 282 | #define ICH6_REG_SD_BDLPU 0x1c |
| 283 | |
| 284 | /* PCI space */ |
| 285 | #define ICH6_PCIREG_TCSEL 0x44 |
| 286 | |
| 287 | /* |
| 288 | * other constants |
| 289 | */ |
| 290 | |
| 291 | /* max number of SDs */ |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 292 | /* ICH, ATI and VIA have 4 playback and 4 capture */ |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 293 | #define ICH6_NUM_CAPTURE 4 |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 294 | #define ICH6_NUM_PLAYBACK 4 |
| 295 | |
| 296 | /* ULI has 6 playback and 5 capture */ |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 297 | #define ULI_NUM_CAPTURE 5 |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 298 | #define ULI_NUM_PLAYBACK 6 |
| 299 | |
Felix Kuehling | 778b6e1 | 2006-05-17 11:22:21 +0200 | [diff] [blame] | 300 | /* ATI HDMI has 1 playback and 0 capture */ |
Felix Kuehling | 778b6e1 | 2006-05-17 11:22:21 +0200 | [diff] [blame] | 301 | #define ATIHDMI_NUM_CAPTURE 0 |
Felix Kuehling | 778b6e1 | 2006-05-17 11:22:21 +0200 | [diff] [blame] | 302 | #define ATIHDMI_NUM_PLAYBACK 1 |
| 303 | |
Kailang Yang | f269002 | 2008-05-27 11:44:55 +0200 | [diff] [blame] | 304 | /* TERA has 4 playback and 3 capture */ |
| 305 | #define TERA_NUM_CAPTURE 3 |
| 306 | #define TERA_NUM_PLAYBACK 4 |
| 307 | |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 308 | /* this number is statically defined for simplicity */ |
| 309 | #define MAX_AZX_DEV 16 |
| 310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | /* max number of fragments - we may use more if allocating more pages for BDL */ |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 312 | #define BDL_SIZE 4096 |
| 313 | #define AZX_MAX_BDL_ENTRIES (BDL_SIZE / 16) |
| 314 | #define AZX_MAX_FRAG 32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | /* max buffer size - no h/w limit, you can increase as you like */ |
| 316 | #define AZX_MAX_BUF_SIZE (1024*1024*1024) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | |
| 318 | /* RIRB int mask: overrun[2], response[0] */ |
| 319 | #define RIRB_INT_RESPONSE 0x01 |
| 320 | #define RIRB_INT_OVERRUN 0x04 |
| 321 | #define RIRB_INT_MASK 0x05 |
| 322 | |
Takashi Iwai | 2f5983f | 2008-09-03 16:00:44 +0200 | [diff] [blame] | 323 | /* STATESTS int mask: S3,SD2,SD1,SD0 */ |
Wei Ni | 7445dfc | 2010-03-03 15:05:53 +0800 | [diff] [blame] | 324 | #define AZX_MAX_CODECS 8 |
| 325 | #define AZX_DEFAULT_CODECS 4 |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 326 | #define STATESTS_INT_MASK ((1 << AZX_MAX_CODECS) - 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | |
| 328 | /* SD_CTL bits */ |
| 329 | #define SD_CTL_STREAM_RESET 0x01 /* stream reset bit */ |
| 330 | #define SD_CTL_DMA_START 0x02 /* stream DMA start bit */ |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 331 | #define SD_CTL_STRIPE (3 << 16) /* stripe control */ |
| 332 | #define SD_CTL_TRAFFIC_PRIO (1 << 18) /* traffic priority */ |
| 333 | #define SD_CTL_DIR (1 << 19) /* bi-directional stream */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | #define SD_CTL_STREAM_TAG_MASK (0xf << 20) |
| 335 | #define SD_CTL_STREAM_TAG_SHIFT 20 |
| 336 | |
| 337 | /* SD_CTL and SD_STS */ |
| 338 | #define SD_INT_DESC_ERR 0x10 /* descriptor error interrupt */ |
| 339 | #define SD_INT_FIFO_ERR 0x08 /* FIFO error interrupt */ |
| 340 | #define SD_INT_COMPLETE 0x04 /* completion interrupt */ |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 341 | #define SD_INT_MASK (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|\ |
| 342 | SD_INT_COMPLETE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
| 344 | /* SD_STS */ |
| 345 | #define SD_STS_FIFO_READY 0x20 /* FIFO ready */ |
| 346 | |
| 347 | /* INTCTL and INTSTS */ |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 348 | #define ICH6_INT_ALL_STREAM 0xff /* all stream interrupts */ |
| 349 | #define ICH6_INT_CTRL_EN 0x40000000 /* controller interrupt enable bit */ |
| 350 | #define ICH6_INT_GLOBAL_EN 0x80000000 /* global interrupt enable bit */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | /* below are so far hardcoded - should read registers in future */ |
| 353 | #define ICH6_MAX_CORB_ENTRIES 256 |
| 354 | #define ICH6_MAX_RIRB_ENTRIES 256 |
| 355 | |
Takashi Iwai | c74db86 | 2005-05-12 14:26:27 +0200 | [diff] [blame] | 356 | /* position fix mode */ |
| 357 | enum { |
Takashi Iwai | 0be3b5d | 2005-09-05 17:11:40 +0200 | [diff] [blame] | 358 | POS_FIX_AUTO, |
Takashi Iwai | d2e1c97 | 2008-06-10 17:53:34 +0200 | [diff] [blame] | 359 | POS_FIX_LPIB, |
Takashi Iwai | 0be3b5d | 2005-09-05 17:11:40 +0200 | [diff] [blame] | 360 | POS_FIX_POSBUF, |
David Henningsson | 4cb3631 | 2010-09-30 10:12:50 +0200 | [diff] [blame] | 361 | POS_FIX_VIACOMBO, |
Takashi Iwai | a6f2fd5 | 2012-02-28 11:58:40 +0100 | [diff] [blame] | 362 | POS_FIX_COMBO, |
Takashi Iwai | c74db86 | 2005-05-12 14:26:27 +0200 | [diff] [blame] | 363 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
Frederick Li | f5d40b3 | 2005-05-12 14:55:20 +0200 | [diff] [blame] | 365 | /* Defines for ATI HD Audio support in SB450 south bridge */ |
Frederick Li | f5d40b3 | 2005-05-12 14:55:20 +0200 | [diff] [blame] | 366 | #define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42 |
| 367 | #define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02 |
| 368 | |
Vinod G | da3fca2 | 2005-09-13 18:49:12 +0200 | [diff] [blame] | 369 | /* Defines for Nvidia HDA support */ |
| 370 | #define NVIDIA_HDA_TRANSREG_ADDR 0x4e |
| 371 | #define NVIDIA_HDA_ENABLE_COHBITS 0x0f |
Peer Chen | 320dcc3 | 2008-08-20 16:43:24 -0700 | [diff] [blame] | 372 | #define NVIDIA_HDA_ISTRM_COH 0x4d |
| 373 | #define NVIDIA_HDA_OSTRM_COH 0x4c |
| 374 | #define NVIDIA_HDA_ENABLE_COHBIT 0x01 |
Frederick Li | f5d40b3 | 2005-05-12 14:55:20 +0200 | [diff] [blame] | 375 | |
Takashi Iwai | 90a5ad5 | 2008-02-22 18:36:22 +0100 | [diff] [blame] | 376 | /* Defines for Intel SCH HDA snoop control */ |
| 377 | #define INTEL_SCH_HDA_DEVC 0x78 |
| 378 | #define INTEL_SCH_HDA_DEVC_NOSNOOP (0x1<<11) |
| 379 | |
Joseph Chan | 0e15347 | 2008-08-26 14:38:03 +0200 | [diff] [blame] | 380 | /* Define IN stream 0 FIFO size offset in VIA controller */ |
| 381 | #define VIA_IN_STREAM0_FIFO_SIZE_OFFSET 0x90 |
| 382 | /* Define VIA HD Audio Device ID*/ |
| 383 | #define VIA_HDAC_DEVICE_ID 0x3288 |
| 384 | |
Yang, Libin | c4da29c | 2008-11-13 11:07:07 +0100 | [diff] [blame] | 385 | /* HD Audio class code */ |
| 386 | #define PCI_CLASS_MULTIMEDIA_HD_AUDIO 0x0403 |
Takashi Iwai | 90a5ad5 | 2008-02-22 18:36:22 +0100 | [diff] [blame] | 387 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | */ |
| 390 | |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 391 | struct azx_dev { |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 392 | struct snd_dma_buffer bdl; /* BDL buffer */ |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 393 | u32 *posbuf; /* position buffer pointer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 395 | unsigned int bufsize; /* size of the play buffer in bytes */ |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 396 | unsigned int period_bytes; /* size of the period in bytes */ |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 397 | unsigned int frags; /* number for period in the play buffer */ |
| 398 | unsigned int fifo_size; /* FIFO size */ |
Jaroslav Kysela | e546372 | 2010-05-11 10:21:46 +0200 | [diff] [blame] | 399 | unsigned long start_wallclk; /* start + minimum wallclk */ |
| 400 | unsigned long period_wallclk; /* wallclk for period */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 402 | void __iomem *sd_addr; /* stream descriptor pointer */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 404 | u32 sd_int_sta_mask; /* stream int status mask */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | |
| 406 | /* pcm support */ |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 407 | struct snd_pcm_substream *substream; /* assigned substream, |
| 408 | * set in PCM open |
| 409 | */ |
| 410 | unsigned int format_val; /* format value to be set in the |
| 411 | * controller and the codec |
| 412 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | unsigned char stream_tag; /* assigned stream */ |
| 414 | unsigned char index; /* stream index */ |
Takashi Iwai | d5cf991 | 2011-10-06 10:07:58 +0200 | [diff] [blame] | 415 | int assigned_key; /* last device# key assigned to */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 417 | unsigned int opened :1; |
| 418 | unsigned int running :1; |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 419 | unsigned int irq_pending :1; |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 420 | unsigned int prepared:1; |
| 421 | unsigned int locked:1; |
Joseph Chan | 0e15347 | 2008-08-26 14:38:03 +0200 | [diff] [blame] | 422 | /* |
| 423 | * For VIA: |
| 424 | * A flag to ensure DMA position is 0 |
| 425 | * when link position is not greater than FIFO size |
| 426 | */ |
| 427 | unsigned int insufficient :1; |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 428 | unsigned int wc_marked:1; |
Takashi Iwai | 915bf29 | 2012-09-11 15:19:10 +0200 | [diff] [blame] | 429 | unsigned int no_period_wakeup:1; |
Pierre-Louis Bossart | 5d890f5 | 2012-10-22 16:42:16 -0500 | [diff] [blame] | 430 | |
| 431 | struct timecounter azx_tc; |
| 432 | struct cyclecounter azx_cc; |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 433 | |
| 434 | #ifdef CONFIG_SND_HDA_DSP_LOADER |
| 435 | struct mutex dsp_mutex; |
| 436 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | }; |
| 438 | |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 439 | /* DSP lock helpers */ |
| 440 | #ifdef CONFIG_SND_HDA_DSP_LOADER |
| 441 | #define dsp_lock_init(dev) mutex_init(&(dev)->dsp_mutex) |
| 442 | #define dsp_lock(dev) mutex_lock(&(dev)->dsp_mutex) |
| 443 | #define dsp_unlock(dev) mutex_unlock(&(dev)->dsp_mutex) |
| 444 | #define dsp_is_locked(dev) ((dev)->locked) |
| 445 | #else |
| 446 | #define dsp_lock_init(dev) do {} while (0) |
| 447 | #define dsp_lock(dev) do {} while (0) |
| 448 | #define dsp_unlock(dev) do {} while (0) |
| 449 | #define dsp_is_locked(dev) 0 |
| 450 | #endif |
| 451 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | /* CORB/RIRB */ |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 453 | struct azx_rb { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | u32 *buf; /* CORB/RIRB buffer |
| 455 | * Each CORB entry is 4byte, RIRB is 8byte |
| 456 | */ |
| 457 | dma_addr_t addr; /* physical address of CORB/RIRB buffer */ |
| 458 | /* for RIRB */ |
| 459 | unsigned short rp, wp; /* read/write pointers */ |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 460 | int cmds[AZX_MAX_CODECS]; /* number of pending requests */ |
| 461 | u32 res[AZX_MAX_CODECS]; /* last read value */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | }; |
| 463 | |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 464 | struct azx_pcm { |
| 465 | struct azx *chip; |
| 466 | struct snd_pcm *pcm; |
| 467 | struct hda_codec *codec; |
| 468 | struct hda_pcm_stream *hinfo[2]; |
| 469 | struct list_head list; |
| 470 | }; |
| 471 | |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 472 | struct azx { |
| 473 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | struct pci_dev *pci; |
Takashi Iwai | 555e219 | 2008-06-10 17:53:34 +0200 | [diff] [blame] | 475 | int dev_index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 477 | /* chip type specific */ |
| 478 | int driver_type; |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 479 | unsigned int driver_caps; |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 480 | int playback_streams; |
| 481 | int playback_index_offset; |
| 482 | int capture_streams; |
| 483 | int capture_index_offset; |
| 484 | int num_streams; |
| 485 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | /* pci resources */ |
| 487 | unsigned long addr; |
| 488 | void __iomem *remap_addr; |
| 489 | int irq; |
| 490 | |
| 491 | /* locks */ |
| 492 | spinlock_t reg_lock; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 493 | struct mutex open_mutex; |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 494 | struct completion probe_wait; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 496 | /* streams (x num_streams) */ |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 497 | struct azx_dev *azx_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | |
| 499 | /* PCM */ |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 500 | struct list_head pcm_list; /* azx_pcm list */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | |
| 502 | /* HD codec */ |
| 503 | unsigned short codec_mask; |
Takashi Iwai | f1eaaee | 2009-02-13 08:16:55 +0100 | [diff] [blame] | 504 | int codec_probe_mask; /* copied from probe_mask option */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | struct hda_bus *bus; |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 506 | unsigned int beep_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | |
| 508 | /* CORB/RIRB */ |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 509 | struct azx_rb corb; |
| 510 | struct azx_rb rirb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 512 | /* CORB/RIRB and position buffers */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | struct snd_dma_buffer rb; |
| 514 | struct snd_dma_buffer posbuf; |
Takashi Iwai | c74db86 | 2005-05-12 14:26:27 +0200 | [diff] [blame] | 515 | |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 516 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
| 517 | const struct firmware *fw; |
| 518 | #endif |
| 519 | |
Takashi Iwai | c74db86 | 2005-05-12 14:26:27 +0200 | [diff] [blame] | 520 | /* flags */ |
Shahin Ghazinouri | beaffc3 | 2010-05-11 08:19:55 +0200 | [diff] [blame] | 521 | int position_fix[2]; /* for both playback/capture streams */ |
Maxim Levitsky | 1eb6dc7 | 2010-02-04 22:21:47 +0200 | [diff] [blame] | 522 | int poll_count; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 523 | unsigned int running :1; |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 524 | unsigned int initialized :1; |
| 525 | unsigned int single_cmd :1; |
| 526 | unsigned int polling_mode :1; |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 527 | unsigned int msi :1; |
Takashi Iwai | a6a950a | 2008-06-10 17:53:35 +0200 | [diff] [blame] | 528 | unsigned int irq_pending_warned :1; |
Takashi Iwai | 6ce4a3b | 2008-11-06 17:11:10 +0100 | [diff] [blame] | 529 | unsigned int probing :1; /* codec probing phase */ |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 530 | unsigned int snoop:1; |
Takashi Iwai | 52409aa | 2012-01-23 17:10:24 +0100 | [diff] [blame] | 531 | unsigned int align_buffer_size:1; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 532 | unsigned int region_requested:1; |
| 533 | |
| 534 | /* VGA-switcheroo setup */ |
| 535 | unsigned int use_vga_switcheroo:1; |
Takashi Iwai | 128960a | 2012-10-12 17:28:18 +0200 | [diff] [blame] | 536 | unsigned int vga_switcheroo_registered:1; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 537 | unsigned int init_failed:1; /* delayed init failed */ |
| 538 | unsigned int disabled:1; /* disabled by VGA-switcher */ |
Takashi Iwai | 43bbb6c | 2007-07-06 20:22:05 +0200 | [diff] [blame] | 539 | |
| 540 | /* for debugging */ |
Wu Fengguang | feb2734 | 2009-08-01 19:17:14 +0800 | [diff] [blame] | 541 | unsigned int last_cmd[AZX_MAX_CODECS]; |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 542 | |
| 543 | /* for pending irqs */ |
| 544 | struct work_struct irq_pending_work; |
Takashi Iwai | 0cbf009 | 2008-10-29 16:18:25 +0100 | [diff] [blame] | 545 | |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 546 | #ifdef CONFIG_SND_HDA_I915 |
| 547 | struct work_struct probe_work; |
| 548 | #endif |
| 549 | |
Takashi Iwai | 0cbf009 | 2008-10-29 16:18:25 +0100 | [diff] [blame] | 550 | /* reboot notifier (for mysterious hangup problem at power-down) */ |
| 551 | struct notifier_block reboot_notifier; |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 552 | |
| 553 | /* card list (for power_save trigger) */ |
| 554 | struct list_head list; |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 555 | |
| 556 | #ifdef CONFIG_SND_HDA_DSP_LOADER |
| 557 | struct azx_dev saved_azx_dev; |
| 558 | #endif |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 559 | |
| 560 | /* secondary power domain for hdmi audio under vga device */ |
| 561 | struct dev_pm_domain hdmi_pm_domain; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | }; |
| 563 | |
Takashi Iwai | 1a8506d | 2012-10-16 15:10:08 +0200 | [diff] [blame] | 564 | #define CREATE_TRACE_POINTS |
| 565 | #include "hda_intel_trace.h" |
| 566 | |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 567 | /* driver types */ |
| 568 | enum { |
| 569 | AZX_DRIVER_ICH, |
Seth Heasley | 32679f9 | 2010-02-22 17:31:09 -0800 | [diff] [blame] | 570 | AZX_DRIVER_PCH, |
Tobin Davis | 4979bca | 2008-01-30 08:13:55 +0100 | [diff] [blame] | 571 | AZX_DRIVER_SCH, |
Takashi Iwai | fab1285 | 2013-11-05 17:54:05 +0100 | [diff] [blame^] | 572 | AZX_DRIVER_HDMI, |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 573 | AZX_DRIVER_ATI, |
Felix Kuehling | 778b6e1 | 2006-05-17 11:22:21 +0200 | [diff] [blame] | 574 | AZX_DRIVER_ATIHDMI, |
Andiry Xu | 1815b34 | 2011-12-14 16:10:27 +0800 | [diff] [blame] | 575 | AZX_DRIVER_ATIHDMI_NS, |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 576 | AZX_DRIVER_VIA, |
| 577 | AZX_DRIVER_SIS, |
| 578 | AZX_DRIVER_ULI, |
Vinod G | da3fca2 | 2005-09-13 18:49:12 +0200 | [diff] [blame] | 579 | AZX_DRIVER_NVIDIA, |
Kailang Yang | f269002 | 2008-05-27 11:44:55 +0200 | [diff] [blame] | 580 | AZX_DRIVER_TERA, |
Takashi Iwai | 14d34f1 | 2010-10-21 09:03:25 +0200 | [diff] [blame] | 581 | AZX_DRIVER_CTX, |
Takashi Iwai | 5ae763b | 2012-05-08 10:34:08 +0200 | [diff] [blame] | 582 | AZX_DRIVER_CTHDA, |
Yang, Libin | c4da29c | 2008-11-13 11:07:07 +0100 | [diff] [blame] | 583 | AZX_DRIVER_GENERIC, |
Takashi Iwai | 2f5983f | 2008-09-03 16:00:44 +0200 | [diff] [blame] | 584 | AZX_NUM_DRIVERS, /* keep this as last entry */ |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 585 | }; |
| 586 | |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 587 | /* driver quirks (capabilities) */ |
| 588 | /* bits 0-7 are used for indicating driver type */ |
| 589 | #define AZX_DCAPS_NO_TCSEL (1 << 8) /* No Intel TCSEL bit */ |
| 590 | #define AZX_DCAPS_NO_MSI (1 << 9) /* No MSI support */ |
| 591 | #define AZX_DCAPS_ATI_SNOOP (1 << 10) /* ATI snoop enable */ |
| 592 | #define AZX_DCAPS_NVIDIA_SNOOP (1 << 11) /* Nvidia snoop enable */ |
| 593 | #define AZX_DCAPS_SCH_SNOOP (1 << 12) /* SCH/PCH snoop enable */ |
| 594 | #define AZX_DCAPS_RIRB_DELAY (1 << 13) /* Long delay in read loop */ |
| 595 | #define AZX_DCAPS_RIRB_PRE_DELAY (1 << 14) /* Put a delay before read */ |
| 596 | #define AZX_DCAPS_CTX_WORKAROUND (1 << 15) /* X-Fi workaround */ |
| 597 | #define AZX_DCAPS_POSFIX_LPIB (1 << 16) /* Use LPIB as default */ |
| 598 | #define AZX_DCAPS_POSFIX_VIA (1 << 17) /* Use VIACOMBO as default */ |
| 599 | #define AZX_DCAPS_NO_64BIT (1 << 18) /* No 64bit address */ |
| 600 | #define AZX_DCAPS_SYNC_WRITE (1 << 19) /* sync each cmd write */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 601 | #define AZX_DCAPS_OLD_SSYNC (1 << 20) /* Old SSYNC reg for ICH */ |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 602 | #define AZX_DCAPS_BUFSIZE (1 << 21) /* no buffer size alignment */ |
Takashi Iwai | 7bfe059 | 2012-01-23 17:53:39 +0100 | [diff] [blame] | 603 | #define AZX_DCAPS_ALIGN_BUFSIZE (1 << 22) /* buffer size alignment */ |
Takashi Iwai | 5ae763b | 2012-05-08 10:34:08 +0200 | [diff] [blame] | 604 | #define AZX_DCAPS_4K_BDLE_BOUNDARY (1 << 23) /* BDLE in 4k boundary */ |
Pierre-Louis Bossart | 90accc5 | 2012-09-21 18:39:06 -0500 | [diff] [blame] | 605 | #define AZX_DCAPS_COUNT_LPIB_DELAY (1 << 25) /* Take LPIB as delay */ |
Takashi Iwai | 2ea3c6a | 2012-11-19 20:03:37 +0100 | [diff] [blame] | 606 | #define AZX_DCAPS_PM_RUNTIME (1 << 26) /* runtime PM support */ |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 607 | #define AZX_DCAPS_I915_POWERWELL (1 << 27) /* HSW i915 power well support */ |
Takashi Iwai | 2ea3c6a | 2012-11-19 20:03:37 +0100 | [diff] [blame] | 608 | |
| 609 | /* quirks for Intel PCH */ |
Takashi Iwai | d7dab4d | 2013-01-08 13:51:30 +0100 | [diff] [blame] | 610 | #define AZX_DCAPS_INTEL_PCH_NOPM \ |
Takashi Iwai | 2ea3c6a | 2012-11-19 20:03:37 +0100 | [diff] [blame] | 611 | (AZX_DCAPS_SCH_SNOOP | AZX_DCAPS_BUFSIZE | \ |
Takashi Iwai | d7dab4d | 2013-01-08 13:51:30 +0100 | [diff] [blame] | 612 | AZX_DCAPS_COUNT_LPIB_DELAY) |
| 613 | |
| 614 | #define AZX_DCAPS_INTEL_PCH \ |
| 615 | (AZX_DCAPS_INTEL_PCH_NOPM | AZX_DCAPS_PM_RUNTIME) |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 616 | |
Takashi Iwai | 33499a1 | 2013-11-05 17:34:46 +0100 | [diff] [blame] | 617 | #define AZX_DCAPS_INTEL_HASWELL \ |
| 618 | (AZX_DCAPS_SCH_SNOOP | AZX_DCAPS_ALIGN_BUFSIZE | \ |
| 619 | AZX_DCAPS_COUNT_LPIB_DELAY | AZX_DCAPS_PM_RUNTIME | \ |
| 620 | AZX_DCAPS_I915_POWERWELL) |
| 621 | |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 622 | /* quirks for ATI SB / AMD Hudson */ |
| 623 | #define AZX_DCAPS_PRESET_ATI_SB \ |
| 624 | (AZX_DCAPS_ATI_SNOOP | AZX_DCAPS_NO_TCSEL | \ |
| 625 | AZX_DCAPS_SYNC_WRITE | AZX_DCAPS_POSFIX_LPIB) |
| 626 | |
| 627 | /* quirks for ATI/AMD HDMI */ |
| 628 | #define AZX_DCAPS_PRESET_ATI_HDMI \ |
| 629 | (AZX_DCAPS_NO_TCSEL | AZX_DCAPS_SYNC_WRITE | AZX_DCAPS_POSFIX_LPIB) |
| 630 | |
| 631 | /* quirks for Nvidia */ |
| 632 | #define AZX_DCAPS_PRESET_NVIDIA \ |
Takashi Iwai | 7bfe059 | 2012-01-23 17:53:39 +0100 | [diff] [blame] | 633 | (AZX_DCAPS_NVIDIA_SNOOP | AZX_DCAPS_RIRB_DELAY | AZX_DCAPS_NO_MSI |\ |
Mike Travis | 49d9e77 | 2013-05-01 14:04:08 -0500 | [diff] [blame] | 634 | AZX_DCAPS_ALIGN_BUFSIZE | AZX_DCAPS_NO_64BIT) |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 635 | |
Takashi Iwai | 5ae763b | 2012-05-08 10:34:08 +0200 | [diff] [blame] | 636 | #define AZX_DCAPS_PRESET_CTHDA \ |
| 637 | (AZX_DCAPS_NO_MSI | AZX_DCAPS_POSFIX_LPIB | AZX_DCAPS_4K_BDLE_BOUNDARY) |
| 638 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 639 | /* |
| 640 | * VGA-switcher support |
| 641 | */ |
| 642 | #ifdef SUPPORT_VGA_SWITCHEROO |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 643 | #define use_vga_switcheroo(chip) ((chip)->use_vga_switcheroo) |
| 644 | #else |
| 645 | #define use_vga_switcheroo(chip) 0 |
| 646 | #endif |
| 647 | |
Takashi Iwai | 48c8b0e | 2012-12-07 07:40:35 +0100 | [diff] [blame] | 648 | static char *driver_short_names[] = { |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 649 | [AZX_DRIVER_ICH] = "HDA Intel", |
Seth Heasley | 32679f9 | 2010-02-22 17:31:09 -0800 | [diff] [blame] | 650 | [AZX_DRIVER_PCH] = "HDA Intel PCH", |
Tobin Davis | 4979bca | 2008-01-30 08:13:55 +0100 | [diff] [blame] | 651 | [AZX_DRIVER_SCH] = "HDA Intel MID", |
Takashi Iwai | fab1285 | 2013-11-05 17:54:05 +0100 | [diff] [blame^] | 652 | [AZX_DRIVER_HDMI] = "HDA Intel HDMI", |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 653 | [AZX_DRIVER_ATI] = "HDA ATI SB", |
Felix Kuehling | 778b6e1 | 2006-05-17 11:22:21 +0200 | [diff] [blame] | 654 | [AZX_DRIVER_ATIHDMI] = "HDA ATI HDMI", |
Andiry Xu | 1815b34 | 2011-12-14 16:10:27 +0800 | [diff] [blame] | 655 | [AZX_DRIVER_ATIHDMI_NS] = "HDA ATI HDMI", |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 656 | [AZX_DRIVER_VIA] = "HDA VIA VT82xx", |
| 657 | [AZX_DRIVER_SIS] = "HDA SIS966", |
Vinod G | da3fca2 | 2005-09-13 18:49:12 +0200 | [diff] [blame] | 658 | [AZX_DRIVER_ULI] = "HDA ULI M5461", |
| 659 | [AZX_DRIVER_NVIDIA] = "HDA NVidia", |
Kailang Yang | f269002 | 2008-05-27 11:44:55 +0200 | [diff] [blame] | 660 | [AZX_DRIVER_TERA] = "HDA Teradici", |
Takashi Iwai | 14d34f1 | 2010-10-21 09:03:25 +0200 | [diff] [blame] | 661 | [AZX_DRIVER_CTX] = "HDA Creative", |
Takashi Iwai | 5ae763b | 2012-05-08 10:34:08 +0200 | [diff] [blame] | 662 | [AZX_DRIVER_CTHDA] = "HDA Creative", |
Yang, Libin | c4da29c | 2008-11-13 11:07:07 +0100 | [diff] [blame] | 663 | [AZX_DRIVER_GENERIC] = "HD-Audio Generic", |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 664 | }; |
| 665 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | /* |
| 667 | * macros for easy use |
| 668 | */ |
| 669 | #define azx_writel(chip,reg,value) \ |
| 670 | writel(value, (chip)->remap_addr + ICH6_REG_##reg) |
| 671 | #define azx_readl(chip,reg) \ |
| 672 | readl((chip)->remap_addr + ICH6_REG_##reg) |
| 673 | #define azx_writew(chip,reg,value) \ |
| 674 | writew(value, (chip)->remap_addr + ICH6_REG_##reg) |
| 675 | #define azx_readw(chip,reg) \ |
| 676 | readw((chip)->remap_addr + ICH6_REG_##reg) |
| 677 | #define azx_writeb(chip,reg,value) \ |
| 678 | writeb(value, (chip)->remap_addr + ICH6_REG_##reg) |
| 679 | #define azx_readb(chip,reg) \ |
| 680 | readb((chip)->remap_addr + ICH6_REG_##reg) |
| 681 | |
| 682 | #define azx_sd_writel(dev,reg,value) \ |
| 683 | writel(value, (dev)->sd_addr + ICH6_REG_##reg) |
| 684 | #define azx_sd_readl(dev,reg) \ |
| 685 | readl((dev)->sd_addr + ICH6_REG_##reg) |
| 686 | #define azx_sd_writew(dev,reg,value) \ |
| 687 | writew(value, (dev)->sd_addr + ICH6_REG_##reg) |
| 688 | #define azx_sd_readw(dev,reg) \ |
| 689 | readw((dev)->sd_addr + ICH6_REG_##reg) |
| 690 | #define azx_sd_writeb(dev,reg,value) \ |
| 691 | writeb(value, (dev)->sd_addr + ICH6_REG_##reg) |
| 692 | #define azx_sd_readb(dev,reg) \ |
| 693 | readb((dev)->sd_addr + ICH6_REG_##reg) |
| 694 | |
| 695 | /* for pcm support */ |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 696 | #define get_azx_dev(substream) (substream->runtime->private_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 698 | #ifdef CONFIG_X86 |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 699 | static void __mark_pages_wc(struct azx *chip, struct snd_dma_buffer *dmab, bool on) |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 700 | { |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 701 | int pages; |
| 702 | |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 703 | if (azx_snoop(chip)) |
| 704 | return; |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 705 | if (!dmab || !dmab->area || !dmab->bytes) |
| 706 | return; |
| 707 | |
| 708 | #ifdef CONFIG_SND_DMA_SGBUF |
| 709 | if (dmab->dev.type == SNDRV_DMA_TYPE_DEV_SG) { |
| 710 | struct snd_sg_buf *sgbuf = dmab->private_data; |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 711 | if (on) |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 712 | set_pages_array_wc(sgbuf->page_table, sgbuf->pages); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 713 | else |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 714 | set_pages_array_wb(sgbuf->page_table, sgbuf->pages); |
| 715 | return; |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 716 | } |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 717 | #endif |
| 718 | |
| 719 | pages = (dmab->bytes + PAGE_SIZE - 1) >> PAGE_SHIFT; |
| 720 | if (on) |
| 721 | set_memory_wc((unsigned long)dmab->area, pages); |
| 722 | else |
| 723 | set_memory_wb((unsigned long)dmab->area, pages); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 724 | } |
| 725 | |
| 726 | static inline void mark_pages_wc(struct azx *chip, struct snd_dma_buffer *buf, |
| 727 | bool on) |
| 728 | { |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 729 | __mark_pages_wc(chip, buf, on); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 730 | } |
| 731 | static inline void mark_runtime_wc(struct azx *chip, struct azx_dev *azx_dev, |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 732 | struct snd_pcm_substream *substream, bool on) |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 733 | { |
| 734 | if (azx_dev->wc_marked != on) { |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 735 | __mark_pages_wc(chip, snd_pcm_get_dma_buf(substream), on); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 736 | azx_dev->wc_marked = on; |
| 737 | } |
| 738 | } |
| 739 | #else |
| 740 | /* NOP for other archs */ |
| 741 | static inline void mark_pages_wc(struct azx *chip, struct snd_dma_buffer *buf, |
| 742 | bool on) |
| 743 | { |
| 744 | } |
| 745 | static inline void mark_runtime_wc(struct azx *chip, struct azx_dev *azx_dev, |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 746 | struct snd_pcm_substream *substream, bool on) |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 747 | { |
| 748 | } |
| 749 | #endif |
| 750 | |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 751 | static int azx_acquire_irq(struct azx *chip, int do_disconnect); |
Maxim Levitsky | 1eb6dc7 | 2010-02-04 22:21:47 +0200 | [diff] [blame] | 752 | static int azx_send_cmd(struct hda_bus *bus, unsigned int val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | /* |
| 754 | * Interface for HD codec |
| 755 | */ |
| 756 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | /* |
| 758 | * CORB / RIRB interface |
| 759 | */ |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 760 | static int azx_alloc_cmd_io(struct azx *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | { |
| 762 | int err; |
| 763 | |
| 764 | /* single page (at least 4096 bytes) must suffice for both ringbuffes */ |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 765 | err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, |
| 766 | snd_dma_pci_data(chip->pci), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | PAGE_SIZE, &chip->rb); |
| 768 | if (err < 0) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 769 | snd_printk(KERN_ERR SFX "%s: cannot allocate CORB/RIRB\n", pci_name(chip->pci)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | return err; |
| 771 | } |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 772 | mark_pages_wc(chip, &chip->rb, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | return 0; |
| 774 | } |
| 775 | |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 776 | static void azx_init_cmd_io(struct azx *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | { |
Wu Fengguang | cdb1fbf | 2009-08-01 18:47:41 +0800 | [diff] [blame] | 778 | spin_lock_irq(&chip->reg_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | /* CORB set up */ |
| 780 | chip->corb.addr = chip->rb.addr; |
| 781 | chip->corb.buf = (u32 *)chip->rb.area; |
| 782 | azx_writel(chip, CORBLBASE, (u32)chip->corb.addr); |
Takashi Iwai | 766979e | 2008-06-13 20:53:56 +0200 | [diff] [blame] | 783 | azx_writel(chip, CORBUBASE, upper_32_bits(chip->corb.addr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 785 | /* set the corb size to 256 entries (ULI requires explicitly) */ |
| 786 | azx_writeb(chip, CORBSIZE, 0x02); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | /* set the corb write pointer to 0 */ |
| 788 | azx_writew(chip, CORBWP, 0); |
| 789 | /* reset the corb hw read pointer */ |
Takashi Iwai | b21fadb | 2009-05-28 12:26:15 +0200 | [diff] [blame] | 790 | azx_writew(chip, CORBRP, ICH6_CORBRP_RST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | /* enable corb dma */ |
Takashi Iwai | b21fadb | 2009-05-28 12:26:15 +0200 | [diff] [blame] | 792 | azx_writeb(chip, CORBCTL, ICH6_CORBCTL_RUN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | |
| 794 | /* RIRB set up */ |
| 795 | chip->rirb.addr = chip->rb.addr + 2048; |
| 796 | chip->rirb.buf = (u32 *)(chip->rb.area + 2048); |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 797 | chip->rirb.wp = chip->rirb.rp = 0; |
| 798 | memset(chip->rirb.cmds, 0, sizeof(chip->rirb.cmds)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | azx_writel(chip, RIRBLBASE, (u32)chip->rirb.addr); |
Takashi Iwai | 766979e | 2008-06-13 20:53:56 +0200 | [diff] [blame] | 800 | azx_writel(chip, RIRBUBASE, upper_32_bits(chip->rirb.addr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 802 | /* set the rirb size to 256 entries (ULI requires explicitly) */ |
| 803 | azx_writeb(chip, RIRBSIZE, 0x02); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | /* reset the rirb hw write pointer */ |
Takashi Iwai | b21fadb | 2009-05-28 12:26:15 +0200 | [diff] [blame] | 805 | azx_writew(chip, RIRBWP, ICH6_RIRBWP_RST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | /* set N=1, get RIRB response interrupt for new entry */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 807 | if (chip->driver_caps & AZX_DCAPS_CTX_WORKAROUND) |
Takashi Iwai | 14d34f1 | 2010-10-21 09:03:25 +0200 | [diff] [blame] | 808 | azx_writew(chip, RINTCNT, 0xc0); |
| 809 | else |
| 810 | azx_writew(chip, RINTCNT, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | /* enable rirb dma and response irq */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN | ICH6_RBCTL_IRQ_EN); |
Wu Fengguang | cdb1fbf | 2009-08-01 18:47:41 +0800 | [diff] [blame] | 813 | spin_unlock_irq(&chip->reg_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | } |
| 815 | |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 816 | static void azx_free_cmd_io(struct azx *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | { |
Wu Fengguang | cdb1fbf | 2009-08-01 18:47:41 +0800 | [diff] [blame] | 818 | spin_lock_irq(&chip->reg_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | /* disable ringbuffer DMAs */ |
| 820 | azx_writeb(chip, RIRBCTL, 0); |
| 821 | azx_writeb(chip, CORBCTL, 0); |
Wu Fengguang | cdb1fbf | 2009-08-01 18:47:41 +0800 | [diff] [blame] | 822 | spin_unlock_irq(&chip->reg_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | } |
| 824 | |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 825 | static unsigned int azx_command_addr(u32 cmd) |
| 826 | { |
| 827 | unsigned int addr = cmd >> 28; |
| 828 | |
| 829 | if (addr >= AZX_MAX_CODECS) { |
| 830 | snd_BUG(); |
| 831 | addr = 0; |
| 832 | } |
| 833 | |
| 834 | return addr; |
| 835 | } |
| 836 | |
| 837 | static unsigned int azx_response_addr(u32 res) |
| 838 | { |
| 839 | unsigned int addr = res & 0xf; |
| 840 | |
| 841 | if (addr >= AZX_MAX_CODECS) { |
| 842 | snd_BUG(); |
| 843 | addr = 0; |
| 844 | } |
| 845 | |
| 846 | return addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | } |
| 848 | |
| 849 | /* send a command */ |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 850 | static int azx_corb_send_cmd(struct hda_bus *bus, u32 val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 852 | struct azx *chip = bus->private_data; |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 853 | unsigned int addr = azx_command_addr(val); |
Takashi Iwai | 3bcce5c | 2012-12-20 11:17:17 +0100 | [diff] [blame] | 854 | unsigned int wp, rp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | |
Wu Fengguang | c32649f | 2009-08-01 18:48:12 +0800 | [diff] [blame] | 856 | spin_lock_irq(&chip->reg_lock); |
| 857 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | /* add command to corb */ |
Takashi Iwai | cc5ede3 | 2012-12-12 11:10:49 +0100 | [diff] [blame] | 859 | wp = azx_readw(chip, CORBWP); |
| 860 | if (wp == 0xffff) { |
| 861 | /* something wrong, controller likely turned to D3 */ |
| 862 | spin_unlock_irq(&chip->reg_lock); |
Takashi Iwai | 3bcce5c | 2012-12-20 11:17:17 +0100 | [diff] [blame] | 863 | return -EIO; |
Takashi Iwai | cc5ede3 | 2012-12-12 11:10:49 +0100 | [diff] [blame] | 864 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | wp++; |
| 866 | wp %= ICH6_MAX_CORB_ENTRIES; |
| 867 | |
Takashi Iwai | 3bcce5c | 2012-12-20 11:17:17 +0100 | [diff] [blame] | 868 | rp = azx_readw(chip, CORBRP); |
| 869 | if (wp == rp) { |
| 870 | /* oops, it's full */ |
| 871 | spin_unlock_irq(&chip->reg_lock); |
| 872 | return -EAGAIN; |
| 873 | } |
| 874 | |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 875 | chip->rirb.cmds[addr]++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | chip->corb.buf[wp] = cpu_to_le32(val); |
| 877 | azx_writel(chip, CORBWP, wp); |
Wu Fengguang | c32649f | 2009-08-01 18:48:12 +0800 | [diff] [blame] | 878 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | spin_unlock_irq(&chip->reg_lock); |
| 880 | |
| 881 | return 0; |
| 882 | } |
| 883 | |
| 884 | #define ICH6_RIRB_EX_UNSOL_EV (1<<4) |
| 885 | |
| 886 | /* retrieve RIRB entry - called from interrupt handler */ |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 887 | static void azx_update_rirb(struct azx *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | { |
| 889 | unsigned int rp, wp; |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 890 | unsigned int addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | u32 res, res_ex; |
| 892 | |
Takashi Iwai | cc5ede3 | 2012-12-12 11:10:49 +0100 | [diff] [blame] | 893 | wp = azx_readw(chip, RIRBWP); |
| 894 | if (wp == 0xffff) { |
| 895 | /* something wrong, controller likely turned to D3 */ |
| 896 | return; |
| 897 | } |
| 898 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 899 | if (wp == chip->rirb.wp) |
| 900 | return; |
| 901 | chip->rirb.wp = wp; |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 902 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | while (chip->rirb.rp != wp) { |
| 904 | chip->rirb.rp++; |
| 905 | chip->rirb.rp %= ICH6_MAX_RIRB_ENTRIES; |
| 906 | |
| 907 | rp = chip->rirb.rp << 1; /* an RIRB entry is 8-bytes */ |
| 908 | res_ex = le32_to_cpu(chip->rirb.buf[rp + 1]); |
| 909 | res = le32_to_cpu(chip->rirb.buf[rp]); |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 910 | addr = azx_response_addr(res_ex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | if (res_ex & ICH6_RIRB_EX_UNSOL_EV) |
| 912 | snd_hda_queue_unsol_event(chip->bus, res, res_ex); |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 913 | else if (chip->rirb.cmds[addr]) { |
| 914 | chip->rirb.res[addr] = res; |
Takashi Iwai | 2add9b9 | 2008-03-18 09:47:06 +0100 | [diff] [blame] | 915 | smp_wmb(); |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 916 | chip->rirb.cmds[addr]--; |
Wu Fengguang | e310bb0 | 2009-08-01 19:18:45 +0800 | [diff] [blame] | 917 | } else |
Takashi Iwai | 9e3d352 | 2012-10-17 08:39:37 +0200 | [diff] [blame] | 918 | snd_printk(KERN_ERR SFX "%s: spurious response %#x:%#x, " |
Wu Fengguang | e310bb0 | 2009-08-01 19:18:45 +0800 | [diff] [blame] | 919 | "last cmd=%#08x\n", |
Takashi Iwai | 9e3d352 | 2012-10-17 08:39:37 +0200 | [diff] [blame] | 920 | pci_name(chip->pci), |
Wu Fengguang | e310bb0 | 2009-08-01 19:18:45 +0800 | [diff] [blame] | 921 | res, res_ex, |
| 922 | chip->last_cmd[addr]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | } |
| 924 | } |
| 925 | |
| 926 | /* receive a response */ |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 927 | static unsigned int azx_rirb_get_response(struct hda_bus *bus, |
| 928 | unsigned int addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 930 | struct azx *chip = bus->private_data; |
Takashi Iwai | 5c79b1f | 2006-09-21 13:34:13 +0200 | [diff] [blame] | 931 | unsigned long timeout; |
David Henningsson | 32cf402 | 2012-05-04 11:05:55 +0200 | [diff] [blame] | 932 | unsigned long loopcounter; |
Maxim Levitsky | 1eb6dc7 | 2010-02-04 22:21:47 +0200 | [diff] [blame] | 933 | int do_poll = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | |
Takashi Iwai | 5c79b1f | 2006-09-21 13:34:13 +0200 | [diff] [blame] | 935 | again: |
| 936 | timeout = jiffies + msecs_to_jiffies(1000); |
David Henningsson | 32cf402 | 2012-05-04 11:05:55 +0200 | [diff] [blame] | 937 | |
| 938 | for (loopcounter = 0;; loopcounter++) { |
Maxim Levitsky | 1eb6dc7 | 2010-02-04 22:21:47 +0200 | [diff] [blame] | 939 | if (chip->polling_mode || do_poll) { |
Takashi Iwai | e96224a | 2006-08-21 17:57:44 +0200 | [diff] [blame] | 940 | spin_lock_irq(&chip->reg_lock); |
| 941 | azx_update_rirb(chip); |
| 942 | spin_unlock_irq(&chip->reg_lock); |
| 943 | } |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 944 | if (!chip->rirb.cmds[addr]) { |
Takashi Iwai | 2add9b9 | 2008-03-18 09:47:06 +0100 | [diff] [blame] | 945 | smp_rmb(); |
Takashi Iwai | b613291 | 2009-03-24 07:36:09 +0100 | [diff] [blame] | 946 | bus->rirb_error = 0; |
Maxim Levitsky | 1eb6dc7 | 2010-02-04 22:21:47 +0200 | [diff] [blame] | 947 | |
| 948 | if (!do_poll) |
| 949 | chip->poll_count = 0; |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 950 | return chip->rirb.res[addr]; /* the last value */ |
Takashi Iwai | 2add9b9 | 2008-03-18 09:47:06 +0100 | [diff] [blame] | 951 | } |
Takashi Iwai | 28a0d9d | 2008-01-18 15:32:32 +0100 | [diff] [blame] | 952 | if (time_after(jiffies, timeout)) |
| 953 | break; |
David Henningsson | 32cf402 | 2012-05-04 11:05:55 +0200 | [diff] [blame] | 954 | if (bus->needs_damn_long_delay || loopcounter > 3000) |
Takashi Iwai | 5298765 | 2008-01-16 16:09:47 +0100 | [diff] [blame] | 955 | msleep(2); /* temporary workaround */ |
| 956 | else { |
| 957 | udelay(10); |
| 958 | cond_resched(); |
| 959 | } |
Takashi Iwai | 28a0d9d | 2008-01-18 15:32:32 +0100 | [diff] [blame] | 960 | } |
Takashi Iwai | 5c79b1f | 2006-09-21 13:34:13 +0200 | [diff] [blame] | 961 | |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 962 | if (!bus->no_response_fallback) |
| 963 | return -1; |
| 964 | |
Maxim Levitsky | 1eb6dc7 | 2010-02-04 22:21:47 +0200 | [diff] [blame] | 965 | if (!chip->polling_mode && chip->poll_count < 2) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 966 | snd_printdd(SFX "%s: azx_get_response timeout, " |
Maxim Levitsky | 1eb6dc7 | 2010-02-04 22:21:47 +0200 | [diff] [blame] | 967 | "polling the codec once: last cmd=0x%08x\n", |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 968 | pci_name(chip->pci), chip->last_cmd[addr]); |
Maxim Levitsky | 1eb6dc7 | 2010-02-04 22:21:47 +0200 | [diff] [blame] | 969 | do_poll = 1; |
| 970 | chip->poll_count++; |
| 971 | goto again; |
| 972 | } |
| 973 | |
| 974 | |
Takashi Iwai | 23c4a88 | 2009-10-30 13:21:49 +0100 | [diff] [blame] | 975 | if (!chip->polling_mode) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 976 | snd_printk(KERN_WARNING SFX "%s: azx_get_response timeout, " |
Takashi Iwai | 23c4a88 | 2009-10-30 13:21:49 +0100 | [diff] [blame] | 977 | "switching to polling mode: last cmd=0x%08x\n", |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 978 | pci_name(chip->pci), chip->last_cmd[addr]); |
Takashi Iwai | 23c4a88 | 2009-10-30 13:21:49 +0100 | [diff] [blame] | 979 | chip->polling_mode = 1; |
| 980 | goto again; |
| 981 | } |
| 982 | |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 983 | if (chip->msi) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 984 | snd_printk(KERN_WARNING SFX "%s: No response from codec, " |
Wu Fengguang | feb2734 | 2009-08-01 19:17:14 +0800 | [diff] [blame] | 985 | "disabling MSI: last cmd=0x%08x\n", |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 986 | pci_name(chip->pci), chip->last_cmd[addr]); |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 987 | free_irq(chip->irq, chip); |
| 988 | chip->irq = -1; |
| 989 | pci_disable_msi(chip->pci); |
| 990 | chip->msi = 0; |
Takashi Iwai | b613291 | 2009-03-24 07:36:09 +0100 | [diff] [blame] | 991 | if (azx_acquire_irq(chip, 1) < 0) { |
| 992 | bus->rirb_error = 1; |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 993 | return -1; |
Takashi Iwai | b613291 | 2009-03-24 07:36:09 +0100 | [diff] [blame] | 994 | } |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 995 | goto again; |
| 996 | } |
| 997 | |
Takashi Iwai | 6ce4a3b | 2008-11-06 17:11:10 +0100 | [diff] [blame] | 998 | if (chip->probing) { |
| 999 | /* If this critical timeout happens during the codec probing |
| 1000 | * phase, this is likely an access to a non-existing codec |
| 1001 | * slot. Better to return an error and reset the system. |
| 1002 | */ |
| 1003 | return -1; |
| 1004 | } |
| 1005 | |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 1006 | /* a fatal communication error; need either to reset or to fallback |
| 1007 | * to the single_cmd mode |
| 1008 | */ |
Takashi Iwai | b613291 | 2009-03-24 07:36:09 +0100 | [diff] [blame] | 1009 | bus->rirb_error = 1; |
Takashi Iwai | b20f3b8 | 2009-06-02 01:20:22 +0200 | [diff] [blame] | 1010 | if (bus->allow_bus_reset && !bus->response_reset && !bus->in_reset) { |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 1011 | bus->response_reset = 1; |
| 1012 | return -1; /* give a chance to retry */ |
| 1013 | } |
| 1014 | |
| 1015 | snd_printk(KERN_ERR "hda_intel: azx_get_response timeout, " |
| 1016 | "switching to single_cmd mode: last cmd=0x%08x\n", |
Wu Fengguang | feb2734 | 2009-08-01 19:17:14 +0800 | [diff] [blame] | 1017 | chip->last_cmd[addr]); |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 1018 | chip->single_cmd = 1; |
| 1019 | bus->response_reset = 0; |
Takashi Iwai | 1a69697 | 2009-11-07 09:49:04 +0100 | [diff] [blame] | 1020 | /* release CORB/RIRB */ |
Takashi Iwai | 4fcd392 | 2009-05-25 18:34:52 +0200 | [diff] [blame] | 1021 | azx_free_cmd_io(chip); |
Takashi Iwai | 1a69697 | 2009-11-07 09:49:04 +0100 | [diff] [blame] | 1022 | /* disable unsolicited responses */ |
| 1023 | azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_UNSOL); |
Takashi Iwai | 5c79b1f | 2006-09-21 13:34:13 +0200 | [diff] [blame] | 1024 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1025 | } |
| 1026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | /* |
| 1028 | * Use the single immediate command instead of CORB/RIRB for simplicity |
| 1029 | * |
| 1030 | * Note: according to Intel, this is not preferred use. The command was |
| 1031 | * intended for the BIOS only, and may get confused with unsolicited |
| 1032 | * responses. So, we shouldn't use it for normal operation from the |
| 1033 | * driver. |
| 1034 | * I left the codes, however, for debugging/testing purposes. |
| 1035 | */ |
| 1036 | |
Takashi Iwai | b05a7d4 | 2009-05-28 11:59:12 +0200 | [diff] [blame] | 1037 | /* receive a response */ |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 1038 | static int azx_single_wait_for_response(struct azx *chip, unsigned int addr) |
Takashi Iwai | b05a7d4 | 2009-05-28 11:59:12 +0200 | [diff] [blame] | 1039 | { |
| 1040 | int timeout = 50; |
| 1041 | |
| 1042 | while (timeout--) { |
| 1043 | /* check IRV busy bit */ |
| 1044 | if (azx_readw(chip, IRS) & ICH6_IRS_VALID) { |
| 1045 | /* reuse rirb.res as the response return value */ |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 1046 | chip->rirb.res[addr] = azx_readl(chip, IR); |
Takashi Iwai | b05a7d4 | 2009-05-28 11:59:12 +0200 | [diff] [blame] | 1047 | return 0; |
| 1048 | } |
| 1049 | udelay(1); |
| 1050 | } |
| 1051 | if (printk_ratelimit()) |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1052 | snd_printd(SFX "%s: get_response timeout: IRS=0x%x\n", |
| 1053 | pci_name(chip->pci), azx_readw(chip, IRS)); |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 1054 | chip->rirb.res[addr] = -1; |
Takashi Iwai | b05a7d4 | 2009-05-28 11:59:12 +0200 | [diff] [blame] | 1055 | return -EIO; |
| 1056 | } |
| 1057 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | /* send a command */ |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 1059 | static int azx_single_send_cmd(struct hda_bus *bus, u32 val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 1061 | struct azx *chip = bus->private_data; |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 1062 | unsigned int addr = azx_command_addr(val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | int timeout = 50; |
| 1064 | |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 1065 | bus->rirb_error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | while (timeout--) { |
| 1067 | /* check ICB busy bit */ |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 1068 | if (!((azx_readw(chip, IRS) & ICH6_IRS_BUSY))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | /* Clear IRV valid bit */ |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 1070 | azx_writew(chip, IRS, azx_readw(chip, IRS) | |
| 1071 | ICH6_IRS_VALID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | azx_writel(chip, IC, val); |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 1073 | azx_writew(chip, IRS, azx_readw(chip, IRS) | |
| 1074 | ICH6_IRS_BUSY); |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 1075 | return azx_single_wait_for_response(chip, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | } |
| 1077 | udelay(1); |
| 1078 | } |
Marc Boucher | 1cfd52b | 2008-01-22 15:29:26 +0100 | [diff] [blame] | 1079 | if (printk_ratelimit()) |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1080 | snd_printd(SFX "%s: send_cmd timeout: IRS=0x%x, val=0x%x\n", |
| 1081 | pci_name(chip->pci), azx_readw(chip, IRS), val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | return -EIO; |
| 1083 | } |
| 1084 | |
| 1085 | /* receive a response */ |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 1086 | static unsigned int azx_single_get_response(struct hda_bus *bus, |
| 1087 | unsigned int addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 1089 | struct azx *chip = bus->private_data; |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 1090 | return chip->rirb.res[addr]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | } |
| 1092 | |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 1093 | /* |
| 1094 | * The below are the main callbacks from hda_codec. |
| 1095 | * |
| 1096 | * They are just the skeleton to call sub-callbacks according to the |
| 1097 | * current setting of chip->single_cmd. |
| 1098 | */ |
| 1099 | |
| 1100 | /* send a command */ |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 1101 | static int azx_send_cmd(struct hda_bus *bus, unsigned int val) |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 1102 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 1103 | struct azx *chip = bus->private_data; |
Takashi Iwai | 43bbb6c | 2007-07-06 20:22:05 +0200 | [diff] [blame] | 1104 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1105 | if (chip->disabled) |
| 1106 | return 0; |
Wu Fengguang | feb2734 | 2009-08-01 19:17:14 +0800 | [diff] [blame] | 1107 | chip->last_cmd[azx_command_addr(val)] = val; |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 1108 | if (chip->single_cmd) |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 1109 | return azx_single_send_cmd(bus, val); |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 1110 | else |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 1111 | return azx_corb_send_cmd(bus, val); |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 1112 | } |
| 1113 | |
| 1114 | /* get a response */ |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 1115 | static unsigned int azx_get_response(struct hda_bus *bus, |
| 1116 | unsigned int addr) |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 1117 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 1118 | struct azx *chip = bus->private_data; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1119 | if (chip->disabled) |
| 1120 | return 0; |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 1121 | if (chip->single_cmd) |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 1122 | return azx_single_get_response(bus, addr); |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 1123 | else |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 1124 | return azx_rirb_get_response(bus, addr); |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 1125 | } |
| 1126 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 1127 | #ifdef CONFIG_PM |
Takashi Iwai | 68467f5 | 2012-08-28 09:14:29 -0700 | [diff] [blame] | 1128 | static void azx_power_notify(struct hda_bus *bus, bool power_up); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1129 | #endif |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 1130 | |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 1131 | #ifdef CONFIG_SND_HDA_DSP_LOADER |
| 1132 | static int azx_load_dsp_prepare(struct hda_bus *bus, unsigned int format, |
| 1133 | unsigned int byte_size, |
| 1134 | struct snd_dma_buffer *bufp); |
| 1135 | static void azx_load_dsp_trigger(struct hda_bus *bus, bool start); |
| 1136 | static void azx_load_dsp_cleanup(struct hda_bus *bus, |
| 1137 | struct snd_dma_buffer *dmab); |
| 1138 | #endif |
| 1139 | |
Mengdong Lin | 3af3f35 | 2013-06-24 10:18:54 -0400 | [diff] [blame] | 1140 | /* enter link reset */ |
Mengdong Lin | 7295b26 | 2013-06-25 05:58:49 -0400 | [diff] [blame] | 1141 | static void azx_enter_link_reset(struct azx *chip) |
Mengdong Lin | 3af3f35 | 2013-06-24 10:18:54 -0400 | [diff] [blame] | 1142 | { |
| 1143 | unsigned long timeout; |
| 1144 | |
| 1145 | /* reset controller */ |
| 1146 | azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_RESET); |
| 1147 | |
| 1148 | timeout = jiffies + msecs_to_jiffies(100); |
| 1149 | while ((azx_readb(chip, GCTL) & ICH6_GCTL_RESET) && |
| 1150 | time_before(jiffies, timeout)) |
| 1151 | usleep_range(500, 1000); |
| 1152 | } |
| 1153 | |
Mengdong Lin | 7295b26 | 2013-06-25 05:58:49 -0400 | [diff] [blame] | 1154 | /* exit link reset */ |
| 1155 | static void azx_exit_link_reset(struct azx *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | { |
Mengdong Lin | fa348da | 2012-12-12 09:16:15 -0500 | [diff] [blame] | 1157 | unsigned long timeout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | |
Mengdong Lin | 7295b26 | 2013-06-25 05:58:49 -0400 | [diff] [blame] | 1159 | azx_writeb(chip, GCTL, azx_readb(chip, GCTL) | ICH6_GCTL_RESET); |
| 1160 | |
| 1161 | timeout = jiffies + msecs_to_jiffies(100); |
| 1162 | while (!azx_readb(chip, GCTL) && |
| 1163 | time_before(jiffies, timeout)) |
| 1164 | usleep_range(500, 1000); |
| 1165 | } |
| 1166 | |
| 1167 | /* reset codec link */ |
| 1168 | static int azx_reset(struct azx *chip, int full_reset) |
| 1169 | { |
Jaroslav Kysela | cd508fe | 2010-03-26 10:28:46 +0100 | [diff] [blame] | 1170 | if (!full_reset) |
| 1171 | goto __skip; |
| 1172 | |
Danny Tholen | e8a7f13 | 2007-09-11 21:41:56 +0200 | [diff] [blame] | 1173 | /* clear STATESTS */ |
Wang Xingchao | da7db6a | 2013-07-22 03:19:18 -0400 | [diff] [blame] | 1174 | azx_writew(chip, STATESTS, STATESTS_INT_MASK); |
Danny Tholen | e8a7f13 | 2007-09-11 21:41:56 +0200 | [diff] [blame] | 1175 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | /* reset controller */ |
Mengdong Lin | 7295b26 | 2013-06-25 05:58:49 -0400 | [diff] [blame] | 1177 | azx_enter_link_reset(chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | |
| 1179 | /* delay for >= 100us for codec PLL to settle per spec |
| 1180 | * Rev 0.9 section 5.5.1 |
| 1181 | */ |
Mengdong Lin | fa348da | 2012-12-12 09:16:15 -0500 | [diff] [blame] | 1182 | usleep_range(500, 1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | |
| 1184 | /* Bring controller out of reset */ |
Mengdong Lin | 7295b26 | 2013-06-25 05:58:49 -0400 | [diff] [blame] | 1185 | azx_exit_link_reset(chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 1187 | /* Brent Chartrand said to wait >= 540us for codecs to initialize */ |
Mengdong Lin | fa348da | 2012-12-12 09:16:15 -0500 | [diff] [blame] | 1188 | usleep_range(1000, 1200); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1189 | |
Jaroslav Kysela | cd508fe | 2010-03-26 10:28:46 +0100 | [diff] [blame] | 1190 | __skip: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | /* check to see if controller is ready */ |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 1192 | if (!azx_readb(chip, GCTL)) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1193 | snd_printd(SFX "%s: azx_reset: controller not ready!\n", pci_name(chip->pci)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | return -EBUSY; |
| 1195 | } |
| 1196 | |
Matt | 41e2fce | 2005-07-04 17:49:55 +0200 | [diff] [blame] | 1197 | /* Accept unsolicited responses */ |
Takashi Iwai | 1a69697 | 2009-11-07 09:49:04 +0100 | [diff] [blame] | 1198 | if (!chip->single_cmd) |
| 1199 | azx_writel(chip, GCTL, azx_readl(chip, GCTL) | |
| 1200 | ICH6_GCTL_UNSOL); |
Matt | 41e2fce | 2005-07-04 17:49:55 +0200 | [diff] [blame] | 1201 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | /* detect codecs */ |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 1203 | if (!chip->codec_mask) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | chip->codec_mask = azx_readw(chip, STATESTS); |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1205 | snd_printdd(SFX "%s: codec_mask = 0x%x\n", pci_name(chip->pci), chip->codec_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | } |
| 1207 | |
| 1208 | return 0; |
| 1209 | } |
| 1210 | |
| 1211 | |
| 1212 | /* |
| 1213 | * Lowlevel interface |
| 1214 | */ |
| 1215 | |
| 1216 | /* enable interrupts */ |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1217 | static void azx_int_enable(struct azx *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | { |
| 1219 | /* enable controller CIE and GIE */ |
| 1220 | azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) | |
| 1221 | ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN); |
| 1222 | } |
| 1223 | |
| 1224 | /* disable interrupts */ |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1225 | static void azx_int_disable(struct azx *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | { |
| 1227 | int i; |
| 1228 | |
| 1229 | /* disable interrupts in stream descriptor */ |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 1230 | for (i = 0; i < chip->num_streams; i++) { |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1231 | struct azx_dev *azx_dev = &chip->azx_dev[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | azx_sd_writeb(azx_dev, SD_CTL, |
| 1233 | azx_sd_readb(azx_dev, SD_CTL) & ~SD_INT_MASK); |
| 1234 | } |
| 1235 | |
| 1236 | /* disable SIE for all streams */ |
| 1237 | azx_writeb(chip, INTCTL, 0); |
| 1238 | |
| 1239 | /* disable controller CIE and GIE */ |
| 1240 | azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) & |
| 1241 | ~(ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN)); |
| 1242 | } |
| 1243 | |
| 1244 | /* clear interrupts */ |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1245 | static void azx_int_clear(struct azx *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | { |
| 1247 | int i; |
| 1248 | |
| 1249 | /* clear stream status */ |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 1250 | for (i = 0; i < chip->num_streams; i++) { |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1251 | struct azx_dev *azx_dev = &chip->azx_dev[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); |
| 1253 | } |
| 1254 | |
| 1255 | /* clear STATESTS */ |
Wang Xingchao | da7db6a | 2013-07-22 03:19:18 -0400 | [diff] [blame] | 1256 | azx_writew(chip, STATESTS, STATESTS_INT_MASK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | |
| 1258 | /* clear rirb status */ |
| 1259 | azx_writeb(chip, RIRBSTS, RIRB_INT_MASK); |
| 1260 | |
| 1261 | /* clear int status */ |
| 1262 | azx_writel(chip, INTSTS, ICH6_INT_CTRL_EN | ICH6_INT_ALL_STREAM); |
| 1263 | } |
| 1264 | |
| 1265 | /* start a stream */ |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1266 | static void azx_stream_start(struct azx *chip, struct azx_dev *azx_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | { |
Joseph Chan | 0e15347 | 2008-08-26 14:38:03 +0200 | [diff] [blame] | 1268 | /* |
| 1269 | * Before stream start, initialize parameter |
| 1270 | */ |
| 1271 | azx_dev->insufficient = 1; |
| 1272 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | /* enable SIE */ |
Wei Ni | ccc5df0 | 2010-01-26 15:59:33 +0800 | [diff] [blame] | 1274 | azx_writel(chip, INTCTL, |
| 1275 | azx_readl(chip, INTCTL) | (1 << azx_dev->index)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | /* set DMA start and interrupt mask */ |
| 1277 | azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) | |
| 1278 | SD_CTL_DMA_START | SD_INT_MASK); |
| 1279 | } |
| 1280 | |
Takashi Iwai | 1dddab4 | 2009-03-18 15:15:37 +0100 | [diff] [blame] | 1281 | /* stop DMA */ |
| 1282 | static void azx_stream_clear(struct azx *chip, struct azx_dev *azx_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) & |
| 1285 | ~(SD_CTL_DMA_START | SD_INT_MASK)); |
| 1286 | azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */ |
Takashi Iwai | 1dddab4 | 2009-03-18 15:15:37 +0100 | [diff] [blame] | 1287 | } |
| 1288 | |
| 1289 | /* stop a stream */ |
| 1290 | static void azx_stream_stop(struct azx *chip, struct azx_dev *azx_dev) |
| 1291 | { |
| 1292 | azx_stream_clear(chip, azx_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | /* disable SIE */ |
Wei Ni | ccc5df0 | 2010-01-26 15:59:33 +0800 | [diff] [blame] | 1294 | azx_writel(chip, INTCTL, |
| 1295 | azx_readl(chip, INTCTL) & ~(1 << azx_dev->index)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | } |
| 1297 | |
| 1298 | |
| 1299 | /* |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1300 | * reset and start the controller registers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | */ |
Jaroslav Kysela | cd508fe | 2010-03-26 10:28:46 +0100 | [diff] [blame] | 1302 | static void azx_init_chip(struct azx *chip, int full_reset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | { |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1304 | if (chip->initialized) |
| 1305 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | |
| 1307 | /* reset controller */ |
Jaroslav Kysela | cd508fe | 2010-03-26 10:28:46 +0100 | [diff] [blame] | 1308 | azx_reset(chip, full_reset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1309 | |
| 1310 | /* initialize interrupts */ |
| 1311 | azx_int_clear(chip); |
| 1312 | azx_int_enable(chip); |
| 1313 | |
| 1314 | /* initialize the codec command I/O */ |
Takashi Iwai | 1a69697 | 2009-11-07 09:49:04 +0100 | [diff] [blame] | 1315 | if (!chip->single_cmd) |
| 1316 | azx_init_cmd_io(chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | |
Takashi Iwai | 0be3b5d | 2005-09-05 17:11:40 +0200 | [diff] [blame] | 1318 | /* program the position buffer */ |
| 1319 | azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr); |
Takashi Iwai | 766979e | 2008-06-13 20:53:56 +0200 | [diff] [blame] | 1320 | azx_writel(chip, DPUBASE, upper_32_bits(chip->posbuf.addr)); |
Frederick Li | f5d40b3 | 2005-05-12 14:55:20 +0200 | [diff] [blame] | 1321 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1322 | chip->initialized = 1; |
| 1323 | } |
| 1324 | |
| 1325 | /* |
| 1326 | * initialize the PCI registers |
| 1327 | */ |
| 1328 | /* update bits in a PCI register byte */ |
| 1329 | static void update_pci_byte(struct pci_dev *pci, unsigned int reg, |
| 1330 | unsigned char mask, unsigned char val) |
| 1331 | { |
| 1332 | unsigned char data; |
| 1333 | |
| 1334 | pci_read_config_byte(pci, reg, &data); |
| 1335 | data &= ~mask; |
| 1336 | data |= (val & mask); |
| 1337 | pci_write_config_byte(pci, reg, data); |
| 1338 | } |
| 1339 | |
| 1340 | static void azx_init_pci(struct azx *chip) |
| 1341 | { |
| 1342 | /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44) |
| 1343 | * TCSEL == Traffic Class Select Register, which sets PCI express QOS |
| 1344 | * Ensuring these bits are 0 clears playback static on some HD Audio |
Adam Lackorzynski | a09e89f | 2011-03-10 17:41:56 +0100 | [diff] [blame] | 1345 | * codecs. |
| 1346 | * The PCI register TCSEL is defined in the Intel manuals. |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1347 | */ |
Linus Torvalds | 46f2cc8 | 2011-05-27 19:45:28 -0700 | [diff] [blame] | 1348 | if (!(chip->driver_caps & AZX_DCAPS_NO_TCSEL)) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1349 | snd_printdd(SFX "%s: Clearing TCSEL\n", pci_name(chip->pci)); |
Adam Lackorzynski | a09e89f | 2011-03-10 17:41:56 +0100 | [diff] [blame] | 1350 | update_pci_byte(chip->pci, ICH6_PCIREG_TCSEL, 0x07, 0); |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1351 | } |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1352 | |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1353 | /* For ATI SB450/600/700/800/900 and AMD Hudson azalia HD audio, |
| 1354 | * we need to enable snoop. |
| 1355 | */ |
| 1356 | if (chip->driver_caps & AZX_DCAPS_ATI_SNOOP) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1357 | snd_printdd(SFX "%s: Setting ATI snoop: %d\n", pci_name(chip->pci), azx_snoop(chip)); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1358 | update_pci_byte(chip->pci, |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 1359 | ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR, 0x07, |
| 1360 | azx_snoop(chip) ? ATI_SB450_HDAUDIO_ENABLE_SNOOP : 0); |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1361 | } |
| 1362 | |
| 1363 | /* For NVIDIA HDA, enable snoop */ |
| 1364 | if (chip->driver_caps & AZX_DCAPS_NVIDIA_SNOOP) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1365 | snd_printdd(SFX "%s: Setting Nvidia snoop: %d\n", pci_name(chip->pci), azx_snoop(chip)); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1366 | update_pci_byte(chip->pci, |
| 1367 | NVIDIA_HDA_TRANSREG_ADDR, |
| 1368 | 0x0f, NVIDIA_HDA_ENABLE_COHBITS); |
Peer Chen | 320dcc3 | 2008-08-20 16:43:24 -0700 | [diff] [blame] | 1369 | update_pci_byte(chip->pci, |
| 1370 | NVIDIA_HDA_ISTRM_COH, |
| 1371 | 0x01, NVIDIA_HDA_ENABLE_COHBIT); |
| 1372 | update_pci_byte(chip->pci, |
| 1373 | NVIDIA_HDA_OSTRM_COH, |
| 1374 | 0x01, NVIDIA_HDA_ENABLE_COHBIT); |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1375 | } |
| 1376 | |
| 1377 | /* Enable SCH/PCH snoop if needed */ |
| 1378 | if (chip->driver_caps & AZX_DCAPS_SCH_SNOOP) { |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 1379 | unsigned short snoop; |
Takashi Iwai | 90a5ad5 | 2008-02-22 18:36:22 +0100 | [diff] [blame] | 1380 | pci_read_config_word(chip->pci, INTEL_SCH_HDA_DEVC, &snoop); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 1381 | if ((!azx_snoop(chip) && !(snoop & INTEL_SCH_HDA_DEVC_NOSNOOP)) || |
| 1382 | (azx_snoop(chip) && (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP))) { |
| 1383 | snoop &= ~INTEL_SCH_HDA_DEVC_NOSNOOP; |
| 1384 | if (!azx_snoop(chip)) |
| 1385 | snoop |= INTEL_SCH_HDA_DEVC_NOSNOOP; |
| 1386 | pci_write_config_word(chip->pci, INTEL_SCH_HDA_DEVC, snoop); |
Takashi Iwai | 90a5ad5 | 2008-02-22 18:36:22 +0100 | [diff] [blame] | 1387 | pci_read_config_word(chip->pci, |
| 1388 | INTEL_SCH_HDA_DEVC, &snoop); |
Takashi Iwai | 90a5ad5 | 2008-02-22 18:36:22 +0100 | [diff] [blame] | 1389 | } |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1390 | snd_printdd(SFX "%s: SCH snoop: %s\n", |
| 1391 | pci_name(chip->pci), (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP) |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 1392 | ? "Disabled" : "Enabled"); |
Vinod G | da3fca2 | 2005-09-13 18:49:12 +0200 | [diff] [blame] | 1393 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | } |
| 1395 | |
| 1396 | |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 1397 | static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev); |
| 1398 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | /* |
| 1400 | * interrupt handler |
| 1401 | */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1402 | static irqreturn_t azx_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | { |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1404 | struct azx *chip = dev_id; |
| 1405 | struct azx_dev *azx_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1406 | u32 status; |
Clemens Ladisch | 9ef0406 | 2010-05-25 09:03:40 +0200 | [diff] [blame] | 1407 | u8 sd_status; |
Jaroslav Kysela | fa00e04 | 2009-04-10 12:20:45 +0200 | [diff] [blame] | 1408 | int i, ok; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 1410 | #ifdef CONFIG_PM_RUNTIME |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 1411 | if (chip->driver_caps & AZX_DCAPS_PM_RUNTIME) |
| 1412 | if (chip->pci->dev.power.runtime_status != RPM_ACTIVE) |
| 1413 | return IRQ_NONE; |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 1414 | #endif |
| 1415 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | spin_lock(&chip->reg_lock); |
| 1417 | |
Dan Carpenter | 6091106 | 2012-05-18 10:36:11 +0300 | [diff] [blame] | 1418 | if (chip->disabled) { |
| 1419 | spin_unlock(&chip->reg_lock); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1420 | return IRQ_NONE; |
Dan Carpenter | 6091106 | 2012-05-18 10:36:11 +0300 | [diff] [blame] | 1421 | } |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1422 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | status = azx_readl(chip, INTSTS); |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 1424 | if (status == 0 || status == 0xffffffff) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | spin_unlock(&chip->reg_lock); |
| 1426 | return IRQ_NONE; |
| 1427 | } |
| 1428 | |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 1429 | for (i = 0; i < chip->num_streams; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | azx_dev = &chip->azx_dev[i]; |
| 1431 | if (status & azx_dev->sd_int_sta_mask) { |
Clemens Ladisch | 9ef0406 | 2010-05-25 09:03:40 +0200 | [diff] [blame] | 1432 | sd_status = azx_sd_readb(azx_dev, SD_STS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); |
Clemens Ladisch | 9ef0406 | 2010-05-25 09:03:40 +0200 | [diff] [blame] | 1434 | if (!azx_dev->substream || !azx_dev->running || |
| 1435 | !(sd_status & SD_INT_COMPLETE)) |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 1436 | continue; |
| 1437 | /* check whether this IRQ is really acceptable */ |
Jaroslav Kysela | fa00e04 | 2009-04-10 12:20:45 +0200 | [diff] [blame] | 1438 | ok = azx_position_ok(chip, azx_dev); |
| 1439 | if (ok == 1) { |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 1440 | azx_dev->irq_pending = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | spin_unlock(&chip->reg_lock); |
| 1442 | snd_pcm_period_elapsed(azx_dev->substream); |
| 1443 | spin_lock(&chip->reg_lock); |
Jaroslav Kysela | fa00e04 | 2009-04-10 12:20:45 +0200 | [diff] [blame] | 1444 | } else if (ok == 0 && chip->bus && chip->bus->workq) { |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 1445 | /* bogus IRQ, process it later */ |
| 1446 | azx_dev->irq_pending = 1; |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 1447 | queue_work(chip->bus->workq, |
| 1448 | &chip->irq_pending_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1449 | } |
| 1450 | } |
| 1451 | } |
| 1452 | |
| 1453 | /* clear rirb int */ |
| 1454 | status = azx_readb(chip, RIRBSTS); |
| 1455 | if (status & RIRB_INT_MASK) { |
Takashi Iwai | 14d34f1 | 2010-10-21 09:03:25 +0200 | [diff] [blame] | 1456 | if (status & RIRB_INT_RESPONSE) { |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1457 | if (chip->driver_caps & AZX_DCAPS_RIRB_PRE_DELAY) |
Takashi Iwai | 14d34f1 | 2010-10-21 09:03:25 +0200 | [diff] [blame] | 1458 | udelay(80); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1459 | azx_update_rirb(chip); |
Takashi Iwai | 14d34f1 | 2010-10-21 09:03:25 +0200 | [diff] [blame] | 1460 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | azx_writeb(chip, RIRBSTS, RIRB_INT_MASK); |
| 1462 | } |
| 1463 | |
| 1464 | #if 0 |
| 1465 | /* clear state status int */ |
Wang Xingchao | da7db6a | 2013-07-22 03:19:18 -0400 | [diff] [blame] | 1466 | if (azx_readw(chip, STATESTS) & 0x04) |
| 1467 | azx_writew(chip, STATESTS, 0x04); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1468 | #endif |
| 1469 | spin_unlock(&chip->reg_lock); |
| 1470 | |
| 1471 | return IRQ_HANDLED; |
| 1472 | } |
| 1473 | |
| 1474 | |
| 1475 | /* |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1476 | * set up a BDL entry |
| 1477 | */ |
Takashi Iwai | 5ae763b | 2012-05-08 10:34:08 +0200 | [diff] [blame] | 1478 | static int setup_bdle(struct azx *chip, |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 1479 | struct snd_dma_buffer *dmab, |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1480 | struct azx_dev *azx_dev, u32 **bdlp, |
| 1481 | int ofs, int size, int with_ioc) |
| 1482 | { |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1483 | u32 *bdl = *bdlp; |
| 1484 | |
| 1485 | while (size > 0) { |
| 1486 | dma_addr_t addr; |
| 1487 | int chunk; |
| 1488 | |
| 1489 | if (azx_dev->frags >= AZX_MAX_BDL_ENTRIES) |
| 1490 | return -EINVAL; |
| 1491 | |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 1492 | addr = snd_sgbuf_get_addr(dmab, ofs); |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1493 | /* program the address field of the BDL entry */ |
| 1494 | bdl[0] = cpu_to_le32((u32)addr); |
Takashi Iwai | 766979e | 2008-06-13 20:53:56 +0200 | [diff] [blame] | 1495 | bdl[1] = cpu_to_le32(upper_32_bits(addr)); |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1496 | /* program the size field of the BDL entry */ |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 1497 | chunk = snd_sgbuf_get_chunk_size(dmab, ofs, size); |
Takashi Iwai | 5ae763b | 2012-05-08 10:34:08 +0200 | [diff] [blame] | 1498 | /* one BDLE cannot cross 4K boundary on CTHDA chips */ |
| 1499 | if (chip->driver_caps & AZX_DCAPS_4K_BDLE_BOUNDARY) { |
| 1500 | u32 remain = 0x1000 - (ofs & 0xfff); |
| 1501 | if (chunk > remain) |
| 1502 | chunk = remain; |
| 1503 | } |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1504 | bdl[2] = cpu_to_le32(chunk); |
| 1505 | /* program the IOC to enable interrupt |
| 1506 | * only when the whole fragment is processed |
| 1507 | */ |
| 1508 | size -= chunk; |
| 1509 | bdl[3] = (size || !with_ioc) ? 0 : cpu_to_le32(0x01); |
| 1510 | bdl += 4; |
| 1511 | azx_dev->frags++; |
| 1512 | ofs += chunk; |
| 1513 | } |
| 1514 | *bdlp = bdl; |
| 1515 | return ofs; |
| 1516 | } |
| 1517 | |
| 1518 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | * set up BDL entries |
| 1520 | */ |
Takashi Iwai | 555e219 | 2008-06-10 17:53:34 +0200 | [diff] [blame] | 1521 | static int azx_setup_periods(struct azx *chip, |
| 1522 | struct snd_pcm_substream *substream, |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 1523 | struct azx_dev *azx_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | { |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 1525 | u32 *bdl; |
| 1526 | int i, ofs, periods, period_bytes; |
Takashi Iwai | 555e219 | 2008-06-10 17:53:34 +0200 | [diff] [blame] | 1527 | int pos_adj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | |
| 1529 | /* reset BDL address */ |
| 1530 | azx_sd_writel(azx_dev, SD_BDLPL, 0); |
| 1531 | azx_sd_writel(azx_dev, SD_BDLPU, 0); |
| 1532 | |
Takashi Iwai | 97b71c9 | 2009-03-18 15:09:13 +0100 | [diff] [blame] | 1533 | period_bytes = azx_dev->period_bytes; |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 1534 | periods = azx_dev->bufsize / period_bytes; |
| 1535 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1536 | /* program the initial BDL entries */ |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 1537 | bdl = (u32 *)azx_dev->bdl.area; |
| 1538 | ofs = 0; |
| 1539 | azx_dev->frags = 0; |
Takashi Iwai | 555e219 | 2008-06-10 17:53:34 +0200 | [diff] [blame] | 1540 | pos_adj = bdl_pos_adj[chip->dev_index]; |
Takashi Iwai | 915bf29 | 2012-09-11 15:19:10 +0200 | [diff] [blame] | 1541 | if (!azx_dev->no_period_wakeup && pos_adj > 0) { |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1542 | struct snd_pcm_runtime *runtime = substream->runtime; |
Takashi Iwai | e785d3d | 2008-07-15 16:28:43 +0200 | [diff] [blame] | 1543 | int pos_align = pos_adj; |
Takashi Iwai | 555e219 | 2008-06-10 17:53:34 +0200 | [diff] [blame] | 1544 | pos_adj = (pos_adj * runtime->rate + 47999) / 48000; |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1545 | if (!pos_adj) |
Takashi Iwai | e785d3d | 2008-07-15 16:28:43 +0200 | [diff] [blame] | 1546 | pos_adj = pos_align; |
| 1547 | else |
| 1548 | pos_adj = ((pos_adj + pos_align - 1) / pos_align) * |
| 1549 | pos_align; |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1550 | pos_adj = frames_to_bytes(runtime, pos_adj); |
| 1551 | if (pos_adj >= period_bytes) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1552 | snd_printk(KERN_WARNING SFX "%s: Too big adjustment %d\n", |
| 1553 | pci_name(chip->pci), bdl_pos_adj[chip->dev_index]); |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1554 | pos_adj = 0; |
| 1555 | } else { |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 1556 | ofs = setup_bdle(chip, snd_pcm_get_dma_buf(substream), |
| 1557 | azx_dev, |
Takashi Iwai | 915bf29 | 2012-09-11 15:19:10 +0200 | [diff] [blame] | 1558 | &bdl, ofs, pos_adj, true); |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1559 | if (ofs < 0) |
| 1560 | goto error; |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 1561 | } |
Takashi Iwai | 555e219 | 2008-06-10 17:53:34 +0200 | [diff] [blame] | 1562 | } else |
| 1563 | pos_adj = 0; |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1564 | for (i = 0; i < periods; i++) { |
| 1565 | if (i == periods - 1 && pos_adj) |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 1566 | ofs = setup_bdle(chip, snd_pcm_get_dma_buf(substream), |
| 1567 | azx_dev, &bdl, ofs, |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1568 | period_bytes - pos_adj, 0); |
| 1569 | else |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 1570 | ofs = setup_bdle(chip, snd_pcm_get_dma_buf(substream), |
| 1571 | azx_dev, &bdl, ofs, |
Clemens Ladisch | 7bb8fb7 | 2010-11-15 10:49:47 +0100 | [diff] [blame] | 1572 | period_bytes, |
Takashi Iwai | 915bf29 | 2012-09-11 15:19:10 +0200 | [diff] [blame] | 1573 | !azx_dev->no_period_wakeup); |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1574 | if (ofs < 0) |
| 1575 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | } |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 1577 | return 0; |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1578 | |
| 1579 | error: |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1580 | snd_printk(KERN_ERR SFX "%s: Too many BDL entries: buffer=%d, period=%d\n", |
| 1581 | pci_name(chip->pci), azx_dev->bufsize, period_bytes); |
Takashi Iwai | 675f25d | 2008-06-10 17:53:20 +0200 | [diff] [blame] | 1582 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | } |
| 1584 | |
Takashi Iwai | 1dddab4 | 2009-03-18 15:15:37 +0100 | [diff] [blame] | 1585 | /* reset stream */ |
| 1586 | static void azx_stream_reset(struct azx *chip, struct azx_dev *azx_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | { |
| 1588 | unsigned char val; |
| 1589 | int timeout; |
| 1590 | |
Takashi Iwai | 1dddab4 | 2009-03-18 15:15:37 +0100 | [diff] [blame] | 1591 | azx_stream_clear(chip, azx_dev); |
| 1592 | |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 1593 | azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) | |
| 1594 | SD_CTL_STREAM_RESET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | udelay(3); |
| 1596 | timeout = 300; |
| 1597 | while (!((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) && |
| 1598 | --timeout) |
| 1599 | ; |
| 1600 | val &= ~SD_CTL_STREAM_RESET; |
| 1601 | azx_sd_writeb(azx_dev, SD_CTL, val); |
| 1602 | udelay(3); |
| 1603 | |
| 1604 | timeout = 300; |
| 1605 | /* waiting for hardware to report that the stream is out of reset */ |
| 1606 | while (((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) && |
| 1607 | --timeout) |
| 1608 | ; |
Jaroslav Kysela | fa00e04 | 2009-04-10 12:20:45 +0200 | [diff] [blame] | 1609 | |
| 1610 | /* reset first position - may not be synced with hw at this time */ |
| 1611 | *azx_dev->posbuf = 0; |
Takashi Iwai | 1dddab4 | 2009-03-18 15:15:37 +0100 | [diff] [blame] | 1612 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | |
Takashi Iwai | 1dddab4 | 2009-03-18 15:15:37 +0100 | [diff] [blame] | 1614 | /* |
| 1615 | * set up the SD for streaming |
| 1616 | */ |
| 1617 | static int azx_setup_controller(struct azx *chip, struct azx_dev *azx_dev) |
| 1618 | { |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 1619 | unsigned int val; |
Takashi Iwai | 1dddab4 | 2009-03-18 15:15:37 +0100 | [diff] [blame] | 1620 | /* make sure the run bit is zero for SD */ |
| 1621 | azx_stream_clear(chip, azx_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1622 | /* program the stream_tag */ |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 1623 | val = azx_sd_readl(azx_dev, SD_CTL); |
| 1624 | val = (val & ~SD_CTL_STREAM_TAG_MASK) | |
| 1625 | (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT); |
| 1626 | if (!azx_snoop(chip)) |
| 1627 | val |= SD_CTL_TRAFFIC_PRIO; |
| 1628 | azx_sd_writel(azx_dev, SD_CTL, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | |
| 1630 | /* program the length of samples in cyclic buffer */ |
| 1631 | azx_sd_writel(azx_dev, SD_CBL, azx_dev->bufsize); |
| 1632 | |
| 1633 | /* program the stream format */ |
| 1634 | /* this value needs to be the same as the one programmed */ |
| 1635 | azx_sd_writew(azx_dev, SD_FORMAT, azx_dev->format_val); |
| 1636 | |
| 1637 | /* program the stream LVI (last valid index) of the BDL */ |
| 1638 | azx_sd_writew(azx_dev, SD_LVI, azx_dev->frags - 1); |
| 1639 | |
| 1640 | /* program the BDL address */ |
| 1641 | /* lower BDL address */ |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 1642 | azx_sd_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl.addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | /* upper BDL address */ |
Takashi Iwai | 766979e | 2008-06-13 20:53:56 +0200 | [diff] [blame] | 1644 | azx_sd_writel(azx_dev, SD_BDLPU, upper_32_bits(azx_dev->bdl.addr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | |
Takashi Iwai | 0be3b5d | 2005-09-05 17:11:40 +0200 | [diff] [blame] | 1646 | /* enable the position buffer */ |
David Henningsson | 4cb3631 | 2010-09-30 10:12:50 +0200 | [diff] [blame] | 1647 | if (chip->position_fix[0] != POS_FIX_LPIB || |
| 1648 | chip->position_fix[1] != POS_FIX_LPIB) { |
Takashi Iwai | ee9d6b9 | 2008-03-14 15:52:20 +0100 | [diff] [blame] | 1649 | if (!(azx_readl(chip, DPLBASE) & ICH6_DPLBASE_ENABLE)) |
| 1650 | azx_writel(chip, DPLBASE, |
| 1651 | (u32)chip->posbuf.addr | ICH6_DPLBASE_ENABLE); |
| 1652 | } |
Takashi Iwai | c74db86 | 2005-05-12 14:26:27 +0200 | [diff] [blame] | 1653 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1654 | /* set the interrupt enable bits in the descriptor control register */ |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 1655 | azx_sd_writel(azx_dev, SD_CTL, |
| 1656 | azx_sd_readl(azx_dev, SD_CTL) | SD_INT_MASK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1657 | |
| 1658 | return 0; |
| 1659 | } |
| 1660 | |
Takashi Iwai | 6ce4a3b | 2008-11-06 17:11:10 +0100 | [diff] [blame] | 1661 | /* |
| 1662 | * Probe the given codec address |
| 1663 | */ |
| 1664 | static int probe_codec(struct azx *chip, int addr) |
| 1665 | { |
| 1666 | unsigned int cmd = (addr << 28) | (AC_NODE_ROOT << 20) | |
| 1667 | (AC_VERB_PARAMETERS << 8) | AC_PAR_VENDOR_ID; |
| 1668 | unsigned int res; |
| 1669 | |
Wu Fengguang | a678cde | 2009-08-01 18:46:46 +0800 | [diff] [blame] | 1670 | mutex_lock(&chip->bus->cmd_mutex); |
Takashi Iwai | 6ce4a3b | 2008-11-06 17:11:10 +0100 | [diff] [blame] | 1671 | chip->probing = 1; |
| 1672 | azx_send_cmd(chip->bus, cmd); |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 1673 | res = azx_get_response(chip->bus, addr); |
Takashi Iwai | 6ce4a3b | 2008-11-06 17:11:10 +0100 | [diff] [blame] | 1674 | chip->probing = 0; |
Wu Fengguang | a678cde | 2009-08-01 18:46:46 +0800 | [diff] [blame] | 1675 | mutex_unlock(&chip->bus->cmd_mutex); |
Takashi Iwai | 6ce4a3b | 2008-11-06 17:11:10 +0100 | [diff] [blame] | 1676 | if (res == -1) |
| 1677 | return -EIO; |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1678 | snd_printdd(SFX "%s: codec #%d probed OK\n", pci_name(chip->pci), addr); |
Takashi Iwai | 6ce4a3b | 2008-11-06 17:11:10 +0100 | [diff] [blame] | 1679 | return 0; |
| 1680 | } |
| 1681 | |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 1682 | static int azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec, |
| 1683 | struct hda_pcm *cpcm); |
Takashi Iwai | 6ce4a3b | 2008-11-06 17:11:10 +0100 | [diff] [blame] | 1684 | static void azx_stop_chip(struct azx *chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 1686 | static void azx_bus_reset(struct hda_bus *bus) |
| 1687 | { |
| 1688 | struct azx *chip = bus->private_data; |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 1689 | |
| 1690 | bus->in_reset = 1; |
| 1691 | azx_stop_chip(chip); |
Jaroslav Kysela | cd508fe | 2010-03-26 10:28:46 +0100 | [diff] [blame] | 1692 | azx_init_chip(chip, 1); |
Alexander Beregalov | 65f7598 | 2009-06-04 13:46:16 +0400 | [diff] [blame] | 1693 | #ifdef CONFIG_PM |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 1694 | if (chip->initialized) { |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 1695 | struct azx_pcm *p; |
| 1696 | list_for_each_entry(p, &chip->pcm_list, list) |
| 1697 | snd_pcm_suspend_all(p->pcm); |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 1698 | snd_hda_suspend(chip->bus); |
| 1699 | snd_hda_resume(chip->bus); |
| 1700 | } |
Alexander Beregalov | 65f7598 | 2009-06-04 13:46:16 +0400 | [diff] [blame] | 1701 | #endif |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 1702 | bus->in_reset = 0; |
| 1703 | } |
| 1704 | |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 1705 | static int get_jackpoll_interval(struct azx *chip) |
| 1706 | { |
| 1707 | int i = jackpoll_ms[chip->dev_index]; |
| 1708 | unsigned int j; |
| 1709 | if (i == 0) |
| 1710 | return 0; |
| 1711 | if (i < 50 || i > 60000) |
| 1712 | j = 0; |
| 1713 | else |
| 1714 | j = msecs_to_jiffies(i); |
| 1715 | if (j == 0) |
| 1716 | snd_printk(KERN_WARNING SFX |
| 1717 | "jackpoll_ms value out of range: %d\n", i); |
| 1718 | return j; |
| 1719 | } |
| 1720 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | /* |
| 1722 | * Codec initialization |
| 1723 | */ |
| 1724 | |
Takashi Iwai | 2f5983f | 2008-09-03 16:00:44 +0200 | [diff] [blame] | 1725 | /* number of codec slots for each chipset: 0 = default slots (i.e. 4) */ |
Takashi Iwai | 48c8b0e | 2012-12-07 07:40:35 +0100 | [diff] [blame] | 1726 | static unsigned int azx_max_codecs[AZX_NUM_DRIVERS] = { |
Wei Ni | 7445dfc | 2010-03-03 15:05:53 +0800 | [diff] [blame] | 1727 | [AZX_DRIVER_NVIDIA] = 8, |
Kailang Yang | f269002 | 2008-05-27 11:44:55 +0200 | [diff] [blame] | 1728 | [AZX_DRIVER_TERA] = 1, |
Takashi Iwai | a9995a3 | 2007-03-12 21:30:46 +0100 | [diff] [blame] | 1729 | }; |
| 1730 | |
Takashi Iwai | 48c8b0e | 2012-12-07 07:40:35 +0100 | [diff] [blame] | 1731 | static int azx_codec_create(struct azx *chip, const char *model) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | { |
| 1733 | struct hda_bus_template bus_temp; |
Takashi Iwai | 34c2535 | 2008-10-28 11:38:58 +0100 | [diff] [blame] | 1734 | int c, codecs, err; |
| 1735 | int max_slots; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1736 | |
| 1737 | memset(&bus_temp, 0, sizeof(bus_temp)); |
| 1738 | bus_temp.private_data = chip; |
| 1739 | bus_temp.modelname = model; |
| 1740 | bus_temp.pci = chip->pci; |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 1741 | bus_temp.ops.command = azx_send_cmd; |
| 1742 | bus_temp.ops.get_response = azx_get_response; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1743 | bus_temp.ops.attach_pcm = azx_attach_pcm_stream; |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 1744 | bus_temp.ops.bus_reset = azx_bus_reset; |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 1745 | #ifdef CONFIG_PM |
Takashi Iwai | 11cd41b | 2008-11-28 07:22:18 +0100 | [diff] [blame] | 1746 | bus_temp.power_save = &power_save; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1747 | bus_temp.ops.pm_notify = azx_power_notify; |
| 1748 | #endif |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 1749 | #ifdef CONFIG_SND_HDA_DSP_LOADER |
| 1750 | bus_temp.ops.load_dsp_prepare = azx_load_dsp_prepare; |
| 1751 | bus_temp.ops.load_dsp_trigger = azx_load_dsp_trigger; |
| 1752 | bus_temp.ops.load_dsp_cleanup = azx_load_dsp_cleanup; |
| 1753 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 1755 | err = snd_hda_bus_new(chip->card, &bus_temp, &chip->bus); |
| 1756 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | return err; |
| 1758 | |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1759 | if (chip->driver_caps & AZX_DCAPS_RIRB_DELAY) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1760 | snd_printd(SFX "%s: Enable delay in RIRB handling\n", pci_name(chip->pci)); |
Wei Ni | dc9c8e2 | 2008-09-26 13:55:56 +0800 | [diff] [blame] | 1761 | chip->bus->needs_damn_long_delay = 1; |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1762 | } |
Wei Ni | dc9c8e2 | 2008-09-26 13:55:56 +0800 | [diff] [blame] | 1763 | |
Takashi Iwai | 34c2535 | 2008-10-28 11:38:58 +0100 | [diff] [blame] | 1764 | codecs = 0; |
Takashi Iwai | 2f5983f | 2008-09-03 16:00:44 +0200 | [diff] [blame] | 1765 | max_slots = azx_max_codecs[chip->driver_type]; |
| 1766 | if (!max_slots) |
Wei Ni | 7445dfc | 2010-03-03 15:05:53 +0800 | [diff] [blame] | 1767 | max_slots = AZX_DEFAULT_CODECS; |
Takashi Iwai | 6ce4a3b | 2008-11-06 17:11:10 +0100 | [diff] [blame] | 1768 | |
| 1769 | /* First try to probe all given codec slots */ |
| 1770 | for (c = 0; c < max_slots; c++) { |
Takashi Iwai | f1eaaee | 2009-02-13 08:16:55 +0100 | [diff] [blame] | 1771 | if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) { |
Takashi Iwai | 6ce4a3b | 2008-11-06 17:11:10 +0100 | [diff] [blame] | 1772 | if (probe_codec(chip, c) < 0) { |
| 1773 | /* Some BIOSen give you wrong codec addresses |
| 1774 | * that don't exist |
| 1775 | */ |
Takashi Iwai | 4abc1cc | 2009-05-19 12:16:46 +0200 | [diff] [blame] | 1776 | snd_printk(KERN_WARNING SFX |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1777 | "%s: Codec #%d probe error; " |
| 1778 | "disabling it...\n", pci_name(chip->pci), c); |
Takashi Iwai | 6ce4a3b | 2008-11-06 17:11:10 +0100 | [diff] [blame] | 1779 | chip->codec_mask &= ~(1 << c); |
| 1780 | /* More badly, accessing to a non-existing |
| 1781 | * codec often screws up the controller chip, |
Paul Menzel | 2448158 | 2010-02-08 20:37:26 +0100 | [diff] [blame] | 1782 | * and disturbs the further communications. |
Takashi Iwai | 6ce4a3b | 2008-11-06 17:11:10 +0100 | [diff] [blame] | 1783 | * Thus if an error occurs during probing, |
| 1784 | * better to reset the controller chip to |
| 1785 | * get back to the sanity state. |
| 1786 | */ |
| 1787 | azx_stop_chip(chip); |
Jaroslav Kysela | cd508fe | 2010-03-26 10:28:46 +0100 | [diff] [blame] | 1788 | azx_init_chip(chip, 1); |
Takashi Iwai | 6ce4a3b | 2008-11-06 17:11:10 +0100 | [diff] [blame] | 1789 | } |
| 1790 | } |
| 1791 | } |
| 1792 | |
Takashi Iwai | d507cd6 | 2011-04-26 15:25:02 +0200 | [diff] [blame] | 1793 | /* AMD chipsets often cause the communication stalls upon certain |
| 1794 | * sequence like the pin-detection. It seems that forcing the synced |
| 1795 | * access works around the stall. Grrr... |
| 1796 | */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1797 | if (chip->driver_caps & AZX_DCAPS_SYNC_WRITE) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1798 | snd_printd(SFX "%s: Enable sync_write for stable communication\n", |
| 1799 | pci_name(chip->pci)); |
Takashi Iwai | d507cd6 | 2011-04-26 15:25:02 +0200 | [diff] [blame] | 1800 | chip->bus->sync_write = 1; |
| 1801 | chip->bus->allow_bus_reset = 1; |
| 1802 | } |
| 1803 | |
Takashi Iwai | 6ce4a3b | 2008-11-06 17:11:10 +0100 | [diff] [blame] | 1804 | /* Then create codec instances */ |
Takashi Iwai | 34c2535 | 2008-10-28 11:38:58 +0100 | [diff] [blame] | 1805 | for (c = 0; c < max_slots; c++) { |
Takashi Iwai | f1eaaee | 2009-02-13 08:16:55 +0100 | [diff] [blame] | 1806 | if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) { |
Takashi Iwai | bccad14 | 2007-04-24 12:23:53 +0200 | [diff] [blame] | 1807 | struct hda_codec *codec; |
Takashi Iwai | a1e21c9 | 2009-06-17 09:33:52 +0200 | [diff] [blame] | 1808 | err = snd_hda_codec_new(chip->bus, c, &codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1809 | if (err < 0) |
| 1810 | continue; |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 1811 | codec->jackpoll_interval = get_jackpoll_interval(chip); |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 1812 | codec->beep_mode = chip->beep_mode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | codecs++; |
Takashi Iwai | 19a982b | 2007-03-21 15:14:35 +0100 | [diff] [blame] | 1814 | } |
| 1815 | } |
| 1816 | if (!codecs) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 1817 | snd_printk(KERN_ERR SFX "%s: no codecs initialized\n", pci_name(chip->pci)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | return -ENXIO; |
| 1819 | } |
Takashi Iwai | a1e21c9 | 2009-06-17 09:33:52 +0200 | [diff] [blame] | 1820 | return 0; |
| 1821 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | |
Takashi Iwai | a1e21c9 | 2009-06-17 09:33:52 +0200 | [diff] [blame] | 1823 | /* configure each codec instance */ |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1824 | static int azx_codec_configure(struct azx *chip) |
Takashi Iwai | a1e21c9 | 2009-06-17 09:33:52 +0200 | [diff] [blame] | 1825 | { |
| 1826 | struct hda_codec *codec; |
| 1827 | list_for_each_entry(codec, &chip->bus->codec_list, list) { |
| 1828 | snd_hda_codec_configure(codec); |
| 1829 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | return 0; |
| 1831 | } |
| 1832 | |
| 1833 | |
| 1834 | /* |
| 1835 | * PCM support |
| 1836 | */ |
| 1837 | |
| 1838 | /* assign a stream for the PCM */ |
Wu Fengguang | ef18bed | 2009-12-25 13:14:27 +0800 | [diff] [blame] | 1839 | static inline struct azx_dev * |
| 1840 | azx_assign_device(struct azx *chip, struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | { |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 1842 | int dev, i, nums; |
Wu Fengguang | ef18bed | 2009-12-25 13:14:27 +0800 | [diff] [blame] | 1843 | struct azx_dev *res = NULL; |
Takashi Iwai | d5cf991 | 2011-10-06 10:07:58 +0200 | [diff] [blame] | 1844 | /* make a non-zero unique key for the substream */ |
| 1845 | int key = (substream->pcm->device << 16) | (substream->number << 2) | |
| 1846 | (substream->stream + 1); |
Wu Fengguang | ef18bed | 2009-12-25 13:14:27 +0800 | [diff] [blame] | 1847 | |
| 1848 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 1849 | dev = chip->playback_index_offset; |
| 1850 | nums = chip->playback_streams; |
| 1851 | } else { |
| 1852 | dev = chip->capture_index_offset; |
| 1853 | nums = chip->capture_streams; |
| 1854 | } |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 1855 | for (i = 0; i < nums; i++, dev++) { |
| 1856 | struct azx_dev *azx_dev = &chip->azx_dev[dev]; |
| 1857 | dsp_lock(azx_dev); |
| 1858 | if (!azx_dev->opened && !dsp_is_locked(azx_dev)) { |
| 1859 | res = azx_dev; |
| 1860 | if (res->assigned_key == key) { |
| 1861 | res->opened = 1; |
| 1862 | res->assigned_key = key; |
| 1863 | dsp_unlock(azx_dev); |
| 1864 | return azx_dev; |
| 1865 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1866 | } |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 1867 | dsp_unlock(azx_dev); |
| 1868 | } |
Wu Fengguang | ef18bed | 2009-12-25 13:14:27 +0800 | [diff] [blame] | 1869 | if (res) { |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 1870 | dsp_lock(res); |
Wu Fengguang | ef18bed | 2009-12-25 13:14:27 +0800 | [diff] [blame] | 1871 | res->opened = 1; |
Takashi Iwai | d5cf991 | 2011-10-06 10:07:58 +0200 | [diff] [blame] | 1872 | res->assigned_key = key; |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 1873 | dsp_unlock(res); |
Wu Fengguang | ef18bed | 2009-12-25 13:14:27 +0800 | [diff] [blame] | 1874 | } |
| 1875 | return res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | } |
| 1877 | |
| 1878 | /* release the assigned stream */ |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1879 | static inline void azx_release_device(struct azx_dev *azx_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | { |
| 1881 | azx_dev->opened = 0; |
| 1882 | } |
| 1883 | |
Pierre-Louis Bossart | 5d890f5 | 2012-10-22 16:42:16 -0500 | [diff] [blame] | 1884 | static cycle_t azx_cc_read(const struct cyclecounter *cc) |
| 1885 | { |
| 1886 | struct azx_dev *azx_dev = container_of(cc, struct azx_dev, azx_cc); |
| 1887 | struct snd_pcm_substream *substream = azx_dev->substream; |
| 1888 | struct azx_pcm *apcm = snd_pcm_substream_chip(substream); |
| 1889 | struct azx *chip = apcm->chip; |
| 1890 | |
| 1891 | return azx_readl(chip, WALLCLK); |
| 1892 | } |
| 1893 | |
| 1894 | static void azx_timecounter_init(struct snd_pcm_substream *substream, |
| 1895 | bool force, cycle_t last) |
| 1896 | { |
| 1897 | struct azx_dev *azx_dev = get_azx_dev(substream); |
| 1898 | struct timecounter *tc = &azx_dev->azx_tc; |
| 1899 | struct cyclecounter *cc = &azx_dev->azx_cc; |
| 1900 | u64 nsec; |
| 1901 | |
| 1902 | cc->read = azx_cc_read; |
| 1903 | cc->mask = CLOCKSOURCE_MASK(32); |
| 1904 | |
| 1905 | /* |
| 1906 | * Converting from 24 MHz to ns means applying a 125/3 factor. |
| 1907 | * To avoid any saturation issues in intermediate operations, |
| 1908 | * the 125 factor is applied first. The division is applied |
| 1909 | * last after reading the timecounter value. |
| 1910 | * Applying the 1/3 factor as part of the multiplication |
| 1911 | * requires at least 20 bits for a decent precision, however |
| 1912 | * overflows occur after about 4 hours or less, not a option. |
| 1913 | */ |
| 1914 | |
| 1915 | cc->mult = 125; /* saturation after 195 years */ |
| 1916 | cc->shift = 0; |
| 1917 | |
| 1918 | nsec = 0; /* audio time is elapsed time since trigger */ |
| 1919 | timecounter_init(tc, cc, nsec); |
| 1920 | if (force) |
| 1921 | /* |
| 1922 | * force timecounter to use predefined value, |
| 1923 | * used for synchronized starts |
| 1924 | */ |
| 1925 | tc->cycle_last = last; |
| 1926 | } |
| 1927 | |
Dylan Reid | ae03bbb | 2013-04-15 11:57:05 -0700 | [diff] [blame] | 1928 | static u64 azx_adjust_codec_delay(struct snd_pcm_substream *substream, |
Dylan Reid | 78daea2 | 2013-04-08 18:20:30 -0700 | [diff] [blame] | 1929 | u64 nsec) |
| 1930 | { |
| 1931 | struct azx_pcm *apcm = snd_pcm_substream_chip(substream); |
| 1932 | struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream]; |
| 1933 | u64 codec_frames, codec_nsecs; |
| 1934 | |
| 1935 | if (!hinfo->ops.get_delay) |
| 1936 | return nsec; |
| 1937 | |
| 1938 | codec_frames = hinfo->ops.get_delay(hinfo, apcm->codec, substream); |
| 1939 | codec_nsecs = div_u64(codec_frames * 1000000000LL, |
| 1940 | substream->runtime->rate); |
| 1941 | |
Dylan Reid | ae03bbb | 2013-04-15 11:57:05 -0700 | [diff] [blame] | 1942 | if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) |
| 1943 | return nsec + codec_nsecs; |
| 1944 | |
Dylan Reid | 78daea2 | 2013-04-08 18:20:30 -0700 | [diff] [blame] | 1945 | return (nsec > codec_nsecs) ? nsec - codec_nsecs : 0; |
| 1946 | } |
| 1947 | |
Pierre-Louis Bossart | 5d890f5 | 2012-10-22 16:42:16 -0500 | [diff] [blame] | 1948 | static int azx_get_wallclock_tstamp(struct snd_pcm_substream *substream, |
| 1949 | struct timespec *ts) |
| 1950 | { |
| 1951 | struct azx_dev *azx_dev = get_azx_dev(substream); |
| 1952 | u64 nsec; |
| 1953 | |
| 1954 | nsec = timecounter_read(&azx_dev->azx_tc); |
| 1955 | nsec = div_u64(nsec, 3); /* can be optimized */ |
Dylan Reid | ae03bbb | 2013-04-15 11:57:05 -0700 | [diff] [blame] | 1956 | nsec = azx_adjust_codec_delay(substream, nsec); |
Pierre-Louis Bossart | 5d890f5 | 2012-10-22 16:42:16 -0500 | [diff] [blame] | 1957 | |
| 1958 | *ts = ns_to_timespec(nsec); |
| 1959 | |
| 1960 | return 0; |
| 1961 | } |
| 1962 | |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1963 | static struct snd_pcm_hardware azx_pcm_hw = { |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 1964 | .info = (SNDRV_PCM_INFO_MMAP | |
| 1965 | SNDRV_PCM_INFO_INTERLEAVED | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1966 | SNDRV_PCM_INFO_BLOCK_TRANSFER | |
| 1967 | SNDRV_PCM_INFO_MMAP_VALID | |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 1968 | /* No full-resume yet implemented */ |
| 1969 | /* SNDRV_PCM_INFO_RESUME |*/ |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 1970 | SNDRV_PCM_INFO_PAUSE | |
Clemens Ladisch | 7bb8fb7 | 2010-11-15 10:49:47 +0100 | [diff] [blame] | 1971 | SNDRV_PCM_INFO_SYNC_START | |
Pierre-Louis Bossart | 5d890f5 | 2012-10-22 16:42:16 -0500 | [diff] [blame] | 1972 | SNDRV_PCM_INFO_HAS_WALL_CLOCK | |
Clemens Ladisch | 7bb8fb7 | 2010-11-15 10:49:47 +0100 | [diff] [blame] | 1973 | SNDRV_PCM_INFO_NO_PERIOD_WAKEUP), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1974 | .formats = SNDRV_PCM_FMTBIT_S16_LE, |
| 1975 | .rates = SNDRV_PCM_RATE_48000, |
| 1976 | .rate_min = 48000, |
| 1977 | .rate_max = 48000, |
| 1978 | .channels_min = 2, |
| 1979 | .channels_max = 2, |
| 1980 | .buffer_bytes_max = AZX_MAX_BUF_SIZE, |
| 1981 | .period_bytes_min = 128, |
| 1982 | .period_bytes_max = AZX_MAX_BUF_SIZE / 2, |
| 1983 | .periods_min = 2, |
| 1984 | .periods_max = AZX_MAX_FRAG, |
| 1985 | .fifo_size = 0, |
| 1986 | }; |
| 1987 | |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1988 | static int azx_pcm_open(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | { |
| 1990 | struct azx_pcm *apcm = snd_pcm_substream_chip(substream); |
| 1991 | struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream]; |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1992 | struct azx *chip = apcm->chip; |
| 1993 | struct azx_dev *azx_dev; |
| 1994 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | unsigned long flags; |
| 1996 | int err; |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 1997 | int buff_step; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1998 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1999 | mutex_lock(&chip->open_mutex); |
Wu Fengguang | ef18bed | 2009-12-25 13:14:27 +0800 | [diff] [blame] | 2000 | azx_dev = azx_assign_device(chip, substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | if (azx_dev == NULL) { |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2002 | mutex_unlock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | return -EBUSY; |
| 2004 | } |
| 2005 | runtime->hw = azx_pcm_hw; |
| 2006 | runtime->hw.channels_min = hinfo->channels_min; |
| 2007 | runtime->hw.channels_max = hinfo->channels_max; |
| 2008 | runtime->hw.formats = hinfo->formats; |
| 2009 | runtime->hw.rates = hinfo->rates; |
| 2010 | snd_pcm_limit_hw_rates(runtime); |
| 2011 | snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS); |
Pierre-Louis Bossart | 5d890f5 | 2012-10-22 16:42:16 -0500 | [diff] [blame] | 2012 | |
| 2013 | /* avoid wrap-around with wall-clock */ |
| 2014 | snd_pcm_hw_constraint_minmax(runtime, SNDRV_PCM_HW_PARAM_BUFFER_TIME, |
| 2015 | 20, |
| 2016 | 178000000); |
| 2017 | |
Takashi Iwai | 52409aa | 2012-01-23 17:10:24 +0100 | [diff] [blame] | 2018 | if (chip->align_buffer_size) |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 2019 | /* constrain buffer sizes to be multiple of 128 |
| 2020 | bytes. This is more efficient in terms of memory |
| 2021 | access but isn't required by the HDA spec and |
| 2022 | prevents users from specifying exact period/buffer |
| 2023 | sizes. For example for 44.1kHz, a period size set |
| 2024 | to 20ms will be rounded to 19.59ms. */ |
| 2025 | buff_step = 128; |
| 2026 | else |
| 2027 | /* Don't enforce steps on buffer sizes, still need to |
| 2028 | be multiple of 4 bytes (HDA spec). Tested on Intel |
| 2029 | HDA controllers, may not work on all devices where |
| 2030 | option needs to be disabled */ |
| 2031 | buff_step = 4; |
| 2032 | |
Joachim Deguara | 5f1545b | 2007-03-16 15:01:36 +0100 | [diff] [blame] | 2033 | snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES, |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 2034 | buff_step); |
Joachim Deguara | 5f1545b | 2007-03-16 15:01:36 +0100 | [diff] [blame] | 2035 | snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES, |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 2036 | buff_step); |
Dylan Reid | b4a91cf | 2012-06-15 19:36:23 -0700 | [diff] [blame] | 2037 | snd_hda_power_up_d3wait(apcm->codec); |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 2038 | err = hinfo->ops.open(hinfo, apcm->codec, substream); |
| 2039 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2040 | azx_release_device(azx_dev); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2041 | snd_hda_power_down(apcm->codec); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2042 | mutex_unlock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2043 | return err; |
| 2044 | } |
Takashi Iwai | 70d321e | 2009-07-03 23:06:45 +0200 | [diff] [blame] | 2045 | snd_pcm_limit_hw_rates(runtime); |
Takashi Iwai | aba6653 | 2009-07-05 11:44:46 +0200 | [diff] [blame] | 2046 | /* sanity check */ |
| 2047 | if (snd_BUG_ON(!runtime->hw.channels_min) || |
| 2048 | snd_BUG_ON(!runtime->hw.channels_max) || |
| 2049 | snd_BUG_ON(!runtime->hw.formats) || |
| 2050 | snd_BUG_ON(!runtime->hw.rates)) { |
| 2051 | azx_release_device(azx_dev); |
| 2052 | hinfo->ops.close(hinfo, apcm->codec, substream); |
| 2053 | snd_hda_power_down(apcm->codec); |
| 2054 | mutex_unlock(&chip->open_mutex); |
| 2055 | return -EINVAL; |
| 2056 | } |
Pierre-Louis Bossart | 5d890f5 | 2012-10-22 16:42:16 -0500 | [diff] [blame] | 2057 | |
| 2058 | /* disable WALLCLOCK timestamps for capture streams |
| 2059 | until we figure out how to handle digital inputs */ |
| 2060 | if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) |
| 2061 | runtime->hw.info &= ~SNDRV_PCM_INFO_HAS_WALL_CLOCK; |
| 2062 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | spin_lock_irqsave(&chip->reg_lock, flags); |
| 2064 | azx_dev->substream = substream; |
| 2065 | azx_dev->running = 0; |
| 2066 | spin_unlock_irqrestore(&chip->reg_lock, flags); |
| 2067 | |
| 2068 | runtime->private_data = azx_dev; |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 2069 | snd_pcm_set_sync(substream); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2070 | mutex_unlock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | return 0; |
| 2072 | } |
| 2073 | |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 2074 | static int azx_pcm_close(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | { |
| 2076 | struct azx_pcm *apcm = snd_pcm_substream_chip(substream); |
| 2077 | struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream]; |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 2078 | struct azx *chip = apcm->chip; |
| 2079 | struct azx_dev *azx_dev = get_azx_dev(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2080 | unsigned long flags; |
| 2081 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2082 | mutex_lock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2083 | spin_lock_irqsave(&chip->reg_lock, flags); |
| 2084 | azx_dev->substream = NULL; |
| 2085 | azx_dev->running = 0; |
| 2086 | spin_unlock_irqrestore(&chip->reg_lock, flags); |
| 2087 | azx_release_device(azx_dev); |
| 2088 | hinfo->ops.close(hinfo, apcm->codec, substream); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2089 | snd_hda_power_down(apcm->codec); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2090 | mutex_unlock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2091 | return 0; |
| 2092 | } |
| 2093 | |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 2094 | static int azx_pcm_hw_params(struct snd_pcm_substream *substream, |
| 2095 | struct snd_pcm_hw_params *hw_params) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | { |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 2097 | struct azx_pcm *apcm = snd_pcm_substream_chip(substream); |
| 2098 | struct azx *chip = apcm->chip; |
Takashi Iwai | 97b71c9 | 2009-03-18 15:09:13 +0100 | [diff] [blame] | 2099 | struct azx_dev *azx_dev = get_azx_dev(substream); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 2100 | int ret; |
Takashi Iwai | 97b71c9 | 2009-03-18 15:09:13 +0100 | [diff] [blame] | 2101 | |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2102 | dsp_lock(azx_dev); |
| 2103 | if (dsp_is_locked(azx_dev)) { |
| 2104 | ret = -EBUSY; |
| 2105 | goto unlock; |
| 2106 | } |
| 2107 | |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 2108 | mark_runtime_wc(chip, azx_dev, substream, false); |
Takashi Iwai | 97b71c9 | 2009-03-18 15:09:13 +0100 | [diff] [blame] | 2109 | azx_dev->bufsize = 0; |
| 2110 | azx_dev->period_bytes = 0; |
| 2111 | azx_dev->format_val = 0; |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 2112 | ret = snd_pcm_lib_malloc_pages(substream, |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 2113 | params_buffer_bytes(hw_params)); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 2114 | if (ret < 0) |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2115 | goto unlock; |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 2116 | mark_runtime_wc(chip, azx_dev, substream, true); |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2117 | unlock: |
| 2118 | dsp_unlock(azx_dev); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 2119 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2120 | } |
| 2121 | |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 2122 | static int azx_pcm_hw_free(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2123 | { |
| 2124 | struct azx_pcm *apcm = snd_pcm_substream_chip(substream); |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 2125 | struct azx_dev *azx_dev = get_azx_dev(substream); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 2126 | struct azx *chip = apcm->chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream]; |
| 2128 | |
| 2129 | /* reset BDL address */ |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2130 | dsp_lock(azx_dev); |
| 2131 | if (!dsp_is_locked(azx_dev)) { |
| 2132 | azx_sd_writel(azx_dev, SD_BDLPL, 0); |
| 2133 | azx_sd_writel(azx_dev, SD_BDLPU, 0); |
| 2134 | azx_sd_writel(azx_dev, SD_CTL, 0); |
| 2135 | azx_dev->bufsize = 0; |
| 2136 | azx_dev->period_bytes = 0; |
| 2137 | azx_dev->format_val = 0; |
| 2138 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 2140 | snd_hda_codec_cleanup(apcm->codec, hinfo, substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2141 | |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 2142 | mark_runtime_wc(chip, azx_dev, substream, false); |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2143 | azx_dev->prepared = 0; |
| 2144 | dsp_unlock(azx_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2145 | return snd_pcm_lib_free_pages(substream); |
| 2146 | } |
| 2147 | |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 2148 | static int azx_pcm_prepare(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2149 | { |
| 2150 | struct azx_pcm *apcm = snd_pcm_substream_chip(substream); |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 2151 | struct azx *chip = apcm->chip; |
| 2152 | struct azx_dev *azx_dev = get_azx_dev(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2153 | struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream]; |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 2154 | struct snd_pcm_runtime *runtime = substream->runtime; |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 2155 | unsigned int bufsize, period_bytes, format_val, stream_tag; |
Takashi Iwai | 97b71c9 | 2009-03-18 15:09:13 +0100 | [diff] [blame] | 2156 | int err; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2157 | struct hda_spdif_out *spdif = |
| 2158 | snd_hda_spdif_out_of_nid(apcm->codec, hinfo->nid); |
| 2159 | unsigned short ctls = spdif ? spdif->ctls : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2161 | dsp_lock(azx_dev); |
| 2162 | if (dsp_is_locked(azx_dev)) { |
| 2163 | err = -EBUSY; |
| 2164 | goto unlock; |
| 2165 | } |
| 2166 | |
Jaroslav Kysela | fa00e04 | 2009-04-10 12:20:45 +0200 | [diff] [blame] | 2167 | azx_stream_reset(chip, azx_dev); |
Takashi Iwai | 97b71c9 | 2009-03-18 15:09:13 +0100 | [diff] [blame] | 2168 | format_val = snd_hda_calc_stream_format(runtime->rate, |
| 2169 | runtime->channels, |
| 2170 | runtime->format, |
Anssi Hannula | 32c168c | 2010-08-03 13:28:57 +0300 | [diff] [blame] | 2171 | hinfo->maxbps, |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2172 | ctls); |
Takashi Iwai | 97b71c9 | 2009-03-18 15:09:13 +0100 | [diff] [blame] | 2173 | if (!format_val) { |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 2174 | snd_printk(KERN_ERR SFX |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 2175 | "%s: invalid format_val, rate=%d, ch=%d, format=%d\n", |
| 2176 | pci_name(chip->pci), runtime->rate, runtime->channels, runtime->format); |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2177 | err = -EINVAL; |
| 2178 | goto unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2179 | } |
| 2180 | |
Takashi Iwai | 97b71c9 | 2009-03-18 15:09:13 +0100 | [diff] [blame] | 2181 | bufsize = snd_pcm_lib_buffer_bytes(substream); |
| 2182 | period_bytes = snd_pcm_lib_period_bytes(substream); |
| 2183 | |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 2184 | snd_printdd(SFX "%s: azx_pcm_prepare: bufsize=0x%x, format=0x%x\n", |
| 2185 | pci_name(chip->pci), bufsize, format_val); |
Takashi Iwai | 97b71c9 | 2009-03-18 15:09:13 +0100 | [diff] [blame] | 2186 | |
| 2187 | if (bufsize != azx_dev->bufsize || |
| 2188 | period_bytes != azx_dev->period_bytes || |
Takashi Iwai | 915bf29 | 2012-09-11 15:19:10 +0200 | [diff] [blame] | 2189 | format_val != azx_dev->format_val || |
| 2190 | runtime->no_period_wakeup != azx_dev->no_period_wakeup) { |
Takashi Iwai | 97b71c9 | 2009-03-18 15:09:13 +0100 | [diff] [blame] | 2191 | azx_dev->bufsize = bufsize; |
| 2192 | azx_dev->period_bytes = period_bytes; |
| 2193 | azx_dev->format_val = format_val; |
Takashi Iwai | 915bf29 | 2012-09-11 15:19:10 +0200 | [diff] [blame] | 2194 | azx_dev->no_period_wakeup = runtime->no_period_wakeup; |
Takashi Iwai | 97b71c9 | 2009-03-18 15:09:13 +0100 | [diff] [blame] | 2195 | err = azx_setup_periods(chip, substream, azx_dev); |
| 2196 | if (err < 0) |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2197 | goto unlock; |
Takashi Iwai | 97b71c9 | 2009-03-18 15:09:13 +0100 | [diff] [blame] | 2198 | } |
| 2199 | |
Jaroslav Kysela | e546372 | 2010-05-11 10:21:46 +0200 | [diff] [blame] | 2200 | /* wallclk has 24Mhz clock source */ |
| 2201 | azx_dev->period_wallclk = (((runtime->period_size * 24000) / |
| 2202 | runtime->rate) * 1000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2203 | azx_setup_controller(chip, azx_dev); |
| 2204 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 2205 | azx_dev->fifo_size = azx_sd_readw(azx_dev, SD_FIFOSIZE) + 1; |
| 2206 | else |
| 2207 | azx_dev->fifo_size = 0; |
| 2208 | |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 2209 | stream_tag = azx_dev->stream_tag; |
| 2210 | /* CA-IBG chips need the playback stream starting from 1 */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2211 | if ((chip->driver_caps & AZX_DCAPS_CTX_WORKAROUND) && |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 2212 | stream_tag > chip->capture_streams) |
| 2213 | stream_tag -= chip->capture_streams; |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2214 | err = snd_hda_codec_prepare(apcm->codec, hinfo, stream_tag, |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 2215 | azx_dev->format_val, substream); |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2216 | |
| 2217 | unlock: |
| 2218 | if (!err) |
| 2219 | azx_dev->prepared = 1; |
| 2220 | dsp_unlock(azx_dev); |
| 2221 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2222 | } |
| 2223 | |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 2224 | static int azx_pcm_trigger(struct snd_pcm_substream *substream, int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2225 | { |
| 2226 | struct azx_pcm *apcm = snd_pcm_substream_chip(substream); |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 2227 | struct azx *chip = apcm->chip; |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 2228 | struct azx_dev *azx_dev; |
| 2229 | struct snd_pcm_substream *s; |
Jaroslav Kysela | fa00e04 | 2009-04-10 12:20:45 +0200 | [diff] [blame] | 2230 | int rstart = 0, start, nsync = 0, sbits = 0; |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 2231 | int nwait, timeout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2232 | |
Takashi Iwai | 1a8506d | 2012-10-16 15:10:08 +0200 | [diff] [blame] | 2233 | azx_dev = get_azx_dev(substream); |
| 2234 | trace_azx_pcm_trigger(chip, azx_dev, cmd); |
| 2235 | |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2236 | if (dsp_is_locked(azx_dev) || !azx_dev->prepared) |
| 2237 | return -EPIPE; |
| 2238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2239 | switch (cmd) { |
Jaroslav Kysela | fa00e04 | 2009-04-10 12:20:45 +0200 | [diff] [blame] | 2240 | case SNDRV_PCM_TRIGGER_START: |
| 2241 | rstart = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2242 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 2243 | case SNDRV_PCM_TRIGGER_RESUME: |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 2244 | start = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | break; |
| 2246 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
Jaroslav Kysela | 4712319 | 2005-08-15 20:53:07 +0200 | [diff] [blame] | 2247 | case SNDRV_PCM_TRIGGER_SUSPEND: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | case SNDRV_PCM_TRIGGER_STOP: |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 2249 | start = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2250 | break; |
| 2251 | default: |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 2252 | return -EINVAL; |
| 2253 | } |
| 2254 | |
| 2255 | snd_pcm_group_for_each_entry(s, substream) { |
| 2256 | if (s->pcm->card != substream->pcm->card) |
| 2257 | continue; |
| 2258 | azx_dev = get_azx_dev(s); |
| 2259 | sbits |= 1 << azx_dev->index; |
| 2260 | nsync++; |
| 2261 | snd_pcm_trigger_done(s, substream); |
| 2262 | } |
| 2263 | |
| 2264 | spin_lock(&chip->reg_lock); |
Pierre-Louis Bossart | 172d3b2 | 2012-09-21 18:39:05 -0500 | [diff] [blame] | 2265 | |
| 2266 | /* first, set SYNC bits of corresponding streams */ |
| 2267 | if (chip->driver_caps & AZX_DCAPS_OLD_SSYNC) |
| 2268 | azx_writel(chip, OLD_SSYNC, |
| 2269 | azx_readl(chip, OLD_SSYNC) | sbits); |
| 2270 | else |
| 2271 | azx_writel(chip, SSYNC, azx_readl(chip, SSYNC) | sbits); |
| 2272 | |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 2273 | snd_pcm_group_for_each_entry(s, substream) { |
| 2274 | if (s->pcm->card != substream->pcm->card) |
| 2275 | continue; |
| 2276 | azx_dev = get_azx_dev(s); |
Jaroslav Kysela | e546372 | 2010-05-11 10:21:46 +0200 | [diff] [blame] | 2277 | if (start) { |
| 2278 | azx_dev->start_wallclk = azx_readl(chip, WALLCLK); |
| 2279 | if (!rstart) |
| 2280 | azx_dev->start_wallclk -= |
| 2281 | azx_dev->period_wallclk; |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 2282 | azx_stream_start(chip, azx_dev); |
Jaroslav Kysela | e546372 | 2010-05-11 10:21:46 +0200 | [diff] [blame] | 2283 | } else { |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 2284 | azx_stream_stop(chip, azx_dev); |
Jaroslav Kysela | e546372 | 2010-05-11 10:21:46 +0200 | [diff] [blame] | 2285 | } |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 2286 | azx_dev->running = start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | } |
| 2288 | spin_unlock(&chip->reg_lock); |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 2289 | if (start) { |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 2290 | /* wait until all FIFOs get ready */ |
| 2291 | for (timeout = 5000; timeout; timeout--) { |
| 2292 | nwait = 0; |
| 2293 | snd_pcm_group_for_each_entry(s, substream) { |
| 2294 | if (s->pcm->card != substream->pcm->card) |
| 2295 | continue; |
| 2296 | azx_dev = get_azx_dev(s); |
| 2297 | if (!(azx_sd_readb(azx_dev, SD_STS) & |
| 2298 | SD_STS_FIFO_READY)) |
| 2299 | nwait++; |
| 2300 | } |
| 2301 | if (!nwait) |
| 2302 | break; |
| 2303 | cpu_relax(); |
| 2304 | } |
| 2305 | } else { |
| 2306 | /* wait until all RUN bits are cleared */ |
| 2307 | for (timeout = 5000; timeout; timeout--) { |
| 2308 | nwait = 0; |
| 2309 | snd_pcm_group_for_each_entry(s, substream) { |
| 2310 | if (s->pcm->card != substream->pcm->card) |
| 2311 | continue; |
| 2312 | azx_dev = get_azx_dev(s); |
| 2313 | if (azx_sd_readb(azx_dev, SD_CTL) & |
| 2314 | SD_CTL_DMA_START) |
| 2315 | nwait++; |
| 2316 | } |
| 2317 | if (!nwait) |
| 2318 | break; |
| 2319 | cpu_relax(); |
| 2320 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2321 | } |
Pierre-Louis Bossart | 172d3b2 | 2012-09-21 18:39:05 -0500 | [diff] [blame] | 2322 | spin_lock(&chip->reg_lock); |
| 2323 | /* reset SYNC bits */ |
| 2324 | if (chip->driver_caps & AZX_DCAPS_OLD_SSYNC) |
| 2325 | azx_writel(chip, OLD_SSYNC, |
| 2326 | azx_readl(chip, OLD_SSYNC) & ~sbits); |
| 2327 | else |
| 2328 | azx_writel(chip, SSYNC, azx_readl(chip, SSYNC) & ~sbits); |
Pierre-Louis Bossart | 5d890f5 | 2012-10-22 16:42:16 -0500 | [diff] [blame] | 2329 | if (start) { |
| 2330 | azx_timecounter_init(substream, 0, 0); |
| 2331 | if (nsync > 1) { |
| 2332 | cycle_t cycle_last; |
| 2333 | |
| 2334 | /* same start cycle for master and group */ |
| 2335 | azx_dev = get_azx_dev(substream); |
| 2336 | cycle_last = azx_dev->azx_tc.cycle_last; |
| 2337 | |
| 2338 | snd_pcm_group_for_each_entry(s, substream) { |
| 2339 | if (s->pcm->card != substream->pcm->card) |
| 2340 | continue; |
| 2341 | azx_timecounter_init(s, 1, cycle_last); |
| 2342 | } |
| 2343 | } |
| 2344 | } |
Pierre-Louis Bossart | 172d3b2 | 2012-09-21 18:39:05 -0500 | [diff] [blame] | 2345 | spin_unlock(&chip->reg_lock); |
Takashi Iwai | 850f0e5 | 2008-03-18 17:11:05 +0100 | [diff] [blame] | 2346 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2347 | } |
| 2348 | |
Joseph Chan | 0e15347 | 2008-08-26 14:38:03 +0200 | [diff] [blame] | 2349 | /* get the current DMA position with correction on VIA chips */ |
| 2350 | static unsigned int azx_via_get_position(struct azx *chip, |
| 2351 | struct azx_dev *azx_dev) |
| 2352 | { |
| 2353 | unsigned int link_pos, mini_pos, bound_pos; |
| 2354 | unsigned int mod_link_pos, mod_dma_pos, mod_mini_pos; |
| 2355 | unsigned int fifo_size; |
| 2356 | |
| 2357 | link_pos = azx_sd_readl(azx_dev, SD_LPIB); |
Takashi Iwai | b4a655e | 2011-06-07 12:26:56 +0200 | [diff] [blame] | 2358 | if (azx_dev->substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
Joseph Chan | 0e15347 | 2008-08-26 14:38:03 +0200 | [diff] [blame] | 2359 | /* Playback, no problem using link position */ |
| 2360 | return link_pos; |
| 2361 | } |
| 2362 | |
| 2363 | /* Capture */ |
| 2364 | /* For new chipset, |
| 2365 | * use mod to get the DMA position just like old chipset |
| 2366 | */ |
| 2367 | mod_dma_pos = le32_to_cpu(*azx_dev->posbuf); |
| 2368 | mod_dma_pos %= azx_dev->period_bytes; |
| 2369 | |
| 2370 | /* azx_dev->fifo_size can't get FIFO size of in stream. |
| 2371 | * Get from base address + offset. |
| 2372 | */ |
| 2373 | fifo_size = readw(chip->remap_addr + VIA_IN_STREAM0_FIFO_SIZE_OFFSET); |
| 2374 | |
| 2375 | if (azx_dev->insufficient) { |
| 2376 | /* Link position never gather than FIFO size */ |
| 2377 | if (link_pos <= fifo_size) |
| 2378 | return 0; |
| 2379 | |
| 2380 | azx_dev->insufficient = 0; |
| 2381 | } |
| 2382 | |
| 2383 | if (link_pos <= fifo_size) |
| 2384 | mini_pos = azx_dev->bufsize + link_pos - fifo_size; |
| 2385 | else |
| 2386 | mini_pos = link_pos - fifo_size; |
| 2387 | |
| 2388 | /* Find nearest previous boudary */ |
| 2389 | mod_mini_pos = mini_pos % azx_dev->period_bytes; |
| 2390 | mod_link_pos = link_pos % azx_dev->period_bytes; |
| 2391 | if (mod_link_pos >= fifo_size) |
| 2392 | bound_pos = link_pos - mod_link_pos; |
| 2393 | else if (mod_dma_pos >= mod_mini_pos) |
| 2394 | bound_pos = mini_pos - mod_mini_pos; |
| 2395 | else { |
| 2396 | bound_pos = mini_pos - mod_mini_pos + azx_dev->period_bytes; |
| 2397 | if (bound_pos >= azx_dev->bufsize) |
| 2398 | bound_pos = 0; |
| 2399 | } |
| 2400 | |
| 2401 | /* Calculate real DMA position we want */ |
| 2402 | return bound_pos + mod_dma_pos; |
| 2403 | } |
| 2404 | |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 2405 | static unsigned int azx_get_position(struct azx *chip, |
Takashi Iwai | 798cb7e | 2011-09-30 08:52:26 +0200 | [diff] [blame] | 2406 | struct azx_dev *azx_dev, |
| 2407 | bool with_check) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2408 | { |
Takashi Iwai | 2122961 | 2013-04-05 07:27:45 +0200 | [diff] [blame] | 2409 | struct snd_pcm_substream *substream = azx_dev->substream; |
| 2410 | struct azx_pcm *apcm = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2411 | unsigned int pos; |
Takashi Iwai | 2122961 | 2013-04-05 07:27:45 +0200 | [diff] [blame] | 2412 | int stream = substream->stream; |
| 2413 | struct hda_pcm_stream *hinfo = apcm->hinfo[stream]; |
Takashi Iwai | 1a8506d | 2012-10-16 15:10:08 +0200 | [diff] [blame] | 2414 | int delay = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2415 | |
David Henningsson | 4cb3631 | 2010-09-30 10:12:50 +0200 | [diff] [blame] | 2416 | switch (chip->position_fix[stream]) { |
| 2417 | case POS_FIX_LPIB: |
| 2418 | /* read LPIB */ |
| 2419 | pos = azx_sd_readl(azx_dev, SD_LPIB); |
| 2420 | break; |
| 2421 | case POS_FIX_VIACOMBO: |
Joseph Chan | 0e15347 | 2008-08-26 14:38:03 +0200 | [diff] [blame] | 2422 | pos = azx_via_get_position(chip, azx_dev); |
David Henningsson | 4cb3631 | 2010-09-30 10:12:50 +0200 | [diff] [blame] | 2423 | break; |
| 2424 | default: |
| 2425 | /* use the position buffer */ |
| 2426 | pos = le32_to_cpu(*azx_dev->posbuf); |
Takashi Iwai | 798cb7e | 2011-09-30 08:52:26 +0200 | [diff] [blame] | 2427 | if (with_check && chip->position_fix[stream] == POS_FIX_AUTO) { |
Takashi Iwai | a810364 | 2011-06-07 12:23:23 +0200 | [diff] [blame] | 2428 | if (!pos || pos == (u32)-1) { |
| 2429 | printk(KERN_WARNING |
| 2430 | "hda-intel: Invalid position buffer, " |
| 2431 | "using LPIB read method instead.\n"); |
| 2432 | chip->position_fix[stream] = POS_FIX_LPIB; |
| 2433 | pos = azx_sd_readl(azx_dev, SD_LPIB); |
| 2434 | } else |
| 2435 | chip->position_fix[stream] = POS_FIX_POSBUF; |
| 2436 | } |
| 2437 | break; |
Takashi Iwai | c74db86 | 2005-05-12 14:26:27 +0200 | [diff] [blame] | 2438 | } |
David Henningsson | 4cb3631 | 2010-09-30 10:12:50 +0200 | [diff] [blame] | 2439 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | if (pos >= azx_dev->bufsize) |
| 2441 | pos = 0; |
Pierre-Louis Bossart | 90accc5 | 2012-09-21 18:39:06 -0500 | [diff] [blame] | 2442 | |
| 2443 | /* calculate runtime delay from LPIB */ |
Takashi Iwai | 2122961 | 2013-04-05 07:27:45 +0200 | [diff] [blame] | 2444 | if (substream->runtime && |
Pierre-Louis Bossart | 90accc5 | 2012-09-21 18:39:06 -0500 | [diff] [blame] | 2445 | chip->position_fix[stream] == POS_FIX_POSBUF && |
| 2446 | (chip->driver_caps & AZX_DCAPS_COUNT_LPIB_DELAY)) { |
| 2447 | unsigned int lpib_pos = azx_sd_readl(azx_dev, SD_LPIB); |
Pierre-Louis Bossart | 90accc5 | 2012-09-21 18:39:06 -0500 | [diff] [blame] | 2448 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 2449 | delay = pos - lpib_pos; |
| 2450 | else |
| 2451 | delay = lpib_pos - pos; |
| 2452 | if (delay < 0) |
| 2453 | delay += azx_dev->bufsize; |
| 2454 | if (delay >= azx_dev->period_bytes) { |
Takashi Iwai | 1f04661 | 2012-10-16 16:52:26 +0200 | [diff] [blame] | 2455 | snd_printk(KERN_WARNING SFX |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 2456 | "%s: Unstable LPIB (%d >= %d); " |
Takashi Iwai | 1f04661 | 2012-10-16 16:52:26 +0200 | [diff] [blame] | 2457 | "disabling LPIB delay counting\n", |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 2458 | pci_name(chip->pci), delay, azx_dev->period_bytes); |
Takashi Iwai | 1f04661 | 2012-10-16 16:52:26 +0200 | [diff] [blame] | 2459 | delay = 0; |
| 2460 | chip->driver_caps &= ~AZX_DCAPS_COUNT_LPIB_DELAY; |
Pierre-Louis Bossart | 90accc5 | 2012-09-21 18:39:06 -0500 | [diff] [blame] | 2461 | } |
Takashi Iwai | 2122961 | 2013-04-05 07:27:45 +0200 | [diff] [blame] | 2462 | delay = bytes_to_frames(substream->runtime, delay); |
Pierre-Louis Bossart | 90accc5 | 2012-09-21 18:39:06 -0500 | [diff] [blame] | 2463 | } |
Takashi Iwai | 2122961 | 2013-04-05 07:27:45 +0200 | [diff] [blame] | 2464 | |
| 2465 | if (substream->runtime) { |
| 2466 | if (hinfo->ops.get_delay) |
| 2467 | delay += hinfo->ops.get_delay(hinfo, apcm->codec, |
| 2468 | substream); |
| 2469 | substream->runtime->delay = delay; |
| 2470 | } |
| 2471 | |
Takashi Iwai | 1a8506d | 2012-10-16 15:10:08 +0200 | [diff] [blame] | 2472 | trace_azx_get_position(chip, azx_dev, pos, delay); |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 2473 | return pos; |
| 2474 | } |
| 2475 | |
| 2476 | static snd_pcm_uframes_t azx_pcm_pointer(struct snd_pcm_substream *substream) |
| 2477 | { |
| 2478 | struct azx_pcm *apcm = snd_pcm_substream_chip(substream); |
| 2479 | struct azx *chip = apcm->chip; |
| 2480 | struct azx_dev *azx_dev = get_azx_dev(substream); |
| 2481 | return bytes_to_frames(substream->runtime, |
Takashi Iwai | 798cb7e | 2011-09-30 08:52:26 +0200 | [diff] [blame] | 2482 | azx_get_position(chip, azx_dev, false)); |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 2483 | } |
| 2484 | |
| 2485 | /* |
| 2486 | * Check whether the current DMA position is acceptable for updating |
| 2487 | * periods. Returns non-zero if it's OK. |
| 2488 | * |
| 2489 | * Many HD-audio controllers appear pretty inaccurate about |
| 2490 | * the update-IRQ timing. The IRQ is issued before actually the |
| 2491 | * data is processed. So, we need to process it afterwords in a |
| 2492 | * workqueue. |
| 2493 | */ |
| 2494 | static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev) |
| 2495 | { |
Jaroslav Kysela | e546372 | 2010-05-11 10:21:46 +0200 | [diff] [blame] | 2496 | u32 wallclk; |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 2497 | unsigned int pos; |
| 2498 | |
Jaroslav Kysela | f48f606 | 2010-05-11 12:10:47 +0200 | [diff] [blame] | 2499 | wallclk = azx_readl(chip, WALLCLK) - azx_dev->start_wallclk; |
| 2500 | if (wallclk < (azx_dev->period_wallclk * 2) / 3) |
Jaroslav Kysela | fa00e04 | 2009-04-10 12:20:45 +0200 | [diff] [blame] | 2501 | return -1; /* bogus (too early) interrupt */ |
Jaroslav Kysela | fa00e04 | 2009-04-10 12:20:45 +0200 | [diff] [blame] | 2502 | |
Takashi Iwai | 798cb7e | 2011-09-30 08:52:26 +0200 | [diff] [blame] | 2503 | pos = azx_get_position(chip, azx_dev, true); |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 2504 | |
Takashi Iwai | d6d8bf5 | 2010-02-12 18:17:06 +0100 | [diff] [blame] | 2505 | if (WARN_ONCE(!azx_dev->period_bytes, |
| 2506 | "hda-intel: zero azx_dev->period_bytes")) |
Jaroslav Kysela | f48f606 | 2010-05-11 12:10:47 +0200 | [diff] [blame] | 2507 | return -1; /* this shouldn't happen! */ |
Jaroslav Kysela | edb3993 | 2010-06-02 13:29:17 +0200 | [diff] [blame] | 2508 | if (wallclk < (azx_dev->period_wallclk * 5) / 4 && |
Jaroslav Kysela | f48f606 | 2010-05-11 12:10:47 +0200 | [diff] [blame] | 2509 | pos % azx_dev->period_bytes > azx_dev->period_bytes / 2) |
| 2510 | /* NG - it's below the first next period boundary */ |
| 2511 | return bdl_pos_adj[chip->dev_index] ? 0 : -1; |
Jaroslav Kysela | edb3993 | 2010-06-02 13:29:17 +0200 | [diff] [blame] | 2512 | azx_dev->start_wallclk += wallclk; |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 2513 | return 1; /* OK, it's fine */ |
| 2514 | } |
| 2515 | |
| 2516 | /* |
| 2517 | * The work for pending PCM period updates. |
| 2518 | */ |
| 2519 | static void azx_irq_pending_work(struct work_struct *work) |
| 2520 | { |
| 2521 | struct azx *chip = container_of(work, struct azx, irq_pending_work); |
Jaroslav Kysela | e546372 | 2010-05-11 10:21:46 +0200 | [diff] [blame] | 2522 | int i, pending, ok; |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 2523 | |
Takashi Iwai | a6a950a | 2008-06-10 17:53:35 +0200 | [diff] [blame] | 2524 | if (!chip->irq_pending_warned) { |
| 2525 | printk(KERN_WARNING |
| 2526 | "hda-intel: IRQ timing workaround is activated " |
| 2527 | "for card #%d. Suggest a bigger bdl_pos_adj.\n", |
| 2528 | chip->card->number); |
| 2529 | chip->irq_pending_warned = 1; |
| 2530 | } |
| 2531 | |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 2532 | for (;;) { |
| 2533 | pending = 0; |
| 2534 | spin_lock_irq(&chip->reg_lock); |
| 2535 | for (i = 0; i < chip->num_streams; i++) { |
| 2536 | struct azx_dev *azx_dev = &chip->azx_dev[i]; |
| 2537 | if (!azx_dev->irq_pending || |
| 2538 | !azx_dev->substream || |
| 2539 | !azx_dev->running) |
| 2540 | continue; |
Jaroslav Kysela | e546372 | 2010-05-11 10:21:46 +0200 | [diff] [blame] | 2541 | ok = azx_position_ok(chip, azx_dev); |
| 2542 | if (ok > 0) { |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 2543 | azx_dev->irq_pending = 0; |
| 2544 | spin_unlock(&chip->reg_lock); |
| 2545 | snd_pcm_period_elapsed(azx_dev->substream); |
| 2546 | spin_lock(&chip->reg_lock); |
Jaroslav Kysela | e546372 | 2010-05-11 10:21:46 +0200 | [diff] [blame] | 2547 | } else if (ok < 0) { |
| 2548 | pending = 0; /* too early */ |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 2549 | } else |
| 2550 | pending++; |
| 2551 | } |
| 2552 | spin_unlock_irq(&chip->reg_lock); |
| 2553 | if (!pending) |
| 2554 | return; |
Takashi Iwai | 08af495 | 2010-08-03 14:39:04 +0200 | [diff] [blame] | 2555 | msleep(1); |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 2556 | } |
| 2557 | } |
| 2558 | |
| 2559 | /* clear irq_pending flags and assure no on-going workq */ |
| 2560 | static void azx_clear_irq_pending(struct azx *chip) |
| 2561 | { |
| 2562 | int i; |
| 2563 | |
| 2564 | spin_lock_irq(&chip->reg_lock); |
| 2565 | for (i = 0; i < chip->num_streams; i++) |
| 2566 | chip->azx_dev[i].irq_pending = 0; |
| 2567 | spin_unlock_irq(&chip->reg_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2568 | } |
| 2569 | |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 2570 | #ifdef CONFIG_X86 |
| 2571 | static int azx_pcm_mmap(struct snd_pcm_substream *substream, |
| 2572 | struct vm_area_struct *area) |
| 2573 | { |
| 2574 | struct azx_pcm *apcm = snd_pcm_substream_chip(substream); |
| 2575 | struct azx *chip = apcm->chip; |
| 2576 | if (!azx_snoop(chip)) |
| 2577 | area->vm_page_prot = pgprot_writecombine(area->vm_page_prot); |
| 2578 | return snd_pcm_lib_default_mmap(substream, area); |
| 2579 | } |
| 2580 | #else |
| 2581 | #define azx_pcm_mmap NULL |
| 2582 | #endif |
| 2583 | |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 2584 | static struct snd_pcm_ops azx_pcm_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2585 | .open = azx_pcm_open, |
| 2586 | .close = azx_pcm_close, |
| 2587 | .ioctl = snd_pcm_lib_ioctl, |
| 2588 | .hw_params = azx_pcm_hw_params, |
| 2589 | .hw_free = azx_pcm_hw_free, |
| 2590 | .prepare = azx_pcm_prepare, |
| 2591 | .trigger = azx_pcm_trigger, |
| 2592 | .pointer = azx_pcm_pointer, |
Pierre-Louis Bossart | 5d890f5 | 2012-10-22 16:42:16 -0500 | [diff] [blame] | 2593 | .wall_clock = azx_get_wallclock_tstamp, |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 2594 | .mmap = azx_pcm_mmap, |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 2595 | .page = snd_pcm_sgbuf_ops_page, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2596 | }; |
| 2597 | |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 2598 | static void azx_pcm_free(struct snd_pcm *pcm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2599 | { |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2600 | struct azx_pcm *apcm = pcm->private_data; |
| 2601 | if (apcm) { |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 2602 | list_del(&apcm->list); |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2603 | kfree(apcm); |
| 2604 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2605 | } |
| 2606 | |
Takashi Iwai | acfa634 | 2011-07-12 17:27:46 +0200 | [diff] [blame] | 2607 | #define MAX_PREALLOC_SIZE (32 * 1024 * 1024) |
| 2608 | |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2609 | static int |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 2610 | azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec, |
| 2611 | struct hda_pcm *cpcm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2612 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 2613 | struct azx *chip = bus->private_data; |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 2614 | struct snd_pcm *pcm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2615 | struct azx_pcm *apcm; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2616 | int pcm_dev = cpcm->device; |
Takashi Iwai | acfa634 | 2011-07-12 17:27:46 +0200 | [diff] [blame] | 2617 | unsigned int size; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2618 | int s, err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2619 | |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 2620 | list_for_each_entry(apcm, &chip->pcm_list, list) { |
| 2621 | if (apcm->pcm->device == pcm_dev) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 2622 | snd_printk(KERN_ERR SFX "%s: PCM %d already exists\n", |
| 2623 | pci_name(chip->pci), pcm_dev); |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 2624 | return -EBUSY; |
| 2625 | } |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2626 | } |
| 2627 | err = snd_pcm_new(chip->card, cpcm->name, pcm_dev, |
| 2628 | cpcm->stream[SNDRV_PCM_STREAM_PLAYBACK].substreams, |
| 2629 | cpcm->stream[SNDRV_PCM_STREAM_CAPTURE].substreams, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2630 | &pcm); |
| 2631 | if (err < 0) |
| 2632 | return err; |
Takashi Iwai | 18cb710 | 2009-04-16 10:22:24 +0200 | [diff] [blame] | 2633 | strlcpy(pcm->name, cpcm->name, sizeof(pcm->name)); |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2634 | apcm = kzalloc(sizeof(*apcm), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2635 | if (apcm == NULL) |
| 2636 | return -ENOMEM; |
| 2637 | apcm->chip = chip; |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 2638 | apcm->pcm = pcm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2639 | apcm->codec = codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2640 | pcm->private_data = apcm; |
| 2641 | pcm->private_free = azx_pcm_free; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2642 | if (cpcm->pcm_type == HDA_PCM_TYPE_MODEM) |
| 2643 | pcm->dev_class = SNDRV_PCM_CLASS_MODEM; |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 2644 | list_add_tail(&apcm->list, &chip->pcm_list); |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2645 | cpcm->pcm = pcm; |
| 2646 | for (s = 0; s < 2; s++) { |
| 2647 | apcm->hinfo[s] = &cpcm->stream[s]; |
| 2648 | if (cpcm->stream[s].substreams) |
| 2649 | snd_pcm_set_ops(pcm, s, &azx_pcm_ops); |
| 2650 | } |
| 2651 | /* buffer pre-allocation */ |
Takashi Iwai | acfa634 | 2011-07-12 17:27:46 +0200 | [diff] [blame] | 2652 | size = CONFIG_SND_HDA_PREALLOC_SIZE * 1024; |
| 2653 | if (size > MAX_PREALLOC_SIZE) |
| 2654 | size = MAX_PREALLOC_SIZE; |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 2655 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2656 | snd_dma_pci_data(chip->pci), |
Takashi Iwai | acfa634 | 2011-07-12 17:27:46 +0200 | [diff] [blame] | 2657 | size, MAX_PREALLOC_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2658 | return 0; |
| 2659 | } |
| 2660 | |
| 2661 | /* |
| 2662 | * mixer creation - all stuff is implemented in hda module |
| 2663 | */ |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 2664 | static int azx_mixer_create(struct azx *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2665 | { |
| 2666 | return snd_hda_build_controls(chip->bus); |
| 2667 | } |
| 2668 | |
| 2669 | |
| 2670 | /* |
| 2671 | * initialize SD streams |
| 2672 | */ |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 2673 | static int azx_init_stream(struct azx *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2674 | { |
| 2675 | int i; |
| 2676 | |
| 2677 | /* initialize each stream (aka device) |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 2678 | * assign the starting bdl address to each stream (device) |
| 2679 | * and initialize |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2680 | */ |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 2681 | for (i = 0; i < chip->num_streams; i++) { |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 2682 | struct azx_dev *azx_dev = &chip->azx_dev[i]; |
Takashi Iwai | 929861c | 2006-08-31 16:55:40 +0200 | [diff] [blame] | 2683 | azx_dev->posbuf = (u32 __iomem *)(chip->posbuf.area + i * 8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2684 | /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */ |
| 2685 | azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80); |
| 2686 | /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */ |
| 2687 | azx_dev->sd_int_sta_mask = 1 << i; |
| 2688 | /* stream tag: must be non-zero and unique */ |
| 2689 | azx_dev->index = i; |
| 2690 | azx_dev->stream_tag = i + 1; |
| 2691 | } |
| 2692 | |
| 2693 | return 0; |
| 2694 | } |
| 2695 | |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 2696 | static int azx_acquire_irq(struct azx *chip, int do_disconnect) |
| 2697 | { |
Takashi Iwai | 437a5a4 | 2006-11-21 12:14:23 +0100 | [diff] [blame] | 2698 | if (request_irq(chip->pci->irq, azx_interrupt, |
| 2699 | chip->msi ? 0 : IRQF_SHARED, |
Takashi Iwai | 934c2b6 | 2011-06-10 16:36:37 +0200 | [diff] [blame] | 2700 | KBUILD_MODNAME, chip)) { |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 2701 | printk(KERN_ERR "hda-intel: unable to grab IRQ %d, " |
| 2702 | "disabling device\n", chip->pci->irq); |
| 2703 | if (do_disconnect) |
| 2704 | snd_card_disconnect(chip->card); |
| 2705 | return -1; |
| 2706 | } |
| 2707 | chip->irq = chip->pci->irq; |
Takashi Iwai | 69e1341 | 2006-11-21 12:10:55 +0100 | [diff] [blame] | 2708 | pci_intx(chip->pci, !chip->msi); |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 2709 | return 0; |
| 2710 | } |
| 2711 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2712 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2713 | static void azx_stop_chip(struct azx *chip) |
| 2714 | { |
Takashi Iwai | 95e99fd | 2007-08-13 15:29:04 +0200 | [diff] [blame] | 2715 | if (!chip->initialized) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2716 | return; |
| 2717 | |
| 2718 | /* disable interrupts */ |
| 2719 | azx_int_disable(chip); |
| 2720 | azx_int_clear(chip); |
| 2721 | |
| 2722 | /* disable CORB/RIRB */ |
| 2723 | azx_free_cmd_io(chip); |
| 2724 | |
| 2725 | /* disable position buffer */ |
| 2726 | azx_writel(chip, DPLBASE, 0); |
| 2727 | azx_writel(chip, DPUBASE, 0); |
| 2728 | |
| 2729 | chip->initialized = 0; |
| 2730 | } |
| 2731 | |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 2732 | #ifdef CONFIG_SND_HDA_DSP_LOADER |
| 2733 | /* |
| 2734 | * DSP loading code (e.g. for CA0132) |
| 2735 | */ |
| 2736 | |
| 2737 | /* use the first stream for loading DSP */ |
| 2738 | static struct azx_dev * |
| 2739 | azx_get_dsp_loader_dev(struct azx *chip) |
| 2740 | { |
| 2741 | return &chip->azx_dev[chip->playback_index_offset]; |
| 2742 | } |
| 2743 | |
| 2744 | static int azx_load_dsp_prepare(struct hda_bus *bus, unsigned int format, |
| 2745 | unsigned int byte_size, |
| 2746 | struct snd_dma_buffer *bufp) |
| 2747 | { |
| 2748 | u32 *bdl; |
| 2749 | struct azx *chip = bus->private_data; |
| 2750 | struct azx_dev *azx_dev; |
| 2751 | int err; |
| 2752 | |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2753 | azx_dev = azx_get_dsp_loader_dev(chip); |
| 2754 | |
| 2755 | dsp_lock(azx_dev); |
| 2756 | spin_lock_irq(&chip->reg_lock); |
| 2757 | if (azx_dev->running || azx_dev->locked) { |
| 2758 | spin_unlock_irq(&chip->reg_lock); |
| 2759 | err = -EBUSY; |
| 2760 | goto unlock; |
| 2761 | } |
| 2762 | azx_dev->prepared = 0; |
| 2763 | chip->saved_azx_dev = *azx_dev; |
| 2764 | azx_dev->locked = 1; |
| 2765 | spin_unlock_irq(&chip->reg_lock); |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 2766 | |
| 2767 | err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV_SG, |
| 2768 | snd_dma_pci_data(chip->pci), |
| 2769 | byte_size, bufp); |
| 2770 | if (err < 0) |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2771 | goto err_alloc; |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 2772 | |
Takashi Iwai | b3667bd | 2013-02-10 11:58:40 +0100 | [diff] [blame] | 2773 | mark_pages_wc(chip, bufp, true); |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 2774 | azx_dev->bufsize = byte_size; |
| 2775 | azx_dev->period_bytes = byte_size; |
| 2776 | azx_dev->format_val = format; |
| 2777 | |
| 2778 | azx_stream_reset(chip, azx_dev); |
| 2779 | |
| 2780 | /* reset BDL address */ |
| 2781 | azx_sd_writel(azx_dev, SD_BDLPL, 0); |
| 2782 | azx_sd_writel(azx_dev, SD_BDLPU, 0); |
| 2783 | |
| 2784 | azx_dev->frags = 0; |
| 2785 | bdl = (u32 *)azx_dev->bdl.area; |
| 2786 | err = setup_bdle(chip, bufp, azx_dev, &bdl, 0, byte_size, 0); |
| 2787 | if (err < 0) |
| 2788 | goto error; |
| 2789 | |
| 2790 | azx_setup_controller(chip, azx_dev); |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2791 | dsp_unlock(azx_dev); |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 2792 | return azx_dev->stream_tag; |
| 2793 | |
| 2794 | error: |
Takashi Iwai | b3667bd | 2013-02-10 11:58:40 +0100 | [diff] [blame] | 2795 | mark_pages_wc(chip, bufp, false); |
| 2796 | snd_dma_free_pages(bufp); |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2797 | err_alloc: |
| 2798 | spin_lock_irq(&chip->reg_lock); |
| 2799 | if (azx_dev->opened) |
| 2800 | *azx_dev = chip->saved_azx_dev; |
| 2801 | azx_dev->locked = 0; |
| 2802 | spin_unlock_irq(&chip->reg_lock); |
| 2803 | unlock: |
| 2804 | dsp_unlock(azx_dev); |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 2805 | return err; |
| 2806 | } |
| 2807 | |
| 2808 | static void azx_load_dsp_trigger(struct hda_bus *bus, bool start) |
| 2809 | { |
| 2810 | struct azx *chip = bus->private_data; |
| 2811 | struct azx_dev *azx_dev = azx_get_dsp_loader_dev(chip); |
| 2812 | |
| 2813 | if (start) |
| 2814 | azx_stream_start(chip, azx_dev); |
| 2815 | else |
| 2816 | azx_stream_stop(chip, azx_dev); |
| 2817 | azx_dev->running = start; |
| 2818 | } |
| 2819 | |
| 2820 | static void azx_load_dsp_cleanup(struct hda_bus *bus, |
| 2821 | struct snd_dma_buffer *dmab) |
| 2822 | { |
| 2823 | struct azx *chip = bus->private_data; |
| 2824 | struct azx_dev *azx_dev = azx_get_dsp_loader_dev(chip); |
| 2825 | |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2826 | if (!dmab->area || !azx_dev->locked) |
Takashi Iwai | b3667bd | 2013-02-10 11:58:40 +0100 | [diff] [blame] | 2827 | return; |
| 2828 | |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2829 | dsp_lock(azx_dev); |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 2830 | /* reset BDL address */ |
| 2831 | azx_sd_writel(azx_dev, SD_BDLPL, 0); |
| 2832 | azx_sd_writel(azx_dev, SD_BDLPU, 0); |
| 2833 | azx_sd_writel(azx_dev, SD_CTL, 0); |
| 2834 | azx_dev->bufsize = 0; |
| 2835 | azx_dev->period_bytes = 0; |
| 2836 | azx_dev->format_val = 0; |
| 2837 | |
Takashi Iwai | b3667bd | 2013-02-10 11:58:40 +0100 | [diff] [blame] | 2838 | mark_pages_wc(chip, dmab, false); |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 2839 | snd_dma_free_pages(dmab); |
Takashi Iwai | b3667bd | 2013-02-10 11:58:40 +0100 | [diff] [blame] | 2840 | dmab->area = NULL; |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 2841 | |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 2842 | spin_lock_irq(&chip->reg_lock); |
| 2843 | if (azx_dev->opened) |
| 2844 | *azx_dev = chip->saved_azx_dev; |
| 2845 | azx_dev->locked = 0; |
| 2846 | spin_unlock_irq(&chip->reg_lock); |
| 2847 | dsp_unlock(azx_dev); |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 2848 | } |
| 2849 | #endif /* CONFIG_SND_HDA_DSP_LOADER */ |
| 2850 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 2851 | #ifdef CONFIG_PM |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2852 | /* power-up/down the controller */ |
Takashi Iwai | 68467f5 | 2012-08-28 09:14:29 -0700 | [diff] [blame] | 2853 | static void azx_power_notify(struct hda_bus *bus, bool power_up) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2854 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 2855 | struct azx *chip = bus->private_data; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2856 | |
Takashi Iwai | 2ea3c6a | 2012-11-19 20:03:37 +0100 | [diff] [blame] | 2857 | if (!(chip->driver_caps & AZX_DCAPS_PM_RUNTIME)) |
| 2858 | return; |
| 2859 | |
Takashi Iwai | 68467f5 | 2012-08-28 09:14:29 -0700 | [diff] [blame] | 2860 | if (power_up) |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 2861 | pm_runtime_get_sync(&chip->pci->dev); |
| 2862 | else |
| 2863 | pm_runtime_put_sync(&chip->pci->dev); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2864 | } |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 2865 | |
| 2866 | static DEFINE_MUTEX(card_list_lock); |
| 2867 | static LIST_HEAD(card_list); |
| 2868 | |
| 2869 | static void azx_add_card_list(struct azx *chip) |
| 2870 | { |
| 2871 | mutex_lock(&card_list_lock); |
| 2872 | list_add(&chip->list, &card_list); |
| 2873 | mutex_unlock(&card_list_lock); |
| 2874 | } |
| 2875 | |
| 2876 | static void azx_del_card_list(struct azx *chip) |
| 2877 | { |
| 2878 | mutex_lock(&card_list_lock); |
| 2879 | list_del_init(&chip->list); |
| 2880 | mutex_unlock(&card_list_lock); |
| 2881 | } |
| 2882 | |
| 2883 | /* trigger power-save check at writing parameter */ |
| 2884 | static int param_set_xint(const char *val, const struct kernel_param *kp) |
| 2885 | { |
| 2886 | struct azx *chip; |
| 2887 | struct hda_codec *c; |
| 2888 | int prev = power_save; |
| 2889 | int ret = param_set_int(val, kp); |
| 2890 | |
| 2891 | if (ret || prev == power_save) |
| 2892 | return ret; |
| 2893 | |
| 2894 | mutex_lock(&card_list_lock); |
| 2895 | list_for_each_entry(chip, &card_list, list) { |
| 2896 | if (!chip->bus || chip->disabled) |
| 2897 | continue; |
| 2898 | list_for_each_entry(c, &chip->bus->codec_list, list) |
| 2899 | snd_hda_power_sync(c); |
| 2900 | } |
| 2901 | mutex_unlock(&card_list_lock); |
| 2902 | return 0; |
| 2903 | } |
| 2904 | #else |
| 2905 | #define azx_add_card_list(chip) /* NOP */ |
| 2906 | #define azx_del_card_list(chip) /* NOP */ |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 2907 | #endif /* CONFIG_PM */ |
Takashi Iwai | 5c0b9be | 2008-12-11 11:47:17 +0100 | [diff] [blame] | 2908 | |
Takashi Iwai | 7ccbde5 | 2012-08-14 18:10:09 +0200 | [diff] [blame] | 2909 | #if defined(CONFIG_PM_SLEEP) || defined(SUPPORT_VGA_SWITCHEROO) |
Takashi Iwai | 5c0b9be | 2008-12-11 11:47:17 +0100 | [diff] [blame] | 2910 | /* |
| 2911 | * power management |
| 2912 | */ |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 2913 | static int azx_suspend(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2914 | { |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 2915 | struct pci_dev *pci = to_pci_dev(dev); |
| 2916 | struct snd_card *card = dev_get_drvdata(dev); |
Takashi Iwai | 421a125 | 2005-11-17 16:11:09 +0100 | [diff] [blame] | 2917 | struct azx *chip = card->private_data; |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 2918 | struct azx_pcm *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2919 | |
Takashi Iwai | c5c2152 | 2012-12-04 17:01:25 +0100 | [diff] [blame] | 2920 | if (chip->disabled) |
| 2921 | return 0; |
| 2922 | |
Takashi Iwai | 421a125 | 2005-11-17 16:11:09 +0100 | [diff] [blame] | 2923 | snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 2924 | azx_clear_irq_pending(chip); |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 2925 | list_for_each_entry(p, &chip->pcm_list, list) |
| 2926 | snd_pcm_suspend_all(p->pcm); |
Takashi Iwai | 0b7a2e9 | 2007-08-14 15:18:26 +0200 | [diff] [blame] | 2927 | if (chip->initialized) |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 2928 | snd_hda_suspend(chip->bus); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2929 | azx_stop_chip(chip); |
Mengdong Lin | 7295b26 | 2013-06-25 05:58:49 -0400 | [diff] [blame] | 2930 | azx_enter_link_reset(chip); |
Takashi Iwai | 30b3539 | 2006-10-11 18:52:53 +0200 | [diff] [blame] | 2931 | if (chip->irq >= 0) { |
Takashi Iwai | 43001c9 | 2006-09-08 12:30:03 +0200 | [diff] [blame] | 2932 | free_irq(chip->irq, chip); |
Takashi Iwai | 30b3539 | 2006-10-11 18:52:53 +0200 | [diff] [blame] | 2933 | chip->irq = -1; |
| 2934 | } |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 2935 | if (chip->msi) |
Takashi Iwai | 43001c9 | 2006-09-08 12:30:03 +0200 | [diff] [blame] | 2936 | pci_disable_msi(chip->pci); |
Takashi Iwai | 421a125 | 2005-11-17 16:11:09 +0100 | [diff] [blame] | 2937 | pci_disable_device(pci); |
| 2938 | pci_save_state(pci); |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 2939 | pci_set_power_state(pci, PCI_D3hot); |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 2940 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) |
| 2941 | hda_display_power(false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2942 | return 0; |
| 2943 | } |
| 2944 | |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 2945 | static int azx_resume(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2946 | { |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 2947 | struct pci_dev *pci = to_pci_dev(dev); |
| 2948 | struct snd_card *card = dev_get_drvdata(dev); |
Takashi Iwai | 421a125 | 2005-11-17 16:11:09 +0100 | [diff] [blame] | 2949 | struct azx *chip = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2950 | |
Takashi Iwai | c5c2152 | 2012-12-04 17:01:25 +0100 | [diff] [blame] | 2951 | if (chip->disabled) |
| 2952 | return 0; |
| 2953 | |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 2954 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) |
| 2955 | hda_display_power(true); |
Takashi Iwai | d14a7e0 | 2009-02-16 10:13:03 +0100 | [diff] [blame] | 2956 | pci_set_power_state(pci, PCI_D0); |
| 2957 | pci_restore_state(pci); |
Takashi Iwai | 30b3539 | 2006-10-11 18:52:53 +0200 | [diff] [blame] | 2958 | if (pci_enable_device(pci) < 0) { |
| 2959 | printk(KERN_ERR "hda-intel: pci_enable_device failed, " |
| 2960 | "disabling device\n"); |
| 2961 | snd_card_disconnect(card); |
| 2962 | return -EIO; |
| 2963 | } |
| 2964 | pci_set_master(pci); |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 2965 | if (chip->msi) |
| 2966 | if (pci_enable_msi(pci) < 0) |
| 2967 | chip->msi = 0; |
| 2968 | if (azx_acquire_irq(chip, 1) < 0) |
Takashi Iwai | 30b3539 | 2006-10-11 18:52:53 +0200 | [diff] [blame] | 2969 | return -EIO; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2970 | azx_init_pci(chip); |
Maxim Levitsky | d804ad9 | 2007-09-03 15:28:04 +0200 | [diff] [blame] | 2971 | |
Takashi Iwai | 7f30830 | 2012-05-08 16:52:23 +0200 | [diff] [blame] | 2972 | azx_init_chip(chip, 1); |
Maxim Levitsky | d804ad9 | 2007-09-03 15:28:04 +0200 | [diff] [blame] | 2973 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2974 | snd_hda_resume(chip->bus); |
Takashi Iwai | 421a125 | 2005-11-17 16:11:09 +0100 | [diff] [blame] | 2975 | snd_power_change_state(card, SNDRV_CTL_POWER_D0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2976 | return 0; |
| 2977 | } |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 2978 | #endif /* CONFIG_PM_SLEEP || SUPPORT_VGA_SWITCHEROO */ |
| 2979 | |
| 2980 | #ifdef CONFIG_PM_RUNTIME |
| 2981 | static int azx_runtime_suspend(struct device *dev) |
| 2982 | { |
| 2983 | struct snd_card *card = dev_get_drvdata(dev); |
| 2984 | struct azx *chip = card->private_data; |
| 2985 | |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 2986 | if (chip->disabled) |
| 2987 | return 0; |
| 2988 | |
| 2989 | if (!(chip->driver_caps & AZX_DCAPS_PM_RUNTIME)) |
| 2990 | return 0; |
| 2991 | |
Wang Xingchao | 7d4f606 | 2013-07-25 23:34:46 -0400 | [diff] [blame] | 2992 | /* enable controller wake up event */ |
| 2993 | azx_writew(chip, WAKEEN, azx_readw(chip, WAKEEN) | |
| 2994 | STATESTS_INT_MASK); |
| 2995 | |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 2996 | azx_stop_chip(chip); |
Takashi Iwai | 95f74c4 | 2013-10-24 01:24:15 +0200 | [diff] [blame] | 2997 | if (!chip->bus->avoid_link_reset) |
| 2998 | azx_enter_link_reset(chip); |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 2999 | azx_clear_irq_pending(chip); |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 3000 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) |
| 3001 | hda_display_power(false); |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 3002 | return 0; |
| 3003 | } |
| 3004 | |
| 3005 | static int azx_runtime_resume(struct device *dev) |
| 3006 | { |
| 3007 | struct snd_card *card = dev_get_drvdata(dev); |
| 3008 | struct azx *chip = card->private_data; |
Wang Xingchao | 7d4f606 | 2013-07-25 23:34:46 -0400 | [diff] [blame] | 3009 | struct hda_bus *bus; |
| 3010 | struct hda_codec *codec; |
| 3011 | int status; |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 3012 | |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 3013 | if (chip->disabled) |
| 3014 | return 0; |
| 3015 | |
| 3016 | if (!(chip->driver_caps & AZX_DCAPS_PM_RUNTIME)) |
| 3017 | return 0; |
| 3018 | |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 3019 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) |
| 3020 | hda_display_power(true); |
Wang Xingchao | 7d4f606 | 2013-07-25 23:34:46 -0400 | [diff] [blame] | 3021 | |
| 3022 | /* Read STATESTS before controller reset */ |
| 3023 | status = azx_readw(chip, STATESTS); |
| 3024 | |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 3025 | azx_init_pci(chip); |
| 3026 | azx_init_chip(chip, 1); |
Wang Xingchao | 7d4f606 | 2013-07-25 23:34:46 -0400 | [diff] [blame] | 3027 | |
| 3028 | bus = chip->bus; |
| 3029 | if (status && bus) { |
| 3030 | list_for_each_entry(codec, &bus->codec_list, list) |
| 3031 | if (status & (1 << codec->addr)) |
| 3032 | queue_delayed_work(codec->bus->workq, |
| 3033 | &codec->jackpoll_work, codec->jackpoll_interval); |
| 3034 | } |
| 3035 | |
| 3036 | /* disable controller Wake Up event*/ |
| 3037 | azx_writew(chip, WAKEEN, azx_readw(chip, WAKEEN) & |
| 3038 | ~STATESTS_INT_MASK); |
| 3039 | |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 3040 | return 0; |
| 3041 | } |
Takashi Iwai | 6eb827d | 2012-12-12 11:50:12 +0100 | [diff] [blame] | 3042 | |
| 3043 | static int azx_runtime_idle(struct device *dev) |
| 3044 | { |
| 3045 | struct snd_card *card = dev_get_drvdata(dev); |
| 3046 | struct azx *chip = card->private_data; |
| 3047 | |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 3048 | if (chip->disabled) |
| 3049 | return 0; |
| 3050 | |
Takashi Iwai | 6eb827d | 2012-12-12 11:50:12 +0100 | [diff] [blame] | 3051 | if (!power_save_controller || |
| 3052 | !(chip->driver_caps & AZX_DCAPS_PM_RUNTIME)) |
| 3053 | return -EBUSY; |
| 3054 | |
| 3055 | return 0; |
| 3056 | } |
| 3057 | |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 3058 | #endif /* CONFIG_PM_RUNTIME */ |
| 3059 | |
| 3060 | #ifdef CONFIG_PM |
| 3061 | static const struct dev_pm_ops azx_pm = { |
| 3062 | SET_SYSTEM_SLEEP_PM_OPS(azx_suspend, azx_resume) |
Takashi Iwai | 6eb827d | 2012-12-12 11:50:12 +0100 | [diff] [blame] | 3063 | SET_RUNTIME_PM_OPS(azx_runtime_suspend, azx_runtime_resume, azx_runtime_idle) |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 3064 | }; |
| 3065 | |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 3066 | #define AZX_PM_OPS &azx_pm |
| 3067 | #else |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 3068 | #define AZX_PM_OPS NULL |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 3069 | #endif /* CONFIG_PM */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3070 | |
| 3071 | |
| 3072 | /* |
Takashi Iwai | 0cbf009 | 2008-10-29 16:18:25 +0100 | [diff] [blame] | 3073 | * reboot notifier for hang-up problem at power-down |
| 3074 | */ |
| 3075 | static int azx_halt(struct notifier_block *nb, unsigned long event, void *buf) |
| 3076 | { |
| 3077 | struct azx *chip = container_of(nb, struct azx, reboot_notifier); |
Takashi Iwai | fb8d1a3 | 2009-11-10 16:02:29 +0100 | [diff] [blame] | 3078 | snd_hda_bus_reboot_notify(chip->bus); |
Takashi Iwai | 0cbf009 | 2008-10-29 16:18:25 +0100 | [diff] [blame] | 3079 | azx_stop_chip(chip); |
| 3080 | return NOTIFY_OK; |
| 3081 | } |
| 3082 | |
| 3083 | static void azx_notifier_register(struct azx *chip) |
| 3084 | { |
| 3085 | chip->reboot_notifier.notifier_call = azx_halt; |
| 3086 | register_reboot_notifier(&chip->reboot_notifier); |
| 3087 | } |
| 3088 | |
| 3089 | static void azx_notifier_unregister(struct azx *chip) |
| 3090 | { |
| 3091 | if (chip->reboot_notifier.notifier_call) |
| 3092 | unregister_reboot_notifier(&chip->reboot_notifier); |
| 3093 | } |
| 3094 | |
Takashi Iwai | 48c8b0e | 2012-12-07 07:40:35 +0100 | [diff] [blame] | 3095 | static int azx_probe_continue(struct azx *chip); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3096 | |
Steven Newbury | 8393ec4a | 2012-06-08 13:06:29 +0200 | [diff] [blame] | 3097 | #ifdef SUPPORT_VGA_SWITCHEROO |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3098 | static struct pci_dev *get_bound_vga(struct pci_dev *pci); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3099 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3100 | static void azx_vs_set_state(struct pci_dev *pci, |
| 3101 | enum vga_switcheroo_state state) |
| 3102 | { |
| 3103 | struct snd_card *card = pci_get_drvdata(pci); |
| 3104 | struct azx *chip = card->private_data; |
| 3105 | bool disabled; |
| 3106 | |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 3107 | wait_for_completion(&chip->probe_wait); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3108 | if (chip->init_failed) |
| 3109 | return; |
| 3110 | |
| 3111 | disabled = (state == VGA_SWITCHEROO_OFF); |
| 3112 | if (chip->disabled == disabled) |
| 3113 | return; |
| 3114 | |
| 3115 | if (!chip->bus) { |
| 3116 | chip->disabled = disabled; |
| 3117 | if (!disabled) { |
| 3118 | snd_printk(KERN_INFO SFX |
| 3119 | "%s: Start delayed initialization\n", |
| 3120 | pci_name(chip->pci)); |
Takashi Iwai | 5c90680 | 2013-05-30 22:07:09 +0800 | [diff] [blame] | 3121 | if (azx_probe_continue(chip) < 0) { |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3122 | snd_printk(KERN_ERR SFX |
| 3123 | "%s: initialization error\n", |
| 3124 | pci_name(chip->pci)); |
| 3125 | chip->init_failed = true; |
| 3126 | } |
| 3127 | } |
| 3128 | } else { |
| 3129 | snd_printk(KERN_INFO SFX |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3130 | "%s: %s via VGA-switcheroo\n", pci_name(chip->pci), |
| 3131 | disabled ? "Disabling" : "Enabling"); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3132 | if (disabled) { |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 3133 | pm_runtime_put_sync_suspend(&pci->dev); |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 3134 | azx_suspend(&pci->dev); |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 3135 | /* when we get suspended by vga switcheroo we end up in D3cold, |
| 3136 | * however we have no ACPI handle, so pci/acpi can't put us there, |
| 3137 | * put ourselves there */ |
| 3138 | pci->current_state = PCI_D3cold; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3139 | chip->disabled = true; |
Takashi Iwai | 128960a | 2012-10-12 17:28:18 +0200 | [diff] [blame] | 3140 | if (snd_hda_lock_devices(chip->bus)) |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3141 | snd_printk(KERN_WARNING SFX "%s: Cannot lock devices!\n", |
| 3142 | pci_name(chip->pci)); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3143 | } else { |
| 3144 | snd_hda_unlock_devices(chip->bus); |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 3145 | pm_runtime_get_noresume(&pci->dev); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3146 | chip->disabled = false; |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 3147 | azx_resume(&pci->dev); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3148 | } |
| 3149 | } |
| 3150 | } |
| 3151 | |
| 3152 | static bool azx_vs_can_switch(struct pci_dev *pci) |
| 3153 | { |
| 3154 | struct snd_card *card = pci_get_drvdata(pci); |
| 3155 | struct azx *chip = card->private_data; |
| 3156 | |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 3157 | wait_for_completion(&chip->probe_wait); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3158 | if (chip->init_failed) |
| 3159 | return false; |
| 3160 | if (chip->disabled || !chip->bus) |
| 3161 | return true; |
| 3162 | if (snd_hda_lock_devices(chip->bus)) |
| 3163 | return false; |
| 3164 | snd_hda_unlock_devices(chip->bus); |
| 3165 | return true; |
| 3166 | } |
| 3167 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3168 | static void init_vga_switcheroo(struct azx *chip) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3169 | { |
| 3170 | struct pci_dev *p = get_bound_vga(chip->pci); |
| 3171 | if (p) { |
| 3172 | snd_printk(KERN_INFO SFX |
| 3173 | "%s: Handle VGA-switcheroo audio client\n", |
| 3174 | pci_name(chip->pci)); |
| 3175 | chip->use_vga_switcheroo = 1; |
| 3176 | pci_dev_put(p); |
| 3177 | } |
| 3178 | } |
| 3179 | |
| 3180 | static const struct vga_switcheroo_client_ops azx_vs_ops = { |
| 3181 | .set_gpu_state = azx_vs_set_state, |
| 3182 | .can_switch = azx_vs_can_switch, |
| 3183 | }; |
| 3184 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3185 | static int register_vga_switcheroo(struct azx *chip) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3186 | { |
Takashi Iwai | 128960a | 2012-10-12 17:28:18 +0200 | [diff] [blame] | 3187 | int err; |
| 3188 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3189 | if (!chip->use_vga_switcheroo) |
| 3190 | return 0; |
| 3191 | /* FIXME: currently only handling DIS controller |
| 3192 | * is there any machine with two switchable HDMI audio controllers? |
| 3193 | */ |
Takashi Iwai | 128960a | 2012-10-12 17:28:18 +0200 | [diff] [blame] | 3194 | err = vga_switcheroo_register_audio_client(chip->pci, &azx_vs_ops, |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3195 | VGA_SWITCHEROO_DIS, |
| 3196 | chip->bus != NULL); |
Takashi Iwai | 128960a | 2012-10-12 17:28:18 +0200 | [diff] [blame] | 3197 | if (err < 0) |
| 3198 | return err; |
| 3199 | chip->vga_switcheroo_registered = 1; |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 3200 | |
| 3201 | /* register as an optimus hdmi audio power domain */ |
| 3202 | vga_switcheroo_init_domain_pm_optimus_hdmi_audio(&chip->pci->dev, &chip->hdmi_pm_domain); |
Takashi Iwai | 128960a | 2012-10-12 17:28:18 +0200 | [diff] [blame] | 3203 | return 0; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3204 | } |
| 3205 | #else |
| 3206 | #define init_vga_switcheroo(chip) /* NOP */ |
| 3207 | #define register_vga_switcheroo(chip) 0 |
Steven Newbury | 8393ec4a | 2012-06-08 13:06:29 +0200 | [diff] [blame] | 3208 | #define check_hdmi_disabled(pci) false |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3209 | #endif /* SUPPORT_VGA_SWITCHER */ |
| 3210 | |
Takashi Iwai | 0cbf009 | 2008-10-29 16:18:25 +0100 | [diff] [blame] | 3211 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3212 | * destructor |
| 3213 | */ |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 3214 | static int azx_free(struct azx *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3215 | { |
Wang Xingchao | c67e222 | 2013-05-30 22:07:08 +0800 | [diff] [blame] | 3216 | struct pci_dev *pci = chip->pci; |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 3217 | int i; |
| 3218 | |
Wang Xingchao | c67e222 | 2013-05-30 22:07:08 +0800 | [diff] [blame] | 3219 | if ((chip->driver_caps & AZX_DCAPS_PM_RUNTIME) |
| 3220 | && chip->running) |
| 3221 | pm_runtime_get_noresume(&pci->dev); |
| 3222 | |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 3223 | azx_del_card_list(chip); |
| 3224 | |
Takashi Iwai | 0cbf009 | 2008-10-29 16:18:25 +0100 | [diff] [blame] | 3225 | azx_notifier_unregister(chip); |
| 3226 | |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 3227 | chip->init_failed = 1; /* to be sure */ |
Daniel J Blueman | 44728e9 | 2012-12-18 23:59:33 +0800 | [diff] [blame] | 3228 | complete_all(&chip->probe_wait); |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 3229 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3230 | if (use_vga_switcheroo(chip)) { |
| 3231 | if (chip->disabled && chip->bus) |
| 3232 | snd_hda_unlock_devices(chip->bus); |
Takashi Iwai | 128960a | 2012-10-12 17:28:18 +0200 | [diff] [blame] | 3233 | if (chip->vga_switcheroo_registered) |
| 3234 | vga_switcheroo_unregister_client(chip->pci); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3235 | } |
| 3236 | |
Takashi Iwai | ce43fba | 2005-05-30 20:33:44 +0200 | [diff] [blame] | 3237 | if (chip->initialized) { |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 3238 | azx_clear_irq_pending(chip); |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 3239 | for (i = 0; i < chip->num_streams; i++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3240 | azx_stream_stop(chip, &chip->azx_dev[i]); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3241 | azx_stop_chip(chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3242 | } |
| 3243 | |
Jeff Garzik | f000fd8 | 2008-04-22 13:50:34 +0200 | [diff] [blame] | 3244 | if (chip->irq >= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3245 | free_irq(chip->irq, (void*)chip); |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 3246 | if (chip->msi) |
Takashi Iwai | 30b3539 | 2006-10-11 18:52:53 +0200 | [diff] [blame] | 3247 | pci_disable_msi(chip->pci); |
Takashi Iwai | f079c25 | 2006-06-01 11:42:14 +0200 | [diff] [blame] | 3248 | if (chip->remap_addr) |
| 3249 | iounmap(chip->remap_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3250 | |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 3251 | if (chip->azx_dev) { |
| 3252 | for (i = 0; i < chip->num_streams; i++) |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 3253 | if (chip->azx_dev[i].bdl.area) { |
| 3254 | mark_pages_wc(chip, &chip->azx_dev[i].bdl, false); |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 3255 | snd_dma_free_pages(&chip->azx_dev[i].bdl); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 3256 | } |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 3257 | } |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 3258 | if (chip->rb.area) { |
| 3259 | mark_pages_wc(chip, &chip->rb, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3260 | snd_dma_free_pages(&chip->rb); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 3261 | } |
| 3262 | if (chip->posbuf.area) { |
| 3263 | mark_pages_wc(chip, &chip->posbuf, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3264 | snd_dma_free_pages(&chip->posbuf); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 3265 | } |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3266 | if (chip->region_requested) |
| 3267 | pci_release_regions(chip->pci); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3268 | pci_disable_device(chip->pci); |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 3269 | kfree(chip->azx_dev); |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 3270 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
| 3271 | if (chip->fw) |
| 3272 | release_firmware(chip->fw); |
| 3273 | #endif |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 3274 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) { |
| 3275 | hda_display_power(false); |
| 3276 | hda_i915_exit(); |
| 3277 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3278 | kfree(chip); |
| 3279 | |
| 3280 | return 0; |
| 3281 | } |
| 3282 | |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 3283 | static int azx_dev_free(struct snd_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3284 | { |
| 3285 | return azx_free(device->device_data); |
| 3286 | } |
| 3287 | |
Steven Newbury | 8393ec4a | 2012-06-08 13:06:29 +0200 | [diff] [blame] | 3288 | #ifdef SUPPORT_VGA_SWITCHEROO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3289 | /* |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 3290 | * Check of disabled HDMI controller by vga-switcheroo |
| 3291 | */ |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3292 | static struct pci_dev *get_bound_vga(struct pci_dev *pci) |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 3293 | { |
| 3294 | struct pci_dev *p; |
| 3295 | |
| 3296 | /* check only discrete GPU */ |
| 3297 | switch (pci->vendor) { |
| 3298 | case PCI_VENDOR_ID_ATI: |
| 3299 | case PCI_VENDOR_ID_AMD: |
| 3300 | case PCI_VENDOR_ID_NVIDIA: |
| 3301 | if (pci->devfn == 1) { |
| 3302 | p = pci_get_domain_bus_and_slot(pci_domain_nr(pci->bus), |
| 3303 | pci->bus->number, 0); |
| 3304 | if (p) { |
| 3305 | if ((p->class >> 8) == PCI_CLASS_DISPLAY_VGA) |
| 3306 | return p; |
| 3307 | pci_dev_put(p); |
| 3308 | } |
| 3309 | } |
| 3310 | break; |
| 3311 | } |
| 3312 | return NULL; |
| 3313 | } |
| 3314 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3315 | static bool check_hdmi_disabled(struct pci_dev *pci) |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 3316 | { |
| 3317 | bool vga_inactive = false; |
| 3318 | struct pci_dev *p = get_bound_vga(pci); |
| 3319 | |
| 3320 | if (p) { |
Takashi Iwai | 12b78a7 | 2012-06-07 12:15:16 +0200 | [diff] [blame] | 3321 | if (vga_switcheroo_get_client_state(p) == VGA_SWITCHEROO_OFF) |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 3322 | vga_inactive = true; |
| 3323 | pci_dev_put(p); |
| 3324 | } |
| 3325 | return vga_inactive; |
| 3326 | } |
Steven Newbury | 8393ec4a | 2012-06-08 13:06:29 +0200 | [diff] [blame] | 3327 | #endif /* SUPPORT_VGA_SWITCHEROO */ |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 3328 | |
| 3329 | /* |
Takashi Iwai | 3372a15 | 2007-02-01 15:46:50 +0100 | [diff] [blame] | 3330 | * white/black-listing for position_fix |
| 3331 | */ |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3332 | static struct snd_pci_quirk position_fix_list[] = { |
Takashi Iwai | d2e1c97 | 2008-06-10 17:53:34 +0200 | [diff] [blame] | 3333 | SND_PCI_QUIRK(0x1028, 0x01cc, "Dell D820", POS_FIX_LPIB), |
| 3334 | SND_PCI_QUIRK(0x1028, 0x01de, "Dell Precision 390", POS_FIX_LPIB), |
Takashi Iwai | 2f703e7 | 2009-12-01 14:17:37 +0100 | [diff] [blame] | 3335 | SND_PCI_QUIRK(0x103c, 0x306d, "HP dv3", POS_FIX_LPIB), |
Takashi Iwai | d2e1c97 | 2008-06-10 17:53:34 +0200 | [diff] [blame] | 3336 | SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB), |
Daniel T Chen | dd37f8e | 2010-05-30 01:17:03 -0400 | [diff] [blame] | 3337 | SND_PCI_QUIRK(0x1043, 0x81b3, "ASUS", POS_FIX_LPIB), |
Daniel T Chen | 9f75c1b | 2010-05-30 13:08:41 -0400 | [diff] [blame] | 3338 | SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS M2V", POS_FIX_LPIB), |
Daniel T Chen | e96d312 | 2010-05-27 18:32:18 -0400 | [diff] [blame] | 3339 | SND_PCI_QUIRK(0x104d, 0x9069, "Sony VPCS11V9E", POS_FIX_LPIB), |
David Henningsson | b01de4f | 2012-01-12 16:31:14 +0100 | [diff] [blame] | 3340 | SND_PCI_QUIRK(0x10de, 0xcb89, "Macbook Pro 7,1", POS_FIX_LPIB), |
Daniel T Chen | 61bb42c | 2010-05-29 11:04:11 -0400 | [diff] [blame] | 3341 | SND_PCI_QUIRK(0x1297, 0x3166, "Shuttle", POS_FIX_LPIB), |
Daniel T Chen | 9ec8dda | 2010-03-28 02:34:40 -0400 | [diff] [blame] | 3342 | SND_PCI_QUIRK(0x1458, 0xa022, "ga-ma770-ud3", POS_FIX_LPIB), |
Takashi Iwai | 45d4ebf | 2009-11-30 11:58:30 +0100 | [diff] [blame] | 3343 | SND_PCI_QUIRK(0x1462, 0x1002, "MSI Wind U115", POS_FIX_LPIB), |
Takashi Iwai | 8815cd0 | 2010-04-15 09:02:41 +0200 | [diff] [blame] | 3344 | SND_PCI_QUIRK(0x1565, 0x8218, "Biostar Microtech", POS_FIX_LPIB), |
Daniel T Chen | b90c076 | 2010-05-30 19:31:41 -0400 | [diff] [blame] | 3345 | SND_PCI_QUIRK(0x1849, 0x0888, "775Dual-VSTA", POS_FIX_LPIB), |
Daniel T Chen | 0e0280d | 2010-04-21 19:55:43 -0400 | [diff] [blame] | 3346 | SND_PCI_QUIRK(0x8086, 0x2503, "DG965OT AAD63733-203", POS_FIX_LPIB), |
Takashi Iwai | 3372a15 | 2007-02-01 15:46:50 +0100 | [diff] [blame] | 3347 | {} |
| 3348 | }; |
| 3349 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3350 | static int check_position_fix(struct azx *chip, int fix) |
Takashi Iwai | 3372a15 | 2007-02-01 15:46:50 +0100 | [diff] [blame] | 3351 | { |
| 3352 | const struct snd_pci_quirk *q; |
| 3353 | |
Takashi Iwai | c673ba1 | 2009-03-17 07:49:14 +0100 | [diff] [blame] | 3354 | switch (fix) { |
Takashi Iwai | 1dac669 | 2012-09-13 14:59:47 +0200 | [diff] [blame] | 3355 | case POS_FIX_AUTO: |
Takashi Iwai | c673ba1 | 2009-03-17 07:49:14 +0100 | [diff] [blame] | 3356 | case POS_FIX_LPIB: |
| 3357 | case POS_FIX_POSBUF: |
David Henningsson | 4cb3631 | 2010-09-30 10:12:50 +0200 | [diff] [blame] | 3358 | case POS_FIX_VIACOMBO: |
Takashi Iwai | a6f2fd5 | 2012-02-28 11:58:40 +0100 | [diff] [blame] | 3359 | case POS_FIX_COMBO: |
Takashi Iwai | c673ba1 | 2009-03-17 07:49:14 +0100 | [diff] [blame] | 3360 | return fix; |
| 3361 | } |
| 3362 | |
Takashi Iwai | c673ba1 | 2009-03-17 07:49:14 +0100 | [diff] [blame] | 3363 | q = snd_pci_quirk_lookup(chip->pci, position_fix_list); |
| 3364 | if (q) { |
| 3365 | printk(KERN_INFO |
| 3366 | "hda_intel: position_fix set to %d " |
| 3367 | "for device %04x:%04x\n", |
| 3368 | q->value, q->subvendor, q->subdevice); |
| 3369 | return q->value; |
Takashi Iwai | 3372a15 | 2007-02-01 15:46:50 +0100 | [diff] [blame] | 3370 | } |
David Henningsson | bdd9ef2 | 2010-10-04 12:02:14 +0200 | [diff] [blame] | 3371 | |
| 3372 | /* Check VIA/ATI HD Audio Controller exist */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 3373 | if (chip->driver_caps & AZX_DCAPS_POSFIX_VIA) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3374 | snd_printd(SFX "%s: Using VIACOMBO position fix\n", pci_name(chip->pci)); |
David Henningsson | bdd9ef2 | 2010-10-04 12:02:14 +0200 | [diff] [blame] | 3375 | return POS_FIX_VIACOMBO; |
| 3376 | } |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 3377 | if (chip->driver_caps & AZX_DCAPS_POSFIX_LPIB) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3378 | snd_printd(SFX "%s: Using LPIB position fix\n", pci_name(chip->pci)); |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 3379 | return POS_FIX_LPIB; |
| 3380 | } |
Takashi Iwai | c673ba1 | 2009-03-17 07:49:14 +0100 | [diff] [blame] | 3381 | return POS_FIX_AUTO; |
Takashi Iwai | 3372a15 | 2007-02-01 15:46:50 +0100 | [diff] [blame] | 3382 | } |
| 3383 | |
| 3384 | /* |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 3385 | * black-lists for probe_mask |
| 3386 | */ |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3387 | static struct snd_pci_quirk probe_mask_list[] = { |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 3388 | /* Thinkpad often breaks the controller communication when accessing |
| 3389 | * to the non-working (or non-existing) modem codec slot. |
| 3390 | */ |
| 3391 | SND_PCI_QUIRK(0x1014, 0x05b7, "Thinkpad Z60", 0x01), |
| 3392 | SND_PCI_QUIRK(0x17aa, 0x2010, "Thinkpad X/T/R60", 0x01), |
| 3393 | SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X/T/R61", 0x01), |
Takashi Iwai | 0edb945 | 2008-11-07 14:53:09 +0100 | [diff] [blame] | 3394 | /* broken BIOS */ |
| 3395 | SND_PCI_QUIRK(0x1028, 0x20ac, "Dell Studio Desktop", 0x01), |
Takashi Iwai | ef1681d | 2008-11-24 17:29:28 +0100 | [diff] [blame] | 3396 | /* including bogus ALC268 in slot#2 that conflicts with ALC888 */ |
| 3397 | SND_PCI_QUIRK(0x17c0, 0x4085, "Medion MD96630", 0x01), |
Takashi Iwai | 20db7cb | 2009-02-13 08:18:48 +0100 | [diff] [blame] | 3398 | /* forced codec slots */ |
Ozan Çağlayan | 9357484 | 2009-05-23 15:00:04 +0300 | [diff] [blame] | 3399 | SND_PCI_QUIRK(0x1043, 0x1262, "ASUS W5Fm", 0x103), |
Takashi Iwai | 20db7cb | 2009-02-13 08:18:48 +0100 | [diff] [blame] | 3400 | SND_PCI_QUIRK(0x1046, 0x1262, "ASUS W5F", 0x103), |
Jaroslav Kysela | f3af905 | 2012-04-26 17:52:35 +0200 | [diff] [blame] | 3401 | /* WinFast VP200 H (Teradici) user reported broken communication */ |
| 3402 | SND_PCI_QUIRK(0x3a21, 0x040d, "WinFast VP200 H", 0x101), |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 3403 | {} |
| 3404 | }; |
| 3405 | |
Takashi Iwai | f1eaaee | 2009-02-13 08:16:55 +0100 | [diff] [blame] | 3406 | #define AZX_FORCE_CODEC_MASK 0x100 |
| 3407 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3408 | static void check_probe_mask(struct azx *chip, int dev) |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 3409 | { |
| 3410 | const struct snd_pci_quirk *q; |
| 3411 | |
Takashi Iwai | f1eaaee | 2009-02-13 08:16:55 +0100 | [diff] [blame] | 3412 | chip->codec_probe_mask = probe_mask[dev]; |
| 3413 | if (chip->codec_probe_mask == -1) { |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 3414 | q = snd_pci_quirk_lookup(chip->pci, probe_mask_list); |
| 3415 | if (q) { |
| 3416 | printk(KERN_INFO |
| 3417 | "hda_intel: probe_mask set to 0x%x " |
| 3418 | "for device %04x:%04x\n", |
| 3419 | q->value, q->subvendor, q->subdevice); |
Takashi Iwai | f1eaaee | 2009-02-13 08:16:55 +0100 | [diff] [blame] | 3420 | chip->codec_probe_mask = q->value; |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 3421 | } |
| 3422 | } |
Takashi Iwai | f1eaaee | 2009-02-13 08:16:55 +0100 | [diff] [blame] | 3423 | |
| 3424 | /* check forced option */ |
| 3425 | if (chip->codec_probe_mask != -1 && |
| 3426 | (chip->codec_probe_mask & AZX_FORCE_CODEC_MASK)) { |
| 3427 | chip->codec_mask = chip->codec_probe_mask & 0xff; |
| 3428 | printk(KERN_INFO "hda_intel: codec_mask forced to 0x%x\n", |
| 3429 | chip->codec_mask); |
| 3430 | } |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 3431 | } |
| 3432 | |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 3433 | /* |
Takashi Iwai | 71623855 | 2009-09-28 13:14:04 +0200 | [diff] [blame] | 3434 | * white/black-list for enable_msi |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 3435 | */ |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3436 | static struct snd_pci_quirk msi_black_list[] = { |
Takashi Iwai | 9dc8398 | 2009-12-22 08:15:01 +0100 | [diff] [blame] | 3437 | SND_PCI_QUIRK(0x1043, 0x81f2, "ASUS", 0), /* Athlon64 X2 + nvidia */ |
Takashi Iwai | 0a27fcf | 2010-02-15 17:05:28 +0100 | [diff] [blame] | 3438 | SND_PCI_QUIRK(0x1043, 0x81f6, "ASUS", 0), /* nvidia */ |
Ralf Gerbig | ecd2162 | 2010-03-09 18:25:47 +0100 | [diff] [blame] | 3439 | SND_PCI_QUIRK(0x1043, 0x822d, "ASUS", 0), /* Athlon64 X2 + nvidia MCP55 */ |
Takashi Iwai | 83f7215 | 2013-09-09 10:20:48 +0200 | [diff] [blame] | 3440 | SND_PCI_QUIRK(0x1179, 0xfb44, "Toshiba Satellite C870", 0), /* AMD Hudson */ |
Michele Ballabio | 4193d13 | 2010-03-06 21:06:46 +0100 | [diff] [blame] | 3441 | SND_PCI_QUIRK(0x1849, 0x0888, "ASRock", 0), /* Athlon64 X2 + nvidia */ |
Takashi Iwai | 3815595 | 2010-04-04 12:14:03 +0200 | [diff] [blame] | 3442 | SND_PCI_QUIRK(0xa0a0, 0x0575, "Aopen MZ915-M", 0), /* ICH6 */ |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 3443 | {} |
| 3444 | }; |
| 3445 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3446 | static void check_msi(struct azx *chip) |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 3447 | { |
| 3448 | const struct snd_pci_quirk *q; |
| 3449 | |
Takashi Iwai | 71623855 | 2009-09-28 13:14:04 +0200 | [diff] [blame] | 3450 | if (enable_msi >= 0) { |
| 3451 | chip->msi = !!enable_msi; |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 3452 | return; |
Takashi Iwai | 71623855 | 2009-09-28 13:14:04 +0200 | [diff] [blame] | 3453 | } |
| 3454 | chip->msi = 1; /* enable MSI as default */ |
| 3455 | q = snd_pci_quirk_lookup(chip->pci, msi_black_list); |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 3456 | if (q) { |
| 3457 | printk(KERN_INFO |
| 3458 | "hda_intel: msi for device %04x:%04x set to %d\n", |
| 3459 | q->subvendor, q->subdevice, q->value); |
| 3460 | chip->msi = q->value; |
Takashi Iwai | 80c43ed | 2010-03-15 15:51:53 +0100 | [diff] [blame] | 3461 | return; |
| 3462 | } |
| 3463 | |
| 3464 | /* NVidia chipsets seem to cause troubles with MSI */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 3465 | if (chip->driver_caps & AZX_DCAPS_NO_MSI) { |
| 3466 | printk(KERN_INFO "hda_intel: Disabling MSI\n"); |
Takashi Iwai | 80c43ed | 2010-03-15 15:51:53 +0100 | [diff] [blame] | 3467 | chip->msi = 0; |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 3468 | } |
| 3469 | } |
| 3470 | |
Takashi Iwai | a1585d7 | 2011-12-14 09:27:04 +0100 | [diff] [blame] | 3471 | /* check the snoop mode availability */ |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3472 | static void azx_check_snoop_available(struct azx *chip) |
Takashi Iwai | a1585d7 | 2011-12-14 09:27:04 +0100 | [diff] [blame] | 3473 | { |
| 3474 | bool snoop = chip->snoop; |
| 3475 | |
| 3476 | switch (chip->driver_type) { |
| 3477 | case AZX_DRIVER_VIA: |
| 3478 | /* force to non-snoop mode for a new VIA controller |
| 3479 | * when BIOS is set |
| 3480 | */ |
| 3481 | if (snoop) { |
| 3482 | u8 val; |
| 3483 | pci_read_config_byte(chip->pci, 0x42, &val); |
| 3484 | if (!(val & 0x80) && chip->pci->revision == 0x30) |
| 3485 | snoop = false; |
| 3486 | } |
| 3487 | break; |
| 3488 | case AZX_DRIVER_ATIHDMI_NS: |
| 3489 | /* new ATI HDMI requires non-snoop */ |
| 3490 | snoop = false; |
| 3491 | break; |
Takashi Iwai | c1279f8 | 2013-02-07 17:36:22 +0100 | [diff] [blame] | 3492 | case AZX_DRIVER_CTHDA: |
| 3493 | snoop = false; |
| 3494 | break; |
Takashi Iwai | a1585d7 | 2011-12-14 09:27:04 +0100 | [diff] [blame] | 3495 | } |
| 3496 | |
| 3497 | if (snoop != chip->snoop) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3498 | snd_printk(KERN_INFO SFX "%s: Force to %s mode\n", |
| 3499 | pci_name(chip->pci), snoop ? "snoop" : "non-snoop"); |
Takashi Iwai | a1585d7 | 2011-12-14 09:27:04 +0100 | [diff] [blame] | 3500 | chip->snoop = snoop; |
| 3501 | } |
| 3502 | } |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 3503 | |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 3504 | #ifdef CONFIG_SND_HDA_I915 |
| 3505 | static void azx_probe_work(struct work_struct *work) |
| 3506 | { |
| 3507 | azx_probe_continue(container_of(work, struct azx, probe_work)); |
| 3508 | } |
| 3509 | #endif |
| 3510 | |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 3511 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3512 | * constructor |
| 3513 | */ |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3514 | static int azx_create(struct snd_card *card, struct pci_dev *pci, |
| 3515 | int dev, unsigned int driver_caps, |
| 3516 | struct azx **rchip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3517 | { |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 3518 | static struct snd_device_ops ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3519 | .dev_free = azx_dev_free, |
| 3520 | }; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3521 | struct azx *chip; |
| 3522 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3523 | |
| 3524 | *rchip = NULL; |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 3525 | |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 3526 | err = pci_enable_device(pci); |
| 3527 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3528 | return err; |
| 3529 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 3530 | chip = kzalloc(sizeof(*chip), GFP_KERNEL); |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 3531 | if (!chip) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3532 | snd_printk(KERN_ERR SFX "%s: Cannot allocate chip\n", pci_name(pci)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3533 | pci_disable_device(pci); |
| 3534 | return -ENOMEM; |
| 3535 | } |
| 3536 | |
| 3537 | spin_lock_init(&chip->reg_lock); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3538 | mutex_init(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3539 | chip->card = card; |
| 3540 | chip->pci = pci; |
| 3541 | chip->irq = -1; |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 3542 | chip->driver_caps = driver_caps; |
| 3543 | chip->driver_type = driver_caps & 0xff; |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 3544 | check_msi(chip); |
Takashi Iwai | 555e219 | 2008-06-10 17:53:34 +0200 | [diff] [blame] | 3545 | chip->dev_index = dev; |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 3546 | INIT_WORK(&chip->irq_pending_work, azx_irq_pending_work); |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 3547 | INIT_LIST_HEAD(&chip->pcm_list); |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 3548 | INIT_LIST_HEAD(&chip->list); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3549 | init_vga_switcheroo(chip); |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 3550 | init_completion(&chip->probe_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3551 | |
Shahin Ghazinouri | beaffc3 | 2010-05-11 08:19:55 +0200 | [diff] [blame] | 3552 | chip->position_fix[0] = chip->position_fix[1] = |
| 3553 | check_position_fix(chip, position_fix[dev]); |
Takashi Iwai | a6f2fd5 | 2012-02-28 11:58:40 +0100 | [diff] [blame] | 3554 | /* combo mode uses LPIB for playback */ |
| 3555 | if (chip->position_fix[0] == POS_FIX_COMBO) { |
| 3556 | chip->position_fix[0] = POS_FIX_LPIB; |
| 3557 | chip->position_fix[1] = POS_FIX_AUTO; |
| 3558 | } |
| 3559 | |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 3560 | check_probe_mask(chip, dev); |
Takashi Iwai | 3372a15 | 2007-02-01 15:46:50 +0100 | [diff] [blame] | 3561 | |
Takashi Iwai | 2734616 | 2006-01-12 18:28:44 +0100 | [diff] [blame] | 3562 | chip->single_cmd = single_cmd; |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 3563 | chip->snoop = hda_snoop; |
Takashi Iwai | a1585d7 | 2011-12-14 09:27:04 +0100 | [diff] [blame] | 3564 | azx_check_snoop_available(chip); |
Takashi Iwai | c74db86 | 2005-05-12 14:26:27 +0200 | [diff] [blame] | 3565 | |
Takashi Iwai | 5c0d7bc | 2008-06-10 17:53:35 +0200 | [diff] [blame] | 3566 | if (bdl_pos_adj[dev] < 0) { |
| 3567 | switch (chip->driver_type) { |
Takashi Iwai | 0c6341a | 2008-06-13 20:50:27 +0200 | [diff] [blame] | 3568 | case AZX_DRIVER_ICH: |
Seth Heasley | 32679f9 | 2010-02-22 17:31:09 -0800 | [diff] [blame] | 3569 | case AZX_DRIVER_PCH: |
Takashi Iwai | 0c6341a | 2008-06-13 20:50:27 +0200 | [diff] [blame] | 3570 | bdl_pos_adj[dev] = 1; |
Takashi Iwai | 5c0d7bc | 2008-06-10 17:53:35 +0200 | [diff] [blame] | 3571 | break; |
| 3572 | default: |
Takashi Iwai | 0c6341a | 2008-06-13 20:50:27 +0200 | [diff] [blame] | 3573 | bdl_pos_adj[dev] = 32; |
Takashi Iwai | 5c0d7bc | 2008-06-10 17:53:35 +0200 | [diff] [blame] | 3574 | break; |
| 3575 | } |
| 3576 | } |
| 3577 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3578 | err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops); |
| 3579 | if (err < 0) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3580 | snd_printk(KERN_ERR SFX "%s: Error creating device [card]!\n", |
| 3581 | pci_name(chip->pci)); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3582 | azx_free(chip); |
| 3583 | return err; |
| 3584 | } |
| 3585 | |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 3586 | #ifdef CONFIG_SND_HDA_I915 |
| 3587 | /* continue probing in work context as may trigger request module */ |
| 3588 | INIT_WORK(&chip->probe_work, azx_probe_work); |
| 3589 | #endif |
| 3590 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3591 | *rchip = chip; |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 3592 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3593 | return 0; |
| 3594 | } |
| 3595 | |
Takashi Iwai | 48c8b0e | 2012-12-07 07:40:35 +0100 | [diff] [blame] | 3596 | static int azx_first_init(struct azx *chip) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3597 | { |
| 3598 | int dev = chip->dev_index; |
| 3599 | struct pci_dev *pci = chip->pci; |
| 3600 | struct snd_card *card = chip->card; |
| 3601 | int i, err; |
| 3602 | unsigned short gcap; |
| 3603 | |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 3604 | #if BITS_PER_LONG != 64 |
| 3605 | /* Fix up base address on ULI M5461 */ |
| 3606 | if (chip->driver_type == AZX_DRIVER_ULI) { |
| 3607 | u16 tmp3; |
| 3608 | pci_read_config_word(pci, 0x40, &tmp3); |
| 3609 | pci_write_config_word(pci, 0x40, tmp3 | 0x10); |
| 3610 | pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0); |
| 3611 | } |
| 3612 | #endif |
| 3613 | |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 3614 | err = pci_request_regions(pci, "ICH HD audio"); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3615 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3616 | return err; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3617 | chip->region_requested = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3618 | |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 3619 | chip->addr = pci_resource_start(pci, 0); |
Arjan van de Ven | 2f5ad54 | 2008-09-28 16:20:09 -0700 | [diff] [blame] | 3620 | chip->remap_addr = pci_ioremap_bar(pci, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3621 | if (chip->remap_addr == NULL) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3622 | snd_printk(KERN_ERR SFX "%s: ioremap error\n", pci_name(chip->pci)); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3623 | return -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3624 | } |
| 3625 | |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 3626 | if (chip->msi) |
| 3627 | if (pci_enable_msi(pci) < 0) |
| 3628 | chip->msi = 0; |
Stephen Hemminger | 7376d01 | 2006-08-21 19:17:46 +0200 | [diff] [blame] | 3629 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3630 | if (azx_acquire_irq(chip, 0) < 0) |
| 3631 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3632 | |
| 3633 | pci_set_master(pci); |
| 3634 | synchronize_irq(chip->irq); |
| 3635 | |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 3636 | gcap = azx_readw(chip, GCAP); |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3637 | snd_printdd(SFX "%s: chipset global capabilities = 0x%x\n", pci_name(chip->pci), gcap); |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 3638 | |
Andiry Brienza | dc4c2e6 | 2009-07-08 13:55:31 +0800 | [diff] [blame] | 3639 | /* disable SB600 64bit support for safety */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 3640 | if (chip->pci->vendor == PCI_VENDOR_ID_ATI) { |
Andiry Brienza | dc4c2e6 | 2009-07-08 13:55:31 +0800 | [diff] [blame] | 3641 | struct pci_dev *p_smbus; |
| 3642 | p_smbus = pci_get_device(PCI_VENDOR_ID_ATI, |
| 3643 | PCI_DEVICE_ID_ATI_SBX00_SMBUS, |
| 3644 | NULL); |
| 3645 | if (p_smbus) { |
| 3646 | if (p_smbus->revision < 0x30) |
| 3647 | gcap &= ~ICH6_GCAP_64OK; |
| 3648 | pci_dev_put(p_smbus); |
| 3649 | } |
| 3650 | } |
Takashi Iwai | 09240cf | 2009-03-17 07:47:18 +0100 | [diff] [blame] | 3651 | |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 3652 | /* disable 64bit DMA address on some devices */ |
| 3653 | if (chip->driver_caps & AZX_DCAPS_NO_64BIT) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3654 | snd_printd(SFX "%s: Disabling 64bit DMA\n", pci_name(chip->pci)); |
Jaroslav Kysela | 396087e | 2009-12-09 10:44:47 +0100 | [diff] [blame] | 3655 | gcap &= ~ICH6_GCAP_64OK; |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 3656 | } |
Jaroslav Kysela | 396087e | 2009-12-09 10:44:47 +0100 | [diff] [blame] | 3657 | |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 3658 | /* disable buffer size rounding to 128-byte multiples if supported */ |
Takashi Iwai | 7bfe059 | 2012-01-23 17:53:39 +0100 | [diff] [blame] | 3659 | if (align_buffer_size >= 0) |
| 3660 | chip->align_buffer_size = !!align_buffer_size; |
| 3661 | else { |
| 3662 | if (chip->driver_caps & AZX_DCAPS_BUFSIZE) |
| 3663 | chip->align_buffer_size = 0; |
| 3664 | else if (chip->driver_caps & AZX_DCAPS_ALIGN_BUFSIZE) |
| 3665 | chip->align_buffer_size = 1; |
| 3666 | else |
| 3667 | chip->align_buffer_size = 1; |
| 3668 | } |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 3669 | |
Takashi Iwai | cf7aaca | 2008-02-06 15:05:57 +0100 | [diff] [blame] | 3670 | /* allow 64bit DMA address if supported by H/W */ |
Takashi Iwai | b21fadb | 2009-05-28 12:26:15 +0200 | [diff] [blame] | 3671 | if ((gcap & ICH6_GCAP_64OK) && !pci_set_dma_mask(pci, DMA_BIT_MASK(64))) |
Yang Hongyang | e930438 | 2009-04-13 14:40:14 -0700 | [diff] [blame] | 3672 | pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(64)); |
Takashi Iwai | 09240cf | 2009-03-17 07:47:18 +0100 | [diff] [blame] | 3673 | else { |
Yang Hongyang | e930438 | 2009-04-13 14:40:14 -0700 | [diff] [blame] | 3674 | pci_set_dma_mask(pci, DMA_BIT_MASK(32)); |
| 3675 | pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(32)); |
Takashi Iwai | 09240cf | 2009-03-17 07:47:18 +0100 | [diff] [blame] | 3676 | } |
Takashi Iwai | cf7aaca | 2008-02-06 15:05:57 +0100 | [diff] [blame] | 3677 | |
Takashi Iwai | 8b6ed8e | 2008-02-19 11:36:35 +0100 | [diff] [blame] | 3678 | /* read number of streams from GCAP register instead of using |
| 3679 | * hardcoded value |
| 3680 | */ |
| 3681 | chip->capture_streams = (gcap >> 8) & 0x0f; |
| 3682 | chip->playback_streams = (gcap >> 12) & 0x0f; |
| 3683 | if (!chip->playback_streams && !chip->capture_streams) { |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 3684 | /* gcap didn't give any info, switching to old method */ |
| 3685 | |
| 3686 | switch (chip->driver_type) { |
| 3687 | case AZX_DRIVER_ULI: |
| 3688 | chip->playback_streams = ULI_NUM_PLAYBACK; |
| 3689 | chip->capture_streams = ULI_NUM_CAPTURE; |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 3690 | break; |
| 3691 | case AZX_DRIVER_ATIHDMI: |
Andiry Xu | 1815b34 | 2011-12-14 16:10:27 +0800 | [diff] [blame] | 3692 | case AZX_DRIVER_ATIHDMI_NS: |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 3693 | chip->playback_streams = ATIHDMI_NUM_PLAYBACK; |
| 3694 | chip->capture_streams = ATIHDMI_NUM_CAPTURE; |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 3695 | break; |
Yang, Libin | c4da29c | 2008-11-13 11:07:07 +0100 | [diff] [blame] | 3696 | case AZX_DRIVER_GENERIC: |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 3697 | default: |
| 3698 | chip->playback_streams = ICH6_NUM_PLAYBACK; |
| 3699 | chip->capture_streams = ICH6_NUM_CAPTURE; |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 3700 | break; |
| 3701 | } |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 3702 | } |
Takashi Iwai | 8b6ed8e | 2008-02-19 11:36:35 +0100 | [diff] [blame] | 3703 | chip->capture_index_offset = 0; |
| 3704 | chip->playback_index_offset = chip->capture_streams; |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 3705 | chip->num_streams = chip->playback_streams + chip->capture_streams; |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 3706 | chip->azx_dev = kcalloc(chip->num_streams, sizeof(*chip->azx_dev), |
| 3707 | GFP_KERNEL); |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 3708 | if (!chip->azx_dev) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3709 | snd_printk(KERN_ERR SFX "%s: cannot malloc azx_dev\n", pci_name(chip->pci)); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3710 | return -ENOMEM; |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 3711 | } |
| 3712 | |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 3713 | for (i = 0; i < chip->num_streams; i++) { |
Takashi Iwai | eb49faa | 2013-03-15 09:19:11 +0100 | [diff] [blame] | 3714 | dsp_lock_init(&chip->azx_dev[i]); |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 3715 | /* allocate memory for the BDL for each stream */ |
| 3716 | err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, |
| 3717 | snd_dma_pci_data(chip->pci), |
| 3718 | BDL_SIZE, &chip->azx_dev[i].bdl); |
| 3719 | if (err < 0) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3720 | snd_printk(KERN_ERR SFX "%s: cannot allocate BDL\n", pci_name(chip->pci)); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3721 | return -ENOMEM; |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 3722 | } |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 3723 | mark_pages_wc(chip, &chip->azx_dev[i].bdl, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3724 | } |
Takashi Iwai | 0be3b5d | 2005-09-05 17:11:40 +0200 | [diff] [blame] | 3725 | /* allocate memory for the position buffer */ |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 3726 | err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, |
| 3727 | snd_dma_pci_data(chip->pci), |
| 3728 | chip->num_streams * 8, &chip->posbuf); |
| 3729 | if (err < 0) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3730 | snd_printk(KERN_ERR SFX "%s: cannot allocate posbuf\n", pci_name(chip->pci)); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3731 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3732 | } |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 3733 | mark_pages_wc(chip, &chip->posbuf, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3734 | /* allocate CORB/RIRB */ |
Takashi Iwai | 81740861 | 2009-05-26 15:22:00 +0200 | [diff] [blame] | 3735 | err = azx_alloc_cmd_io(chip); |
| 3736 | if (err < 0) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3737 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3738 | |
| 3739 | /* initialize streams */ |
| 3740 | azx_init_stream(chip); |
| 3741 | |
| 3742 | /* initialize chip */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3743 | azx_init_pci(chip); |
Jaroslav Kysela | 10e77dd | 2010-03-26 11:04:38 +0100 | [diff] [blame] | 3744 | azx_init_chip(chip, (probe_only[dev] & 2) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3745 | |
| 3746 | /* codec detection */ |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 3747 | if (!chip->codec_mask) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3748 | snd_printk(KERN_ERR SFX "%s: no codecs found!\n", pci_name(chip->pci)); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3749 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3750 | } |
| 3751 | |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 3752 | strcpy(card->driver, "HDA-Intel"); |
Takashi Iwai | 18cb710 | 2009-04-16 10:22:24 +0200 | [diff] [blame] | 3753 | strlcpy(card->shortname, driver_short_names[chip->driver_type], |
| 3754 | sizeof(card->shortname)); |
| 3755 | snprintf(card->longname, sizeof(card->longname), |
| 3756 | "%s at 0x%lx irq %i", |
| 3757 | card->shortname, chip->addr, chip->irq); |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 3758 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3759 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3760 | } |
| 3761 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3762 | static void power_down_all_codecs(struct azx *chip) |
| 3763 | { |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 3764 | #ifdef CONFIG_PM |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3765 | /* The codecs were powered up in snd_hda_codec_new(). |
| 3766 | * Now all initialization done, so turn them down if possible |
| 3767 | */ |
| 3768 | struct hda_codec *codec; |
| 3769 | list_for_each_entry(codec, &chip->bus->codec_list, list) { |
| 3770 | snd_hda_power_down(codec); |
| 3771 | } |
| 3772 | #endif |
| 3773 | } |
| 3774 | |
Takashi Iwai | 97c6a3d | 2012-08-09 17:40:46 +0200 | [diff] [blame] | 3775 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 3776 | /* callback from request_firmware_nowait() */ |
| 3777 | static void azx_firmware_cb(const struct firmware *fw, void *context) |
| 3778 | { |
| 3779 | struct snd_card *card = context; |
| 3780 | struct azx *chip = card->private_data; |
| 3781 | struct pci_dev *pci = chip->pci; |
| 3782 | |
| 3783 | if (!fw) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3784 | snd_printk(KERN_ERR SFX "%s: Cannot load firmware, aborting\n", |
| 3785 | pci_name(chip->pci)); |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 3786 | goto error; |
| 3787 | } |
| 3788 | |
| 3789 | chip->fw = fw; |
| 3790 | if (!chip->disabled) { |
| 3791 | /* continue probing */ |
| 3792 | if (azx_probe_continue(chip)) |
| 3793 | goto error; |
| 3794 | } |
| 3795 | return; /* OK */ |
| 3796 | |
| 3797 | error: |
| 3798 | snd_card_free(card); |
| 3799 | pci_set_drvdata(pci, NULL); |
| 3800 | } |
Takashi Iwai | 97c6a3d | 2012-08-09 17:40:46 +0200 | [diff] [blame] | 3801 | #endif |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 3802 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3803 | static int azx_probe(struct pci_dev *pci, |
| 3804 | const struct pci_device_id *pci_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3805 | { |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 3806 | static int dev; |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 3807 | struct snd_card *card; |
| 3808 | struct azx *chip; |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 3809 | bool probe_now; |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 3810 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3811 | |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 3812 | if (dev >= SNDRV_CARDS) |
| 3813 | return -ENODEV; |
| 3814 | if (!enable[dev]) { |
| 3815 | dev++; |
| 3816 | return -ENOENT; |
| 3817 | } |
| 3818 | |
Takashi Iwai | e58de7b | 2008-12-28 16:44:30 +0100 | [diff] [blame] | 3819 | err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card); |
| 3820 | if (err < 0) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3821 | snd_printk(KERN_ERR "hda-intel: Error creating card!\n"); |
Takashi Iwai | e58de7b | 2008-12-28 16:44:30 +0100 | [diff] [blame] | 3822 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3823 | } |
| 3824 | |
Takashi Iwai | 4ea6fbc | 2009-06-17 09:52:54 +0200 | [diff] [blame] | 3825 | snd_card_set_dev(card, &pci->dev); |
| 3826 | |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 3827 | err = azx_create(card, pci, dev, pci_id->driver_data, &chip); |
Wu Fengguang | 41dda0f | 2008-11-20 09:24:52 +0800 | [diff] [blame] | 3828 | if (err < 0) |
| 3829 | goto out_free; |
Takashi Iwai | 421a125 | 2005-11-17 16:11:09 +0100 | [diff] [blame] | 3830 | card->private_data = chip; |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 3831 | |
| 3832 | pci_set_drvdata(pci, card); |
| 3833 | |
| 3834 | err = register_vga_switcheroo(chip); |
| 3835 | if (err < 0) { |
| 3836 | snd_printk(KERN_ERR SFX |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3837 | "%s: Error registering VGA-switcheroo client\n", pci_name(pci)); |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 3838 | goto out_free; |
| 3839 | } |
| 3840 | |
| 3841 | if (check_hdmi_disabled(pci)) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3842 | snd_printk(KERN_INFO SFX "%s: VGA controller is disabled\n", |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 3843 | pci_name(pci)); |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3844 | snd_printk(KERN_INFO SFX "%s: Delaying initialization\n", pci_name(pci)); |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 3845 | chip->disabled = true; |
| 3846 | } |
| 3847 | |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 3848 | probe_now = !chip->disabled; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3849 | |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 3850 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
| 3851 | if (patch[dev] && *patch[dev]) { |
Daniel J Blueman | 445a51b | 2012-12-05 23:04:21 +0800 | [diff] [blame] | 3852 | snd_printk(KERN_ERR SFX "%s: Applying patch firmware '%s'\n", |
| 3853 | pci_name(pci), patch[dev]); |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 3854 | err = request_firmware_nowait(THIS_MODULE, true, patch[dev], |
| 3855 | &pci->dev, GFP_KERNEL, card, |
| 3856 | azx_firmware_cb); |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 3857 | if (err < 0) |
| 3858 | goto out_free; |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 3859 | probe_now = false; /* continued in azx_firmware_cb() */ |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 3860 | } |
| 3861 | #endif /* CONFIG_SND_HDA_PATCH_LOADER */ |
| 3862 | |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 3863 | /* continue probing in work context, avoid request_module deadlock */ |
| 3864 | if (probe_now && (chip->driver_caps & AZX_DCAPS_I915_POWERWELL)) { |
| 3865 | #ifdef CONFIG_SND_HDA_I915 |
| 3866 | probe_now = false; |
| 3867 | schedule_work(&chip->probe_work); |
| 3868 | #else |
| 3869 | snd_printk(KERN_ERR SFX "Haswell must build in CONFIG_SND_HDA_I915\n"); |
| 3870 | #endif |
| 3871 | } |
| 3872 | |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 3873 | if (probe_now) { |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3874 | err = azx_probe_continue(chip); |
| 3875 | if (err < 0) |
| 3876 | goto out_free; |
| 3877 | } |
| 3878 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3879 | dev++; |
Daniel J Blueman | 44728e9 | 2012-12-18 23:59:33 +0800 | [diff] [blame] | 3880 | complete_all(&chip->probe_wait); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3881 | return 0; |
| 3882 | |
| 3883 | out_free: |
| 3884 | snd_card_free(card); |
| 3885 | return err; |
| 3886 | } |
| 3887 | |
Takashi Iwai | 48c8b0e | 2012-12-07 07:40:35 +0100 | [diff] [blame] | 3888 | static int azx_probe_continue(struct azx *chip) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3889 | { |
Wang Xingchao | c67e222 | 2013-05-30 22:07:08 +0800 | [diff] [blame] | 3890 | struct pci_dev *pci = chip->pci; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3891 | int dev = chip->dev_index; |
| 3892 | int err; |
| 3893 | |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 3894 | /* Request power well for Haswell HDA controller and codec */ |
| 3895 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) { |
David Henningsson | c841ad2 | 2013-08-19 13:32:30 +0200 | [diff] [blame] | 3896 | #ifdef CONFIG_SND_HDA_I915 |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 3897 | err = hda_i915_init(); |
| 3898 | if (err < 0) { |
| 3899 | snd_printk(KERN_ERR SFX "Error request power-well from i915\n"); |
| 3900 | goto out_free; |
| 3901 | } |
David Henningsson | c841ad2 | 2013-08-19 13:32:30 +0200 | [diff] [blame] | 3902 | #endif |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 3903 | hda_display_power(true); |
| 3904 | } |
| 3905 | |
Takashi Iwai | 5c90680 | 2013-05-30 22:07:09 +0800 | [diff] [blame] | 3906 | err = azx_first_init(chip); |
| 3907 | if (err < 0) |
| 3908 | goto out_free; |
| 3909 | |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 3910 | #ifdef CONFIG_SND_HDA_INPUT_BEEP |
| 3911 | chip->beep_mode = beep_mode[dev]; |
| 3912 | #endif |
| 3913 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3914 | /* create codec instances */ |
Takashi Iwai | a1e21c9 | 2009-06-17 09:33:52 +0200 | [diff] [blame] | 3915 | err = azx_codec_create(chip, model[dev]); |
Wu Fengguang | 41dda0f | 2008-11-20 09:24:52 +0800 | [diff] [blame] | 3916 | if (err < 0) |
| 3917 | goto out_free; |
Takashi Iwai | 4ea6fbc | 2009-06-17 09:52:54 +0200 | [diff] [blame] | 3918 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 3919 | if (chip->fw) { |
| 3920 | err = snd_hda_load_patch(chip->bus, chip->fw->size, |
| 3921 | chip->fw->data); |
Takashi Iwai | 4ea6fbc | 2009-06-17 09:52:54 +0200 | [diff] [blame] | 3922 | if (err < 0) |
| 3923 | goto out_free; |
Takashi Iwai | e39ae85 | 2012-11-22 16:18:13 +0100 | [diff] [blame] | 3924 | #ifndef CONFIG_PM |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 3925 | release_firmware(chip->fw); /* no longer needed */ |
| 3926 | chip->fw = NULL; |
Takashi Iwai | e39ae85 | 2012-11-22 16:18:13 +0100 | [diff] [blame] | 3927 | #endif |
Takashi Iwai | 4ea6fbc | 2009-06-17 09:52:54 +0200 | [diff] [blame] | 3928 | } |
| 3929 | #endif |
Jaroslav Kysela | 10e77dd | 2010-03-26 11:04:38 +0100 | [diff] [blame] | 3930 | if ((probe_only[dev] & 1) == 0) { |
Takashi Iwai | a1e21c9 | 2009-06-17 09:33:52 +0200 | [diff] [blame] | 3931 | err = azx_codec_configure(chip); |
| 3932 | if (err < 0) |
| 3933 | goto out_free; |
| 3934 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3935 | |
| 3936 | /* create PCM streams */ |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3937 | err = snd_hda_build_pcms(chip->bus); |
Wu Fengguang | 41dda0f | 2008-11-20 09:24:52 +0800 | [diff] [blame] | 3938 | if (err < 0) |
| 3939 | goto out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3940 | |
| 3941 | /* create mixer controls */ |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 3942 | err = azx_mixer_create(chip); |
Wu Fengguang | 41dda0f | 2008-11-20 09:24:52 +0800 | [diff] [blame] | 3943 | if (err < 0) |
| 3944 | goto out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3945 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3946 | err = snd_card_register(chip->card); |
Wu Fengguang | 41dda0f | 2008-11-20 09:24:52 +0800 | [diff] [blame] | 3947 | if (err < 0) |
| 3948 | goto out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3949 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3950 | chip->running = 1; |
| 3951 | power_down_all_codecs(chip); |
Takashi Iwai | 0cbf009 | 2008-10-29 16:18:25 +0100 | [diff] [blame] | 3952 | azx_notifier_register(chip); |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 3953 | azx_add_card_list(chip); |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 3954 | if ((chip->driver_caps & AZX_DCAPS_PM_RUNTIME) || chip->use_vga_switcheroo) |
Wang Xingchao | c67e222 | 2013-05-30 22:07:08 +0800 | [diff] [blame] | 3955 | pm_runtime_put_noidle(&pci->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3956 | |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 3957 | return 0; |
| 3958 | |
Wu Fengguang | 41dda0f | 2008-11-20 09:24:52 +0800 | [diff] [blame] | 3959 | out_free: |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 3960 | chip->init_failed = 1; |
Wu Fengguang | 41dda0f | 2008-11-20 09:24:52 +0800 | [diff] [blame] | 3961 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3962 | } |
| 3963 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 3964 | static void azx_remove(struct pci_dev *pci) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3965 | { |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 3966 | struct snd_card *card = pci_get_drvdata(pci); |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 3967 | |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 3968 | if (card) |
| 3969 | snd_card_free(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3970 | } |
| 3971 | |
| 3972 | /* PCI IDs */ |
Alexey Dobriyan | cebe41d | 2010-02-06 00:21:03 +0200 | [diff] [blame] | 3973 | static DEFINE_PCI_DEVICE_TABLE(azx_ids) = { |
Seth Heasley | d2f2fcd | 2010-01-12 17:03:35 -0800 | [diff] [blame] | 3974 | /* CPT */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 3975 | { PCI_DEVICE(0x8086, 0x1c20), |
Takashi Iwai | d7dab4d | 2013-01-08 13:51:30 +0100 | [diff] [blame] | 3976 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH_NOPM }, |
Seth Heasley | cea310e | 2010-09-10 16:29:56 -0700 | [diff] [blame] | 3977 | /* PBG */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 3978 | { PCI_DEVICE(0x8086, 0x1d20), |
Takashi Iwai | d7dab4d | 2013-01-08 13:51:30 +0100 | [diff] [blame] | 3979 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH_NOPM }, |
Seth Heasley | d2edeb7 | 2011-04-20 10:59:57 -0700 | [diff] [blame] | 3980 | /* Panther Point */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 3981 | { PCI_DEVICE(0x8086, 0x1e20), |
Takashi Iwai | d7dab4d | 2013-01-08 13:51:30 +0100 | [diff] [blame] | 3982 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH_NOPM }, |
Seth Heasley | 8bc039a | 2012-01-23 16:24:31 -0800 | [diff] [blame] | 3983 | /* Lynx Point */ |
| 3984 | { PCI_DEVICE(0x8086, 0x8c20), |
Takashi Iwai | 2ea3c6a | 2012-11-19 20:03:37 +0100 | [diff] [blame] | 3985 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
James Ralston | 884b088 | 2013-02-08 17:29:40 -0800 | [diff] [blame] | 3986 | /* Wellsburg */ |
| 3987 | { PCI_DEVICE(0x8086, 0x8d20), |
| 3988 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
| 3989 | { PCI_DEVICE(0x8086, 0x8d21), |
| 3990 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
James Ralston | 144dad9 | 2012-08-09 09:38:59 -0700 | [diff] [blame] | 3991 | /* Lynx Point-LP */ |
| 3992 | { PCI_DEVICE(0x8086, 0x9c20), |
Takashi Iwai | 2ea3c6a | 2012-11-19 20:03:37 +0100 | [diff] [blame] | 3993 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
James Ralston | 144dad9 | 2012-08-09 09:38:59 -0700 | [diff] [blame] | 3994 | /* Lynx Point-LP */ |
| 3995 | { PCI_DEVICE(0x8086, 0x9c21), |
Takashi Iwai | 2ea3c6a | 2012-11-19 20:03:37 +0100 | [diff] [blame] | 3996 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
James Ralston | 4eeca49 | 2013-11-04 09:27:45 -0800 | [diff] [blame] | 3997 | /* Wildcat Point-LP */ |
| 3998 | { PCI_DEVICE(0x8086, 0x9ca0), |
| 3999 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
Wang Xingchao | e926f2c | 2012-06-13 10:23:51 +0800 | [diff] [blame] | 4000 | /* Haswell */ |
Wang Xingchao | 4a7c516 | 2013-02-01 22:42:19 +0800 | [diff] [blame] | 4001 | { PCI_DEVICE(0x8086, 0x0a0c), |
Takashi Iwai | fab1285 | 2013-11-05 17:54:05 +0100 | [diff] [blame^] | 4002 | .driver_data = AZX_DRIVER_HDMI | AZX_DCAPS_INTEL_HASWELL }, |
Wang Xingchao | e926f2c | 2012-06-13 10:23:51 +0800 | [diff] [blame] | 4003 | { PCI_DEVICE(0x8086, 0x0c0c), |
Takashi Iwai | fab1285 | 2013-11-05 17:54:05 +0100 | [diff] [blame^] | 4004 | .driver_data = AZX_DRIVER_HDMI | AZX_DCAPS_INTEL_HASWELL }, |
Wang Xingchao | d279fae | 2012-09-17 13:10:23 +0800 | [diff] [blame] | 4005 | { PCI_DEVICE(0x8086, 0x0d0c), |
Takashi Iwai | fab1285 | 2013-11-05 17:54:05 +0100 | [diff] [blame^] | 4006 | .driver_data = AZX_DRIVER_HDMI | AZX_DCAPS_INTEL_HASWELL }, |
Pierre-Louis Bossart | 99df18b | 2012-09-21 18:39:07 -0500 | [diff] [blame] | 4007 | /* 5 Series/3400 */ |
| 4008 | { PCI_DEVICE(0x8086, 0x3b56), |
Takashi Iwai | 2c1350f | 2013-02-14 09:44:55 +0100 | [diff] [blame] | 4009 | .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_INTEL_PCH_NOPM }, |
Takashi Iwai | f748abc | 2013-01-29 10:12:23 +0100 | [diff] [blame] | 4010 | /* Poulsbo */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 4011 | { PCI_DEVICE(0x8086, 0x811b), |
Takashi Iwai | f748abc | 2013-01-29 10:12:23 +0100 | [diff] [blame] | 4012 | .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_INTEL_PCH_NOPM }, |
| 4013 | /* Oaktrail */ |
Li Peng | 09904b9 | 2011-12-28 15:17:26 +0000 | [diff] [blame] | 4014 | { PCI_DEVICE(0x8086, 0x080a), |
Takashi Iwai | f748abc | 2013-01-29 10:12:23 +0100 | [diff] [blame] | 4015 | .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_INTEL_PCH_NOPM }, |
Chew, Chiau Ee | e44007e | 2013-05-16 15:36:12 +0800 | [diff] [blame] | 4016 | /* BayTrail */ |
| 4017 | { PCI_DEVICE(0x8086, 0x0f04), |
| 4018 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH_NOPM }, |
David Henningsson | 645e903 | 2011-12-14 15:52:30 +0800 | [diff] [blame] | 4019 | /* ICH */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 4020 | { PCI_DEVICE(0x8086, 0x2668), |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 4021 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC | |
| 4022 | AZX_DCAPS_BUFSIZE }, /* ICH6 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 4023 | { PCI_DEVICE(0x8086, 0x27d8), |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 4024 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC | |
| 4025 | AZX_DCAPS_BUFSIZE }, /* ICH7 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 4026 | { PCI_DEVICE(0x8086, 0x269a), |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 4027 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC | |
| 4028 | AZX_DCAPS_BUFSIZE }, /* ESB2 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 4029 | { PCI_DEVICE(0x8086, 0x284b), |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 4030 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC | |
| 4031 | AZX_DCAPS_BUFSIZE }, /* ICH8 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 4032 | { PCI_DEVICE(0x8086, 0x293e), |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 4033 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC | |
| 4034 | AZX_DCAPS_BUFSIZE }, /* ICH9 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 4035 | { PCI_DEVICE(0x8086, 0x293f), |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 4036 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC | |
| 4037 | AZX_DCAPS_BUFSIZE }, /* ICH9 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 4038 | { PCI_DEVICE(0x8086, 0x3a3e), |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 4039 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC | |
| 4040 | AZX_DCAPS_BUFSIZE }, /* ICH10 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 4041 | { PCI_DEVICE(0x8086, 0x3a6e), |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 4042 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC | |
| 4043 | AZX_DCAPS_BUFSIZE }, /* ICH10 */ |
Takashi Iwai | b686453 | 2010-09-15 10:17:26 +0200 | [diff] [blame] | 4044 | /* Generic Intel */ |
| 4045 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_ANY_ID), |
| 4046 | .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8, |
| 4047 | .class_mask = 0xffffff, |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 4048 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_BUFSIZE }, |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 4049 | /* ATI SB 450/600/700/800/900 */ |
| 4050 | { PCI_DEVICE(0x1002, 0x437b), |
| 4051 | .driver_data = AZX_DRIVER_ATI | AZX_DCAPS_PRESET_ATI_SB }, |
| 4052 | { PCI_DEVICE(0x1002, 0x4383), |
| 4053 | .driver_data = AZX_DRIVER_ATI | AZX_DCAPS_PRESET_ATI_SB }, |
| 4054 | /* AMD Hudson */ |
| 4055 | { PCI_DEVICE(0x1022, 0x780d), |
| 4056 | .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_SB }, |
Takashi Iwai | 87218e9 | 2008-02-21 08:13:11 +0100 | [diff] [blame] | 4057 | /* ATI HDMI */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 4058 | { PCI_DEVICE(0x1002, 0x793b), |
| 4059 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4060 | { PCI_DEVICE(0x1002, 0x7919), |
| 4061 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4062 | { PCI_DEVICE(0x1002, 0x960f), |
| 4063 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4064 | { PCI_DEVICE(0x1002, 0x970f), |
| 4065 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4066 | { PCI_DEVICE(0x1002, 0xaa00), |
| 4067 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4068 | { PCI_DEVICE(0x1002, 0xaa08), |
| 4069 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4070 | { PCI_DEVICE(0x1002, 0xaa10), |
| 4071 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4072 | { PCI_DEVICE(0x1002, 0xaa18), |
| 4073 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4074 | { PCI_DEVICE(0x1002, 0xaa20), |
| 4075 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4076 | { PCI_DEVICE(0x1002, 0xaa28), |
| 4077 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4078 | { PCI_DEVICE(0x1002, 0xaa30), |
| 4079 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4080 | { PCI_DEVICE(0x1002, 0xaa38), |
| 4081 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4082 | { PCI_DEVICE(0x1002, 0xaa40), |
| 4083 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4084 | { PCI_DEVICE(0x1002, 0xaa48), |
| 4085 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
Clemens Ladisch | bbaa0d6 | 2013-11-05 09:27:10 +0100 | [diff] [blame] | 4086 | { PCI_DEVICE(0x1002, 0xaa50), |
| 4087 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4088 | { PCI_DEVICE(0x1002, 0xaa58), |
| 4089 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4090 | { PCI_DEVICE(0x1002, 0xaa60), |
| 4091 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4092 | { PCI_DEVICE(0x1002, 0xaa68), |
| 4093 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4094 | { PCI_DEVICE(0x1002, 0xaa80), |
| 4095 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4096 | { PCI_DEVICE(0x1002, 0xaa88), |
| 4097 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4098 | { PCI_DEVICE(0x1002, 0xaa90), |
| 4099 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4100 | { PCI_DEVICE(0x1002, 0xaa98), |
| 4101 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
Andiry Xu | 1815b34 | 2011-12-14 16:10:27 +0800 | [diff] [blame] | 4102 | { PCI_DEVICE(0x1002, 0x9902), |
| 4103 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4104 | { PCI_DEVICE(0x1002, 0xaaa0), |
| 4105 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4106 | { PCI_DEVICE(0x1002, 0xaaa8), |
| 4107 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 4108 | { PCI_DEVICE(0x1002, 0xaab0), |
| 4109 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI }, |
Takashi Iwai | 87218e9 | 2008-02-21 08:13:11 +0100 | [diff] [blame] | 4110 | /* VIA VT8251/VT8237A */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 4111 | { PCI_DEVICE(0x1106, 0x3288), |
| 4112 | .driver_data = AZX_DRIVER_VIA | AZX_DCAPS_POSFIX_VIA }, |
Annie Liu | 754fdff | 2012-06-08 19:18:39 +0800 | [diff] [blame] | 4113 | /* VIA GFX VT7122/VX900 */ |
| 4114 | { PCI_DEVICE(0x1106, 0x9170), .driver_data = AZX_DRIVER_GENERIC }, |
| 4115 | /* VIA GFX VT6122/VX11 */ |
| 4116 | { PCI_DEVICE(0x1106, 0x9140), .driver_data = AZX_DRIVER_GENERIC }, |
Takashi Iwai | 87218e9 | 2008-02-21 08:13:11 +0100 | [diff] [blame] | 4117 | /* SIS966 */ |
| 4118 | { PCI_DEVICE(0x1039, 0x7502), .driver_data = AZX_DRIVER_SIS }, |
| 4119 | /* ULI M5461 */ |
| 4120 | { PCI_DEVICE(0x10b9, 0x5461), .driver_data = AZX_DRIVER_ULI }, |
| 4121 | /* NVIDIA MCP */ |
Takashi Iwai | 0c2fd1bf4 | 2009-12-18 16:41:39 +0100 | [diff] [blame] | 4122 | { PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID), |
| 4123 | .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8, |
| 4124 | .class_mask = 0xffffff, |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 4125 | .driver_data = AZX_DRIVER_NVIDIA | AZX_DCAPS_PRESET_NVIDIA }, |
Kailang Yang | f269002 | 2008-05-27 11:44:55 +0200 | [diff] [blame] | 4126 | /* Teradici */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 4127 | { PCI_DEVICE(0x6549, 0x1200), |
| 4128 | .driver_data = AZX_DRIVER_TERA | AZX_DCAPS_NO_64BIT }, |
Lars R. Damerow | f0b3da9 | 2012-11-02 13:10:39 -0700 | [diff] [blame] | 4129 | { PCI_DEVICE(0x6549, 0x2200), |
| 4130 | .driver_data = AZX_DRIVER_TERA | AZX_DCAPS_NO_64BIT }, |
Takashi Iwai | 4e01f54 | 2009-04-16 08:53:34 +0200 | [diff] [blame] | 4131 | /* Creative X-Fi (CA0110-IBG) */ |
Takashi Iwai | f2a8eca | 2012-06-11 15:51:54 +0200 | [diff] [blame] | 4132 | /* CTHDA chips */ |
| 4133 | { PCI_DEVICE(0x1102, 0x0010), |
| 4134 | .driver_data = AZX_DRIVER_CTHDA | AZX_DCAPS_PRESET_CTHDA }, |
| 4135 | { PCI_DEVICE(0x1102, 0x0012), |
| 4136 | .driver_data = AZX_DRIVER_CTHDA | AZX_DCAPS_PRESET_CTHDA }, |
Takashi Iwai | 313f6e2 | 2009-05-18 12:40:52 +0200 | [diff] [blame] | 4137 | #if !defined(CONFIG_SND_CTXFI) && !defined(CONFIG_SND_CTXFI_MODULE) |
| 4138 | /* the following entry conflicts with snd-ctxfi driver, |
| 4139 | * as ctxfi driver mutates from HD-audio to native mode with |
| 4140 | * a special command sequence. |
| 4141 | */ |
Takashi Iwai | 4e01f54 | 2009-04-16 08:53:34 +0200 | [diff] [blame] | 4142 | { PCI_DEVICE(PCI_VENDOR_ID_CREATIVE, PCI_ANY_ID), |
| 4143 | .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8, |
| 4144 | .class_mask = 0xffffff, |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 4145 | .driver_data = AZX_DRIVER_CTX | AZX_DCAPS_CTX_WORKAROUND | |
Takashi Iwai | 69f9ba9 | 2011-11-06 13:49:13 +0100 | [diff] [blame] | 4146 | AZX_DCAPS_RIRB_PRE_DELAY | AZX_DCAPS_POSFIX_LPIB }, |
Takashi Iwai | 313f6e2 | 2009-05-18 12:40:52 +0200 | [diff] [blame] | 4147 | #else |
| 4148 | /* this entry seems still valid -- i.e. without emu20kx chip */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 4149 | { PCI_DEVICE(0x1102, 0x0009), |
| 4150 | .driver_data = AZX_DRIVER_CTX | AZX_DCAPS_CTX_WORKAROUND | |
Takashi Iwai | 69f9ba9 | 2011-11-06 13:49:13 +0100 | [diff] [blame] | 4151 | AZX_DCAPS_RIRB_PRE_DELAY | AZX_DCAPS_POSFIX_LPIB }, |
Takashi Iwai | 313f6e2 | 2009-05-18 12:40:52 +0200 | [diff] [blame] | 4152 | #endif |
Otavio Salvador | e35d4b1 | 2010-09-26 23:35:06 -0300 | [diff] [blame] | 4153 | /* Vortex86MX */ |
| 4154 | { PCI_DEVICE(0x17f3, 0x3010), .driver_data = AZX_DRIVER_GENERIC }, |
Bankim Bhavsar | 0f0714c5 | 2011-01-17 15:23:21 +0100 | [diff] [blame] | 4155 | /* VMware HDAudio */ |
| 4156 | { PCI_DEVICE(0x15ad, 0x1977), .driver_data = AZX_DRIVER_GENERIC }, |
Andiry Brienza | 9176b67 | 2009-07-17 11:32:32 +0800 | [diff] [blame] | 4157 | /* AMD/ATI Generic, PCI class code and Vendor ID for HD Audio */ |
Yang, Libin | c4da29c | 2008-11-13 11:07:07 +0100 | [diff] [blame] | 4158 | { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_ANY_ID), |
| 4159 | .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8, |
| 4160 | .class_mask = 0xffffff, |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 4161 | .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_HDMI }, |
Andiry Brienza | 9176b67 | 2009-07-17 11:32:32 +0800 | [diff] [blame] | 4162 | { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_ANY_ID), |
| 4163 | .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8, |
| 4164 | .class_mask = 0xffffff, |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 4165 | .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_HDMI }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4166 | { 0, } |
| 4167 | }; |
| 4168 | MODULE_DEVICE_TABLE(pci, azx_ids); |
| 4169 | |
| 4170 | /* pci_driver definition */ |
Takashi Iwai | e9f66d9 | 2012-04-24 12:25:00 +0200 | [diff] [blame] | 4171 | static struct pci_driver azx_driver = { |
Takashi Iwai | 3733e42 | 2011-06-10 16:20:20 +0200 | [diff] [blame] | 4172 | .name = KBUILD_MODNAME, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4173 | .id_table = azx_ids, |
| 4174 | .probe = azx_probe, |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 4175 | .remove = azx_remove, |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 4176 | .driver = { |
| 4177 | .pm = AZX_PM_OPS, |
| 4178 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4179 | }; |
| 4180 | |
Takashi Iwai | e9f66d9 | 2012-04-24 12:25:00 +0200 | [diff] [blame] | 4181 | module_pci_driver(azx_driver); |