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 | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 47 | #include <linux/io.h> |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 48 | #include <linux/pm_runtime.h> |
Pierre-Louis Bossart | 5d890f5 | 2012-10-22 16:42:16 -0500 | [diff] [blame] | 49 | #include <linux/clocksource.h> |
| 50 | #include <linux/time.h> |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 51 | #include <linux/completion.h> |
Pierre-Louis Bossart | 5d890f5 | 2012-10-22 16:42:16 -0500 | [diff] [blame] | 52 | |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 53 | #ifdef CONFIG_X86 |
| 54 | /* for snoop control */ |
| 55 | #include <asm/pgtable.h> |
| 56 | #include <asm/cacheflush.h> |
| 57 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #include <sound/core.h> |
| 59 | #include <sound/initval.h> |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 60 | #include <sound/hdaudio.h> |
| 61 | #include <sound/hda_i915.h> |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 62 | #include <linux/vgaarb.h> |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 63 | #include <linux/vga_switcheroo.h> |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 64 | #include <linux/firmware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #include "hda_codec.h" |
Dylan Reid | 05e8487 | 2014-02-28 15:41:22 -0800 | [diff] [blame] | 66 | #include "hda_controller.h" |
Imre Deak | 347de1f | 2015-01-08 17:54:15 +0200 | [diff] [blame] | 67 | #include "hda_intel.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
Libin Yang | 785d8c4 | 2015-05-12 09:43:22 +0800 | [diff] [blame] | 69 | #define CREATE_TRACE_POINTS |
| 70 | #include "hda_intel_trace.h" |
| 71 | |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 72 | /* position fix mode */ |
| 73 | enum { |
| 74 | POS_FIX_AUTO, |
| 75 | POS_FIX_LPIB, |
| 76 | POS_FIX_POSBUF, |
| 77 | POS_FIX_VIACOMBO, |
| 78 | POS_FIX_COMBO, |
| 79 | }; |
| 80 | |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 81 | /* Defines for ATI HD Audio support in SB450 south bridge */ |
| 82 | #define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42 |
| 83 | #define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02 |
| 84 | |
| 85 | /* Defines for Nvidia HDA support */ |
| 86 | #define NVIDIA_HDA_TRANSREG_ADDR 0x4e |
| 87 | #define NVIDIA_HDA_ENABLE_COHBITS 0x0f |
| 88 | #define NVIDIA_HDA_ISTRM_COH 0x4d |
| 89 | #define NVIDIA_HDA_OSTRM_COH 0x4c |
| 90 | #define NVIDIA_HDA_ENABLE_COHBIT 0x01 |
| 91 | |
| 92 | /* Defines for Intel SCH HDA snoop control */ |
| 93 | #define INTEL_SCH_HDA_DEVC 0x78 |
| 94 | #define INTEL_SCH_HDA_DEVC_NOSNOOP (0x1<<11) |
| 95 | |
| 96 | /* Define IN stream 0 FIFO size offset in VIA controller */ |
| 97 | #define VIA_IN_STREAM0_FIFO_SIZE_OFFSET 0x90 |
| 98 | /* Define VIA HD Audio Device ID*/ |
| 99 | #define VIA_HDAC_DEVICE_ID 0x3288 |
| 100 | |
Takashi Iwai | 3312492 | 2014-06-26 17:28:06 +0200 | [diff] [blame] | 101 | /* max number of SDs */ |
| 102 | /* ICH, ATI and VIA have 4 playback and 4 capture */ |
| 103 | #define ICH6_NUM_CAPTURE 4 |
| 104 | #define ICH6_NUM_PLAYBACK 4 |
| 105 | |
| 106 | /* ULI has 6 playback and 5 capture */ |
| 107 | #define ULI_NUM_CAPTURE 5 |
| 108 | #define ULI_NUM_PLAYBACK 6 |
| 109 | |
| 110 | /* ATI HDMI may have up to 8 playbacks and 0 capture */ |
| 111 | #define ATIHDMI_NUM_CAPTURE 0 |
| 112 | #define ATIHDMI_NUM_PLAYBACK 8 |
| 113 | |
| 114 | /* TERA has 4 playback and 3 capture */ |
| 115 | #define TERA_NUM_CAPTURE 3 |
| 116 | #define TERA_NUM_PLAYBACK 4 |
| 117 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 119 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; |
| 120 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; |
Rusty Russell | a67ff6a | 2011-12-15 13:49:36 +1030 | [diff] [blame] | 121 | static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 122 | static char *model[SNDRV_CARDS]; |
Takashi Iwai | 1dac669 | 2012-09-13 14:59:47 +0200 | [diff] [blame] | 123 | static int position_fix[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1}; |
Takashi Iwai | 5c0d7bc | 2008-06-10 17:53:35 +0200 | [diff] [blame] | 124 | static int bdl_pos_adj[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1}; |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 125 | static int probe_mask[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1}; |
Takashi Iwai | d4d9cd03 | 2008-12-19 15:19:11 +0100 | [diff] [blame] | 126 | static int probe_only[SNDRV_CARDS]; |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 127 | static int jackpoll_ms[SNDRV_CARDS]; |
Rusty Russell | a67ff6a | 2011-12-15 13:49:36 +1030 | [diff] [blame] | 128 | static bool single_cmd; |
Takashi Iwai | 71623855 | 2009-09-28 13:14:04 +0200 | [diff] [blame] | 129 | static int enable_msi = -1; |
Takashi Iwai | 4ea6fbc | 2009-06-17 09:52:54 +0200 | [diff] [blame] | 130 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
| 131 | static char *patch[SNDRV_CARDS]; |
| 132 | #endif |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 133 | #ifdef CONFIG_SND_HDA_INPUT_BEEP |
Takashi Iwai | 0920c9b | 2012-07-03 16:58:48 +0200 | [diff] [blame] | 134 | static bool beep_mode[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 135 | CONFIG_SND_HDA_INPUT_BEEP_MODE}; |
| 136 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 138 | module_param_array(index, int, NULL, 0444); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | MODULE_PARM_DESC(index, "Index value for Intel HD audio interface."); |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 140 | module_param_array(id, charp, NULL, 0444); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | MODULE_PARM_DESC(id, "ID string for Intel HD audio interface."); |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 142 | module_param_array(enable, bool, NULL, 0444); |
| 143 | MODULE_PARM_DESC(enable, "Enable Intel HD audio interface."); |
| 144 | module_param_array(model, charp, NULL, 0444); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | MODULE_PARM_DESC(model, "Use the given board model."); |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 146 | module_param_array(position_fix, int, NULL, 0444); |
David Henningsson | 4cb3631 | 2010-09-30 10:12:50 +0200 | [diff] [blame] | 147 | MODULE_PARM_DESC(position_fix, "DMA pointer read method." |
Takashi Iwai | 1dac669 | 2012-09-13 14:59:47 +0200 | [diff] [blame] | 148 | "(-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] | 149 | module_param_array(bdl_pos_adj, int, NULL, 0644); |
| 150 | MODULE_PARM_DESC(bdl_pos_adj, "BDL position adjustment offset."); |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 151 | module_param_array(probe_mask, int, NULL, 0444); |
Takashi Iwai | 606ad75 | 2005-11-24 16:03:40 +0100 | [diff] [blame] | 152 | MODULE_PARM_DESC(probe_mask, "Bitmask to probe codecs (default = -1)."); |
Jaroslav Kysela | 079e683 | 2010-03-26 11:16:59 +0100 | [diff] [blame] | 153 | module_param_array(probe_only, int, NULL, 0444); |
Takashi Iwai | d4d9cd03 | 2008-12-19 15:19:11 +0100 | [diff] [blame] | 154 | MODULE_PARM_DESC(probe_only, "Only probing and no codec initialization."); |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 155 | module_param_array(jackpoll_ms, int, NULL, 0444); |
| 156 | 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] | 157 | module_param(single_cmd, bool, 0444); |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 158 | MODULE_PARM_DESC(single_cmd, "Use single command to communicate with codecs " |
| 159 | "(for debugging only)."); |
Takashi Iwai | ac9ef6c | 2012-01-20 12:08:44 +0100 | [diff] [blame] | 160 | module_param(enable_msi, bint, 0444); |
Takashi Iwai | 134a11f | 2006-11-10 12:08:37 +0100 | [diff] [blame] | 161 | MODULE_PARM_DESC(enable_msi, "Enable Message Signaled Interrupt (MSI)"); |
Takashi Iwai | 4ea6fbc | 2009-06-17 09:52:54 +0200 | [diff] [blame] | 162 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
| 163 | module_param_array(patch, charp, NULL, 0444); |
| 164 | MODULE_PARM_DESC(patch, "Patch file for Intel HD audio interface."); |
| 165 | #endif |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 166 | #ifdef CONFIG_SND_HDA_INPUT_BEEP |
Takashi Iwai | 0920c9b | 2012-07-03 16:58:48 +0200 | [diff] [blame] | 167 | module_param_array(beep_mode, bool, NULL, 0444); |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 168 | MODULE_PARM_DESC(beep_mode, "Select HDA Beep registration mode " |
Takashi Iwai | 0920c9b | 2012-07-03 16:58:48 +0200 | [diff] [blame] | 169 | "(0=off, 1=on) (default=1)."); |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 170 | #endif |
Takashi Iwai | 606ad75 | 2005-11-24 16:03:40 +0100 | [diff] [blame] | 171 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 172 | #ifdef CONFIG_PM |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 173 | static int param_set_xint(const char *val, const struct kernel_param *kp); |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 174 | static const struct kernel_param_ops param_ops_xint = { |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 175 | .set = param_set_xint, |
| 176 | .get = param_get_int, |
| 177 | }; |
| 178 | #define param_check_xint param_check_int |
| 179 | |
Takashi Iwai | fee2fba | 2008-11-27 12:43:28 +0100 | [diff] [blame] | 180 | static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT; |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 181 | module_param(power_save, xint, 0644); |
Takashi Iwai | fee2fba | 2008-11-27 12:43:28 +0100 | [diff] [blame] | 182 | MODULE_PARM_DESC(power_save, "Automatic power-saving timeout " |
| 183 | "(in second, 0 = disable)."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | |
Takashi Iwai | dee1b66 | 2007-08-13 16:10:30 +0200 | [diff] [blame] | 185 | /* reset the HD-audio controller in power save mode. |
| 186 | * this may give more power-saving, but will take longer time to |
| 187 | * wake up. |
| 188 | */ |
Takashi Iwai | 8fc2442 | 2013-04-04 15:35:24 +0200 | [diff] [blame] | 189 | static bool power_save_controller = 1; |
| 190 | module_param(power_save_controller, bool, 0644); |
Takashi Iwai | dee1b66 | 2007-08-13 16:10:30 +0200 | [diff] [blame] | 191 | MODULE_PARM_DESC(power_save_controller, "Reset controller in power save mode."); |
Dylan Reid | e62a42a | 2014-02-28 15:41:19 -0800 | [diff] [blame] | 192 | #else |
Takashi Iwai | bb57392 | 2015-02-20 09:26:04 +0100 | [diff] [blame] | 193 | #define power_save 0 |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 194 | #endif /* CONFIG_PM */ |
Takashi Iwai | dee1b66 | 2007-08-13 16:10:30 +0200 | [diff] [blame] | 195 | |
Takashi Iwai | 7bfe059 | 2012-01-23 17:53:39 +0100 | [diff] [blame] | 196 | static int align_buffer_size = -1; |
| 197 | module_param(align_buffer_size, bint, 0644); |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 198 | MODULE_PARM_DESC(align_buffer_size, |
| 199 | "Force buffer and period sizes to be multiple of 128 bytes."); |
| 200 | |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 201 | #ifdef CONFIG_X86 |
Takashi Iwai | 7c73201 | 2014-11-25 12:54:16 +0100 | [diff] [blame] | 202 | static int hda_snoop = -1; |
| 203 | module_param_named(snoop, hda_snoop, bint, 0444); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 204 | MODULE_PARM_DESC(snoop, "Enable/disable snooping"); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 205 | #else |
| 206 | #define hda_snoop true |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 207 | #endif |
| 208 | |
| 209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | MODULE_LICENSE("GPL"); |
| 211 | MODULE_SUPPORTED_DEVICE("{{Intel, ICH6}," |
| 212 | "{Intel, ICH6M}," |
Jason Gaston | 2f1b381 | 2005-05-01 08:58:50 -0700 | [diff] [blame] | 213 | "{Intel, ICH7}," |
Frederick Li | f5d40b3 | 2005-05-12 14:55:20 +0200 | [diff] [blame] | 214 | "{Intel, ESB2}," |
Jason Gaston | d298139 | 2006-01-10 11:07:37 +0100 | [diff] [blame] | 215 | "{Intel, ICH8}," |
Jason Gaston | f9cc8a8 | 2006-11-22 11:53:52 +0100 | [diff] [blame] | 216 | "{Intel, ICH9}," |
Jason Gaston | c34f5a0 | 2008-01-29 12:38:49 +0100 | [diff] [blame] | 217 | "{Intel, ICH10}," |
Seth Heasley | b29c236 | 2008-08-08 15:56:39 -0700 | [diff] [blame] | 218 | "{Intel, PCH}," |
Seth Heasley | d2f2fcd | 2010-01-12 17:03:35 -0800 | [diff] [blame] | 219 | "{Intel, CPT}," |
Seth Heasley | d2edeb7 | 2011-04-20 10:59:57 -0700 | [diff] [blame] | 220 | "{Intel, PPT}," |
Seth Heasley | 8bc039a | 2012-01-23 16:24:31 -0800 | [diff] [blame] | 221 | "{Intel, LPT}," |
James Ralston | 144dad9 | 2012-08-09 09:38:59 -0700 | [diff] [blame] | 222 | "{Intel, LPT_LP}," |
James Ralston | 4eeca49 | 2013-11-04 09:27:45 -0800 | [diff] [blame] | 223 | "{Intel, WPT_LP}," |
James Ralston | c8b00fd | 2014-10-13 15:22:03 -0700 | [diff] [blame] | 224 | "{Intel, SPT}," |
Devin Ryles | b456591 | 2014-11-07 18:02:47 -0500 | [diff] [blame] | 225 | "{Intel, SPT_LP}," |
Wang Xingchao | e926f2c | 2012-06-13 10:23:51 +0800 | [diff] [blame] | 226 | "{Intel, HPT}," |
Seth Heasley | cea310e | 2010-09-10 16:29:56 -0700 | [diff] [blame] | 227 | "{Intel, PBG}," |
Tobin Davis | 4979bca | 2008-01-30 08:13:55 +0100 | [diff] [blame] | 228 | "{Intel, SCH}," |
Takashi Iwai | fc20a56 | 2005-05-12 15:00:41 +0200 | [diff] [blame] | 229 | "{ATI, SB450}," |
Felix Kuehling | 89be83f | 2006-03-31 12:33:59 +0200 | [diff] [blame] | 230 | "{ATI, SB600}," |
Felix Kuehling | 778b6e1 | 2006-05-17 11:22:21 +0200 | [diff] [blame] | 231 | "{ATI, RS600}," |
Felix Kuehling | 5b15c95 | 2006-10-16 12:49:47 +0200 | [diff] [blame] | 232 | "{ATI, RS690}," |
Wolke Liu | e6db111 | 2007-04-27 12:20:57 +0200 | [diff] [blame] | 233 | "{ATI, RS780}," |
| 234 | "{ATI, R600}," |
Herton Ronaldo Krzesinski | 2797f72 | 2007-11-05 18:21:56 +0100 | [diff] [blame] | 235 | "{ATI, RV630}," |
| 236 | "{ATI, RV610}," |
Wolke Liu | 27da183 | 2007-11-16 11:06:30 +0100 | [diff] [blame] | 237 | "{ATI, RV670}," |
| 238 | "{ATI, RV635}," |
| 239 | "{ATI, RV620}," |
| 240 | "{ATI, RV770}," |
Takashi Iwai | fc20a56 | 2005-05-12 15:00:41 +0200 | [diff] [blame] | 241 | "{VIA, VT8251}," |
Takashi Iwai | 4767231 | 2005-08-12 16:44:04 +0200 | [diff] [blame] | 242 | "{VIA, VT8237A}," |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 243 | "{SiS, SIS966}," |
| 244 | "{ULI, M5461}}"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | MODULE_DESCRIPTION("Intel HDA driver"); |
| 246 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 247 | #if defined(CONFIG_PM) && defined(CONFIG_VGA_SWITCHEROO) |
Takashi Iwai | f8f1bec | 2014-02-06 18:14:03 +0100 | [diff] [blame] | 248 | #if IS_ENABLED(CONFIG_SND_HDA_CODEC_HDMI) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 249 | #define SUPPORT_VGA_SWITCHEROO |
| 250 | #endif |
| 251 | #endif |
| 252 | |
| 253 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 254 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 257 | /* driver types */ |
| 258 | enum { |
| 259 | AZX_DRIVER_ICH, |
Seth Heasley | 32679f9 | 2010-02-22 17:31:09 -0800 | [diff] [blame] | 260 | AZX_DRIVER_PCH, |
Tobin Davis | 4979bca | 2008-01-30 08:13:55 +0100 | [diff] [blame] | 261 | AZX_DRIVER_SCH, |
Takashi Iwai | fab1285 | 2013-11-05 17:54:05 +0100 | [diff] [blame] | 262 | AZX_DRIVER_HDMI, |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 263 | AZX_DRIVER_ATI, |
Felix Kuehling | 778b6e1 | 2006-05-17 11:22:21 +0200 | [diff] [blame] | 264 | AZX_DRIVER_ATIHDMI, |
Andiry Xu | 1815b34 | 2011-12-14 16:10:27 +0800 | [diff] [blame] | 265 | AZX_DRIVER_ATIHDMI_NS, |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 266 | AZX_DRIVER_VIA, |
| 267 | AZX_DRIVER_SIS, |
| 268 | AZX_DRIVER_ULI, |
Vinod G | da3fca2 | 2005-09-13 18:49:12 +0200 | [diff] [blame] | 269 | AZX_DRIVER_NVIDIA, |
Kailang Yang | f269002 | 2008-05-27 11:44:55 +0200 | [diff] [blame] | 270 | AZX_DRIVER_TERA, |
Takashi Iwai | 14d34f1 | 2010-10-21 09:03:25 +0200 | [diff] [blame] | 271 | AZX_DRIVER_CTX, |
Takashi Iwai | 5ae763b | 2012-05-08 10:34:08 +0200 | [diff] [blame] | 272 | AZX_DRIVER_CTHDA, |
Takashi Iwai | c563f47 | 2014-08-06 14:27:42 +0200 | [diff] [blame] | 273 | AZX_DRIVER_CMEDIA, |
Yang, Libin | c4da29c | 2008-11-13 11:07:07 +0100 | [diff] [blame] | 274 | AZX_DRIVER_GENERIC, |
Takashi Iwai | 2f5983f | 2008-09-03 16:00:44 +0200 | [diff] [blame] | 275 | AZX_NUM_DRIVERS, /* keep this as last entry */ |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 276 | }; |
| 277 | |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 278 | #define azx_get_snoop_type(chip) \ |
| 279 | (((chip)->driver_caps & AZX_DCAPS_SNOOP_MASK) >> 10) |
| 280 | #define AZX_DCAPS_SNOOP_TYPE(type) ((AZX_SNOOP_TYPE_ ## type) << 10) |
| 281 | |
Takashi Iwai | b42b4af | 2014-12-03 09:47:20 +0100 | [diff] [blame] | 282 | /* quirks for old Intel chipsets */ |
| 283 | #define AZX_DCAPS_INTEL_ICH \ |
Takashi Iwai | 103884a | 2014-12-03 09:56:20 +0100 | [diff] [blame] | 284 | (AZX_DCAPS_OLD_SSYNC | AZX_DCAPS_NO_ALIGN_BUFSIZE) |
Takashi Iwai | b42b4af | 2014-12-03 09:47:20 +0100 | [diff] [blame] | 285 | |
Takashi Iwai | 2ea3c6a | 2012-11-19 20:03:37 +0100 | [diff] [blame] | 286 | /* quirks for Intel PCH */ |
Takashi Iwai | 6603249 | 2015-12-01 16:49:35 +0100 | [diff] [blame] | 287 | #define AZX_DCAPS_INTEL_PCH_BASE \ |
Takashi Iwai | 103884a | 2014-12-03 09:56:20 +0100 | [diff] [blame] | 288 | (AZX_DCAPS_NO_ALIGN_BUFSIZE | AZX_DCAPS_COUNT_LPIB_DELAY |\ |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 289 | AZX_DCAPS_REVERSE_ASSIGN | AZX_DCAPS_SNOOP_TYPE(SCH)) |
Takashi Iwai | d7dab4d | 2013-01-08 13:51:30 +0100 | [diff] [blame] | 290 | |
Takashi Iwai | 5591311 | 2015-12-10 13:03:29 +0100 | [diff] [blame] | 291 | /* PCH up to IVB; no runtime PM */ |
Takashi Iwai | 6603249 | 2015-12-01 16:49:35 +0100 | [diff] [blame] | 292 | #define AZX_DCAPS_INTEL_PCH_NOPM \ |
Takashi Iwai | 5591311 | 2015-12-10 13:03:29 +0100 | [diff] [blame] | 293 | (AZX_DCAPS_INTEL_PCH_BASE) |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 294 | |
Takashi Iwai | 5591311 | 2015-12-10 13:03:29 +0100 | [diff] [blame] | 295 | /* PCH for HSW/BDW; with runtime PM */ |
Takashi Iwai | 6603249 | 2015-12-01 16:49:35 +0100 | [diff] [blame] | 296 | #define AZX_DCAPS_INTEL_PCH \ |
| 297 | (AZX_DCAPS_INTEL_PCH_BASE | AZX_DCAPS_PM_RUNTIME) |
| 298 | |
| 299 | /* HSW HDMI */ |
Takashi Iwai | 33499a1 | 2013-11-05 17:34:46 +0100 | [diff] [blame] | 300 | #define AZX_DCAPS_INTEL_HASWELL \ |
Takashi Iwai | 103884a | 2014-12-03 09:56:20 +0100 | [diff] [blame] | 301 | (/*AZX_DCAPS_ALIGN_BUFSIZE |*/ AZX_DCAPS_COUNT_LPIB_DELAY |\ |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 302 | AZX_DCAPS_PM_RUNTIME | AZX_DCAPS_I915_POWERWELL |\ |
| 303 | AZX_DCAPS_SNOOP_TYPE(SCH)) |
Takashi Iwai | 33499a1 | 2013-11-05 17:34:46 +0100 | [diff] [blame] | 304 | |
Libin Yang | 54a0405 | 2014-06-09 15:28:59 +0800 | [diff] [blame] | 305 | /* Broadwell HDMI can't use position buffer reliably, force to use LPIB */ |
| 306 | #define AZX_DCAPS_INTEL_BROADWELL \ |
Takashi Iwai | 103884a | 2014-12-03 09:56:20 +0100 | [diff] [blame] | 307 | (/*AZX_DCAPS_ALIGN_BUFSIZE |*/ AZX_DCAPS_POSFIX_LPIB |\ |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 308 | AZX_DCAPS_PM_RUNTIME | AZX_DCAPS_I915_POWERWELL |\ |
| 309 | AZX_DCAPS_SNOOP_TYPE(SCH)) |
Libin Yang | 54a0405 | 2014-06-09 15:28:59 +0800 | [diff] [blame] | 310 | |
Mengdong Lin | 40cc239 | 2015-04-21 13:12:23 +0800 | [diff] [blame] | 311 | #define AZX_DCAPS_INTEL_BAYTRAIL \ |
| 312 | (AZX_DCAPS_INTEL_PCH_NOPM | AZX_DCAPS_I915_POWERWELL) |
| 313 | |
Libin Yang | 2d846c7 | 2015-04-07 20:32:20 +0800 | [diff] [blame] | 314 | #define AZX_DCAPS_INTEL_BRASWELL \ |
| 315 | (AZX_DCAPS_INTEL_PCH | AZX_DCAPS_I915_POWERWELL) |
| 316 | |
Libin Yang | d679582 | 2014-12-19 08:44:31 +0800 | [diff] [blame] | 317 | #define AZX_DCAPS_INTEL_SKYLAKE \ |
Libin Yang | 2d846c7 | 2015-04-07 20:32:20 +0800 | [diff] [blame] | 318 | (AZX_DCAPS_INTEL_PCH | AZX_DCAPS_SEPARATE_STREAM_TAG |\ |
| 319 | AZX_DCAPS_I915_POWERWELL) |
Libin Yang | d679582 | 2014-12-19 08:44:31 +0800 | [diff] [blame] | 320 | |
Lu, Han | c87693d | 2015-11-19 23:25:12 +0800 | [diff] [blame] | 321 | #define AZX_DCAPS_INTEL_BROXTON \ |
| 322 | (AZX_DCAPS_INTEL_PCH | AZX_DCAPS_SEPARATE_STREAM_TAG |\ |
| 323 | AZX_DCAPS_I915_POWERWELL) |
| 324 | |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 325 | /* quirks for ATI SB / AMD Hudson */ |
| 326 | #define AZX_DCAPS_PRESET_ATI_SB \ |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 327 | (AZX_DCAPS_NO_TCSEL | AZX_DCAPS_SYNC_WRITE | AZX_DCAPS_POSFIX_LPIB |\ |
| 328 | AZX_DCAPS_SNOOP_TYPE(ATI)) |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 329 | |
| 330 | /* quirks for ATI/AMD HDMI */ |
| 331 | #define AZX_DCAPS_PRESET_ATI_HDMI \ |
Benjamin Herrenschmidt | db79afa | 2014-11-24 14:17:08 +1100 | [diff] [blame] | 332 | (AZX_DCAPS_NO_TCSEL | AZX_DCAPS_SYNC_WRITE | AZX_DCAPS_POSFIX_LPIB|\ |
| 333 | AZX_DCAPS_NO_MSI64) |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 334 | |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 335 | /* quirks for ATI HDMI with snoop off */ |
| 336 | #define AZX_DCAPS_PRESET_ATI_HDMI_NS \ |
| 337 | (AZX_DCAPS_PRESET_ATI_HDMI | AZX_DCAPS_SNOOP_OFF) |
| 338 | |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 339 | /* quirks for Nvidia */ |
| 340 | #define AZX_DCAPS_PRESET_NVIDIA \ |
Takashi Iwai | 7d9a180 | 2015-12-17 08:23:39 +0100 | [diff] [blame^] | 341 | (AZX_DCAPS_NO_MSI | /*AZX_DCAPS_ALIGN_BUFSIZE |*/ \ |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 342 | AZX_DCAPS_NO_64BIT | AZX_DCAPS_CORBRP_SELF_CLEAR |\ |
| 343 | AZX_DCAPS_SNOOP_TYPE(NVIDIA)) |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 344 | |
Takashi Iwai | 5ae763b | 2012-05-08 10:34:08 +0200 | [diff] [blame] | 345 | #define AZX_DCAPS_PRESET_CTHDA \ |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 346 | (AZX_DCAPS_NO_MSI | AZX_DCAPS_POSFIX_LPIB |\ |
Takashi Iwai | cadd16e | 2015-10-27 14:21:51 +0100 | [diff] [blame] | 347 | AZX_DCAPS_NO_64BIT |\ |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 348 | AZX_DCAPS_4K_BDLE_BOUNDARY | AZX_DCAPS_SNOOP_OFF) |
Takashi Iwai | 5ae763b | 2012-05-08 10:34:08 +0200 | [diff] [blame] | 349 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 350 | /* |
Lukas Wunner | 2b760d8 | 2015-09-04 20:49:36 +0200 | [diff] [blame] | 351 | * vga_switcheroo support |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 352 | */ |
| 353 | #ifdef SUPPORT_VGA_SWITCHEROO |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 354 | #define use_vga_switcheroo(chip) ((chip)->use_vga_switcheroo) |
| 355 | #else |
| 356 | #define use_vga_switcheroo(chip) 0 |
| 357 | #endif |
| 358 | |
Libin Yang | 03b135c | 2015-06-03 09:30:15 +0800 | [diff] [blame] | 359 | #define CONTROLLER_IN_GPU(pci) (((pci)->device == 0x0a0c) || \ |
| 360 | ((pci)->device == 0x0c0c) || \ |
| 361 | ((pci)->device == 0x0d0c) || \ |
| 362 | ((pci)->device == 0x160c)) |
| 363 | |
Takashi Iwai | 48c8b0e | 2012-12-07 07:40:35 +0100 | [diff] [blame] | 364 | static char *driver_short_names[] = { |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 365 | [AZX_DRIVER_ICH] = "HDA Intel", |
Seth Heasley | 32679f9 | 2010-02-22 17:31:09 -0800 | [diff] [blame] | 366 | [AZX_DRIVER_PCH] = "HDA Intel PCH", |
Tobin Davis | 4979bca | 2008-01-30 08:13:55 +0100 | [diff] [blame] | 367 | [AZX_DRIVER_SCH] = "HDA Intel MID", |
Takashi Iwai | fab1285 | 2013-11-05 17:54:05 +0100 | [diff] [blame] | 368 | [AZX_DRIVER_HDMI] = "HDA Intel HDMI", |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 369 | [AZX_DRIVER_ATI] = "HDA ATI SB", |
Felix Kuehling | 778b6e1 | 2006-05-17 11:22:21 +0200 | [diff] [blame] | 370 | [AZX_DRIVER_ATIHDMI] = "HDA ATI HDMI", |
Andiry Xu | 1815b34 | 2011-12-14 16:10:27 +0800 | [diff] [blame] | 371 | [AZX_DRIVER_ATIHDMI_NS] = "HDA ATI HDMI", |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 372 | [AZX_DRIVER_VIA] = "HDA VIA VT82xx", |
| 373 | [AZX_DRIVER_SIS] = "HDA SIS966", |
Vinod G | da3fca2 | 2005-09-13 18:49:12 +0200 | [diff] [blame] | 374 | [AZX_DRIVER_ULI] = "HDA ULI M5461", |
| 375 | [AZX_DRIVER_NVIDIA] = "HDA NVidia", |
Kailang Yang | f269002 | 2008-05-27 11:44:55 +0200 | [diff] [blame] | 376 | [AZX_DRIVER_TERA] = "HDA Teradici", |
Takashi Iwai | 14d34f1 | 2010-10-21 09:03:25 +0200 | [diff] [blame] | 377 | [AZX_DRIVER_CTX] = "HDA Creative", |
Takashi Iwai | 5ae763b | 2012-05-08 10:34:08 +0200 | [diff] [blame] | 378 | [AZX_DRIVER_CTHDA] = "HDA Creative", |
Takashi Iwai | c563f47 | 2014-08-06 14:27:42 +0200 | [diff] [blame] | 379 | [AZX_DRIVER_CMEDIA] = "HDA C-Media", |
Yang, Libin | c4da29c | 2008-11-13 11:07:07 +0100 | [diff] [blame] | 380 | [AZX_DRIVER_GENERIC] = "HD-Audio Generic", |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 381 | }; |
| 382 | |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 383 | #ifdef CONFIG_X86 |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 384 | 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] | 385 | { |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 386 | int pages; |
| 387 | |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 388 | if (azx_snoop(chip)) |
| 389 | return; |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 390 | if (!dmab || !dmab->area || !dmab->bytes) |
| 391 | return; |
| 392 | |
| 393 | #ifdef CONFIG_SND_DMA_SGBUF |
| 394 | if (dmab->dev.type == SNDRV_DMA_TYPE_DEV_SG) { |
| 395 | struct snd_sg_buf *sgbuf = dmab->private_data; |
Takashi Iwai | 3b70bdb | 2014-10-29 16:13:05 +0100 | [diff] [blame] | 396 | if (chip->driver_type == AZX_DRIVER_CMEDIA) |
| 397 | return; /* deal with only CORB/RIRB buffers */ |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 398 | if (on) |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 399 | set_pages_array_wc(sgbuf->page_table, sgbuf->pages); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 400 | else |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 401 | set_pages_array_wb(sgbuf->page_table, sgbuf->pages); |
| 402 | return; |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 403 | } |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 404 | #endif |
| 405 | |
| 406 | pages = (dmab->bytes + PAGE_SIZE - 1) >> PAGE_SHIFT; |
| 407 | if (on) |
| 408 | set_memory_wc((unsigned long)dmab->area, pages); |
| 409 | else |
| 410 | set_memory_wb((unsigned long)dmab->area, pages); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | static inline void mark_pages_wc(struct azx *chip, struct snd_dma_buffer *buf, |
| 414 | bool on) |
| 415 | { |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 416 | __mark_pages_wc(chip, buf, on); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 417 | } |
| 418 | 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] | 419 | struct snd_pcm_substream *substream, bool on) |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 420 | { |
| 421 | if (azx_dev->wc_marked != on) { |
Takashi Iwai | 9ddf1ae | 2013-01-29 18:07:22 +0100 | [diff] [blame] | 422 | __mark_pages_wc(chip, snd_pcm_get_dma_buf(substream), on); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 423 | azx_dev->wc_marked = on; |
| 424 | } |
| 425 | } |
| 426 | #else |
| 427 | /* NOP for other archs */ |
| 428 | static inline void mark_pages_wc(struct azx *chip, struct snd_dma_buffer *buf, |
| 429 | bool on) |
| 430 | { |
| 431 | } |
| 432 | 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] | 433 | struct snd_pcm_substream *substream, bool on) |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 434 | { |
| 435 | } |
| 436 | #endif |
| 437 | |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 438 | static int azx_acquire_irq(struct azx *chip, int do_disconnect); |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 439 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 440 | /* |
| 441 | * initialize the PCI registers |
| 442 | */ |
| 443 | /* update bits in a PCI register byte */ |
| 444 | static void update_pci_byte(struct pci_dev *pci, unsigned int reg, |
| 445 | unsigned char mask, unsigned char val) |
| 446 | { |
| 447 | unsigned char data; |
| 448 | |
| 449 | pci_read_config_byte(pci, reg, &data); |
| 450 | data &= ~mask; |
| 451 | data |= (val & mask); |
| 452 | pci_write_config_byte(pci, reg, data); |
| 453 | } |
| 454 | |
| 455 | static void azx_init_pci(struct azx *chip) |
| 456 | { |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 457 | int snoop_type = azx_get_snoop_type(chip); |
| 458 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 459 | /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44) |
| 460 | * TCSEL == Traffic Class Select Register, which sets PCI express QOS |
| 461 | * Ensuring these bits are 0 clears playback static on some HD Audio |
Adam Lackorzynski | a09e89f | 2011-03-10 17:41:56 +0100 | [diff] [blame] | 462 | * codecs. |
| 463 | * The PCI register TCSEL is defined in the Intel manuals. |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 464 | */ |
Linus Torvalds | 46f2cc8 | 2011-05-27 19:45:28 -0700 | [diff] [blame] | 465 | if (!(chip->driver_caps & AZX_DCAPS_NO_TCSEL)) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 466 | dev_dbg(chip->card->dev, "Clearing TCSEL\n"); |
Takashi Iwai | fb1d8ac | 2014-06-26 17:54:37 +0200 | [diff] [blame] | 467 | update_pci_byte(chip->pci, AZX_PCIREG_TCSEL, 0x07, 0); |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 468 | } |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 469 | |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 470 | /* For ATI SB450/600/700/800/900 and AMD Hudson azalia HD audio, |
| 471 | * we need to enable snoop. |
| 472 | */ |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 473 | if (snoop_type == AZX_SNOOP_TYPE_ATI) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 474 | dev_dbg(chip->card->dev, "Setting ATI snoop: %d\n", |
| 475 | azx_snoop(chip)); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 476 | update_pci_byte(chip->pci, |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 477 | ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR, 0x07, |
| 478 | azx_snoop(chip) ? ATI_SB450_HDAUDIO_ENABLE_SNOOP : 0); |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 479 | } |
| 480 | |
| 481 | /* For NVIDIA HDA, enable snoop */ |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 482 | if (snoop_type == AZX_SNOOP_TYPE_NVIDIA) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 483 | dev_dbg(chip->card->dev, "Setting Nvidia snoop: %d\n", |
| 484 | azx_snoop(chip)); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 485 | update_pci_byte(chip->pci, |
| 486 | NVIDIA_HDA_TRANSREG_ADDR, |
| 487 | 0x0f, NVIDIA_HDA_ENABLE_COHBITS); |
Peer Chen | 320dcc3 | 2008-08-20 16:43:24 -0700 | [diff] [blame] | 488 | update_pci_byte(chip->pci, |
| 489 | NVIDIA_HDA_ISTRM_COH, |
| 490 | 0x01, NVIDIA_HDA_ENABLE_COHBIT); |
| 491 | update_pci_byte(chip->pci, |
| 492 | NVIDIA_HDA_OSTRM_COH, |
| 493 | 0x01, NVIDIA_HDA_ENABLE_COHBIT); |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 494 | } |
| 495 | |
| 496 | /* Enable SCH/PCH snoop if needed */ |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 497 | if (snoop_type == AZX_SNOOP_TYPE_SCH) { |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 498 | unsigned short snoop; |
Takashi Iwai | 90a5ad5 | 2008-02-22 18:36:22 +0100 | [diff] [blame] | 499 | pci_read_config_word(chip->pci, INTEL_SCH_HDA_DEVC, &snoop); |
Takashi Iwai | 27fe48d9 | 2011-09-28 17:16:09 +0200 | [diff] [blame] | 500 | if ((!azx_snoop(chip) && !(snoop & INTEL_SCH_HDA_DEVC_NOSNOOP)) || |
| 501 | (azx_snoop(chip) && (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP))) { |
| 502 | snoop &= ~INTEL_SCH_HDA_DEVC_NOSNOOP; |
| 503 | if (!azx_snoop(chip)) |
| 504 | snoop |= INTEL_SCH_HDA_DEVC_NOSNOOP; |
| 505 | pci_write_config_word(chip->pci, INTEL_SCH_HDA_DEVC, snoop); |
Takashi Iwai | 90a5ad5 | 2008-02-22 18:36:22 +0100 | [diff] [blame] | 506 | pci_read_config_word(chip->pci, |
| 507 | INTEL_SCH_HDA_DEVC, &snoop); |
Takashi Iwai | 90a5ad5 | 2008-02-22 18:36:22 +0100 | [diff] [blame] | 508 | } |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 509 | dev_dbg(chip->card->dev, "SCH snoop: %s\n", |
| 510 | (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP) ? |
| 511 | "Disabled" : "Enabled"); |
Vinod G | da3fca2 | 2005-09-13 18:49:12 +0200 | [diff] [blame] | 512 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | } |
| 514 | |
Lu, Han | 0a67352 | 2015-05-05 09:05:48 +0800 | [diff] [blame] | 515 | static void hda_intel_init_chip(struct azx *chip, bool full_reset) |
| 516 | { |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 517 | struct hdac_bus *bus = azx_bus(chip); |
Lu, Han | 0a67352 | 2015-05-05 09:05:48 +0800 | [diff] [blame] | 518 | |
| 519 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 520 | snd_hdac_set_codec_wakeup(bus, true); |
Lu, Han | 0a67352 | 2015-05-05 09:05:48 +0800 | [diff] [blame] | 521 | azx_init_chip(chip, full_reset); |
| 522 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 523 | snd_hdac_set_codec_wakeup(bus, false); |
Lu, Han | 0a67352 | 2015-05-05 09:05:48 +0800 | [diff] [blame] | 524 | } |
| 525 | |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 526 | /* calculate runtime delay from LPIB */ |
| 527 | static int azx_get_delay_from_lpib(struct azx *chip, struct azx_dev *azx_dev, |
| 528 | unsigned int pos) |
| 529 | { |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 530 | struct snd_pcm_substream *substream = azx_dev->core.substream; |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 531 | int stream = substream->stream; |
| 532 | unsigned int lpib_pos = azx_get_pos_lpib(chip, azx_dev); |
| 533 | int delay; |
| 534 | |
| 535 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) |
| 536 | delay = pos - lpib_pos; |
| 537 | else |
| 538 | delay = lpib_pos - pos; |
| 539 | if (delay < 0) { |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 540 | if (delay >= azx_dev->core.delay_negative_threshold) |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 541 | delay = 0; |
| 542 | else |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 543 | delay += azx_dev->core.bufsize; |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 544 | } |
| 545 | |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 546 | if (delay >= azx_dev->core.period_bytes) { |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 547 | dev_info(chip->card->dev, |
| 548 | "Unstable LPIB (%d >= %d); disabling LPIB delay counting\n", |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 549 | delay, azx_dev->core.period_bytes); |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 550 | delay = 0; |
| 551 | chip->driver_caps &= ~AZX_DCAPS_COUNT_LPIB_DELAY; |
| 552 | chip->get_delay[stream] = NULL; |
| 553 | } |
| 554 | |
| 555 | return bytes_to_frames(substream->runtime, delay); |
| 556 | } |
| 557 | |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 558 | static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev); |
| 559 | |
Dylan Reid | 7ca954a | 2014-02-28 15:41:28 -0800 | [diff] [blame] | 560 | /* called from IRQ */ |
| 561 | static int azx_position_check(struct azx *chip, struct azx_dev *azx_dev) |
| 562 | { |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 563 | struct hda_intel *hda = container_of(chip, struct hda_intel, chip); |
Dylan Reid | 7ca954a | 2014-02-28 15:41:28 -0800 | [diff] [blame] | 564 | int ok; |
| 565 | |
| 566 | ok = azx_position_ok(chip, azx_dev); |
| 567 | if (ok == 1) { |
| 568 | azx_dev->irq_pending = 0; |
| 569 | return ok; |
Takashi Iwai | 2f35c63 | 2015-02-27 22:43:26 +0100 | [diff] [blame] | 570 | } else if (ok == 0) { |
Dylan Reid | 7ca954a | 2014-02-28 15:41:28 -0800 | [diff] [blame] | 571 | /* bogus IRQ, process it later */ |
| 572 | azx_dev->irq_pending = 1; |
Takashi Iwai | 2f35c63 | 2015-02-27 22:43:26 +0100 | [diff] [blame] | 573 | schedule_work(&hda->irq_pending_work); |
Dylan Reid | 7ca954a | 2014-02-28 15:41:28 -0800 | [diff] [blame] | 574 | } |
| 575 | return 0; |
| 576 | } |
| 577 | |
Mengdong Lin | 17eccb2 | 2015-04-29 17:43:29 +0800 | [diff] [blame] | 578 | /* Enable/disable i915 display power for the link */ |
| 579 | static int azx_intel_link_power(struct azx *chip, bool enable) |
| 580 | { |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 581 | struct hdac_bus *bus = azx_bus(chip); |
Mengdong Lin | 17eccb2 | 2015-04-29 17:43:29 +0800 | [diff] [blame] | 582 | |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 583 | return snd_hdac_display_power(bus, enable); |
Mengdong Lin | 17eccb2 | 2015-04-29 17:43:29 +0800 | [diff] [blame] | 584 | } |
| 585 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | /* |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 587 | * Check whether the current DMA position is acceptable for updating |
| 588 | * periods. Returns non-zero if it's OK. |
| 589 | * |
| 590 | * Many HD-audio controllers appear pretty inaccurate about |
| 591 | * the update-IRQ timing. The IRQ is issued before actually the |
| 592 | * data is processed. So, we need to process it afterwords in a |
| 593 | * workqueue. |
| 594 | */ |
| 595 | static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev) |
| 596 | { |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 597 | struct snd_pcm_substream *substream = azx_dev->core.substream; |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 598 | int stream = substream->stream; |
Jaroslav Kysela | e546372 | 2010-05-11 10:21:46 +0200 | [diff] [blame] | 599 | u32 wallclk; |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 600 | unsigned int pos; |
| 601 | |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 602 | wallclk = azx_readl(chip, WALLCLK) - azx_dev->core.start_wallclk; |
| 603 | if (wallclk < (azx_dev->core.period_wallclk * 2) / 3) |
Jaroslav Kysela | fa00e04 | 2009-04-10 12:20:45 +0200 | [diff] [blame] | 604 | return -1; /* bogus (too early) interrupt */ |
Jaroslav Kysela | fa00e04 | 2009-04-10 12:20:45 +0200 | [diff] [blame] | 605 | |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 606 | if (chip->get_position[stream]) |
| 607 | pos = chip->get_position[stream](chip, azx_dev); |
| 608 | else { /* use the position buffer as default */ |
| 609 | pos = azx_get_pos_posbuf(chip, azx_dev); |
| 610 | if (!pos || pos == (u32)-1) { |
| 611 | dev_info(chip->card->dev, |
| 612 | "Invalid position buffer, using LPIB read method instead.\n"); |
| 613 | chip->get_position[stream] = azx_get_pos_lpib; |
Takashi Iwai | ccc9886 | 2015-04-14 22:06:53 +0200 | [diff] [blame] | 614 | if (chip->get_position[0] == azx_get_pos_lpib && |
| 615 | chip->get_position[1] == azx_get_pos_lpib) |
| 616 | azx_bus(chip)->use_posbuf = false; |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 617 | pos = azx_get_pos_lpib(chip, azx_dev); |
| 618 | chip->get_delay[stream] = NULL; |
| 619 | } else { |
| 620 | chip->get_position[stream] = azx_get_pos_posbuf; |
| 621 | if (chip->driver_caps & AZX_DCAPS_COUNT_LPIB_DELAY) |
| 622 | chip->get_delay[stream] = azx_get_delay_from_lpib; |
| 623 | } |
| 624 | } |
| 625 | |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 626 | if (pos >= azx_dev->core.bufsize) |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 627 | pos = 0; |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 628 | |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 629 | if (WARN_ONCE(!azx_dev->core.period_bytes, |
Takashi Iwai | d6d8bf5 | 2010-02-12 18:17:06 +0100 | [diff] [blame] | 630 | "hda-intel: zero azx_dev->period_bytes")) |
Jaroslav Kysela | f48f606 | 2010-05-11 12:10:47 +0200 | [diff] [blame] | 631 | return -1; /* this shouldn't happen! */ |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 632 | if (wallclk < (azx_dev->core.period_wallclk * 5) / 4 && |
| 633 | pos % azx_dev->core.period_bytes > azx_dev->core.period_bytes / 2) |
Jaroslav Kysela | f48f606 | 2010-05-11 12:10:47 +0200 | [diff] [blame] | 634 | /* NG - it's below the first next period boundary */ |
Takashi Iwai | 4f0189b | 2015-12-10 16:44:08 +0100 | [diff] [blame] | 635 | return chip->bdl_pos_adj ? 0 : -1; |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 636 | azx_dev->core.start_wallclk += wallclk; |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 637 | return 1; /* OK, it's fine */ |
| 638 | } |
| 639 | |
| 640 | /* |
| 641 | * The work for pending PCM period updates. |
| 642 | */ |
| 643 | static void azx_irq_pending_work(struct work_struct *work) |
| 644 | { |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 645 | struct hda_intel *hda = container_of(work, struct hda_intel, irq_pending_work); |
| 646 | struct azx *chip = &hda->chip; |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 647 | struct hdac_bus *bus = azx_bus(chip); |
| 648 | struct hdac_stream *s; |
| 649 | int pending, ok; |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 650 | |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 651 | if (!hda->irq_pending_warned) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 652 | dev_info(chip->card->dev, |
| 653 | "IRQ timing workaround is activated for card #%d. Suggest a bigger bdl_pos_adj.\n", |
| 654 | chip->card->number); |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 655 | hda->irq_pending_warned = 1; |
Takashi Iwai | a6a950a | 2008-06-10 17:53:35 +0200 | [diff] [blame] | 656 | } |
| 657 | |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 658 | for (;;) { |
| 659 | pending = 0; |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 660 | spin_lock_irq(&bus->reg_lock); |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 661 | list_for_each_entry(s, &bus->stream_list, list) { |
| 662 | struct azx_dev *azx_dev = stream_to_azx_dev(s); |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 663 | if (!azx_dev->irq_pending || |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 664 | !s->substream || |
| 665 | !s->running) |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 666 | continue; |
Jaroslav Kysela | e546372 | 2010-05-11 10:21:46 +0200 | [diff] [blame] | 667 | ok = azx_position_ok(chip, azx_dev); |
| 668 | if (ok > 0) { |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 669 | azx_dev->irq_pending = 0; |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 670 | spin_unlock(&bus->reg_lock); |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 671 | snd_pcm_period_elapsed(s->substream); |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 672 | spin_lock(&bus->reg_lock); |
Jaroslav Kysela | e546372 | 2010-05-11 10:21:46 +0200 | [diff] [blame] | 673 | } else if (ok < 0) { |
| 674 | pending = 0; /* too early */ |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 675 | } else |
| 676 | pending++; |
| 677 | } |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 678 | spin_unlock_irq(&bus->reg_lock); |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 679 | if (!pending) |
| 680 | return; |
Takashi Iwai | 08af495 | 2010-08-03 14:39:04 +0200 | [diff] [blame] | 681 | msleep(1); |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 682 | } |
| 683 | } |
| 684 | |
| 685 | /* clear irq_pending flags and assure no on-going workq */ |
| 686 | static void azx_clear_irq_pending(struct azx *chip) |
| 687 | { |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 688 | struct hdac_bus *bus = azx_bus(chip); |
| 689 | struct hdac_stream *s; |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 690 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 691 | spin_lock_irq(&bus->reg_lock); |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 692 | list_for_each_entry(s, &bus->stream_list, list) { |
| 693 | struct azx_dev *azx_dev = stream_to_azx_dev(s); |
| 694 | azx_dev->irq_pending = 0; |
| 695 | } |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 696 | spin_unlock_irq(&bus->reg_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | } |
| 698 | |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 699 | static int azx_acquire_irq(struct azx *chip, int do_disconnect) |
| 700 | { |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 701 | struct hdac_bus *bus = azx_bus(chip); |
| 702 | |
Takashi Iwai | 437a5a4 | 2006-11-21 12:14:23 +0100 | [diff] [blame] | 703 | if (request_irq(chip->pci->irq, azx_interrupt, |
| 704 | chip->msi ? 0 : IRQF_SHARED, |
Takashi Iwai | 934c2b6 | 2011-06-10 16:36:37 +0200 | [diff] [blame] | 705 | KBUILD_MODNAME, chip)) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 706 | dev_err(chip->card->dev, |
| 707 | "unable to grab IRQ %d, disabling device\n", |
| 708 | chip->pci->irq); |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 709 | if (do_disconnect) |
| 710 | snd_card_disconnect(chip->card); |
| 711 | return -1; |
| 712 | } |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 713 | bus->irq = chip->pci->irq; |
Takashi Iwai | 69e1341 | 2006-11-21 12:10:55 +0100 | [diff] [blame] | 714 | pci_intx(chip->pci, !chip->msi); |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 715 | return 0; |
| 716 | } |
| 717 | |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 718 | /* get the current DMA position with correction on VIA chips */ |
| 719 | static unsigned int azx_via_get_position(struct azx *chip, |
| 720 | struct azx_dev *azx_dev) |
| 721 | { |
| 722 | unsigned int link_pos, mini_pos, bound_pos; |
| 723 | unsigned int mod_link_pos, mod_dma_pos, mod_mini_pos; |
| 724 | unsigned int fifo_size; |
| 725 | |
Takashi Iwai | 1604eee | 2015-04-16 12:14:17 +0200 | [diff] [blame] | 726 | link_pos = snd_hdac_stream_get_pos_lpib(azx_stream(azx_dev)); |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 727 | if (azx_dev->core.substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 728 | /* Playback, no problem using link position */ |
| 729 | return link_pos; |
| 730 | } |
| 731 | |
| 732 | /* Capture */ |
| 733 | /* For new chipset, |
| 734 | * use mod to get the DMA position just like old chipset |
| 735 | */ |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 736 | mod_dma_pos = le32_to_cpu(*azx_dev->core.posbuf); |
| 737 | mod_dma_pos %= azx_dev->core.period_bytes; |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 738 | |
| 739 | /* azx_dev->fifo_size can't get FIFO size of in stream. |
| 740 | * Get from base address + offset. |
| 741 | */ |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 742 | fifo_size = readw(azx_bus(chip)->remap_addr + |
| 743 | VIA_IN_STREAM0_FIFO_SIZE_OFFSET); |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 744 | |
| 745 | if (azx_dev->insufficient) { |
| 746 | /* Link position never gather than FIFO size */ |
| 747 | if (link_pos <= fifo_size) |
| 748 | return 0; |
| 749 | |
| 750 | azx_dev->insufficient = 0; |
| 751 | } |
| 752 | |
| 753 | if (link_pos <= fifo_size) |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 754 | mini_pos = azx_dev->core.bufsize + link_pos - fifo_size; |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 755 | else |
| 756 | mini_pos = link_pos - fifo_size; |
| 757 | |
| 758 | /* Find nearest previous boudary */ |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 759 | mod_mini_pos = mini_pos % azx_dev->core.period_bytes; |
| 760 | mod_link_pos = link_pos % azx_dev->core.period_bytes; |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 761 | if (mod_link_pos >= fifo_size) |
| 762 | bound_pos = link_pos - mod_link_pos; |
| 763 | else if (mod_dma_pos >= mod_mini_pos) |
| 764 | bound_pos = mini_pos - mod_mini_pos; |
| 765 | else { |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 766 | bound_pos = mini_pos - mod_mini_pos + azx_dev->core.period_bytes; |
| 767 | if (bound_pos >= azx_dev->core.bufsize) |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 768 | bound_pos = 0; |
| 769 | } |
| 770 | |
| 771 | /* Calculate real DMA position we want */ |
| 772 | return bound_pos + mod_dma_pos; |
| 773 | } |
| 774 | |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 775 | #ifdef CONFIG_PM |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 776 | static DEFINE_MUTEX(card_list_lock); |
| 777 | static LIST_HEAD(card_list); |
| 778 | |
| 779 | static void azx_add_card_list(struct azx *chip) |
| 780 | { |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 781 | struct hda_intel *hda = container_of(chip, struct hda_intel, chip); |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 782 | mutex_lock(&card_list_lock); |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 783 | list_add(&hda->list, &card_list); |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 784 | mutex_unlock(&card_list_lock); |
| 785 | } |
| 786 | |
| 787 | static void azx_del_card_list(struct azx *chip) |
| 788 | { |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 789 | struct hda_intel *hda = container_of(chip, struct hda_intel, chip); |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 790 | mutex_lock(&card_list_lock); |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 791 | list_del_init(&hda->list); |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 792 | mutex_unlock(&card_list_lock); |
| 793 | } |
| 794 | |
| 795 | /* trigger power-save check at writing parameter */ |
| 796 | static int param_set_xint(const char *val, const struct kernel_param *kp) |
| 797 | { |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 798 | struct hda_intel *hda; |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 799 | struct azx *chip; |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 800 | int prev = power_save; |
| 801 | int ret = param_set_int(val, kp); |
| 802 | |
| 803 | if (ret || prev == power_save) |
| 804 | return ret; |
| 805 | |
| 806 | mutex_lock(&card_list_lock); |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 807 | list_for_each_entry(hda, &card_list, list) { |
| 808 | chip = &hda->chip; |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 809 | if (!hda->probe_continued || chip->disabled) |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 810 | continue; |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 811 | snd_hda_set_power_save(&chip->bus, power_save * 1000); |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 812 | } |
| 813 | mutex_unlock(&card_list_lock); |
| 814 | return 0; |
| 815 | } |
| 816 | #else |
| 817 | #define azx_add_card_list(chip) /* NOP */ |
| 818 | #define azx_del_card_list(chip) /* NOP */ |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 819 | #endif /* CONFIG_PM */ |
Takashi Iwai | 5c0b9be | 2008-12-11 11:47:17 +0100 | [diff] [blame] | 820 | |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 821 | /* Intel HSW/BDW display HDA controller is in GPU. Both its power and link BCLK |
| 822 | * depends on GPU. Two Extended Mode registers EM4 (M value) and EM5 (N Value) |
| 823 | * are used to convert CDClk (Core Display Clock) to 24MHz BCLK: |
| 824 | * BCLK = CDCLK * M / N |
| 825 | * The values will be lost when the display power well is disabled and need to |
| 826 | * be restored to avoid abnormal playback speed. |
| 827 | */ |
| 828 | static void haswell_set_bclk(struct hda_intel *hda) |
| 829 | { |
| 830 | struct azx *chip = &hda->chip; |
| 831 | int cdclk_freq; |
| 832 | unsigned int bclk_m, bclk_n; |
| 833 | |
| 834 | if (!hda->need_i915_power) |
| 835 | return; |
| 836 | |
| 837 | cdclk_freq = snd_hdac_get_display_clk(azx_bus(chip)); |
| 838 | switch (cdclk_freq) { |
| 839 | case 337500: |
| 840 | bclk_m = 16; |
| 841 | bclk_n = 225; |
| 842 | break; |
| 843 | |
| 844 | case 450000: |
| 845 | default: /* default CDCLK 450MHz */ |
| 846 | bclk_m = 4; |
| 847 | bclk_n = 75; |
| 848 | break; |
| 849 | |
| 850 | case 540000: |
| 851 | bclk_m = 4; |
| 852 | bclk_n = 90; |
| 853 | break; |
| 854 | |
| 855 | case 675000: |
| 856 | bclk_m = 8; |
| 857 | bclk_n = 225; |
| 858 | break; |
| 859 | } |
| 860 | |
| 861 | azx_writew(chip, HSW_EM4, bclk_m); |
| 862 | azx_writew(chip, HSW_EM5, bclk_n); |
| 863 | } |
| 864 | |
Takashi Iwai | 7ccbde5 | 2012-08-14 18:10:09 +0200 | [diff] [blame] | 865 | #if defined(CONFIG_PM_SLEEP) || defined(SUPPORT_VGA_SWITCHEROO) |
Takashi Iwai | 5c0b9be | 2008-12-11 11:47:17 +0100 | [diff] [blame] | 866 | /* |
| 867 | * power management |
| 868 | */ |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 869 | static int azx_suspend(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | { |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 871 | struct snd_card *card = dev_get_drvdata(dev); |
Takashi Iwai | 2d9772e | 2014-07-16 16:31:04 +0200 | [diff] [blame] | 872 | struct azx *chip; |
| 873 | struct hda_intel *hda; |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 874 | struct hdac_bus *bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | |
Takashi Iwai | 2d9772e | 2014-07-16 16:31:04 +0200 | [diff] [blame] | 876 | if (!card) |
| 877 | return 0; |
| 878 | |
| 879 | chip = card->private_data; |
| 880 | hda = container_of(chip, struct hda_intel, chip); |
U. Artie Eoff | 342e844 | 2015-07-28 13:29:56 -0700 | [diff] [blame] | 881 | if (chip->disabled || hda->init_failed || !chip->running) |
Takashi Iwai | c5c2152 | 2012-12-04 17:01:25 +0100 | [diff] [blame] | 882 | return 0; |
| 883 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 884 | bus = azx_bus(chip); |
Takashi Iwai | 421a125 | 2005-11-17 16:11:09 +0100 | [diff] [blame] | 885 | snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 886 | azx_clear_irq_pending(chip); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 887 | azx_stop_chip(chip); |
Mengdong Lin | 7295b26 | 2013-06-25 05:58:49 -0400 | [diff] [blame] | 888 | azx_enter_link_reset(chip); |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 889 | if (bus->irq >= 0) { |
| 890 | free_irq(bus->irq, chip); |
| 891 | bus->irq = -1; |
Takashi Iwai | 30b3539 | 2006-10-11 18:52:53 +0200 | [diff] [blame] | 892 | } |
Mengdong Lin | a07187c | 2014-06-26 18:45:16 +0800 | [diff] [blame] | 893 | |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 894 | if (chip->msi) |
Takashi Iwai | 43001c9 | 2006-09-08 12:30:03 +0200 | [diff] [blame] | 895 | pci_disable_msi(chip->pci); |
Mengdong Lin | 795614d | 2015-04-29 17:43:36 +0800 | [diff] [blame] | 896 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL |
| 897 | && hda->need_i915_power) |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 898 | snd_hdac_display_power(bus, false); |
Libin Yang | 785d8c4 | 2015-05-12 09:43:22 +0800 | [diff] [blame] | 899 | |
| 900 | trace_azx_suspend(chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | return 0; |
| 902 | } |
| 903 | |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 904 | static int azx_resume(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | { |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 906 | struct pci_dev *pci = to_pci_dev(dev); |
| 907 | struct snd_card *card = dev_get_drvdata(dev); |
Takashi Iwai | 2d9772e | 2014-07-16 16:31:04 +0200 | [diff] [blame] | 908 | struct azx *chip; |
| 909 | struct hda_intel *hda; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | |
Takashi Iwai | 2d9772e | 2014-07-16 16:31:04 +0200 | [diff] [blame] | 911 | if (!card) |
| 912 | return 0; |
| 913 | |
| 914 | chip = card->private_data; |
| 915 | hda = container_of(chip, struct hda_intel, chip); |
U. Artie Eoff | 342e844 | 2015-07-28 13:29:56 -0700 | [diff] [blame] | 916 | if (chip->disabled || hda->init_failed || !chip->running) |
Takashi Iwai | c5c2152 | 2012-12-04 17:01:25 +0100 | [diff] [blame] | 917 | return 0; |
| 918 | |
Mengdong Lin | 795614d | 2015-04-29 17:43:36 +0800 | [diff] [blame] | 919 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL |
| 920 | && hda->need_i915_power) { |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 921 | snd_hdac_display_power(azx_bus(chip), true); |
Imre Deak | 926981a | 2015-01-08 17:54:16 +0200 | [diff] [blame] | 922 | haswell_set_bclk(hda); |
Mengdong Lin | a07187c | 2014-06-26 18:45:16 +0800 | [diff] [blame] | 923 | } |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 924 | if (chip->msi) |
| 925 | if (pci_enable_msi(pci) < 0) |
| 926 | chip->msi = 0; |
| 927 | if (azx_acquire_irq(chip, 1) < 0) |
Takashi Iwai | 30b3539 | 2006-10-11 18:52:53 +0200 | [diff] [blame] | 928 | return -EIO; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 929 | azx_init_pci(chip); |
Maxim Levitsky | d804ad9 | 2007-09-03 15:28:04 +0200 | [diff] [blame] | 930 | |
Lu, Han | 0a67352 | 2015-05-05 09:05:48 +0800 | [diff] [blame] | 931 | hda_intel_init_chip(chip, true); |
Maxim Levitsky | d804ad9 | 2007-09-03 15:28:04 +0200 | [diff] [blame] | 932 | |
Takashi Iwai | 421a125 | 2005-11-17 16:11:09 +0100 | [diff] [blame] | 933 | snd_power_change_state(card, SNDRV_CTL_POWER_D0); |
Libin Yang | 785d8c4 | 2015-05-12 09:43:22 +0800 | [diff] [blame] | 934 | |
| 935 | trace_azx_resume(chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | return 0; |
| 937 | } |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 938 | #endif /* CONFIG_PM_SLEEP || SUPPORT_VGA_SWITCHEROO */ |
| 939 | |
Rafael J. Wysocki | 641d334 | 2014-12-13 00:42:18 +0100 | [diff] [blame] | 940 | #ifdef CONFIG_PM |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 941 | static int azx_runtime_suspend(struct device *dev) |
| 942 | { |
| 943 | struct snd_card *card = dev_get_drvdata(dev); |
Takashi Iwai | 2d9772e | 2014-07-16 16:31:04 +0200 | [diff] [blame] | 944 | struct azx *chip; |
| 945 | struct hda_intel *hda; |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 946 | |
Takashi Iwai | 2d9772e | 2014-07-16 16:31:04 +0200 | [diff] [blame] | 947 | if (!card) |
| 948 | return 0; |
| 949 | |
| 950 | chip = card->private_data; |
| 951 | hda = container_of(chip, struct hda_intel, chip); |
Takashi Iwai | 1618e84 | 2014-07-15 15:27:19 +0200 | [diff] [blame] | 952 | if (chip->disabled || hda->init_failed) |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 953 | return 0; |
| 954 | |
Takashi Iwai | 364aa71 | 2015-02-19 16:51:17 +0100 | [diff] [blame] | 955 | if (!azx_has_pm_runtime(chip)) |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 956 | return 0; |
| 957 | |
Wang Xingchao | 7d4f606 | 2013-07-25 23:34:46 -0400 | [diff] [blame] | 958 | /* enable controller wake up event */ |
| 959 | azx_writew(chip, WAKEEN, azx_readw(chip, WAKEEN) | |
| 960 | STATESTS_INT_MASK); |
| 961 | |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 962 | azx_stop_chip(chip); |
Takashi Iwai | 873ce8a | 2013-11-26 11:58:40 +0100 | [diff] [blame] | 963 | azx_enter_link_reset(chip); |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 964 | azx_clear_irq_pending(chip); |
Mengdong Lin | 795614d | 2015-04-29 17:43:36 +0800 | [diff] [blame] | 965 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL |
| 966 | && hda->need_i915_power) |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 967 | snd_hdac_display_power(azx_bus(chip), false); |
Mengdong Lin | e4d9e51 | 2014-07-03 17:02:23 +0800 | [diff] [blame] | 968 | |
Libin Yang | 785d8c4 | 2015-05-12 09:43:22 +0800 | [diff] [blame] | 969 | trace_azx_runtime_suspend(chip); |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 970 | return 0; |
| 971 | } |
| 972 | |
| 973 | static int azx_runtime_resume(struct device *dev) |
| 974 | { |
| 975 | struct snd_card *card = dev_get_drvdata(dev); |
Takashi Iwai | 2d9772e | 2014-07-16 16:31:04 +0200 | [diff] [blame] | 976 | struct azx *chip; |
| 977 | struct hda_intel *hda; |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 978 | struct hdac_bus *bus; |
Wang Xingchao | 7d4f606 | 2013-07-25 23:34:46 -0400 | [diff] [blame] | 979 | struct hda_codec *codec; |
| 980 | int status; |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 981 | |
Takashi Iwai | 2d9772e | 2014-07-16 16:31:04 +0200 | [diff] [blame] | 982 | if (!card) |
| 983 | return 0; |
| 984 | |
| 985 | chip = card->private_data; |
| 986 | hda = container_of(chip, struct hda_intel, chip); |
Takashi Iwai | 1618e84 | 2014-07-15 15:27:19 +0200 | [diff] [blame] | 987 | if (chip->disabled || hda->init_failed) |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 988 | return 0; |
| 989 | |
Takashi Iwai | 364aa71 | 2015-02-19 16:51:17 +0100 | [diff] [blame] | 990 | if (!azx_has_pm_runtime(chip)) |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 991 | return 0; |
| 992 | |
David Henningsson | 033ea34 | 2015-07-16 10:39:24 +0200 | [diff] [blame] | 993 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) { |
| 994 | bus = azx_bus(chip); |
| 995 | if (hda->need_i915_power) { |
| 996 | snd_hdac_display_power(bus, true); |
| 997 | haswell_set_bclk(hda); |
| 998 | } else { |
| 999 | /* toggle codec wakeup bit for STATESTS read */ |
| 1000 | snd_hdac_set_codec_wakeup(bus, true); |
| 1001 | snd_hdac_set_codec_wakeup(bus, false); |
| 1002 | } |
Mengdong Lin | a07187c | 2014-06-26 18:45:16 +0800 | [diff] [blame] | 1003 | } |
Wang Xingchao | 7d4f606 | 2013-07-25 23:34:46 -0400 | [diff] [blame] | 1004 | |
| 1005 | /* Read STATESTS before controller reset */ |
| 1006 | status = azx_readw(chip, STATESTS); |
| 1007 | |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 1008 | azx_init_pci(chip); |
Lu, Han | 0a67352 | 2015-05-05 09:05:48 +0800 | [diff] [blame] | 1009 | hda_intel_init_chip(chip, true); |
Wang Xingchao | 7d4f606 | 2013-07-25 23:34:46 -0400 | [diff] [blame] | 1010 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1011 | if (status) { |
| 1012 | list_for_each_codec(codec, &chip->bus) |
Wang Xingchao | 7d4f606 | 2013-07-25 23:34:46 -0400 | [diff] [blame] | 1013 | if (status & (1 << codec->addr)) |
Takashi Iwai | 2f35c63 | 2015-02-27 22:43:26 +0100 | [diff] [blame] | 1014 | schedule_delayed_work(&codec->jackpoll_work, |
| 1015 | codec->jackpoll_interval); |
Wang Xingchao | 7d4f606 | 2013-07-25 23:34:46 -0400 | [diff] [blame] | 1016 | } |
| 1017 | |
| 1018 | /* disable controller Wake Up event*/ |
| 1019 | azx_writew(chip, WAKEEN, azx_readw(chip, WAKEEN) & |
| 1020 | ~STATESTS_INT_MASK); |
| 1021 | |
Libin Yang | 785d8c4 | 2015-05-12 09:43:22 +0800 | [diff] [blame] | 1022 | trace_azx_runtime_resume(chip); |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 1023 | return 0; |
| 1024 | } |
Takashi Iwai | 6eb827d | 2012-12-12 11:50:12 +0100 | [diff] [blame] | 1025 | |
| 1026 | static int azx_runtime_idle(struct device *dev) |
| 1027 | { |
| 1028 | struct snd_card *card = dev_get_drvdata(dev); |
Takashi Iwai | 2d9772e | 2014-07-16 16:31:04 +0200 | [diff] [blame] | 1029 | struct azx *chip; |
| 1030 | struct hda_intel *hda; |
Takashi Iwai | 6eb827d | 2012-12-12 11:50:12 +0100 | [diff] [blame] | 1031 | |
Takashi Iwai | 2d9772e | 2014-07-16 16:31:04 +0200 | [diff] [blame] | 1032 | if (!card) |
| 1033 | return 0; |
| 1034 | |
| 1035 | chip = card->private_data; |
| 1036 | hda = container_of(chip, struct hda_intel, chip); |
Takashi Iwai | 1618e84 | 2014-07-15 15:27:19 +0200 | [diff] [blame] | 1037 | if (chip->disabled || hda->init_failed) |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 1038 | return 0; |
| 1039 | |
Takashi Iwai | 55ed9cd | 2015-02-19 17:35:32 +0100 | [diff] [blame] | 1040 | if (!power_save_controller || !azx_has_pm_runtime(chip) || |
U. Artie Eoff | 342e844 | 2015-07-28 13:29:56 -0700 | [diff] [blame] | 1041 | azx_bus(chip)->codec_powered || !chip->running) |
Takashi Iwai | 6eb827d | 2012-12-12 11:50:12 +0100 | [diff] [blame] | 1042 | return -EBUSY; |
| 1043 | |
| 1044 | return 0; |
| 1045 | } |
| 1046 | |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 1047 | static const struct dev_pm_ops azx_pm = { |
| 1048 | SET_SYSTEM_SLEEP_PM_OPS(azx_suspend, azx_resume) |
Takashi Iwai | 6eb827d | 2012-12-12 11:50:12 +0100 | [diff] [blame] | 1049 | 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] | 1050 | }; |
| 1051 | |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 1052 | #define AZX_PM_OPS &azx_pm |
| 1053 | #else |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 1054 | #define AZX_PM_OPS NULL |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 1055 | #endif /* CONFIG_PM */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | |
| 1057 | |
Takashi Iwai | 48c8b0e | 2012-12-07 07:40:35 +0100 | [diff] [blame] | 1058 | static int azx_probe_continue(struct azx *chip); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1059 | |
Steven Newbury | 8393ec4a | 2012-06-08 13:06:29 +0200 | [diff] [blame] | 1060 | #ifdef SUPPORT_VGA_SWITCHEROO |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1061 | static struct pci_dev *get_bound_vga(struct pci_dev *pci); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1062 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1063 | static void azx_vs_set_state(struct pci_dev *pci, |
| 1064 | enum vga_switcheroo_state state) |
| 1065 | { |
| 1066 | struct snd_card *card = pci_get_drvdata(pci); |
| 1067 | struct azx *chip = card->private_data; |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1068 | struct hda_intel *hda = container_of(chip, struct hda_intel, chip); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1069 | bool disabled; |
| 1070 | |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1071 | wait_for_completion(&hda->probe_wait); |
| 1072 | if (hda->init_failed) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1073 | return; |
| 1074 | |
| 1075 | disabled = (state == VGA_SWITCHEROO_OFF); |
| 1076 | if (chip->disabled == disabled) |
| 1077 | return; |
| 1078 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1079 | if (!hda->probe_continued) { |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1080 | chip->disabled = disabled; |
| 1081 | if (!disabled) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1082 | dev_info(chip->card->dev, |
| 1083 | "Start delayed initialization\n"); |
Takashi Iwai | 5c90680 | 2013-05-30 22:07:09 +0800 | [diff] [blame] | 1084 | if (azx_probe_continue(chip) < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1085 | dev_err(chip->card->dev, "initialization error\n"); |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1086 | hda->init_failed = true; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1087 | } |
| 1088 | } |
| 1089 | } else { |
Lukas Wunner | 2b760d8 | 2015-09-04 20:49:36 +0200 | [diff] [blame] | 1090 | dev_info(chip->card->dev, "%s via vga_switcheroo\n", |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1091 | disabled ? "Disabling" : "Enabling"); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1092 | if (disabled) { |
Dylan Reid | 8928756 | 2014-02-28 15:41:15 -0800 | [diff] [blame] | 1093 | pm_runtime_put_sync_suspend(card->dev); |
| 1094 | azx_suspend(card->dev); |
Lukas Wunner | 2b760d8 | 2015-09-04 20:49:36 +0200 | [diff] [blame] | 1095 | /* when we get suspended by vga_switcheroo we end up in D3cold, |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 1096 | * however we have no ACPI handle, so pci/acpi can't put us there, |
| 1097 | * put ourselves there */ |
| 1098 | pci->current_state = PCI_D3cold; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1099 | chip->disabled = true; |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1100 | if (snd_hda_lock_devices(&chip->bus)) |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1101 | dev_warn(chip->card->dev, |
| 1102 | "Cannot lock devices!\n"); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1103 | } else { |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1104 | snd_hda_unlock_devices(&chip->bus); |
Dylan Reid | 8928756 | 2014-02-28 15:41:15 -0800 | [diff] [blame] | 1105 | pm_runtime_get_noresume(card->dev); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1106 | chip->disabled = false; |
Dylan Reid | 8928756 | 2014-02-28 15:41:15 -0800 | [diff] [blame] | 1107 | azx_resume(card->dev); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1108 | } |
| 1109 | } |
| 1110 | } |
| 1111 | |
| 1112 | static bool azx_vs_can_switch(struct pci_dev *pci) |
| 1113 | { |
| 1114 | struct snd_card *card = pci_get_drvdata(pci); |
| 1115 | struct azx *chip = card->private_data; |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1116 | struct hda_intel *hda = container_of(chip, struct hda_intel, chip); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1117 | |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1118 | wait_for_completion(&hda->probe_wait); |
| 1119 | if (hda->init_failed) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1120 | return false; |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1121 | if (chip->disabled || !hda->probe_continued) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1122 | return true; |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1123 | if (snd_hda_lock_devices(&chip->bus)) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1124 | return false; |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1125 | snd_hda_unlock_devices(&chip->bus); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1126 | return true; |
| 1127 | } |
| 1128 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1129 | static void init_vga_switcheroo(struct azx *chip) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1130 | { |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1131 | struct hda_intel *hda = container_of(chip, struct hda_intel, chip); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1132 | struct pci_dev *p = get_bound_vga(chip->pci); |
| 1133 | if (p) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1134 | dev_info(chip->card->dev, |
Lukas Wunner | 2b760d8 | 2015-09-04 20:49:36 +0200 | [diff] [blame] | 1135 | "Handle vga_switcheroo audio client\n"); |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1136 | hda->use_vga_switcheroo = 1; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1137 | pci_dev_put(p); |
| 1138 | } |
| 1139 | } |
| 1140 | |
| 1141 | static const struct vga_switcheroo_client_ops azx_vs_ops = { |
| 1142 | .set_gpu_state = azx_vs_set_state, |
| 1143 | .can_switch = azx_vs_can_switch, |
| 1144 | }; |
| 1145 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1146 | static int register_vga_switcheroo(struct azx *chip) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1147 | { |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1148 | struct hda_intel *hda = container_of(chip, struct hda_intel, chip); |
Takashi Iwai | 128960a | 2012-10-12 17:28:18 +0200 | [diff] [blame] | 1149 | int err; |
| 1150 | |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1151 | if (!hda->use_vga_switcheroo) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1152 | return 0; |
| 1153 | /* FIXME: currently only handling DIS controller |
| 1154 | * is there any machine with two switchable HDMI audio controllers? |
| 1155 | */ |
Takashi Iwai | 128960a | 2012-10-12 17:28:18 +0200 | [diff] [blame] | 1156 | err = vga_switcheroo_register_audio_client(chip->pci, &azx_vs_ops, |
Lukas Wunner | 21b4567 | 2015-08-27 16:43:43 +0200 | [diff] [blame] | 1157 | VGA_SWITCHEROO_DIS); |
Takashi Iwai | 128960a | 2012-10-12 17:28:18 +0200 | [diff] [blame] | 1158 | if (err < 0) |
| 1159 | return err; |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1160 | hda->vga_switcheroo_registered = 1; |
Dave Airlie | 246efa4 | 2013-07-29 15:19:29 +1000 | [diff] [blame] | 1161 | |
| 1162 | /* register as an optimus hdmi audio power domain */ |
Dylan Reid | 8928756 | 2014-02-28 15:41:15 -0800 | [diff] [blame] | 1163 | vga_switcheroo_init_domain_pm_optimus_hdmi_audio(chip->card->dev, |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1164 | &hda->hdmi_pm_domain); |
Takashi Iwai | 128960a | 2012-10-12 17:28:18 +0200 | [diff] [blame] | 1165 | return 0; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1166 | } |
| 1167 | #else |
| 1168 | #define init_vga_switcheroo(chip) /* NOP */ |
| 1169 | #define register_vga_switcheroo(chip) 0 |
Steven Newbury | 8393ec4a | 2012-06-08 13:06:29 +0200 | [diff] [blame] | 1170 | #define check_hdmi_disabled(pci) false |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1171 | #endif /* SUPPORT_VGA_SWITCHER */ |
| 1172 | |
Takashi Iwai | 0cbf009 | 2008-10-29 16:18:25 +0100 | [diff] [blame] | 1173 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | * destructor |
| 1175 | */ |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1176 | static int azx_free(struct azx *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | { |
Wang Xingchao | c67e222 | 2013-05-30 22:07:08 +0800 | [diff] [blame] | 1178 | struct pci_dev *pci = chip->pci; |
Mengdong Lin | a07187c | 2014-06-26 18:45:16 +0800 | [diff] [blame] | 1179 | struct hda_intel *hda = container_of(chip, struct hda_intel, chip); |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1180 | struct hdac_bus *bus = azx_bus(chip); |
Takashi Iwai | 4ce107b | 2008-02-06 14:50:19 +0100 | [diff] [blame] | 1181 | |
Takashi Iwai | 364aa71 | 2015-02-19 16:51:17 +0100 | [diff] [blame] | 1182 | if (azx_has_pm_runtime(chip) && chip->running) |
Wang Xingchao | c67e222 | 2013-05-30 22:07:08 +0800 | [diff] [blame] | 1183 | pm_runtime_get_noresume(&pci->dev); |
| 1184 | |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 1185 | azx_del_card_list(chip); |
| 1186 | |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1187 | hda->init_failed = 1; /* to be sure */ |
| 1188 | complete_all(&hda->probe_wait); |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 1189 | |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1190 | if (use_vga_switcheroo(hda)) { |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1191 | if (chip->disabled && hda->probe_continued) |
| 1192 | snd_hda_unlock_devices(&chip->bus); |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1193 | if (hda->vga_switcheroo_registered) |
Takashi Iwai | 128960a | 2012-10-12 17:28:18 +0200 | [diff] [blame] | 1194 | vga_switcheroo_unregister_client(chip->pci); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1195 | } |
| 1196 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1197 | if (bus->chip_init) { |
Takashi Iwai | 9ad593f | 2008-05-16 12:34:47 +0200 | [diff] [blame] | 1198 | azx_clear_irq_pending(chip); |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 1199 | azx_stop_all_streams(chip); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1200 | azx_stop_chip(chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1201 | } |
| 1202 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1203 | if (bus->irq >= 0) |
| 1204 | free_irq(bus->irq, (void*)chip); |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 1205 | if (chip->msi) |
Takashi Iwai | 30b3539 | 2006-10-11 18:52:53 +0200 | [diff] [blame] | 1206 | pci_disable_msi(chip->pci); |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1207 | iounmap(bus->remap_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | |
Dylan Reid | 6790899 | 2014-02-28 15:41:23 -0800 | [diff] [blame] | 1209 | azx_free_stream_pages(chip); |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1210 | azx_free_streams(chip); |
| 1211 | snd_hdac_bus_exit(bus); |
| 1212 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1213 | if (chip->region_requested) |
| 1214 | pci_release_regions(chip->pci); |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1216 | pci_disable_device(chip->pci); |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 1217 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
Markus Elfring | f0acd28 | 2014-11-17 10:44:33 +0100 | [diff] [blame] | 1218 | release_firmware(chip->fw); |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 1219 | #endif |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 1220 | |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 1221 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) { |
Mengdong Lin | 795614d | 2015-04-29 17:43:36 +0800 | [diff] [blame] | 1222 | if (hda->need_i915_power) |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 1223 | snd_hdac_display_power(bus, false); |
| 1224 | snd_hdac_i915_exit(bus); |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 1225 | } |
Mengdong Lin | a07187c | 2014-06-26 18:45:16 +0800 | [diff] [blame] | 1226 | kfree(hda); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | |
| 1228 | return 0; |
| 1229 | } |
| 1230 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1231 | static int azx_dev_disconnect(struct snd_device *device) |
| 1232 | { |
| 1233 | struct azx *chip = device->device_data; |
| 1234 | |
| 1235 | chip->bus.shutdown = 1; |
| 1236 | return 0; |
| 1237 | } |
| 1238 | |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1239 | static int azx_dev_free(struct snd_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | { |
| 1241 | return azx_free(device->device_data); |
| 1242 | } |
| 1243 | |
Steven Newbury | 8393ec4a | 2012-06-08 13:06:29 +0200 | [diff] [blame] | 1244 | #ifdef SUPPORT_VGA_SWITCHEROO |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1245 | /* |
Lukas Wunner | 2b760d8 | 2015-09-04 20:49:36 +0200 | [diff] [blame] | 1246 | * Check of disabled HDMI controller by vga_switcheroo |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 1247 | */ |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1248 | static struct pci_dev *get_bound_vga(struct pci_dev *pci) |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 1249 | { |
| 1250 | struct pci_dev *p; |
| 1251 | |
| 1252 | /* check only discrete GPU */ |
| 1253 | switch (pci->vendor) { |
| 1254 | case PCI_VENDOR_ID_ATI: |
| 1255 | case PCI_VENDOR_ID_AMD: |
| 1256 | case PCI_VENDOR_ID_NVIDIA: |
| 1257 | if (pci->devfn == 1) { |
| 1258 | p = pci_get_domain_bus_and_slot(pci_domain_nr(pci->bus), |
| 1259 | pci->bus->number, 0); |
| 1260 | if (p) { |
| 1261 | if ((p->class >> 8) == PCI_CLASS_DISPLAY_VGA) |
| 1262 | return p; |
| 1263 | pci_dev_put(p); |
| 1264 | } |
| 1265 | } |
| 1266 | break; |
| 1267 | } |
| 1268 | return NULL; |
| 1269 | } |
| 1270 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1271 | static bool check_hdmi_disabled(struct pci_dev *pci) |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 1272 | { |
| 1273 | bool vga_inactive = false; |
| 1274 | struct pci_dev *p = get_bound_vga(pci); |
| 1275 | |
| 1276 | if (p) { |
Takashi Iwai | 12b78a7 | 2012-06-07 12:15:16 +0200 | [diff] [blame] | 1277 | if (vga_switcheroo_get_client_state(p) == VGA_SWITCHEROO_OFF) |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 1278 | vga_inactive = true; |
| 1279 | pci_dev_put(p); |
| 1280 | } |
| 1281 | return vga_inactive; |
| 1282 | } |
Steven Newbury | 8393ec4a | 2012-06-08 13:06:29 +0200 | [diff] [blame] | 1283 | #endif /* SUPPORT_VGA_SWITCHEROO */ |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 1284 | |
| 1285 | /* |
Takashi Iwai | 3372a15 | 2007-02-01 15:46:50 +0100 | [diff] [blame] | 1286 | * white/black-listing for position_fix |
| 1287 | */ |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1288 | static struct snd_pci_quirk position_fix_list[] = { |
Takashi Iwai | d2e1c97 | 2008-06-10 17:53:34 +0200 | [diff] [blame] | 1289 | SND_PCI_QUIRK(0x1028, 0x01cc, "Dell D820", POS_FIX_LPIB), |
| 1290 | SND_PCI_QUIRK(0x1028, 0x01de, "Dell Precision 390", POS_FIX_LPIB), |
Takashi Iwai | 2f703e7 | 2009-12-01 14:17:37 +0100 | [diff] [blame] | 1291 | SND_PCI_QUIRK(0x103c, 0x306d, "HP dv3", POS_FIX_LPIB), |
Takashi Iwai | d2e1c97 | 2008-06-10 17:53:34 +0200 | [diff] [blame] | 1292 | SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB), |
Daniel T Chen | dd37f8e | 2010-05-30 01:17:03 -0400 | [diff] [blame] | 1293 | SND_PCI_QUIRK(0x1043, 0x81b3, "ASUS", POS_FIX_LPIB), |
Daniel T Chen | 9f75c1b | 2010-05-30 13:08:41 -0400 | [diff] [blame] | 1294 | SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS M2V", POS_FIX_LPIB), |
Daniel T Chen | e96d312 | 2010-05-27 18:32:18 -0400 | [diff] [blame] | 1295 | SND_PCI_QUIRK(0x104d, 0x9069, "Sony VPCS11V9E", POS_FIX_LPIB), |
David Henningsson | b01de4f | 2012-01-12 16:31:14 +0100 | [diff] [blame] | 1296 | 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] | 1297 | SND_PCI_QUIRK(0x1297, 0x3166, "Shuttle", POS_FIX_LPIB), |
Daniel T Chen | 9ec8dda | 2010-03-28 02:34:40 -0400 | [diff] [blame] | 1298 | SND_PCI_QUIRK(0x1458, 0xa022, "ga-ma770-ud3", POS_FIX_LPIB), |
Takashi Iwai | 45d4ebf | 2009-11-30 11:58:30 +0100 | [diff] [blame] | 1299 | SND_PCI_QUIRK(0x1462, 0x1002, "MSI Wind U115", POS_FIX_LPIB), |
Takashi Iwai | 8815cd0 | 2010-04-15 09:02:41 +0200 | [diff] [blame] | 1300 | SND_PCI_QUIRK(0x1565, 0x8218, "Biostar Microtech", POS_FIX_LPIB), |
Daniel T Chen | b90c076 | 2010-05-30 19:31:41 -0400 | [diff] [blame] | 1301 | SND_PCI_QUIRK(0x1849, 0x0888, "775Dual-VSTA", POS_FIX_LPIB), |
Daniel T Chen | 0e0280d | 2010-04-21 19:55:43 -0400 | [diff] [blame] | 1302 | SND_PCI_QUIRK(0x8086, 0x2503, "DG965OT AAD63733-203", POS_FIX_LPIB), |
Takashi Iwai | 3372a15 | 2007-02-01 15:46:50 +0100 | [diff] [blame] | 1303 | {} |
| 1304 | }; |
| 1305 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1306 | static int check_position_fix(struct azx *chip, int fix) |
Takashi Iwai | 3372a15 | 2007-02-01 15:46:50 +0100 | [diff] [blame] | 1307 | { |
| 1308 | const struct snd_pci_quirk *q; |
| 1309 | |
Takashi Iwai | c673ba1 | 2009-03-17 07:49:14 +0100 | [diff] [blame] | 1310 | switch (fix) { |
Takashi Iwai | 1dac669 | 2012-09-13 14:59:47 +0200 | [diff] [blame] | 1311 | case POS_FIX_AUTO: |
Takashi Iwai | c673ba1 | 2009-03-17 07:49:14 +0100 | [diff] [blame] | 1312 | case POS_FIX_LPIB: |
| 1313 | case POS_FIX_POSBUF: |
David Henningsson | 4cb3631 | 2010-09-30 10:12:50 +0200 | [diff] [blame] | 1314 | case POS_FIX_VIACOMBO: |
Takashi Iwai | a6f2fd5 | 2012-02-28 11:58:40 +0100 | [diff] [blame] | 1315 | case POS_FIX_COMBO: |
Takashi Iwai | c673ba1 | 2009-03-17 07:49:14 +0100 | [diff] [blame] | 1316 | return fix; |
| 1317 | } |
| 1318 | |
Takashi Iwai | c673ba1 | 2009-03-17 07:49:14 +0100 | [diff] [blame] | 1319 | q = snd_pci_quirk_lookup(chip->pci, position_fix_list); |
| 1320 | if (q) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1321 | dev_info(chip->card->dev, |
| 1322 | "position_fix set to %d for device %04x:%04x\n", |
| 1323 | q->value, q->subvendor, q->subdevice); |
Takashi Iwai | c673ba1 | 2009-03-17 07:49:14 +0100 | [diff] [blame] | 1324 | return q->value; |
Takashi Iwai | 3372a15 | 2007-02-01 15:46:50 +0100 | [diff] [blame] | 1325 | } |
David Henningsson | bdd9ef2 | 2010-10-04 12:02:14 +0200 | [diff] [blame] | 1326 | |
| 1327 | /* Check VIA/ATI HD Audio Controller exist */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1328 | if (chip->driver_caps & AZX_DCAPS_POSFIX_VIA) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1329 | dev_dbg(chip->card->dev, "Using VIACOMBO position fix\n"); |
David Henningsson | bdd9ef2 | 2010-10-04 12:02:14 +0200 | [diff] [blame] | 1330 | return POS_FIX_VIACOMBO; |
| 1331 | } |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1332 | if (chip->driver_caps & AZX_DCAPS_POSFIX_LPIB) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1333 | dev_dbg(chip->card->dev, "Using LPIB position fix\n"); |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1334 | return POS_FIX_LPIB; |
| 1335 | } |
Takashi Iwai | c673ba1 | 2009-03-17 07:49:14 +0100 | [diff] [blame] | 1336 | return POS_FIX_AUTO; |
Takashi Iwai | 3372a15 | 2007-02-01 15:46:50 +0100 | [diff] [blame] | 1337 | } |
| 1338 | |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 1339 | static void assign_position_fix(struct azx *chip, int fix) |
| 1340 | { |
| 1341 | static azx_get_pos_callback_t callbacks[] = { |
| 1342 | [POS_FIX_AUTO] = NULL, |
| 1343 | [POS_FIX_LPIB] = azx_get_pos_lpib, |
| 1344 | [POS_FIX_POSBUF] = azx_get_pos_posbuf, |
| 1345 | [POS_FIX_VIACOMBO] = azx_via_get_position, |
| 1346 | [POS_FIX_COMBO] = azx_get_pos_lpib, |
| 1347 | }; |
| 1348 | |
| 1349 | chip->get_position[0] = chip->get_position[1] = callbacks[fix]; |
| 1350 | |
| 1351 | /* combo mode uses LPIB only for playback */ |
| 1352 | if (fix == POS_FIX_COMBO) |
| 1353 | chip->get_position[1] = NULL; |
| 1354 | |
| 1355 | if (fix == POS_FIX_POSBUF && |
| 1356 | (chip->driver_caps & AZX_DCAPS_COUNT_LPIB_DELAY)) { |
| 1357 | chip->get_delay[0] = chip->get_delay[1] = |
| 1358 | azx_get_delay_from_lpib; |
| 1359 | } |
| 1360 | |
| 1361 | } |
| 1362 | |
Takashi Iwai | 3372a15 | 2007-02-01 15:46:50 +0100 | [diff] [blame] | 1363 | /* |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 1364 | * black-lists for probe_mask |
| 1365 | */ |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1366 | static struct snd_pci_quirk probe_mask_list[] = { |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 1367 | /* Thinkpad often breaks the controller communication when accessing |
| 1368 | * to the non-working (or non-existing) modem codec slot. |
| 1369 | */ |
| 1370 | SND_PCI_QUIRK(0x1014, 0x05b7, "Thinkpad Z60", 0x01), |
| 1371 | SND_PCI_QUIRK(0x17aa, 0x2010, "Thinkpad X/T/R60", 0x01), |
| 1372 | SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X/T/R61", 0x01), |
Takashi Iwai | 0edb945 | 2008-11-07 14:53:09 +0100 | [diff] [blame] | 1373 | /* broken BIOS */ |
| 1374 | SND_PCI_QUIRK(0x1028, 0x20ac, "Dell Studio Desktop", 0x01), |
Takashi Iwai | ef1681d | 2008-11-24 17:29:28 +0100 | [diff] [blame] | 1375 | /* including bogus ALC268 in slot#2 that conflicts with ALC888 */ |
| 1376 | SND_PCI_QUIRK(0x17c0, 0x4085, "Medion MD96630", 0x01), |
Takashi Iwai | 20db7cb | 2009-02-13 08:18:48 +0100 | [diff] [blame] | 1377 | /* forced codec slots */ |
Ozan Çağlayan | 9357484 | 2009-05-23 15:00:04 +0300 | [diff] [blame] | 1378 | SND_PCI_QUIRK(0x1043, 0x1262, "ASUS W5Fm", 0x103), |
Takashi Iwai | 20db7cb | 2009-02-13 08:18:48 +0100 | [diff] [blame] | 1379 | SND_PCI_QUIRK(0x1046, 0x1262, "ASUS W5F", 0x103), |
Jaroslav Kysela | f3af905 | 2012-04-26 17:52:35 +0200 | [diff] [blame] | 1380 | /* WinFast VP200 H (Teradici) user reported broken communication */ |
| 1381 | SND_PCI_QUIRK(0x3a21, 0x040d, "WinFast VP200 H", 0x101), |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 1382 | {} |
| 1383 | }; |
| 1384 | |
Takashi Iwai | f1eaaee | 2009-02-13 08:16:55 +0100 | [diff] [blame] | 1385 | #define AZX_FORCE_CODEC_MASK 0x100 |
| 1386 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1387 | static void check_probe_mask(struct azx *chip, int dev) |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 1388 | { |
| 1389 | const struct snd_pci_quirk *q; |
| 1390 | |
Takashi Iwai | f1eaaee | 2009-02-13 08:16:55 +0100 | [diff] [blame] | 1391 | chip->codec_probe_mask = probe_mask[dev]; |
| 1392 | if (chip->codec_probe_mask == -1) { |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 1393 | q = snd_pci_quirk_lookup(chip->pci, probe_mask_list); |
| 1394 | if (q) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1395 | dev_info(chip->card->dev, |
| 1396 | "probe_mask set to 0x%x for device %04x:%04x\n", |
| 1397 | q->value, q->subvendor, q->subdevice); |
Takashi Iwai | f1eaaee | 2009-02-13 08:16:55 +0100 | [diff] [blame] | 1398 | chip->codec_probe_mask = q->value; |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 1399 | } |
| 1400 | } |
Takashi Iwai | f1eaaee | 2009-02-13 08:16:55 +0100 | [diff] [blame] | 1401 | |
| 1402 | /* check forced option */ |
| 1403 | if (chip->codec_probe_mask != -1 && |
| 1404 | (chip->codec_probe_mask & AZX_FORCE_CODEC_MASK)) { |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1405 | azx_bus(chip)->codec_mask = chip->codec_probe_mask & 0xff; |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1406 | dev_info(chip->card->dev, "codec_mask forced to 0x%x\n", |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1407 | (int)azx_bus(chip)->codec_mask); |
Takashi Iwai | f1eaaee | 2009-02-13 08:16:55 +0100 | [diff] [blame] | 1408 | } |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 1409 | } |
| 1410 | |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 1411 | /* |
Takashi Iwai | 71623855 | 2009-09-28 13:14:04 +0200 | [diff] [blame] | 1412 | * white/black-list for enable_msi |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 1413 | */ |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1414 | static struct snd_pci_quirk msi_black_list[] = { |
David Henningsson | 693e0cb | 2013-12-12 09:52:03 +0100 | [diff] [blame] | 1415 | SND_PCI_QUIRK(0x103c, 0x2191, "HP", 0), /* AMD Hudson */ |
| 1416 | SND_PCI_QUIRK(0x103c, 0x2192, "HP", 0), /* AMD Hudson */ |
| 1417 | SND_PCI_QUIRK(0x103c, 0x21f7, "HP", 0), /* AMD Hudson */ |
| 1418 | SND_PCI_QUIRK(0x103c, 0x21fa, "HP", 0), /* AMD Hudson */ |
Takashi Iwai | 9dc8398 | 2009-12-22 08:15:01 +0100 | [diff] [blame] | 1419 | SND_PCI_QUIRK(0x1043, 0x81f2, "ASUS", 0), /* Athlon64 X2 + nvidia */ |
Takashi Iwai | 0a27fcf | 2010-02-15 17:05:28 +0100 | [diff] [blame] | 1420 | SND_PCI_QUIRK(0x1043, 0x81f6, "ASUS", 0), /* nvidia */ |
Ralf Gerbig | ecd2162 | 2010-03-09 18:25:47 +0100 | [diff] [blame] | 1421 | SND_PCI_QUIRK(0x1043, 0x822d, "ASUS", 0), /* Athlon64 X2 + nvidia MCP55 */ |
Takashi Iwai | 83f7215 | 2013-09-09 10:20:48 +0200 | [diff] [blame] | 1422 | SND_PCI_QUIRK(0x1179, 0xfb44, "Toshiba Satellite C870", 0), /* AMD Hudson */ |
Michele Ballabio | 4193d13 | 2010-03-06 21:06:46 +0100 | [diff] [blame] | 1423 | SND_PCI_QUIRK(0x1849, 0x0888, "ASRock", 0), /* Athlon64 X2 + nvidia */ |
Takashi Iwai | 3815595 | 2010-04-04 12:14:03 +0200 | [diff] [blame] | 1424 | SND_PCI_QUIRK(0xa0a0, 0x0575, "Aopen MZ915-M", 0), /* ICH6 */ |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 1425 | {} |
| 1426 | }; |
| 1427 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1428 | static void check_msi(struct azx *chip) |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 1429 | { |
| 1430 | const struct snd_pci_quirk *q; |
| 1431 | |
Takashi Iwai | 71623855 | 2009-09-28 13:14:04 +0200 | [diff] [blame] | 1432 | if (enable_msi >= 0) { |
| 1433 | chip->msi = !!enable_msi; |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 1434 | return; |
Takashi Iwai | 71623855 | 2009-09-28 13:14:04 +0200 | [diff] [blame] | 1435 | } |
| 1436 | chip->msi = 1; /* enable MSI as default */ |
| 1437 | q = snd_pci_quirk_lookup(chip->pci, msi_black_list); |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 1438 | if (q) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1439 | dev_info(chip->card->dev, |
| 1440 | "msi for device %04x:%04x set to %d\n", |
| 1441 | q->subvendor, q->subdevice, q->value); |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 1442 | chip->msi = q->value; |
Takashi Iwai | 80c43ed | 2010-03-15 15:51:53 +0100 | [diff] [blame] | 1443 | return; |
| 1444 | } |
| 1445 | |
| 1446 | /* NVidia chipsets seem to cause troubles with MSI */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1447 | if (chip->driver_caps & AZX_DCAPS_NO_MSI) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1448 | dev_info(chip->card->dev, "Disabling MSI\n"); |
Takashi Iwai | 80c43ed | 2010-03-15 15:51:53 +0100 | [diff] [blame] | 1449 | chip->msi = 0; |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 1450 | } |
| 1451 | } |
| 1452 | |
Takashi Iwai | a1585d7 | 2011-12-14 09:27:04 +0100 | [diff] [blame] | 1453 | /* check the snoop mode availability */ |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1454 | static void azx_check_snoop_available(struct azx *chip) |
Takashi Iwai | a1585d7 | 2011-12-14 09:27:04 +0100 | [diff] [blame] | 1455 | { |
Takashi Iwai | 7c73201 | 2014-11-25 12:54:16 +0100 | [diff] [blame] | 1456 | int snoop = hda_snoop; |
Takashi Iwai | a1585d7 | 2011-12-14 09:27:04 +0100 | [diff] [blame] | 1457 | |
Takashi Iwai | 7c73201 | 2014-11-25 12:54:16 +0100 | [diff] [blame] | 1458 | if (snoop >= 0) { |
| 1459 | dev_info(chip->card->dev, "Force to %s mode by module option\n", |
| 1460 | snoop ? "snoop" : "non-snoop"); |
| 1461 | chip->snoop = snoop; |
| 1462 | return; |
| 1463 | } |
| 1464 | |
| 1465 | snoop = true; |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 1466 | if (azx_get_snoop_type(chip) == AZX_SNOOP_TYPE_NONE && |
| 1467 | chip->driver_type == AZX_DRIVER_VIA) { |
Takashi Iwai | a1585d7 | 2011-12-14 09:27:04 +0100 | [diff] [blame] | 1468 | /* force to non-snoop mode for a new VIA controller |
| 1469 | * when BIOS is set |
| 1470 | */ |
Takashi Iwai | 7c73201 | 2014-11-25 12:54:16 +0100 | [diff] [blame] | 1471 | u8 val; |
| 1472 | pci_read_config_byte(chip->pci, 0x42, &val); |
| 1473 | if (!(val & 0x80) && chip->pci->revision == 0x30) |
| 1474 | snoop = false; |
Takashi Iwai | a1585d7 | 2011-12-14 09:27:04 +0100 | [diff] [blame] | 1475 | } |
| 1476 | |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 1477 | if (chip->driver_caps & AZX_DCAPS_SNOOP_OFF) |
| 1478 | snoop = false; |
| 1479 | |
Takashi Iwai | 7c73201 | 2014-11-25 12:54:16 +0100 | [diff] [blame] | 1480 | chip->snoop = snoop; |
| 1481 | if (!snoop) |
| 1482 | dev_info(chip->card->dev, "Force to non-snoop mode\n"); |
Takashi Iwai | a1585d7 | 2011-12-14 09:27:04 +0100 | [diff] [blame] | 1483 | } |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 1484 | |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 1485 | static void azx_probe_work(struct work_struct *work) |
| 1486 | { |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1487 | struct hda_intel *hda = container_of(work, struct hda_intel, probe_work); |
| 1488 | azx_probe_continue(&hda->chip); |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 1489 | } |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 1490 | |
Takashi Iwai | 4f0189b | 2015-12-10 16:44:08 +0100 | [diff] [blame] | 1491 | static int default_bdl_pos_adj(struct azx *chip) |
| 1492 | { |
Takashi Iwai | 2cf721d | 2015-12-10 16:49:36 +0100 | [diff] [blame] | 1493 | /* some exceptions: Atoms seem problematic with value 1 */ |
| 1494 | if (chip->pci->vendor == PCI_VENDOR_ID_INTEL) { |
| 1495 | switch (chip->pci->device) { |
| 1496 | case 0x0f04: /* Baytrail */ |
| 1497 | case 0x2284: /* Braswell */ |
| 1498 | return 32; |
| 1499 | } |
| 1500 | } |
| 1501 | |
Takashi Iwai | 4f0189b | 2015-12-10 16:44:08 +0100 | [diff] [blame] | 1502 | switch (chip->driver_type) { |
| 1503 | case AZX_DRIVER_ICH: |
| 1504 | case AZX_DRIVER_PCH: |
| 1505 | return 1; |
| 1506 | default: |
| 1507 | return 32; |
| 1508 | } |
| 1509 | } |
| 1510 | |
Takashi Iwai | 669ba27 | 2007-08-17 09:17:36 +0200 | [diff] [blame] | 1511 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | * constructor |
| 1513 | */ |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 1514 | static const struct hdac_io_ops pci_hda_io_ops; |
| 1515 | static const struct hda_controller_ops pci_hda_ops; |
| 1516 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1517 | static int azx_create(struct snd_card *card, struct pci_dev *pci, |
| 1518 | int dev, unsigned int driver_caps, |
| 1519 | struct azx **rchip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | { |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1521 | static struct snd_device_ops ops = { |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1522 | .dev_disconnect = azx_dev_disconnect, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | .dev_free = azx_dev_free, |
| 1524 | }; |
Mengdong Lin | a07187c | 2014-06-26 18:45:16 +0800 | [diff] [blame] | 1525 | struct hda_intel *hda; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1526 | struct azx *chip; |
| 1527 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | |
| 1529 | *rchip = NULL; |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 1530 | |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 1531 | err = pci_enable_device(pci); |
| 1532 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1533 | return err; |
| 1534 | |
Mengdong Lin | a07187c | 2014-06-26 18:45:16 +0800 | [diff] [blame] | 1535 | hda = kzalloc(sizeof(*hda), GFP_KERNEL); |
| 1536 | if (!hda) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | pci_disable_device(pci); |
| 1538 | return -ENOMEM; |
| 1539 | } |
| 1540 | |
Mengdong Lin | a07187c | 2014-06-26 18:45:16 +0800 | [diff] [blame] | 1541 | chip = &hda->chip; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1542 | mutex_init(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | chip->card = card; |
| 1544 | chip->pci = pci; |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 1545 | chip->ops = &pci_hda_ops; |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1546 | chip->driver_caps = driver_caps; |
| 1547 | chip->driver_type = driver_caps & 0xff; |
Takashi Iwai | 4d8e22e | 2009-08-11 14:21:26 +0200 | [diff] [blame] | 1548 | check_msi(chip); |
Takashi Iwai | 555e219 | 2008-06-10 17:53:34 +0200 | [diff] [blame] | 1549 | chip->dev_index = dev; |
Dylan Reid | 749ee28 | 2014-02-28 15:41:18 -0800 | [diff] [blame] | 1550 | chip->jackpoll_ms = jackpoll_ms; |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 1551 | INIT_LIST_HEAD(&chip->pcm_list); |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1552 | INIT_WORK(&hda->irq_pending_work, azx_irq_pending_work); |
| 1553 | INIT_LIST_HEAD(&hda->list); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1554 | init_vga_switcheroo(chip); |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1555 | init_completion(&hda->probe_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1556 | |
Takashi Iwai | b6050ef | 2014-06-26 16:50:16 +0200 | [diff] [blame] | 1557 | assign_position_fix(chip, check_position_fix(chip, position_fix[dev])); |
Takashi Iwai | a6f2fd5 | 2012-02-28 11:58:40 +0100 | [diff] [blame] | 1558 | |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 1559 | check_probe_mask(chip, dev); |
Takashi Iwai | 3372a15 | 2007-02-01 15:46:50 +0100 | [diff] [blame] | 1560 | |
Takashi Iwai | 2734616 | 2006-01-12 18:28:44 +0100 | [diff] [blame] | 1561 | chip->single_cmd = single_cmd; |
Takashi Iwai | a1585d7 | 2011-12-14 09:27:04 +0100 | [diff] [blame] | 1562 | azx_check_snoop_available(chip); |
Takashi Iwai | c74db86 | 2005-05-12 14:26:27 +0200 | [diff] [blame] | 1563 | |
Takashi Iwai | 4f0189b | 2015-12-10 16:44:08 +0100 | [diff] [blame] | 1564 | if (bdl_pos_adj[dev] < 0) |
| 1565 | chip->bdl_pos_adj = default_bdl_pos_adj(chip); |
| 1566 | else |
| 1567 | chip->bdl_pos_adj = bdl_pos_adj[dev]; |
Takashi Iwai | 5c0d7bc | 2008-06-10 17:53:35 +0200 | [diff] [blame] | 1568 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1569 | err = azx_bus_init(chip, model[dev], &pci_hda_io_ops); |
| 1570 | if (err < 0) { |
| 1571 | kfree(hda); |
| 1572 | pci_disable_device(pci); |
| 1573 | return err; |
| 1574 | } |
| 1575 | |
Takashi Iwai | 7d9a180 | 2015-12-17 08:23:39 +0100 | [diff] [blame^] | 1576 | if (chip->driver_type == AZX_DRIVER_NVIDIA) { |
| 1577 | dev_dbg(chip->card->dev, "Enable delay in RIRB handling\n"); |
| 1578 | chip->bus.needs_damn_long_delay = 1; |
| 1579 | } |
| 1580 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1581 | err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops); |
| 1582 | if (err < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1583 | dev_err(card->dev, "Error creating device [card]!\n"); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1584 | azx_free(chip); |
| 1585 | return err; |
| 1586 | } |
| 1587 | |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 1588 | /* continue probing in work context as may trigger request module */ |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1589 | INIT_WORK(&hda->probe_work, azx_probe_work); |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 1590 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1591 | *rchip = chip; |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 1592 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1593 | return 0; |
| 1594 | } |
| 1595 | |
Takashi Iwai | 48c8b0e | 2012-12-07 07:40:35 +0100 | [diff] [blame] | 1596 | static int azx_first_init(struct azx *chip) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1597 | { |
| 1598 | int dev = chip->dev_index; |
| 1599 | struct pci_dev *pci = chip->pci; |
| 1600 | struct snd_card *card = chip->card; |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1601 | struct hdac_bus *bus = azx_bus(chip); |
Dylan Reid | 6790899 | 2014-02-28 15:41:23 -0800 | [diff] [blame] | 1602 | int err; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1603 | unsigned short gcap; |
Takashi Iwai | 413cbf4 | 2014-10-01 10:30:53 +0200 | [diff] [blame] | 1604 | unsigned int dma_bits = 64; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1605 | |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 1606 | #if BITS_PER_LONG != 64 |
| 1607 | /* Fix up base address on ULI M5461 */ |
| 1608 | if (chip->driver_type == AZX_DRIVER_ULI) { |
| 1609 | u16 tmp3; |
| 1610 | pci_read_config_word(pci, 0x40, &tmp3); |
| 1611 | pci_write_config_word(pci, 0x40, tmp3 | 0x10); |
| 1612 | pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0); |
| 1613 | } |
| 1614 | #endif |
| 1615 | |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 1616 | err = pci_request_regions(pci, "ICH HD audio"); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1617 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | return err; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1619 | chip->region_requested = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1620 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1621 | bus->addr = pci_resource_start(pci, 0); |
| 1622 | bus->remap_addr = pci_ioremap_bar(pci, 0); |
| 1623 | if (bus->remap_addr == NULL) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1624 | dev_err(card->dev, "ioremap error\n"); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1625 | return -ENXIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | } |
| 1627 | |
Benjamin Herrenschmidt | db79afa | 2014-11-24 14:17:08 +1100 | [diff] [blame] | 1628 | if (chip->msi) { |
| 1629 | if (chip->driver_caps & AZX_DCAPS_NO_MSI64) { |
| 1630 | dev_dbg(card->dev, "Disabling 64bit MSI\n"); |
| 1631 | pci->no_64bit_msi = true; |
| 1632 | } |
Takashi Iwai | 68e7fff | 2006-10-23 13:40:59 +0200 | [diff] [blame] | 1633 | if (pci_enable_msi(pci) < 0) |
| 1634 | chip->msi = 0; |
Benjamin Herrenschmidt | db79afa | 2014-11-24 14:17:08 +1100 | [diff] [blame] | 1635 | } |
Stephen Hemminger | 7376d01 | 2006-08-21 19:17:46 +0200 | [diff] [blame] | 1636 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1637 | if (azx_acquire_irq(chip, 0) < 0) |
| 1638 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | |
| 1640 | pci_set_master(pci); |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1641 | synchronize_irq(bus->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 1643 | gcap = azx_readw(chip, GCAP); |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1644 | dev_dbg(card->dev, "chipset global capabilities = 0x%x\n", gcap); |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 1645 | |
Takashi Iwai | 413cbf4 | 2014-10-01 10:30:53 +0200 | [diff] [blame] | 1646 | /* AMD devices support 40 or 48bit DMA, take the safe one */ |
| 1647 | if (chip->pci->vendor == PCI_VENDOR_ID_AMD) |
| 1648 | dma_bits = 40; |
| 1649 | |
Andiry Brienza | dc4c2e6 | 2009-07-08 13:55:31 +0800 | [diff] [blame] | 1650 | /* disable SB600 64bit support for safety */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1651 | if (chip->pci->vendor == PCI_VENDOR_ID_ATI) { |
Andiry Brienza | dc4c2e6 | 2009-07-08 13:55:31 +0800 | [diff] [blame] | 1652 | struct pci_dev *p_smbus; |
Takashi Iwai | 413cbf4 | 2014-10-01 10:30:53 +0200 | [diff] [blame] | 1653 | dma_bits = 40; |
Andiry Brienza | dc4c2e6 | 2009-07-08 13:55:31 +0800 | [diff] [blame] | 1654 | p_smbus = pci_get_device(PCI_VENDOR_ID_ATI, |
| 1655 | PCI_DEVICE_ID_ATI_SBX00_SMBUS, |
| 1656 | NULL); |
| 1657 | if (p_smbus) { |
| 1658 | if (p_smbus->revision < 0x30) |
Takashi Iwai | fb1d8ac | 2014-06-26 17:54:37 +0200 | [diff] [blame] | 1659 | gcap &= ~AZX_GCAP_64OK; |
Andiry Brienza | dc4c2e6 | 2009-07-08 13:55:31 +0800 | [diff] [blame] | 1660 | pci_dev_put(p_smbus); |
| 1661 | } |
| 1662 | } |
Takashi Iwai | 09240cf | 2009-03-17 07:47:18 +0100 | [diff] [blame] | 1663 | |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1664 | /* disable 64bit DMA address on some devices */ |
| 1665 | if (chip->driver_caps & AZX_DCAPS_NO_64BIT) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1666 | dev_dbg(card->dev, "Disabling 64bit DMA\n"); |
Takashi Iwai | fb1d8ac | 2014-06-26 17:54:37 +0200 | [diff] [blame] | 1667 | gcap &= ~AZX_GCAP_64OK; |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 1668 | } |
Jaroslav Kysela | 396087e | 2009-12-09 10:44:47 +0100 | [diff] [blame] | 1669 | |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 1670 | /* disable buffer size rounding to 128-byte multiples if supported */ |
Takashi Iwai | 7bfe059 | 2012-01-23 17:53:39 +0100 | [diff] [blame] | 1671 | if (align_buffer_size >= 0) |
| 1672 | chip->align_buffer_size = !!align_buffer_size; |
| 1673 | else { |
Takashi Iwai | 103884a | 2014-12-03 09:56:20 +0100 | [diff] [blame] | 1674 | if (chip->driver_caps & AZX_DCAPS_NO_ALIGN_BUFSIZE) |
Takashi Iwai | 7bfe059 | 2012-01-23 17:53:39 +0100 | [diff] [blame] | 1675 | chip->align_buffer_size = 0; |
Takashi Iwai | 7bfe059 | 2012-01-23 17:53:39 +0100 | [diff] [blame] | 1676 | else |
| 1677 | chip->align_buffer_size = 1; |
| 1678 | } |
Pierre-Louis Bossart | 2ae66c2 | 2011-08-04 10:12:56 -0500 | [diff] [blame] | 1679 | |
Takashi Iwai | cf7aaca | 2008-02-06 15:05:57 +0100 | [diff] [blame] | 1680 | /* allow 64bit DMA address if supported by H/W */ |
Takashi Iwai | 413cbf4 | 2014-10-01 10:30:53 +0200 | [diff] [blame] | 1681 | if (!(gcap & AZX_GCAP_64OK)) |
| 1682 | dma_bits = 32; |
Quentin Lambert | 412b979 | 2015-04-15 16:10:17 +0200 | [diff] [blame] | 1683 | if (!dma_set_mask(&pci->dev, DMA_BIT_MASK(dma_bits))) { |
| 1684 | dma_set_coherent_mask(&pci->dev, DMA_BIT_MASK(dma_bits)); |
Takashi Iwai | 413cbf4 | 2014-10-01 10:30:53 +0200 | [diff] [blame] | 1685 | } else { |
Quentin Lambert | 412b979 | 2015-04-15 16:10:17 +0200 | [diff] [blame] | 1686 | dma_set_mask(&pci->dev, DMA_BIT_MASK(32)); |
| 1687 | dma_set_coherent_mask(&pci->dev, DMA_BIT_MASK(32)); |
Takashi Iwai | 09240cf | 2009-03-17 07:47:18 +0100 | [diff] [blame] | 1688 | } |
Takashi Iwai | cf7aaca | 2008-02-06 15:05:57 +0100 | [diff] [blame] | 1689 | |
Takashi Iwai | 8b6ed8e | 2008-02-19 11:36:35 +0100 | [diff] [blame] | 1690 | /* read number of streams from GCAP register instead of using |
| 1691 | * hardcoded value |
| 1692 | */ |
| 1693 | chip->capture_streams = (gcap >> 8) & 0x0f; |
| 1694 | chip->playback_streams = (gcap >> 12) & 0x0f; |
| 1695 | if (!chip->playback_streams && !chip->capture_streams) { |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 1696 | /* gcap didn't give any info, switching to old method */ |
| 1697 | |
| 1698 | switch (chip->driver_type) { |
| 1699 | case AZX_DRIVER_ULI: |
| 1700 | chip->playback_streams = ULI_NUM_PLAYBACK; |
| 1701 | chip->capture_streams = ULI_NUM_CAPTURE; |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 1702 | break; |
| 1703 | case AZX_DRIVER_ATIHDMI: |
Andiry Xu | 1815b34 | 2011-12-14 16:10:27 +0800 | [diff] [blame] | 1704 | case AZX_DRIVER_ATIHDMI_NS: |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 1705 | chip->playback_streams = ATIHDMI_NUM_PLAYBACK; |
| 1706 | chip->capture_streams = ATIHDMI_NUM_CAPTURE; |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 1707 | break; |
Yang, Libin | c4da29c | 2008-11-13 11:07:07 +0100 | [diff] [blame] | 1708 | case AZX_DRIVER_GENERIC: |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 1709 | default: |
| 1710 | chip->playback_streams = ICH6_NUM_PLAYBACK; |
| 1711 | chip->capture_streams = ICH6_NUM_CAPTURE; |
Tobin Davis | bcd7200 | 2008-01-15 11:23:55 +0100 | [diff] [blame] | 1712 | break; |
| 1713 | } |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 1714 | } |
Takashi Iwai | 8b6ed8e | 2008-02-19 11:36:35 +0100 | [diff] [blame] | 1715 | chip->capture_index_offset = 0; |
| 1716 | chip->playback_index_offset = chip->capture_streams; |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 1717 | chip->num_streams = chip->playback_streams + chip->capture_streams; |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 1718 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1719 | /* initialize streams */ |
| 1720 | err = azx_init_streams(chip); |
Dylan Reid | 6790899 | 2014-02-28 15:41:23 -0800 | [diff] [blame] | 1721 | if (err < 0) |
| 1722 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | |
| 1724 | err = azx_alloc_stream_pages(chip); |
| 1725 | if (err < 0) |
| 1726 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | /* initialize chip */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1729 | azx_init_pci(chip); |
Mengdong Lin | e4d9e51 | 2014-07-03 17:02:23 +0800 | [diff] [blame] | 1730 | |
Imre Deak | 926981a | 2015-01-08 17:54:16 +0200 | [diff] [blame] | 1731 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) { |
| 1732 | struct hda_intel *hda; |
| 1733 | |
| 1734 | hda = container_of(chip, struct hda_intel, chip); |
| 1735 | haswell_set_bclk(hda); |
| 1736 | } |
Mengdong Lin | e4d9e51 | 2014-07-03 17:02:23 +0800 | [diff] [blame] | 1737 | |
Lu, Han | 0a67352 | 2015-05-05 09:05:48 +0800 | [diff] [blame] | 1738 | hda_intel_init_chip(chip, (probe_only[dev] & 2) == 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | |
| 1740 | /* codec detection */ |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1741 | if (!azx_bus(chip)->codec_mask) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1742 | dev_err(card->dev, "no codecs found!\n"); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1743 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1744 | } |
| 1745 | |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 1746 | strcpy(card->driver, "HDA-Intel"); |
Takashi Iwai | 18cb710 | 2009-04-16 10:22:24 +0200 | [diff] [blame] | 1747 | strlcpy(card->shortname, driver_short_names[chip->driver_type], |
| 1748 | sizeof(card->shortname)); |
| 1749 | snprintf(card->longname, sizeof(card->longname), |
| 1750 | "%s at 0x%lx irq %i", |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1751 | card->shortname, bus->addr, bus->irq); |
Takashi Iwai | 07e4ca5 | 2005-08-24 14:14:57 +0200 | [diff] [blame] | 1752 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | } |
| 1755 | |
Takashi Iwai | 97c6a3d | 2012-08-09 17:40:46 +0200 | [diff] [blame] | 1756 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 1757 | /* callback from request_firmware_nowait() */ |
| 1758 | static void azx_firmware_cb(const struct firmware *fw, void *context) |
| 1759 | { |
| 1760 | struct snd_card *card = context; |
| 1761 | struct azx *chip = card->private_data; |
| 1762 | struct pci_dev *pci = chip->pci; |
| 1763 | |
| 1764 | if (!fw) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1765 | dev_err(card->dev, "Cannot load firmware, aborting\n"); |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 1766 | goto error; |
| 1767 | } |
| 1768 | |
| 1769 | chip->fw = fw; |
| 1770 | if (!chip->disabled) { |
| 1771 | /* continue probing */ |
| 1772 | if (azx_probe_continue(chip)) |
| 1773 | goto error; |
| 1774 | } |
| 1775 | return; /* OK */ |
| 1776 | |
| 1777 | error: |
| 1778 | snd_card_free(card); |
| 1779 | pci_set_drvdata(pci, NULL); |
| 1780 | } |
Takashi Iwai | 97c6a3d | 2012-08-09 17:40:46 +0200 | [diff] [blame] | 1781 | #endif |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 1782 | |
Dylan Reid | 4083081 | 2014-02-28 15:41:13 -0800 | [diff] [blame] | 1783 | /* |
| 1784 | * HDA controller ops. |
| 1785 | */ |
| 1786 | |
| 1787 | /* PCI register access. */ |
Dylan Reid | db291e3 | 2014-03-02 20:44:01 -0800 | [diff] [blame] | 1788 | static void pci_azx_writel(u32 value, u32 __iomem *addr) |
Dylan Reid | 4083081 | 2014-02-28 15:41:13 -0800 | [diff] [blame] | 1789 | { |
| 1790 | writel(value, addr); |
| 1791 | } |
| 1792 | |
Dylan Reid | db291e3 | 2014-03-02 20:44:01 -0800 | [diff] [blame] | 1793 | static u32 pci_azx_readl(u32 __iomem *addr) |
Dylan Reid | 4083081 | 2014-02-28 15:41:13 -0800 | [diff] [blame] | 1794 | { |
| 1795 | return readl(addr); |
| 1796 | } |
| 1797 | |
Dylan Reid | db291e3 | 2014-03-02 20:44:01 -0800 | [diff] [blame] | 1798 | static void pci_azx_writew(u16 value, u16 __iomem *addr) |
Dylan Reid | 4083081 | 2014-02-28 15:41:13 -0800 | [diff] [blame] | 1799 | { |
| 1800 | writew(value, addr); |
| 1801 | } |
| 1802 | |
Dylan Reid | db291e3 | 2014-03-02 20:44:01 -0800 | [diff] [blame] | 1803 | static u16 pci_azx_readw(u16 __iomem *addr) |
Dylan Reid | 4083081 | 2014-02-28 15:41:13 -0800 | [diff] [blame] | 1804 | { |
| 1805 | return readw(addr); |
| 1806 | } |
| 1807 | |
Dylan Reid | db291e3 | 2014-03-02 20:44:01 -0800 | [diff] [blame] | 1808 | static void pci_azx_writeb(u8 value, u8 __iomem *addr) |
Dylan Reid | 4083081 | 2014-02-28 15:41:13 -0800 | [diff] [blame] | 1809 | { |
| 1810 | writeb(value, addr); |
| 1811 | } |
| 1812 | |
Dylan Reid | db291e3 | 2014-03-02 20:44:01 -0800 | [diff] [blame] | 1813 | static u8 pci_azx_readb(u8 __iomem *addr) |
Dylan Reid | 4083081 | 2014-02-28 15:41:13 -0800 | [diff] [blame] | 1814 | { |
| 1815 | return readb(addr); |
| 1816 | } |
| 1817 | |
Dylan Reid | f46ea60 | 2014-02-28 15:41:16 -0800 | [diff] [blame] | 1818 | static int disable_msi_reset_irq(struct azx *chip) |
| 1819 | { |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1820 | struct hdac_bus *bus = azx_bus(chip); |
Dylan Reid | f46ea60 | 2014-02-28 15:41:16 -0800 | [diff] [blame] | 1821 | int err; |
| 1822 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1823 | free_irq(bus->irq, chip); |
| 1824 | bus->irq = -1; |
Dylan Reid | f46ea60 | 2014-02-28 15:41:16 -0800 | [diff] [blame] | 1825 | pci_disable_msi(chip->pci); |
| 1826 | chip->msi = 0; |
| 1827 | err = azx_acquire_irq(chip, 1); |
| 1828 | if (err < 0) |
| 1829 | return err; |
| 1830 | |
| 1831 | return 0; |
| 1832 | } |
| 1833 | |
Dylan Reid | b419b35 | 2014-02-28 15:41:20 -0800 | [diff] [blame] | 1834 | /* DMA page allocation helpers. */ |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 1835 | static int dma_alloc_pages(struct hdac_bus *bus, |
Dylan Reid | b419b35 | 2014-02-28 15:41:20 -0800 | [diff] [blame] | 1836 | int type, |
| 1837 | size_t size, |
| 1838 | struct snd_dma_buffer *buf) |
| 1839 | { |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1840 | struct azx *chip = bus_to_azx(bus); |
Dylan Reid | b419b35 | 2014-02-28 15:41:20 -0800 | [diff] [blame] | 1841 | int err; |
| 1842 | |
| 1843 | err = snd_dma_alloc_pages(type, |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 1844 | bus->dev, |
Dylan Reid | b419b35 | 2014-02-28 15:41:20 -0800 | [diff] [blame] | 1845 | size, buf); |
| 1846 | if (err < 0) |
| 1847 | return err; |
| 1848 | mark_pages_wc(chip, buf, true); |
| 1849 | return 0; |
| 1850 | } |
| 1851 | |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 1852 | static void dma_free_pages(struct hdac_bus *bus, struct snd_dma_buffer *buf) |
Dylan Reid | b419b35 | 2014-02-28 15:41:20 -0800 | [diff] [blame] | 1853 | { |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 1854 | struct azx *chip = bus_to_azx(bus); |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 1855 | |
Dylan Reid | b419b35 | 2014-02-28 15:41:20 -0800 | [diff] [blame] | 1856 | mark_pages_wc(chip, buf, false); |
| 1857 | snd_dma_free_pages(buf); |
| 1858 | } |
| 1859 | |
| 1860 | static int substream_alloc_pages(struct azx *chip, |
| 1861 | struct snd_pcm_substream *substream, |
| 1862 | size_t size) |
| 1863 | { |
| 1864 | struct azx_dev *azx_dev = get_azx_dev(substream); |
| 1865 | int ret; |
| 1866 | |
| 1867 | mark_runtime_wc(chip, azx_dev, substream, false); |
Dylan Reid | b419b35 | 2014-02-28 15:41:20 -0800 | [diff] [blame] | 1868 | ret = snd_pcm_lib_malloc_pages(substream, size); |
| 1869 | if (ret < 0) |
| 1870 | return ret; |
| 1871 | mark_runtime_wc(chip, azx_dev, substream, true); |
| 1872 | return 0; |
| 1873 | } |
| 1874 | |
| 1875 | static int substream_free_pages(struct azx *chip, |
| 1876 | struct snd_pcm_substream *substream) |
| 1877 | { |
| 1878 | struct azx_dev *azx_dev = get_azx_dev(substream); |
| 1879 | mark_runtime_wc(chip, azx_dev, substream, false); |
| 1880 | return snd_pcm_lib_free_pages(substream); |
| 1881 | } |
| 1882 | |
Dylan Reid | 8769b278 | 2014-02-28 15:41:21 -0800 | [diff] [blame] | 1883 | static void pcm_mmap_prepare(struct snd_pcm_substream *substream, |
| 1884 | struct vm_area_struct *area) |
| 1885 | { |
| 1886 | #ifdef CONFIG_X86 |
| 1887 | struct azx_pcm *apcm = snd_pcm_substream_chip(substream); |
| 1888 | struct azx *chip = apcm->chip; |
Takashi Iwai | 3b70bdb | 2014-10-29 16:13:05 +0100 | [diff] [blame] | 1889 | if (!azx_snoop(chip) && chip->driver_type != AZX_DRIVER_CMEDIA) |
Dylan Reid | 8769b278 | 2014-02-28 15:41:21 -0800 | [diff] [blame] | 1890 | area->vm_page_prot = pgprot_writecombine(area->vm_page_prot); |
| 1891 | #endif |
| 1892 | } |
| 1893 | |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 1894 | static const struct hdac_io_ops pci_hda_io_ops = { |
Dylan Reid | 778bde6 | 2014-03-02 20:44:00 -0800 | [diff] [blame] | 1895 | .reg_writel = pci_azx_writel, |
| 1896 | .reg_readl = pci_azx_readl, |
| 1897 | .reg_writew = pci_azx_writew, |
| 1898 | .reg_readw = pci_azx_readw, |
| 1899 | .reg_writeb = pci_azx_writeb, |
| 1900 | .reg_readb = pci_azx_readb, |
Dylan Reid | b419b35 | 2014-02-28 15:41:20 -0800 | [diff] [blame] | 1901 | .dma_alloc_pages = dma_alloc_pages, |
| 1902 | .dma_free_pages = dma_free_pages, |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 1903 | }; |
| 1904 | |
| 1905 | static const struct hda_controller_ops pci_hda_ops = { |
| 1906 | .disable_msi_reset_irq = disable_msi_reset_irq, |
Dylan Reid | b419b35 | 2014-02-28 15:41:20 -0800 | [diff] [blame] | 1907 | .substream_alloc_pages = substream_alloc_pages, |
| 1908 | .substream_free_pages = substream_free_pages, |
Dylan Reid | 8769b278 | 2014-02-28 15:41:21 -0800 | [diff] [blame] | 1909 | .pcm_mmap_prepare = pcm_mmap_prepare, |
Dylan Reid | 7ca954a | 2014-02-28 15:41:28 -0800 | [diff] [blame] | 1910 | .position_check = azx_position_check, |
Mengdong Lin | 17eccb2 | 2015-04-29 17:43:29 +0800 | [diff] [blame] | 1911 | .link_power = azx_intel_link_power, |
Dylan Reid | 4083081 | 2014-02-28 15:41:13 -0800 | [diff] [blame] | 1912 | }; |
| 1913 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1914 | static int azx_probe(struct pci_dev *pci, |
| 1915 | const struct pci_device_id *pci_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | { |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 1917 | static int dev; |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1918 | struct snd_card *card; |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1919 | struct hda_intel *hda; |
Takashi Iwai | a98f90f | 2005-11-17 14:59:02 +0100 | [diff] [blame] | 1920 | struct azx *chip; |
Takashi Iwai | aad730d | 2013-12-02 13:33:57 +0100 | [diff] [blame] | 1921 | bool schedule_probe; |
Pavel Machek | 927fc86 | 2006-08-31 17:03:43 +0200 | [diff] [blame] | 1922 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1923 | |
Takashi Iwai | 5aba4f8 | 2008-01-07 15:16:37 +0100 | [diff] [blame] | 1924 | if (dev >= SNDRV_CARDS) |
| 1925 | return -ENODEV; |
| 1926 | if (!enable[dev]) { |
| 1927 | dev++; |
| 1928 | return -ENOENT; |
| 1929 | } |
| 1930 | |
Takashi Iwai | 60c5772 | 2014-01-29 14:20:19 +0100 | [diff] [blame] | 1931 | err = snd_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE, |
| 1932 | 0, &card); |
Takashi Iwai | e58de7b | 2008-12-28 16:44:30 +0100 | [diff] [blame] | 1933 | if (err < 0) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1934 | dev_err(&pci->dev, "Error creating card!\n"); |
Takashi Iwai | e58de7b | 2008-12-28 16:44:30 +0100 | [diff] [blame] | 1935 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1936 | } |
| 1937 | |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 1938 | err = azx_create(card, pci, dev, pci_id->driver_data, &chip); |
Wu Fengguang | 41dda0f | 2008-11-20 09:24:52 +0800 | [diff] [blame] | 1939 | if (err < 0) |
| 1940 | goto out_free; |
Takashi Iwai | 421a125 | 2005-11-17 16:11:09 +0100 | [diff] [blame] | 1941 | card->private_data = chip; |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1942 | hda = container_of(chip, struct hda_intel, chip); |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 1943 | |
| 1944 | pci_set_drvdata(pci, card); |
| 1945 | |
| 1946 | err = register_vga_switcheroo(chip); |
| 1947 | if (err < 0) { |
Lukas Wunner | 2b760d8 | 2015-09-04 20:49:36 +0200 | [diff] [blame] | 1948 | dev_err(card->dev, "Error registering vga_switcheroo client\n"); |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 1949 | goto out_free; |
| 1950 | } |
| 1951 | |
| 1952 | if (check_hdmi_disabled(pci)) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1953 | dev_info(card->dev, "VGA controller is disabled\n"); |
| 1954 | dev_info(card->dev, "Delaying initialization\n"); |
Takashi Iwai | f4c482a | 2012-12-04 15:09:23 +0100 | [diff] [blame] | 1955 | chip->disabled = true; |
| 1956 | } |
| 1957 | |
Takashi Iwai | aad730d | 2013-12-02 13:33:57 +0100 | [diff] [blame] | 1958 | schedule_probe = !chip->disabled; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1959 | |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 1960 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
| 1961 | if (patch[dev] && *patch[dev]) { |
Takashi Iwai | 4e76a88 | 2014-02-25 12:21:03 +0100 | [diff] [blame] | 1962 | dev_info(card->dev, "Applying patch firmware '%s'\n", |
| 1963 | patch[dev]); |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 1964 | err = request_firmware_nowait(THIS_MODULE, true, patch[dev], |
| 1965 | &pci->dev, GFP_KERNEL, card, |
| 1966 | azx_firmware_cb); |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 1967 | if (err < 0) |
| 1968 | goto out_free; |
Takashi Iwai | aad730d | 2013-12-02 13:33:57 +0100 | [diff] [blame] | 1969 | schedule_probe = false; /* continued in azx_firmware_cb() */ |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 1970 | } |
| 1971 | #endif /* CONFIG_SND_HDA_PATCH_LOADER */ |
| 1972 | |
Takashi Iwai | aad730d | 2013-12-02 13:33:57 +0100 | [diff] [blame] | 1973 | #ifndef CONFIG_SND_HDA_I915 |
Takashi Iwai | 6ee8eeb | 2015-12-09 07:13:48 +0100 | [diff] [blame] | 1974 | if (CONTROLLER_IN_GPU(pci)) |
| 1975 | dev_err(card->dev, "Haswell/Broadwell HDMI/DP must build in CONFIG_SND_HDA_I915\n"); |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 1976 | #endif |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 1977 | |
Takashi Iwai | aad730d | 2013-12-02 13:33:57 +0100 | [diff] [blame] | 1978 | if (schedule_probe) |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1979 | schedule_work(&hda->probe_work); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1980 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1981 | dev++; |
Takashi Iwai | 88d071f | 2013-12-02 11:12:28 +0100 | [diff] [blame] | 1982 | if (chip->disabled) |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1983 | complete_all(&hda->probe_wait); |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1984 | return 0; |
| 1985 | |
| 1986 | out_free: |
| 1987 | snd_card_free(card); |
| 1988 | return err; |
| 1989 | } |
| 1990 | |
Dylan Reid | e62a42a | 2014-02-28 15:41:19 -0800 | [diff] [blame] | 1991 | /* number of codec slots for each chipset: 0 = default slots (i.e. 4) */ |
| 1992 | static unsigned int azx_max_codecs[AZX_NUM_DRIVERS] = { |
| 1993 | [AZX_DRIVER_NVIDIA] = 8, |
| 1994 | [AZX_DRIVER_TERA] = 1, |
| 1995 | }; |
| 1996 | |
Takashi Iwai | 48c8b0e | 2012-12-07 07:40:35 +0100 | [diff] [blame] | 1997 | static int azx_probe_continue(struct azx *chip) |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 1998 | { |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 1999 | struct hda_intel *hda = container_of(chip, struct hda_intel, chip); |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 2000 | struct hdac_bus *bus = azx_bus(chip); |
Wang Xingchao | c67e222 | 2013-05-30 22:07:08 +0800 | [diff] [blame] | 2001 | struct pci_dev *pci = chip->pci; |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 2002 | int dev = chip->dev_index; |
| 2003 | int err; |
| 2004 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 2005 | hda->probe_continued = 1; |
Mengdong Lin | 795614d | 2015-04-29 17:43:36 +0800 | [diff] [blame] | 2006 | |
| 2007 | /* Request display power well for the HDA controller or codec. For |
| 2008 | * Haswell/Broadwell, both the display HDA controller and codec need |
| 2009 | * this power. For other platforms, like Baytrail/Braswell, only the |
| 2010 | * display codec needs the power and it can be released after probe. |
| 2011 | */ |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 2012 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL) { |
Libin Yang | 03b135c | 2015-06-03 09:30:15 +0800 | [diff] [blame] | 2013 | /* HSW/BDW controllers need this power */ |
| 2014 | if (CONTROLLER_IN_GPU(pci)) |
Mengdong Lin | 2bd1f73f | 2015-04-29 17:43:43 +0800 | [diff] [blame] | 2015 | hda->need_i915_power = 1; |
| 2016 | |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 2017 | err = snd_hdac_i915_init(bus); |
Takashi Iwai | 535115b | 2015-06-12 07:53:58 +0200 | [diff] [blame] | 2018 | if (err < 0) { |
| 2019 | /* if the controller is bound only with HDMI/DP |
| 2020 | * (for HSW and BDW), we need to abort the probe; |
| 2021 | * for other chips, still continue probing as other |
| 2022 | * codecs can be on the same link. |
| 2023 | */ |
| 2024 | if (CONTROLLER_IN_GPU(pci)) |
| 2025 | goto out_free; |
| 2026 | else |
| 2027 | goto skip_i915; |
| 2028 | } |
Mengdong Lin | 795614d | 2015-04-29 17:43:36 +0800 | [diff] [blame] | 2029 | |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 2030 | err = snd_hdac_display_power(bus, true); |
Takashi Iwai | 74b0c2d | 2014-06-13 15:14:34 +0200 | [diff] [blame] | 2031 | if (err < 0) { |
| 2032 | dev_err(chip->card->dev, |
| 2033 | "Cannot turn on display power on i915\n"); |
Mengdong Lin | 795614d | 2015-04-29 17:43:36 +0800 | [diff] [blame] | 2034 | goto i915_power_fail; |
Takashi Iwai | 74b0c2d | 2014-06-13 15:14:34 +0200 | [diff] [blame] | 2035 | } |
Wang Xingchao | 99a2008 | 2013-05-30 22:07:10 +0800 | [diff] [blame] | 2036 | } |
| 2037 | |
Takashi Iwai | bf06848 | 2015-06-10 12:03:49 +0200 | [diff] [blame] | 2038 | skip_i915: |
Takashi Iwai | 5c90680 | 2013-05-30 22:07:09 +0800 | [diff] [blame] | 2039 | err = azx_first_init(chip); |
| 2040 | if (err < 0) |
| 2041 | goto out_free; |
| 2042 | |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 2043 | #ifdef CONFIG_SND_HDA_INPUT_BEEP |
| 2044 | chip->beep_mode = beep_mode[dev]; |
| 2045 | #endif |
| 2046 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | /* create codec instances */ |
Takashi Iwai | 96d2bd6 | 2015-02-19 18:12:22 +0100 | [diff] [blame] | 2048 | err = azx_probe_codecs(chip, azx_max_codecs[chip->driver_type]); |
| 2049 | if (err < 0) |
| 2050 | goto out_free; |
| 2051 | |
Takashi Iwai | 4ea6fbc | 2009-06-17 09:52:54 +0200 | [diff] [blame] | 2052 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 2053 | if (chip->fw) { |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 2054 | err = snd_hda_load_patch(&chip->bus, chip->fw->size, |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 2055 | chip->fw->data); |
Takashi Iwai | 4ea6fbc | 2009-06-17 09:52:54 +0200 | [diff] [blame] | 2056 | if (err < 0) |
| 2057 | goto out_free; |
Takashi Iwai | e39ae85 | 2012-11-22 16:18:13 +0100 | [diff] [blame] | 2058 | #ifndef CONFIG_PM |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 2059 | release_firmware(chip->fw); /* no longer needed */ |
| 2060 | chip->fw = NULL; |
Takashi Iwai | e39ae85 | 2012-11-22 16:18:13 +0100 | [diff] [blame] | 2061 | #endif |
Takashi Iwai | 4ea6fbc | 2009-06-17 09:52:54 +0200 | [diff] [blame] | 2062 | } |
| 2063 | #endif |
Jaroslav Kysela | 10e77dd | 2010-03-26 11:04:38 +0100 | [diff] [blame] | 2064 | if ((probe_only[dev] & 1) == 0) { |
Takashi Iwai | a1e21c9 | 2009-06-17 09:33:52 +0200 | [diff] [blame] | 2065 | err = azx_codec_configure(chip); |
| 2066 | if (err < 0) |
| 2067 | goto out_free; |
| 2068 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2069 | |
Takashi Iwai | a82d51e | 2012-04-26 12:23:42 +0200 | [diff] [blame] | 2070 | err = snd_card_register(chip->card); |
Wu Fengguang | 41dda0f | 2008-11-20 09:24:52 +0800 | [diff] [blame] | 2071 | if (err < 0) |
| 2072 | goto out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2073 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2074 | chip->running = 1; |
Takashi Iwai | 65fcd41 | 2012-08-14 17:13:32 +0200 | [diff] [blame] | 2075 | azx_add_card_list(chip); |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 2076 | snd_hda_set_power_save(&chip->bus, power_save * 1000); |
Takashi Iwai | 364aa71 | 2015-02-19 16:51:17 +0100 | [diff] [blame] | 2077 | if (azx_has_pm_runtime(chip) || hda->use_vga_switcheroo) |
Wang Xingchao | c67e222 | 2013-05-30 22:07:08 +0800 | [diff] [blame] | 2078 | pm_runtime_put_noidle(&pci->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2079 | |
Wu Fengguang | 41dda0f | 2008-11-20 09:24:52 +0800 | [diff] [blame] | 2080 | out_free: |
Mengdong Lin | 795614d | 2015-04-29 17:43:36 +0800 | [diff] [blame] | 2081 | if (chip->driver_caps & AZX_DCAPS_I915_POWERWELL |
| 2082 | && !hda->need_i915_power) |
Mengdong Lin | 98d8fc6 | 2015-05-19 22:29:30 +0800 | [diff] [blame] | 2083 | snd_hdac_display_power(bus, false); |
Mengdong Lin | 795614d | 2015-04-29 17:43:36 +0800 | [diff] [blame] | 2084 | |
| 2085 | i915_power_fail: |
Takashi Iwai | 88d071f | 2013-12-02 11:12:28 +0100 | [diff] [blame] | 2086 | if (err < 0) |
Takashi Iwai | 9a34af4 | 2014-06-26 17:19:20 +0200 | [diff] [blame] | 2087 | hda->init_failed = 1; |
| 2088 | complete_all(&hda->probe_wait); |
Wu Fengguang | 41dda0f | 2008-11-20 09:24:52 +0800 | [diff] [blame] | 2089 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | } |
| 2091 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 2092 | static void azx_remove(struct pci_dev *pci) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2093 | { |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 2094 | struct snd_card *card = pci_get_drvdata(pci); |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 2095 | |
Takashi Iwai | 9121947 | 2012-04-26 12:13:25 +0200 | [diff] [blame] | 2096 | if (card) |
| 2097 | snd_card_free(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2098 | } |
| 2099 | |
Takashi Iwai | b2a0baf | 2015-03-05 17:21:32 +0100 | [diff] [blame] | 2100 | static void azx_shutdown(struct pci_dev *pci) |
| 2101 | { |
| 2102 | struct snd_card *card = pci_get_drvdata(pci); |
| 2103 | struct azx *chip; |
| 2104 | |
| 2105 | if (!card) |
| 2106 | return; |
| 2107 | chip = card->private_data; |
| 2108 | if (chip && chip->running) |
| 2109 | azx_stop_chip(chip); |
| 2110 | } |
| 2111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | /* PCI IDs */ |
Benoit Taine | 6f51f6c | 2014-05-22 17:08:54 +0200 | [diff] [blame] | 2113 | static const struct pci_device_id azx_ids[] = { |
Seth Heasley | d2f2fcd | 2010-01-12 17:03:35 -0800 | [diff] [blame] | 2114 | /* CPT */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2115 | { PCI_DEVICE(0x8086, 0x1c20), |
Takashi Iwai | d7dab4d | 2013-01-08 13:51:30 +0100 | [diff] [blame] | 2116 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH_NOPM }, |
Seth Heasley | cea310e | 2010-09-10 16:29:56 -0700 | [diff] [blame] | 2117 | /* PBG */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2118 | { PCI_DEVICE(0x8086, 0x1d20), |
Takashi Iwai | d7dab4d | 2013-01-08 13:51:30 +0100 | [diff] [blame] | 2119 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH_NOPM }, |
Seth Heasley | d2edeb7 | 2011-04-20 10:59:57 -0700 | [diff] [blame] | 2120 | /* Panther Point */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2121 | { PCI_DEVICE(0x8086, 0x1e20), |
Takashi Iwai | de5d0ad | 2015-02-25 07:53:31 +0100 | [diff] [blame] | 2122 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH_NOPM }, |
Seth Heasley | 8bc039a | 2012-01-23 16:24:31 -0800 | [diff] [blame] | 2123 | /* Lynx Point */ |
| 2124 | { PCI_DEVICE(0x8086, 0x8c20), |
Takashi Iwai | 2ea3c6a | 2012-11-19 20:03:37 +0100 | [diff] [blame] | 2125 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
Takashi Iwai | 77f0780 | 2014-05-23 09:02:44 +0200 | [diff] [blame] | 2126 | /* 9 Series */ |
| 2127 | { PCI_DEVICE(0x8086, 0x8ca0), |
| 2128 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
James Ralston | 884b088 | 2013-02-08 17:29:40 -0800 | [diff] [blame] | 2129 | /* Wellsburg */ |
| 2130 | { PCI_DEVICE(0x8086, 0x8d20), |
| 2131 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
| 2132 | { PCI_DEVICE(0x8086, 0x8d21), |
| 2133 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
Alexandra Yates | 5cf92c8 | 2015-11-04 15:56:09 -0800 | [diff] [blame] | 2134 | /* Lewisburg */ |
| 2135 | { PCI_DEVICE(0x8086, 0xa1f0), |
| 2136 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
| 2137 | { PCI_DEVICE(0x8086, 0xa270), |
| 2138 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
James Ralston | 144dad9 | 2012-08-09 09:38:59 -0700 | [diff] [blame] | 2139 | /* Lynx Point-LP */ |
| 2140 | { PCI_DEVICE(0x8086, 0x9c20), |
Takashi Iwai | 2ea3c6a | 2012-11-19 20:03:37 +0100 | [diff] [blame] | 2141 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
James Ralston | 144dad9 | 2012-08-09 09:38:59 -0700 | [diff] [blame] | 2142 | /* Lynx Point-LP */ |
| 2143 | { PCI_DEVICE(0x8086, 0x9c21), |
Takashi Iwai | 2ea3c6a | 2012-11-19 20:03:37 +0100 | [diff] [blame] | 2144 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
James Ralston | 4eeca49 | 2013-11-04 09:27:45 -0800 | [diff] [blame] | 2145 | /* Wildcat Point-LP */ |
| 2146 | { PCI_DEVICE(0x8086, 0x9ca0), |
| 2147 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH }, |
James Ralston | c8b00fd | 2014-10-13 15:22:03 -0700 | [diff] [blame] | 2148 | /* Sunrise Point */ |
| 2149 | { PCI_DEVICE(0x8086, 0xa170), |
Libin Yang | db48abf | 2015-03-26 13:28:39 +0800 | [diff] [blame] | 2150 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_SKYLAKE }, |
Devin Ryles | b456591 | 2014-11-07 18:02:47 -0500 | [diff] [blame] | 2151 | /* Sunrise Point-LP */ |
| 2152 | { PCI_DEVICE(0x8086, 0x9d70), |
Libin Yang | d679582 | 2014-12-19 08:44:31 +0800 | [diff] [blame] | 2153 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_SKYLAKE }, |
Lu, Han | c87693d | 2015-11-19 23:25:12 +0800 | [diff] [blame] | 2154 | /* Broxton-P(Apollolake) */ |
| 2155 | { PCI_DEVICE(0x8086, 0x5a98), |
| 2156 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_BROXTON }, |
Wang Xingchao | e926f2c | 2012-06-13 10:23:51 +0800 | [diff] [blame] | 2157 | /* Haswell */ |
Wang Xingchao | 4a7c516 | 2013-02-01 22:42:19 +0800 | [diff] [blame] | 2158 | { PCI_DEVICE(0x8086, 0x0a0c), |
Takashi Iwai | fab1285 | 2013-11-05 17:54:05 +0100 | [diff] [blame] | 2159 | .driver_data = AZX_DRIVER_HDMI | AZX_DCAPS_INTEL_HASWELL }, |
Wang Xingchao | e926f2c | 2012-06-13 10:23:51 +0800 | [diff] [blame] | 2160 | { PCI_DEVICE(0x8086, 0x0c0c), |
Takashi Iwai | fab1285 | 2013-11-05 17:54:05 +0100 | [diff] [blame] | 2161 | .driver_data = AZX_DRIVER_HDMI | AZX_DCAPS_INTEL_HASWELL }, |
Wang Xingchao | d279fae | 2012-09-17 13:10:23 +0800 | [diff] [blame] | 2162 | { PCI_DEVICE(0x8086, 0x0d0c), |
Takashi Iwai | fab1285 | 2013-11-05 17:54:05 +0100 | [diff] [blame] | 2163 | .driver_data = AZX_DRIVER_HDMI | AZX_DCAPS_INTEL_HASWELL }, |
Mengdong Lin | 862d761 | 2014-01-08 15:55:14 -0500 | [diff] [blame] | 2164 | /* Broadwell */ |
| 2165 | { PCI_DEVICE(0x8086, 0x160c), |
Libin Yang | 54a0405 | 2014-06-09 15:28:59 +0800 | [diff] [blame] | 2166 | .driver_data = AZX_DRIVER_HDMI | AZX_DCAPS_INTEL_BROADWELL }, |
Pierre-Louis Bossart | 99df18b | 2012-09-21 18:39:07 -0500 | [diff] [blame] | 2167 | /* 5 Series/3400 */ |
| 2168 | { PCI_DEVICE(0x8086, 0x3b56), |
Takashi Iwai | 2c1350f | 2013-02-14 09:44:55 +0100 | [diff] [blame] | 2169 | .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_INTEL_PCH_NOPM }, |
Takashi Iwai | f748abc | 2013-01-29 10:12:23 +0100 | [diff] [blame] | 2170 | /* Poulsbo */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2171 | { PCI_DEVICE(0x8086, 0x811b), |
Takashi Iwai | 6603249 | 2015-12-01 16:49:35 +0100 | [diff] [blame] | 2172 | .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_INTEL_PCH_BASE }, |
Takashi Iwai | f748abc | 2013-01-29 10:12:23 +0100 | [diff] [blame] | 2173 | /* Oaktrail */ |
Li Peng | 09904b9 | 2011-12-28 15:17:26 +0000 | [diff] [blame] | 2174 | { PCI_DEVICE(0x8086, 0x080a), |
Takashi Iwai | 6603249 | 2015-12-01 16:49:35 +0100 | [diff] [blame] | 2175 | .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_INTEL_PCH_BASE }, |
Chew, Chiau Ee | e44007e | 2013-05-16 15:36:12 +0800 | [diff] [blame] | 2176 | /* BayTrail */ |
| 2177 | { PCI_DEVICE(0x8086, 0x0f04), |
Mengdong Lin | 40cc239 | 2015-04-21 13:12:23 +0800 | [diff] [blame] | 2178 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_BAYTRAIL }, |
Libin Yang | f31b2ff | 2014-08-04 09:22:44 +0800 | [diff] [blame] | 2179 | /* Braswell */ |
| 2180 | { PCI_DEVICE(0x8086, 0x2284), |
Libin Yang | 2d846c7 | 2015-04-07 20:32:20 +0800 | [diff] [blame] | 2181 | .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_BRASWELL }, |
Takashi Iwai | b42b4af | 2014-12-03 09:47:20 +0100 | [diff] [blame] | 2182 | /* ICH6 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 2183 | { PCI_DEVICE(0x8086, 0x2668), |
Takashi Iwai | b42b4af | 2014-12-03 09:47:20 +0100 | [diff] [blame] | 2184 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_INTEL_ICH }, |
| 2185 | /* ICH7 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 2186 | { PCI_DEVICE(0x8086, 0x27d8), |
Takashi Iwai | b42b4af | 2014-12-03 09:47:20 +0100 | [diff] [blame] | 2187 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_INTEL_ICH }, |
| 2188 | /* ESB2 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 2189 | { PCI_DEVICE(0x8086, 0x269a), |
Takashi Iwai | b42b4af | 2014-12-03 09:47:20 +0100 | [diff] [blame] | 2190 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_INTEL_ICH }, |
| 2191 | /* ICH8 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 2192 | { PCI_DEVICE(0x8086, 0x284b), |
Takashi Iwai | b42b4af | 2014-12-03 09:47:20 +0100 | [diff] [blame] | 2193 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_INTEL_ICH }, |
| 2194 | /* ICH9 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 2195 | { PCI_DEVICE(0x8086, 0x293e), |
Takashi Iwai | b42b4af | 2014-12-03 09:47:20 +0100 | [diff] [blame] | 2196 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_INTEL_ICH }, |
| 2197 | /* ICH9 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 2198 | { PCI_DEVICE(0x8086, 0x293f), |
Takashi Iwai | b42b4af | 2014-12-03 09:47:20 +0100 | [diff] [blame] | 2199 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_INTEL_ICH }, |
| 2200 | /* ICH10 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 2201 | { PCI_DEVICE(0x8086, 0x3a3e), |
Takashi Iwai | b42b4af | 2014-12-03 09:47:20 +0100 | [diff] [blame] | 2202 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_INTEL_ICH }, |
| 2203 | /* ICH10 */ |
Takashi Iwai | 8b0bd22 | 2011-06-10 14:56:26 +0200 | [diff] [blame] | 2204 | { PCI_DEVICE(0x8086, 0x3a6e), |
Takashi Iwai | b42b4af | 2014-12-03 09:47:20 +0100 | [diff] [blame] | 2205 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_INTEL_ICH }, |
Takashi Iwai | b686453 | 2010-09-15 10:17:26 +0200 | [diff] [blame] | 2206 | /* Generic Intel */ |
| 2207 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_ANY_ID), |
| 2208 | .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8, |
| 2209 | .class_mask = 0xffffff, |
Takashi Iwai | 103884a | 2014-12-03 09:56:20 +0100 | [diff] [blame] | 2210 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_NO_ALIGN_BUFSIZE }, |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2211 | /* ATI SB 450/600/700/800/900 */ |
| 2212 | { PCI_DEVICE(0x1002, 0x437b), |
| 2213 | .driver_data = AZX_DRIVER_ATI | AZX_DCAPS_PRESET_ATI_SB }, |
| 2214 | { PCI_DEVICE(0x1002, 0x4383), |
| 2215 | .driver_data = AZX_DRIVER_ATI | AZX_DCAPS_PRESET_ATI_SB }, |
| 2216 | /* AMD Hudson */ |
| 2217 | { PCI_DEVICE(0x1022, 0x780d), |
| 2218 | .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_SB }, |
Takashi Iwai | 87218e9 | 2008-02-21 08:13:11 +0100 | [diff] [blame] | 2219 | /* ATI HDMI */ |
Alex Deucher | 650474f | 2015-06-24 14:37:18 -0400 | [diff] [blame] | 2220 | { PCI_DEVICE(0x1002, 0x1308), |
| 2221 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI_NS }, |
Maruthi Srinivas Bayyavarapu | 5022813 | 2015-07-20 19:56:18 +0530 | [diff] [blame] | 2222 | { PCI_DEVICE(0x1002, 0x157a), |
| 2223 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI_NS }, |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2224 | { PCI_DEVICE(0x1002, 0x793b), |
| 2225 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2226 | { PCI_DEVICE(0x1002, 0x7919), |
| 2227 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2228 | { PCI_DEVICE(0x1002, 0x960f), |
| 2229 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2230 | { PCI_DEVICE(0x1002, 0x970f), |
| 2231 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
Alex Deucher | 650474f | 2015-06-24 14:37:18 -0400 | [diff] [blame] | 2232 | { PCI_DEVICE(0x1002, 0x9840), |
| 2233 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI_NS }, |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2234 | { PCI_DEVICE(0x1002, 0xaa00), |
| 2235 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2236 | { PCI_DEVICE(0x1002, 0xaa08), |
| 2237 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2238 | { PCI_DEVICE(0x1002, 0xaa10), |
| 2239 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2240 | { PCI_DEVICE(0x1002, 0xaa18), |
| 2241 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2242 | { PCI_DEVICE(0x1002, 0xaa20), |
| 2243 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2244 | { PCI_DEVICE(0x1002, 0xaa28), |
| 2245 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2246 | { PCI_DEVICE(0x1002, 0xaa30), |
| 2247 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2248 | { PCI_DEVICE(0x1002, 0xaa38), |
| 2249 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2250 | { PCI_DEVICE(0x1002, 0xaa40), |
| 2251 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2252 | { PCI_DEVICE(0x1002, 0xaa48), |
| 2253 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
Clemens Ladisch | bbaa0d6 | 2013-11-05 09:27:10 +0100 | [diff] [blame] | 2254 | { PCI_DEVICE(0x1002, 0xaa50), |
| 2255 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2256 | { PCI_DEVICE(0x1002, 0xaa58), |
| 2257 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2258 | { PCI_DEVICE(0x1002, 0xaa60), |
| 2259 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2260 | { PCI_DEVICE(0x1002, 0xaa68), |
| 2261 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2262 | { PCI_DEVICE(0x1002, 0xaa80), |
| 2263 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2264 | { PCI_DEVICE(0x1002, 0xaa88), |
| 2265 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2266 | { PCI_DEVICE(0x1002, 0xaa90), |
| 2267 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
| 2268 | { PCI_DEVICE(0x1002, 0xaa98), |
| 2269 | .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI }, |
Andiry Xu | 1815b34 | 2011-12-14 16:10:27 +0800 | [diff] [blame] | 2270 | { PCI_DEVICE(0x1002, 0x9902), |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 2271 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI_NS }, |
Andiry Xu | 1815b34 | 2011-12-14 16:10:27 +0800 | [diff] [blame] | 2272 | { PCI_DEVICE(0x1002, 0xaaa0), |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 2273 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI_NS }, |
Andiry Xu | 1815b34 | 2011-12-14 16:10:27 +0800 | [diff] [blame] | 2274 | { PCI_DEVICE(0x1002, 0xaaa8), |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 2275 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI_NS }, |
Andiry Xu | 1815b34 | 2011-12-14 16:10:27 +0800 | [diff] [blame] | 2276 | { PCI_DEVICE(0x1002, 0xaab0), |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 2277 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI_NS }, |
Maruthi Srinivas Bayyavarapu | 5022813 | 2015-07-20 19:56:18 +0530 | [diff] [blame] | 2278 | { PCI_DEVICE(0x1002, 0xaac0), |
| 2279 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI_NS }, |
Takashi Iwai | 0fa372b | 2015-05-27 16:17:19 +0200 | [diff] [blame] | 2280 | { PCI_DEVICE(0x1002, 0xaac8), |
| 2281 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI_NS }, |
Maruthi Srinivas Bayyavarapu | 5022813 | 2015-07-20 19:56:18 +0530 | [diff] [blame] | 2282 | { PCI_DEVICE(0x1002, 0xaad8), |
| 2283 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI_NS }, |
| 2284 | { PCI_DEVICE(0x1002, 0xaae8), |
| 2285 | .driver_data = AZX_DRIVER_ATIHDMI_NS | AZX_DCAPS_PRESET_ATI_HDMI_NS }, |
Takashi Iwai | 87218e9 | 2008-02-21 08:13:11 +0100 | [diff] [blame] | 2286 | /* VIA VT8251/VT8237A */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2287 | { PCI_DEVICE(0x1106, 0x3288), |
| 2288 | .driver_data = AZX_DRIVER_VIA | AZX_DCAPS_POSFIX_VIA }, |
Annie Liu | 754fdff | 2012-06-08 19:18:39 +0800 | [diff] [blame] | 2289 | /* VIA GFX VT7122/VX900 */ |
| 2290 | { PCI_DEVICE(0x1106, 0x9170), .driver_data = AZX_DRIVER_GENERIC }, |
| 2291 | /* VIA GFX VT6122/VX11 */ |
| 2292 | { PCI_DEVICE(0x1106, 0x9140), .driver_data = AZX_DRIVER_GENERIC }, |
Takashi Iwai | 87218e9 | 2008-02-21 08:13:11 +0100 | [diff] [blame] | 2293 | /* SIS966 */ |
| 2294 | { PCI_DEVICE(0x1039, 0x7502), .driver_data = AZX_DRIVER_SIS }, |
| 2295 | /* ULI M5461 */ |
| 2296 | { PCI_DEVICE(0x10b9, 0x5461), .driver_data = AZX_DRIVER_ULI }, |
| 2297 | /* NVIDIA MCP */ |
Takashi Iwai | 0c2fd1bf4 | 2009-12-18 16:41:39 +0100 | [diff] [blame] | 2298 | { PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID), |
| 2299 | .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8, |
| 2300 | .class_mask = 0xffffff, |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2301 | .driver_data = AZX_DRIVER_NVIDIA | AZX_DCAPS_PRESET_NVIDIA }, |
Kailang Yang | f269002 | 2008-05-27 11:44:55 +0200 | [diff] [blame] | 2302 | /* Teradici */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2303 | { PCI_DEVICE(0x6549, 0x1200), |
| 2304 | .driver_data = AZX_DRIVER_TERA | AZX_DCAPS_NO_64BIT }, |
Lars R. Damerow | f0b3da9 | 2012-11-02 13:10:39 -0700 | [diff] [blame] | 2305 | { PCI_DEVICE(0x6549, 0x2200), |
| 2306 | .driver_data = AZX_DRIVER_TERA | AZX_DCAPS_NO_64BIT }, |
Takashi Iwai | 4e01f54 | 2009-04-16 08:53:34 +0200 | [diff] [blame] | 2307 | /* Creative X-Fi (CA0110-IBG) */ |
Takashi Iwai | f2a8eca | 2012-06-11 15:51:54 +0200 | [diff] [blame] | 2308 | /* CTHDA chips */ |
| 2309 | { PCI_DEVICE(0x1102, 0x0010), |
| 2310 | .driver_data = AZX_DRIVER_CTHDA | AZX_DCAPS_PRESET_CTHDA }, |
| 2311 | { PCI_DEVICE(0x1102, 0x0012), |
| 2312 | .driver_data = AZX_DRIVER_CTHDA | AZX_DCAPS_PRESET_CTHDA }, |
Takashi Iwai | 8eeaa2f | 2014-02-10 09:48:47 +0100 | [diff] [blame] | 2313 | #if !IS_ENABLED(CONFIG_SND_CTXFI) |
Takashi Iwai | 313f6e2 | 2009-05-18 12:40:52 +0200 | [diff] [blame] | 2314 | /* the following entry conflicts with snd-ctxfi driver, |
| 2315 | * as ctxfi driver mutates from HD-audio to native mode with |
| 2316 | * a special command sequence. |
| 2317 | */ |
Takashi Iwai | 4e01f54 | 2009-04-16 08:53:34 +0200 | [diff] [blame] | 2318 | { PCI_DEVICE(PCI_VENDOR_ID_CREATIVE, PCI_ANY_ID), |
| 2319 | .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8, |
| 2320 | .class_mask = 0xffffff, |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2321 | .driver_data = AZX_DRIVER_CTX | AZX_DCAPS_CTX_WORKAROUND | |
Takashi Iwai | ef85f29 | 2015-12-17 08:12:37 +0100 | [diff] [blame] | 2322 | AZX_DCAPS_NO_64BIT | AZX_DCAPS_POSFIX_LPIB }, |
Takashi Iwai | 313f6e2 | 2009-05-18 12:40:52 +0200 | [diff] [blame] | 2323 | #else |
| 2324 | /* this entry seems still valid -- i.e. without emu20kx chip */ |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2325 | { PCI_DEVICE(0x1102, 0x0009), |
| 2326 | .driver_data = AZX_DRIVER_CTX | AZX_DCAPS_CTX_WORKAROUND | |
Takashi Iwai | ef85f29 | 2015-12-17 08:12:37 +0100 | [diff] [blame] | 2327 | AZX_DCAPS_NO_64BIT | AZX_DCAPS_POSFIX_LPIB }, |
Takashi Iwai | 313f6e2 | 2009-05-18 12:40:52 +0200 | [diff] [blame] | 2328 | #endif |
Takashi Iwai | c563f47 | 2014-08-06 14:27:42 +0200 | [diff] [blame] | 2329 | /* CM8888 */ |
| 2330 | { PCI_DEVICE(0x13f6, 0x5011), |
| 2331 | .driver_data = AZX_DRIVER_CMEDIA | |
Takashi Iwai | 37e661e | 2014-11-25 11:28:07 +0100 | [diff] [blame] | 2332 | AZX_DCAPS_NO_MSI | AZX_DCAPS_POSFIX_LPIB | AZX_DCAPS_SNOOP_OFF }, |
Otavio Salvador | e35d4b1 | 2010-09-26 23:35:06 -0300 | [diff] [blame] | 2333 | /* Vortex86MX */ |
| 2334 | { PCI_DEVICE(0x17f3, 0x3010), .driver_data = AZX_DRIVER_GENERIC }, |
Bankim Bhavsar | 0f0714c5 | 2011-01-17 15:23:21 +0100 | [diff] [blame] | 2335 | /* VMware HDAudio */ |
| 2336 | { PCI_DEVICE(0x15ad, 0x1977), .driver_data = AZX_DRIVER_GENERIC }, |
Andiry Brienza | 9176b67 | 2009-07-17 11:32:32 +0800 | [diff] [blame] | 2337 | /* AMD/ATI Generic, PCI class code and Vendor ID for HD Audio */ |
Yang, Libin | c4da29c | 2008-11-13 11:07:07 +0100 | [diff] [blame] | 2338 | { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_ANY_ID), |
| 2339 | .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8, |
| 2340 | .class_mask = 0xffffff, |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2341 | .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_HDMI }, |
Andiry Brienza | 9176b67 | 2009-07-17 11:32:32 +0800 | [diff] [blame] | 2342 | { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_ANY_ID), |
| 2343 | .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8, |
| 2344 | .class_mask = 0xffffff, |
Takashi Iwai | 9477c58 | 2011-05-25 09:11:37 +0200 | [diff] [blame] | 2345 | .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_HDMI }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2346 | { 0, } |
| 2347 | }; |
| 2348 | MODULE_DEVICE_TABLE(pci, azx_ids); |
| 2349 | |
| 2350 | /* pci_driver definition */ |
Takashi Iwai | e9f66d9 | 2012-04-24 12:25:00 +0200 | [diff] [blame] | 2351 | static struct pci_driver azx_driver = { |
Takashi Iwai | 3733e42 | 2011-06-10 16:20:20 +0200 | [diff] [blame] | 2352 | .name = KBUILD_MODNAME, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2353 | .id_table = azx_ids, |
| 2354 | .probe = azx_probe, |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 2355 | .remove = azx_remove, |
Takashi Iwai | b2a0baf | 2015-03-05 17:21:32 +0100 | [diff] [blame] | 2356 | .shutdown = azx_shutdown, |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 2357 | .driver = { |
| 2358 | .pm = AZX_PM_OPS, |
| 2359 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2360 | }; |
| 2361 | |
Takashi Iwai | e9f66d9 | 2012-04-24 12:25:00 +0200 | [diff] [blame] | 2362 | module_pci_driver(azx_driver); |