31 #define CARD_NAME "ESS Maestro3/Allegro/Canyon3D-2"
32 #define DRIVER_NAME "Maestro3"
38 #include <linux/pci.h>
40 #include <linux/slab.h>
42 #include <linux/module.h>
44 #include <linux/input.h>
52 #include <asm/byteorder.h>
60 "{ESS,Allegro-1 PCI},"
61 "{ESS,Canyon3D-2/LE PCI}}");
80 MODULE_PARM_DESC(amp_gpio,
"GPIO pin number for external amp. (default = -1)");
82 #define MAX_PLAYBACKS 2
83 #define MAX_CAPTURES 1
84 #define NR_DSPS (MAX_PLAYBACKS + MAX_CAPTURES)
92 #define PCI_LEGACY_AUDIO_CTRL 0x40
93 #define SOUND_BLASTER_ENABLE 0x00000001
94 #define FM_SYNTHESIS_ENABLE 0x00000002
95 #define GAME_PORT_ENABLE 0x00000004
96 #define MPU401_IO_ENABLE 0x00000008
97 #define MPU401_IRQ_ENABLE 0x00000010
98 #define ALIAS_10BIT_IO 0x00000020
99 #define SB_DMA_MASK 0x000000C0
100 #define SB_DMA_0 0x00000040
101 #define SB_DMA_1 0x00000040
102 #define SB_DMA_R 0x00000080
103 #define SB_DMA_3 0x000000C0
104 #define SB_IRQ_MASK 0x00000700
105 #define SB_IRQ_5 0x00000000
106 #define SB_IRQ_7 0x00000100
107 #define SB_IRQ_9 0x00000200
108 #define SB_IRQ_10 0x00000300
109 #define MIDI_IRQ_MASK 0x00003800
110 #define SERIAL_IRQ_ENABLE 0x00004000
111 #define DISABLE_LEGACY 0x00008000
113 #define PCI_ALLEGRO_CONFIG 0x50
114 #define SB_ADDR_240 0x00000004
115 #define MPU_ADDR_MASK 0x00000018
116 #define MPU_ADDR_330 0x00000000
117 #define MPU_ADDR_300 0x00000008
118 #define MPU_ADDR_320 0x00000010
119 #define MPU_ADDR_340 0x00000018
120 #define USE_PCI_TIMING 0x00000040
121 #define POSTED_WRITE_ENABLE 0x00000080
122 #define DMA_POLICY_MASK 0x00000700
123 #define DMA_DDMA 0x00000000
124 #define DMA_TDMA 0x00000100
125 #define DMA_PCPCI 0x00000200
126 #define DMA_WBDMA16 0x00000400
127 #define DMA_WBDMA4 0x00000500
128 #define DMA_WBDMA2 0x00000600
129 #define DMA_WBDMA1 0x00000700
130 #define DMA_SAFE_GUARD 0x00000800
131 #define HI_PERF_GP_ENABLE 0x00001000
132 #define PIC_SNOOP_MODE_0 0x00002000
133 #define PIC_SNOOP_MODE_1 0x00004000
134 #define SOUNDBLASTER_IRQ_MASK 0x00008000
135 #define RING_IN_ENABLE 0x00010000
136 #define SPDIF_TEST_MODE 0x00020000
137 #define CLK_MULT_MODE_SELECT_2 0x00040000
138 #define EEPROM_WRITE_ENABLE 0x00080000
139 #define CODEC_DIR_IN 0x00100000
140 #define HV_BUTTON_FROM_GD 0x00200000
141 #define REDUCED_DEBOUNCE 0x00400000
142 #define HV_CTRL_ENABLE 0x00800000
143 #define SPDIF_ENABLE 0x01000000
144 #define CLK_DIV_SELECT 0x06000000
145 #define CLK_DIV_BY_48 0x00000000
146 #define CLK_DIV_BY_49 0x02000000
147 #define CLK_DIV_BY_50 0x04000000
148 #define CLK_DIV_RESERVED 0x06000000
149 #define PM_CTRL_ENABLE 0x08000000
150 #define CLK_MULT_MODE_SELECT 0x30000000
151 #define CLK_MULT_MODE_SHIFT 28
152 #define CLK_MULT_MODE_0 0x00000000
153 #define CLK_MULT_MODE_1 0x10000000
154 #define CLK_MULT_MODE_2 0x20000000
155 #define CLK_MULT_MODE_3 0x30000000
156 #define INT_CLK_SELECT 0x40000000
157 #define INT_CLK_MULT_RESET 0x80000000
160 #define INT_CLK_SRC_NOT_PCI 0x00100000
161 #define INT_CLK_MULT_ENABLE 0x80000000
163 #define PCI_ACPI_CONTROL 0x54
164 #define PCI_ACPI_D0 0x00000000
165 #define PCI_ACPI_D1 0xB4F70000
166 #define PCI_ACPI_D2 0xB4F7B4F7
168 #define PCI_USER_CONFIG 0x58
169 #define EXT_PCI_MASTER_ENABLE 0x00000001
170 #define SPDIF_OUT_SELECT 0x00000002
171 #define TEST_PIN_DIR_CTRL 0x00000004
172 #define AC97_CODEC_TEST 0x00000020
173 #define TRI_STATE_BUFFER 0x00000080
174 #define IN_CLK_12MHZ_SELECT 0x00000100
175 #define MULTI_FUNC_DISABLE 0x00000200
176 #define EXT_MASTER_PAIR_SEL 0x00000400
177 #define PCI_MASTER_SUPPORT 0x00000800
178 #define STOP_CLOCK_ENABLE 0x00001000
179 #define EAPD_DRIVE_ENABLE 0x00002000
180 #define REQ_TRI_STATE_ENABLE 0x00004000
181 #define REQ_LOW_ENABLE 0x00008000
182 #define MIDI_1_ENABLE 0x00010000
183 #define MIDI_2_ENABLE 0x00020000
184 #define SB_AUDIO_SYNC 0x00040000
185 #define HV_CTRL_TEST 0x00100000
186 #define SOUNDBLASTER_TEST 0x00400000
188 #define PCI_USER_CONFIG_C 0x5C
190 #define PCI_DDMA_CTRL 0x60
191 #define DDMA_ENABLE 0x00000001
195 #define HOST_INT_CTRL 0x18
196 #define SB_INT_ENABLE 0x0001
197 #define MPU401_INT_ENABLE 0x0002
198 #define ASSP_INT_ENABLE 0x0010
199 #define RING_INT_ENABLE 0x0020
200 #define HV_INT_ENABLE 0x0040
201 #define CLKRUN_GEN_ENABLE 0x0100
202 #define HV_CTRL_TO_PME 0x0400
203 #define SOFTWARE_RESET_ENABLE 0x8000
208 #define REGB_ENABLE_RESET 0x01
209 #define REGB_STOP_CLOCK 0x10
211 #define HOST_INT_STATUS 0x1A
212 #define SB_INT_PENDING 0x01
213 #define MPU401_INT_PENDING 0x02
214 #define ASSP_INT_PENDING 0x10
215 #define RING_INT_PENDING 0x20
216 #define HV_INT_PENDING 0x40
218 #define HARDWARE_VOL_CTRL 0x1B
219 #define SHADOW_MIX_REG_VOICE 0x1C
220 #define HW_VOL_COUNTER_VOICE 0x1D
221 #define SHADOW_MIX_REG_MASTER 0x1E
222 #define HW_VOL_COUNTER_MASTER 0x1F
224 #define CODEC_COMMAND 0x30
225 #define CODEC_READ_B 0x80
227 #define CODEC_STATUS 0x30
228 #define CODEC_BUSY_B 0x01
230 #define CODEC_DATA 0x32
232 #define RING_BUS_CTRL_A 0x36
233 #define RAC_PME_ENABLE 0x0100
234 #define RAC_SDFS_ENABLE 0x0200
235 #define LAC_PME_ENABLE 0x0400
236 #define LAC_SDFS_ENABLE 0x0800
237 #define SERIAL_AC_LINK_ENABLE 0x1000
238 #define IO_SRAM_ENABLE 0x2000
239 #define IIS_INPUT_ENABLE 0x8000
241 #define RING_BUS_CTRL_B 0x38
242 #define SECOND_CODEC_ID_MASK 0x0003
243 #define SPDIF_FUNC_ENABLE 0x0010
244 #define SECOND_AC_ENABLE 0x0020
245 #define SB_MODULE_INTF_ENABLE 0x0040
246 #define SSPE_ENABLE 0x0040
247 #define M3I_DOCK_ENABLE 0x0080
249 #define SDO_OUT_DEST_CTRL 0x3A
250 #define COMMAND_ADDR_OUT 0x0003
251 #define PCM_LR_OUT_LOCAL 0x0000
252 #define PCM_LR_OUT_REMOTE 0x0004
253 #define PCM_LR_OUT_MUTE 0x0008
254 #define PCM_LR_OUT_BOTH 0x000C
255 #define LINE1_DAC_OUT_LOCAL 0x0000
256 #define LINE1_DAC_OUT_REMOTE 0x0010
257 #define LINE1_DAC_OUT_MUTE 0x0020
258 #define LINE1_DAC_OUT_BOTH 0x0030
259 #define PCM_CLS_OUT_LOCAL 0x0000
260 #define PCM_CLS_OUT_REMOTE 0x0040
261 #define PCM_CLS_OUT_MUTE 0x0080
262 #define PCM_CLS_OUT_BOTH 0x00C0
263 #define PCM_RLF_OUT_LOCAL 0x0000
264 #define PCM_RLF_OUT_REMOTE 0x0100
265 #define PCM_RLF_OUT_MUTE 0x0200
266 #define PCM_RLF_OUT_BOTH 0x0300
267 #define LINE2_DAC_OUT_LOCAL 0x0000
268 #define LINE2_DAC_OUT_REMOTE 0x0400
269 #define LINE2_DAC_OUT_MUTE 0x0800
270 #define LINE2_DAC_OUT_BOTH 0x0C00
271 #define HANDSET_OUT_LOCAL 0x0000
272 #define HANDSET_OUT_REMOTE 0x1000
273 #define HANDSET_OUT_MUTE 0x2000
274 #define HANDSET_OUT_BOTH 0x3000
275 #define IO_CTRL_OUT_LOCAL 0x0000
276 #define IO_CTRL_OUT_REMOTE 0x4000
277 #define IO_CTRL_OUT_MUTE 0x8000
278 #define IO_CTRL_OUT_BOTH 0xC000
280 #define SDO_IN_DEST_CTRL 0x3C
281 #define STATUS_ADDR_IN 0x0003
282 #define PCM_LR_IN_LOCAL 0x0000
283 #define PCM_LR_IN_REMOTE 0x0004
284 #define PCM_LR_RESERVED 0x0008
285 #define PCM_LR_IN_BOTH 0x000C
286 #define LINE1_ADC_IN_LOCAL 0x0000
287 #define LINE1_ADC_IN_REMOTE 0x0010
288 #define LINE1_ADC_IN_MUTE 0x0020
289 #define MIC_ADC_IN_LOCAL 0x0000
290 #define MIC_ADC_IN_REMOTE 0x0040
291 #define MIC_ADC_IN_MUTE 0x0080
292 #define LINE2_DAC_IN_LOCAL 0x0000
293 #define LINE2_DAC_IN_REMOTE 0x0400
294 #define LINE2_DAC_IN_MUTE 0x0800
295 #define HANDSET_IN_LOCAL 0x0000
296 #define HANDSET_IN_REMOTE 0x1000
297 #define HANDSET_IN_MUTE 0x2000
298 #define IO_STATUS_IN_LOCAL 0x0000
299 #define IO_STATUS_IN_REMOTE 0x4000
301 #define SPDIF_IN_CTRL 0x3E
302 #define SPDIF_IN_ENABLE 0x0001
304 #define GPIO_DATA 0x60
305 #define GPIO_DATA_MASK 0x0FFF
306 #define GPIO_HV_STATUS 0x3000
307 #define GPIO_PME_STATUS 0x4000
309 #define GPIO_MASK 0x64
310 #define GPIO_DIRECTION 0x68
311 #define GPO_PRIMARY_AC97 0x0001
312 #define GPI_LINEOUT_SENSE 0x0004
313 #define GPO_SECONDARY_AC97 0x0008
314 #define GPI_VOL_DOWN 0x0010
315 #define GPI_VOL_UP 0x0020
316 #define GPI_IIS_CLK 0x0040
317 #define GPI_IIS_LRCLK 0x0080
318 #define GPI_IIS_DATA 0x0100
319 #define GPI_DOCKING_STATUS 0x0100
320 #define GPI_HEADPHONE_SENSE 0x0200
321 #define GPO_EXT_AMP_SHUTDOWN 0x1000
323 #define GPO_EXT_AMP_M3 1
324 #define GPO_EXT_AMP_ALLEGRO 8
327 #define GPO_M3_EXT_AMP_SHUTDN 0x0002
329 #define ASSP_INDEX_PORT 0x80
330 #define ASSP_MEMORY_PORT 0x82
331 #define ASSP_DATA_PORT 0x84
333 #define MPU401_DATA_PORT 0x98
334 #define MPU401_STATUS_PORT 0x99
336 #define CLK_MULT_DATA_PORT 0x9C
338 #define ASSP_CONTROL_A 0xA2
339 #define ASSP_0_WS_ENABLE 0x01
340 #define ASSP_CTRL_A_RESERVED1 0x02
341 #define ASSP_CTRL_A_RESERVED2 0x04
342 #define ASSP_CLK_49MHZ_SELECT 0x08
343 #define FAST_PLU_ENABLE 0x10
344 #define ASSP_CTRL_A_RESERVED3 0x20
345 #define DSP_CLK_36MHZ_SELECT 0x40
347 #define ASSP_CONTROL_B 0xA4
348 #define RESET_ASSP 0x00
349 #define RUN_ASSP 0x01
350 #define ENABLE_ASSP_CLOCK 0x00
351 #define STOP_ASSP_CLOCK 0x10
352 #define RESET_TOGGLE 0x40
354 #define ASSP_CONTROL_C 0xA6
355 #define ASSP_HOST_INT_ENABLE 0x01
356 #define FM_ADDR_REMAP_DISABLE 0x02
357 #define HOST_WRITE_PORT_ENABLE 0x08
359 #define ASSP_HOST_INT_STATUS 0xAC
360 #define DSP2HOST_REQ_PIORECORD 0x01
361 #define DSP2HOST_REQ_I2SRATE 0x02
362 #define DSP2HOST_REQ_TIMER 0x04
367 #define DSP_PORT_TIMER_COUNT 0x06
369 #define DSP_PORT_MEMORY_INDEX 0x80
371 #define DSP_PORT_MEMORY_TYPE 0x82
372 #define MEMTYPE_INTERNAL_CODE 0x0002
373 #define MEMTYPE_INTERNAL_DATA 0x0003
374 #define MEMTYPE_MASK 0x0003
376 #define DSP_PORT_MEMORY_DATA 0x84
378 #define DSP_PORT_CONTROL_REG_A 0xA2
379 #define DSP_PORT_CONTROL_REG_B 0xA4
380 #define DSP_PORT_CONTROL_REG_C 0xA6
382 #define REV_A_CODE_MEMORY_BEGIN 0x0000
383 #define REV_A_CODE_MEMORY_END 0x0FFF
384 #define REV_A_CODE_MEMORY_UNIT_LENGTH 0x0040
385 #define REV_A_CODE_MEMORY_LENGTH (REV_A_CODE_MEMORY_END - REV_A_CODE_MEMORY_BEGIN + 1)
387 #define REV_B_CODE_MEMORY_BEGIN 0x0000
388 #define REV_B_CODE_MEMORY_END 0x0BFF
389 #define REV_B_CODE_MEMORY_UNIT_LENGTH 0x0040
390 #define REV_B_CODE_MEMORY_LENGTH (REV_B_CODE_MEMORY_END - REV_B_CODE_MEMORY_BEGIN + 1)
392 #define REV_A_DATA_MEMORY_BEGIN 0x1000
393 #define REV_A_DATA_MEMORY_END 0x2FFF
394 #define REV_A_DATA_MEMORY_UNIT_LENGTH 0x0080
395 #define REV_A_DATA_MEMORY_LENGTH (REV_A_DATA_MEMORY_END - REV_A_DATA_MEMORY_BEGIN + 1)
397 #define REV_B_DATA_MEMORY_BEGIN 0x1000
398 #define REV_B_DATA_MEMORY_END 0x2BFF
399 #define REV_B_DATA_MEMORY_UNIT_LENGTH 0x0080
400 #define REV_B_DATA_MEMORY_LENGTH (REV_B_DATA_MEMORY_END - REV_B_DATA_MEMORY_BEGIN + 1)
403 #define NUM_UNITS_KERNEL_CODE 16
404 #define NUM_UNITS_KERNEL_DATA 2
406 #define NUM_UNITS_KERNEL_CODE_WITH_HSP 16
407 #define NUM_UNITS_KERNEL_DATA_WITH_HSP 5
413 #define DP_SHIFT_COUNT 7
415 #define KDATA_BASE_ADDR 0x1000
416 #define KDATA_BASE_ADDR2 0x1080
418 #define KDATA_TASK0 (KDATA_BASE_ADDR + 0x0000)
419 #define KDATA_TASK1 (KDATA_BASE_ADDR + 0x0001)
420 #define KDATA_TASK2 (KDATA_BASE_ADDR + 0x0002)
421 #define KDATA_TASK3 (KDATA_BASE_ADDR + 0x0003)
422 #define KDATA_TASK4 (KDATA_BASE_ADDR + 0x0004)
423 #define KDATA_TASK5 (KDATA_BASE_ADDR + 0x0005)
424 #define KDATA_TASK6 (KDATA_BASE_ADDR + 0x0006)
425 #define KDATA_TASK7 (KDATA_BASE_ADDR + 0x0007)
426 #define KDATA_TASK_ENDMARK (KDATA_BASE_ADDR + 0x0008)
428 #define KDATA_CURRENT_TASK (KDATA_BASE_ADDR + 0x0009)
429 #define KDATA_TASK_SWITCH (KDATA_BASE_ADDR + 0x000A)
431 #define KDATA_INSTANCE0_POS3D (KDATA_BASE_ADDR + 0x000B)
432 #define KDATA_INSTANCE1_POS3D (KDATA_BASE_ADDR + 0x000C)
433 #define KDATA_INSTANCE2_POS3D (KDATA_BASE_ADDR + 0x000D)
434 #define KDATA_INSTANCE3_POS3D (KDATA_BASE_ADDR + 0x000E)
435 #define KDATA_INSTANCE4_POS3D (KDATA_BASE_ADDR + 0x000F)
436 #define KDATA_INSTANCE5_POS3D (KDATA_BASE_ADDR + 0x0010)
437 #define KDATA_INSTANCE6_POS3D (KDATA_BASE_ADDR + 0x0011)
438 #define KDATA_INSTANCE7_POS3D (KDATA_BASE_ADDR + 0x0012)
439 #define KDATA_INSTANCE8_POS3D (KDATA_BASE_ADDR + 0x0013)
440 #define KDATA_INSTANCE_POS3D_ENDMARK (KDATA_BASE_ADDR + 0x0014)
442 #define KDATA_INSTANCE0_SPKVIRT (KDATA_BASE_ADDR + 0x0015)
443 #define KDATA_INSTANCE_SPKVIRT_ENDMARK (KDATA_BASE_ADDR + 0x0016)
445 #define KDATA_INSTANCE0_SPDIF (KDATA_BASE_ADDR + 0x0017)
446 #define KDATA_INSTANCE_SPDIF_ENDMARK (KDATA_BASE_ADDR + 0x0018)
448 #define KDATA_INSTANCE0_MODEM (KDATA_BASE_ADDR + 0x0019)
449 #define KDATA_INSTANCE_MODEM_ENDMARK (KDATA_BASE_ADDR + 0x001A)
451 #define KDATA_INSTANCE0_SRC (KDATA_BASE_ADDR + 0x001B)
452 #define KDATA_INSTANCE1_SRC (KDATA_BASE_ADDR + 0x001C)
453 #define KDATA_INSTANCE_SRC_ENDMARK (KDATA_BASE_ADDR + 0x001D)
455 #define KDATA_INSTANCE0_MINISRC (KDATA_BASE_ADDR + 0x001E)
456 #define KDATA_INSTANCE1_MINISRC (KDATA_BASE_ADDR + 0x001F)
457 #define KDATA_INSTANCE2_MINISRC (KDATA_BASE_ADDR + 0x0020)
458 #define KDATA_INSTANCE3_MINISRC (KDATA_BASE_ADDR + 0x0021)
459 #define KDATA_INSTANCE_MINISRC_ENDMARK (KDATA_BASE_ADDR + 0x0022)
461 #define KDATA_INSTANCE0_CPYTHRU (KDATA_BASE_ADDR + 0x0023)
462 #define KDATA_INSTANCE1_CPYTHRU (KDATA_BASE_ADDR + 0x0024)
463 #define KDATA_INSTANCE_CPYTHRU_ENDMARK (KDATA_BASE_ADDR + 0x0025)
465 #define KDATA_CURRENT_DMA (KDATA_BASE_ADDR + 0x0026)
466 #define KDATA_DMA_SWITCH (KDATA_BASE_ADDR + 0x0027)
467 #define KDATA_DMA_ACTIVE (KDATA_BASE_ADDR + 0x0028)
469 #define KDATA_DMA_XFER0 (KDATA_BASE_ADDR + 0x0029)
470 #define KDATA_DMA_XFER1 (KDATA_BASE_ADDR + 0x002A)
471 #define KDATA_DMA_XFER2 (KDATA_BASE_ADDR + 0x002B)
472 #define KDATA_DMA_XFER3 (KDATA_BASE_ADDR + 0x002C)
473 #define KDATA_DMA_XFER4 (KDATA_BASE_ADDR + 0x002D)
474 #define KDATA_DMA_XFER5 (KDATA_BASE_ADDR + 0x002E)
475 #define KDATA_DMA_XFER6 (KDATA_BASE_ADDR + 0x002F)
476 #define KDATA_DMA_XFER7 (KDATA_BASE_ADDR + 0x0030)
477 #define KDATA_DMA_XFER8 (KDATA_BASE_ADDR + 0x0031)
478 #define KDATA_DMA_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0032)
480 #define KDATA_I2S_SAMPLE_COUNT (KDATA_BASE_ADDR + 0x0033)
481 #define KDATA_I2S_INT_METER (KDATA_BASE_ADDR + 0x0034)
482 #define KDATA_I2S_ACTIVE (KDATA_BASE_ADDR + 0x0035)
484 #define KDATA_TIMER_COUNT_RELOAD (KDATA_BASE_ADDR + 0x0036)
485 #define KDATA_TIMER_COUNT_CURRENT (KDATA_BASE_ADDR + 0x0037)
487 #define KDATA_HALT_SYNCH_CLIENT (KDATA_BASE_ADDR + 0x0038)
488 #define KDATA_HALT_SYNCH_DMA (KDATA_BASE_ADDR + 0x0039)
489 #define KDATA_HALT_ACKNOWLEDGE (KDATA_BASE_ADDR + 0x003A)
491 #define KDATA_ADC1_XFER0 (KDATA_BASE_ADDR + 0x003B)
492 #define KDATA_ADC1_XFER_ENDMARK (KDATA_BASE_ADDR + 0x003C)
493 #define KDATA_ADC1_LEFT_VOLUME (KDATA_BASE_ADDR + 0x003D)
494 #define KDATA_ADC1_RIGHT_VOLUME (KDATA_BASE_ADDR + 0x003E)
495 #define KDATA_ADC1_LEFT_SUR_VOL (KDATA_BASE_ADDR + 0x003F)
496 #define KDATA_ADC1_RIGHT_SUR_VOL (KDATA_BASE_ADDR + 0x0040)
498 #define KDATA_ADC2_XFER0 (KDATA_BASE_ADDR + 0x0041)
499 #define KDATA_ADC2_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0042)
500 #define KDATA_ADC2_LEFT_VOLUME (KDATA_BASE_ADDR + 0x0043)
501 #define KDATA_ADC2_RIGHT_VOLUME (KDATA_BASE_ADDR + 0x0044)
502 #define KDATA_ADC2_LEFT_SUR_VOL (KDATA_BASE_ADDR + 0x0045)
503 #define KDATA_ADC2_RIGHT_SUR_VOL (KDATA_BASE_ADDR + 0x0046)
505 #define KDATA_CD_XFER0 (KDATA_BASE_ADDR + 0x0047)
506 #define KDATA_CD_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0048)
507 #define KDATA_CD_LEFT_VOLUME (KDATA_BASE_ADDR + 0x0049)
508 #define KDATA_CD_RIGHT_VOLUME (KDATA_BASE_ADDR + 0x004A)
509 #define KDATA_CD_LEFT_SUR_VOL (KDATA_BASE_ADDR + 0x004B)
510 #define KDATA_CD_RIGHT_SUR_VOL (KDATA_BASE_ADDR + 0x004C)
512 #define KDATA_MIC_XFER0 (KDATA_BASE_ADDR + 0x004D)
513 #define KDATA_MIC_XFER_ENDMARK (KDATA_BASE_ADDR + 0x004E)
514 #define KDATA_MIC_VOLUME (KDATA_BASE_ADDR + 0x004F)
515 #define KDATA_MIC_SUR_VOL (KDATA_BASE_ADDR + 0x0050)
517 #define KDATA_I2S_XFER0 (KDATA_BASE_ADDR + 0x0051)
518 #define KDATA_I2S_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0052)
520 #define KDATA_CHI_XFER0 (KDATA_BASE_ADDR + 0x0053)
521 #define KDATA_CHI_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0054)
523 #define KDATA_SPDIF_XFER (KDATA_BASE_ADDR + 0x0055)
524 #define KDATA_SPDIF_CURRENT_FRAME (KDATA_BASE_ADDR + 0x0056)
525 #define KDATA_SPDIF_FRAME0 (KDATA_BASE_ADDR + 0x0057)
526 #define KDATA_SPDIF_FRAME1 (KDATA_BASE_ADDR + 0x0058)
527 #define KDATA_SPDIF_FRAME2 (KDATA_BASE_ADDR + 0x0059)
529 #define KDATA_SPDIF_REQUEST (KDATA_BASE_ADDR + 0x005A)
530 #define KDATA_SPDIF_TEMP (KDATA_BASE_ADDR + 0x005B)
532 #define KDATA_SPDIFIN_XFER0 (KDATA_BASE_ADDR + 0x005C)
533 #define KDATA_SPDIFIN_XFER_ENDMARK (KDATA_BASE_ADDR + 0x005D)
534 #define KDATA_SPDIFIN_INT_METER (KDATA_BASE_ADDR + 0x005E)
536 #define KDATA_DSP_RESET_COUNT (KDATA_BASE_ADDR + 0x005F)
537 #define KDATA_DEBUG_OUTPUT (KDATA_BASE_ADDR + 0x0060)
539 #define KDATA_KERNEL_ISR_LIST (KDATA_BASE_ADDR + 0x0061)
541 #define KDATA_KERNEL_ISR_CBSR1 (KDATA_BASE_ADDR + 0x0062)
542 #define KDATA_KERNEL_ISR_CBER1 (KDATA_BASE_ADDR + 0x0063)
543 #define KDATA_KERNEL_ISR_CBCR (KDATA_BASE_ADDR + 0x0064)
544 #define KDATA_KERNEL_ISR_AR0 (KDATA_BASE_ADDR + 0x0065)
545 #define KDATA_KERNEL_ISR_AR1 (KDATA_BASE_ADDR + 0x0066)
546 #define KDATA_KERNEL_ISR_AR2 (KDATA_BASE_ADDR + 0x0067)
547 #define KDATA_KERNEL_ISR_AR3 (KDATA_BASE_ADDR + 0x0068)
548 #define KDATA_KERNEL_ISR_AR4 (KDATA_BASE_ADDR + 0x0069)
549 #define KDATA_KERNEL_ISR_AR5 (KDATA_BASE_ADDR + 0x006A)
550 #define KDATA_KERNEL_ISR_BRCR (KDATA_BASE_ADDR + 0x006B)
551 #define KDATA_KERNEL_ISR_PASR (KDATA_BASE_ADDR + 0x006C)
552 #define KDATA_KERNEL_ISR_PAER (KDATA_BASE_ADDR + 0x006D)
554 #define KDATA_CLIENT_SCRATCH0 (KDATA_BASE_ADDR + 0x006E)
555 #define KDATA_CLIENT_SCRATCH1 (KDATA_BASE_ADDR + 0x006F)
556 #define KDATA_KERNEL_SCRATCH (KDATA_BASE_ADDR + 0x0070)
557 #define KDATA_KERNEL_ISR_SCRATCH (KDATA_BASE_ADDR + 0x0071)
559 #define KDATA_OUEUE_LEFT (KDATA_BASE_ADDR + 0x0072)
560 #define KDATA_QUEUE_RIGHT (KDATA_BASE_ADDR + 0x0073)
562 #define KDATA_ADC1_REQUEST (KDATA_BASE_ADDR + 0x0074)
563 #define KDATA_ADC2_REQUEST (KDATA_BASE_ADDR + 0x0075)
564 #define KDATA_CD_REQUEST (KDATA_BASE_ADDR + 0x0076)
565 #define KDATA_MIC_REQUEST (KDATA_BASE_ADDR + 0x0077)
567 #define KDATA_ADC1_MIXER_REQUEST (KDATA_BASE_ADDR + 0x0078)
568 #define KDATA_ADC2_MIXER_REQUEST (KDATA_BASE_ADDR + 0x0079)
569 #define KDATA_CD_MIXER_REQUEST (KDATA_BASE_ADDR + 0x007A)
570 #define KDATA_MIC_MIXER_REQUEST (KDATA_BASE_ADDR + 0x007B)
571 #define KDATA_MIC_SYNC_COUNTER (KDATA_BASE_ADDR + 0x007C)
578 #define KDATA_MIXER_WORD0 (KDATA_BASE_ADDR2 + 0x0000)
579 #define KDATA_MIXER_WORD1 (KDATA_BASE_ADDR2 + 0x0001)
580 #define KDATA_MIXER_WORD2 (KDATA_BASE_ADDR2 + 0x0002)
581 #define KDATA_MIXER_WORD3 (KDATA_BASE_ADDR2 + 0x0003)
582 #define KDATA_MIXER_WORD4 (KDATA_BASE_ADDR2 + 0x0004)
583 #define KDATA_MIXER_WORD5 (KDATA_BASE_ADDR2 + 0x0005)
584 #define KDATA_MIXER_WORD6 (KDATA_BASE_ADDR2 + 0x0006)
585 #define KDATA_MIXER_WORD7 (KDATA_BASE_ADDR2 + 0x0007)
586 #define KDATA_MIXER_WORD8 (KDATA_BASE_ADDR2 + 0x0008)
587 #define KDATA_MIXER_WORD9 (KDATA_BASE_ADDR2 + 0x0009)
588 #define KDATA_MIXER_WORDA (KDATA_BASE_ADDR2 + 0x000A)
589 #define KDATA_MIXER_WORDB (KDATA_BASE_ADDR2 + 0x000B)
590 #define KDATA_MIXER_WORDC (KDATA_BASE_ADDR2 + 0x000C)
591 #define KDATA_MIXER_WORDD (KDATA_BASE_ADDR2 + 0x000D)
592 #define KDATA_MIXER_WORDE (KDATA_BASE_ADDR2 + 0x000E)
593 #define KDATA_MIXER_WORDF (KDATA_BASE_ADDR2 + 0x000F)
595 #define KDATA_MIXER_XFER0 (KDATA_BASE_ADDR2 + 0x0010)
596 #define KDATA_MIXER_XFER1 (KDATA_BASE_ADDR2 + 0x0011)
597 #define KDATA_MIXER_XFER2 (KDATA_BASE_ADDR2 + 0x0012)
598 #define KDATA_MIXER_XFER3 (KDATA_BASE_ADDR2 + 0x0013)
599 #define KDATA_MIXER_XFER4 (KDATA_BASE_ADDR2 + 0x0014)
600 #define KDATA_MIXER_XFER5 (KDATA_BASE_ADDR2 + 0x0015)
601 #define KDATA_MIXER_XFER6 (KDATA_BASE_ADDR2 + 0x0016)
602 #define KDATA_MIXER_XFER7 (KDATA_BASE_ADDR2 + 0x0017)
603 #define KDATA_MIXER_XFER8 (KDATA_BASE_ADDR2 + 0x0018)
604 #define KDATA_MIXER_XFER9 (KDATA_BASE_ADDR2 + 0x0019)
605 #define KDATA_MIXER_XFER_ENDMARK (KDATA_BASE_ADDR2 + 0x001A)
607 #define KDATA_MIXER_TASK_NUMBER (KDATA_BASE_ADDR2 + 0x001B)
608 #define KDATA_CURRENT_MIXER (KDATA_BASE_ADDR2 + 0x001C)
609 #define KDATA_MIXER_ACTIVE (KDATA_BASE_ADDR2 + 0x001D)
610 #define KDATA_MIXER_BANK_STATUS (KDATA_BASE_ADDR2 + 0x001E)
611 #define KDATA_DAC_LEFT_VOLUME (KDATA_BASE_ADDR2 + 0x001F)
612 #define KDATA_DAC_RIGHT_VOLUME (KDATA_BASE_ADDR2 + 0x0020)
614 #define MAX_INSTANCE_MINISRC (KDATA_INSTANCE_MINISRC_ENDMARK - KDATA_INSTANCE0_MINISRC)
615 #define MAX_VIRTUAL_DMA_CHANNELS (KDATA_DMA_XFER_ENDMARK - KDATA_DMA_XFER0)
616 #define MAX_VIRTUAL_MIXER_CHANNELS (KDATA_MIXER_XFER_ENDMARK - KDATA_MIXER_XFER0)
617 #define MAX_VIRTUAL_ADC1_CHANNELS (KDATA_ADC1_XFER_ENDMARK - KDATA_ADC1_XFER0)
622 #define CDATA_INSTANCE_READY 0x00
624 #define CDATA_HOST_SRC_ADDRL 0x01
625 #define CDATA_HOST_SRC_ADDRH 0x02
626 #define CDATA_HOST_SRC_END_PLUS_1L 0x03
627 #define CDATA_HOST_SRC_END_PLUS_1H 0x04
628 #define CDATA_HOST_SRC_CURRENTL 0x05
629 #define CDATA_HOST_SRC_CURRENTH 0x06
631 #define CDATA_IN_BUF_CONNECT 0x07
632 #define CDATA_OUT_BUF_CONNECT 0x08
634 #define CDATA_IN_BUF_BEGIN 0x09
635 #define CDATA_IN_BUF_END_PLUS_1 0x0A
636 #define CDATA_IN_BUF_HEAD 0x0B
637 #define CDATA_IN_BUF_TAIL 0x0C
638 #define CDATA_OUT_BUF_BEGIN 0x0D
639 #define CDATA_OUT_BUF_END_PLUS_1 0x0E
640 #define CDATA_OUT_BUF_HEAD 0x0F
641 #define CDATA_OUT_BUF_TAIL 0x10
643 #define CDATA_DMA_CONTROL 0x11
644 #define CDATA_RESERVED 0x12
646 #define CDATA_FREQUENCY 0x13
647 #define CDATA_LEFT_VOLUME 0x14
648 #define CDATA_RIGHT_VOLUME 0x15
649 #define CDATA_LEFT_SUR_VOL 0x16
650 #define CDATA_RIGHT_SUR_VOL 0x17
652 #define CDATA_HEADER_LEN 0x18
654 #define SRC3_DIRECTION_OFFSET CDATA_HEADER_LEN
655 #define SRC3_MODE_OFFSET (CDATA_HEADER_LEN + 1)
656 #define SRC3_WORD_LENGTH_OFFSET (CDATA_HEADER_LEN + 2)
657 #define SRC3_PARAMETER_OFFSET (CDATA_HEADER_LEN + 3)
658 #define SRC3_COEFF_ADDR_OFFSET (CDATA_HEADER_LEN + 8)
659 #define SRC3_FILTAP_ADDR_OFFSET (CDATA_HEADER_LEN + 10)
660 #define SRC3_TEMP_INBUF_ADDR_OFFSET (CDATA_HEADER_LEN + 16)
661 #define SRC3_TEMP_OUTBUF_ADDR_OFFSET (CDATA_HEADER_LEN + 17)
663 #define MINISRC_IN_BUFFER_SIZE ( 0x50 * 2 )
664 #define MINISRC_OUT_BUFFER_SIZE ( 0x50 * 2 * 2)
665 #define MINISRC_TMP_BUFFER_SIZE ( 112 + ( MINISRC_BIQUAD_STAGE * 3 + 4 ) * 2 * 2 )
666 #define MINISRC_BIQUAD_STAGE 2
667 #define MINISRC_COEF_LOC 0x175
669 #define DMACONTROL_BLOCK_MASK 0x000F
670 #define DMAC_BLOCK0_SELECTOR 0x0000
671 #define DMAC_BLOCK1_SELECTOR 0x0001
672 #define DMAC_BLOCK2_SELECTOR 0x0002
673 #define DMAC_BLOCK3_SELECTOR 0x0003
674 #define DMAC_BLOCK4_SELECTOR 0x0004
675 #define DMAC_BLOCK5_SELECTOR 0x0005
676 #define DMAC_BLOCK6_SELECTOR 0x0006
677 #define DMAC_BLOCK7_SELECTOR 0x0007
678 #define DMAC_BLOCK8_SELECTOR 0x0008
679 #define DMAC_BLOCK9_SELECTOR 0x0009
680 #define DMAC_BLOCKA_SELECTOR 0x000A
681 #define DMAC_BLOCKB_SELECTOR 0x000B
682 #define DMAC_BLOCKC_SELECTOR 0x000C
683 #define DMAC_BLOCKD_SELECTOR 0x000D
684 #define DMAC_BLOCKE_SELECTOR 0x000E
685 #define DMAC_BLOCKF_SELECTOR 0x000F
686 #define DMACONTROL_PAGE_MASK 0x00F0
687 #define DMAC_PAGE0_SELECTOR 0x0030
688 #define DMAC_PAGE1_SELECTOR 0x0020
689 #define DMAC_PAGE2_SELECTOR 0x0010
690 #define DMAC_PAGE3_SELECTOR 0x0000
691 #define DMACONTROL_AUTOREPEAT 0x1000
692 #define DMACONTROL_STOPPED 0x2000
693 #define DMACONTROL_DIRECTION 0x0100
701 #define ARB_VOLUME ( 0x6800 )
781 #ifdef CONFIG_SND_MAESTRO3_INPUT
782 struct input_dev *input_dev;
792 #ifdef CONFIG_PM_SLEEP
825 static struct snd_pci_quirk m3_amp_quirk_list[]
__devinitdata = {
826 SND_PCI_QUIRK(0x0E11, 0x0094,
"Compaq Evo N600c", 0x0c),
827 SND_PCI_QUIRK(0x10f7, 0x833e,
"Panasonic CF-28", 0x0d),
828 SND_PCI_QUIRK(0x10f7, 0x833d,
"Panasonic CF-72", 0x0d),
829 SND_PCI_QUIRK(0x1033, 0x80f1,
"NEC LM800J/7", 0x03),
830 SND_PCI_QUIRK(0x1509, 0x1740,
"LEGEND ZhaoYang 3100CF", 0x03),
834 static struct snd_pci_quirk m3_irda_quirk_list[] __devinitdata = {
835 SND_PCI_QUIRK(0x1028, 0x00b0,
"Dell Inspiron 4000", 1),
836 SND_PCI_QUIRK(0x1028, 0x00a4,
"Dell Inspiron 8000", 1),
837 SND_PCI_QUIRK(0x1028, 0x00e6,
"Dell Inspiron 8100", 1),
842 static struct snd_pci_quirk m3_hv_quirk_list[] __devinitdata = {
869 SND_PCI_QUIRK(0x1033, 0x80F1,
NULL,
871 SND_PCI_QUIRK(0x103C, 0x001A,
NULL,
873 SND_PCI_QUIRK(0x107B, 0x340A,
NULL,
875 SND_PCI_QUIRK(0x107B, 0x3450,
NULL,
877 SND_PCI_QUIRK(0x109F, 0x3134,
NULL,
879 SND_PCI_QUIRK(0x109F, 0x3161,
NULL,
881 SND_PCI_QUIRK(0x144D, 0x3280,
NULL,
883 SND_PCI_QUIRK(0x144D, 0x3281,
NULL,
885 SND_PCI_QUIRK(0x144D, 0xC002,
NULL,
887 SND_PCI_QUIRK(0x144D, 0xC003,
NULL,
889 SND_PCI_QUIRK(0x1509, 0x1740,
NULL,
891 SND_PCI_QUIRK(0x1610, 0x0010,
NULL,
920 static struct snd_pci_quirk m3_omnibook_quirk_list[] __devinitdata = {
921 SND_PCI_QUIRK_ID(0x103c, 0x0010),
922 SND_PCI_QUIRK_ID(0x103c, 0x0011),
968 static void snd_m3_assp_halt(
struct snd_m3 *
chip)
975 static void snd_m3_assp_continue(
struct snd_m3 *
chip)
1000 int lastindex = list->
curlen - 1;
1002 if (index != lastindex) {
1017 static void snd_m3_inc_timer_users(
struct snd_m3 *chip)
1036 static void snd_m3_dec_timer_users(
struct snd_m3 *chip)
1060 static int snd_m3_pcm_start(
struct snd_m3 *chip,
struct m3_dma *
s,
1066 snd_m3_inc_timer_users(chip);
1087 static int snd_m3_pcm_stop(
struct snd_m3 *chip,
struct m3_dma *s,
1095 snd_m3_dec_timer_users(chip);
1129 err = snd_m3_pcm_start(chip, s, subs);
1138 err = snd_m3_pcm_stop(chip, s, subs);
1152 int dsp_in_size, dsp_out_size, dsp_in_buffer, dsp_out_buffer;
1163 dsp_out_buffer = dsp_in_buffer + (dsp_in_size / 2) + 1;
1170 #define LO(x) ((x) & 0xffff)
1171 #define HI(x) LO((x) >> 16)
1208 dsp_in_buffer + (dsp_in_size / 2));
1224 dsp_out_buffer + (dsp_out_size / 2));
1235 static void snd_m3_pcm_setup2(
struct snd_m3 *chip,
struct m3_dma *s,
1263 freq = ((runtime->
rate << 15) + 24000 ) / 48000;
1273 static const struct play_vals {
1302 snd_m3_playback_setup(
struct snd_m3 *chip,
struct m3_dma *s,
1313 s->
inst.data + 40 + 8);
1322 subs->
runtime->rate > 45000 ? 0xff : 0);
1334 s->
inst.data +
pv[i].addr,
pv[i].val);
1340 static const struct rec_vals {
1379 s->
inst.data + 40 + 8);
1392 s->
inst.data + rv[i].addr, rv[i].val);
1418 s = substream->
runtime->private_data;
1437 if (runtime->
rate > 48000 ||
1438 runtime->
rate < 8000)
1443 snd_m3_pcm_setup1(chip, s, subs);
1446 snd_m3_playback_setup(chip, s, subs);
1448 snd_m3_capture_setup(chip, s, subs);
1450 snd_m3_pcm_setup2(chip, s, runtime);
1481 addr =
lo | ((
u32)hi<<16);
1496 ptr = snd_m3_get_pointer(chip, s, subs);
1498 return bytes_to_frames(subs->
runtime, ptr);
1504 static void snd_m3_update_ptr(
struct snd_m3 *chip,
struct m3_dma *s)
1513 hwptr = snd_m3_get_pointer(chip, s, subs);
1572 #ifndef CONFIG_SND_MAESTRO3_INPUT
1586 if ((val & 0x7f) > 0)
1588 if ((val & 0x7f00) > 0)
1593 if ((val & 0x7f) < 0x1f)
1595 if ((val & 0x7f00) < 0x1f00)
1603 if (!chip->input_dev)
1625 input_report_key(chip->input_dev, val, 1);
1626 input_sync(chip->input_dev);
1627 input_report_key(chip->input_dev, val, 0);
1628 input_sync(chip->input_dev);
1662 snd_m3_update_ptr(chip, s);
1699 .period_bytes_min = 64,
1700 .period_bytes_max = (512*1024),
1720 .period_bytes_min = 64,
1721 .period_bytes_max = (512*1024),
1792 if ((err = snd_m3_substream_open(chip, subs)) < 0)
1795 runtime->
hw = snd_m3_playback;
1805 snd_m3_substream_close(chip, subs);
1816 if ((err = snd_m3_substream_open(chip, subs)) < 0)
1819 runtime->
hw = snd_m3_capture;
1829 snd_m3_substream_close(chip, subs);
1838 .open = snd_m3_playback_open,
1839 .close = snd_m3_playback_close,
1841 .hw_params = snd_m3_pcm_hw_params,
1842 .hw_free = snd_m3_pcm_hw_free,
1843 .prepare = snd_m3_pcm_prepare,
1844 .trigger = snd_m3_pcm_trigger,
1845 .pointer = snd_m3_pcm_pointer,
1849 .open = snd_m3_capture_open,
1850 .close = snd_m3_capture_close,
1852 .hw_params = snd_m3_pcm_hw_params,
1853 .hw_free = snd_m3_pcm_hw_free,
1854 .prepare = snd_m3_pcm_prepare,
1855 .trigger = snd_m3_pcm_trigger,
1856 .pointer = snd_m3_pcm_pointer,
1893 static int snd_m3_ac97_wait(
struct snd_m3 *chip)
1898 if (! (snd_m3_inb(chip, 0x30) & 1))
1907 static unsigned short
1908 snd_m3_ac97_read(
struct snd_ac97 *ac97,
unsigned short reg)
1911 unsigned short data = 0xffff;
1913 if (snd_m3_ac97_wait(chip))
1916 if (snd_m3_ac97_wait(chip))
1924 snd_m3_ac97_write(
struct snd_ac97 *ac97,
unsigned short reg,
unsigned short val)
1928 if (snd_m3_ac97_wait(chip))
1935 static void snd_m3_remote_codec_config(
int io,
int isremote)
1937 isremote = isremote ? 1 : 0;
1950 static int snd_m3_try_read_vendor(
struct snd_m3 *chip)
1954 if (snd_m3_ac97_wait(chip))
1959 if (snd_m3_ac97_wait(chip))
1962 ret = snd_m3_inw(chip, 0x32);
1964 return (ret == 0) || (ret == 0xffff);
1967 static void snd_m3_ac97_reset(
struct snd_m3 *chip)
1970 int delay1 = 0, delay2 = 0,
i;
1987 for (i = 0; i < 5; i++) {
1992 snd_m3_remote_codec_config(io, 0);
2012 if (! snd_m3_try_read_vendor(chip))
2018 snd_printd(
"maestro3: retrying codec reset with delays of %d and %d ms\n",
2038 #ifndef CONFIG_SND_MAESTRO3_INPUT
2043 .write = snd_m3_ac97_write,
2044 .read = snd_m3_ac97_read,
2050 memset(&ac97, 0,
sizeof(ac97));
2060 #ifndef CONFIG_SND_MAESTRO3_INPUT
2061 memset(&elem_id, 0,
sizeof(elem_id));
2063 strcpy(elem_id.name,
"Master Playback Switch");
2065 memset(&elem_id, 0,
sizeof(elem_id));
2067 strcpy(elem_id.name,
"Master Playback Volume");
2079 #define MINISRC_LPF_LEN 10
2081 0X0743, 0X1104, 0X0A4C, 0XF88D, 0X242C,
2082 0X1023, 0X1AA9, 0X0B60, 0XEFDD, 0X186F
2085 static void snd_m3_assp_init(
struct snd_m3 *chip)
2193 data_bytes =
ALIGN(data_bytes, 256);
2194 address = 0x1100 + ((data_bytes/2) * index);
2196 if ((address + (data_bytes/2)) >= 0x1c00) {
2198 data_bytes, index, address);
2203 s->
inst.code = 0x400;
2206 for (i = data_bytes / 2; i > 0; address++, i--) {
2230 polarity = enable ? 0 : 1;
2231 polarity = polarity << chip->
amp_gpio;
2246 snd_m3_hv_init(
struct snd_m3 *chip)
2248 unsigned long io = chip->
iobase;
2269 snd_m3_chip_init(
struct snd_m3 *chip)
2272 unsigned long io = chip->
iobase;
2313 snd_m3_assp_init(chip);
2326 snd_m3_enable_ints(
struct snd_m3 *chip)
2328 unsigned long io = chip->
iobase;
2345 static int snd_m3_free(
struct snd_m3 *chip)
2351 #ifdef CONFIG_SND_MAESTRO3_INPUT
2352 if (chip->input_dev)
2353 input_unregister_device(chip->input_dev);
2371 #ifdef CONFIG_PM_SLEEP
2372 vfree(chip->suspend_mem);
2393 #ifdef CONFIG_PM_SLEEP
2394 static int m3_suspend(
struct device *
dev)
2401 if (chip->suspend_mem ==
NULL)
2407 snd_pcm_suspend_all(chip->
pcm);
2408 snd_ac97_suspend(chip->
ac97);
2412 snd_m3_assp_halt(chip);
2417 chip->suspend_mem[dsp_index++] =
2420 chip->suspend_mem[dsp_index++] =
2429 static int m3_resume(
struct device *dev)
2436 if (chip->suspend_mem ==
NULL)
2443 "disabling device\n");
2450 snd_m3_outw(chip, 0, 0x54);
2451 snd_m3_outw(chip, 0, 0x56);
2453 snd_m3_chip_init(chip);
2454 snd_m3_assp_halt(chip);
2455 snd_m3_ac97_reset(chip);
2461 chip->suspend_mem[dsp_index++]);
2464 chip->suspend_mem[dsp_index++]);
2471 snd_ac97_resume(chip->
ac97);
2473 snd_m3_assp_continue(chip);
2474 snd_m3_enable_ints(chip);
2475 snd_m3_amp_enable(chip, 1);
2477 snd_m3_hv_init(chip);
2485 #define M3_PM_OPS &m3_pm
2487 #define M3_PM_OPS NULL
2490 #ifdef CONFIG_SND_MAESTRO3_INPUT
2493 struct input_dev *input_dev;
2496 input_dev = input_allocate_device();
2500 snprintf(chip->phys,
sizeof(chip->phys),
"pci-%s/input0",
2501 pci_name(chip->
pci));
2503 input_dev->name = chip->
card->driver;
2504 input_dev->phys = chip->phys;
2505 input_dev->id.bustype =
BUS_PCI;
2506 input_dev->id.vendor = chip->
pci->vendor;
2507 input_dev->id.product = chip->
pci->device;
2508 input_dev->dev.parent = &chip->
pci->dev;
2515 err = input_register_device(input_dev);
2517 input_free_device(input_dev);
2521 chip->input_dev = input_dev;
2529 static int snd_m3_dev_free(
struct snd_device *device)
2532 return snd_m3_free(chip);
2539 struct snd_m3 **chip_ret)
2543 const struct snd_pci_quirk *quirk;
2545 .dev_free = snd_m3_dev_free,
2555 pci_set_consistent_dma_mask(pci,
DMA_BIT_MASK(28)) < 0) {
2584 if (amp_gpio >= 0 && amp_gpio <= 0x0f)
2587 quirk = snd_pci_quirk_lookup(pci, m3_amp_quirk_list);
2590 "for '%s'\n", quirk->name);
2598 quirk = snd_pci_quirk_lookup(pci, m3_irda_quirk_list);
2601 "for '%s'\n", quirk->name);
2604 quirk = snd_pci_quirk_lookup(pci, m3_hv_quirk_list);
2607 if (snd_pci_quirk_lookup(pci, m3_omnibook_quirk_list))
2620 "ess/maestro3_assp_kernel.fw", &pci->
dev);
2627 "ess/maestro3_assp_minisrc.fw", &pci->
dev);
2642 snd_m3_chip_init(chip);
2643 snd_m3_assp_halt(chip);
2645 snd_m3_ac97_reset(chip);
2647 snd_m3_amp_enable(chip, 1);
2649 snd_m3_hv_init(chip);
2652 KBUILD_MODNAME, chip)) {
2659 #ifdef CONFIG_PM_SLEEP
2661 if (chip->suspend_mem ==
NULL)
2670 if ((err = snd_m3_mixer(chip)) < 0)
2675 if ((err = snd_m3_assp_client_init(chip, s, i)) < 0)
2679 if ((err = snd_m3_pcm(chip, 0)) < 0)
2682 #ifdef CONFIG_SND_MAESTRO3_INPUT
2684 err = snd_m3_input_register(chip);
2687 "failed with error %i", err);
2691 snd_m3_enable_ints(chip);
2692 snd_m3_assp_continue(chip);
2740 if ((err = snd_m3_create(card, pci,
2768 pci_set_drvdata(pci, card);
2776 pci_set_drvdata(pci,
NULL);
2780 .name = KBUILD_MODNAME,
2781 .id_table = snd_m3_ids,
2782 .probe = snd_m3_probe,