1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Driver for ESS Maestro3/Allegro (ES1988) soundcards. 4 * Copyright (c) 2000 by Zach Brown <zab@zabbo.net> 5 * Takashi Iwai <tiwai@suse.de> 6 * 7 * Most of the hardware init stuffs are based on maestro3 driver for 8 * OSS/Free by Zach Brown. Many thanks to Zach! 9 * 10 * ChangeLog: 11 * Aug. 27, 2001 12 * - Fixed deadlock on capture 13 * - Added Canyon3D-2 support by Rob Riggs <rob@pangalactic.org> 14 */ 15 16 #define CARD_NAME "ESS Maestro3/Allegro/Canyon3D-2" 17 #define DRIVER_NAME "Maestro3" 18 19 #include <linux/io.h> 20 #include <linux/delay.h> 21 #include <linux/interrupt.h> 22 #include <linux/init.h> 23 #include <linux/pci.h> 24 #include <linux/dma-mapping.h> 25 #include <linux/slab.h> 26 #include <linux/vmalloc.h> 27 #include <linux/module.h> 28 #include <linux/firmware.h> 29 #include <linux/input.h> 30 #include <sound/core.h> 31 #include <sound/info.h> 32 #include <sound/control.h> 33 #include <sound/pcm.h> 34 #include <sound/mpu401.h> 35 #include <sound/ac97_codec.h> 36 #include <sound/initval.h> 37 #include <asm/byteorder.h> 38 39 MODULE_AUTHOR("Zach Brown <zab@zabbo.net>, Takashi Iwai <tiwai@suse.de>"); 40 MODULE_DESCRIPTION("ESS Maestro3 PCI"); 41 MODULE_LICENSE("GPL"); 42 MODULE_SUPPORTED_DEVICE("{{ESS,Maestro3 PCI}," 43 "{ESS,ES1988}," 44 "{ESS,Allegro PCI}," 45 "{ESS,Allegro-1 PCI}," 46 "{ESS,Canyon3D-2/LE PCI}}"); 47 MODULE_FIRMWARE("ess/maestro3_assp_kernel.fw"); 48 MODULE_FIRMWARE("ess/maestro3_assp_minisrc.fw"); 49 50 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ 51 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ 52 static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* all enabled */ 53 static bool external_amp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1}; 54 static int amp_gpio[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = -1}; 55 56 module_param_array(index, int, NULL, 0444); 57 MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard."); 58 module_param_array(id, charp, NULL, 0444); 59 MODULE_PARM_DESC(id, "ID string for " CARD_NAME " soundcard."); 60 module_param_array(enable, bool, NULL, 0444); 61 MODULE_PARM_DESC(enable, "Enable this soundcard."); 62 module_param_array(external_amp, bool, NULL, 0444); 63 MODULE_PARM_DESC(external_amp, "Enable external amp for " CARD_NAME " soundcard."); 64 module_param_array(amp_gpio, int, NULL, 0444); 65 MODULE_PARM_DESC(amp_gpio, "GPIO pin number for external amp. (default = -1)"); 66 67 #define MAX_PLAYBACKS 2 68 #define MAX_CAPTURES 1 69 #define NR_DSPS (MAX_PLAYBACKS + MAX_CAPTURES) 70 71 72 /* 73 * maestro3 registers 74 */ 75 76 /* Allegro PCI configuration registers */ 77 #define PCI_LEGACY_AUDIO_CTRL 0x40 78 #define SOUND_BLASTER_ENABLE 0x00000001 79 #define FM_SYNTHESIS_ENABLE 0x00000002 80 #define GAME_PORT_ENABLE 0x00000004 81 #define MPU401_IO_ENABLE 0x00000008 82 #define MPU401_IRQ_ENABLE 0x00000010 83 #define ALIAS_10BIT_IO 0x00000020 84 #define SB_DMA_MASK 0x000000C0 85 #define SB_DMA_0 0x00000040 86 #define SB_DMA_1 0x00000040 87 #define SB_DMA_R 0x00000080 88 #define SB_DMA_3 0x000000C0 89 #define SB_IRQ_MASK 0x00000700 90 #define SB_IRQ_5 0x00000000 91 #define SB_IRQ_7 0x00000100 92 #define SB_IRQ_9 0x00000200 93 #define SB_IRQ_10 0x00000300 94 #define MIDI_IRQ_MASK 0x00003800 95 #define SERIAL_IRQ_ENABLE 0x00004000 96 #define DISABLE_LEGACY 0x00008000 97 98 #define PCI_ALLEGRO_CONFIG 0x50 99 #define SB_ADDR_240 0x00000004 100 #define MPU_ADDR_MASK 0x00000018 101 #define MPU_ADDR_330 0x00000000 102 #define MPU_ADDR_300 0x00000008 103 #define MPU_ADDR_320 0x00000010 104 #define MPU_ADDR_340 0x00000018 105 #define USE_PCI_TIMING 0x00000040 106 #define POSTED_WRITE_ENABLE 0x00000080 107 #define DMA_POLICY_MASK 0x00000700 108 #define DMA_DDMA 0x00000000 109 #define DMA_TDMA 0x00000100 110 #define DMA_PCPCI 0x00000200 111 #define DMA_WBDMA16 0x00000400 112 #define DMA_WBDMA4 0x00000500 113 #define DMA_WBDMA2 0x00000600 114 #define DMA_WBDMA1 0x00000700 115 #define DMA_SAFE_GUARD 0x00000800 116 #define HI_PERF_GP_ENABLE 0x00001000 117 #define PIC_SNOOP_MODE_0 0x00002000 118 #define PIC_SNOOP_MODE_1 0x00004000 119 #define SOUNDBLASTER_IRQ_MASK 0x00008000 120 #define RING_IN_ENABLE 0x00010000 121 #define SPDIF_TEST_MODE 0x00020000 122 #define CLK_MULT_MODE_SELECT_2 0x00040000 123 #define EEPROM_WRITE_ENABLE 0x00080000 124 #define CODEC_DIR_IN 0x00100000 125 #define HV_BUTTON_FROM_GD 0x00200000 126 #define REDUCED_DEBOUNCE 0x00400000 127 #define HV_CTRL_ENABLE 0x00800000 128 #define SPDIF_ENABLE 0x01000000 129 #define CLK_DIV_SELECT 0x06000000 130 #define CLK_DIV_BY_48 0x00000000 131 #define CLK_DIV_BY_49 0x02000000 132 #define CLK_DIV_BY_50 0x04000000 133 #define CLK_DIV_RESERVED 0x06000000 134 #define PM_CTRL_ENABLE 0x08000000 135 #define CLK_MULT_MODE_SELECT 0x30000000 136 #define CLK_MULT_MODE_SHIFT 28 137 #define CLK_MULT_MODE_0 0x00000000 138 #define CLK_MULT_MODE_1 0x10000000 139 #define CLK_MULT_MODE_2 0x20000000 140 #define CLK_MULT_MODE_3 0x30000000 141 #define INT_CLK_SELECT 0x40000000 142 #define INT_CLK_MULT_RESET 0x80000000 143 144 /* M3 */ 145 #define INT_CLK_SRC_NOT_PCI 0x00100000 146 #define INT_CLK_MULT_ENABLE 0x80000000 147 148 #define PCI_ACPI_CONTROL 0x54 149 #define PCI_ACPI_D0 0x00000000 150 #define PCI_ACPI_D1 0xB4F70000 151 #define PCI_ACPI_D2 0xB4F7B4F7 152 153 #define PCI_USER_CONFIG 0x58 154 #define EXT_PCI_MASTER_ENABLE 0x00000001 155 #define SPDIF_OUT_SELECT 0x00000002 156 #define TEST_PIN_DIR_CTRL 0x00000004 157 #define AC97_CODEC_TEST 0x00000020 158 #define TRI_STATE_BUFFER 0x00000080 159 #define IN_CLK_12MHZ_SELECT 0x00000100 160 #define MULTI_FUNC_DISABLE 0x00000200 161 #define EXT_MASTER_PAIR_SEL 0x00000400 162 #define PCI_MASTER_SUPPORT 0x00000800 163 #define STOP_CLOCK_ENABLE 0x00001000 164 #define EAPD_DRIVE_ENABLE 0x00002000 165 #define REQ_TRI_STATE_ENABLE 0x00004000 166 #define REQ_LOW_ENABLE 0x00008000 167 #define MIDI_1_ENABLE 0x00010000 168 #define MIDI_2_ENABLE 0x00020000 169 #define SB_AUDIO_SYNC 0x00040000 170 #define HV_CTRL_TEST 0x00100000 171 #define SOUNDBLASTER_TEST 0x00400000 172 173 #define PCI_USER_CONFIG_C 0x5C 174 175 #define PCI_DDMA_CTRL 0x60 176 #define DDMA_ENABLE 0x00000001 177 178 179 /* Allegro registers */ 180 #define HOST_INT_CTRL 0x18 181 #define SB_INT_ENABLE 0x0001 182 #define MPU401_INT_ENABLE 0x0002 183 #define ASSP_INT_ENABLE 0x0010 184 #define RING_INT_ENABLE 0x0020 185 #define HV_INT_ENABLE 0x0040 186 #define CLKRUN_GEN_ENABLE 0x0100 187 #define HV_CTRL_TO_PME 0x0400 188 #define SOFTWARE_RESET_ENABLE 0x8000 189 190 /* 191 * should be using the above defines, probably. 192 */ 193 #define REGB_ENABLE_RESET 0x01 194 #define REGB_STOP_CLOCK 0x10 195 196 #define HOST_INT_STATUS 0x1A 197 #define SB_INT_PENDING 0x01 198 #define MPU401_INT_PENDING 0x02 199 #define ASSP_INT_PENDING 0x10 200 #define RING_INT_PENDING 0x20 201 #define HV_INT_PENDING 0x40 202 203 #define HARDWARE_VOL_CTRL 0x1B 204 #define SHADOW_MIX_REG_VOICE 0x1C 205 #define HW_VOL_COUNTER_VOICE 0x1D 206 #define SHADOW_MIX_REG_MASTER 0x1E 207 #define HW_VOL_COUNTER_MASTER 0x1F 208 209 #define CODEC_COMMAND 0x30 210 #define CODEC_READ_B 0x80 211 212 #define CODEC_STATUS 0x30 213 #define CODEC_BUSY_B 0x01 214 215 #define CODEC_DATA 0x32 216 217 #define RING_BUS_CTRL_A 0x36 218 #define RAC_PME_ENABLE 0x0100 219 #define RAC_SDFS_ENABLE 0x0200 220 #define LAC_PME_ENABLE 0x0400 221 #define LAC_SDFS_ENABLE 0x0800 222 #define SERIAL_AC_LINK_ENABLE 0x1000 223 #define IO_SRAM_ENABLE 0x2000 224 #define IIS_INPUT_ENABLE 0x8000 225 226 #define RING_BUS_CTRL_B 0x38 227 #define SECOND_CODEC_ID_MASK 0x0003 228 #define SPDIF_FUNC_ENABLE 0x0010 229 #define SECOND_AC_ENABLE 0x0020 230 #define SB_MODULE_INTF_ENABLE 0x0040 231 #define SSPE_ENABLE 0x0040 232 #define M3I_DOCK_ENABLE 0x0080 233 234 #define SDO_OUT_DEST_CTRL 0x3A 235 #define COMMAND_ADDR_OUT 0x0003 236 #define PCM_LR_OUT_LOCAL 0x0000 237 #define PCM_LR_OUT_REMOTE 0x0004 238 #define PCM_LR_OUT_MUTE 0x0008 239 #define PCM_LR_OUT_BOTH 0x000C 240 #define LINE1_DAC_OUT_LOCAL 0x0000 241 #define LINE1_DAC_OUT_REMOTE 0x0010 242 #define LINE1_DAC_OUT_MUTE 0x0020 243 #define LINE1_DAC_OUT_BOTH 0x0030 244 #define PCM_CLS_OUT_LOCAL 0x0000 245 #define PCM_CLS_OUT_REMOTE 0x0040 246 #define PCM_CLS_OUT_MUTE 0x0080 247 #define PCM_CLS_OUT_BOTH 0x00C0 248 #define PCM_RLF_OUT_LOCAL 0x0000 249 #define PCM_RLF_OUT_REMOTE 0x0100 250 #define PCM_RLF_OUT_MUTE 0x0200 251 #define PCM_RLF_OUT_BOTH 0x0300 252 #define LINE2_DAC_OUT_LOCAL 0x0000 253 #define LINE2_DAC_OUT_REMOTE 0x0400 254 #define LINE2_DAC_OUT_MUTE 0x0800 255 #define LINE2_DAC_OUT_BOTH 0x0C00 256 #define HANDSET_OUT_LOCAL 0x0000 257 #define HANDSET_OUT_REMOTE 0x1000 258 #define HANDSET_OUT_MUTE 0x2000 259 #define HANDSET_OUT_BOTH 0x3000 260 #define IO_CTRL_OUT_LOCAL 0x0000 261 #define IO_CTRL_OUT_REMOTE 0x4000 262 #define IO_CTRL_OUT_MUTE 0x8000 263 #define IO_CTRL_OUT_BOTH 0xC000 264 265 #define SDO_IN_DEST_CTRL 0x3C 266 #define STATUS_ADDR_IN 0x0003 267 #define PCM_LR_IN_LOCAL 0x0000 268 #define PCM_LR_IN_REMOTE 0x0004 269 #define PCM_LR_RESERVED 0x0008 270 #define PCM_LR_IN_BOTH 0x000C 271 #define LINE1_ADC_IN_LOCAL 0x0000 272 #define LINE1_ADC_IN_REMOTE 0x0010 273 #define LINE1_ADC_IN_MUTE 0x0020 274 #define MIC_ADC_IN_LOCAL 0x0000 275 #define MIC_ADC_IN_REMOTE 0x0040 276 #define MIC_ADC_IN_MUTE 0x0080 277 #define LINE2_DAC_IN_LOCAL 0x0000 278 #define LINE2_DAC_IN_REMOTE 0x0400 279 #define LINE2_DAC_IN_MUTE 0x0800 280 #define HANDSET_IN_LOCAL 0x0000 281 #define HANDSET_IN_REMOTE 0x1000 282 #define HANDSET_IN_MUTE 0x2000 283 #define IO_STATUS_IN_LOCAL 0x0000 284 #define IO_STATUS_IN_REMOTE 0x4000 285 286 #define SPDIF_IN_CTRL 0x3E 287 #define SPDIF_IN_ENABLE 0x0001 288 289 #define GPIO_DATA 0x60 290 #define GPIO_DATA_MASK 0x0FFF 291 #define GPIO_HV_STATUS 0x3000 292 #define GPIO_PME_STATUS 0x4000 293 294 #define GPIO_MASK 0x64 295 #define GPIO_DIRECTION 0x68 296 #define GPO_PRIMARY_AC97 0x0001 297 #define GPI_LINEOUT_SENSE 0x0004 298 #define GPO_SECONDARY_AC97 0x0008 299 #define GPI_VOL_DOWN 0x0010 300 #define GPI_VOL_UP 0x0020 301 #define GPI_IIS_CLK 0x0040 302 #define GPI_IIS_LRCLK 0x0080 303 #define GPI_IIS_DATA 0x0100 304 #define GPI_DOCKING_STATUS 0x0100 305 #define GPI_HEADPHONE_SENSE 0x0200 306 #define GPO_EXT_AMP_SHUTDOWN 0x1000 307 308 #define GPO_EXT_AMP_M3 1 /* default m3 amp */ 309 #define GPO_EXT_AMP_ALLEGRO 8 /* default allegro amp */ 310 311 /* M3 */ 312 #define GPO_M3_EXT_AMP_SHUTDN 0x0002 313 314 #define ASSP_INDEX_PORT 0x80 315 #define ASSP_MEMORY_PORT 0x82 316 #define ASSP_DATA_PORT 0x84 317 318 #define MPU401_DATA_PORT 0x98 319 #define MPU401_STATUS_PORT 0x99 320 321 #define CLK_MULT_DATA_PORT 0x9C 322 323 #define ASSP_CONTROL_A 0xA2 324 #define ASSP_0_WS_ENABLE 0x01 325 #define ASSP_CTRL_A_RESERVED1 0x02 326 #define ASSP_CTRL_A_RESERVED2 0x04 327 #define ASSP_CLK_49MHZ_SELECT 0x08 328 #define FAST_PLU_ENABLE 0x10 329 #define ASSP_CTRL_A_RESERVED3 0x20 330 #define DSP_CLK_36MHZ_SELECT 0x40 331 332 #define ASSP_CONTROL_B 0xA4 333 #define RESET_ASSP 0x00 334 #define RUN_ASSP 0x01 335 #define ENABLE_ASSP_CLOCK 0x00 336 #define STOP_ASSP_CLOCK 0x10 337 #define RESET_TOGGLE 0x40 338 339 #define ASSP_CONTROL_C 0xA6 340 #define ASSP_HOST_INT_ENABLE 0x01 341 #define FM_ADDR_REMAP_DISABLE 0x02 342 #define HOST_WRITE_PORT_ENABLE 0x08 343 344 #define ASSP_HOST_INT_STATUS 0xAC 345 #define DSP2HOST_REQ_PIORECORD 0x01 346 #define DSP2HOST_REQ_I2SRATE 0x02 347 #define DSP2HOST_REQ_TIMER 0x04 348 349 /* 350 * ASSP control regs 351 */ 352 #define DSP_PORT_TIMER_COUNT 0x06 353 354 #define DSP_PORT_MEMORY_INDEX 0x80 355 356 #define DSP_PORT_MEMORY_TYPE 0x82 357 #define MEMTYPE_INTERNAL_CODE 0x0002 358 #define MEMTYPE_INTERNAL_DATA 0x0003 359 #define MEMTYPE_MASK 0x0003 360 361 #define DSP_PORT_MEMORY_DATA 0x84 362 363 #define DSP_PORT_CONTROL_REG_A 0xA2 364 #define DSP_PORT_CONTROL_REG_B 0xA4 365 #define DSP_PORT_CONTROL_REG_C 0xA6 366 367 #define REV_A_CODE_MEMORY_BEGIN 0x0000 368 #define REV_A_CODE_MEMORY_END 0x0FFF 369 #define REV_A_CODE_MEMORY_UNIT_LENGTH 0x0040 370 #define REV_A_CODE_MEMORY_LENGTH (REV_A_CODE_MEMORY_END - REV_A_CODE_MEMORY_BEGIN + 1) 371 372 #define REV_B_CODE_MEMORY_BEGIN 0x0000 373 #define REV_B_CODE_MEMORY_END 0x0BFF 374 #define REV_B_CODE_MEMORY_UNIT_LENGTH 0x0040 375 #define REV_B_CODE_MEMORY_LENGTH (REV_B_CODE_MEMORY_END - REV_B_CODE_MEMORY_BEGIN + 1) 376 377 #define REV_A_DATA_MEMORY_BEGIN 0x1000 378 #define REV_A_DATA_MEMORY_END 0x2FFF 379 #define REV_A_DATA_MEMORY_UNIT_LENGTH 0x0080 380 #define REV_A_DATA_MEMORY_LENGTH (REV_A_DATA_MEMORY_END - REV_A_DATA_MEMORY_BEGIN + 1) 381 382 #define REV_B_DATA_MEMORY_BEGIN 0x1000 383 #define REV_B_DATA_MEMORY_END 0x2BFF 384 #define REV_B_DATA_MEMORY_UNIT_LENGTH 0x0080 385 #define REV_B_DATA_MEMORY_LENGTH (REV_B_DATA_MEMORY_END - REV_B_DATA_MEMORY_BEGIN + 1) 386 387 388 #define NUM_UNITS_KERNEL_CODE 16 389 #define NUM_UNITS_KERNEL_DATA 2 390 391 #define NUM_UNITS_KERNEL_CODE_WITH_HSP 16 392 #define NUM_UNITS_KERNEL_DATA_WITH_HSP 5 393 394 /* 395 * Kernel data layout 396 */ 397 398 #define DP_SHIFT_COUNT 7 399 400 #define KDATA_BASE_ADDR 0x1000 401 #define KDATA_BASE_ADDR2 0x1080 402 403 #define KDATA_TASK0 (KDATA_BASE_ADDR + 0x0000) 404 #define KDATA_TASK1 (KDATA_BASE_ADDR + 0x0001) 405 #define KDATA_TASK2 (KDATA_BASE_ADDR + 0x0002) 406 #define KDATA_TASK3 (KDATA_BASE_ADDR + 0x0003) 407 #define KDATA_TASK4 (KDATA_BASE_ADDR + 0x0004) 408 #define KDATA_TASK5 (KDATA_BASE_ADDR + 0x0005) 409 #define KDATA_TASK6 (KDATA_BASE_ADDR + 0x0006) 410 #define KDATA_TASK7 (KDATA_BASE_ADDR + 0x0007) 411 #define KDATA_TASK_ENDMARK (KDATA_BASE_ADDR + 0x0008) 412 413 #define KDATA_CURRENT_TASK (KDATA_BASE_ADDR + 0x0009) 414 #define KDATA_TASK_SWITCH (KDATA_BASE_ADDR + 0x000A) 415 416 #define KDATA_INSTANCE0_POS3D (KDATA_BASE_ADDR + 0x000B) 417 #define KDATA_INSTANCE1_POS3D (KDATA_BASE_ADDR + 0x000C) 418 #define KDATA_INSTANCE2_POS3D (KDATA_BASE_ADDR + 0x000D) 419 #define KDATA_INSTANCE3_POS3D (KDATA_BASE_ADDR + 0x000E) 420 #define KDATA_INSTANCE4_POS3D (KDATA_BASE_ADDR + 0x000F) 421 #define KDATA_INSTANCE5_POS3D (KDATA_BASE_ADDR + 0x0010) 422 #define KDATA_INSTANCE6_POS3D (KDATA_BASE_ADDR + 0x0011) 423 #define KDATA_INSTANCE7_POS3D (KDATA_BASE_ADDR + 0x0012) 424 #define KDATA_INSTANCE8_POS3D (KDATA_BASE_ADDR + 0x0013) 425 #define KDATA_INSTANCE_POS3D_ENDMARK (KDATA_BASE_ADDR + 0x0014) 426 427 #define KDATA_INSTANCE0_SPKVIRT (KDATA_BASE_ADDR + 0x0015) 428 #define KDATA_INSTANCE_SPKVIRT_ENDMARK (KDATA_BASE_ADDR + 0x0016) 429 430 #define KDATA_INSTANCE0_SPDIF (KDATA_BASE_ADDR + 0x0017) 431 #define KDATA_INSTANCE_SPDIF_ENDMARK (KDATA_BASE_ADDR + 0x0018) 432 433 #define KDATA_INSTANCE0_MODEM (KDATA_BASE_ADDR + 0x0019) 434 #define KDATA_INSTANCE_MODEM_ENDMARK (KDATA_BASE_ADDR + 0x001A) 435 436 #define KDATA_INSTANCE0_SRC (KDATA_BASE_ADDR + 0x001B) 437 #define KDATA_INSTANCE1_SRC (KDATA_BASE_ADDR + 0x001C) 438 #define KDATA_INSTANCE_SRC_ENDMARK (KDATA_BASE_ADDR + 0x001D) 439 440 #define KDATA_INSTANCE0_MINISRC (KDATA_BASE_ADDR + 0x001E) 441 #define KDATA_INSTANCE1_MINISRC (KDATA_BASE_ADDR + 0x001F) 442 #define KDATA_INSTANCE2_MINISRC (KDATA_BASE_ADDR + 0x0020) 443 #define KDATA_INSTANCE3_MINISRC (KDATA_BASE_ADDR + 0x0021) 444 #define KDATA_INSTANCE_MINISRC_ENDMARK (KDATA_BASE_ADDR + 0x0022) 445 446 #define KDATA_INSTANCE0_CPYTHRU (KDATA_BASE_ADDR + 0x0023) 447 #define KDATA_INSTANCE1_CPYTHRU (KDATA_BASE_ADDR + 0x0024) 448 #define KDATA_INSTANCE_CPYTHRU_ENDMARK (KDATA_BASE_ADDR + 0x0025) 449 450 #define KDATA_CURRENT_DMA (KDATA_BASE_ADDR + 0x0026) 451 #define KDATA_DMA_SWITCH (KDATA_BASE_ADDR + 0x0027) 452 #define KDATA_DMA_ACTIVE (KDATA_BASE_ADDR + 0x0028) 453 454 #define KDATA_DMA_XFER0 (KDATA_BASE_ADDR + 0x0029) 455 #define KDATA_DMA_XFER1 (KDATA_BASE_ADDR + 0x002A) 456 #define KDATA_DMA_XFER2 (KDATA_BASE_ADDR + 0x002B) 457 #define KDATA_DMA_XFER3 (KDATA_BASE_ADDR + 0x002C) 458 #define KDATA_DMA_XFER4 (KDATA_BASE_ADDR + 0x002D) 459 #define KDATA_DMA_XFER5 (KDATA_BASE_ADDR + 0x002E) 460 #define KDATA_DMA_XFER6 (KDATA_BASE_ADDR + 0x002F) 461 #define KDATA_DMA_XFER7 (KDATA_BASE_ADDR + 0x0030) 462 #define KDATA_DMA_XFER8 (KDATA_BASE_ADDR + 0x0031) 463 #define KDATA_DMA_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0032) 464 465 #define KDATA_I2S_SAMPLE_COUNT (KDATA_BASE_ADDR + 0x0033) 466 #define KDATA_I2S_INT_METER (KDATA_BASE_ADDR + 0x0034) 467 #define KDATA_I2S_ACTIVE (KDATA_BASE_ADDR + 0x0035) 468 469 #define KDATA_TIMER_COUNT_RELOAD (KDATA_BASE_ADDR + 0x0036) 470 #define KDATA_TIMER_COUNT_CURRENT (KDATA_BASE_ADDR + 0x0037) 471 472 #define KDATA_HALT_SYNCH_CLIENT (KDATA_BASE_ADDR + 0x0038) 473 #define KDATA_HALT_SYNCH_DMA (KDATA_BASE_ADDR + 0x0039) 474 #define KDATA_HALT_ACKNOWLEDGE (KDATA_BASE_ADDR + 0x003A) 475 476 #define KDATA_ADC1_XFER0 (KDATA_BASE_ADDR + 0x003B) 477 #define KDATA_ADC1_XFER_ENDMARK (KDATA_BASE_ADDR + 0x003C) 478 #define KDATA_ADC1_LEFT_VOLUME (KDATA_BASE_ADDR + 0x003D) 479 #define KDATA_ADC1_RIGHT_VOLUME (KDATA_BASE_ADDR + 0x003E) 480 #define KDATA_ADC1_LEFT_SUR_VOL (KDATA_BASE_ADDR + 0x003F) 481 #define KDATA_ADC1_RIGHT_SUR_VOL (KDATA_BASE_ADDR + 0x0040) 482 483 #define KDATA_ADC2_XFER0 (KDATA_BASE_ADDR + 0x0041) 484 #define KDATA_ADC2_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0042) 485 #define KDATA_ADC2_LEFT_VOLUME (KDATA_BASE_ADDR + 0x0043) 486 #define KDATA_ADC2_RIGHT_VOLUME (KDATA_BASE_ADDR + 0x0044) 487 #define KDATA_ADC2_LEFT_SUR_VOL (KDATA_BASE_ADDR + 0x0045) 488 #define KDATA_ADC2_RIGHT_SUR_VOL (KDATA_BASE_ADDR + 0x0046) 489 490 #define KDATA_CD_XFER0 (KDATA_BASE_ADDR + 0x0047) 491 #define KDATA_CD_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0048) 492 #define KDATA_CD_LEFT_VOLUME (KDATA_BASE_ADDR + 0x0049) 493 #define KDATA_CD_RIGHT_VOLUME (KDATA_BASE_ADDR + 0x004A) 494 #define KDATA_CD_LEFT_SUR_VOL (KDATA_BASE_ADDR + 0x004B) 495 #define KDATA_CD_RIGHT_SUR_VOL (KDATA_BASE_ADDR + 0x004C) 496 497 #define KDATA_MIC_XFER0 (KDATA_BASE_ADDR + 0x004D) 498 #define KDATA_MIC_XFER_ENDMARK (KDATA_BASE_ADDR + 0x004E) 499 #define KDATA_MIC_VOLUME (KDATA_BASE_ADDR + 0x004F) 500 #define KDATA_MIC_SUR_VOL (KDATA_BASE_ADDR + 0x0050) 501 502 #define KDATA_I2S_XFER0 (KDATA_BASE_ADDR + 0x0051) 503 #define KDATA_I2S_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0052) 504 505 #define KDATA_CHI_XFER0 (KDATA_BASE_ADDR + 0x0053) 506 #define KDATA_CHI_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0054) 507 508 #define KDATA_SPDIF_XFER (KDATA_BASE_ADDR + 0x0055) 509 #define KDATA_SPDIF_CURRENT_FRAME (KDATA_BASE_ADDR + 0x0056) 510 #define KDATA_SPDIF_FRAME0 (KDATA_BASE_ADDR + 0x0057) 511 #define KDATA_SPDIF_FRAME1 (KDATA_BASE_ADDR + 0x0058) 512 #define KDATA_SPDIF_FRAME2 (KDATA_BASE_ADDR + 0x0059) 513 514 #define KDATA_SPDIF_REQUEST (KDATA_BASE_ADDR + 0x005A) 515 #define KDATA_SPDIF_TEMP (KDATA_BASE_ADDR + 0x005B) 516 517 #define KDATA_SPDIFIN_XFER0 (KDATA_BASE_ADDR + 0x005C) 518 #define KDATA_SPDIFIN_XFER_ENDMARK (KDATA_BASE_ADDR + 0x005D) 519 #define KDATA_SPDIFIN_INT_METER (KDATA_BASE_ADDR + 0x005E) 520 521 #define KDATA_DSP_RESET_COUNT (KDATA_BASE_ADDR + 0x005F) 522 #define KDATA_DEBUG_OUTPUT (KDATA_BASE_ADDR + 0x0060) 523 524 #define KDATA_KERNEL_ISR_LIST (KDATA_BASE_ADDR + 0x0061) 525 526 #define KDATA_KERNEL_ISR_CBSR1 (KDATA_BASE_ADDR + 0x0062) 527 #define KDATA_KERNEL_ISR_CBER1 (KDATA_BASE_ADDR + 0x0063) 528 #define KDATA_KERNEL_ISR_CBCR (KDATA_BASE_ADDR + 0x0064) 529 #define KDATA_KERNEL_ISR_AR0 (KDATA_BASE_ADDR + 0x0065) 530 #define KDATA_KERNEL_ISR_AR1 (KDATA_BASE_ADDR + 0x0066) 531 #define KDATA_KERNEL_ISR_AR2 (KDATA_BASE_ADDR + 0x0067) 532 #define KDATA_KERNEL_ISR_AR3 (KDATA_BASE_ADDR + 0x0068) 533 #define KDATA_KERNEL_ISR_AR4 (KDATA_BASE_ADDR + 0x0069) 534 #define KDATA_KERNEL_ISR_AR5 (KDATA_BASE_ADDR + 0x006A) 535 #define KDATA_KERNEL_ISR_BRCR (KDATA_BASE_ADDR + 0x006B) 536 #define KDATA_KERNEL_ISR_PASR (KDATA_BASE_ADDR + 0x006C) 537 #define KDATA_KERNEL_ISR_PAER (KDATA_BASE_ADDR + 0x006D) 538 539 #define KDATA_CLIENT_SCRATCH0 (KDATA_BASE_ADDR + 0x006E) 540 #define KDATA_CLIENT_SCRATCH1 (KDATA_BASE_ADDR + 0x006F) 541 #define KDATA_KERNEL_SCRATCH (KDATA_BASE_ADDR + 0x0070) 542 #define KDATA_KERNEL_ISR_SCRATCH (KDATA_BASE_ADDR + 0x0071) 543 544 #define KDATA_OUEUE_LEFT (KDATA_BASE_ADDR + 0x0072) 545 #define KDATA_QUEUE_RIGHT (KDATA_BASE_ADDR + 0x0073) 546 547 #define KDATA_ADC1_REQUEST (KDATA_BASE_ADDR + 0x0074) 548 #define KDATA_ADC2_REQUEST (KDATA_BASE_ADDR + 0x0075) 549 #define KDATA_CD_REQUEST (KDATA_BASE_ADDR + 0x0076) 550 #define KDATA_MIC_REQUEST (KDATA_BASE_ADDR + 0x0077) 551 552 #define KDATA_ADC1_MIXER_REQUEST (KDATA_BASE_ADDR + 0x0078) 553 #define KDATA_ADC2_MIXER_REQUEST (KDATA_BASE_ADDR + 0x0079) 554 #define KDATA_CD_MIXER_REQUEST (KDATA_BASE_ADDR + 0x007A) 555 #define KDATA_MIC_MIXER_REQUEST (KDATA_BASE_ADDR + 0x007B) 556 #define KDATA_MIC_SYNC_COUNTER (KDATA_BASE_ADDR + 0x007C) 557 558 /* 559 * second 'segment' (?) reserved for mixer 560 * buffers.. 561 */ 562 563 #define KDATA_MIXER_WORD0 (KDATA_BASE_ADDR2 + 0x0000) 564 #define KDATA_MIXER_WORD1 (KDATA_BASE_ADDR2 + 0x0001) 565 #define KDATA_MIXER_WORD2 (KDATA_BASE_ADDR2 + 0x0002) 566 #define KDATA_MIXER_WORD3 (KDATA_BASE_ADDR2 + 0x0003) 567 #define KDATA_MIXER_WORD4 (KDATA_BASE_ADDR2 + 0x0004) 568 #define KDATA_MIXER_WORD5 (KDATA_BASE_ADDR2 + 0x0005) 569 #define KDATA_MIXER_WORD6 (KDATA_BASE_ADDR2 + 0x0006) 570 #define KDATA_MIXER_WORD7 (KDATA_BASE_ADDR2 + 0x0007) 571 #define KDATA_MIXER_WORD8 (KDATA_BASE_ADDR2 + 0x0008) 572 #define KDATA_MIXER_WORD9 (KDATA_BASE_ADDR2 + 0x0009) 573 #define KDATA_MIXER_WORDA (KDATA_BASE_ADDR2 + 0x000A) 574 #define KDATA_MIXER_WORDB (KDATA_BASE_ADDR2 + 0x000B) 575 #define KDATA_MIXER_WORDC (KDATA_BASE_ADDR2 + 0x000C) 576 #define KDATA_MIXER_WORDD (KDATA_BASE_ADDR2 + 0x000D) 577 #define KDATA_MIXER_WORDE (KDATA_BASE_ADDR2 + 0x000E) 578 #define KDATA_MIXER_WORDF (KDATA_BASE_ADDR2 + 0x000F) 579 580 #define KDATA_MIXER_XFER0 (KDATA_BASE_ADDR2 + 0x0010) 581 #define KDATA_MIXER_XFER1 (KDATA_BASE_ADDR2 + 0x0011) 582 #define KDATA_MIXER_XFER2 (KDATA_BASE_ADDR2 + 0x0012) 583 #define KDATA_MIXER_XFER3 (KDATA_BASE_ADDR2 + 0x0013) 584 #define KDATA_MIXER_XFER4 (KDATA_BASE_ADDR2 + 0x0014) 585 #define KDATA_MIXER_XFER5 (KDATA_BASE_ADDR2 + 0x0015) 586 #define KDATA_MIXER_XFER6 (KDATA_BASE_ADDR2 + 0x0016) 587 #define KDATA_MIXER_XFER7 (KDATA_BASE_ADDR2 + 0x0017) 588 #define KDATA_MIXER_XFER8 (KDATA_BASE_ADDR2 + 0x0018) 589 #define KDATA_MIXER_XFER9 (KDATA_BASE_ADDR2 + 0x0019) 590 #define KDATA_MIXER_XFER_ENDMARK (KDATA_BASE_ADDR2 + 0x001A) 591 592 #define KDATA_MIXER_TASK_NUMBER (KDATA_BASE_ADDR2 + 0x001B) 593 #define KDATA_CURRENT_MIXER (KDATA_BASE_ADDR2 + 0x001C) 594 #define KDATA_MIXER_ACTIVE (KDATA_BASE_ADDR2 + 0x001D) 595 #define KDATA_MIXER_BANK_STATUS (KDATA_BASE_ADDR2 + 0x001E) 596 #define KDATA_DAC_LEFT_VOLUME (KDATA_BASE_ADDR2 + 0x001F) 597 #define KDATA_DAC_RIGHT_VOLUME (KDATA_BASE_ADDR2 + 0x0020) 598 599 #define MAX_INSTANCE_MINISRC (KDATA_INSTANCE_MINISRC_ENDMARK - KDATA_INSTANCE0_MINISRC) 600 #define MAX_VIRTUAL_DMA_CHANNELS (KDATA_DMA_XFER_ENDMARK - KDATA_DMA_XFER0) 601 #define MAX_VIRTUAL_MIXER_CHANNELS (KDATA_MIXER_XFER_ENDMARK - KDATA_MIXER_XFER0) 602 #define MAX_VIRTUAL_ADC1_CHANNELS (KDATA_ADC1_XFER_ENDMARK - KDATA_ADC1_XFER0) 603 604 /* 605 * client data area offsets 606 */ 607 #define CDATA_INSTANCE_READY 0x00 608 609 #define CDATA_HOST_SRC_ADDRL 0x01 610 #define CDATA_HOST_SRC_ADDRH 0x02 611 #define CDATA_HOST_SRC_END_PLUS_1L 0x03 612 #define CDATA_HOST_SRC_END_PLUS_1H 0x04 613 #define CDATA_HOST_SRC_CURRENTL 0x05 614 #define CDATA_HOST_SRC_CURRENTH 0x06 615 616 #define CDATA_IN_BUF_CONNECT 0x07 617 #define CDATA_OUT_BUF_CONNECT 0x08 618 619 #define CDATA_IN_BUF_BEGIN 0x09 620 #define CDATA_IN_BUF_END_PLUS_1 0x0A 621 #define CDATA_IN_BUF_HEAD 0x0B 622 #define CDATA_IN_BUF_TAIL 0x0C 623 #define CDATA_OUT_BUF_BEGIN 0x0D 624 #define CDATA_OUT_BUF_END_PLUS_1 0x0E 625 #define CDATA_OUT_BUF_HEAD 0x0F 626 #define CDATA_OUT_BUF_TAIL 0x10 627 628 #define CDATA_DMA_CONTROL 0x11 629 #define CDATA_RESERVED 0x12 630 631 #define CDATA_FREQUENCY 0x13 632 #define CDATA_LEFT_VOLUME 0x14 633 #define CDATA_RIGHT_VOLUME 0x15 634 #define CDATA_LEFT_SUR_VOL 0x16 635 #define CDATA_RIGHT_SUR_VOL 0x17 636 637 #define CDATA_HEADER_LEN 0x18 638 639 #define SRC3_DIRECTION_OFFSET CDATA_HEADER_LEN 640 #define SRC3_MODE_OFFSET (CDATA_HEADER_LEN + 1) 641 #define SRC3_WORD_LENGTH_OFFSET (CDATA_HEADER_LEN + 2) 642 #define SRC3_PARAMETER_OFFSET (CDATA_HEADER_LEN + 3) 643 #define SRC3_COEFF_ADDR_OFFSET (CDATA_HEADER_LEN + 8) 644 #define SRC3_FILTAP_ADDR_OFFSET (CDATA_HEADER_LEN + 10) 645 #define SRC3_TEMP_INBUF_ADDR_OFFSET (CDATA_HEADER_LEN + 16) 646 #define SRC3_TEMP_OUTBUF_ADDR_OFFSET (CDATA_HEADER_LEN + 17) 647 648 #define MINISRC_IN_BUFFER_SIZE ( 0x50 * 2 ) 649 #define MINISRC_OUT_BUFFER_SIZE ( 0x50 * 2 * 2) 650 #define MINISRC_TMP_BUFFER_SIZE ( 112 + ( MINISRC_BIQUAD_STAGE * 3 + 4 ) * 2 * 2 ) 651 #define MINISRC_BIQUAD_STAGE 2 652 #define MINISRC_COEF_LOC 0x175 653 654 #define DMACONTROL_BLOCK_MASK 0x000F 655 #define DMAC_BLOCK0_SELECTOR 0x0000 656 #define DMAC_BLOCK1_SELECTOR 0x0001 657 #define DMAC_BLOCK2_SELECTOR 0x0002 658 #define DMAC_BLOCK3_SELECTOR 0x0003 659 #define DMAC_BLOCK4_SELECTOR 0x0004 660 #define DMAC_BLOCK5_SELECTOR 0x0005 661 #define DMAC_BLOCK6_SELECTOR 0x0006 662 #define DMAC_BLOCK7_SELECTOR 0x0007 663 #define DMAC_BLOCK8_SELECTOR 0x0008 664 #define DMAC_BLOCK9_SELECTOR 0x0009 665 #define DMAC_BLOCKA_SELECTOR 0x000A 666 #define DMAC_BLOCKB_SELECTOR 0x000B 667 #define DMAC_BLOCKC_SELECTOR 0x000C 668 #define DMAC_BLOCKD_SELECTOR 0x000D 669 #define DMAC_BLOCKE_SELECTOR 0x000E 670 #define DMAC_BLOCKF_SELECTOR 0x000F 671 #define DMACONTROL_PAGE_MASK 0x00F0 672 #define DMAC_PAGE0_SELECTOR 0x0030 673 #define DMAC_PAGE1_SELECTOR 0x0020 674 #define DMAC_PAGE2_SELECTOR 0x0010 675 #define DMAC_PAGE3_SELECTOR 0x0000 676 #define DMACONTROL_AUTOREPEAT 0x1000 677 #define DMACONTROL_STOPPED 0x2000 678 #define DMACONTROL_DIRECTION 0x0100 679 680 /* 681 * an arbitrary volume we set the internal 682 * volume settings to so that the ac97 volume 683 * range is a little less insane. 0x7fff is 684 * max. 685 */ 686 #define ARB_VOLUME ( 0x6800 ) 687 688 /* 689 */ 690 691 struct m3_list { 692 int curlen; 693 int mem_addr; 694 int max; 695 }; 696 697 struct m3_dma { 698 699 int number; 700 struct snd_pcm_substream *substream; 701 702 struct assp_instance { 703 unsigned short code, data; 704 } inst; 705 706 int running; 707 int opened; 708 709 unsigned long buffer_addr; 710 int dma_size; 711 int period_size; 712 unsigned int hwptr; 713 int count; 714 715 int index[3]; 716 struct m3_list *index_list[3]; 717 718 int in_lists; 719 720 struct list_head list; 721 722 }; 723 724 struct snd_m3 { 725 726 struct snd_card *card; 727 728 unsigned long iobase; 729 730 int irq; 731 unsigned int allegro_flag : 1; 732 733 struct snd_ac97 *ac97; 734 735 struct snd_pcm *pcm; 736 737 struct pci_dev *pci; 738 739 int dacs_active; 740 int timer_users; 741 742 struct m3_list msrc_list; 743 struct m3_list mixer_list; 744 struct m3_list adc1_list; 745 struct m3_list dma_list; 746 747 /* for storing reset state..*/ 748 u8 reset_state; 749 750 int external_amp; 751 int amp_gpio; /* gpio pin # for external amp, -1 = default */ 752 unsigned int hv_config; /* hardware-volume config bits */ 753 unsigned irda_workaround :1; /* avoid to touch 0x10 on GPIO_DIRECTION 754 (e.g. for IrDA on Dell Inspirons) */ 755 unsigned is_omnibook :1; /* Do HP OmniBook GPIO magic? */ 756 757 /* midi */ 758 struct snd_rawmidi *rmidi; 759 760 /* pcm streams */ 761 int num_substreams; 762 struct m3_dma *substreams; 763 764 spinlock_t reg_lock; 765 766 #ifdef CONFIG_SND_MAESTRO3_INPUT 767 struct input_dev *input_dev; 768 char phys[64]; /* physical device path */ 769 #else 770 struct snd_kcontrol *master_switch; 771 struct snd_kcontrol *master_volume; 772 #endif 773 struct work_struct hwvol_work; 774 775 unsigned int in_suspend; 776 777 #ifdef CONFIG_PM_SLEEP 778 u16 *suspend_mem; 779 #endif 780 781 const struct firmware *assp_kernel_image; 782 const struct firmware *assp_minisrc_image; 783 }; 784 785 /* 786 * pci ids 787 */ 788 static const struct pci_device_id snd_m3_ids[] = { 789 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_ALLEGRO_1, PCI_ANY_ID, PCI_ANY_ID, 790 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0}, 791 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_ALLEGRO, PCI_ANY_ID, PCI_ANY_ID, 792 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0}, 793 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_CANYON3D_2LE, PCI_ANY_ID, PCI_ANY_ID, 794 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0}, 795 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_CANYON3D_2, PCI_ANY_ID, PCI_ANY_ID, 796 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0}, 797 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_MAESTRO3, PCI_ANY_ID, PCI_ANY_ID, 798 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0}, 799 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_MAESTRO3_1, PCI_ANY_ID, PCI_ANY_ID, 800 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0}, 801 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_MAESTRO3_HW, PCI_ANY_ID, PCI_ANY_ID, 802 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0}, 803 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_MAESTRO3_2, PCI_ANY_ID, PCI_ANY_ID, 804 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0}, 805 {0,}, 806 }; 807 808 MODULE_DEVICE_TABLE(pci, snd_m3_ids); 809 810 static struct snd_pci_quirk m3_amp_quirk_list[] = { 811 SND_PCI_QUIRK(0x0E11, 0x0094, "Compaq Evo N600c", 0x0c), 812 SND_PCI_QUIRK(0x10f7, 0x833e, "Panasonic CF-28", 0x0d), 813 SND_PCI_QUIRK(0x10f7, 0x833d, "Panasonic CF-72", 0x0d), 814 SND_PCI_QUIRK(0x1033, 0x80f1, "NEC LM800J/7", 0x03), 815 SND_PCI_QUIRK(0x1509, 0x1740, "LEGEND ZhaoYang 3100CF", 0x03), 816 { } /* END */ 817 }; 818 819 static struct snd_pci_quirk m3_irda_quirk_list[] = { 820 SND_PCI_QUIRK(0x1028, 0x00b0, "Dell Inspiron 4000", 1), 821 SND_PCI_QUIRK(0x1028, 0x00a4, "Dell Inspiron 8000", 1), 822 SND_PCI_QUIRK(0x1028, 0x00e6, "Dell Inspiron 8100", 1), 823 { } /* END */ 824 }; 825 826 /* hardware volume quirks */ 827 static struct snd_pci_quirk m3_hv_quirk_list[] = { 828 /* Allegro chips */ 829 SND_PCI_QUIRK(0x0E11, 0x002E, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 830 SND_PCI_QUIRK(0x0E11, 0x0094, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 831 SND_PCI_QUIRK(0x0E11, 0xB112, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 832 SND_PCI_QUIRK(0x0E11, 0xB114, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 833 SND_PCI_QUIRK(0x103C, 0x0012, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 834 SND_PCI_QUIRK(0x103C, 0x0018, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 835 SND_PCI_QUIRK(0x103C, 0x001C, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 836 SND_PCI_QUIRK(0x103C, 0x001D, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 837 SND_PCI_QUIRK(0x103C, 0x001E, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 838 SND_PCI_QUIRK(0x107B, 0x3350, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 839 SND_PCI_QUIRK(0x10F7, 0x8338, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 840 SND_PCI_QUIRK(0x10F7, 0x833C, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 841 SND_PCI_QUIRK(0x10F7, 0x833D, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 842 SND_PCI_QUIRK(0x10F7, 0x833E, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 843 SND_PCI_QUIRK(0x10F7, 0x833F, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 844 SND_PCI_QUIRK(0x13BD, 0x1018, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 845 SND_PCI_QUIRK(0x13BD, 0x1019, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 846 SND_PCI_QUIRK(0x13BD, 0x101A, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 847 SND_PCI_QUIRK(0x14FF, 0x0F03, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 848 SND_PCI_QUIRK(0x14FF, 0x0F04, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 849 SND_PCI_QUIRK(0x14FF, 0x0F05, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 850 SND_PCI_QUIRK(0x156D, 0xB400, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 851 SND_PCI_QUIRK(0x156D, 0xB795, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 852 SND_PCI_QUIRK(0x156D, 0xB797, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 853 SND_PCI_QUIRK(0x156D, 0xC700, NULL, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD), 854 SND_PCI_QUIRK(0x1033, 0x80F1, NULL, 855 HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE), 856 SND_PCI_QUIRK(0x103C, 0x001A, NULL, /* HP OmniBook 6100 */ 857 HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE), 858 SND_PCI_QUIRK(0x107B, 0x340A, NULL, 859 HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE), 860 SND_PCI_QUIRK(0x107B, 0x3450, NULL, 861 HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE), 862 SND_PCI_QUIRK(0x109F, 0x3134, NULL, 863 HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE), 864 SND_PCI_QUIRK(0x109F, 0x3161, NULL, 865 HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE), 866 SND_PCI_QUIRK(0x144D, 0x3280, NULL, 867 HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE), 868 SND_PCI_QUIRK(0x144D, 0x3281, NULL, 869 HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE), 870 SND_PCI_QUIRK(0x144D, 0xC002, NULL, 871 HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE), 872 SND_PCI_QUIRK(0x144D, 0xC003, NULL, 873 HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE), 874 SND_PCI_QUIRK(0x1509, 0x1740, NULL, 875 HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE), 876 SND_PCI_QUIRK(0x1610, 0x0010, NULL, 877 HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE), 878 SND_PCI_QUIRK(0x1042, 0x1042, NULL, HV_CTRL_ENABLE), 879 SND_PCI_QUIRK(0x107B, 0x9500, NULL, HV_CTRL_ENABLE), 880 SND_PCI_QUIRK(0x14FF, 0x0F06, NULL, HV_CTRL_ENABLE), 881 SND_PCI_QUIRK(0x1558, 0x8586, NULL, HV_CTRL_ENABLE), 882 SND_PCI_QUIRK(0x161F, 0x2011, NULL, HV_CTRL_ENABLE), 883 /* Maestro3 chips */ 884 SND_PCI_QUIRK(0x103C, 0x000E, NULL, HV_CTRL_ENABLE), 885 SND_PCI_QUIRK(0x103C, 0x0010, NULL, HV_CTRL_ENABLE), 886 SND_PCI_QUIRK(0x103C, 0x0011, NULL, HV_CTRL_ENABLE), 887 SND_PCI_QUIRK(0x103C, 0x001B, NULL, HV_CTRL_ENABLE), 888 SND_PCI_QUIRK(0x104D, 0x80A6, NULL, HV_CTRL_ENABLE), 889 SND_PCI_QUIRK(0x104D, 0x80AA, NULL, HV_CTRL_ENABLE), 890 SND_PCI_QUIRK(0x107B, 0x5300, NULL, HV_CTRL_ENABLE), 891 SND_PCI_QUIRK(0x110A, 0x1998, NULL, HV_CTRL_ENABLE), 892 SND_PCI_QUIRK(0x13BD, 0x1015, NULL, HV_CTRL_ENABLE), 893 SND_PCI_QUIRK(0x13BD, 0x101C, NULL, HV_CTRL_ENABLE), 894 SND_PCI_QUIRK(0x13BD, 0x1802, NULL, HV_CTRL_ENABLE), 895 SND_PCI_QUIRK(0x1599, 0x0715, NULL, HV_CTRL_ENABLE), 896 SND_PCI_QUIRK(0x5643, 0x5643, NULL, HV_CTRL_ENABLE), 897 SND_PCI_QUIRK(0x144D, 0x3260, NULL, HV_CTRL_ENABLE | REDUCED_DEBOUNCE), 898 SND_PCI_QUIRK(0x144D, 0x3261, NULL, HV_CTRL_ENABLE | REDUCED_DEBOUNCE), 899 SND_PCI_QUIRK(0x144D, 0xC000, NULL, HV_CTRL_ENABLE | REDUCED_DEBOUNCE), 900 SND_PCI_QUIRK(0x144D, 0xC001, NULL, HV_CTRL_ENABLE | REDUCED_DEBOUNCE), 901 { } /* END */ 902 }; 903 904 /* HP Omnibook quirks */ 905 static struct snd_pci_quirk m3_omnibook_quirk_list[] = { 906 SND_PCI_QUIRK_ID(0x103c, 0x0010), /* HP OmniBook 6000 */ 907 SND_PCI_QUIRK_ID(0x103c, 0x0011), /* HP OmniBook 500 */ 908 { } /* END */ 909 }; 910 911 /* 912 * lowlevel functions 913 */ 914 915 static inline void snd_m3_outw(struct snd_m3 *chip, u16 value, unsigned long reg) 916 { 917 outw(value, chip->iobase + reg); 918 } 919 920 static inline u16 snd_m3_inw(struct snd_m3 *chip, unsigned long reg) 921 { 922 return inw(chip->iobase + reg); 923 } 924 925 static inline void snd_m3_outb(struct snd_m3 *chip, u8 value, unsigned long reg) 926 { 927 outb(value, chip->iobase + reg); 928 } 929 930 static inline u8 snd_m3_inb(struct snd_m3 *chip, unsigned long reg) 931 { 932 return inb(chip->iobase + reg); 933 } 934 935 /* 936 * access 16bit words to the code or data regions of the dsp's memory. 937 * index addresses 16bit words. 938 */ 939 static u16 snd_m3_assp_read(struct snd_m3 *chip, u16 region, u16 index) 940 { 941 snd_m3_outw(chip, region & MEMTYPE_MASK, DSP_PORT_MEMORY_TYPE); 942 snd_m3_outw(chip, index, DSP_PORT_MEMORY_INDEX); 943 return snd_m3_inw(chip, DSP_PORT_MEMORY_DATA); 944 } 945 946 static void snd_m3_assp_write(struct snd_m3 *chip, u16 region, u16 index, u16 data) 947 { 948 snd_m3_outw(chip, region & MEMTYPE_MASK, DSP_PORT_MEMORY_TYPE); 949 snd_m3_outw(chip, index, DSP_PORT_MEMORY_INDEX); 950 snd_m3_outw(chip, data, DSP_PORT_MEMORY_DATA); 951 } 952 953 static void snd_m3_assp_halt(struct snd_m3 *chip) 954 { 955 chip->reset_state = snd_m3_inb(chip, DSP_PORT_CONTROL_REG_B) & ~REGB_STOP_CLOCK; 956 msleep(10); 957 snd_m3_outb(chip, chip->reset_state & ~REGB_ENABLE_RESET, DSP_PORT_CONTROL_REG_B); 958 } 959 960 static void snd_m3_assp_continue(struct snd_m3 *chip) 961 { 962 snd_m3_outb(chip, chip->reset_state | REGB_ENABLE_RESET, DSP_PORT_CONTROL_REG_B); 963 } 964 965 966 /* 967 * This makes me sad. the maestro3 has lists 968 * internally that must be packed.. 0 terminates, 969 * apparently, or maybe all unused entries have 970 * to be 0, the lists have static lengths set 971 * by the binary code images. 972 */ 973 974 static int snd_m3_add_list(struct snd_m3 *chip, struct m3_list *list, u16 val) 975 { 976 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 977 list->mem_addr + list->curlen, 978 val); 979 return list->curlen++; 980 } 981 982 static void snd_m3_remove_list(struct snd_m3 *chip, struct m3_list *list, int index) 983 { 984 u16 val; 985 int lastindex = list->curlen - 1; 986 987 if (index != lastindex) { 988 val = snd_m3_assp_read(chip, MEMTYPE_INTERNAL_DATA, 989 list->mem_addr + lastindex); 990 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 991 list->mem_addr + index, 992 val); 993 } 994 995 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 996 list->mem_addr + lastindex, 997 0); 998 999 list->curlen--; 1000 } 1001 1002 static void snd_m3_inc_timer_users(struct snd_m3 *chip) 1003 { 1004 chip->timer_users++; 1005 if (chip->timer_users != 1) 1006 return; 1007 1008 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1009 KDATA_TIMER_COUNT_RELOAD, 1010 240); 1011 1012 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1013 KDATA_TIMER_COUNT_CURRENT, 1014 240); 1015 1016 snd_m3_outw(chip, 1017 snd_m3_inw(chip, HOST_INT_CTRL) | CLKRUN_GEN_ENABLE, 1018 HOST_INT_CTRL); 1019 } 1020 1021 static void snd_m3_dec_timer_users(struct snd_m3 *chip) 1022 { 1023 chip->timer_users--; 1024 if (chip->timer_users > 0) 1025 return; 1026 1027 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1028 KDATA_TIMER_COUNT_RELOAD, 1029 0); 1030 1031 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1032 KDATA_TIMER_COUNT_CURRENT, 1033 0); 1034 1035 snd_m3_outw(chip, 1036 snd_m3_inw(chip, HOST_INT_CTRL) & ~CLKRUN_GEN_ENABLE, 1037 HOST_INT_CTRL); 1038 } 1039 1040 /* 1041 * start/stop 1042 */ 1043 1044 /* spinlock held! */ 1045 static int snd_m3_pcm_start(struct snd_m3 *chip, struct m3_dma *s, 1046 struct snd_pcm_substream *subs) 1047 { 1048 if (! s || ! subs) 1049 return -EINVAL; 1050 1051 snd_m3_inc_timer_users(chip); 1052 switch (subs->stream) { 1053 case SNDRV_PCM_STREAM_PLAYBACK: 1054 chip->dacs_active++; 1055 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1056 s->inst.data + CDATA_INSTANCE_READY, 1); 1057 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1058 KDATA_MIXER_TASK_NUMBER, 1059 chip->dacs_active); 1060 break; 1061 case SNDRV_PCM_STREAM_CAPTURE: 1062 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1063 KDATA_ADC1_REQUEST, 1); 1064 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1065 s->inst.data + CDATA_INSTANCE_READY, 1); 1066 break; 1067 } 1068 return 0; 1069 } 1070 1071 /* spinlock held! */ 1072 static int snd_m3_pcm_stop(struct snd_m3 *chip, struct m3_dma *s, 1073 struct snd_pcm_substream *subs) 1074 { 1075 if (! s || ! subs) 1076 return -EINVAL; 1077 1078 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1079 s->inst.data + CDATA_INSTANCE_READY, 0); 1080 snd_m3_dec_timer_users(chip); 1081 switch (subs->stream) { 1082 case SNDRV_PCM_STREAM_PLAYBACK: 1083 chip->dacs_active--; 1084 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1085 KDATA_MIXER_TASK_NUMBER, 1086 chip->dacs_active); 1087 break; 1088 case SNDRV_PCM_STREAM_CAPTURE: 1089 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1090 KDATA_ADC1_REQUEST, 0); 1091 break; 1092 } 1093 return 0; 1094 } 1095 1096 static int 1097 snd_m3_pcm_trigger(struct snd_pcm_substream *subs, int cmd) 1098 { 1099 struct snd_m3 *chip = snd_pcm_substream_chip(subs); 1100 struct m3_dma *s = subs->runtime->private_data; 1101 int err = -EINVAL; 1102 1103 if (snd_BUG_ON(!s)) 1104 return -ENXIO; 1105 1106 spin_lock(&chip->reg_lock); 1107 switch (cmd) { 1108 case SNDRV_PCM_TRIGGER_START: 1109 case SNDRV_PCM_TRIGGER_RESUME: 1110 if (s->running) 1111 err = -EBUSY; 1112 else { 1113 s->running = 1; 1114 err = snd_m3_pcm_start(chip, s, subs); 1115 } 1116 break; 1117 case SNDRV_PCM_TRIGGER_STOP: 1118 case SNDRV_PCM_TRIGGER_SUSPEND: 1119 if (! s->running) 1120 err = 0; /* should return error? */ 1121 else { 1122 s->running = 0; 1123 err = snd_m3_pcm_stop(chip, s, subs); 1124 } 1125 break; 1126 } 1127 spin_unlock(&chip->reg_lock); 1128 return err; 1129 } 1130 1131 /* 1132 * setup 1133 */ 1134 static void 1135 snd_m3_pcm_setup1(struct snd_m3 *chip, struct m3_dma *s, struct snd_pcm_substream *subs) 1136 { 1137 int dsp_in_size, dsp_out_size, dsp_in_buffer, dsp_out_buffer; 1138 struct snd_pcm_runtime *runtime = subs->runtime; 1139 1140 if (subs->stream == SNDRV_PCM_STREAM_PLAYBACK) { 1141 dsp_in_size = MINISRC_IN_BUFFER_SIZE - (0x20 * 2); 1142 dsp_out_size = MINISRC_OUT_BUFFER_SIZE - (0x20 * 2); 1143 } else { 1144 dsp_in_size = MINISRC_IN_BUFFER_SIZE - (0x10 * 2); 1145 dsp_out_size = MINISRC_OUT_BUFFER_SIZE - (0x10 * 2); 1146 } 1147 dsp_in_buffer = s->inst.data + (MINISRC_TMP_BUFFER_SIZE / 2); 1148 dsp_out_buffer = dsp_in_buffer + (dsp_in_size / 2) + 1; 1149 1150 s->dma_size = frames_to_bytes(runtime, runtime->buffer_size); 1151 s->period_size = frames_to_bytes(runtime, runtime->period_size); 1152 s->hwptr = 0; 1153 s->count = 0; 1154 1155 #define LO(x) ((x) & 0xffff) 1156 #define HI(x) LO((x) >> 16) 1157 1158 /* host dma buffer pointers */ 1159 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1160 s->inst.data + CDATA_HOST_SRC_ADDRL, 1161 LO(s->buffer_addr)); 1162 1163 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1164 s->inst.data + CDATA_HOST_SRC_ADDRH, 1165 HI(s->buffer_addr)); 1166 1167 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1168 s->inst.data + CDATA_HOST_SRC_END_PLUS_1L, 1169 LO(s->buffer_addr + s->dma_size)); 1170 1171 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1172 s->inst.data + CDATA_HOST_SRC_END_PLUS_1H, 1173 HI(s->buffer_addr + s->dma_size)); 1174 1175 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1176 s->inst.data + CDATA_HOST_SRC_CURRENTL, 1177 LO(s->buffer_addr)); 1178 1179 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1180 s->inst.data + CDATA_HOST_SRC_CURRENTH, 1181 HI(s->buffer_addr)); 1182 #undef LO 1183 #undef HI 1184 1185 /* dsp buffers */ 1186 1187 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1188 s->inst.data + CDATA_IN_BUF_BEGIN, 1189 dsp_in_buffer); 1190 1191 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1192 s->inst.data + CDATA_IN_BUF_END_PLUS_1, 1193 dsp_in_buffer + (dsp_in_size / 2)); 1194 1195 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1196 s->inst.data + CDATA_IN_BUF_HEAD, 1197 dsp_in_buffer); 1198 1199 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1200 s->inst.data + CDATA_IN_BUF_TAIL, 1201 dsp_in_buffer); 1202 1203 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1204 s->inst.data + CDATA_OUT_BUF_BEGIN, 1205 dsp_out_buffer); 1206 1207 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1208 s->inst.data + CDATA_OUT_BUF_END_PLUS_1, 1209 dsp_out_buffer + (dsp_out_size / 2)); 1210 1211 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1212 s->inst.data + CDATA_OUT_BUF_HEAD, 1213 dsp_out_buffer); 1214 1215 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1216 s->inst.data + CDATA_OUT_BUF_TAIL, 1217 dsp_out_buffer); 1218 } 1219 1220 static void snd_m3_pcm_setup2(struct snd_m3 *chip, struct m3_dma *s, 1221 struct snd_pcm_runtime *runtime) 1222 { 1223 u32 freq; 1224 1225 /* 1226 * put us in the lists if we're not already there 1227 */ 1228 if (! s->in_lists) { 1229 s->index[0] = snd_m3_add_list(chip, s->index_list[0], 1230 s->inst.data >> DP_SHIFT_COUNT); 1231 s->index[1] = snd_m3_add_list(chip, s->index_list[1], 1232 s->inst.data >> DP_SHIFT_COUNT); 1233 s->index[2] = snd_m3_add_list(chip, s->index_list[2], 1234 s->inst.data >> DP_SHIFT_COUNT); 1235 s->in_lists = 1; 1236 } 1237 1238 /* write to 'mono' word */ 1239 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1240 s->inst.data + SRC3_DIRECTION_OFFSET + 1, 1241 runtime->channels == 2 ? 0 : 1); 1242 /* write to '8bit' word */ 1243 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1244 s->inst.data + SRC3_DIRECTION_OFFSET + 2, 1245 snd_pcm_format_width(runtime->format) == 16 ? 0 : 1); 1246 1247 /* set up dac/adc rate */ 1248 freq = ((runtime->rate << 15) + 24000 ) / 48000; 1249 if (freq) 1250 freq--; 1251 1252 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1253 s->inst.data + CDATA_FREQUENCY, 1254 freq); 1255 } 1256 1257 1258 static const struct play_vals { 1259 u16 addr, val; 1260 } pv[] = { 1261 {CDATA_LEFT_VOLUME, ARB_VOLUME}, 1262 {CDATA_RIGHT_VOLUME, ARB_VOLUME}, 1263 {SRC3_DIRECTION_OFFSET, 0} , 1264 /* +1, +2 are stereo/16 bit */ 1265 {SRC3_DIRECTION_OFFSET + 3, 0x0000}, /* fraction? */ 1266 {SRC3_DIRECTION_OFFSET + 4, 0}, /* first l */ 1267 {SRC3_DIRECTION_OFFSET + 5, 0}, /* first r */ 1268 {SRC3_DIRECTION_OFFSET + 6, 0}, /* second l */ 1269 {SRC3_DIRECTION_OFFSET + 7, 0}, /* second r */ 1270 {SRC3_DIRECTION_OFFSET + 8, 0}, /* delta l */ 1271 {SRC3_DIRECTION_OFFSET + 9, 0}, /* delta r */ 1272 {SRC3_DIRECTION_OFFSET + 10, 0x8000}, /* round */ 1273 {SRC3_DIRECTION_OFFSET + 11, 0xFF00}, /* higher bute mark */ 1274 {SRC3_DIRECTION_OFFSET + 13, 0}, /* temp0 */ 1275 {SRC3_DIRECTION_OFFSET + 14, 0}, /* c fraction */ 1276 {SRC3_DIRECTION_OFFSET + 15, 0}, /* counter */ 1277 {SRC3_DIRECTION_OFFSET + 16, 8}, /* numin */ 1278 {SRC3_DIRECTION_OFFSET + 17, 50*2}, /* numout */ 1279 {SRC3_DIRECTION_OFFSET + 18, MINISRC_BIQUAD_STAGE - 1}, /* numstage */ 1280 {SRC3_DIRECTION_OFFSET + 20, 0}, /* filtertap */ 1281 {SRC3_DIRECTION_OFFSET + 21, 0} /* booster */ 1282 }; 1283 1284 1285 /* the mode passed should be already shifted and masked */ 1286 static void 1287 snd_m3_playback_setup(struct snd_m3 *chip, struct m3_dma *s, 1288 struct snd_pcm_substream *subs) 1289 { 1290 unsigned int i; 1291 1292 /* 1293 * some per client initializers 1294 */ 1295 1296 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1297 s->inst.data + SRC3_DIRECTION_OFFSET + 12, 1298 s->inst.data + 40 + 8); 1299 1300 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1301 s->inst.data + SRC3_DIRECTION_OFFSET + 19, 1302 s->inst.code + MINISRC_COEF_LOC); 1303 1304 /* enable or disable low pass filter? */ 1305 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1306 s->inst.data + SRC3_DIRECTION_OFFSET + 22, 1307 subs->runtime->rate > 45000 ? 0xff : 0); 1308 1309 /* tell it which way dma is going? */ 1310 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1311 s->inst.data + CDATA_DMA_CONTROL, 1312 DMACONTROL_AUTOREPEAT + DMAC_PAGE3_SELECTOR + DMAC_BLOCKF_SELECTOR); 1313 1314 /* 1315 * set an armload of static initializers 1316 */ 1317 for (i = 0; i < ARRAY_SIZE(pv); i++) 1318 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1319 s->inst.data + pv[i].addr, pv[i].val); 1320 } 1321 1322 /* 1323 * Native record driver 1324 */ 1325 static const struct rec_vals { 1326 u16 addr, val; 1327 } rv[] = { 1328 {CDATA_LEFT_VOLUME, ARB_VOLUME}, 1329 {CDATA_RIGHT_VOLUME, ARB_VOLUME}, 1330 {SRC3_DIRECTION_OFFSET, 1} , 1331 /* +1, +2 are stereo/16 bit */ 1332 {SRC3_DIRECTION_OFFSET + 3, 0x0000}, /* fraction? */ 1333 {SRC3_DIRECTION_OFFSET + 4, 0}, /* first l */ 1334 {SRC3_DIRECTION_OFFSET + 5, 0}, /* first r */ 1335 {SRC3_DIRECTION_OFFSET + 6, 0}, /* second l */ 1336 {SRC3_DIRECTION_OFFSET + 7, 0}, /* second r */ 1337 {SRC3_DIRECTION_OFFSET + 8, 0}, /* delta l */ 1338 {SRC3_DIRECTION_OFFSET + 9, 0}, /* delta r */ 1339 {SRC3_DIRECTION_OFFSET + 10, 0x8000}, /* round */ 1340 {SRC3_DIRECTION_OFFSET + 11, 0xFF00}, /* higher bute mark */ 1341 {SRC3_DIRECTION_OFFSET + 13, 0}, /* temp0 */ 1342 {SRC3_DIRECTION_OFFSET + 14, 0}, /* c fraction */ 1343 {SRC3_DIRECTION_OFFSET + 15, 0}, /* counter */ 1344 {SRC3_DIRECTION_OFFSET + 16, 50},/* numin */ 1345 {SRC3_DIRECTION_OFFSET + 17, 8}, /* numout */ 1346 {SRC3_DIRECTION_OFFSET + 18, 0}, /* numstage */ 1347 {SRC3_DIRECTION_OFFSET + 19, 0}, /* coef */ 1348 {SRC3_DIRECTION_OFFSET + 20, 0}, /* filtertap */ 1349 {SRC3_DIRECTION_OFFSET + 21, 0}, /* booster */ 1350 {SRC3_DIRECTION_OFFSET + 22, 0xff} /* skip lpf */ 1351 }; 1352 1353 static void 1354 snd_m3_capture_setup(struct snd_m3 *chip, struct m3_dma *s, struct snd_pcm_substream *subs) 1355 { 1356 unsigned int i; 1357 1358 /* 1359 * some per client initializers 1360 */ 1361 1362 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1363 s->inst.data + SRC3_DIRECTION_OFFSET + 12, 1364 s->inst.data + 40 + 8); 1365 1366 /* tell it which way dma is going? */ 1367 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1368 s->inst.data + CDATA_DMA_CONTROL, 1369 DMACONTROL_DIRECTION + DMACONTROL_AUTOREPEAT + 1370 DMAC_PAGE3_SELECTOR + DMAC_BLOCKF_SELECTOR); 1371 1372 /* 1373 * set an armload of static initializers 1374 */ 1375 for (i = 0; i < ARRAY_SIZE(rv); i++) 1376 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 1377 s->inst.data + rv[i].addr, rv[i].val); 1378 } 1379 1380 static int snd_m3_pcm_hw_params(struct snd_pcm_substream *substream, 1381 struct snd_pcm_hw_params *hw_params) 1382 { 1383 struct m3_dma *s = substream->runtime->private_data; 1384 1385 /* set buffer address */ 1386 s->buffer_addr = substream->runtime->dma_addr; 1387 if (s->buffer_addr & 0x3) { 1388 dev_err(substream->pcm->card->dev, "oh my, not aligned\n"); 1389 s->buffer_addr = s->buffer_addr & ~0x3; 1390 } 1391 return 0; 1392 } 1393 1394 static int snd_m3_pcm_hw_free(struct snd_pcm_substream *substream) 1395 { 1396 struct m3_dma *s; 1397 1398 if (substream->runtime->private_data == NULL) 1399 return 0; 1400 s = substream->runtime->private_data; 1401 s->buffer_addr = 0; 1402 return 0; 1403 } 1404 1405 static int 1406 snd_m3_pcm_prepare(struct snd_pcm_substream *subs) 1407 { 1408 struct snd_m3 *chip = snd_pcm_substream_chip(subs); 1409 struct snd_pcm_runtime *runtime = subs->runtime; 1410 struct m3_dma *s = runtime->private_data; 1411 1412 if (snd_BUG_ON(!s)) 1413 return -ENXIO; 1414 1415 if (runtime->format != SNDRV_PCM_FORMAT_U8 && 1416 runtime->format != SNDRV_PCM_FORMAT_S16_LE) 1417 return -EINVAL; 1418 if (runtime->rate > 48000 || 1419 runtime->rate < 8000) 1420 return -EINVAL; 1421 1422 spin_lock_irq(&chip->reg_lock); 1423 1424 snd_m3_pcm_setup1(chip, s, subs); 1425 1426 if (subs->stream == SNDRV_PCM_STREAM_PLAYBACK) 1427 snd_m3_playback_setup(chip, s, subs); 1428 else 1429 snd_m3_capture_setup(chip, s, subs); 1430 1431 snd_m3_pcm_setup2(chip, s, runtime); 1432 1433 spin_unlock_irq(&chip->reg_lock); 1434 1435 return 0; 1436 } 1437 1438 /* 1439 * get current pointer 1440 */ 1441 static unsigned int 1442 snd_m3_get_pointer(struct snd_m3 *chip, struct m3_dma *s, struct snd_pcm_substream *subs) 1443 { 1444 u16 hi = 0, lo = 0; 1445 int retry = 10; 1446 u32 addr; 1447 1448 /* 1449 * try and get a valid answer 1450 */ 1451 while (retry--) { 1452 hi = snd_m3_assp_read(chip, MEMTYPE_INTERNAL_DATA, 1453 s->inst.data + CDATA_HOST_SRC_CURRENTH); 1454 1455 lo = snd_m3_assp_read(chip, MEMTYPE_INTERNAL_DATA, 1456 s->inst.data + CDATA_HOST_SRC_CURRENTL); 1457 1458 if (hi == snd_m3_assp_read(chip, MEMTYPE_INTERNAL_DATA, 1459 s->inst.data + CDATA_HOST_SRC_CURRENTH)) 1460 break; 1461 } 1462 addr = lo | ((u32)hi<<16); 1463 return (unsigned int)(addr - s->buffer_addr); 1464 } 1465 1466 static snd_pcm_uframes_t 1467 snd_m3_pcm_pointer(struct snd_pcm_substream *subs) 1468 { 1469 struct snd_m3 *chip = snd_pcm_substream_chip(subs); 1470 unsigned int ptr; 1471 struct m3_dma *s = subs->runtime->private_data; 1472 1473 if (snd_BUG_ON(!s)) 1474 return 0; 1475 1476 spin_lock(&chip->reg_lock); 1477 ptr = snd_m3_get_pointer(chip, s, subs); 1478 spin_unlock(&chip->reg_lock); 1479 return bytes_to_frames(subs->runtime, ptr); 1480 } 1481 1482 1483 /* update pointer */ 1484 /* spinlock held! */ 1485 static void snd_m3_update_ptr(struct snd_m3 *chip, struct m3_dma *s) 1486 { 1487 struct snd_pcm_substream *subs = s->substream; 1488 unsigned int hwptr; 1489 int diff; 1490 1491 if (! s->running) 1492 return; 1493 1494 hwptr = snd_m3_get_pointer(chip, s, subs); 1495 1496 /* try to avoid expensive modulo divisions */ 1497 if (hwptr >= s->dma_size) 1498 hwptr %= s->dma_size; 1499 1500 diff = s->dma_size + hwptr - s->hwptr; 1501 if (diff >= s->dma_size) 1502 diff %= s->dma_size; 1503 1504 s->hwptr = hwptr; 1505 s->count += diff; 1506 1507 if (s->count >= (signed)s->period_size) { 1508 1509 if (s->count < 2 * (signed)s->period_size) 1510 s->count -= (signed)s->period_size; 1511 else 1512 s->count %= s->period_size; 1513 1514 spin_unlock(&chip->reg_lock); 1515 snd_pcm_period_elapsed(subs); 1516 spin_lock(&chip->reg_lock); 1517 } 1518 } 1519 1520 /* The m3's hardware volume works by incrementing / decrementing 2 counters 1521 (without wrap around) in response to volume button presses and then 1522 generating an interrupt. The pair of counters is stored in bits 1-3 and 5-7 1523 of a byte wide register. The meaning of bits 0 and 4 is unknown. */ 1524 static void snd_m3_update_hw_volume(struct work_struct *work) 1525 { 1526 struct snd_m3 *chip = container_of(work, struct snd_m3, hwvol_work); 1527 int x, val; 1528 1529 /* Figure out which volume control button was pushed, 1530 based on differences from the default register 1531 values. */ 1532 x = inb(chip->iobase + SHADOW_MIX_REG_VOICE) & 0xee; 1533 1534 /* Reset the volume counters to 4. Tests on the allegro integrated 1535 into a Compaq N600C laptop, have revealed that: 1536 1) Writing any value will result in the 2 counters being reset to 1537 4 so writing 0x88 is not strictly necessary 1538 2) Writing to any of the 4 involved registers will reset all 4 1539 of them (and reading them always returns the same value for all 1540 of them) 1541 It could be that a maestro deviates from this, so leave the code 1542 as is. */ 1543 outb(0x88, chip->iobase + SHADOW_MIX_REG_VOICE); 1544 outb(0x88, chip->iobase + HW_VOL_COUNTER_VOICE); 1545 outb(0x88, chip->iobase + SHADOW_MIX_REG_MASTER); 1546 outb(0x88, chip->iobase + HW_VOL_COUNTER_MASTER); 1547 1548 /* Ignore spurious HV interrupts during suspend / resume, this avoids 1549 mistaking them for a mute button press. */ 1550 if (chip->in_suspend) 1551 return; 1552 1553 #ifndef CONFIG_SND_MAESTRO3_INPUT 1554 if (!chip->master_switch || !chip->master_volume) 1555 return; 1556 1557 val = snd_ac97_read(chip->ac97, AC97_MASTER); 1558 switch (x) { 1559 case 0x88: 1560 /* The counters have not changed, yet we've received a HV 1561 interrupt. According to tests run by various people this 1562 happens when pressing the mute button. */ 1563 val ^= 0x8000; 1564 break; 1565 case 0xaa: 1566 /* counters increased by 1 -> volume up */ 1567 if ((val & 0x7f) > 0) 1568 val--; 1569 if ((val & 0x7f00) > 0) 1570 val -= 0x0100; 1571 break; 1572 case 0x66: 1573 /* counters decreased by 1 -> volume down */ 1574 if ((val & 0x7f) < 0x1f) 1575 val++; 1576 if ((val & 0x7f00) < 0x1f00) 1577 val += 0x0100; 1578 break; 1579 } 1580 if (snd_ac97_update(chip->ac97, AC97_MASTER, val)) 1581 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE, 1582 &chip->master_switch->id); 1583 #else 1584 if (!chip->input_dev) 1585 return; 1586 1587 val = 0; 1588 switch (x) { 1589 case 0x88: 1590 /* The counters have not changed, yet we've received a HV 1591 interrupt. According to tests run by various people this 1592 happens when pressing the mute button. */ 1593 val = KEY_MUTE; 1594 break; 1595 case 0xaa: 1596 /* counters increased by 1 -> volume up */ 1597 val = KEY_VOLUMEUP; 1598 break; 1599 case 0x66: 1600 /* counters decreased by 1 -> volume down */ 1601 val = KEY_VOLUMEDOWN; 1602 break; 1603 } 1604 1605 if (val) { 1606 input_report_key(chip->input_dev, val, 1); 1607 input_sync(chip->input_dev); 1608 input_report_key(chip->input_dev, val, 0); 1609 input_sync(chip->input_dev); 1610 } 1611 #endif 1612 } 1613 1614 static irqreturn_t snd_m3_interrupt(int irq, void *dev_id) 1615 { 1616 struct snd_m3 *chip = dev_id; 1617 u8 status; 1618 int i; 1619 1620 status = inb(chip->iobase + HOST_INT_STATUS); 1621 1622 if (status == 0xff) 1623 return IRQ_NONE; 1624 1625 if (status & HV_INT_PENDING) 1626 schedule_work(&chip->hwvol_work); 1627 1628 /* 1629 * ack an assp int if its running 1630 * and has an int pending 1631 */ 1632 if (status & ASSP_INT_PENDING) { 1633 u8 ctl = inb(chip->iobase + ASSP_CONTROL_B); 1634 if (!(ctl & STOP_ASSP_CLOCK)) { 1635 ctl = inb(chip->iobase + ASSP_HOST_INT_STATUS); 1636 if (ctl & DSP2HOST_REQ_TIMER) { 1637 outb(DSP2HOST_REQ_TIMER, chip->iobase + ASSP_HOST_INT_STATUS); 1638 /* update adc/dac info if it was a timer int */ 1639 spin_lock(&chip->reg_lock); 1640 for (i = 0; i < chip->num_substreams; i++) { 1641 struct m3_dma *s = &chip->substreams[i]; 1642 if (s->running) 1643 snd_m3_update_ptr(chip, s); 1644 } 1645 spin_unlock(&chip->reg_lock); 1646 } 1647 } 1648 } 1649 1650 #if 0 /* TODO: not supported yet */ 1651 if ((status & MPU401_INT_PENDING) && chip->rmidi) 1652 snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data, regs); 1653 #endif 1654 1655 /* ack ints */ 1656 outb(status, chip->iobase + HOST_INT_STATUS); 1657 1658 return IRQ_HANDLED; 1659 } 1660 1661 1662 /* 1663 */ 1664 1665 static const struct snd_pcm_hardware snd_m3_playback = 1666 { 1667 .info = (SNDRV_PCM_INFO_MMAP | 1668 SNDRV_PCM_INFO_INTERLEAVED | 1669 SNDRV_PCM_INFO_MMAP_VALID | 1670 SNDRV_PCM_INFO_BLOCK_TRANSFER | 1671 /*SNDRV_PCM_INFO_PAUSE |*/ 1672 SNDRV_PCM_INFO_RESUME), 1673 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE, 1674 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000, 1675 .rate_min = 8000, 1676 .rate_max = 48000, 1677 .channels_min = 1, 1678 .channels_max = 2, 1679 .buffer_bytes_max = (512*1024), 1680 .period_bytes_min = 64, 1681 .period_bytes_max = (512*1024), 1682 .periods_min = 1, 1683 .periods_max = 1024, 1684 }; 1685 1686 static const struct snd_pcm_hardware snd_m3_capture = 1687 { 1688 .info = (SNDRV_PCM_INFO_MMAP | 1689 SNDRV_PCM_INFO_INTERLEAVED | 1690 SNDRV_PCM_INFO_MMAP_VALID | 1691 SNDRV_PCM_INFO_BLOCK_TRANSFER | 1692 /*SNDRV_PCM_INFO_PAUSE |*/ 1693 SNDRV_PCM_INFO_RESUME), 1694 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE, 1695 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000, 1696 .rate_min = 8000, 1697 .rate_max = 48000, 1698 .channels_min = 1, 1699 .channels_max = 2, 1700 .buffer_bytes_max = (512*1024), 1701 .period_bytes_min = 64, 1702 .period_bytes_max = (512*1024), 1703 .periods_min = 1, 1704 .periods_max = 1024, 1705 }; 1706 1707 1708 /* 1709 */ 1710 1711 static int 1712 snd_m3_substream_open(struct snd_m3 *chip, struct snd_pcm_substream *subs) 1713 { 1714 int i; 1715 struct m3_dma *s; 1716 1717 spin_lock_irq(&chip->reg_lock); 1718 for (i = 0; i < chip->num_substreams; i++) { 1719 s = &chip->substreams[i]; 1720 if (! s->opened) 1721 goto __found; 1722 } 1723 spin_unlock_irq(&chip->reg_lock); 1724 return -ENOMEM; 1725 __found: 1726 s->opened = 1; 1727 s->running = 0; 1728 spin_unlock_irq(&chip->reg_lock); 1729 1730 subs->runtime->private_data = s; 1731 s->substream = subs; 1732 1733 /* set list owners */ 1734 if (subs->stream == SNDRV_PCM_STREAM_PLAYBACK) { 1735 s->index_list[0] = &chip->mixer_list; 1736 } else 1737 s->index_list[0] = &chip->adc1_list; 1738 s->index_list[1] = &chip->msrc_list; 1739 s->index_list[2] = &chip->dma_list; 1740 1741 return 0; 1742 } 1743 1744 static void 1745 snd_m3_substream_close(struct snd_m3 *chip, struct snd_pcm_substream *subs) 1746 { 1747 struct m3_dma *s = subs->runtime->private_data; 1748 1749 if (s == NULL) 1750 return; /* not opened properly */ 1751 1752 spin_lock_irq(&chip->reg_lock); 1753 if (s->substream && s->running) 1754 snd_m3_pcm_stop(chip, s, s->substream); /* does this happen? */ 1755 if (s->in_lists) { 1756 snd_m3_remove_list(chip, s->index_list[0], s->index[0]); 1757 snd_m3_remove_list(chip, s->index_list[1], s->index[1]); 1758 snd_m3_remove_list(chip, s->index_list[2], s->index[2]); 1759 s->in_lists = 0; 1760 } 1761 s->running = 0; 1762 s->opened = 0; 1763 spin_unlock_irq(&chip->reg_lock); 1764 } 1765 1766 static int 1767 snd_m3_playback_open(struct snd_pcm_substream *subs) 1768 { 1769 struct snd_m3 *chip = snd_pcm_substream_chip(subs); 1770 struct snd_pcm_runtime *runtime = subs->runtime; 1771 int err; 1772 1773 if ((err = snd_m3_substream_open(chip, subs)) < 0) 1774 return err; 1775 1776 runtime->hw = snd_m3_playback; 1777 1778 return 0; 1779 } 1780 1781 static int 1782 snd_m3_playback_close(struct snd_pcm_substream *subs) 1783 { 1784 struct snd_m3 *chip = snd_pcm_substream_chip(subs); 1785 1786 snd_m3_substream_close(chip, subs); 1787 return 0; 1788 } 1789 1790 static int 1791 snd_m3_capture_open(struct snd_pcm_substream *subs) 1792 { 1793 struct snd_m3 *chip = snd_pcm_substream_chip(subs); 1794 struct snd_pcm_runtime *runtime = subs->runtime; 1795 int err; 1796 1797 if ((err = snd_m3_substream_open(chip, subs)) < 0) 1798 return err; 1799 1800 runtime->hw = snd_m3_capture; 1801 1802 return 0; 1803 } 1804 1805 static int 1806 snd_m3_capture_close(struct snd_pcm_substream *subs) 1807 { 1808 struct snd_m3 *chip = snd_pcm_substream_chip(subs); 1809 1810 snd_m3_substream_close(chip, subs); 1811 return 0; 1812 } 1813 1814 /* 1815 * create pcm instance 1816 */ 1817 1818 static const struct snd_pcm_ops snd_m3_playback_ops = { 1819 .open = snd_m3_playback_open, 1820 .close = snd_m3_playback_close, 1821 .ioctl = snd_pcm_lib_ioctl, 1822 .hw_params = snd_m3_pcm_hw_params, 1823 .hw_free = snd_m3_pcm_hw_free, 1824 .prepare = snd_m3_pcm_prepare, 1825 .trigger = snd_m3_pcm_trigger, 1826 .pointer = snd_m3_pcm_pointer, 1827 }; 1828 1829 static const struct snd_pcm_ops snd_m3_capture_ops = { 1830 .open = snd_m3_capture_open, 1831 .close = snd_m3_capture_close, 1832 .ioctl = snd_pcm_lib_ioctl, 1833 .hw_params = snd_m3_pcm_hw_params, 1834 .hw_free = snd_m3_pcm_hw_free, 1835 .prepare = snd_m3_pcm_prepare, 1836 .trigger = snd_m3_pcm_trigger, 1837 .pointer = snd_m3_pcm_pointer, 1838 }; 1839 1840 static int 1841 snd_m3_pcm(struct snd_m3 * chip, int device) 1842 { 1843 struct snd_pcm *pcm; 1844 int err; 1845 1846 err = snd_pcm_new(chip->card, chip->card->driver, device, 1847 MAX_PLAYBACKS, MAX_CAPTURES, &pcm); 1848 if (err < 0) 1849 return err; 1850 1851 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_m3_playback_ops); 1852 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_m3_capture_ops); 1853 1854 pcm->private_data = chip; 1855 pcm->info_flags = 0; 1856 strcpy(pcm->name, chip->card->driver); 1857 chip->pcm = pcm; 1858 1859 snd_pcm_set_managed_buffer_all(pcm, SNDRV_DMA_TYPE_DEV, 1860 &chip->pci->dev, 64*1024, 64*1024); 1861 1862 return 0; 1863 } 1864 1865 1866 /* 1867 * ac97 interface 1868 */ 1869 1870 /* 1871 * Wait for the ac97 serial bus to be free. 1872 * return nonzero if the bus is still busy. 1873 */ 1874 static int snd_m3_ac97_wait(struct snd_m3 *chip) 1875 { 1876 int i = 10000; 1877 1878 do { 1879 if (! (snd_m3_inb(chip, 0x30) & 1)) 1880 return 0; 1881 cpu_relax(); 1882 } while (i-- > 0); 1883 1884 dev_err(chip->card->dev, "ac97 serial bus busy\n"); 1885 return 1; 1886 } 1887 1888 static unsigned short 1889 snd_m3_ac97_read(struct snd_ac97 *ac97, unsigned short reg) 1890 { 1891 struct snd_m3 *chip = ac97->private_data; 1892 unsigned short data = 0xffff; 1893 1894 if (snd_m3_ac97_wait(chip)) 1895 goto fail; 1896 snd_m3_outb(chip, 0x80 | (reg & 0x7f), CODEC_COMMAND); 1897 if (snd_m3_ac97_wait(chip)) 1898 goto fail; 1899 data = snd_m3_inw(chip, CODEC_DATA); 1900 fail: 1901 return data; 1902 } 1903 1904 static void 1905 snd_m3_ac97_write(struct snd_ac97 *ac97, unsigned short reg, unsigned short val) 1906 { 1907 struct snd_m3 *chip = ac97->private_data; 1908 1909 if (snd_m3_ac97_wait(chip)) 1910 return; 1911 snd_m3_outw(chip, val, CODEC_DATA); 1912 snd_m3_outb(chip, reg & 0x7f, CODEC_COMMAND); 1913 /* 1914 * Workaround for buggy ES1988 integrated AC'97 codec. It remains silent 1915 * until the MASTER volume or mute is touched (alsactl restore does not 1916 * work). 1917 */ 1918 if (ac97->id == 0x45838308 && reg == AC97_MASTER) { 1919 snd_m3_ac97_wait(chip); 1920 snd_m3_outw(chip, val, CODEC_DATA); 1921 snd_m3_outb(chip, reg & 0x7f, CODEC_COMMAND); 1922 } 1923 } 1924 1925 1926 static void snd_m3_remote_codec_config(struct snd_m3 *chip, int isremote) 1927 { 1928 int io = chip->iobase; 1929 u16 tmp; 1930 1931 isremote = isremote ? 1 : 0; 1932 1933 tmp = inw(io + RING_BUS_CTRL_B) & ~SECOND_CODEC_ID_MASK; 1934 /* enable dock on Dell Latitude C810 */ 1935 if (chip->pci->subsystem_vendor == 0x1028 && 1936 chip->pci->subsystem_device == 0x00e5) 1937 tmp |= M3I_DOCK_ENABLE; 1938 outw(tmp | isremote, io + RING_BUS_CTRL_B); 1939 outw((inw(io + SDO_OUT_DEST_CTRL) & ~COMMAND_ADDR_OUT) | isremote, 1940 io + SDO_OUT_DEST_CTRL); 1941 outw((inw(io + SDO_IN_DEST_CTRL) & ~STATUS_ADDR_IN) | isremote, 1942 io + SDO_IN_DEST_CTRL); 1943 } 1944 1945 /* 1946 * hack, returns non zero on err 1947 */ 1948 static int snd_m3_try_read_vendor(struct snd_m3 *chip) 1949 { 1950 u16 ret; 1951 1952 if (snd_m3_ac97_wait(chip)) 1953 return 1; 1954 1955 snd_m3_outb(chip, 0x80 | (AC97_VENDOR_ID1 & 0x7f), 0x30); 1956 1957 if (snd_m3_ac97_wait(chip)) 1958 return 1; 1959 1960 ret = snd_m3_inw(chip, 0x32); 1961 1962 return (ret == 0) || (ret == 0xffff); 1963 } 1964 1965 static void snd_m3_ac97_reset(struct snd_m3 *chip) 1966 { 1967 u16 dir; 1968 int delay1 = 0, delay2 = 0, i; 1969 int io = chip->iobase; 1970 1971 if (chip->allegro_flag) { 1972 /* 1973 * the onboard codec on the allegro seems 1974 * to want to wait a very long time before 1975 * coming back to life 1976 */ 1977 delay1 = 50; 1978 delay2 = 800; 1979 } else { 1980 /* maestro3 */ 1981 delay1 = 20; 1982 delay2 = 500; 1983 } 1984 1985 for (i = 0; i < 5; i++) { 1986 dir = inw(io + GPIO_DIRECTION); 1987 if (!chip->irda_workaround) 1988 dir |= 0x10; /* assuming pci bus master? */ 1989 1990 snd_m3_remote_codec_config(chip, 0); 1991 1992 outw(IO_SRAM_ENABLE, io + RING_BUS_CTRL_A); 1993 udelay(20); 1994 1995 outw(dir & ~GPO_PRIMARY_AC97 , io + GPIO_DIRECTION); 1996 outw(~GPO_PRIMARY_AC97 , io + GPIO_MASK); 1997 outw(0, io + GPIO_DATA); 1998 outw(dir | GPO_PRIMARY_AC97, io + GPIO_DIRECTION); 1999 2000 schedule_timeout_uninterruptible(msecs_to_jiffies(delay1)); 2001 2002 outw(GPO_PRIMARY_AC97, io + GPIO_DATA); 2003 udelay(5); 2004 /* ok, bring back the ac-link */ 2005 outw(IO_SRAM_ENABLE | SERIAL_AC_LINK_ENABLE, io + RING_BUS_CTRL_A); 2006 outw(~0, io + GPIO_MASK); 2007 2008 schedule_timeout_uninterruptible(msecs_to_jiffies(delay2)); 2009 2010 if (! snd_m3_try_read_vendor(chip)) 2011 break; 2012 2013 delay1 += 10; 2014 delay2 += 100; 2015 2016 dev_dbg(chip->card->dev, 2017 "retrying codec reset with delays of %d and %d ms\n", 2018 delay1, delay2); 2019 } 2020 2021 #if 0 2022 /* more gung-ho reset that doesn't 2023 * seem to work anywhere :) 2024 */ 2025 tmp = inw(io + RING_BUS_CTRL_A); 2026 outw(RAC_SDFS_ENABLE|LAC_SDFS_ENABLE, io + RING_BUS_CTRL_A); 2027 msleep(20); 2028 outw(tmp, io + RING_BUS_CTRL_A); 2029 msleep(50); 2030 #endif 2031 } 2032 2033 static int snd_m3_mixer(struct snd_m3 *chip) 2034 { 2035 struct snd_ac97_bus *pbus; 2036 struct snd_ac97_template ac97; 2037 #ifndef CONFIG_SND_MAESTRO3_INPUT 2038 struct snd_ctl_elem_id elem_id; 2039 #endif 2040 int err; 2041 static struct snd_ac97_bus_ops ops = { 2042 .write = snd_m3_ac97_write, 2043 .read = snd_m3_ac97_read, 2044 }; 2045 2046 if ((err = snd_ac97_bus(chip->card, 0, &ops, NULL, &pbus)) < 0) 2047 return err; 2048 2049 memset(&ac97, 0, sizeof(ac97)); 2050 ac97.private_data = chip; 2051 if ((err = snd_ac97_mixer(pbus, &ac97, &chip->ac97)) < 0) 2052 return err; 2053 2054 /* seems ac97 PCM needs initialization.. hack hack.. */ 2055 snd_ac97_write(chip->ac97, AC97_PCM, 0x8000 | (15 << 8) | 15); 2056 schedule_timeout_uninterruptible(msecs_to_jiffies(100)); 2057 snd_ac97_write(chip->ac97, AC97_PCM, 0); 2058 2059 #ifndef CONFIG_SND_MAESTRO3_INPUT 2060 memset(&elem_id, 0, sizeof(elem_id)); 2061 elem_id.iface = SNDRV_CTL_ELEM_IFACE_MIXER; 2062 strcpy(elem_id.name, "Master Playback Switch"); 2063 chip->master_switch = snd_ctl_find_id(chip->card, &elem_id); 2064 memset(&elem_id, 0, sizeof(elem_id)); 2065 elem_id.iface = SNDRV_CTL_ELEM_IFACE_MIXER; 2066 strcpy(elem_id.name, "Master Playback Volume"); 2067 chip->master_volume = snd_ctl_find_id(chip->card, &elem_id); 2068 #endif 2069 2070 return 0; 2071 } 2072 2073 2074 /* 2075 * initialize ASSP 2076 */ 2077 2078 #define MINISRC_LPF_LEN 10 2079 static const u16 minisrc_lpf[MINISRC_LPF_LEN] = { 2080 0X0743, 0X1104, 0X0A4C, 0XF88D, 0X242C, 2081 0X1023, 0X1AA9, 0X0B60, 0XEFDD, 0X186F 2082 }; 2083 2084 static void snd_m3_assp_init(struct snd_m3 *chip) 2085 { 2086 unsigned int i; 2087 const __le16 *data; 2088 2089 /* zero kernel data */ 2090 for (i = 0; i < (REV_B_DATA_MEMORY_UNIT_LENGTH * NUM_UNITS_KERNEL_DATA) / 2; i++) 2091 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 2092 KDATA_BASE_ADDR + i, 0); 2093 2094 /* zero mixer data? */ 2095 for (i = 0; i < (REV_B_DATA_MEMORY_UNIT_LENGTH * NUM_UNITS_KERNEL_DATA) / 2; i++) 2096 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 2097 KDATA_BASE_ADDR2 + i, 0); 2098 2099 /* init dma pointer */ 2100 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 2101 KDATA_CURRENT_DMA, 2102 KDATA_DMA_XFER0); 2103 2104 /* write kernel into code memory.. */ 2105 data = (const __le16 *)chip->assp_kernel_image->data; 2106 for (i = 0 ; i * 2 < chip->assp_kernel_image->size; i++) { 2107 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_CODE, 2108 REV_B_CODE_MEMORY_BEGIN + i, 2109 le16_to_cpu(data[i])); 2110 } 2111 2112 /* 2113 * We only have this one client and we know that 0x400 2114 * is free in our kernel's mem map, so lets just 2115 * drop it there. It seems that the minisrc doesn't 2116 * need vectors, so we won't bother with them.. 2117 */ 2118 data = (const __le16 *)chip->assp_minisrc_image->data; 2119 for (i = 0; i * 2 < chip->assp_minisrc_image->size; i++) { 2120 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_CODE, 2121 0x400 + i, le16_to_cpu(data[i])); 2122 } 2123 2124 /* 2125 * write the coefficients for the low pass filter? 2126 */ 2127 for (i = 0; i < MINISRC_LPF_LEN ; i++) { 2128 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_CODE, 2129 0x400 + MINISRC_COEF_LOC + i, 2130 minisrc_lpf[i]); 2131 } 2132 2133 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_CODE, 2134 0x400 + MINISRC_COEF_LOC + MINISRC_LPF_LEN, 2135 0x8000); 2136 2137 /* 2138 * the minisrc is the only thing on 2139 * our task list.. 2140 */ 2141 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 2142 KDATA_TASK0, 2143 0x400); 2144 2145 /* 2146 * init the mixer number.. 2147 */ 2148 2149 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 2150 KDATA_MIXER_TASK_NUMBER,0); 2151 2152 /* 2153 * EXTREME KERNEL MASTER VOLUME 2154 */ 2155 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 2156 KDATA_DAC_LEFT_VOLUME, ARB_VOLUME); 2157 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 2158 KDATA_DAC_RIGHT_VOLUME, ARB_VOLUME); 2159 2160 chip->mixer_list.curlen = 0; 2161 chip->mixer_list.mem_addr = KDATA_MIXER_XFER0; 2162 chip->mixer_list.max = MAX_VIRTUAL_MIXER_CHANNELS; 2163 chip->adc1_list.curlen = 0; 2164 chip->adc1_list.mem_addr = KDATA_ADC1_XFER0; 2165 chip->adc1_list.max = MAX_VIRTUAL_ADC1_CHANNELS; 2166 chip->dma_list.curlen = 0; 2167 chip->dma_list.mem_addr = KDATA_DMA_XFER0; 2168 chip->dma_list.max = MAX_VIRTUAL_DMA_CHANNELS; 2169 chip->msrc_list.curlen = 0; 2170 chip->msrc_list.mem_addr = KDATA_INSTANCE0_MINISRC; 2171 chip->msrc_list.max = MAX_INSTANCE_MINISRC; 2172 } 2173 2174 2175 static int snd_m3_assp_client_init(struct snd_m3 *chip, struct m3_dma *s, int index) 2176 { 2177 int data_bytes = 2 * ( MINISRC_TMP_BUFFER_SIZE / 2 + 2178 MINISRC_IN_BUFFER_SIZE / 2 + 2179 1 + MINISRC_OUT_BUFFER_SIZE / 2 + 1 ); 2180 int address, i; 2181 2182 /* 2183 * the revb memory map has 0x1100 through 0x1c00 2184 * free. 2185 */ 2186 2187 /* 2188 * align instance address to 256 bytes so that its 2189 * shifted list address is aligned. 2190 * list address = (mem address >> 1) >> 7; 2191 */ 2192 data_bytes = ALIGN(data_bytes, 256); 2193 address = 0x1100 + ((data_bytes/2) * index); 2194 2195 if ((address + (data_bytes/2)) >= 0x1c00) { 2196 dev_err(chip->card->dev, 2197 "no memory for %d bytes at ind %d (addr 0x%x)\n", 2198 data_bytes, index, address); 2199 return -ENOMEM; 2200 } 2201 2202 s->number = index; 2203 s->inst.code = 0x400; 2204 s->inst.data = address; 2205 2206 for (i = data_bytes / 2; i > 0; address++, i--) { 2207 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 2208 address, 0); 2209 } 2210 2211 return 0; 2212 } 2213 2214 2215 /* 2216 * this works for the reference board, have to find 2217 * out about others 2218 * 2219 * this needs more magic for 4 speaker, but.. 2220 */ 2221 static void 2222 snd_m3_amp_enable(struct snd_m3 *chip, int enable) 2223 { 2224 int io = chip->iobase; 2225 u16 gpo, polarity; 2226 2227 if (! chip->external_amp) 2228 return; 2229 2230 polarity = enable ? 0 : 1; 2231 polarity = polarity << chip->amp_gpio; 2232 gpo = 1 << chip->amp_gpio; 2233 2234 outw(~gpo, io + GPIO_MASK); 2235 2236 outw(inw(io + GPIO_DIRECTION) | gpo, 2237 io + GPIO_DIRECTION); 2238 2239 outw((GPO_SECONDARY_AC97 | GPO_PRIMARY_AC97 | polarity), 2240 io + GPIO_DATA); 2241 2242 outw(0xffff, io + GPIO_MASK); 2243 } 2244 2245 static void 2246 snd_m3_hv_init(struct snd_m3 *chip) 2247 { 2248 unsigned long io = chip->iobase; 2249 u16 val = GPI_VOL_DOWN | GPI_VOL_UP; 2250 2251 if (!chip->is_omnibook) 2252 return; 2253 2254 /* 2255 * Volume buttons on some HP OmniBook laptops 2256 * require some GPIO magic to work correctly. 2257 */ 2258 outw(0xffff, io + GPIO_MASK); 2259 outw(0x0000, io + GPIO_DATA); 2260 2261 outw(~val, io + GPIO_MASK); 2262 outw(inw(io + GPIO_DIRECTION) & ~val, io + GPIO_DIRECTION); 2263 outw(val, io + GPIO_MASK); 2264 2265 outw(0xffff, io + GPIO_MASK); 2266 } 2267 2268 static int 2269 snd_m3_chip_init(struct snd_m3 *chip) 2270 { 2271 struct pci_dev *pcidev = chip->pci; 2272 unsigned long io = chip->iobase; 2273 u32 n; 2274 u16 w; 2275 u8 t; /* makes as much sense as 'n', no? */ 2276 2277 pci_read_config_word(pcidev, PCI_LEGACY_AUDIO_CTRL, &w); 2278 w &= ~(SOUND_BLASTER_ENABLE|FM_SYNTHESIS_ENABLE| 2279 MPU401_IO_ENABLE|MPU401_IRQ_ENABLE|ALIAS_10BIT_IO| 2280 DISABLE_LEGACY); 2281 pci_write_config_word(pcidev, PCI_LEGACY_AUDIO_CTRL, w); 2282 2283 pci_read_config_dword(pcidev, PCI_ALLEGRO_CONFIG, &n); 2284 n &= ~(HV_CTRL_ENABLE | REDUCED_DEBOUNCE | HV_BUTTON_FROM_GD); 2285 n |= chip->hv_config; 2286 /* For some reason we must always use reduced debounce. */ 2287 n |= REDUCED_DEBOUNCE; 2288 n |= PM_CTRL_ENABLE | CLK_DIV_BY_49 | USE_PCI_TIMING; 2289 pci_write_config_dword(pcidev, PCI_ALLEGRO_CONFIG, n); 2290 2291 outb(RESET_ASSP, chip->iobase + ASSP_CONTROL_B); 2292 pci_read_config_dword(pcidev, PCI_ALLEGRO_CONFIG, &n); 2293 n &= ~INT_CLK_SELECT; 2294 if (!chip->allegro_flag) { 2295 n &= ~INT_CLK_MULT_ENABLE; 2296 n |= INT_CLK_SRC_NOT_PCI; 2297 } 2298 n &= ~( CLK_MULT_MODE_SELECT | CLK_MULT_MODE_SELECT_2 ); 2299 pci_write_config_dword(pcidev, PCI_ALLEGRO_CONFIG, n); 2300 2301 if (chip->allegro_flag) { 2302 pci_read_config_dword(pcidev, PCI_USER_CONFIG, &n); 2303 n |= IN_CLK_12MHZ_SELECT; 2304 pci_write_config_dword(pcidev, PCI_USER_CONFIG, n); 2305 } 2306 2307 t = inb(chip->iobase + ASSP_CONTROL_A); 2308 t &= ~( DSP_CLK_36MHZ_SELECT | ASSP_CLK_49MHZ_SELECT); 2309 t |= ASSP_CLK_49MHZ_SELECT; 2310 t |= ASSP_0_WS_ENABLE; 2311 outb(t, chip->iobase + ASSP_CONTROL_A); 2312 2313 snd_m3_assp_init(chip); /* download DSP code before starting ASSP below */ 2314 outb(RUN_ASSP, chip->iobase + ASSP_CONTROL_B); 2315 2316 outb(0x00, io + HARDWARE_VOL_CTRL); 2317 outb(0x88, io + SHADOW_MIX_REG_VOICE); 2318 outb(0x88, io + HW_VOL_COUNTER_VOICE); 2319 outb(0x88, io + SHADOW_MIX_REG_MASTER); 2320 outb(0x88, io + HW_VOL_COUNTER_MASTER); 2321 2322 return 0; 2323 } 2324 2325 static void 2326 snd_m3_enable_ints(struct snd_m3 *chip) 2327 { 2328 unsigned long io = chip->iobase; 2329 unsigned short val; 2330 2331 /* TODO: MPU401 not supported yet */ 2332 val = ASSP_INT_ENABLE /*| MPU401_INT_ENABLE*/; 2333 if (chip->hv_config & HV_CTRL_ENABLE) 2334 val |= HV_INT_ENABLE; 2335 outb(val, chip->iobase + HOST_INT_STATUS); 2336 outw(val, io + HOST_INT_CTRL); 2337 outb(inb(io + ASSP_CONTROL_C) | ASSP_HOST_INT_ENABLE, 2338 io + ASSP_CONTROL_C); 2339 } 2340 2341 2342 /* 2343 */ 2344 2345 static int snd_m3_free(struct snd_m3 *chip) 2346 { 2347 struct m3_dma *s; 2348 int i; 2349 2350 cancel_work_sync(&chip->hwvol_work); 2351 #ifdef CONFIG_SND_MAESTRO3_INPUT 2352 if (chip->input_dev) 2353 input_unregister_device(chip->input_dev); 2354 #endif 2355 2356 if (chip->substreams) { 2357 spin_lock_irq(&chip->reg_lock); 2358 for (i = 0; i < chip->num_substreams; i++) { 2359 s = &chip->substreams[i]; 2360 /* check surviving pcms; this should not happen though.. */ 2361 if (s->substream && s->running) 2362 snd_m3_pcm_stop(chip, s, s->substream); 2363 } 2364 spin_unlock_irq(&chip->reg_lock); 2365 kfree(chip->substreams); 2366 } 2367 if (chip->iobase) { 2368 outw(0, chip->iobase + HOST_INT_CTRL); /* disable ints */ 2369 } 2370 2371 #ifdef CONFIG_PM_SLEEP 2372 vfree(chip->suspend_mem); 2373 #endif 2374 2375 if (chip->irq >= 0) 2376 free_irq(chip->irq, chip); 2377 2378 if (chip->iobase) 2379 pci_release_regions(chip->pci); 2380 2381 release_firmware(chip->assp_kernel_image); 2382 release_firmware(chip->assp_minisrc_image); 2383 2384 pci_disable_device(chip->pci); 2385 kfree(chip); 2386 return 0; 2387 } 2388 2389 2390 /* 2391 * APM support 2392 */ 2393 #ifdef CONFIG_PM_SLEEP 2394 static int m3_suspend(struct device *dev) 2395 { 2396 struct snd_card *card = dev_get_drvdata(dev); 2397 struct snd_m3 *chip = card->private_data; 2398 int i, dsp_index; 2399 2400 if (chip->suspend_mem == NULL) 2401 return 0; 2402 2403 chip->in_suspend = 1; 2404 cancel_work_sync(&chip->hwvol_work); 2405 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); 2406 snd_ac97_suspend(chip->ac97); 2407 2408 msleep(10); /* give the assp a chance to idle.. */ 2409 2410 snd_m3_assp_halt(chip); 2411 2412 /* save dsp image */ 2413 dsp_index = 0; 2414 for (i = REV_B_CODE_MEMORY_BEGIN; i <= REV_B_CODE_MEMORY_END; i++) 2415 chip->suspend_mem[dsp_index++] = 2416 snd_m3_assp_read(chip, MEMTYPE_INTERNAL_CODE, i); 2417 for (i = REV_B_DATA_MEMORY_BEGIN ; i <= REV_B_DATA_MEMORY_END; i++) 2418 chip->suspend_mem[dsp_index++] = 2419 snd_m3_assp_read(chip, MEMTYPE_INTERNAL_DATA, i); 2420 return 0; 2421 } 2422 2423 static int m3_resume(struct device *dev) 2424 { 2425 struct snd_card *card = dev_get_drvdata(dev); 2426 struct snd_m3 *chip = card->private_data; 2427 int i, dsp_index; 2428 2429 if (chip->suspend_mem == NULL) 2430 return 0; 2431 2432 /* first lets just bring everything back. .*/ 2433 snd_m3_outw(chip, 0, 0x54); 2434 snd_m3_outw(chip, 0, 0x56); 2435 2436 snd_m3_chip_init(chip); 2437 snd_m3_assp_halt(chip); 2438 snd_m3_ac97_reset(chip); 2439 2440 /* restore dsp image */ 2441 dsp_index = 0; 2442 for (i = REV_B_CODE_MEMORY_BEGIN; i <= REV_B_CODE_MEMORY_END; i++) 2443 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_CODE, i, 2444 chip->suspend_mem[dsp_index++]); 2445 for (i = REV_B_DATA_MEMORY_BEGIN ; i <= REV_B_DATA_MEMORY_END; i++) 2446 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, i, 2447 chip->suspend_mem[dsp_index++]); 2448 2449 /* tell the dma engine to restart itself */ 2450 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, 2451 KDATA_DMA_ACTIVE, 0); 2452 2453 /* restore ac97 registers */ 2454 snd_ac97_resume(chip->ac97); 2455 2456 snd_m3_assp_continue(chip); 2457 snd_m3_enable_ints(chip); 2458 snd_m3_amp_enable(chip, 1); 2459 2460 snd_m3_hv_init(chip); 2461 2462 snd_power_change_state(card, SNDRV_CTL_POWER_D0); 2463 chip->in_suspend = 0; 2464 return 0; 2465 } 2466 2467 static SIMPLE_DEV_PM_OPS(m3_pm, m3_suspend, m3_resume); 2468 #define M3_PM_OPS &m3_pm 2469 #else 2470 #define M3_PM_OPS NULL 2471 #endif /* CONFIG_PM_SLEEP */ 2472 2473 #ifdef CONFIG_SND_MAESTRO3_INPUT 2474 static int snd_m3_input_register(struct snd_m3 *chip) 2475 { 2476 struct input_dev *input_dev; 2477 int err; 2478 2479 input_dev = input_allocate_device(); 2480 if (!input_dev) 2481 return -ENOMEM; 2482 2483 snprintf(chip->phys, sizeof(chip->phys), "pci-%s/input0", 2484 pci_name(chip->pci)); 2485 2486 input_dev->name = chip->card->driver; 2487 input_dev->phys = chip->phys; 2488 input_dev->id.bustype = BUS_PCI; 2489 input_dev->id.vendor = chip->pci->vendor; 2490 input_dev->id.product = chip->pci->device; 2491 input_dev->dev.parent = &chip->pci->dev; 2492 2493 __set_bit(EV_KEY, input_dev->evbit); 2494 __set_bit(KEY_MUTE, input_dev->keybit); 2495 __set_bit(KEY_VOLUMEDOWN, input_dev->keybit); 2496 __set_bit(KEY_VOLUMEUP, input_dev->keybit); 2497 2498 err = input_register_device(input_dev); 2499 if (err) { 2500 input_free_device(input_dev); 2501 return err; 2502 } 2503 2504 chip->input_dev = input_dev; 2505 return 0; 2506 } 2507 #endif /* CONFIG_INPUT */ 2508 2509 /* 2510 */ 2511 2512 static int snd_m3_dev_free(struct snd_device *device) 2513 { 2514 struct snd_m3 *chip = device->device_data; 2515 return snd_m3_free(chip); 2516 } 2517 2518 static int 2519 snd_m3_create(struct snd_card *card, struct pci_dev *pci, 2520 int enable_amp, 2521 int amp_gpio, 2522 struct snd_m3 **chip_ret) 2523 { 2524 struct snd_m3 *chip; 2525 int i, err; 2526 const struct snd_pci_quirk *quirk; 2527 static struct snd_device_ops ops = { 2528 .dev_free = snd_m3_dev_free, 2529 }; 2530 2531 *chip_ret = NULL; 2532 2533 if (pci_enable_device(pci)) 2534 return -EIO; 2535 2536 /* check, if we can restrict PCI DMA transfers to 28 bits */ 2537 if (dma_set_mask(&pci->dev, DMA_BIT_MASK(28)) < 0 || 2538 dma_set_coherent_mask(&pci->dev, DMA_BIT_MASK(28)) < 0) { 2539 dev_err(card->dev, 2540 "architecture does not support 28bit PCI busmaster DMA\n"); 2541 pci_disable_device(pci); 2542 return -ENXIO; 2543 } 2544 2545 chip = kzalloc(sizeof(*chip), GFP_KERNEL); 2546 if (chip == NULL) { 2547 pci_disable_device(pci); 2548 return -ENOMEM; 2549 } 2550 2551 spin_lock_init(&chip->reg_lock); 2552 2553 switch (pci->device) { 2554 case PCI_DEVICE_ID_ESS_ALLEGRO: 2555 case PCI_DEVICE_ID_ESS_ALLEGRO_1: 2556 case PCI_DEVICE_ID_ESS_CANYON3D_2LE: 2557 case PCI_DEVICE_ID_ESS_CANYON3D_2: 2558 chip->allegro_flag = 1; 2559 break; 2560 } 2561 2562 chip->card = card; 2563 chip->pci = pci; 2564 chip->irq = -1; 2565 INIT_WORK(&chip->hwvol_work, snd_m3_update_hw_volume); 2566 2567 chip->external_amp = enable_amp; 2568 if (amp_gpio >= 0 && amp_gpio <= 0x0f) 2569 chip->amp_gpio = amp_gpio; 2570 else { 2571 quirk = snd_pci_quirk_lookup(pci, m3_amp_quirk_list); 2572 if (quirk) { 2573 dev_info(card->dev, "set amp-gpio for '%s'\n", 2574 snd_pci_quirk_name(quirk)); 2575 chip->amp_gpio = quirk->value; 2576 } else if (chip->allegro_flag) 2577 chip->amp_gpio = GPO_EXT_AMP_ALLEGRO; 2578 else /* presumably this is for all 'maestro3's.. */ 2579 chip->amp_gpio = GPO_EXT_AMP_M3; 2580 } 2581 2582 quirk = snd_pci_quirk_lookup(pci, m3_irda_quirk_list); 2583 if (quirk) { 2584 dev_info(card->dev, "enabled irda workaround for '%s'\n", 2585 snd_pci_quirk_name(quirk)); 2586 chip->irda_workaround = 1; 2587 } 2588 quirk = snd_pci_quirk_lookup(pci, m3_hv_quirk_list); 2589 if (quirk) 2590 chip->hv_config = quirk->value; 2591 if (snd_pci_quirk_lookup(pci, m3_omnibook_quirk_list)) 2592 chip->is_omnibook = 1; 2593 2594 chip->num_substreams = NR_DSPS; 2595 chip->substreams = kcalloc(chip->num_substreams, sizeof(struct m3_dma), 2596 GFP_KERNEL); 2597 if (chip->substreams == NULL) { 2598 kfree(chip); 2599 pci_disable_device(pci); 2600 return -ENOMEM; 2601 } 2602 2603 err = request_firmware(&chip->assp_kernel_image, 2604 "ess/maestro3_assp_kernel.fw", &pci->dev); 2605 if (err < 0) 2606 goto free_chip; 2607 2608 err = request_firmware(&chip->assp_minisrc_image, 2609 "ess/maestro3_assp_minisrc.fw", &pci->dev); 2610 if (err < 0) 2611 goto free_chip; 2612 2613 err = pci_request_regions(pci, card->driver); 2614 if (err < 0) 2615 goto free_chip; 2616 2617 chip->iobase = pci_resource_start(pci, 0); 2618 2619 /* just to be sure */ 2620 pci_set_master(pci); 2621 2622 snd_m3_chip_init(chip); 2623 snd_m3_assp_halt(chip); 2624 2625 snd_m3_ac97_reset(chip); 2626 2627 snd_m3_amp_enable(chip, 1); 2628 2629 snd_m3_hv_init(chip); 2630 2631 if (request_irq(pci->irq, snd_m3_interrupt, IRQF_SHARED, 2632 KBUILD_MODNAME, chip)) { 2633 dev_err(card->dev, "unable to grab IRQ %d\n", pci->irq); 2634 err = -ENOMEM; 2635 goto free_chip; 2636 } 2637 chip->irq = pci->irq; 2638 2639 #ifdef CONFIG_PM_SLEEP 2640 chip->suspend_mem = 2641 vmalloc(array_size(sizeof(u16), 2642 REV_B_CODE_MEMORY_LENGTH + 2643 REV_B_DATA_MEMORY_LENGTH)); 2644 if (chip->suspend_mem == NULL) 2645 dev_warn(card->dev, "can't allocate apm buffer\n"); 2646 #endif 2647 2648 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops); 2649 if (err < 0) 2650 goto free_chip; 2651 2652 if ((err = snd_m3_mixer(chip)) < 0) 2653 return err; 2654 2655 for (i = 0; i < chip->num_substreams; i++) { 2656 struct m3_dma *s = &chip->substreams[i]; 2657 if ((err = snd_m3_assp_client_init(chip, s, i)) < 0) 2658 return err; 2659 } 2660 2661 if ((err = snd_m3_pcm(chip, 0)) < 0) 2662 return err; 2663 2664 #ifdef CONFIG_SND_MAESTRO3_INPUT 2665 if (chip->hv_config & HV_CTRL_ENABLE) { 2666 err = snd_m3_input_register(chip); 2667 if (err) 2668 dev_warn(card->dev, 2669 "Input device registration failed with error %i", 2670 err); 2671 } 2672 #endif 2673 2674 snd_m3_enable_ints(chip); 2675 snd_m3_assp_continue(chip); 2676 2677 *chip_ret = chip; 2678 2679 return 0; 2680 2681 free_chip: 2682 snd_m3_free(chip); 2683 return err; 2684 } 2685 2686 /* 2687 */ 2688 static int 2689 snd_m3_probe(struct pci_dev *pci, const struct pci_device_id *pci_id) 2690 { 2691 static int dev; 2692 struct snd_card *card; 2693 struct snd_m3 *chip; 2694 int err; 2695 2696 /* don't pick up modems */ 2697 if (((pci->class >> 8) & 0xffff) != PCI_CLASS_MULTIMEDIA_AUDIO) 2698 return -ENODEV; 2699 2700 if (dev >= SNDRV_CARDS) 2701 return -ENODEV; 2702 if (!enable[dev]) { 2703 dev++; 2704 return -ENOENT; 2705 } 2706 2707 err = snd_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE, 2708 0, &card); 2709 if (err < 0) 2710 return err; 2711 2712 switch (pci->device) { 2713 case PCI_DEVICE_ID_ESS_ALLEGRO: 2714 case PCI_DEVICE_ID_ESS_ALLEGRO_1: 2715 strcpy(card->driver, "Allegro"); 2716 break; 2717 case PCI_DEVICE_ID_ESS_CANYON3D_2LE: 2718 case PCI_DEVICE_ID_ESS_CANYON3D_2: 2719 strcpy(card->driver, "Canyon3D-2"); 2720 break; 2721 default: 2722 strcpy(card->driver, "Maestro3"); 2723 break; 2724 } 2725 2726 err = snd_m3_create(card, pci, external_amp[dev], amp_gpio[dev], &chip); 2727 if (err < 0) 2728 goto free_card; 2729 2730 card->private_data = chip; 2731 2732 sprintf(card->shortname, "ESS %s PCI", card->driver); 2733 sprintf(card->longname, "%s at 0x%lx, irq %d", 2734 card->shortname, chip->iobase, chip->irq); 2735 2736 err = snd_card_register(card); 2737 if (err < 0) 2738 goto free_card; 2739 2740 #if 0 /* TODO: not supported yet */ 2741 /* TODO enable MIDI IRQ and I/O */ 2742 err = snd_mpu401_uart_new(chip->card, 0, MPU401_HW_MPU401, 2743 chip->iobase + MPU401_DATA_PORT, 2744 MPU401_INFO_INTEGRATED | MPU401_INFO_IRQ_HOOK, 2745 -1, &chip->rmidi); 2746 if (err < 0) 2747 dev_warn(card->dev, "no MIDI support.\n"); 2748 #endif 2749 2750 pci_set_drvdata(pci, card); 2751 dev++; 2752 return 0; 2753 2754 free_card: 2755 snd_card_free(card); 2756 return err; 2757 } 2758 2759 static void snd_m3_remove(struct pci_dev *pci) 2760 { 2761 snd_card_free(pci_get_drvdata(pci)); 2762 } 2763 2764 static struct pci_driver m3_driver = { 2765 .name = KBUILD_MODNAME, 2766 .id_table = snd_m3_ids, 2767 .probe = snd_m3_probe, 2768 .remove = snd_m3_remove, 2769 .driver = { 2770 .pm = M3_PM_OPS, 2771 }, 2772 }; 2773 2774 module_pci_driver(m3_driver); 2775