Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * ALSA modem driver for Intel ICH (i8x0) chipsets |
| 4 | * |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 5 | * Copyright (c) 2000 Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
Sasha Khapyorsky | f01cc52 | 2005-10-10 11:45:31 +0200 | [diff] [blame] | 7 | * This is modified (by Sasha Khapyorsky <sashak@alsa-project.org>) version |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * of ALSA ICH sound driver intel8x0.c . |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
Takashi Iwai | 6cbbfe1 | 2015-01-28 16:49:33 +0100 | [diff] [blame] | 11 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/delay.h> |
| 13 | #include <linux/interrupt.h> |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/pci.h> |
| 16 | #include <linux/slab.h> |
Paul Gortmaker | 65a7721 | 2011-07-15 13:13:37 -0400 | [diff] [blame] | 17 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <sound/core.h> |
| 19 | #include <sound/pcm.h> |
| 20 | #include <sound/ac97_codec.h> |
| 21 | #include <sound/info.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <sound/initval.h> |
| 23 | |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 24 | MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>"); |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 25 | MODULE_DESCRIPTION("Intel 82801AA,82901AB,i810,i820,i830,i840,i845,MX440; " |
| 26 | "SiS 7013; NVidia MCP/2/2S/3 modems"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | MODULE_LICENSE("GPL"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Clemens Ladisch | b7fe462 | 2005-10-04 08:46:51 +0200 | [diff] [blame] | 29 | static int index = -2; /* Exclude the first card */ |
| 30 | static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */ |
Takashi Iwai | 6581f4e | 2006-05-17 17:14:51 +0200 | [diff] [blame] | 31 | static int ac97_clock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Clemens Ladisch | b7fe462 | 2005-10-04 08:46:51 +0200 | [diff] [blame] | 33 | module_param(index, int, 0444); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | MODULE_PARM_DESC(index, "Index value for Intel i8x0 modemcard."); |
Clemens Ladisch | b7fe462 | 2005-10-04 08:46:51 +0200 | [diff] [blame] | 35 | module_param(id, charp, 0444); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | MODULE_PARM_DESC(id, "ID string for Intel i8x0 modemcard."); |
Clemens Ladisch | b7fe462 | 2005-10-04 08:46:51 +0200 | [diff] [blame] | 37 | module_param(ac97_clock, int, 0444); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | MODULE_PARM_DESC(ac97_clock, "AC'97 codec clock (0 = auto-detect)."); |
| 39 | |
Takashi Iwai | 2b3e584 | 2005-10-06 13:47:23 +0200 | [diff] [blame] | 40 | /* just for backward compatibility */ |
Rusty Russell | a67ff6a | 2011-12-15 13:49:36 +1030 | [diff] [blame] | 41 | static bool enable; |
Takashi Iwai | 698444f | 2005-10-20 16:53:49 +0200 | [diff] [blame] | 42 | module_param(enable, bool, 0444); |
Takashi Iwai | 2b3e584 | 2005-10-06 13:47:23 +0200 | [diff] [blame] | 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | /* |
| 45 | * Direct registers |
| 46 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | enum { DEVICE_INTEL, DEVICE_SIS, DEVICE_ALI, DEVICE_NFORCE }; |
| 48 | |
| 49 | #define ICHREG(x) ICH_REG_##x |
| 50 | |
| 51 | #define DEFINE_REGSET(name,base) \ |
| 52 | enum { \ |
| 53 | ICH_REG_##name##_BDBAR = base + 0x0, /* dword - buffer descriptor list base address */ \ |
| 54 | ICH_REG_##name##_CIV = base + 0x04, /* byte - current index value */ \ |
| 55 | ICH_REG_##name##_LVI = base + 0x05, /* byte - last valid index */ \ |
| 56 | ICH_REG_##name##_SR = base + 0x06, /* byte - status register */ \ |
| 57 | ICH_REG_##name##_PICB = base + 0x08, /* word - position in current buffer */ \ |
| 58 | ICH_REG_##name##_PIV = base + 0x0a, /* byte - prefetched index value */ \ |
| 59 | ICH_REG_##name##_CR = base + 0x0b, /* byte - control register */ \ |
Huilong Deng | d0f5137 | 2021-05-11 23:47:10 +0800 | [diff] [blame] | 60 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | /* busmaster blocks */ |
| 63 | DEFINE_REGSET(OFF, 0); /* offset */ |
| 64 | |
| 65 | /* values for each busmaster block */ |
| 66 | |
| 67 | /* LVI */ |
| 68 | #define ICH_REG_LVI_MASK 0x1f |
| 69 | |
| 70 | /* SR */ |
| 71 | #define ICH_FIFOE 0x10 /* FIFO error */ |
| 72 | #define ICH_BCIS 0x08 /* buffer completion interrupt status */ |
| 73 | #define ICH_LVBCI 0x04 /* last valid buffer completion interrupt */ |
| 74 | #define ICH_CELV 0x02 /* current equals last valid */ |
| 75 | #define ICH_DCH 0x01 /* DMA controller halted */ |
| 76 | |
| 77 | /* PIV */ |
| 78 | #define ICH_REG_PIV_MASK 0x1f /* mask */ |
| 79 | |
| 80 | /* CR */ |
| 81 | #define ICH_IOCE 0x10 /* interrupt on completion enable */ |
| 82 | #define ICH_FEIE 0x08 /* fifo error interrupt enable */ |
| 83 | #define ICH_LVBIE 0x04 /* last valid buffer interrupt enable */ |
| 84 | #define ICH_RESETREGS 0x02 /* reset busmaster registers */ |
| 85 | #define ICH_STARTBM 0x01 /* start busmaster operation */ |
| 86 | |
| 87 | |
| 88 | /* global block */ |
| 89 | #define ICH_REG_GLOB_CNT 0x3c /* dword - global control */ |
| 90 | #define ICH_TRIE 0x00000040 /* tertiary resume interrupt enable */ |
| 91 | #define ICH_SRIE 0x00000020 /* secondary resume interrupt enable */ |
| 92 | #define ICH_PRIE 0x00000010 /* primary resume interrupt enable */ |
| 93 | #define ICH_ACLINK 0x00000008 /* AClink shut off */ |
| 94 | #define ICH_AC97WARM 0x00000004 /* AC'97 warm reset */ |
| 95 | #define ICH_AC97COLD 0x00000002 /* AC'97 cold reset */ |
| 96 | #define ICH_GIE 0x00000001 /* GPI interrupt enable */ |
| 97 | #define ICH_REG_GLOB_STA 0x40 /* dword - global status */ |
| 98 | #define ICH_TRI 0x20000000 /* ICH4: tertiary (AC_SDIN2) resume interrupt */ |
| 99 | #define ICH_TCR 0x10000000 /* ICH4: tertiary (AC_SDIN2) codec ready */ |
| 100 | #define ICH_BCS 0x08000000 /* ICH4: bit clock stopped */ |
| 101 | #define ICH_SPINT 0x04000000 /* ICH4: S/PDIF interrupt */ |
| 102 | #define ICH_P2INT 0x02000000 /* ICH4: PCM2-In interrupt */ |
| 103 | #define ICH_M2INT 0x01000000 /* ICH4: Mic2-In interrupt */ |
| 104 | #define ICH_SAMPLE_CAP 0x00c00000 /* ICH4: sample capability bits (RO) */ |
| 105 | #define ICH_MULTICHAN_CAP 0x00300000 /* ICH4: multi-channel capability bits (RO) */ |
| 106 | #define ICH_MD3 0x00020000 /* modem power down semaphore */ |
| 107 | #define ICH_AD3 0x00010000 /* audio power down semaphore */ |
| 108 | #define ICH_RCS 0x00008000 /* read completion status */ |
| 109 | #define ICH_BIT3 0x00004000 /* bit 3 slot 12 */ |
| 110 | #define ICH_BIT2 0x00002000 /* bit 2 slot 12 */ |
| 111 | #define ICH_BIT1 0x00001000 /* bit 1 slot 12 */ |
| 112 | #define ICH_SRI 0x00000800 /* secondary (AC_SDIN1) resume interrupt */ |
| 113 | #define ICH_PRI 0x00000400 /* primary (AC_SDIN0) resume interrupt */ |
| 114 | #define ICH_SCR 0x00000200 /* secondary (AC_SDIN1) codec ready */ |
| 115 | #define ICH_PCR 0x00000100 /* primary (AC_SDIN0) codec ready */ |
| 116 | #define ICH_MCINT 0x00000080 /* MIC capture interrupt */ |
| 117 | #define ICH_POINT 0x00000040 /* playback interrupt */ |
| 118 | #define ICH_PIINT 0x00000020 /* capture interrupt */ |
| 119 | #define ICH_NVSPINT 0x00000010 /* nforce spdif interrupt */ |
| 120 | #define ICH_MOINT 0x00000004 /* modem playback interrupt */ |
| 121 | #define ICH_MIINT 0x00000002 /* modem capture interrupt */ |
| 122 | #define ICH_GSCI 0x00000001 /* GPI status change interrupt */ |
| 123 | #define ICH_REG_ACC_SEMA 0x44 /* byte - codec write semaphore */ |
| 124 | #define ICH_CAS 0x01 /* codec access semaphore */ |
| 125 | |
| 126 | #define ICH_MAX_FRAGS 32 /* max hw frags */ |
| 127 | |
| 128 | |
| 129 | /* |
| 130 | * |
| 131 | */ |
| 132 | |
| 133 | enum { ICHD_MDMIN, ICHD_MDMOUT, ICHD_MDMLAST = ICHD_MDMOUT }; |
| 134 | enum { ALID_MDMIN, ALID_MDMOUT, ALID_MDMLAST = ALID_MDMOUT }; |
| 135 | |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 136 | #define get_ichdev(substream) (substream->runtime->private_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 138 | struct ichdev { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | unsigned int ichd; /* ich device number */ |
| 140 | unsigned long reg_offset; /* offset to bmaddr */ |
Takashi Iwai | 7752a7d | 2018-07-25 23:24:08 +0200 | [diff] [blame] | 141 | __le32 *bdbar; /* CPU address (32bit) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | unsigned int bdbar_addr; /* PCI bus address (32bit) */ |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 143 | struct snd_pcm_substream *substream; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | unsigned int physbuf; /* physical address (32bit) */ |
| 145 | unsigned int size; |
| 146 | unsigned int fragsize; |
| 147 | unsigned int fragsize1; |
| 148 | unsigned int position; |
| 149 | int frags; |
| 150 | int lvi; |
| 151 | int lvi_frag; |
| 152 | int civ; |
| 153 | int ack; |
| 154 | int ack_reload; |
| 155 | unsigned int ack_bit; |
| 156 | unsigned int roff_sr; |
| 157 | unsigned int roff_picb; |
| 158 | unsigned int int_sta_mask; /* interrupt status mask */ |
| 159 | unsigned int ali_slot; /* ALI DMA slot */ |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 160 | struct snd_ac97 *ac97; |
| 161 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 163 | struct intel8x0m { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | unsigned int device_type; |
| 165 | |
| 166 | int irq; |
| 167 | |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 168 | void __iomem *addr; |
| 169 | void __iomem *bmaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
| 171 | struct pci_dev *pci; |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 172 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | int pcm_devs; |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 175 | struct snd_pcm *pcm[2]; |
| 176 | struct ichdev ichd[2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
| 178 | unsigned int in_ac97_init: 1; |
| 179 | |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 180 | struct snd_ac97_bus *ac97_bus; |
| 181 | struct snd_ac97 *ac97; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
| 183 | spinlock_t reg_lock; |
| 184 | |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 185 | struct snd_dma_buffer *bdbars; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | u32 bdbars_count; |
| 187 | u32 int_sta_reg; /* interrupt status register */ |
| 188 | u32 int_sta_mask; /* interrupt status mask */ |
| 189 | unsigned int pcm_pos_shift; |
| 190 | }; |
| 191 | |
Benoit Taine | 9baa3c3 | 2014-08-08 15:56:03 +0200 | [diff] [blame] | 192 | static const struct pci_device_id snd_intel8x0m_ids[] = { |
Joe Perches | 28d27aa | 2009-06-24 22:13:35 -0700 | [diff] [blame] | 193 | { PCI_VDEVICE(INTEL, 0x2416), DEVICE_INTEL }, /* 82801AA */ |
| 194 | { PCI_VDEVICE(INTEL, 0x2426), DEVICE_INTEL }, /* 82901AB */ |
| 195 | { PCI_VDEVICE(INTEL, 0x2446), DEVICE_INTEL }, /* 82801BA */ |
| 196 | { PCI_VDEVICE(INTEL, 0x2486), DEVICE_INTEL }, /* ICH3 */ |
| 197 | { PCI_VDEVICE(INTEL, 0x24c6), DEVICE_INTEL }, /* ICH4 */ |
| 198 | { PCI_VDEVICE(INTEL, 0x24d6), DEVICE_INTEL }, /* ICH5 */ |
| 199 | { PCI_VDEVICE(INTEL, 0x266d), DEVICE_INTEL }, /* ICH6 */ |
| 200 | { PCI_VDEVICE(INTEL, 0x27dd), DEVICE_INTEL }, /* ICH7 */ |
| 201 | { PCI_VDEVICE(INTEL, 0x7196), DEVICE_INTEL }, /* 440MX */ |
| 202 | { PCI_VDEVICE(AMD, 0x7446), DEVICE_INTEL }, /* AMD768 */ |
| 203 | { PCI_VDEVICE(SI, 0x7013), DEVICE_SIS }, /* SI7013 */ |
| 204 | { PCI_VDEVICE(NVIDIA, 0x01c1), DEVICE_NFORCE }, /* NFORCE */ |
| 205 | { PCI_VDEVICE(NVIDIA, 0x0069), DEVICE_NFORCE }, /* NFORCE2 */ |
| 206 | { PCI_VDEVICE(NVIDIA, 0x0089), DEVICE_NFORCE }, /* NFORCE2s */ |
| 207 | { PCI_VDEVICE(NVIDIA, 0x00d9), DEVICE_NFORCE }, /* NFORCE3 */ |
Dmitry Eremin-Solenikov | df1fe13 | 2011-05-19 18:48:27 +0400 | [diff] [blame] | 208 | { PCI_VDEVICE(AMD, 0x746e), DEVICE_INTEL }, /* AMD8111 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | #if 0 |
Joe Perches | 28d27aa | 2009-06-24 22:13:35 -0700 | [diff] [blame] | 210 | { PCI_VDEVICE(AL, 0x5455), DEVICE_ALI }, /* Ali5455 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | #endif |
| 212 | { 0, } |
| 213 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
| 215 | MODULE_DEVICE_TABLE(pci, snd_intel8x0m_ids); |
| 216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | /* |
| 218 | * Lowlevel I/O - busmaster |
| 219 | */ |
| 220 | |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 221 | static inline u8 igetbyte(struct intel8x0m *chip, u32 offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | { |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 223 | return ioread8(chip->bmaddr + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | } |
| 225 | |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 226 | static inline u16 igetword(struct intel8x0m *chip, u32 offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | { |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 228 | return ioread16(chip->bmaddr + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | } |
| 230 | |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 231 | static inline u32 igetdword(struct intel8x0m *chip, u32 offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 233 | return ioread32(chip->bmaddr + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | } |
| 235 | |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 236 | static inline void iputbyte(struct intel8x0m *chip, u32 offset, u8 val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | { |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 238 | iowrite8(val, chip->bmaddr + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | } |
| 240 | |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 241 | static inline void iputword(struct intel8x0m *chip, u32 offset, u16 val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | { |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 243 | iowrite16(val, chip->bmaddr + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | } |
| 245 | |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 246 | static inline void iputdword(struct intel8x0m *chip, u32 offset, u32 val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | { |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 248 | iowrite32(val, chip->bmaddr + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | } |
| 250 | |
| 251 | /* |
| 252 | * Lowlevel I/O - AC'97 registers |
| 253 | */ |
| 254 | |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 255 | static inline u16 iagetword(struct intel8x0m *chip, u32 offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | { |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 257 | return ioread16(chip->addr + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | } |
| 259 | |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 260 | static inline void iaputword(struct intel8x0m *chip, u32 offset, u16 val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | { |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 262 | iowrite16(val, chip->addr + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | /* |
| 266 | * Basic I/O |
| 267 | */ |
| 268 | |
| 269 | /* |
| 270 | * access to AC97 codec via normal i/o (for ICH and SIS7013) |
| 271 | */ |
| 272 | |
| 273 | /* return the GLOB_STA bit for the corresponding codec */ |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 274 | static unsigned int get_ich_codec_bit(struct intel8x0m *chip, unsigned int codec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | { |
Takashi Iwai | f729f88 | 2020-01-05 15:47:23 +0100 | [diff] [blame] | 276 | static const unsigned int codec_bit[3] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | ICH_PCR, ICH_SCR, ICH_TCR |
| 278 | }; |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 279 | if (snd_BUG_ON(codec >= 3)) |
| 280 | return ICH_PCR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | return codec_bit[codec]; |
| 282 | } |
| 283 | |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 284 | static int snd_intel8x0m_codec_semaphore(struct intel8x0m *chip, unsigned int codec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | { |
| 286 | int time; |
| 287 | |
| 288 | if (codec > 1) |
| 289 | return -EIO; |
| 290 | codec = get_ich_codec_bit(chip, codec); |
| 291 | |
| 292 | /* codec ready ? */ |
| 293 | if ((igetdword(chip, ICHREG(GLOB_STA)) & codec) == 0) |
| 294 | return -EIO; |
| 295 | |
| 296 | /* Anyone holding a semaphore for 1 msec should be shot... */ |
| 297 | time = 100; |
| 298 | do { |
| 299 | if (!(igetbyte(chip, ICHREG(ACC_SEMA)) & ICH_CAS)) |
| 300 | return 0; |
| 301 | udelay(10); |
| 302 | } while (time--); |
| 303 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 304 | /* access to some forbidden (non existent) ac97 registers will not |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | * reset the semaphore. So even if you don't get the semaphore, still |
| 306 | * continue the access. We don't need the semaphore anyway. */ |
Takashi Iwai | 813bdba | 2014-02-25 14:40:45 +0100 | [diff] [blame] | 307 | dev_err(chip->card->dev, |
| 308 | "codec_semaphore: semaphore is not ready [0x%x][0x%x]\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | igetbyte(chip, ICHREG(ACC_SEMA)), igetdword(chip, ICHREG(GLOB_STA))); |
| 310 | iagetword(chip, 0); /* clear semaphore flag */ |
| 311 | /* I don't care about the semaphore */ |
| 312 | return -EBUSY; |
| 313 | } |
| 314 | |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 315 | static void snd_intel8x0m_codec_write(struct snd_ac97 *ac97, |
| 316 | unsigned short reg, |
| 317 | unsigned short val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 319 | struct intel8x0m *chip = ac97->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
| 321 | if (snd_intel8x0m_codec_semaphore(chip, ac97->num) < 0) { |
| 322 | if (! chip->in_ac97_init) |
Takashi Iwai | 813bdba | 2014-02-25 14:40:45 +0100 | [diff] [blame] | 323 | dev_err(chip->card->dev, |
| 324 | "codec_write %d: semaphore is not ready for register 0x%x\n", |
| 325 | ac97->num, reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | } |
| 327 | iaputword(chip, reg + ac97->num * 0x80, val); |
| 328 | } |
| 329 | |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 330 | static unsigned short snd_intel8x0m_codec_read(struct snd_ac97 *ac97, |
| 331 | unsigned short reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 333 | struct intel8x0m *chip = ac97->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | unsigned short res; |
| 335 | unsigned int tmp; |
| 336 | |
| 337 | if (snd_intel8x0m_codec_semaphore(chip, ac97->num) < 0) { |
| 338 | if (! chip->in_ac97_init) |
Takashi Iwai | 813bdba | 2014-02-25 14:40:45 +0100 | [diff] [blame] | 339 | dev_err(chip->card->dev, |
| 340 | "codec_read %d: semaphore is not ready for register 0x%x\n", |
| 341 | ac97->num, reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | res = 0xffff; |
| 343 | } else { |
| 344 | res = iagetword(chip, reg + ac97->num * 0x80); |
Takashi Iwai | 3a5f3dd | 2021-06-08 16:05:02 +0200 | [diff] [blame] | 345 | tmp = igetdword(chip, ICHREG(GLOB_STA)); |
| 346 | if (tmp & ICH_RCS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | /* reset RCS and preserve other R/WC bits */ |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 348 | iputdword(chip, ICHREG(GLOB_STA), |
| 349 | tmp & ~(ICH_SRI|ICH_PRI|ICH_TRI|ICH_GSCI)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | if (! chip->in_ac97_init) |
Takashi Iwai | 813bdba | 2014-02-25 14:40:45 +0100 | [diff] [blame] | 351 | dev_err(chip->card->dev, |
| 352 | "codec_read %d: read timeout for register 0x%x\n", |
| 353 | ac97->num, reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | res = 0xffff; |
| 355 | } |
| 356 | } |
Sasha Khapyorsky | 2c56c47 | 2005-04-07 20:21:21 +0200 | [diff] [blame] | 357 | if (reg == AC97_GPIO_STATUS) |
| 358 | iagetword(chip, 0); /* clear semaphore */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | return res; |
| 360 | } |
| 361 | |
| 362 | |
| 363 | /* |
| 364 | * DMA I/O |
| 365 | */ |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 366 | static void snd_intel8x0m_setup_periods(struct intel8x0m *chip, struct ichdev *ichdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | { |
| 368 | int idx; |
Takashi Iwai | 7752a7d | 2018-07-25 23:24:08 +0200 | [diff] [blame] | 369 | __le32 *bdbar = ichdev->bdbar; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | unsigned long port = ichdev->reg_offset; |
| 371 | |
| 372 | iputdword(chip, port + ICH_REG_OFF_BDBAR, ichdev->bdbar_addr); |
| 373 | if (ichdev->size == ichdev->fragsize) { |
| 374 | ichdev->ack_reload = ichdev->ack = 2; |
| 375 | ichdev->fragsize1 = ichdev->fragsize >> 1; |
| 376 | for (idx = 0; idx < (ICH_REG_LVI_MASK + 1) * 2; idx += 4) { |
| 377 | bdbar[idx + 0] = cpu_to_le32(ichdev->physbuf); |
| 378 | bdbar[idx + 1] = cpu_to_le32(0x80000000 | /* interrupt on completion */ |
| 379 | ichdev->fragsize1 >> chip->pcm_pos_shift); |
| 380 | bdbar[idx + 2] = cpu_to_le32(ichdev->physbuf + (ichdev->size >> 1)); |
| 381 | bdbar[idx + 3] = cpu_to_le32(0x80000000 | /* interrupt on completion */ |
| 382 | ichdev->fragsize1 >> chip->pcm_pos_shift); |
| 383 | } |
| 384 | ichdev->frags = 2; |
| 385 | } else { |
| 386 | ichdev->ack_reload = ichdev->ack = 1; |
| 387 | ichdev->fragsize1 = ichdev->fragsize; |
| 388 | for (idx = 0; idx < (ICH_REG_LVI_MASK + 1) * 2; idx += 2) { |
| 389 | bdbar[idx + 0] = cpu_to_le32(ichdev->physbuf + (((idx >> 1) * ichdev->fragsize) % ichdev->size)); |
| 390 | bdbar[idx + 1] = cpu_to_le32(0x80000000 | /* interrupt on completion */ |
| 391 | ichdev->fragsize >> chip->pcm_pos_shift); |
Takashi Iwai | 14ab086 | 2009-02-05 16:09:57 +0100 | [diff] [blame] | 392 | /* |
Takashi Iwai | 813bdba | 2014-02-25 14:40:45 +0100 | [diff] [blame] | 393 | dev_dbg(chip->card->dev, "bdbar[%i] = 0x%x [0x%x]\n", |
Takashi Iwai | 14ab086 | 2009-02-05 16:09:57 +0100 | [diff] [blame] | 394 | idx + 0, bdbar[idx + 0], bdbar[idx + 1]); |
| 395 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | } |
| 397 | ichdev->frags = ichdev->size / ichdev->fragsize; |
| 398 | } |
| 399 | iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi = ICH_REG_LVI_MASK); |
| 400 | ichdev->civ = 0; |
| 401 | iputbyte(chip, port + ICH_REG_OFF_CIV, 0); |
| 402 | ichdev->lvi_frag = ICH_REG_LVI_MASK % ichdev->frags; |
| 403 | ichdev->position = 0; |
| 404 | #if 0 |
Takashi Iwai | 813bdba | 2014-02-25 14:40:45 +0100 | [diff] [blame] | 405 | dev_dbg(chip->card->dev, |
| 406 | "lvi_frag = %i, frags = %i, period_size = 0x%x, period_size1 = 0x%x\n", |
Takashi Iwai | 14ab086 | 2009-02-05 16:09:57 +0100 | [diff] [blame] | 407 | ichdev->lvi_frag, ichdev->frags, ichdev->fragsize, |
| 408 | ichdev->fragsize1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | #endif |
| 410 | /* clear interrupts */ |
| 411 | iputbyte(chip, port + ichdev->roff_sr, ICH_FIFOE | ICH_BCIS | ICH_LVBCI); |
| 412 | } |
| 413 | |
| 414 | /* |
| 415 | * Interrupt handler |
| 416 | */ |
| 417 | |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 418 | static inline void snd_intel8x0m_update(struct intel8x0m *chip, struct ichdev *ichdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | { |
| 420 | unsigned long port = ichdev->reg_offset; |
| 421 | int civ, i, step; |
| 422 | int ack = 0; |
| 423 | |
| 424 | civ = igetbyte(chip, port + ICH_REG_OFF_CIV); |
| 425 | if (civ == ichdev->civ) { |
| 426 | // snd_printd("civ same %d\n", civ); |
| 427 | step = 1; |
| 428 | ichdev->civ++; |
| 429 | ichdev->civ &= ICH_REG_LVI_MASK; |
| 430 | } else { |
| 431 | step = civ - ichdev->civ; |
| 432 | if (step < 0) |
| 433 | step += ICH_REG_LVI_MASK + 1; |
| 434 | // if (step != 1) |
| 435 | // snd_printd("step = %d, %d -> %d\n", step, ichdev->civ, civ); |
| 436 | ichdev->civ = civ; |
| 437 | } |
| 438 | |
| 439 | ichdev->position += step * ichdev->fragsize1; |
| 440 | ichdev->position %= ichdev->size; |
| 441 | ichdev->lvi += step; |
| 442 | ichdev->lvi &= ICH_REG_LVI_MASK; |
| 443 | iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi); |
| 444 | for (i = 0; i < step; i++) { |
| 445 | ichdev->lvi_frag++; |
| 446 | ichdev->lvi_frag %= ichdev->frags; |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 447 | ichdev->bdbar[ichdev->lvi * 2] = cpu_to_le32(ichdev->physbuf + |
| 448 | ichdev->lvi_frag * |
| 449 | ichdev->fragsize1); |
| 450 | #if 0 |
Takashi Iwai | 813bdba | 2014-02-25 14:40:45 +0100 | [diff] [blame] | 451 | dev_dbg(chip->card->dev, |
| 452 | "new: bdbar[%i] = 0x%x [0x%x], prefetch = %i, all = 0x%x, 0x%x\n", |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 453 | ichdev->lvi * 2, ichdev->bdbar[ichdev->lvi * 2], |
| 454 | ichdev->bdbar[ichdev->lvi * 2 + 1], inb(ICH_REG_OFF_PIV + port), |
| 455 | inl(port + 4), inb(port + ICH_REG_OFF_CR)); |
| 456 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | if (--ichdev->ack == 0) { |
| 458 | ichdev->ack = ichdev->ack_reload; |
| 459 | ack = 1; |
| 460 | } |
| 461 | } |
| 462 | if (ack && ichdev->substream) { |
| 463 | spin_unlock(&chip->reg_lock); |
| 464 | snd_pcm_period_elapsed(ichdev->substream); |
| 465 | spin_lock(&chip->reg_lock); |
| 466 | } |
| 467 | iputbyte(chip, port + ichdev->roff_sr, ICH_FIFOE | ICH_BCIS | ICH_LVBCI); |
| 468 | } |
| 469 | |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 470 | static irqreturn_t snd_intel8x0m_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 472 | struct intel8x0m *chip = dev_id; |
| 473 | struct ichdev *ichdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | unsigned int status; |
| 475 | unsigned int i; |
| 476 | |
| 477 | spin_lock(&chip->reg_lock); |
| 478 | status = igetdword(chip, chip->int_sta_reg); |
| 479 | if (status == 0xffffffff) { /* we are not yet resumed */ |
| 480 | spin_unlock(&chip->reg_lock); |
| 481 | return IRQ_NONE; |
| 482 | } |
| 483 | if ((status & chip->int_sta_mask) == 0) { |
| 484 | if (status) |
| 485 | iputdword(chip, chip->int_sta_reg, status); |
| 486 | spin_unlock(&chip->reg_lock); |
| 487 | return IRQ_NONE; |
| 488 | } |
| 489 | |
| 490 | for (i = 0; i < chip->bdbars_count; i++) { |
| 491 | ichdev = &chip->ichd[i]; |
| 492 | if (status & ichdev->int_sta_mask) |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 493 | snd_intel8x0m_update(chip, ichdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | } |
| 495 | |
| 496 | /* ack them */ |
| 497 | iputdword(chip, chip->int_sta_reg, status & chip->int_sta_mask); |
| 498 | spin_unlock(&chip->reg_lock); |
| 499 | |
| 500 | return IRQ_HANDLED; |
| 501 | } |
| 502 | |
| 503 | /* |
| 504 | * PCM part |
| 505 | */ |
| 506 | |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 507 | static int snd_intel8x0m_pcm_trigger(struct snd_pcm_substream *substream, int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 509 | struct intel8x0m *chip = snd_pcm_substream_chip(substream); |
| 510 | struct ichdev *ichdev = get_ichdev(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 511 | unsigned char val = 0; |
| 512 | unsigned long port = ichdev->reg_offset; |
| 513 | |
| 514 | switch (cmd) { |
| 515 | case SNDRV_PCM_TRIGGER_START: |
| 516 | case SNDRV_PCM_TRIGGER_RESUME: |
| 517 | val = ICH_IOCE | ICH_STARTBM; |
| 518 | break; |
| 519 | case SNDRV_PCM_TRIGGER_STOP: |
| 520 | case SNDRV_PCM_TRIGGER_SUSPEND: |
| 521 | val = 0; |
| 522 | break; |
| 523 | case SNDRV_PCM_TRIGGER_PAUSE_PUSH: |
| 524 | val = ICH_IOCE; |
| 525 | break; |
| 526 | case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: |
| 527 | val = ICH_IOCE | ICH_STARTBM; |
| 528 | break; |
| 529 | default: |
| 530 | return -EINVAL; |
| 531 | } |
| 532 | iputbyte(chip, port + ICH_REG_OFF_CR, val); |
| 533 | if (cmd == SNDRV_PCM_TRIGGER_STOP) { |
| 534 | /* wait until DMA stopped */ |
| 535 | while (!(igetbyte(chip, port + ichdev->roff_sr) & ICH_DCH)) ; |
| 536 | /* reset whole DMA things */ |
| 537 | iputbyte(chip, port + ICH_REG_OFF_CR, ICH_RESETREGS); |
| 538 | } |
| 539 | return 0; |
| 540 | } |
| 541 | |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 542 | static snd_pcm_uframes_t snd_intel8x0m_pcm_pointer(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 544 | struct intel8x0m *chip = snd_pcm_substream_chip(substream); |
| 545 | struct ichdev *ichdev = get_ichdev(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | size_t ptr1, ptr; |
| 547 | |
| 548 | ptr1 = igetword(chip, ichdev->reg_offset + ichdev->roff_picb) << chip->pcm_pos_shift; |
| 549 | if (ptr1 != 0) |
| 550 | ptr = ichdev->fragsize1 - ptr1; |
| 551 | else |
| 552 | ptr = 0; |
| 553 | ptr += ichdev->position; |
| 554 | if (ptr >= ichdev->size) |
| 555 | return 0; |
| 556 | return bytes_to_frames(substream->runtime, ptr); |
| 557 | } |
| 558 | |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 559 | static int snd_intel8x0m_pcm_prepare(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 561 | struct intel8x0m *chip = snd_pcm_substream_chip(substream); |
| 562 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 563 | struct ichdev *ichdev = get_ichdev(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | |
| 565 | ichdev->physbuf = runtime->dma_addr; |
| 566 | ichdev->size = snd_pcm_lib_buffer_bytes(substream); |
| 567 | ichdev->fragsize = snd_pcm_lib_period_bytes(substream); |
| 568 | snd_ac97_write(ichdev->ac97, AC97_LINE1_RATE, runtime->rate); |
| 569 | snd_ac97_write(ichdev->ac97, AC97_LINE1_LEVEL, 0); |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 570 | snd_intel8x0m_setup_periods(chip, ichdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | return 0; |
| 572 | } |
| 573 | |
Bhumika Goyal | dee4989 | 2017-08-12 21:01:28 +0530 | [diff] [blame] | 574 | static const struct snd_pcm_hardware snd_intel8x0m_stream = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | { |
| 576 | .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED | |
| 577 | SNDRV_PCM_INFO_BLOCK_TRANSFER | |
| 578 | SNDRV_PCM_INFO_MMAP_VALID | |
| 579 | SNDRV_PCM_INFO_PAUSE | |
| 580 | SNDRV_PCM_INFO_RESUME), |
| 581 | .formats = SNDRV_PCM_FMTBIT_S16_LE, |
| 582 | .rates = SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_KNOT, |
| 583 | .rate_min = 8000, |
| 584 | .rate_max = 16000, |
| 585 | .channels_min = 1, |
| 586 | .channels_max = 1, |
| 587 | .buffer_bytes_max = 64 * 1024, |
| 588 | .period_bytes_min = 32, |
| 589 | .period_bytes_max = 64 * 1024, |
| 590 | .periods_min = 1, |
| 591 | .periods_max = 1024, |
| 592 | .fifo_size = 0, |
| 593 | }; |
| 594 | |
| 595 | |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 596 | static int snd_intel8x0m_pcm_open(struct snd_pcm_substream *substream, struct ichdev *ichdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | { |
Takashi Iwai | 0f470ce | 2017-06-07 14:21:31 +0200 | [diff] [blame] | 598 | static const unsigned int rates[] = { 8000, 9600, 12000, 16000 }; |
| 599 | static const struct snd_pcm_hw_constraint_list hw_constraints_rates = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | .count = ARRAY_SIZE(rates), |
| 601 | .list = rates, |
| 602 | .mask = 0, |
| 603 | }; |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 604 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | int err; |
| 606 | |
| 607 | ichdev->substream = substream; |
| 608 | runtime->hw = snd_intel8x0m_stream; |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 609 | err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, |
| 610 | &hw_constraints_rates); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | if ( err < 0 ) |
| 612 | return err; |
| 613 | runtime->private_data = ichdev; |
| 614 | return 0; |
| 615 | } |
| 616 | |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 617 | static int snd_intel8x0m_playback_open(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 619 | struct intel8x0m *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | |
| 621 | return snd_intel8x0m_pcm_open(substream, &chip->ichd[ICHD_MDMOUT]); |
| 622 | } |
| 623 | |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 624 | static int snd_intel8x0m_playback_close(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 626 | struct intel8x0m *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | |
| 628 | chip->ichd[ICHD_MDMOUT].substream = NULL; |
| 629 | return 0; |
| 630 | } |
| 631 | |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 632 | static int snd_intel8x0m_capture_open(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 634 | struct intel8x0m *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | |
| 636 | return snd_intel8x0m_pcm_open(substream, &chip->ichd[ICHD_MDMIN]); |
| 637 | } |
| 638 | |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 639 | static int snd_intel8x0m_capture_close(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 641 | struct intel8x0m *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | |
| 643 | chip->ichd[ICHD_MDMIN].substream = NULL; |
| 644 | return 0; |
| 645 | } |
| 646 | |
| 647 | |
Arvind Yadav | c06aab3 | 2017-08-10 17:17:36 +0530 | [diff] [blame] | 648 | static const struct snd_pcm_ops snd_intel8x0m_playback_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | .open = snd_intel8x0m_playback_open, |
| 650 | .close = snd_intel8x0m_playback_close, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | .prepare = snd_intel8x0m_pcm_prepare, |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 652 | .trigger = snd_intel8x0m_pcm_trigger, |
| 653 | .pointer = snd_intel8x0m_pcm_pointer, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | }; |
| 655 | |
Arvind Yadav | c06aab3 | 2017-08-10 17:17:36 +0530 | [diff] [blame] | 656 | static const struct snd_pcm_ops snd_intel8x0m_capture_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | .open = snd_intel8x0m_capture_open, |
| 658 | .close = snd_intel8x0m_capture_close, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | .prepare = snd_intel8x0m_pcm_prepare, |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 660 | .trigger = snd_intel8x0m_pcm_trigger, |
| 661 | .pointer = snd_intel8x0m_pcm_pointer, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | }; |
| 663 | |
| 664 | |
| 665 | struct ich_pcm_table { |
| 666 | char *suffix; |
Arvind Yadav | c06aab3 | 2017-08-10 17:17:36 +0530 | [diff] [blame] | 667 | const struct snd_pcm_ops *playback_ops; |
| 668 | const struct snd_pcm_ops *capture_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | size_t prealloc_size; |
| 670 | size_t prealloc_max_size; |
| 671 | int ac97_idx; |
| 672 | }; |
| 673 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 674 | static int snd_intel8x0m_pcm1(struct intel8x0m *chip, int device, |
Takashi Iwai | f729f88 | 2020-01-05 15:47:23 +0100 | [diff] [blame] | 675 | const struct ich_pcm_table *rec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 676 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 677 | struct snd_pcm *pcm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | int err; |
| 679 | char name[32]; |
| 680 | |
| 681 | if (rec->suffix) |
| 682 | sprintf(name, "Intel ICH - %s", rec->suffix); |
| 683 | else |
| 684 | strcpy(name, "Intel ICH"); |
| 685 | err = snd_pcm_new(chip->card, name, device, |
| 686 | rec->playback_ops ? 1 : 0, |
| 687 | rec->capture_ops ? 1 : 0, &pcm); |
| 688 | if (err < 0) |
| 689 | return err; |
| 690 | |
| 691 | if (rec->playback_ops) |
| 692 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, rec->playback_ops); |
| 693 | if (rec->capture_ops) |
| 694 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, rec->capture_ops); |
| 695 | |
| 696 | pcm->private_data = chip; |
| 697 | pcm->info_flags = 0; |
Sasha Khapyorsky | 6632d19 | 2005-09-29 11:48:17 +0200 | [diff] [blame] | 698 | pcm->dev_class = SNDRV_PCM_CLASS_MODEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | if (rec->suffix) |
| 700 | sprintf(pcm->name, "%s - %s", chip->card->shortname, rec->suffix); |
| 701 | else |
| 702 | strcpy(pcm->name, chip->card->shortname); |
| 703 | chip->pcm[device] = pcm; |
| 704 | |
Takashi Iwai | 28d52aa | 2019-12-09 10:49:15 +0100 | [diff] [blame] | 705 | snd_pcm_set_managed_buffer_all(pcm, SNDRV_DMA_TYPE_DEV, |
| 706 | &chip->pci->dev, |
| 707 | rec->prealloc_size, |
| 708 | rec->prealloc_max_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | |
| 710 | return 0; |
| 711 | } |
| 712 | |
Takashi Iwai | f729f88 | 2020-01-05 15:47:23 +0100 | [diff] [blame] | 713 | static const struct ich_pcm_table intel_pcms[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | { |
| 715 | .suffix = "Modem", |
| 716 | .playback_ops = &snd_intel8x0m_playback_ops, |
| 717 | .capture_ops = &snd_intel8x0m_capture_ops, |
| 718 | .prealloc_size = 32 * 1024, |
| 719 | .prealloc_max_size = 64 * 1024, |
| 720 | }, |
| 721 | }; |
| 722 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 723 | static int snd_intel8x0m_pcm(struct intel8x0m *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | { |
| 725 | int i, tblsize, device, err; |
Takashi Iwai | f729f88 | 2020-01-05 15:47:23 +0100 | [diff] [blame] | 726 | const struct ich_pcm_table *tbl, *rec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | |
| 728 | #if 1 |
| 729 | tbl = intel_pcms; |
| 730 | tblsize = 1; |
| 731 | #else |
| 732 | switch (chip->device_type) { |
| 733 | case DEVICE_NFORCE: |
| 734 | tbl = nforce_pcms; |
| 735 | tblsize = ARRAY_SIZE(nforce_pcms); |
| 736 | break; |
| 737 | case DEVICE_ALI: |
| 738 | tbl = ali_pcms; |
| 739 | tblsize = ARRAY_SIZE(ali_pcms); |
| 740 | break; |
| 741 | default: |
| 742 | tbl = intel_pcms; |
| 743 | tblsize = 2; |
| 744 | break; |
| 745 | } |
| 746 | #endif |
| 747 | device = 0; |
| 748 | for (i = 0; i < tblsize; i++) { |
| 749 | rec = tbl + i; |
| 750 | if (i > 0 && rec->ac97_idx) { |
| 751 | /* activate PCM only when associated AC'97 codec */ |
| 752 | if (! chip->ichd[rec->ac97_idx].ac97) |
| 753 | continue; |
| 754 | } |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 755 | err = snd_intel8x0m_pcm1(chip, device, rec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | if (err < 0) |
| 757 | return err; |
| 758 | device++; |
| 759 | } |
| 760 | |
| 761 | chip->pcm_devs = device; |
| 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | |
| 766 | /* |
| 767 | * Mixer part |
| 768 | */ |
| 769 | |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 770 | static void snd_intel8x0m_mixer_free_ac97_bus(struct snd_ac97_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 772 | struct intel8x0m *chip = bus->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | chip->ac97_bus = NULL; |
| 774 | } |
| 775 | |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 776 | static void snd_intel8x0m_mixer_free_ac97(struct snd_ac97 *ac97) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 778 | struct intel8x0m *chip = ac97->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | chip->ac97 = NULL; |
| 780 | } |
| 781 | |
| 782 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 783 | static int snd_intel8x0m_mixer(struct intel8x0m *chip, int ac97_clock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 785 | struct snd_ac97_bus *pbus; |
| 786 | struct snd_ac97_template ac97; |
| 787 | struct snd_ac97 *x97; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | int err; |
| 789 | unsigned int glob_sta = 0; |
Takashi Iwai | 51055da | 2020-01-03 09:16:43 +0100 | [diff] [blame] | 790 | static const struct snd_ac97_bus_ops ops = { |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 791 | .write = snd_intel8x0m_codec_write, |
| 792 | .read = snd_intel8x0m_codec_read, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | }; |
| 794 | |
| 795 | chip->in_ac97_init = 1; |
| 796 | |
| 797 | memset(&ac97, 0, sizeof(ac97)); |
| 798 | ac97.private_data = chip; |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 799 | ac97.private_free = snd_intel8x0m_mixer_free_ac97; |
Takashi Iwai | f1a63a3 | 2006-10-24 18:25:29 +0200 | [diff] [blame] | 800 | ac97.scaps = AC97_SCAP_SKIP_AUDIO | AC97_SCAP_POWER_SAVE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | |
| 802 | glob_sta = igetdword(chip, ICHREG(GLOB_STA)); |
| 803 | |
Takashi Iwai | 3a5f3dd | 2021-06-08 16:05:02 +0200 | [diff] [blame] | 804 | err = snd_ac97_bus(chip->card, 0, &ops, chip, &pbus); |
| 805 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | goto __err; |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 807 | pbus->private_free = snd_intel8x0m_mixer_free_ac97_bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | if (ac97_clock >= 8000 && ac97_clock <= 48000) |
| 809 | pbus->clock = ac97_clock; |
| 810 | chip->ac97_bus = pbus; |
| 811 | |
| 812 | ac97.pci = chip->pci; |
| 813 | ac97.num = glob_sta & ICH_SCR ? 1 : 0; |
Takashi Iwai | 3a5f3dd | 2021-06-08 16:05:02 +0200 | [diff] [blame] | 814 | err = snd_ac97_mixer(pbus, &ac97, &x97); |
| 815 | if (err < 0) { |
Takashi Iwai | 813bdba | 2014-02-25 14:40:45 +0100 | [diff] [blame] | 816 | dev_err(chip->card->dev, |
| 817 | "Unable to initialize codec #%d\n", ac97.num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | if (ac97.num == 0) |
| 819 | goto __err; |
| 820 | return err; |
| 821 | } |
| 822 | chip->ac97 = x97; |
| 823 | if(ac97_is_modem(x97) && !chip->ichd[ICHD_MDMIN].ac97) { |
| 824 | chip->ichd[ICHD_MDMIN].ac97 = x97; |
| 825 | chip->ichd[ICHD_MDMOUT].ac97 = x97; |
| 826 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | |
| 828 | chip->in_ac97_init = 0; |
| 829 | return 0; |
| 830 | |
| 831 | __err: |
| 832 | /* clear the cold-reset bit for the next chance */ |
| 833 | if (chip->device_type != DEVICE_ALI) |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 834 | iputdword(chip, ICHREG(GLOB_CNT), |
| 835 | igetdword(chip, ICHREG(GLOB_CNT)) & ~ICH_AC97COLD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | return err; |
| 837 | } |
| 838 | |
| 839 | |
| 840 | /* |
| 841 | * |
| 842 | */ |
| 843 | |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 844 | static int snd_intel8x0m_ich_chip_init(struct intel8x0m *chip, int probing) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | { |
| 846 | unsigned long end_time; |
| 847 | unsigned int cnt, status, nstatus; |
| 848 | |
| 849 | /* put logic to right state */ |
| 850 | /* first clear status bits */ |
| 851 | status = ICH_RCS | ICH_MIINT | ICH_MOINT; |
| 852 | cnt = igetdword(chip, ICHREG(GLOB_STA)); |
| 853 | iputdword(chip, ICHREG(GLOB_STA), cnt & status); |
| 854 | |
| 855 | /* ACLink on, 2 channels */ |
| 856 | cnt = igetdword(chip, ICHREG(GLOB_CNT)); |
| 857 | cnt &= ~(ICH_ACLINK); |
| 858 | /* finish cold or do warm reset */ |
| 859 | cnt |= (cnt & ICH_AC97COLD) == 0 ? ICH_AC97COLD : ICH_AC97WARM; |
| 860 | iputdword(chip, ICHREG(GLOB_CNT), cnt); |
Paul Bolle | 5cd2ad8 | 2011-03-11 11:24:52 +0100 | [diff] [blame] | 861 | usleep_range(500, 1000); /* give warm reset some time */ |
| 862 | end_time = jiffies + HZ / 4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | do { |
| 864 | if ((igetdword(chip, ICHREG(GLOB_CNT)) & ICH_AC97WARM) == 0) |
| 865 | goto __ok; |
Takashi Iwai | 954bea3 | 2005-11-17 10:37:40 +0100 | [diff] [blame] | 866 | schedule_timeout_uninterruptible(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | } while (time_after_eq(end_time, jiffies)); |
Takashi Iwai | 813bdba | 2014-02-25 14:40:45 +0100 | [diff] [blame] | 868 | dev_err(chip->card->dev, "AC'97 warm reset still in progress? [0x%x]\n", |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 869 | igetdword(chip, ICHREG(GLOB_CNT))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | return -EIO; |
| 871 | |
| 872 | __ok: |
| 873 | if (probing) { |
| 874 | /* wait for any codec ready status. |
| 875 | * Once it becomes ready it should remain ready |
| 876 | * as long as we do not disable the ac97 link. |
| 877 | */ |
| 878 | end_time = jiffies + HZ; |
| 879 | do { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 880 | status = igetdword(chip, ICHREG(GLOB_STA)) & |
| 881 | (ICH_PCR | ICH_SCR | ICH_TCR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | if (status) |
| 883 | break; |
Takashi Iwai | 954bea3 | 2005-11-17 10:37:40 +0100 | [diff] [blame] | 884 | schedule_timeout_uninterruptible(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | } while (time_after_eq(end_time, jiffies)); |
| 886 | if (! status) { |
| 887 | /* no codec is found */ |
Takashi Iwai | 813bdba | 2014-02-25 14:40:45 +0100 | [diff] [blame] | 888 | dev_err(chip->card->dev, |
| 889 | "codec_ready: codec is not ready [0x%x]\n", |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 890 | igetdword(chip, ICHREG(GLOB_STA))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | return -EIO; |
| 892 | } |
| 893 | |
| 894 | /* up to two codecs (modem cannot be tertiary with ICH4) */ |
| 895 | nstatus = ICH_PCR | ICH_SCR; |
| 896 | |
| 897 | /* wait for other codecs ready status. */ |
| 898 | end_time = jiffies + HZ / 4; |
| 899 | while (status != nstatus && time_after_eq(end_time, jiffies)) { |
Takashi Iwai | 954bea3 | 2005-11-17 10:37:40 +0100 | [diff] [blame] | 900 | schedule_timeout_uninterruptible(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | status |= igetdword(chip, ICHREG(GLOB_STA)) & nstatus; |
| 902 | } |
| 903 | |
| 904 | } else { |
| 905 | /* resume phase */ |
| 906 | status = 0; |
| 907 | if (chip->ac97) |
| 908 | status |= get_ich_codec_bit(chip, chip->ac97->num); |
| 909 | /* wait until all the probed codecs are ready */ |
| 910 | end_time = jiffies + HZ; |
| 911 | do { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 912 | nstatus = igetdword(chip, ICHREG(GLOB_STA)) & |
| 913 | (ICH_PCR | ICH_SCR | ICH_TCR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | if (status == nstatus) |
| 915 | break; |
Takashi Iwai | 954bea3 | 2005-11-17 10:37:40 +0100 | [diff] [blame] | 916 | schedule_timeout_uninterruptible(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | } while (time_after_eq(end_time, jiffies)); |
| 918 | } |
| 919 | |
| 920 | if (chip->device_type == DEVICE_SIS) { |
| 921 | /* unmute the output on SIS7012 */ |
| 922 | iputword(chip, 0x4c, igetword(chip, 0x4c) | 1); |
| 923 | } |
| 924 | |
| 925 | return 0; |
| 926 | } |
| 927 | |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 928 | static int snd_intel8x0m_chip_init(struct intel8x0m *chip, int probing) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | { |
| 930 | unsigned int i; |
| 931 | int err; |
| 932 | |
Takashi Iwai | 3a5f3dd | 2021-06-08 16:05:02 +0200 | [diff] [blame] | 933 | err = snd_intel8x0m_ich_chip_init(chip, probing); |
| 934 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | return err; |
| 936 | iagetword(chip, 0); /* clear semaphore flag */ |
| 937 | |
| 938 | /* disable interrupts */ |
| 939 | for (i = 0; i < chip->bdbars_count; i++) |
| 940 | iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, 0x00); |
| 941 | /* reset channels */ |
| 942 | for (i = 0; i < chip->bdbars_count; i++) |
| 943 | iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, ICH_RESETREGS); |
| 944 | /* initialize Buffer Descriptor Lists */ |
| 945 | for (i = 0; i < chip->bdbars_count; i++) |
| 946 | iputdword(chip, ICH_REG_OFF_BDBAR + chip->ichd[i].reg_offset, chip->ichd[i].bdbar_addr); |
| 947 | return 0; |
| 948 | } |
| 949 | |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 950 | static void snd_intel8x0m_free(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | { |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 952 | struct intel8x0m *chip = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | unsigned int i; |
| 954 | |
| 955 | if (chip->irq < 0) |
| 956 | goto __hw_end; |
| 957 | /* disable interrupts */ |
| 958 | for (i = 0; i < chip->bdbars_count; i++) |
| 959 | iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, 0x00); |
| 960 | /* reset channels */ |
| 961 | for (i = 0; i < chip->bdbars_count; i++) |
| 962 | iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, ICH_RESETREGS); |
Takashi Iwai | ebf029d | 2008-04-22 17:28:11 +0200 | [diff] [blame] | 963 | __hw_end: |
Jeff Garzik | f000fd8 | 2008-04-22 13:50:34 +0200 | [diff] [blame] | 964 | if (chip->irq >= 0) |
Takashi Iwai | ebf029d | 2008-04-22 17:28:11 +0200 | [diff] [blame] | 965 | free_irq(chip->irq, chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | } |
| 967 | |
Takashi Iwai | c7561cd | 2012-08-14 18:12:04 +0200 | [diff] [blame] | 968 | #ifdef CONFIG_PM_SLEEP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | /* |
| 970 | * power management |
| 971 | */ |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 972 | static int intel8x0m_suspend(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | { |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 974 | struct snd_card *card = dev_get_drvdata(dev); |
Takashi Iwai | 5809c6c4 | 2005-11-17 16:10:01 +0100 | [diff] [blame] | 975 | struct intel8x0m *chip = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | |
Takashi Iwai | 5809c6c4 | 2005-11-17 16:10:01 +0100 | [diff] [blame] | 977 | snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); |
Takashi Iwai | 5809c6c4 | 2005-11-17 16:10:01 +0100 | [diff] [blame] | 978 | snd_ac97_suspend(chip->ac97); |
Takashi Iwai | 30b3539 | 2006-10-11 18:52:53 +0200 | [diff] [blame] | 979 | if (chip->irq >= 0) { |
Takashi Iwai | f0063c4 | 2006-09-22 15:30:42 +0200 | [diff] [blame] | 980 | free_irq(chip->irq, chip); |
Takashi Iwai | 30b3539 | 2006-10-11 18:52:53 +0200 | [diff] [blame] | 981 | chip->irq = -1; |
Takashi Iwai | be1391c | 2019-12-10 07:34:23 +0100 | [diff] [blame] | 982 | card->sync_irq = -1; |
Takashi Iwai | 30b3539 | 2006-10-11 18:52:53 +0200 | [diff] [blame] | 983 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | return 0; |
| 985 | } |
| 986 | |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 987 | static int intel8x0m_resume(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | { |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 989 | struct pci_dev *pci = to_pci_dev(dev); |
| 990 | struct snd_card *card = dev_get_drvdata(dev); |
Takashi Iwai | 5809c6c4 | 2005-11-17 16:10:01 +0100 | [diff] [blame] | 991 | struct intel8x0m *chip = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 993 | if (request_irq(pci->irq, snd_intel8x0m_interrupt, |
Takashi Iwai | 934c2b6 | 2011-06-10 16:36:37 +0200 | [diff] [blame] | 994 | IRQF_SHARED, KBUILD_MODNAME, chip)) { |
Takashi Iwai | 813bdba | 2014-02-25 14:40:45 +0100 | [diff] [blame] | 995 | dev_err(dev, "unable to grab IRQ %d, disabling device\n", |
| 996 | pci->irq); |
Takashi Iwai | 30b3539 | 2006-10-11 18:52:53 +0200 | [diff] [blame] | 997 | snd_card_disconnect(card); |
| 998 | return -EIO; |
| 999 | } |
Takashi Iwai | f0063c4 | 2006-09-22 15:30:42 +0200 | [diff] [blame] | 1000 | chip->irq = pci->irq; |
Takashi Iwai | be1391c | 2019-12-10 07:34:23 +0100 | [diff] [blame] | 1001 | card->sync_irq = chip->irq; |
Paul Bolle | a6e8509 | 2011-03-11 11:37:55 +0100 | [diff] [blame] | 1002 | snd_intel8x0m_chip_init(chip, 0); |
Takashi Iwai | 5809c6c4 | 2005-11-17 16:10:01 +0100 | [diff] [blame] | 1003 | snd_ac97_resume(chip->ac97); |
| 1004 | |
| 1005 | snd_power_change_state(card, SNDRV_CTL_POWER_D0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | return 0; |
| 1007 | } |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 1008 | |
| 1009 | static SIMPLE_DEV_PM_OPS(intel8x0m_pm, intel8x0m_suspend, intel8x0m_resume); |
| 1010 | #define INTEL8X0M_PM_OPS &intel8x0m_pm |
| 1011 | #else |
| 1012 | #define INTEL8X0M_PM_OPS NULL |
Takashi Iwai | c7561cd | 2012-08-14 18:12:04 +0200 | [diff] [blame] | 1013 | #endif /* CONFIG_PM_SLEEP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 1015 | static void snd_intel8x0m_proc_read(struct snd_info_entry * entry, |
| 1016 | struct snd_info_buffer *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 1018 | struct intel8x0m *chip = entry->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1019 | unsigned int tmp; |
| 1020 | |
| 1021 | snd_iprintf(buffer, "Intel8x0m\n\n"); |
| 1022 | if (chip->device_type == DEVICE_ALI) |
| 1023 | return; |
| 1024 | tmp = igetdword(chip, ICHREG(GLOB_STA)); |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 1025 | snd_iprintf(buffer, "Global control : 0x%08x\n", |
| 1026 | igetdword(chip, ICHREG(GLOB_CNT))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | snd_iprintf(buffer, "Global status : 0x%08x\n", tmp); |
| 1028 | snd_iprintf(buffer, "AC'97 codecs ready :%s%s%s%s\n", |
| 1029 | tmp & ICH_PCR ? " primary" : "", |
| 1030 | tmp & ICH_SCR ? " secondary" : "", |
| 1031 | tmp & ICH_TCR ? " tertiary" : "", |
| 1032 | (tmp & (ICH_PCR | ICH_SCR | ICH_TCR)) == 0 ? " none" : ""); |
| 1033 | } |
| 1034 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1035 | static void snd_intel8x0m_proc_init(struct intel8x0m *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | { |
Takashi Iwai | 47f2769 | 2019-02-04 16:01:39 +0100 | [diff] [blame] | 1037 | snd_card_ro_proc_new(chip->card, "intel8x0m", chip, |
| 1038 | snd_intel8x0m_proc_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | } |
| 1040 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | struct ich_reg_info { |
| 1042 | unsigned int int_sta_mask; |
| 1043 | unsigned int offset; |
| 1044 | }; |
| 1045 | |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1046 | static int snd_intel8x0m_init(struct snd_card *card, |
| 1047 | struct pci_dev *pci, |
| 1048 | unsigned long device_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | { |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1050 | struct intel8x0m *chip = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | int err; |
| 1052 | unsigned int i; |
| 1053 | unsigned int int_sta_masks; |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 1054 | struct ichdev *ichdev; |
Takashi Iwai | f729f88 | 2020-01-05 15:47:23 +0100 | [diff] [blame] | 1055 | static const struct ich_reg_info intel_regs[2] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1056 | { ICH_MIINT, 0 }, |
| 1057 | { ICH_MOINT, 0x10 }, |
| 1058 | }; |
Takashi Iwai | f729f88 | 2020-01-05 15:47:23 +0100 | [diff] [blame] | 1059 | const struct ich_reg_info *tbl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1061 | err = pcim_enable_device(pci); |
Takashi Iwai | 3a5f3dd | 2021-06-08 16:05:02 +0200 | [diff] [blame] | 1062 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | return err; |
| 1064 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | spin_lock_init(&chip->reg_lock); |
| 1066 | chip->device_type = device_type; |
| 1067 | chip->card = card; |
| 1068 | chip->pci = pci; |
| 1069 | chip->irq = -1; |
| 1070 | |
Takashi Iwai | 3a5f3dd | 2021-06-08 16:05:02 +0200 | [diff] [blame] | 1071 | err = pci_request_regions(pci, card->shortname); |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1072 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | |
| 1075 | if (device_type == DEVICE_ALI) { |
| 1076 | /* ALI5455 has no ac97 region */ |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1077 | chip->bmaddr = pcim_iomap(pci, 0, 0); |
| 1078 | } else { |
| 1079 | if (pci_resource_flags(pci, 2) & IORESOURCE_MEM) /* ICH4 and Nforce */ |
| 1080 | chip->addr = pcim_iomap(pci, 2, 0); |
| 1081 | else |
| 1082 | chip->addr = pcim_iomap(pci, 0, 0); |
| 1083 | if (pci_resource_flags(pci, 3) & IORESOURCE_MEM) /* ICH4 */ |
| 1084 | chip->bmaddr = pcim_iomap(pci, 3, 0); |
| 1085 | else |
| 1086 | chip->bmaddr = pcim_iomap(pci, 1, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | } |
| 1088 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | /* initialize offsets */ |
| 1090 | chip->bdbars_count = 2; |
| 1091 | tbl = intel_regs; |
| 1092 | |
| 1093 | for (i = 0; i < chip->bdbars_count; i++) { |
| 1094 | ichdev = &chip->ichd[i]; |
| 1095 | ichdev->ichd = i; |
| 1096 | ichdev->reg_offset = tbl[i].offset; |
| 1097 | ichdev->int_sta_mask = tbl[i].int_sta_mask; |
| 1098 | if (device_type == DEVICE_SIS) { |
| 1099 | /* SiS 7013 swaps the registers */ |
| 1100 | ichdev->roff_sr = ICH_REG_OFF_PICB; |
| 1101 | ichdev->roff_picb = ICH_REG_OFF_SR; |
| 1102 | } else { |
| 1103 | ichdev->roff_sr = ICH_REG_OFF_SR; |
| 1104 | ichdev->roff_picb = ICH_REG_OFF_PICB; |
| 1105 | } |
| 1106 | if (device_type == DEVICE_ALI) |
| 1107 | ichdev->ali_slot = (ichdev->reg_offset - 0x40) / 0x10; |
| 1108 | } |
| 1109 | /* SIS7013 handles the pcm data in bytes, others are in words */ |
| 1110 | chip->pcm_pos_shift = (device_type == DEVICE_SIS) ? 0 : 1; |
| 1111 | |
| 1112 | /* allocate buffer descriptor lists */ |
| 1113 | /* the start of each lists must be aligned to 8 bytes */ |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1114 | chip->bdbars = snd_devm_alloc_pages(&pci->dev, SNDRV_DMA_TYPE_DEV, |
| 1115 | chip->bdbars_count * sizeof(u32) * |
| 1116 | ICH_MAX_FRAGS * 2); |
| 1117 | if (!chip->bdbars) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | return -ENOMEM; |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1120 | /* tables must be aligned to 8 bytes here, but the kernel pages |
| 1121 | are much bigger, so we don't care (on i386) */ |
| 1122 | int_sta_masks = 0; |
| 1123 | for (i = 0; i < chip->bdbars_count; i++) { |
| 1124 | ichdev = &chip->ichd[i]; |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1125 | ichdev->bdbar = ((__le32 *)chip->bdbars->area) + (i * ICH_MAX_FRAGS * 2); |
| 1126 | ichdev->bdbar_addr = chip->bdbars->addr + (i * sizeof(u32) * ICH_MAX_FRAGS * 2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1127 | int_sta_masks |= ichdev->int_sta_mask; |
| 1128 | } |
| 1129 | chip->int_sta_reg = ICH_REG_GLOB_STA; |
| 1130 | chip->int_sta_mask = int_sta_masks; |
| 1131 | |
Takashi Iwai | 7064f37 | 2018-08-28 16:39:10 +0200 | [diff] [blame] | 1132 | pci_set_master(pci); |
| 1133 | |
Takashi Iwai | 3a5f3dd | 2021-06-08 16:05:02 +0200 | [diff] [blame] | 1134 | err = snd_intel8x0m_chip_init(chip, 1); |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1135 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1136 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1138 | /* NOTE: we don't use devm version here since it's released / |
| 1139 | * re-acquired in PM callbacks. |
| 1140 | * It's released explicitly in snd_intel8x0m_free(), too. |
| 1141 | */ |
Takashi Iwai | 7064f37 | 2018-08-28 16:39:10 +0200 | [diff] [blame] | 1142 | if (request_irq(pci->irq, snd_intel8x0m_interrupt, IRQF_SHARED, |
| 1143 | KBUILD_MODNAME, chip)) { |
| 1144 | dev_err(card->dev, "unable to grab IRQ %d\n", pci->irq); |
Takashi Iwai | 7064f37 | 2018-08-28 16:39:10 +0200 | [diff] [blame] | 1145 | return -EBUSY; |
| 1146 | } |
| 1147 | chip->irq = pci->irq; |
Takashi Iwai | be1391c | 2019-12-10 07:34:23 +0100 | [diff] [blame] | 1148 | card->sync_irq = chip->irq; |
Takashi Iwai | 7064f37 | 2018-08-28 16:39:10 +0200 | [diff] [blame] | 1149 | |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1150 | card->private_free = snd_intel8x0m_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | return 0; |
| 1153 | } |
| 1154 | |
| 1155 | static struct shortname_table { |
| 1156 | unsigned int id; |
| 1157 | const char *s; |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1158 | } shortnames[] = { |
Takashi Iwai | 8cdfd25 | 2005-09-07 14:08:11 +0200 | [diff] [blame] | 1159 | { PCI_DEVICE_ID_INTEL_82801AA_6, "Intel 82801AA-ICH" }, |
| 1160 | { PCI_DEVICE_ID_INTEL_82801AB_6, "Intel 82901AB-ICH0" }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | { PCI_DEVICE_ID_INTEL_82801BA_6, "Intel 82801BA-ICH2" }, |
| 1162 | { PCI_DEVICE_ID_INTEL_440MX_6, "Intel 440MX" }, |
Takashi Iwai | 8cdfd25 | 2005-09-07 14:08:11 +0200 | [diff] [blame] | 1163 | { PCI_DEVICE_ID_INTEL_82801CA_6, "Intel 82801CA-ICH3" }, |
| 1164 | { PCI_DEVICE_ID_INTEL_82801DB_6, "Intel 82801DB-ICH4" }, |
| 1165 | { PCI_DEVICE_ID_INTEL_82801EB_6, "Intel ICH5" }, |
| 1166 | { PCI_DEVICE_ID_INTEL_ICH6_17, "Intel ICH6" }, |
| 1167 | { PCI_DEVICE_ID_INTEL_ICH7_19, "Intel ICH7" }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | { 0x7446, "AMD AMD768" }, |
| 1169 | { PCI_DEVICE_ID_SI_7013, "SiS SI7013" }, |
Takashi Iwai | 8cdfd25 | 2005-09-07 14:08:11 +0200 | [diff] [blame] | 1170 | { PCI_DEVICE_ID_NVIDIA_MCP1_MODEM, "NVidia nForce" }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1171 | { PCI_DEVICE_ID_NVIDIA_MCP2_MODEM, "NVidia nForce2" }, |
| 1172 | { PCI_DEVICE_ID_NVIDIA_MCP2S_MODEM, "NVidia nForce2s" }, |
| 1173 | { PCI_DEVICE_ID_NVIDIA_MCP3_MODEM, "NVidia nForce3" }, |
Dmitry Eremin-Solenikov | df1fe13 | 2011-05-19 18:48:27 +0400 | [diff] [blame] | 1174 | { 0x746e, "AMD AMD8111" }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | #if 0 |
| 1176 | { 0x5455, "ALi M5455" }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | #endif |
| 1178 | { 0 }, |
| 1179 | }; |
| 1180 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 1181 | static int snd_intel8x0m_probe(struct pci_dev *pci, |
| 1182 | const struct pci_device_id *pci_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1183 | { |
Takashi Iwai | 6b75a9d | 2005-11-17 15:04:53 +0100 | [diff] [blame] | 1184 | struct snd_card *card; |
| 1185 | struct intel8x0m *chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | int err; |
| 1187 | struct shortname_table *name; |
| 1188 | |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1189 | err = snd_devm_card_new(&pci->dev, index, id, THIS_MODULE, |
| 1190 | sizeof(*chip), &card); |
Takashi Iwai | e58de7b | 2008-12-28 16:44:30 +0100 | [diff] [blame] | 1191 | if (err < 0) |
| 1192 | return err; |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1193 | chip = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | |
| 1195 | strcpy(card->driver, "ICH-MODEM"); |
| 1196 | strcpy(card->shortname, "Intel ICH"); |
| 1197 | for (name = shortnames; name->id; name++) { |
| 1198 | if (pci->device == name->id) { |
| 1199 | strcpy(card->shortname, name->s); |
| 1200 | break; |
| 1201 | } |
| 1202 | } |
| 1203 | strcat(card->shortname," Modem"); |
| 1204 | |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1205 | err = snd_intel8x0m_init(card, pci, pci_id->driver_data); |
| 1206 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | |
Takashi Iwai | 3a5f3dd | 2021-06-08 16:05:02 +0200 | [diff] [blame] | 1209 | err = snd_intel8x0m_mixer(chip, ac97_clock); |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1210 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | return err; |
Takashi Iwai | 3a5f3dd | 2021-06-08 16:05:02 +0200 | [diff] [blame] | 1212 | err = snd_intel8x0m_pcm(chip); |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1213 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | |
| 1216 | snd_intel8x0m_proc_init(chip); |
| 1217 | |
Takashi Iwai | 3388c37 | 2006-10-06 17:06:39 +0200 | [diff] [blame] | 1218 | sprintf(card->longname, "%s at irq %i", |
| 1219 | card->shortname, chip->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | |
Takashi Iwai | 3a5f3dd | 2021-06-08 16:05:02 +0200 | [diff] [blame] | 1221 | err = snd_card_register(card); |
Takashi Iwai | 7835e09 | 2021-07-15 09:58:27 +0200 | [diff] [blame] | 1222 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | pci_set_drvdata(pci, card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1225 | return 0; |
| 1226 | } |
| 1227 | |
Takashi Iwai | e9f66d9 | 2012-04-24 12:25:00 +0200 | [diff] [blame] | 1228 | static struct pci_driver intel8x0m_driver = { |
Takashi Iwai | 3733e42 | 2011-06-10 16:20:20 +0200 | [diff] [blame] | 1229 | .name = KBUILD_MODNAME, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | .id_table = snd_intel8x0m_ids, |
| 1231 | .probe = snd_intel8x0m_probe, |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 1232 | .driver = { |
| 1233 | .pm = INTEL8X0M_PM_OPS, |
| 1234 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | }; |
| 1236 | |
Takashi Iwai | e9f66d9 | 2012-04-24 12:25:00 +0200 | [diff] [blame] | 1237 | module_pci_driver(intel8x0m_driver); |