source: GPL/alsa-kernel/pci/maestro3.c@ 18

Last change on this file since 18 was 18, checked in by vladest, 20 years ago

initial import

File size: 104.7 KB
Line 
1/*
2 * Driver for ESS Maestro3/Allegro (ES1988) soundcards.
3 * Copyright (c) 2000 by Zach Brown <zab@zabbo.net>
4 * Takashi Iwai <tiwai@suse.de>
5 *
6 * Most of the hardware init stuffs are based on maestro3 driver for
7 * OSS/Free by Zach Brown. Many thanks to Zach!
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 *
24 * ChangeLog:
25 * Aug. 27, 2001
26 * - Fixed deadlock on capture
27 * - Added Canyon3D-2 support by Rob Riggs <rob@pangalactic.org>
28 *
29 */
30
31#define CARD_NAME "ESS Maestro3/Allegro/Canyon3D-2"
32#define DRIVER_NAME "Maestro3"
33
34#include <sound/driver.h>
35#include <sound/info.h>
36#include <sound/control.h>
37#include <sound/pcm.h>
38#include <sound/ac97_codec.h>
39#define SNDRV_GET_ID
40#include <sound/initval.h>
41
42MODULE_AUTHOR("Zach Brown <zab@zabbo.net>, Takashi Iwai <tiwai@suse.de>");
43MODULE_DESCRIPTION("ESS Maestro3 PCI");
44MODULE_CLASSES("{sound}");
45MODULE_DEVICES("{{ESS,Maestro3 PCI},"
46 "{ESS,ES1988},"
47 "{ESS,Allegro PCI},"
48 "{ESS,Allegro-1 PCI},"
49 "{ESS,Canyon3D-2/LE PCI}}");
50
51static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
52static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
53static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* all enabled */
54static int external_amp[SNDRV_CARDS] = {REPEAT_SNDRV(1)};
55static int amp_gpio[SNDRV_CARDS] = {REPEAT_SNDRV(-1)};
56
57MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
58MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard.");
59MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC);
60MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");
61MODULE_PARM_DESC(id, "ID string for " CARD_NAME " soundcard.");
62MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC);
63MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
64MODULE_PARM_DESC(enable, "Enable this soundcard.");
65MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC);
66MODULE_PARM(external_amp, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
67MODULE_PARM_DESC(external_amp, "Enable external amp for " CARD_NAME " soundcard.");
68MODULE_PARM_SYNTAX(external_amp, SNDRV_ENABLED "," SNDRV_BOOLEAN_TRUE_DESC);
69MODULE_PARM(amp_gpio, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
70MODULE_PARM_DESC(amp_gpio, "GPIO pin number for external amp. (default = -1)");
71MODULE_PARM_SYNTAX(amp_gpio, SNDRV_ENABLED);
72
73#define MAX_PLAYBACKS 2
74#define MAX_CAPTURES 1
75#define NR_DSPS (MAX_PLAYBACKS + MAX_CAPTURES)
76
77
78/*
79 * maestro3 registers
80 */
81
82/* Allegro PCI configuration registers */
83#define PCI_LEGACY_AUDIO_CTRL 0x40
84#define SOUND_BLASTER_ENABLE 0x00000001
85#define FM_SYNTHESIS_ENABLE 0x00000002
86#define GAME_PORT_ENABLE 0x00000004
87#define MPU401_IO_ENABLE 0x00000008
88#define MPU401_IRQ_ENABLE 0x00000010
89#define ALIAS_10BIT_IO 0x00000020
90#define SB_DMA_MASK 0x000000C0
91#define SB_DMA_0 0x00000040
92#define SB_DMA_1 0x00000040
93#define SB_DMA_R 0x00000080
94#define SB_DMA_3 0x000000C0
95#define SB_IRQ_MASK 0x00000700
96#define SB_IRQ_5 0x00000000
97#define SB_IRQ_7 0x00000100
98#define SB_IRQ_9 0x00000200
99#define SB_IRQ_10 0x00000300
100#define MIDI_IRQ_MASK 0x00003800
101#define SERIAL_IRQ_ENABLE 0x00004000
102#define DISABLE_LEGACY 0x00008000
103
104#define PCI_ALLEGRO_CONFIG 0x50
105#define SB_ADDR_240 0x00000004
106#define MPU_ADDR_MASK 0x00000018
107#define MPU_ADDR_330 0x00000000
108#define MPU_ADDR_300 0x00000008
109#define MPU_ADDR_320 0x00000010
110#define MPU_ADDR_340 0x00000018
111#define USE_PCI_TIMING 0x00000040
112#define POSTED_WRITE_ENABLE 0x00000080
113#define DMA_POLICY_MASK 0x00000700
114#define DMA_DDMA 0x00000000
115#define DMA_TDMA 0x00000100
116#define DMA_PCPCI 0x00000200
117#define DMA_WBDMA16 0x00000400
118#define DMA_WBDMA4 0x00000500
119#define DMA_WBDMA2 0x00000600
120#define DMA_WBDMA1 0x00000700
121#define DMA_SAFE_GUARD 0x00000800
122#define HI_PERF_GP_ENABLE 0x00001000
123#define PIC_SNOOP_MODE_0 0x00002000
124#define PIC_SNOOP_MODE_1 0x00004000
125#define SOUNDBLASTER_IRQ_MASK 0x00008000
126#define RING_IN_ENABLE 0x00010000
127#define SPDIF_TEST_MODE 0x00020000
128#define CLK_MULT_MODE_SELECT_2 0x00040000
129#define EEPROM_WRITE_ENABLE 0x00080000
130#define CODEC_DIR_IN 0x00100000
131#define HV_BUTTON_FROM_GD 0x00200000
132#define REDUCED_DEBOUNCE 0x00400000
133#define HV_CTRL_ENABLE 0x00800000
134#define SPDIF_ENABLE 0x01000000
135#define CLK_DIV_SELECT 0x06000000
136#define CLK_DIV_BY_48 0x00000000
137#define CLK_DIV_BY_49 0x02000000
138#define CLK_DIV_BY_50 0x04000000
139#define CLK_DIV_RESERVED 0x06000000
140#define PM_CTRL_ENABLE 0x08000000
141#define CLK_MULT_MODE_SELECT 0x30000000
142#define CLK_MULT_MODE_SHIFT 28
143#define CLK_MULT_MODE_0 0x00000000
144#define CLK_MULT_MODE_1 0x10000000
145#define CLK_MULT_MODE_2 0x20000000
146#define CLK_MULT_MODE_3 0x30000000
147#define INT_CLK_SELECT 0x40000000
148#define INT_CLK_MULT_RESET 0x80000000
149
150/* M3 */
151#define INT_CLK_SRC_NOT_PCI 0x00100000
152#define INT_CLK_MULT_ENABLE 0x80000000
153
154#define PCI_ACPI_CONTROL 0x54
155#define PCI_ACPI_D0 0x00000000
156#define PCI_ACPI_D1 0xB4F70000
157#define PCI_ACPI_D2 0xB4F7B4F7
158
159#define PCI_USER_CONFIG 0x58
160#define EXT_PCI_MASTER_ENABLE 0x00000001
161#define SPDIF_OUT_SELECT 0x00000002
162#define TEST_PIN_DIR_CTRL 0x00000004
163#define AC97_CODEC_TEST 0x00000020
164#define TRI_STATE_BUFFER 0x00000080
165#define IN_CLK_12MHZ_SELECT 0x00000100
166#define MULTI_FUNC_DISABLE 0x00000200
167#define EXT_MASTER_PAIR_SEL 0x00000400
168#define PCI_MASTER_SUPPORT 0x00000800
169#define STOP_CLOCK_ENABLE 0x00001000
170#define EAPD_DRIVE_ENABLE 0x00002000
171#define REQ_TRI_STATE_ENABLE 0x00004000
172#define REQ_LOW_ENABLE 0x00008000
173#define MIDI_1_ENABLE 0x00010000
174#define MIDI_2_ENABLE 0x00020000
175#define SB_AUDIO_SYNC 0x00040000
176#define HV_CTRL_TEST 0x00100000
177#define SOUNDBLASTER_TEST 0x00400000
178
179#define PCI_USER_CONFIG_C 0x5C
180
181#define PCI_DDMA_CTRL 0x60
182#define DDMA_ENABLE 0x00000001
183
184
185/* Allegro registers */
186#define HOST_INT_CTRL 0x18
187#define SB_INT_ENABLE 0x0001
188#define MPU401_INT_ENABLE 0x0002
189#define ASSP_INT_ENABLE 0x0010
190#define RING_INT_ENABLE 0x0020
191#define HV_INT_ENABLE 0x0040
192#define CLKRUN_GEN_ENABLE 0x0100
193#define HV_CTRL_TO_PME 0x0400
194#define SOFTWARE_RESET_ENABLE 0x8000
195
196/*
197 * should be using the above defines, probably.
198 */
199#define REGB_ENABLE_RESET 0x01
200#define REGB_STOP_CLOCK 0x10
201
202#define HOST_INT_STATUS 0x1A
203#define SB_INT_PENDING 0x01
204#define MPU401_INT_PENDING 0x02
205#define ASSP_INT_PENDING 0x10
206#define RING_INT_PENDING 0x20
207#define HV_INT_PENDING 0x40
208
209#define HARDWARE_VOL_CTRL 0x1B
210#define SHADOW_MIX_REG_VOICE 0x1C
211#define HW_VOL_COUNTER_VOICE 0x1D
212#define SHADOW_MIX_REG_MASTER 0x1E
213#define HW_VOL_COUNTER_MASTER 0x1F
214
215#define CODEC_COMMAND 0x30
216#define CODEC_READ_B 0x80
217
218#define CODEC_STATUS 0x30
219#define CODEC_BUSY_B 0x01
220
221#define CODEC_DATA 0x32
222
223#define RING_BUS_CTRL_A 0x36
224#define RAC_PME_ENABLE 0x0100
225#define RAC_SDFS_ENABLE 0x0200
226#define LAC_PME_ENABLE 0x0400
227#define LAC_SDFS_ENABLE 0x0800
228#define SERIAL_AC_LINK_ENABLE 0x1000
229#define IO_SRAM_ENABLE 0x2000
230#define IIS_INPUT_ENABLE 0x8000
231
232#define RING_BUS_CTRL_B 0x38
233#define SECOND_CODEC_ID_MASK 0x0003
234#define SPDIF_FUNC_ENABLE 0x0010
235#define SECOND_AC_ENABLE 0x0020
236#define SB_MODULE_INTF_ENABLE 0x0040
237#define SSPE_ENABLE 0x0040
238#define M3I_DOCK_ENABLE 0x0080
239
240#define SDO_OUT_DEST_CTRL 0x3A
241#define COMMAND_ADDR_OUT 0x0003
242#define PCM_LR_OUT_LOCAL 0x0000
243#define PCM_LR_OUT_REMOTE 0x0004
244#define PCM_LR_OUT_MUTE 0x0008
245#define PCM_LR_OUT_BOTH 0x000C
246#define LINE1_DAC_OUT_LOCAL 0x0000
247#define LINE1_DAC_OUT_REMOTE 0x0010
248#define LINE1_DAC_OUT_MUTE 0x0020
249#define LINE1_DAC_OUT_BOTH 0x0030
250#define PCM_CLS_OUT_LOCAL 0x0000
251#define PCM_CLS_OUT_REMOTE 0x0040
252#define PCM_CLS_OUT_MUTE 0x0080
253#define PCM_CLS_OUT_BOTH 0x00C0
254#define PCM_RLF_OUT_LOCAL 0x0000
255#define PCM_RLF_OUT_REMOTE 0x0100
256#define PCM_RLF_OUT_MUTE 0x0200
257#define PCM_RLF_OUT_BOTH 0x0300
258#define LINE2_DAC_OUT_LOCAL 0x0000
259#define LINE2_DAC_OUT_REMOTE 0x0400
260#define LINE2_DAC_OUT_MUTE 0x0800
261#define LINE2_DAC_OUT_BOTH 0x0C00
262#define HANDSET_OUT_LOCAL 0x0000
263#define HANDSET_OUT_REMOTE 0x1000
264#define HANDSET_OUT_MUTE 0x2000
265#define HANDSET_OUT_BOTH 0x3000
266#define IO_CTRL_OUT_LOCAL 0x0000
267#define IO_CTRL_OUT_REMOTE 0x4000
268#define IO_CTRL_OUT_MUTE 0x8000
269#define IO_CTRL_OUT_BOTH 0xC000
270
271#define SDO_IN_DEST_CTRL 0x3C
272#define STATUS_ADDR_IN 0x0003
273#define PCM_LR_IN_LOCAL 0x0000
274#define PCM_LR_IN_REMOTE 0x0004
275#define PCM_LR_RESERVED 0x0008
276#define PCM_LR_IN_BOTH 0x000C
277#define LINE1_ADC_IN_LOCAL 0x0000
278#define LINE1_ADC_IN_REMOTE 0x0010
279#define LINE1_ADC_IN_MUTE 0x0020
280#define MIC_ADC_IN_LOCAL 0x0000
281#define MIC_ADC_IN_REMOTE 0x0040
282#define MIC_ADC_IN_MUTE 0x0080
283#define LINE2_DAC_IN_LOCAL 0x0000
284#define LINE2_DAC_IN_REMOTE 0x0400
285#define LINE2_DAC_IN_MUTE 0x0800
286#define HANDSET_IN_LOCAL 0x0000
287#define HANDSET_IN_REMOTE 0x1000
288#define HANDSET_IN_MUTE 0x2000
289#define IO_STATUS_IN_LOCAL 0x0000
290#define IO_STATUS_IN_REMOTE 0x4000
291
292#define SPDIF_IN_CTRL 0x3E
293#define SPDIF_IN_ENABLE 0x0001
294
295#define GPIO_DATA 0x60
296#define GPIO_DATA_MASK 0x0FFF
297#define GPIO_HV_STATUS 0x3000
298#define GPIO_PME_STATUS 0x4000
299
300#define GPIO_MASK 0x64
301#define GPIO_DIRECTION 0x68
302#define GPO_PRIMARY_AC97 0x0001
303#define GPI_LINEOUT_SENSE 0x0004
304#define GPO_SECONDARY_AC97 0x0008
305#define GPI_VOL_DOWN 0x0010
306#define GPI_VOL_UP 0x0020
307#define GPI_IIS_CLK 0x0040
308#define GPI_IIS_LRCLK 0x0080
309#define GPI_IIS_DATA 0x0100
310#define GPI_DOCKING_STATUS 0x0100
311#define GPI_HEADPHONE_SENSE 0x0200
312#define GPO_EXT_AMP_SHUTDOWN 0x1000
313
314#define GPO_EXT_AMP_M3 1 /* default m3 amp */
315#define GPO_EXT_AMP_ALLEGRO 8 /* default allegro amp */
316
317/* M3 */
318#define GPO_M3_EXT_AMP_SHUTDN 0x0002
319
320#define ASSP_INDEX_PORT 0x80
321#define ASSP_MEMORY_PORT 0x82
322#define ASSP_DATA_PORT 0x84
323
324#define MPU401_DATA_PORT 0x98
325#define MPU401_STATUS_PORT 0x99
326
327#define CLK_MULT_DATA_PORT 0x9C
328
329#define ASSP_CONTROL_A 0xA2
330#define ASSP_0_WS_ENABLE 0x01
331#define ASSP_CTRL_A_RESERVED1 0x02
332#define ASSP_CTRL_A_RESERVED2 0x04
333#define ASSP_CLK_49MHZ_SELECT 0x08
334#define FAST_PLU_ENABLE 0x10
335#define ASSP_CTRL_A_RESERVED3 0x20
336#define DSP_CLK_36MHZ_SELECT 0x40
337
338#define ASSP_CONTROL_B 0xA4
339#define RESET_ASSP 0x00
340#define RUN_ASSP 0x01
341#define ENABLE_ASSP_CLOCK 0x00
342#define STOP_ASSP_CLOCK 0x10
343#define RESET_TOGGLE 0x40
344
345#define ASSP_CONTROL_C 0xA6
346#define ASSP_HOST_INT_ENABLE 0x01
347#define FM_ADDR_REMAP_DISABLE 0x02
348#define HOST_WRITE_PORT_ENABLE 0x08
349
350#define ASSP_HOST_INT_STATUS 0xAC
351#define DSP2HOST_REQ_PIORECORD 0x01
352#define DSP2HOST_REQ_I2SRATE 0x02
353#define DSP2HOST_REQ_TIMER 0x04
354
355/* AC97 registers */
356/* XXX fix this crap up */
357/*#define AC97_RESET 0x00*/
358
359#define AC97_VOL_MUTE_B 0x8000
360#define AC97_VOL_M 0x1F
361#define AC97_LEFT_VOL_S 8
362
363#define AC97_MASTER_VOL 0x02
364#define AC97_LINE_LEVEL_VOL 0x04
365#define AC97_MASTER_MONO_VOL 0x06
366#define AC97_PC_BEEP_VOL 0x0A
367#define AC97_PC_BEEP_VOL_M 0x0F
368#define AC97_SROUND_MASTER_VOL 0x38
369#define AC97_PC_BEEP_VOL_S 1
370
371/*#define AC97_PHONE_VOL 0x0C
372 #define AC97_MIC_VOL 0x0E*/
373#define AC97_MIC_20DB_ENABLE 0x40
374
375/*#define AC97_LINEIN_VOL 0x10
376 #define AC97_CD_VOL 0x12
377 #define AC97_VIDEO_VOL 0x14
378 #define AC97_AUX_VOL 0x16*/
379#define AC97_PCM_OUT_VOL 0x18
380/*#define AC97_RECORD_SELECT 0x1A*/
381#define AC97_RECORD_MIC 0x00
382#define AC97_RECORD_CD 0x01
383#define AC97_RECORD_VIDEO 0x02
384#define AC97_RECORD_AUX 0x03
385#define AC97_RECORD_MONO_MUX 0x02
386#define AC97_RECORD_DIGITAL 0x03
387#define AC97_RECORD_LINE 0x04
388#define AC97_RECORD_STEREO 0x05
389#define AC97_RECORD_MONO 0x06
390#define AC97_RECORD_PHONE 0x07
391
392/*#define AC97_RECORD_GAIN 0x1C*/
393#define AC97_RECORD_VOL_M 0x0F
394
395/*#define AC97_GENERAL_PURPOSE 0x20*/
396#define AC97_POWER_DOWN_CTRL 0x26
397#define AC97_ADC_READY 0x0001
398#define AC97_DAC_READY 0x0002
399#define AC97_ANALOG_READY 0x0004
400#define AC97_VREF_ON 0x0008
401#define AC97_PR0 0x0100
402#define AC97_PR1 0x0200
403#define AC97_PR2 0x0400
404#define AC97_PR3 0x0800
405#define AC97_PR4 0x1000
406
407#define AC97_RESERVED1 0x28
408
409#define AC97_VENDOR_TEST 0x5A
410
411#define AC97_CLOCK_DELAY 0x5C
412#define AC97_LINEOUT_MUX_SEL 0x0001
413#define AC97_MONO_MUX_SEL 0x0002
414#define AC97_CLOCK_DELAY_SEL 0x1F
415#define AC97_DAC_CDS_SHIFT 6
416#define AC97_ADC_CDS_SHIFT 11
417
418#define AC97_MULTI_CHANNEL_SEL 0x74
419
420/*#define AC97_VENDOR_ID1 0x7C
421 #define AC97_VENDOR_ID2 0x7E*/
422
423/*
424 * ASSP control regs
425 */
426#define DSP_PORT_TIMER_COUNT 0x06
427
428#define DSP_PORT_MEMORY_INDEX 0x80
429
430#define DSP_PORT_MEMORY_TYPE 0x82
431#define MEMTYPE_INTERNAL_CODE 0x0002
432#define MEMTYPE_INTERNAL_DATA 0x0003
433#define MEMTYPE_MASK 0x0003
434
435#define DSP_PORT_MEMORY_DATA 0x84
436
437#define DSP_PORT_CONTROL_REG_A 0xA2
438#define DSP_PORT_CONTROL_REG_B 0xA4
439#define DSP_PORT_CONTROL_REG_C 0xA6
440
441#define REV_A_CODE_MEMORY_BEGIN 0x0000
442#define REV_A_CODE_MEMORY_END 0x0FFF
443#define REV_A_CODE_MEMORY_UNIT_LENGTH 0x0040
444#define REV_A_CODE_MEMORY_LENGTH (REV_A_CODE_MEMORY_END - REV_A_CODE_MEMORY_BEGIN + 1)
445
446#define REV_B_CODE_MEMORY_BEGIN 0x0000
447#define REV_B_CODE_MEMORY_END 0x0BFF
448#define REV_B_CODE_MEMORY_UNIT_LENGTH 0x0040
449#define REV_B_CODE_MEMORY_LENGTH (REV_B_CODE_MEMORY_END - REV_B_CODE_MEMORY_BEGIN + 1)
450
451#define REV_A_DATA_MEMORY_BEGIN 0x1000
452#define REV_A_DATA_MEMORY_END 0x2FFF
453#define REV_A_DATA_MEMORY_UNIT_LENGTH 0x0080
454#define REV_A_DATA_MEMORY_LENGTH (REV_A_DATA_MEMORY_END - REV_A_DATA_MEMORY_BEGIN + 1)
455
456#define REV_B_DATA_MEMORY_BEGIN 0x1000
457#define REV_B_DATA_MEMORY_END 0x2BFF
458#define REV_B_DATA_MEMORY_UNIT_LENGTH 0x0080
459#define REV_B_DATA_MEMORY_LENGTH (REV_B_DATA_MEMORY_END - REV_B_DATA_MEMORY_BEGIN + 1)
460
461
462#define NUM_UNITS_KERNEL_CODE 16
463#define NUM_UNITS_KERNEL_DATA 2
464
465#define NUM_UNITS_KERNEL_CODE_WITH_HSP 16
466#define NUM_UNITS_KERNEL_DATA_WITH_HSP 5
467
468/*
469 * Kernel data layout
470 */
471
472#define DP_SHIFT_COUNT 7
473
474#define KDATA_BASE_ADDR 0x1000
475#define KDATA_BASE_ADDR2 0x1080
476
477#define KDATA_TASK0 (KDATA_BASE_ADDR + 0x0000)
478#define KDATA_TASK1 (KDATA_BASE_ADDR + 0x0001)
479#define KDATA_TASK2 (KDATA_BASE_ADDR + 0x0002)
480#define KDATA_TASK3 (KDATA_BASE_ADDR + 0x0003)
481#define KDATA_TASK4 (KDATA_BASE_ADDR + 0x0004)
482#define KDATA_TASK5 (KDATA_BASE_ADDR + 0x0005)
483#define KDATA_TASK6 (KDATA_BASE_ADDR + 0x0006)
484#define KDATA_TASK7 (KDATA_BASE_ADDR + 0x0007)
485#define KDATA_TASK_ENDMARK (KDATA_BASE_ADDR + 0x0008)
486
487#define KDATA_CURRENT_TASK (KDATA_BASE_ADDR + 0x0009)
488#define KDATA_TASK_SWITCH (KDATA_BASE_ADDR + 0x000A)
489
490#define KDATA_INSTANCE0_POS3D (KDATA_BASE_ADDR + 0x000B)
491#define KDATA_INSTANCE1_POS3D (KDATA_BASE_ADDR + 0x000C)
492#define KDATA_INSTANCE2_POS3D (KDATA_BASE_ADDR + 0x000D)
493#define KDATA_INSTANCE3_POS3D (KDATA_BASE_ADDR + 0x000E)
494#define KDATA_INSTANCE4_POS3D (KDATA_BASE_ADDR + 0x000F)
495#define KDATA_INSTANCE5_POS3D (KDATA_BASE_ADDR + 0x0010)
496#define KDATA_INSTANCE6_POS3D (KDATA_BASE_ADDR + 0x0011)
497#define KDATA_INSTANCE7_POS3D (KDATA_BASE_ADDR + 0x0012)
498#define KDATA_INSTANCE8_POS3D (KDATA_BASE_ADDR + 0x0013)
499#define KDATA_INSTANCE_POS3D_ENDMARK (KDATA_BASE_ADDR + 0x0014)
500
501#define KDATA_INSTANCE0_SPKVIRT (KDATA_BASE_ADDR + 0x0015)
502#define KDATA_INSTANCE_SPKVIRT_ENDMARK (KDATA_BASE_ADDR + 0x0016)
503
504#define KDATA_INSTANCE0_SPDIF (KDATA_BASE_ADDR + 0x0017)
505#define KDATA_INSTANCE_SPDIF_ENDMARK (KDATA_BASE_ADDR + 0x0018)
506
507#define KDATA_INSTANCE0_MODEM (KDATA_BASE_ADDR + 0x0019)
508#define KDATA_INSTANCE_MODEM_ENDMARK (KDATA_BASE_ADDR + 0x001A)
509
510#define KDATA_INSTANCE0_SRC (KDATA_BASE_ADDR + 0x001B)
511#define KDATA_INSTANCE1_SRC (KDATA_BASE_ADDR + 0x001C)
512#define KDATA_INSTANCE_SRC_ENDMARK (KDATA_BASE_ADDR + 0x001D)
513
514#define KDATA_INSTANCE0_MINISRC (KDATA_BASE_ADDR + 0x001E)
515#define KDATA_INSTANCE1_MINISRC (KDATA_BASE_ADDR + 0x001F)
516#define KDATA_INSTANCE2_MINISRC (KDATA_BASE_ADDR + 0x0020)
517#define KDATA_INSTANCE3_MINISRC (KDATA_BASE_ADDR + 0x0021)
518#define KDATA_INSTANCE_MINISRC_ENDMARK (KDATA_BASE_ADDR + 0x0022)
519
520#define KDATA_INSTANCE0_CPYTHRU (KDATA_BASE_ADDR + 0x0023)
521#define KDATA_INSTANCE1_CPYTHRU (KDATA_BASE_ADDR + 0x0024)
522#define KDATA_INSTANCE_CPYTHRU_ENDMARK (KDATA_BASE_ADDR + 0x0025)
523
524#define KDATA_CURRENT_DMA (KDATA_BASE_ADDR + 0x0026)
525#define KDATA_DMA_SWITCH (KDATA_BASE_ADDR + 0x0027)
526#define KDATA_DMA_ACTIVE (KDATA_BASE_ADDR + 0x0028)
527
528#define KDATA_DMA_XFER0 (KDATA_BASE_ADDR + 0x0029)
529#define KDATA_DMA_XFER1 (KDATA_BASE_ADDR + 0x002A)
530#define KDATA_DMA_XFER2 (KDATA_BASE_ADDR + 0x002B)
531#define KDATA_DMA_XFER3 (KDATA_BASE_ADDR + 0x002C)
532#define KDATA_DMA_XFER4 (KDATA_BASE_ADDR + 0x002D)
533#define KDATA_DMA_XFER5 (KDATA_BASE_ADDR + 0x002E)
534#define KDATA_DMA_XFER6 (KDATA_BASE_ADDR + 0x002F)
535#define KDATA_DMA_XFER7 (KDATA_BASE_ADDR + 0x0030)
536#define KDATA_DMA_XFER8 (KDATA_BASE_ADDR + 0x0031)
537#define KDATA_DMA_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0032)
538
539#define KDATA_I2S_SAMPLE_COUNT (KDATA_BASE_ADDR + 0x0033)
540#define KDATA_I2S_INT_METER (KDATA_BASE_ADDR + 0x0034)
541#define KDATA_I2S_ACTIVE (KDATA_BASE_ADDR + 0x0035)
542
543#define KDATA_TIMER_COUNT_RELOAD (KDATA_BASE_ADDR + 0x0036)
544#define KDATA_TIMER_COUNT_CURRENT (KDATA_BASE_ADDR + 0x0037)
545
546#define KDATA_HALT_SYNCH_CLIENT (KDATA_BASE_ADDR + 0x0038)
547#define KDATA_HALT_SYNCH_DMA (KDATA_BASE_ADDR + 0x0039)
548#define KDATA_HALT_ACKNOWLEDGE (KDATA_BASE_ADDR + 0x003A)
549
550#define KDATA_ADC1_XFER0 (KDATA_BASE_ADDR + 0x003B)
551#define KDATA_ADC1_XFER_ENDMARK (KDATA_BASE_ADDR + 0x003C)
552#define KDATA_ADC1_LEFT_VOLUME (KDATA_BASE_ADDR + 0x003D)
553#define KDATA_ADC1_RIGHT_VOLUME (KDATA_BASE_ADDR + 0x003E)
554#define KDATA_ADC1_LEFT_SUR_VOL (KDATA_BASE_ADDR + 0x003F)
555#define KDATA_ADC1_RIGHT_SUR_VOL (KDATA_BASE_ADDR + 0x0040)
556
557#define KDATA_ADC2_XFER0 (KDATA_BASE_ADDR + 0x0041)
558#define KDATA_ADC2_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0042)
559#define KDATA_ADC2_LEFT_VOLUME (KDATA_BASE_ADDR + 0x0043)
560#define KDATA_ADC2_RIGHT_VOLUME (KDATA_BASE_ADDR + 0x0044)
561#define KDATA_ADC2_LEFT_SUR_VOL (KDATA_BASE_ADDR + 0x0045)
562#define KDATA_ADC2_RIGHT_SUR_VOL (KDATA_BASE_ADDR + 0x0046)
563
564#define KDATA_CD_XFER0 (KDATA_BASE_ADDR + 0x0047)
565#define KDATA_CD_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0048)
566#define KDATA_CD_LEFT_VOLUME (KDATA_BASE_ADDR + 0x0049)
567#define KDATA_CD_RIGHT_VOLUME (KDATA_BASE_ADDR + 0x004A)
568#define KDATA_CD_LEFT_SUR_VOL (KDATA_BASE_ADDR + 0x004B)
569#define KDATA_CD_RIGHT_SUR_VOL (KDATA_BASE_ADDR + 0x004C)
570
571#define KDATA_MIC_XFER0 (KDATA_BASE_ADDR + 0x004D)
572#define KDATA_MIC_XFER_ENDMARK (KDATA_BASE_ADDR + 0x004E)
573#define KDATA_MIC_VOLUME (KDATA_BASE_ADDR + 0x004F)
574#define KDATA_MIC_SUR_VOL (KDATA_BASE_ADDR + 0x0050)
575
576#define KDATA_I2S_XFER0 (KDATA_BASE_ADDR + 0x0051)
577#define KDATA_I2S_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0052)
578
579#define KDATA_CHI_XFER0 (KDATA_BASE_ADDR + 0x0053)
580#define KDATA_CHI_XFER_ENDMARK (KDATA_BASE_ADDR + 0x0054)
581
582#define KDATA_SPDIF_XFER (KDATA_BASE_ADDR + 0x0055)
583#define KDATA_SPDIF_CURRENT_FRAME (KDATA_BASE_ADDR + 0x0056)
584#define KDATA_SPDIF_FRAME0 (KDATA_BASE_ADDR + 0x0057)
585#define KDATA_SPDIF_FRAME1 (KDATA_BASE_ADDR + 0x0058)
586#define KDATA_SPDIF_FRAME2 (KDATA_BASE_ADDR + 0x0059)
587
588#define KDATA_SPDIF_REQUEST (KDATA_BASE_ADDR + 0x005A)
589#define KDATA_SPDIF_TEMP (KDATA_BASE_ADDR + 0x005B)
590
591#define KDATA_SPDIFIN_XFER0 (KDATA_BASE_ADDR + 0x005C)
592#define KDATA_SPDIFIN_XFER_ENDMARK (KDATA_BASE_ADDR + 0x005D)
593#define KDATA_SPDIFIN_INT_METER (KDATA_BASE_ADDR + 0x005E)
594
595#define KDATA_DSP_RESET_COUNT (KDATA_BASE_ADDR + 0x005F)
596#define KDATA_DEBUG_OUTPUT (KDATA_BASE_ADDR + 0x0060)
597
598#define KDATA_KERNEL_ISR_LIST (KDATA_BASE_ADDR + 0x0061)
599
600#define KDATA_KERNEL_ISR_CBSR1 (KDATA_BASE_ADDR + 0x0062)
601#define KDATA_KERNEL_ISR_CBER1 (KDATA_BASE_ADDR + 0x0063)
602#define KDATA_KERNEL_ISR_CBCR (KDATA_BASE_ADDR + 0x0064)
603#define KDATA_KERNEL_ISR_AR0 (KDATA_BASE_ADDR + 0x0065)
604#define KDATA_KERNEL_ISR_AR1 (KDATA_BASE_ADDR + 0x0066)
605#define KDATA_KERNEL_ISR_AR2 (KDATA_BASE_ADDR + 0x0067)
606#define KDATA_KERNEL_ISR_AR3 (KDATA_BASE_ADDR + 0x0068)
607#define KDATA_KERNEL_ISR_AR4 (KDATA_BASE_ADDR + 0x0069)
608#define KDATA_KERNEL_ISR_AR5 (KDATA_BASE_ADDR + 0x006A)
609#define KDATA_KERNEL_ISR_BRCR (KDATA_BASE_ADDR + 0x006B)
610#define KDATA_KERNEL_ISR_PASR (KDATA_BASE_ADDR + 0x006C)
611#define KDATA_KERNEL_ISR_PAER (KDATA_BASE_ADDR + 0x006D)
612
613#define KDATA_CLIENT_SCRATCH0 (KDATA_BASE_ADDR + 0x006E)
614#define KDATA_CLIENT_SCRATCH1 (KDATA_BASE_ADDR + 0x006F)
615#define KDATA_KERNEL_SCRATCH (KDATA_BASE_ADDR + 0x0070)
616#define KDATA_KERNEL_ISR_SCRATCH (KDATA_BASE_ADDR + 0x0071)
617
618#define KDATA_OUEUE_LEFT (KDATA_BASE_ADDR + 0x0072)
619#define KDATA_QUEUE_RIGHT (KDATA_BASE_ADDR + 0x0073)
620
621#define KDATA_ADC1_REQUEST (KDATA_BASE_ADDR + 0x0074)
622#define KDATA_ADC2_REQUEST (KDATA_BASE_ADDR + 0x0075)
623#define KDATA_CD_REQUEST (KDATA_BASE_ADDR + 0x0076)
624#define KDATA_MIC_REQUEST (KDATA_BASE_ADDR + 0x0077)
625
626#define KDATA_ADC1_MIXER_REQUEST (KDATA_BASE_ADDR + 0x0078)
627#define KDATA_ADC2_MIXER_REQUEST (KDATA_BASE_ADDR + 0x0079)
628#define KDATA_CD_MIXER_REQUEST (KDATA_BASE_ADDR + 0x007A)
629#define KDATA_MIC_MIXER_REQUEST (KDATA_BASE_ADDR + 0x007B)
630#define KDATA_MIC_SYNC_COUNTER (KDATA_BASE_ADDR + 0x007C)
631
632/*
633 * second 'segment' (?) reserved for mixer
634 * buffers..
635 */
636
637#define KDATA_MIXER_WORD0 (KDATA_BASE_ADDR2 + 0x0000)
638#define KDATA_MIXER_WORD1 (KDATA_BASE_ADDR2 + 0x0001)
639#define KDATA_MIXER_WORD2 (KDATA_BASE_ADDR2 + 0x0002)
640#define KDATA_MIXER_WORD3 (KDATA_BASE_ADDR2 + 0x0003)
641#define KDATA_MIXER_WORD4 (KDATA_BASE_ADDR2 + 0x0004)
642#define KDATA_MIXER_WORD5 (KDATA_BASE_ADDR2 + 0x0005)
643#define KDATA_MIXER_WORD6 (KDATA_BASE_ADDR2 + 0x0006)
644#define KDATA_MIXER_WORD7 (KDATA_BASE_ADDR2 + 0x0007)
645#define KDATA_MIXER_WORD8 (KDATA_BASE_ADDR2 + 0x0008)
646#define KDATA_MIXER_WORD9 (KDATA_BASE_ADDR2 + 0x0009)
647#define KDATA_MIXER_WORDA (KDATA_BASE_ADDR2 + 0x000A)
648#define KDATA_MIXER_WORDB (KDATA_BASE_ADDR2 + 0x000B)
649#define KDATA_MIXER_WORDC (KDATA_BASE_ADDR2 + 0x000C)
650#define KDATA_MIXER_WORDD (KDATA_BASE_ADDR2 + 0x000D)
651#define KDATA_MIXER_WORDE (KDATA_BASE_ADDR2 + 0x000E)
652#define KDATA_MIXER_WORDF (KDATA_BASE_ADDR2 + 0x000F)
653
654#define KDATA_MIXER_XFER0 (KDATA_BASE_ADDR2 + 0x0010)
655#define KDATA_MIXER_XFER1 (KDATA_BASE_ADDR2 + 0x0011)
656#define KDATA_MIXER_XFER2 (KDATA_BASE_ADDR2 + 0x0012)
657#define KDATA_MIXER_XFER3 (KDATA_BASE_ADDR2 + 0x0013)
658#define KDATA_MIXER_XFER4 (KDATA_BASE_ADDR2 + 0x0014)
659#define KDATA_MIXER_XFER5 (KDATA_BASE_ADDR2 + 0x0015)
660#define KDATA_MIXER_XFER6 (KDATA_BASE_ADDR2 + 0x0016)
661#define KDATA_MIXER_XFER7 (KDATA_BASE_ADDR2 + 0x0017)
662#define KDATA_MIXER_XFER8 (KDATA_BASE_ADDR2 + 0x0018)
663#define KDATA_MIXER_XFER9 (KDATA_BASE_ADDR2 + 0x0019)
664#define KDATA_MIXER_XFER_ENDMARK (KDATA_BASE_ADDR2 + 0x001A)
665
666#define KDATA_MIXER_TASK_NUMBER (KDATA_BASE_ADDR2 + 0x001B)
667#define KDATA_CURRENT_MIXER (KDATA_BASE_ADDR2 + 0x001C)
668#define KDATA_MIXER_ACTIVE (KDATA_BASE_ADDR2 + 0x001D)
669#define KDATA_MIXER_BANK_STATUS (KDATA_BASE_ADDR2 + 0x001E)
670#define KDATA_DAC_LEFT_VOLUME (KDATA_BASE_ADDR2 + 0x001F)
671#define KDATA_DAC_RIGHT_VOLUME (KDATA_BASE_ADDR2 + 0x0020)
672
673#define MAX_INSTANCE_MINISRC (KDATA_INSTANCE_MINISRC_ENDMARK - KDATA_INSTANCE0_MINISRC)
674#define MAX_VIRTUAL_DMA_CHANNELS (KDATA_DMA_XFER_ENDMARK - KDATA_DMA_XFER0)
675#define MAX_VIRTUAL_MIXER_CHANNELS (KDATA_MIXER_XFER_ENDMARK - KDATA_MIXER_XFER0)
676#define MAX_VIRTUAL_ADC1_CHANNELS (KDATA_ADC1_XFER_ENDMARK - KDATA_ADC1_XFER0)
677
678/*
679 * client data area offsets
680 */
681#define CDATA_INSTANCE_READY 0x00
682
683#define CDATA_HOST_SRC_ADDRL 0x01
684#define CDATA_HOST_SRC_ADDRH 0x02
685#define CDATA_HOST_SRC_END_PLUS_1L 0x03
686#define CDATA_HOST_SRC_END_PLUS_1H 0x04
687#define CDATA_HOST_SRC_CURRENTL 0x05
688#define CDATA_HOST_SRC_CURRENTH 0x06
689
690#define CDATA_IN_BUF_CONNECT 0x07
691#define CDATA_OUT_BUF_CONNECT 0x08
692
693#define CDATA_IN_BUF_BEGIN 0x09
694#define CDATA_IN_BUF_END_PLUS_1 0x0A
695#define CDATA_IN_BUF_HEAD 0x0B
696#define CDATA_IN_BUF_TAIL 0x0C
697#define CDATA_OUT_BUF_BEGIN 0x0D
698#define CDATA_OUT_BUF_END_PLUS_1 0x0E
699#define CDATA_OUT_BUF_HEAD 0x0F
700#define CDATA_OUT_BUF_TAIL 0x10
701
702#define CDATA_DMA_CONTROL 0x11
703#define CDATA_RESERVED 0x12
704
705#define CDATA_FREQUENCY 0x13
706#define CDATA_LEFT_VOLUME 0x14
707#define CDATA_RIGHT_VOLUME 0x15
708#define CDATA_LEFT_SUR_VOL 0x16
709#define CDATA_RIGHT_SUR_VOL 0x17
710
711#define CDATA_HEADER_LEN 0x18
712
713#define SRC3_DIRECTION_OFFSET CDATA_HEADER_LEN
714#define SRC3_MODE_OFFSET (CDATA_HEADER_LEN + 1)
715#define SRC3_WORD_LENGTH_OFFSET (CDATA_HEADER_LEN + 2)
716#define SRC3_PARAMETER_OFFSET (CDATA_HEADER_LEN + 3)
717#define SRC3_COEFF_ADDR_OFFSET (CDATA_HEADER_LEN + 8)
718#define SRC3_FILTAP_ADDR_OFFSET (CDATA_HEADER_LEN + 10)
719#define SRC3_TEMP_INBUF_ADDR_OFFSET (CDATA_HEADER_LEN + 16)
720#define SRC3_TEMP_OUTBUF_ADDR_OFFSET (CDATA_HEADER_LEN + 17)
721
722#define MINISRC_IN_BUFFER_SIZE ( 0x50 * 2 )
723#define MINISRC_OUT_BUFFER_SIZE ( 0x50 * 2 * 2)
724#define MINISRC_OUT_BUFFER_SIZE ( 0x50 * 2 * 2)
725#define MINISRC_TMP_BUFFER_SIZE ( 112 + ( MINISRC_BIQUAD_STAGE * 3 + 4 ) * 2 * 2 )
726#define MINISRC_BIQUAD_STAGE 2
727#define MINISRC_COEF_LOC 0x175
728
729#define DMACONTROL_BLOCK_MASK 0x000F
730#define DMAC_BLOCK0_SELECTOR 0x0000
731#define DMAC_BLOCK1_SELECTOR 0x0001
732#define DMAC_BLOCK2_SELECTOR 0x0002
733#define DMAC_BLOCK3_SELECTOR 0x0003
734#define DMAC_BLOCK4_SELECTOR 0x0004
735#define DMAC_BLOCK5_SELECTOR 0x0005
736#define DMAC_BLOCK6_SELECTOR 0x0006
737#define DMAC_BLOCK7_SELECTOR 0x0007
738#define DMAC_BLOCK8_SELECTOR 0x0008
739#define DMAC_BLOCK9_SELECTOR 0x0009
740#define DMAC_BLOCKA_SELECTOR 0x000A
741#define DMAC_BLOCKB_SELECTOR 0x000B
742#define DMAC_BLOCKC_SELECTOR 0x000C
743#define DMAC_BLOCKD_SELECTOR 0x000D
744#define DMAC_BLOCKE_SELECTOR 0x000E
745#define DMAC_BLOCKF_SELECTOR 0x000F
746#define DMACONTROL_PAGE_MASK 0x00F0
747#define DMAC_PAGE0_SELECTOR 0x0030
748#define DMAC_PAGE1_SELECTOR 0x0020
749#define DMAC_PAGE2_SELECTOR 0x0010
750#define DMAC_PAGE3_SELECTOR 0x0000
751#define DMACONTROL_AUTOREPEAT 0x1000
752#define DMACONTROL_STOPPED 0x2000
753#define DMACONTROL_DIRECTION 0x0100
754
755/*
756 * an arbitrary volume we set the internal
757 * volume settings to so that the ac97 volume
758 * range is a little less insane. 0x7fff is
759 * max.
760 */
761#define ARB_VOLUME ( 0x6800 )
762
763/*
764 */
765
766typedef struct snd_m3_dma m3_dma_t;
767typedef struct snd_m3 m3_t;
768
769/* quirk lists */
770struct m3_quirk {
771 const char *name; /* device name */
772 u16 vendor, device; /* subsystem ids */
773 int amp_gpio; /* gpio pin # for external amp, -1 = default */
774 int irda_workaround; /* non-zero if avoid to touch 0x10 on GPIO_DIRECTION
775 (e.g. for IrDA on Dell Inspirons) */
776};
777
778struct m3_hv_quirk {
779 u16 vendor, device, subsystem_vendor, subsystem_device;
780 u32 config; /* ALLEGRO_CONFIG hardware volume bits */
781 int is_omnibook; /* Do HP OmniBook GPIO magic? */
782};
783
784struct m3_list {
785 int curlen;
786 int mem_addr;
787 int max;
788};
789
790struct snd_m3_dma {
791
792 int number;
793 m3_t *chip;
794 snd_pcm_substream_t *substream;
795
796 struct assp_instance {
797 unsigned short code, data;
798 } inst;
799
800 int running;
801 int opened;
802
803 unsigned long buffer_addr;
804 int dma_size;
805 int period_size;
806 unsigned int hwptr;
807 int count;
808
809 int index[3];
810 struct m3_list *index_list[3];
811
812 int in_lists;
813
814 struct list_head list;
815
816};
817
818struct snd_m3 {
819
820 snd_card_t *card;
821
822 unsigned long iobase;
823
824 int irq;
825 unsigned int allegro_flag: 1;
826
827 ac97_t *ac97;
828
829 snd_pcm_t *pcm;
830
831 struct pci_dev *pci;
832 struct m3_quirk *quirk;
833 struct m3_hv_quirk *hv_quirk;
834
835 int dacs_active;
836 int timer_users;
837
838 struct m3_list msrc_list;
839 struct m3_list mixer_list;
840 struct m3_list adc1_list;
841 struct m3_list dma_list;
842
843 /* for storing reset state..*/
844 u8 reset_state;
845
846 int external_amp;
847 int amp_gpio;
848
849 /* midi */
850 snd_rawmidi_t *rmidi;
851
852 /* pcm streams */
853 int num_substreams;
854 m3_dma_t *substreams;
855
856 spinlock_t reg_lock;
857 spinlock_t ac97_lock;
858
859 snd_kcontrol_t *master_switch;
860 snd_kcontrol_t *master_volume;
861 struct tasklet_struct hwvol_tq;
862#ifdef CONFIG_PM
863 u16 *suspend_mem;
864#endif
865};
866
867/*
868 * pci ids
869 */
870
871#ifndef PCI_VENDOR_ID_ESS
872#define PCI_VENDOR_ID_ESS 0x125D
873#endif
874#ifndef PCI_DEVICE_ID_ESS_ALLEGRO_1
875#define PCI_DEVICE_ID_ESS_ALLEGRO_1 0x1988
876#endif
877#ifndef PCI_DEVICE_ID_ESS_ALLEGRO
878#define PCI_DEVICE_ID_ESS_ALLEGRO 0x1989
879#endif
880#ifndef PCI_DEVICE_ID_ESS_CANYON3D_2LE
881#define PCI_DEVICE_ID_ESS_CANYON3D_2LE 0x1990
882#endif
883#ifndef PCI_DEVICE_ID_ESS_CANYON3D_2
884#define PCI_DEVICE_ID_ESS_CANYON3D_2 0x1992
885#endif
886#ifndef PCI_DEVICE_ID_ESS_MAESTRO3
887#define PCI_DEVICE_ID_ESS_MAESTRO3 0x1998
888#endif
889#ifndef PCI_DEVICE_ID_ESS_MAESTRO3_1
890#define PCI_DEVICE_ID_ESS_MAESTRO3_1 0x1999
891#endif
892#ifndef PCI_DEVICE_ID_ESS_MAESTRO3_HW
893#define PCI_DEVICE_ID_ESS_MAESTRO3_HW 0x199a
894#endif
895#ifndef PCI_DEVICE_ID_ESS_MAESTRO3_2
896#define PCI_DEVICE_ID_ESS_MAESTRO3_2 0x199b
897#endif
898
899static struct pci_device_id snd_m3_ids[] = {
900 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_ALLEGRO_1, PCI_ANY_ID, PCI_ANY_ID,
901 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0},
902 // {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_ALLEGRO, PCI_ANY_ID, PCI_ANY_ID,
903 // PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0},
904 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_CANYON3D_2LE, PCI_ANY_ID, PCI_ANY_ID,
905 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0},
906 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_CANYON3D_2, PCI_ANY_ID, PCI_ANY_ID,
907 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0},
908 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_MAESTRO3, PCI_ANY_ID, PCI_ANY_ID,
909 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0},
910 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_MAESTRO3_1, PCI_ANY_ID, PCI_ANY_ID,
911 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0},
912 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_MAESTRO3_HW, PCI_ANY_ID, PCI_ANY_ID,
913 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0},
914 {PCI_VENDOR_ID_ESS, PCI_DEVICE_ID_ESS_MAESTRO3_2, PCI_ANY_ID, PCI_ANY_ID,
915 PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, 0},
916 {0,},
917};
918
919MODULE_DEVICE_TABLE(pci, snd_m3_ids);
920#if 0
921struct m3_quirk {
922 const char *name; /* device name */
923 u16 vendor, device; /* subsystem ids */
924 int amp_gpio; /* gpio pin # for external amp, -1 = default */
925 int irda_workaround; /* non-zero if avoid to touch 0x10 on GPIO_DIRECTION
926 (e.g. for IrDA on Dell Inspirons) */
927};
928#endif
929static struct m3_quirk m3_quirk_list[] = {
930 /* panasonic CF-28 "toughbook" */
931 {
932 /*.name = */"Panasonic CF-28",
933 /*.vendor = */0x10f7,
934 /*.device = */0x833e,
935 /*.amp_gpio = */0x0d,
936 0
937 },
938 /* panasonic CF-72 "toughbook" */
939 {
940 /*.name = */"Panasonic CF-72",
941 /*.vendor = */0x10f7,
942 /*.device = */0x833d,
943 /*.amp_gpio = */0x0d,
944 0
945 },
946 /* Dell Inspiron 4000 */
947 {
948 /*.name = */"Dell Inspiron 4000",
949 /*.vendor = */0x1028,
950 /*.device = */0x00b0,
951 /*.amp_gpio = */-1,
952 /*.irda_workaround = */1,
953 },
954 /* Dell Inspiron 8000 */
955 {
956 /*.name = */"Dell Inspiron 8000",
957 /*.vendor = */0x1028,
958 /*.device = */0x00a4,
959 /*.amp_gpio = */-1,
960 /*.irda_workaround = */1,
961 },
962#if 1
963 /* Dell Inspiron 8100 */
964 {
965 /*.name = */"Dell Inspiron 8100",
966 /*.vendor = */0x1028,
967 /*.device = */0x00e6,
968 /*.amp_gpio = */-1,
969 /*.irda_workaround = */1,
970 },
971#endif
972 /* NEC LM800J/7 */
973 {
974 /*.name = */"NEC LM800J/7",
975 /*.vendor = */0x1033,
976 /*.device = */0x80f1,
977 /*.amp_gpio = */0x03,
978 0
979 },
980 /* LEGEND ZhaoYang 3100CF */
981 {
982 "LEGEND ZhaoYang 3100CF",
983 0x1509,
984 0x1740,
985 0x03,
986 0
987 },
988 /* END */
989 { 0 }
990};
991
992/* These values came from the Windows driver. */
993static struct m3_hv_quirk m3_hv_quirk_list[] = {
994 /* Allegro chips */
995 { 0x125D, 0x1988, 0x0E11, 0x002E, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
996 { 0x125D, 0x1988, 0x0E11, 0x0094, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
997 { 0x125D, 0x1988, 0x0E11, 0xB112, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
998 { 0x125D, 0x1988, 0x0E11, 0xB114, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
999 { 0x125D, 0x1988, 0x103C, 0x0012, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1000 { 0x125D, 0x1988, 0x103C, 0x0018, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1001 { 0x125D, 0x1988, 0x103C, 0x001C, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1002 { 0x125D, 0x1988, 0x103C, 0x001D, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1003 { 0x125D, 0x1988, 0x103C, 0x001E, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1004 { 0x125D, 0x1988, 0x107B, 0x3350, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1005 { 0x125D, 0x1988, 0x10F7, 0x8338, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1006 { 0x125D, 0x1988, 0x10F7, 0x833C, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1007 { 0x125D, 0x1988, 0x10F7, 0x833D, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1008 { 0x125D, 0x1988, 0x10F7, 0x833E, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1009 { 0x125D, 0x1988, 0x10F7, 0x833F, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1010 { 0x125D, 0x1988, 0x13BD, 0x1018, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1011 { 0x125D, 0x1988, 0x13BD, 0x1019, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1012 { 0x125D, 0x1988, 0x13BD, 0x101A, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1013 { 0x125D, 0x1988, 0x14FF, 0x0F03, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1014 { 0x125D, 0x1988, 0x14FF, 0x0F04, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1015 { 0x125D, 0x1988, 0x14FF, 0x0F05, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1016 { 0x125D, 0x1988, 0x156D, 0xB400, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1017 { 0x125D, 0x1988, 0x156D, 0xB795, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1018 { 0x125D, 0x1988, 0x156D, 0xB797, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1019 { 0x125D, 0x1988, 0x156D, 0xC700, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD, 0 },
1020 { 0x125D, 0x1988, 0x1033, 0x80F1, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE, 0 },
1021 { 0x125D, 0x1988, 0x103C, 0x001A, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE, 0 }, /* HP OmniBook 6100 */
1022 { 0x125D, 0x1988, 0x107B, 0x340A, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE, 0 },
1023 { 0x125D, 0x1988, 0x107B, 0x3450, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE, 0 },
1024 { 0x125D, 0x1988, 0x109F, 0x3134, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE, 0 },
1025 { 0x125D, 0x1988, 0x109F, 0x3161, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE, 0 },
1026 { 0x125D, 0x1988, 0x144D, 0x3280, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE, 0 },
1027 { 0x125D, 0x1988, 0x144D, 0x3281, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE, 0 },
1028 { 0x125D, 0x1988, 0x144D, 0xC002, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE, 0 },
1029 { 0x125D, 0x1988, 0x144D, 0xC003, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE, 0 },
1030 { 0x125D, 0x1988, 0x1509, 0x1740, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE, 0 },
1031 { 0x125D, 0x1988, 0x1610, 0x0010, HV_CTRL_ENABLE | HV_BUTTON_FROM_GD | REDUCED_DEBOUNCE, 0 },
1032 { 0x125D, 0x1988, 0x1042, 0x1042, HV_CTRL_ENABLE, 0 },
1033 { 0x125D, 0x1988, 0x107B, 0x9500, HV_CTRL_ENABLE, 0 },
1034 { 0x125D, 0x1988, 0x14FF, 0x0F06, HV_CTRL_ENABLE, 0 },
1035 { 0x125D, 0x1988, 0x1558, 0x8586, HV_CTRL_ENABLE, 0 },
1036 { 0x125D, 0x1988, 0x161F, 0x2011, HV_CTRL_ENABLE, 0 },
1037 /* Maestro3 chips */
1038 { 0x125D, 0x1998, 0x103C, 0x000E, HV_CTRL_ENABLE, 0 },
1039 { 0x125D, 0x1998, 0x103C, 0x0010, HV_CTRL_ENABLE, 1 }, /* HP OmniBook 6000 */
1040 { 0x125D, 0x1998, 0x103C, 0x0011, HV_CTRL_ENABLE, 1 }, /* HP OmniBook 500 */
1041 { 0x125D, 0x1998, 0x103C, 0x001B, HV_CTRL_ENABLE, 0 },
1042 { 0x125D, 0x1998, 0x104D, 0x80A6, HV_CTRL_ENABLE, 0 },
1043 { 0x125D, 0x1998, 0x104D, 0x80AA, HV_CTRL_ENABLE, 0 },
1044 { 0x125D, 0x1998, 0x107B, 0x5300, HV_CTRL_ENABLE, 0 },
1045 { 0x125D, 0x1998, 0x110A, 0x1998, HV_CTRL_ENABLE, 0 },
1046 { 0x125D, 0x1998, 0x13BD, 0x1015, HV_CTRL_ENABLE, 0 },
1047 { 0x125D, 0x1998, 0x13BD, 0x101C, HV_CTRL_ENABLE, 0 },
1048 { 0x125D, 0x1998, 0x13BD, 0x1802, HV_CTRL_ENABLE, 0 },
1049 { 0x125D, 0x1998, 0x1599, 0x0715, HV_CTRL_ENABLE, 0 },
1050 { 0x125D, 0x1998, 0x5643, 0x5643, HV_CTRL_ENABLE, 0 },
1051 { 0x125D, 0x199A, 0x144D, 0x3260, HV_CTRL_ENABLE | REDUCED_DEBOUNCE, 0 },
1052 { 0x125D, 0x199A, 0x144D, 0x3261, HV_CTRL_ENABLE | REDUCED_DEBOUNCE, 0 },
1053 { 0x125D, 0x199A, 0x144D, 0xC000, HV_CTRL_ENABLE | REDUCED_DEBOUNCE, 0 },
1054 { 0x125D, 0x199A, 0x144D, 0xC001, HV_CTRL_ENABLE | REDUCED_DEBOUNCE, 0 },
1055 { 0 }
1056};
1057
1058/*
1059 * lowlevel functions
1060 */
1061
1062inline static void snd_m3_outw(m3_t *chip, u16 value, unsigned long reg)
1063{
1064 outw(value, chip->iobase + reg);
1065}
1066
1067inline static u16 snd_m3_inw(m3_t *chip, unsigned long reg)
1068{
1069 return inw(chip->iobase + reg);
1070}
1071
1072inline static void snd_m3_outb(m3_t *chip, u8 value, unsigned long reg)
1073{
1074 outb(value, chip->iobase + reg);
1075}
1076
1077inline static u8 snd_m3_inb(m3_t *chip, unsigned long reg)
1078{
1079 return inb(chip->iobase + reg);
1080}
1081
1082/*
1083 * access 16bit words to the code or data regions of the dsp's memory.
1084 * index addresses 16bit words.
1085 */
1086static u16 snd_m3_assp_read(m3_t *chip, u16 region, u16 index)
1087{
1088 snd_m3_outw(chip, region & MEMTYPE_MASK, DSP_PORT_MEMORY_TYPE);
1089 snd_m3_outw(chip, index, DSP_PORT_MEMORY_INDEX);
1090 return snd_m3_inw(chip, DSP_PORT_MEMORY_DATA);
1091}
1092
1093static void snd_m3_assp_write(m3_t *chip, u16 region, u16 index, u16 data)
1094{
1095 snd_m3_outw(chip, region & MEMTYPE_MASK, DSP_PORT_MEMORY_TYPE);
1096 snd_m3_outw(chip, index, DSP_PORT_MEMORY_INDEX);
1097 snd_m3_outw(chip, data, DSP_PORT_MEMORY_DATA);
1098}
1099
1100static void snd_m3_assp_halt(m3_t *chip)
1101{
1102 chip->reset_state = snd_m3_inb(chip, DSP_PORT_CONTROL_REG_B) & ~REGB_STOP_CLOCK;
1103 msleep(10);
1104 snd_m3_outb(chip, chip->reset_state & ~REGB_ENABLE_RESET, DSP_PORT_CONTROL_REG_B);
1105}
1106
1107static void snd_m3_assp_continue(m3_t *chip)
1108{
1109 snd_m3_outb(chip, chip->reset_state | REGB_ENABLE_RESET, DSP_PORT_CONTROL_REG_B);
1110}
1111
1112
1113/*
1114 * This makes me sad. the maestro3 has lists
1115 * internally that must be packed.. 0 terminates,
1116 * apparently, or maybe all unused entries have
1117 * to be 0, the lists have static lengths set
1118 * by the binary code images.
1119 */
1120
1121static int snd_m3_add_list(m3_t *chip, struct m3_list *list, u16 val)
1122{
1123 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1124 list->mem_addr + list->curlen,
1125 val);
1126 return list->curlen++;
1127}
1128
1129static void snd_m3_remove_list(m3_t *chip, struct m3_list *list, int index)
1130{
1131 u16 val;
1132 int lastindex = list->curlen - 1;
1133
1134 if (index != lastindex) {
1135 val = snd_m3_assp_read(chip, MEMTYPE_INTERNAL_DATA,
1136 list->mem_addr + lastindex);
1137 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1138 list->mem_addr + index,
1139 val);
1140 }
1141
1142 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1143 list->mem_addr + lastindex,
1144 0);
1145
1146 list->curlen--;
1147}
1148
1149static void snd_m3_inc_timer_users(m3_t *chip)
1150{
1151 chip->timer_users++;
1152 if (chip->timer_users != 1)
1153 return;
1154
1155 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1156 KDATA_TIMER_COUNT_RELOAD,
1157 240);
1158
1159 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1160 KDATA_TIMER_COUNT_CURRENT,
1161 240);
1162
1163 snd_m3_outw(chip,
1164 snd_m3_inw(chip, HOST_INT_CTRL) | CLKRUN_GEN_ENABLE,
1165 HOST_INT_CTRL);
1166}
1167
1168static void snd_m3_dec_timer_users(m3_t *chip)
1169{
1170 chip->timer_users--;
1171 if (chip->timer_users > 0)
1172 return;
1173
1174 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1175 KDATA_TIMER_COUNT_RELOAD,
1176 0);
1177
1178 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1179 KDATA_TIMER_COUNT_CURRENT,
1180 0);
1181
1182 snd_m3_outw(chip,
1183 snd_m3_inw(chip, HOST_INT_CTRL) & ~CLKRUN_GEN_ENABLE,
1184 HOST_INT_CTRL);
1185}
1186
1187/*
1188 * start/stop
1189 */
1190
1191/* spinlock held! */
1192static int snd_m3_pcm_start(m3_t *chip, m3_dma_t *s, snd_pcm_substream_t *subs)
1193{
1194 if (! s || ! subs)
1195 return -EINVAL;
1196
1197 snd_m3_inc_timer_users(chip);
1198 switch (subs->stream) {
1199 case SNDRV_PCM_STREAM_PLAYBACK:
1200 chip->dacs_active++;
1201 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1202 s->inst.data + CDATA_INSTANCE_READY, 1);
1203 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1204 KDATA_MIXER_TASK_NUMBER,
1205 chip->dacs_active);
1206 break;
1207 case SNDRV_PCM_STREAM_CAPTURE:
1208 snd_m3_assp_write(s->chip, MEMTYPE_INTERNAL_DATA,
1209 KDATA_ADC1_REQUEST, 1);
1210 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1211 s->inst.data + CDATA_INSTANCE_READY, 1);
1212 break;
1213 }
1214 return 0;
1215}
1216
1217/* spinlock held! */
1218static int snd_m3_pcm_stop(m3_t *chip, m3_dma_t *s, snd_pcm_substream_t *subs)
1219{
1220 if (! s || ! subs)
1221 return -EINVAL;
1222
1223 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1224 s->inst.data + CDATA_INSTANCE_READY, 0);
1225 snd_m3_dec_timer_users(chip);
1226 switch (subs->stream) {
1227 case SNDRV_PCM_STREAM_PLAYBACK:
1228 chip->dacs_active--;
1229 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1230 KDATA_MIXER_TASK_NUMBER,
1231 chip->dacs_active);
1232 break;
1233 case SNDRV_PCM_STREAM_CAPTURE:
1234 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1235 KDATA_ADC1_REQUEST, 0);
1236 break;
1237 }
1238 return 0;
1239}
1240
1241static int
1242snd_m3_pcm_trigger(snd_pcm_substream_t *subs, int cmd)
1243{
1244 m3_t *chip = snd_pcm_substream_chip(subs);
1245 m3_dma_t *s = (m3_dma_t*)subs->runtime->private_data;
1246 int err = -EINVAL;
1247
1248 snd_assert(s != NULL, return -ENXIO);
1249
1250 spin_lock(&chip->reg_lock);
1251 switch (cmd) {
1252 case SNDRV_PCM_TRIGGER_START:
1253 case SNDRV_PCM_TRIGGER_RESUME:
1254 if (s->running)
1255 err = -EBUSY;
1256 else {
1257 s->running = 1;
1258 err = snd_m3_pcm_start(chip, s, subs);
1259 }
1260 break;
1261 case SNDRV_PCM_TRIGGER_STOP:
1262 case SNDRV_PCM_TRIGGER_SUSPEND:
1263 if (! s->running)
1264 err = 0; /* should return error? */
1265 else {
1266 s->running = 0;
1267 err = snd_m3_pcm_stop(chip, s, subs);
1268 }
1269 break;
1270 }
1271 spin_unlock(&chip->reg_lock);
1272 return err;
1273}
1274
1275/*
1276 * setup
1277 */
1278static void
1279snd_m3_pcm_setup1(m3_t *chip, m3_dma_t *s, snd_pcm_substream_t *subs)
1280{
1281 int dsp_in_size, dsp_out_size, dsp_in_buffer, dsp_out_buffer;
1282 snd_pcm_runtime_t *runtime = subs->runtime;
1283
1284 if (subs->stream == SNDRV_PCM_STREAM_PLAYBACK) {
1285 dsp_in_size = MINISRC_IN_BUFFER_SIZE - (0x20 * 2);
1286 dsp_out_size = MINISRC_OUT_BUFFER_SIZE - (0x20 * 2);
1287 } else {
1288 dsp_in_size = MINISRC_IN_BUFFER_SIZE - (0x10 * 2);
1289 dsp_out_size = MINISRC_OUT_BUFFER_SIZE - (0x10 * 2);
1290 }
1291 dsp_in_buffer = s->inst.data + (MINISRC_TMP_BUFFER_SIZE / 2);
1292 dsp_out_buffer = dsp_in_buffer + (dsp_in_size / 2) + 1;
1293
1294 s->dma_size = frames_to_bytes(runtime, runtime->buffer_size);
1295 s->period_size = frames_to_bytes(runtime, runtime->period_size);
1296 s->hwptr = 0;
1297 s->count = 0;
1298
1299#define LO(x) ((x) & 0xffff)
1300#define HI(x) LO((x) >> 16)
1301
1302 /* host dma buffer pointers */
1303 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1304 s->inst.data + CDATA_HOST_SRC_ADDRL,
1305 LO(s->buffer_addr));
1306
1307 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1308 s->inst.data + CDATA_HOST_SRC_ADDRH,
1309 HI(s->buffer_addr));
1310
1311 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1312 s->inst.data + CDATA_HOST_SRC_END_PLUS_1L,
1313 LO(s->buffer_addr + s->dma_size));
1314
1315 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1316 s->inst.data + CDATA_HOST_SRC_END_PLUS_1H,
1317 HI(s->buffer_addr + s->dma_size));
1318
1319 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1320 s->inst.data + CDATA_HOST_SRC_CURRENTL,
1321 LO(s->buffer_addr));
1322
1323 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1324 s->inst.data + CDATA_HOST_SRC_CURRENTH,
1325 HI(s->buffer_addr));
1326#undef LO
1327#undef HI
1328
1329 /* dsp buffers */
1330
1331 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1332 s->inst.data + CDATA_IN_BUF_BEGIN,
1333 dsp_in_buffer);
1334
1335 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1336 s->inst.data + CDATA_IN_BUF_END_PLUS_1,
1337 dsp_in_buffer + (dsp_in_size / 2));
1338
1339 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1340 s->inst.data + CDATA_IN_BUF_HEAD,
1341 dsp_in_buffer);
1342
1343 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1344 s->inst.data + CDATA_IN_BUF_TAIL,
1345 dsp_in_buffer);
1346
1347 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1348 s->inst.data + CDATA_OUT_BUF_BEGIN,
1349 dsp_out_buffer);
1350
1351 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1352 s->inst.data + CDATA_OUT_BUF_END_PLUS_1,
1353 dsp_out_buffer + (dsp_out_size / 2));
1354
1355 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1356 s->inst.data + CDATA_OUT_BUF_HEAD,
1357 dsp_out_buffer);
1358
1359 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1360 s->inst.data + CDATA_OUT_BUF_TAIL,
1361 dsp_out_buffer);
1362}
1363
1364static void snd_m3_pcm_setup2(m3_t *chip, m3_dma_t *s, snd_pcm_runtime_t *runtime)
1365{
1366 u32 freq;
1367
1368 /*
1369 * put us in the lists if we're not already there
1370 */
1371 if (! s->in_lists) {
1372 s->index[0] = snd_m3_add_list(chip, s->index_list[0],
1373 s->inst.data >> DP_SHIFT_COUNT);
1374 s->index[1] = snd_m3_add_list(chip, s->index_list[1],
1375 s->inst.data >> DP_SHIFT_COUNT);
1376 s->index[2] = snd_m3_add_list(chip, s->index_list[2],
1377 s->inst.data >> DP_SHIFT_COUNT);
1378 s->in_lists = 1;
1379 }
1380
1381 /* write to 'mono' word */
1382 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1383 s->inst.data + SRC3_DIRECTION_OFFSET + 1,
1384 runtime->channels == 2 ? 0 : 1);
1385 /* write to '8bit' word */
1386 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1387 s->inst.data + SRC3_DIRECTION_OFFSET + 2,
1388 snd_pcm_format_width(runtime->format) == 16 ? 0 : 1);
1389
1390 /* set up dac/adc rate */
1391 freq = ((runtime->rate << 15) + 24000 ) / 48000;
1392 if (freq)
1393 freq--;
1394 printk("set rate: %i, freq: %i\n",runtime->rate,freq);
1395 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1396 s->inst.data + CDATA_FREQUENCY,
1397 freq);
1398}
1399
1400
1401static struct play_vals {
1402 u16 addr, val;
1403} pv[] = {
1404 {CDATA_LEFT_VOLUME, ARB_VOLUME},
1405 {CDATA_RIGHT_VOLUME, ARB_VOLUME},
1406 {SRC3_DIRECTION_OFFSET, 0} ,
1407 /* +1, +2 are stereo/16 bit */
1408 {SRC3_DIRECTION_OFFSET + 3, 0x0000}, /* fraction? */
1409 {SRC3_DIRECTION_OFFSET + 4, 0}, /* first l */
1410 {SRC3_DIRECTION_OFFSET + 5, 0}, /* first r */
1411 {SRC3_DIRECTION_OFFSET + 6, 0}, /* second l */
1412 {SRC3_DIRECTION_OFFSET + 7, 0}, /* second r */
1413 {SRC3_DIRECTION_OFFSET + 8, 0}, /* delta l */
1414 {SRC3_DIRECTION_OFFSET + 9, 0}, /* delta r */
1415 {SRC3_DIRECTION_OFFSET + 10, 0x8000}, /* round */
1416 {SRC3_DIRECTION_OFFSET + 11, 0xFF00}, /* higher bute mark */
1417 {SRC3_DIRECTION_OFFSET + 13, 0}, /* temp0 */
1418 {SRC3_DIRECTION_OFFSET + 14, 0}, /* c fraction */
1419 {SRC3_DIRECTION_OFFSET + 15, 0}, /* counter */
1420 {SRC3_DIRECTION_OFFSET + 16, 8}, /* numin */
1421 {SRC3_DIRECTION_OFFSET + 17, 50*2}, /* numout */
1422 {SRC3_DIRECTION_OFFSET + 18, MINISRC_BIQUAD_STAGE - 1}, /* numstage */
1423 {SRC3_DIRECTION_OFFSET + 20, 0}, /* filtertap */
1424 {SRC3_DIRECTION_OFFSET + 21, 0} /* booster */
1425};
1426
1427
1428/* the mode passed should be already shifted and masked */
1429static void
1430snd_m3_playback_setup(m3_t *chip, m3_dma_t *s, snd_pcm_substream_t *subs)
1431{
1432 unsigned int i;
1433
1434 /*
1435 * some per client initializers
1436 */
1437
1438 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1439 s->inst.data + SRC3_DIRECTION_OFFSET + 12,
1440 s->inst.data + 40 + 8);
1441
1442 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1443 s->inst.data + SRC3_DIRECTION_OFFSET + 19,
1444 s->inst.code + MINISRC_COEF_LOC);
1445
1446 /* enable or disable low pass filter? */
1447 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1448 s->inst.data + SRC3_DIRECTION_OFFSET + 22,
1449 subs->runtime->rate > 45000 ? 0xff : 0);
1450
1451 /* tell it which way dma is going? */
1452 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1453 s->inst.data + CDATA_DMA_CONTROL,
1454 DMACONTROL_AUTOREPEAT + DMAC_PAGE3_SELECTOR + DMAC_BLOCKF_SELECTOR);
1455
1456 /*
1457 * set an armload of static initializers
1458 */
1459 for (i = 0; i < ARRAY_SIZE(pv); i++)
1460 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1461 s->inst.data + pv[i].addr, pv[i].val);
1462}
1463
1464/*
1465 * Native record driver
1466 */
1467static struct rec_vals {
1468 u16 addr, val;
1469} rv[] = {
1470 {CDATA_LEFT_VOLUME, ARB_VOLUME},
1471 {CDATA_RIGHT_VOLUME, ARB_VOLUME},
1472 {SRC3_DIRECTION_OFFSET, 1} ,
1473 /* +1, +2 are stereo/16 bit */
1474 {SRC3_DIRECTION_OFFSET + 3, 0x0000}, /* fraction? */
1475 {SRC3_DIRECTION_OFFSET + 4, 0}, /* first l */
1476 {SRC3_DIRECTION_OFFSET + 5, 0}, /* first r */
1477 {SRC3_DIRECTION_OFFSET + 6, 0}, /* second l */
1478 {SRC3_DIRECTION_OFFSET + 7, 0}, /* second r */
1479 {SRC3_DIRECTION_OFFSET + 8, 0}, /* delta l */
1480 {SRC3_DIRECTION_OFFSET + 9, 0}, /* delta r */
1481 {SRC3_DIRECTION_OFFSET + 10, 0x8000}, /* round */
1482 {SRC3_DIRECTION_OFFSET + 11, 0xFF00}, /* higher bute mark */
1483 {SRC3_DIRECTION_OFFSET + 13, 0}, /* temp0 */
1484 {SRC3_DIRECTION_OFFSET + 14, 0}, /* c fraction */
1485 {SRC3_DIRECTION_OFFSET + 15, 0}, /* counter */
1486 {SRC3_DIRECTION_OFFSET + 16, 50},/* numin */
1487 {SRC3_DIRECTION_OFFSET + 17, 8}, /* numout */
1488 {SRC3_DIRECTION_OFFSET + 18, 0}, /* numstage */
1489 {SRC3_DIRECTION_OFFSET + 19, 0}, /* coef */
1490 {SRC3_DIRECTION_OFFSET + 20, 0}, /* filtertap */
1491 {SRC3_DIRECTION_OFFSET + 21, 0}, /* booster */
1492 {SRC3_DIRECTION_OFFSET + 22, 0xff} /* skip lpf */
1493};
1494
1495static void
1496snd_m3_capture_setup(m3_t *chip, m3_dma_t *s, snd_pcm_substream_t *subs)
1497{
1498 unsigned int i;
1499
1500 /*
1501 * some per client initializers
1502 */
1503
1504 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1505 s->inst.data + SRC3_DIRECTION_OFFSET + 12,
1506 s->inst.data + 40 + 8);
1507
1508 /* tell it which way dma is going? */
1509 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1510 s->inst.data + CDATA_DMA_CONTROL,
1511 DMACONTROL_DIRECTION + DMACONTROL_AUTOREPEAT +
1512 DMAC_PAGE3_SELECTOR + DMAC_BLOCKF_SELECTOR);
1513
1514 /*
1515 * set an armload of static initializers
1516 */
1517 for (i = 0; i < ARRAY_SIZE(rv); i++)
1518 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
1519 s->inst.data + rv[i].addr, rv[i].val);
1520}
1521
1522static int snd_m3_pcm_hw_params(snd_pcm_substream_t * substream,
1523 snd_pcm_hw_params_t * hw_params)
1524{
1525 m3_dma_t *s = (m3_dma_t*) substream->runtime->private_data;
1526 int err;
1527
1528 if ((err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params))) < 0)
1529 return err;
1530 /* set buffer address */
1531 s->buffer_addr = substream->runtime->dma_addr;
1532 if (s->buffer_addr & 0x3) {
1533 snd_printk("oh my, not aligned\n");
1534 s->buffer_addr = s->buffer_addr & ~0x3;
1535 }
1536 return 0;
1537}
1538
1539static int snd_m3_pcm_hw_free(snd_pcm_substream_t * substream)
1540{
1541 m3_dma_t *s;
1542
1543 if (substream->runtime->private_data == NULL)
1544 return 0;
1545 s = (m3_dma_t*) substream->runtime->private_data;
1546 snd_pcm_lib_free_pages(substream);
1547 s->buffer_addr = 0;
1548 return 0;
1549}
1550
1551static int
1552snd_m3_pcm_prepare(snd_pcm_substream_t *subs)
1553{
1554 m3_t *chip = snd_pcm_substream_chip(subs);
1555 snd_pcm_runtime_t *runtime = subs->runtime;
1556 m3_dma_t *s = (m3_dma_t*)runtime->private_data;
1557
1558 snd_assert(s != NULL, return -ENXIO);
1559
1560 if (runtime->format != SNDRV_PCM_FORMAT_U8 &&
1561 runtime->format != SNDRV_PCM_FORMAT_S16_LE)
1562 return -EINVAL;
1563 if (runtime->rate > 48000 ||
1564 runtime->rate < 8000)
1565 return -EINVAL;
1566
1567 spin_lock_irq(&chip->reg_lock);
1568
1569 snd_m3_pcm_setup1(chip, s, subs);
1570
1571 if (subs->stream == SNDRV_PCM_STREAM_PLAYBACK)
1572 snd_m3_playback_setup(chip, s, subs);
1573 else
1574 snd_m3_capture_setup(chip, s, subs);
1575
1576 snd_m3_pcm_setup2(chip, s, runtime);
1577
1578 spin_unlock_irq(&chip->reg_lock);
1579
1580 return 0;
1581}
1582
1583/*
1584 * get current pointer
1585 */
1586static unsigned int
1587snd_m3_get_pointer(m3_t *chip, m3_dma_t *s, snd_pcm_substream_t *subs)
1588{
1589 u16 hi = 0, lo = 0;
1590 int retry = 10;
1591 u32 addr;
1592
1593 /*
1594 * try and get a valid answer
1595 */
1596 while (retry--) {
1597 hi = snd_m3_assp_read(chip, MEMTYPE_INTERNAL_DATA,
1598 s->inst.data + CDATA_HOST_SRC_CURRENTH);
1599
1600 lo = snd_m3_assp_read(chip, MEMTYPE_INTERNAL_DATA,
1601 s->inst.data + CDATA_HOST_SRC_CURRENTL);
1602
1603 if (hi == snd_m3_assp_read(chip, MEMTYPE_INTERNAL_DATA,
1604 s->inst.data + CDATA_HOST_SRC_CURRENTH))
1605 break;
1606 }
1607 addr = lo | ((u32)hi<<16);
1608 return (unsigned int)(addr - s->buffer_addr);
1609}
1610
1611static snd_pcm_uframes_t
1612snd_m3_pcm_pointer(snd_pcm_substream_t * subs)
1613{
1614 m3_t *chip = snd_pcm_substream_chip(subs);
1615 unsigned int ptr;
1616 m3_dma_t *s = (m3_dma_t*)subs->runtime->private_data;
1617 snd_assert(s != NULL, return 0);
1618
1619 spin_lock(&chip->reg_lock);
1620 ptr = snd_m3_get_pointer(chip, s, subs);
1621 spin_unlock(&chip->reg_lock);
1622 return bytes_to_frames(subs->runtime, ptr);
1623}
1624
1625
1626/* update pointer */
1627/* spinlock held! */
1628static void snd_m3_update_ptr(m3_t *chip, m3_dma_t *s)
1629{
1630 snd_pcm_substream_t *subs = s->substream;
1631 unsigned int hwptr;
1632 int diff;
1633
1634 if (! s->running)
1635 return;
1636
1637 hwptr = snd_m3_get_pointer(chip, s, subs) % s->dma_size;
1638 diff = (s->dma_size + hwptr - s->hwptr) % s->dma_size;
1639 s->hwptr = hwptr;
1640 s->count += diff;
1641 if (s->count >= (signed)s->period_size) {
1642 s->count %= s->period_size;
1643 spin_unlock(&chip->reg_lock);
1644 snd_pcm_period_elapsed(subs);
1645 spin_lock(&chip->reg_lock);
1646 }
1647}
1648
1649static void snd_m3_update_hw_volume(unsigned long private_data)
1650{
1651 m3_t *chip = (m3_t *) private_data;
1652 int x, val;
1653 unsigned long flags;
1654
1655 /* Figure out which volume control button was pushed,
1656 based on differences from the default register
1657 values. */
1658 x = inb(chip->iobase + SHADOW_MIX_REG_VOICE) & 0xee;
1659
1660 /* Reset the volume control registers. */
1661 outb(0x88, chip->iobase + SHADOW_MIX_REG_VOICE);
1662 outb(0x88, chip->iobase + HW_VOL_COUNTER_VOICE);
1663 outb(0x88, chip->iobase + SHADOW_MIX_REG_MASTER);
1664 outb(0x88, chip->iobase + HW_VOL_COUNTER_MASTER);
1665
1666 if (!chip->master_switch || !chip->master_volume)
1667 return;
1668
1669 /* FIXME: we can't call snd_ac97_* functions since here is in tasklet. */
1670 spin_lock_irqsave(&chip->ac97_lock, flags);
1671
1672 val = chip->ac97->regs[AC97_MASTER_VOL];
1673 switch (x) {
1674 case 0x88:
1675 /* mute */
1676 val ^= 0x8000;
1677 chip->ac97->regs[AC97_MASTER_VOL] = val;
1678 outw(val, chip->iobase + CODEC_DATA);
1679 outb(AC97_MASTER_VOL, chip->iobase + CODEC_COMMAND);
1680 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
1681 &chip->master_switch->id);
1682 break;
1683 case 0xaa:
1684 /* volume up */
1685 if ((val & 0x7f) > 0)
1686 val--;
1687 if ((val & 0x7f00) > 0)
1688 val -= 0x0100;
1689 chip->ac97->regs[AC97_MASTER_VOL] = val;
1690 outw(val, chip->iobase + CODEC_DATA);
1691 outb(AC97_MASTER_VOL, chip->iobase + CODEC_COMMAND);
1692 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
1693 &chip->master_volume->id);
1694 break;
1695 case 0x66:
1696 /* volume down */
1697 if ((val & 0x7f) < 0x1f)
1698 val++;
1699 if ((val & 0x7f00) < 0x1f00)
1700 val += 0x0100;
1701 chip->ac97->regs[AC97_MASTER_VOL] = val;
1702 outw(val, chip->iobase + CODEC_DATA);
1703 outb(AC97_MASTER_VOL, chip->iobase + CODEC_COMMAND);
1704 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
1705 &chip->master_volume->id);
1706 break;
1707 }
1708 spin_unlock_irqrestore(&chip->ac97_lock, flags);
1709}
1710
1711static irqreturn_t
1712snd_m3_interrupt(int irq, void *dev_id, struct pt_regs *regs)
1713{
1714 m3_t *chip = dev_id;
1715 u8 status;
1716 int i;
1717#ifdef TARGET_OS2
1718 int fOurIrq = FALSE;
1719#endif
1720#ifdef DEBUG
1721 dprintf(("int"));
1722#endif
1723 status = inb(chip->iobase + HOST_INT_STATUS);
1724#ifdef DEBUG
1725 dprintf(("%x",status));
1726#endif
1727
1728 if (status == 0xff)
1729 return IRQ_NONE;
1730
1731#ifdef TARGET_OS2
1732 fOurIrq = TRUE;
1733#endif
1734 if (status & HV_INT_PENDING)
1735 tasklet_hi_schedule(&chip->hwvol_tq);
1736 /*
1737 * ack an assp int if its running
1738 * and has an int pending
1739 */
1740 if (status & ASSP_INT_PENDING) {
1741 u8 ctl;
1742 ctl = inb(chip->iobase + ASSP_CONTROL_B);
1743 if (!(ctl & STOP_ASSP_CLOCK)) {
1744 ctl = inb(chip->iobase + ASSP_HOST_INT_STATUS);
1745 if (ctl & DSP2HOST_REQ_TIMER) {
1746 outb(DSP2HOST_REQ_TIMER, chip->iobase + ASSP_HOST_INT_STATUS);
1747 /* update adc/dac info if it was a timer int */
1748 spin_lock(&chip->reg_lock);
1749 for (i = 0; i < chip->num_substreams; i++) {
1750 m3_dma_t *s = &chip->substreams[i];
1751 if (s->running)
1752 snd_m3_update_ptr(chip, s);
1753 }
1754 spin_unlock(&chip->reg_lock);
1755 }
1756 }
1757 }
1758
1759#if 0 /* TODO: not supported yet */
1760 if ((status & MPU401_INT_PENDING) && chip->rmidi)
1761 snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data, regs);
1762#endif
1763
1764 /* ack ints */
1765 outb(status, chip->iobase + HOST_INT_STATUS);
1766#ifdef TARGET_OS2
1767 if (fOurIrq) {
1768 eoi_irq(irq);
1769 }
1770#endif //TARGET_OS2
1771
1772 return IRQ_HANDLED;
1773}
1774
1775
1776/*
1777 */
1778
1779static snd_pcm_hardware_t snd_m3_playback =
1780{
1781 /* info: */ (SNDRV_PCM_INFO_MMAP |
1782 SNDRV_PCM_INFO_INTERLEAVED |
1783 SNDRV_PCM_INFO_MMAP_VALID |
1784 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1785 /*SNDRV_PCM_INFO_PAUSE |*/
1786 SNDRV_PCM_INFO_RESUME),
1787 /* formats: */ SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
1788 /* rates: */ SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
1789 /* rate_min: */ 8000,
1790 /* rate_max: */ 48000,
1791 /* channels_min: */ 1,
1792 /* channels_max: */ 2,
1793 /* buffer_bytes_max: */ (512*1024),
1794 /* period_bytes_min: */ 64,
1795 /* period_bytes_max: */ (512*1024),
1796 /* periods_min: */ 1,
1797 /* periods_max: */ 1024,
1798 0
1799};
1800
1801static snd_pcm_hardware_t snd_m3_capture =
1802{
1803 /* info: */ (SNDRV_PCM_INFO_MMAP |
1804 SNDRV_PCM_INFO_INTERLEAVED |
1805 SNDRV_PCM_INFO_MMAP_VALID |
1806 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1807 /*SNDRV_PCM_INFO_PAUSE |*/
1808 SNDRV_PCM_INFO_RESUME),
1809 /* formats: */ SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
1810 /* rates: */ SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
1811 /* rate_min: */ 8000,
1812 /* rate_max: */ 48000,
1813 /* channels_min: */ 1,
1814 /* channels_max: */ 2,
1815 /* buffer_bytes_max: */ (512*1024),
1816 /* period_bytes_min: */ 64,
1817 /* period_bytes_max: */ (512*1024),
1818 /* periods_min: */ 1,
1819 /* periods_max: */ 1024,
1820 0
1821};
1822
1823/*
1824 */
1825
1826static int
1827snd_m3_substream_open(m3_t *chip, snd_pcm_substream_t *subs)
1828{
1829 int i;
1830 m3_dma_t *s;
1831
1832 spin_lock_irq(&chip->reg_lock);
1833 for (i = 0; i < chip->num_substreams; i++) {
1834 s = &chip->substreams[i];
1835 if (! s->opened)
1836 goto __found;
1837 }
1838 spin_unlock_irq(&chip->reg_lock);
1839 return -ENOMEM;
1840__found:
1841 s->opened = 1;
1842 s->running = 0;
1843 spin_unlock_irq(&chip->reg_lock);
1844
1845 subs->runtime->private_data = s;
1846 s->substream = subs;
1847
1848 /* set list owners */
1849 if (subs->stream == SNDRV_PCM_STREAM_PLAYBACK) {
1850 s->index_list[0] = &chip->mixer_list;
1851 } else
1852 s->index_list[0] = &chip->adc1_list;
1853 s->index_list[1] = &chip->msrc_list;
1854 s->index_list[2] = &chip->dma_list;
1855
1856 return 0;
1857}
1858
1859static void
1860snd_m3_substream_close(m3_t *chip, snd_pcm_substream_t *subs)
1861{
1862 m3_dma_t *s = (m3_dma_t*) subs->runtime->private_data;
1863
1864 if (s == NULL)
1865 return; /* not opened properly */
1866
1867 spin_lock_irq(&chip->reg_lock);
1868 if (s->substream && s->running)
1869 snd_m3_pcm_stop(chip, s, s->substream); /* does this happen? */
1870 if (s->in_lists) {
1871 snd_m3_remove_list(chip, s->index_list[0], s->index[0]);
1872 snd_m3_remove_list(chip, s->index_list[1], s->index[1]);
1873 snd_m3_remove_list(chip, s->index_list[2], s->index[2]);
1874 s->in_lists = 0;
1875 }
1876 s->running = 0;
1877 s->opened = 0;
1878 spin_unlock_irq(&chip->reg_lock);
1879}
1880
1881static int
1882snd_m3_playback_open(snd_pcm_substream_t *subs)
1883{
1884 m3_t *chip = snd_pcm_substream_chip(subs);
1885 snd_pcm_runtime_t *runtime = subs->runtime;
1886 int err;
1887
1888 if ((err = snd_m3_substream_open(chip, subs)) < 0)
1889 return err;
1890
1891 runtime->hw = snd_m3_playback;
1892 snd_pcm_set_sync(subs);
1893
1894 return 0;
1895}
1896
1897static int
1898snd_m3_playback_close(snd_pcm_substream_t *subs)
1899{
1900 m3_t *chip = snd_pcm_substream_chip(subs);
1901
1902 snd_m3_substream_close(chip, subs);
1903 return 0;
1904}
1905
1906static int
1907snd_m3_capture_open(snd_pcm_substream_t *subs)
1908{
1909 m3_t *chip = snd_pcm_substream_chip(subs);
1910 snd_pcm_runtime_t *runtime = subs->runtime;
1911 int err;
1912
1913 if ((err = snd_m3_substream_open(chip, subs)) < 0)
1914 return err;
1915
1916 runtime->hw = snd_m3_capture;
1917 snd_pcm_set_sync(subs);
1918
1919 return 0;
1920}
1921
1922static int
1923snd_m3_capture_close(snd_pcm_substream_t *subs)
1924{
1925 m3_t *chip = snd_pcm_substream_chip(subs);
1926
1927 snd_m3_substream_close(chip, subs);
1928 return 0;
1929}
1930
1931/*
1932 * create pcm instance
1933 */
1934
1935static snd_pcm_ops_t snd_m3_playback_ops = {
1936 snd_m3_playback_open,
1937 snd_m3_playback_close,
1938 snd_pcm_lib_ioctl,
1939 snd_m3_pcm_hw_params,
1940 snd_m3_pcm_hw_free,
1941 snd_m3_pcm_prepare,
1942 snd_m3_pcm_trigger,
1943 snd_m3_pcm_pointer,0,0
1944};
1945
1946static snd_pcm_ops_t snd_m3_capture_ops = {
1947 snd_m3_capture_open,
1948 snd_m3_capture_close,
1949 snd_pcm_lib_ioctl,
1950 snd_m3_pcm_hw_params,
1951 snd_m3_pcm_hw_free,
1952 snd_m3_pcm_prepare,
1953 snd_m3_pcm_trigger,
1954 snd_m3_pcm_pointer,0,0
1955};
1956
1957static int __devinit
1958snd_m3_pcm(m3_t * chip, int device)
1959{
1960 snd_pcm_t *pcm;
1961 int err;
1962
1963 err = snd_pcm_new(chip->card, chip->card->driver, device,
1964 MAX_PLAYBACKS, MAX_CAPTURES, &pcm);
1965 if (err < 0)
1966 return err;
1967
1968 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_m3_playback_ops);
1969 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_m3_capture_ops);
1970
1971 pcm->private_data = chip;
1972 pcm->info_flags = 0;
1973 strcpy(pcm->name, chip->card->driver);
1974 chip->pcm = pcm;
1975
1976 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1977 snd_dma_pci_data(chip->pci), 64*1024, 64*1024);
1978
1979 return 0;
1980}
1981
1982
1983/*
1984 * ac97 interface
1985 */
1986
1987/*
1988 * Wait for the ac97 serial bus to be free.
1989 * return nonzero if the bus is still busy.
1990 */
1991static int snd_m3_ac97_wait(m3_t *chip)
1992{
1993 int i = 10000;
1994
1995 do {
1996 if (! (snd_m3_inb(chip, 0x30) & 1))
1997 return 0;
1998 } while (i-- > 0);
1999
2000 snd_printk("ac97 serial bus busy\n");
2001 return 1;
2002}
2003
2004static unsigned short
2005snd_m3_ac97_read(ac97_t *ac97, unsigned short reg)
2006{
2007 m3_t *chip = ac97->private_data;
2008 unsigned long flags;
2009 unsigned short data;
2010
2011 if (snd_m3_ac97_wait(chip))
2012 return 0xffff;
2013 spin_lock_irqsave(&chip->ac97_lock, flags);
2014 snd_m3_outb(chip, 0x80 | (reg & 0x7f), CODEC_COMMAND);
2015 if (snd_m3_ac97_wait(chip))
2016 return 0xffff;
2017 data = snd_m3_inw(chip, CODEC_DATA);
2018 spin_unlock_irqrestore(&chip->ac97_lock, flags);
2019 return data;
2020}
2021
2022static void
2023snd_m3_ac97_write(ac97_t *ac97, unsigned short reg, unsigned short val)
2024{
2025 m3_t *chip = ac97->private_data;
2026 unsigned long flags;
2027
2028 if (snd_m3_ac97_wait(chip))
2029 return;
2030 spin_lock_irqsave(&chip->ac97_lock, flags);
2031 snd_m3_outw(chip, val, CODEC_DATA);
2032 snd_m3_outb(chip, reg & 0x7f, CODEC_COMMAND);
2033 spin_unlock_irqrestore(&chip->ac97_lock, flags);
2034}
2035
2036
2037static void snd_m3_remote_codec_config(int io, int isremote)
2038{
2039 isremote = isremote ? 1 : 0;
2040
2041 outw((inw(io + RING_BUS_CTRL_B) & ~SECOND_CODEC_ID_MASK) | isremote,
2042 io + RING_BUS_CTRL_B);
2043 outw((inw(io + SDO_OUT_DEST_CTRL) & ~COMMAND_ADDR_OUT) | isremote,
2044 io + SDO_OUT_DEST_CTRL);
2045 outw((inw(io + SDO_IN_DEST_CTRL) & ~STATUS_ADDR_IN) | isremote,
2046 io + SDO_IN_DEST_CTRL);
2047}
2048
2049/*
2050 * hack, returns non zero on err
2051 */
2052static int snd_m3_try_read_vendor(m3_t *chip)
2053{
2054 u16 ret;
2055
2056 if (snd_m3_ac97_wait(chip))
2057 return 1;
2058
2059 snd_m3_outb(chip, 0x80 | (AC97_VENDOR_ID1 & 0x7f), 0x30);
2060
2061 if (snd_m3_ac97_wait(chip))
2062 return 1;
2063
2064 ret = snd_m3_inw(chip, 0x32);
2065
2066 return (ret == 0) || (ret == 0xffff);
2067}
2068
2069static void snd_m3_ac97_reset(m3_t *chip)
2070{
2071 u16 dir;
2072 int delay1 = 0, delay2 = 0, i;
2073 int io = chip->iobase;
2074
2075 if (chip->allegro_flag) {
2076 /*
2077 * the onboard codec on the allegro seems
2078 * to want to wait a very long time before
2079 * coming back to life
2080 */
2081 delay1 = 50;
2082 delay2 = 800;
2083 } else {
2084 /* maestro3 */
2085 delay1 = 20;
2086 delay2 = 500;
2087 }
2088
2089 for (i = 0; i < 5; i++) {
2090 dir = inw(io + GPIO_DIRECTION);
2091 if (! chip->quirk || ! chip->quirk->irda_workaround)
2092 dir |= 0x10; /* assuming pci bus master? */
2093
2094 snd_m3_remote_codec_config(io, 0);
2095
2096 outw(IO_SRAM_ENABLE, io + RING_BUS_CTRL_A);
2097 udelay(20);
2098
2099 outw(dir & ~GPO_PRIMARY_AC97 , io + GPIO_DIRECTION);
2100 outw(~GPO_PRIMARY_AC97 , io + GPIO_MASK);
2101 outw(0, io + GPIO_DATA);
2102 outw(dir | GPO_PRIMARY_AC97, io + GPIO_DIRECTION);
2103
2104 set_current_state(TASK_UNINTERRUPTIBLE);
2105 schedule_timeout((delay1 * HZ) / 1000);
2106
2107 outw(GPO_PRIMARY_AC97, io + GPIO_DATA);
2108 udelay(5);
2109 /* ok, bring back the ac-link */
2110 outw(IO_SRAM_ENABLE | SERIAL_AC_LINK_ENABLE, io + RING_BUS_CTRL_A);
2111 outw(~0, io + GPIO_MASK);
2112
2113 set_current_state(TASK_UNINTERRUPTIBLE);
2114 schedule_timeout((delay2 * HZ) / 1000);
2115
2116 if (! snd_m3_try_read_vendor(chip))
2117 break;
2118
2119 delay1 += 10;
2120 delay2 += 100;
2121
2122 snd_printd("maestro3: retrying codec reset with delays of %d and %d ms\n",
2123 delay1, delay2);
2124 }
2125
2126#if 0
2127 /* more gung-ho reset that doesn't
2128 * seem to work anywhere :)
2129 */
2130 tmp = inw(io + RING_BUS_CTRL_A);
2131 outw(RAC_SDFS_ENABLE|LAC_SDFS_ENABLE, io + RING_BUS_CTRL_A);
2132 msleep(20);
2133 outw(tmp, io + RING_BUS_CTRL_A);
2134 msleep(50);
2135#endif
2136}
2137
2138static int __devinit snd_m3_mixer(m3_t *chip)
2139{
2140 ac97_bus_t *pbus;
2141 ac97_template_t ac97;
2142 snd_ctl_elem_id_t id;
2143 int err;
2144 static ac97_bus_ops_t ops = {
2145 0,snd_m3_ac97_write,
2146 snd_m3_ac97_read,0,0
2147 };
2148
2149 if ((err = snd_ac97_bus(chip->card, 0, &ops, NULL, &pbus)) < 0)
2150 return err;
2151
2152 memset(&ac97, 0, sizeof(ac97));
2153 ac97.private_data = chip;
2154 if ((err = snd_ac97_mixer(pbus, &ac97, &chip->ac97)) < 0)
2155 return err;
2156
2157 /* seems ac97 PCM needs initialization.. hack hack.. */
2158 snd_ac97_write(chip->ac97, AC97_PCM, 0x8000 | (15 << 8) | 15);
2159 set_current_state(TASK_UNINTERRUPTIBLE);
2160 schedule_timeout(HZ / 10);
2161 snd_ac97_write(chip->ac97, AC97_PCM, 0);
2162
2163 memset(&id, 0, sizeof(id));
2164 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
2165 strcpy(id.name, "Master Playback Switch");
2166 chip->master_switch = snd_ctl_find_id(chip->card, &id);
2167 memset(&id, 0, sizeof(id));
2168 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
2169 strcpy(id.name, "Master Playback Volume");
2170 chip->master_volume = snd_ctl_find_id(chip->card, &id);
2171
2172 return 0;
2173}
2174
2175
2176/*
2177 * DSP Code images
2178 */
2179
2180static u16 assp_kernel_image[] __devinitdata = {
2181 0x7980, 0x0030, 0x7980, 0x03B4, 0x7980, 0x03B4, 0x7980, 0x00FB, 0x7980, 0x00DD, 0x7980, 0x03B4,
2182 0x7980, 0x0332, 0x7980, 0x0287, 0x7980, 0x03B4, 0x7980, 0x03B4, 0x7980, 0x03B4, 0x7980, 0x03B4,
2183 0x7980, 0x031A, 0x7980, 0x03B4, 0x7980, 0x022F, 0x7980, 0x03B4, 0x7980, 0x03B4, 0x7980, 0x03B4,
2184 0x7980, 0x03B4, 0x7980, 0x03B4, 0x7980, 0x0063, 0x7980, 0x006B, 0x7980, 0x03B4, 0x7980, 0x03B4,
2185 0xBF80, 0x2C7C, 0x8806, 0x8804, 0xBE40, 0xBC20, 0xAE09, 0x1000, 0xAE0A, 0x0001, 0x6938, 0xEB08,
2186 0x0053, 0x695A, 0xEB08, 0x00D6, 0x0009, 0x8B88, 0x6980, 0xE388, 0x0036, 0xBE30, 0xBC20, 0x6909,
2187 0xB801, 0x9009, 0xBE41, 0xBE41, 0x6928, 0xEB88, 0x0078, 0xBE41, 0xBE40, 0x7980, 0x0038, 0xBE41,
2188 0xBE41, 0x903A, 0x6938, 0xE308, 0x0056, 0x903A, 0xBE41, 0xBE40, 0xEF00, 0x903A, 0x6939, 0xE308,
2189 0x005E, 0x903A, 0xEF00, 0x690B, 0x660C, 0xEF8C, 0x690A, 0x660C, 0x620B, 0x6609, 0xEF00, 0x6910,
2190 0x660F, 0xEF04, 0xE388, 0x0075, 0x690E, 0x660F, 0x6210, 0x660D, 0xEF00, 0x690E, 0x660D, 0xEF00,
2191 0xAE70, 0x0001, 0xBC20, 0xAE27, 0x0001, 0x6939, 0xEB08, 0x005D, 0x6926, 0xB801, 0x9026, 0x0026,
2192 0x8B88, 0x6980, 0xE388, 0x00CB, 0x9028, 0x0D28, 0x4211, 0xE100, 0x007A, 0x4711, 0xE100, 0x00A0,
2193 0x7A80, 0x0063, 0xB811, 0x660A, 0x6209, 0xE304, 0x007A, 0x0C0B, 0x4005, 0x100A, 0xBA01, 0x9012,
2194 0x0C12, 0x4002, 0x7980, 0x00AF, 0x7A80, 0x006B, 0xBE02, 0x620E, 0x660D, 0xBA10, 0xE344, 0x007A,
2195 0x0C10, 0x4005, 0x100E, 0xBA01, 0x9012, 0x0C12, 0x4002, 0x1003, 0xBA02, 0x9012, 0x0C12, 0x4000,
2196 0x1003, 0xE388, 0x00BA, 0x1004, 0x7980, 0x00BC, 0x1004, 0xBA01, 0x9012, 0x0C12, 0x4001, 0x0C05,
2197 0x4003, 0x0C06, 0x4004, 0x1011, 0xBFB0, 0x01FF, 0x9012, 0x0C12, 0x4006, 0xBC20, 0xEF00, 0xAE26,
2198 0x1028, 0x6970, 0xBFD0, 0x0001, 0x9070, 0xE388, 0x007A, 0xAE28, 0x0000, 0xEF00, 0xAE70, 0x0300,
2199 0x0C70, 0xB00C, 0xAE5A, 0x0000, 0xEF00, 0x7A80, 0x038A, 0x697F, 0xB801, 0x907F, 0x0056, 0x8B88,
2200 0x0CA0, 0xB008, 0xAF71, 0xB000, 0x4E71, 0xE200, 0x00F3, 0xAE56, 0x1057, 0x0056, 0x0CA0, 0xB008,
2201 0x8056, 0x7980, 0x03A1, 0x0810, 0xBFA0, 0x1059, 0xE304, 0x03A1, 0x8056, 0x7980, 0x03A1, 0x7A80,
2202 0x038A, 0xBF01, 0xBE43, 0xBE59, 0x907C, 0x6937, 0xE388, 0x010D, 0xBA01, 0xE308, 0x010C, 0xAE71,
2203 0x0004, 0x0C71, 0x5000, 0x6936, 0x9037, 0xBF0A, 0x109E, 0x8B8A, 0xAF80, 0x8014, 0x4C80, 0xBF0A,
2204 0x0560, 0xF500, 0xBF0A, 0x0520, 0xB900, 0xBB17, 0x90A0, 0x6917, 0xE388, 0x0148, 0x0D17, 0xE100,
2205 0x0127, 0xBF0C, 0x0578, 0xBF0D, 0x057C, 0x7980, 0x012B, 0xBF0C, 0x0538, 0xBF0D, 0x053C, 0x6900,
2206 0xE308, 0x0135, 0x8B8C, 0xBE59, 0xBB07, 0x90A0, 0xBC20, 0x7980, 0x0157, 0x030C, 0x8B8B, 0xB903,
2207 0x8809, 0xBEC6, 0x013E, 0x69AC, 0x90AB, 0x69AD, 0x90AB, 0x0813, 0x660A, 0xE344, 0x0144, 0x0309,
2208 0x830C, 0xBC20, 0x7980, 0x0157, 0x6955, 0xE388, 0x0157, 0x7C38, 0xBF0B, 0x0578, 0xF500, 0xBF0B,
2209 0x0538, 0xB907, 0x8809, 0xBEC6, 0x0156, 0x10AB, 0x90AA, 0x6974, 0xE388, 0x0163, 0xAE72, 0x0540,
2210 0xF500, 0xAE72, 0x0500, 0xAE61, 0x103B, 0x7A80, 0x02F6, 0x6978, 0xE388, 0x0182, 0x8B8C, 0xBF0C,
2211 0x0560, 0xE500, 0x7C40, 0x0814, 0xBA20, 0x8812, 0x733D, 0x7A80, 0x0380, 0x733E, 0x7A80, 0x0380,
2212 0x8B8C, 0xBF0C, 0x056C, 0xE500, 0x7C40, 0x0814, 0xBA2C, 0x8812, 0x733F, 0x7A80, 0x0380, 0x7340,
2213 0x7A80, 0x0380, 0x6975, 0xE388, 0x018E, 0xAE72, 0x0548, 0xF500, 0xAE72, 0x0508, 0xAE61, 0x1041,
2214 0x7A80, 0x02F6, 0x6979, 0xE388, 0x01AD, 0x8B8C, 0xBF0C, 0x0560, 0xE500, 0x7C40, 0x0814, 0xBA18,
2215 0x8812, 0x7343, 0x7A80, 0x0380, 0x7344, 0x7A80, 0x0380, 0x8B8C, 0xBF0C, 0x056C, 0xE500, 0x7C40,
2216 0x0814, 0xBA24, 0x8812, 0x7345, 0x7A80, 0x0380, 0x7346, 0x7A80, 0x0380, 0x6976, 0xE388, 0x01B9,
2217 0xAE72, 0x0558, 0xF500, 0xAE72, 0x0518, 0xAE61, 0x1047, 0x7A80, 0x02F6, 0x697A, 0xE388, 0x01D8,
2218 0x8B8C, 0xBF0C, 0x0560, 0xE500, 0x7C40, 0x0814, 0xBA08, 0x8812, 0x7349, 0x7A80, 0x0380, 0x734A,
2219 0x7A80, 0x0380, 0x8B8C, 0xBF0C, 0x056C, 0xE500, 0x7C40, 0x0814, 0xBA14, 0x8812, 0x734B, 0x7A80,
2220 0x0380, 0x734C, 0x7A80, 0x0380, 0xBC21, 0xAE1C, 0x1090, 0x8B8A, 0xBF0A, 0x0560, 0xE500, 0x7C40,
2221 0x0812, 0xB804, 0x8813, 0x8B8D, 0xBF0D, 0x056C, 0xE500, 0x7C40, 0x0815, 0xB804, 0x8811, 0x7A80,
2222 0x034A, 0x8B8A, 0xBF0A, 0x0560, 0xE500, 0x7C40, 0x731F, 0xB903, 0x8809, 0xBEC6, 0x01F9, 0x548A,
2223 0xBE03, 0x98A0, 0x7320, 0xB903, 0x8809, 0xBEC6, 0x0201, 0x548A, 0xBE03, 0x98A0, 0x1F20, 0x2F1F,
2224 0x9826, 0xBC20, 0x6935, 0xE388, 0x03A1, 0x6933, 0xB801, 0x9033, 0xBFA0, 0x02EE, 0xE308, 0x03A1,
2225 0x9033, 0xBF00, 0x6951, 0xE388, 0x021F, 0x7334, 0xBE80, 0x5760, 0xBE03, 0x9F7E, 0xBE59, 0x9034,
2226 0x697E, 0x0D51, 0x9013, 0xBC20, 0x695C, 0xE388, 0x03A1, 0x735E, 0xBE80, 0x5760, 0xBE03, 0x9F7E,
2227 0xBE59, 0x905E, 0x697E, 0x0D5C, 0x9013, 0x7980, 0x03A1, 0x7A80, 0x038A, 0xBF01, 0xBE43, 0x6977,
2228 0xE388, 0x024E, 0xAE61, 0x104D, 0x0061, 0x8B88, 0x6980, 0xE388, 0x024E, 0x9071, 0x0D71, 0x000B,
2229 0xAFA0, 0x8010, 0xAFA0, 0x8010, 0x0810, 0x660A, 0xE308, 0x0249, 0x0009, 0x0810, 0x660C, 0xE388,
2230 0x024E, 0x800B, 0xBC20, 0x697B, 0xE388, 0x03A1, 0xBF0A, 0x109E, 0x8B8A, 0xAF80, 0x8014, 0x4C80,
2231 0xE100, 0x0266, 0x697C, 0xBF90, 0x0560, 0x9072, 0x0372, 0x697C, 0xBF90, 0x0564, 0x9073, 0x0473,
2232 0x7980, 0x0270, 0x697C, 0xBF90, 0x0520, 0x9072, 0x0372, 0x697C, 0xBF90, 0x0524, 0x9073, 0x0473,
2233 0x697C, 0xB801, 0x907C, 0xBF0A, 0x10FD, 0x8B8A, 0xAF80, 0x8010, 0x734F, 0x548A, 0xBE03, 0x9880,
2234 0xBC21, 0x7326, 0x548B, 0xBE03, 0x618B, 0x988C, 0xBE03, 0x6180, 0x9880, 0x7980, 0x03A1, 0x7A80,
2235 0x038A, 0x0D28, 0x4711, 0xE100, 0x02BE, 0xAF12, 0x4006, 0x6912, 0xBFB0, 0x0C00, 0xE388, 0x02B6,
2236 0xBFA0, 0x0800, 0xE388, 0x02B2, 0x6912, 0xBFB0, 0x0C00, 0xBFA0, 0x0400, 0xE388, 0x02A3, 0x6909,
2237 0x900B, 0x7980, 0x02A5, 0xAF0B, 0x4005, 0x6901, 0x9005, 0x6902, 0x9006, 0x4311, 0xE100, 0x02ED,
2238 0x6911, 0xBFC0, 0x2000, 0x9011, 0x7980, 0x02ED, 0x6909, 0x900B, 0x7980, 0x02B8, 0xAF0B, 0x4005,
2239 0xAF05, 0x4003, 0xAF06, 0x4004, 0x7980, 0x02ED, 0xAF12, 0x4006, 0x6912, 0xBFB0, 0x0C00, 0xE388,
2240 0x02E7, 0xBFA0, 0x0800, 0xE388, 0x02E3, 0x6912, 0xBFB0, 0x0C00, 0xBFA0, 0x0400, 0xE388, 0x02D4,
2241 0x690D, 0x9010, 0x7980, 0x02D6, 0xAF10, 0x4005, 0x6901, 0x9005, 0x6902, 0x9006, 0x4311, 0xE100,
2242 0x02ED, 0x6911, 0xBFC0, 0x2000, 0x9011, 0x7980, 0x02ED, 0x690D, 0x9010, 0x7980, 0x02E9, 0xAF10,
2243 0x4005, 0xAF05, 0x4003, 0xAF06, 0x4004, 0xBC20, 0x6970, 0x9071, 0x7A80, 0x0078, 0x6971, 0x9070,
2244 0x7980, 0x03A1, 0xBC20, 0x0361, 0x8B8B, 0x6980, 0xEF88, 0x0272, 0x0372, 0x7804, 0x9071, 0x0D71,
2245 0x8B8A, 0x000B, 0xB903, 0x8809, 0xBEC6, 0x0309, 0x69A8, 0x90AB, 0x69A8, 0x90AA, 0x0810, 0x660A,
2246 0xE344, 0x030F, 0x0009, 0x0810, 0x660C, 0xE388, 0x0314, 0x800B, 0xBC20, 0x6961, 0xB801, 0x9061,
2247 0x7980, 0x02F7, 0x7A80, 0x038A, 0x5D35, 0x0001, 0x6934, 0xB801, 0x9034, 0xBF0A, 0x109E, 0x8B8A,
2248 0xAF80, 0x8014, 0x4880, 0xAE72, 0x0550, 0xF500, 0xAE72, 0x0510, 0xAE61, 0x1051, 0x7A80, 0x02F6,
2249 0x7980, 0x03A1, 0x7A80, 0x038A, 0x5D35, 0x0002, 0x695E, 0xB801, 0x905E, 0xBF0A, 0x109E, 0x8B8A,
2250 0xAF80, 0x8014, 0x4780, 0xAE72, 0x0558, 0xF500, 0xAE72, 0x0518, 0xAE61, 0x105C, 0x7A80, 0x02F6,
2251 0x7980, 0x03A1, 0x001C, 0x8B88, 0x6980, 0xEF88, 0x901D, 0x0D1D, 0x100F, 0x6610, 0xE38C, 0x0358,
2252 0x690E, 0x6610, 0x620F, 0x660D, 0xBA0F, 0xE301, 0x037A, 0x0410, 0x8B8A, 0xB903, 0x8809, 0xBEC6,
2253 0x036C, 0x6A8C, 0x61AA, 0x98AB, 0x6A8C, 0x61AB, 0x98AD, 0x6A8C, 0x61AD, 0x98A9, 0x6A8C, 0x61A9,
2254 0x98AA, 0x7C04, 0x8B8B, 0x7C04, 0x8B8D, 0x7C04, 0x8B89, 0x7C04, 0x0814, 0x660E, 0xE308, 0x0379,
2255 0x040D, 0x8410, 0xBC21, 0x691C, 0xB801, 0x901C, 0x7980, 0x034A, 0xB903, 0x8809, 0x8B8A, 0xBEC6,
2256 0x0388, 0x54AC, 0xBE03, 0x618C, 0x98AA, 0xEF00, 0xBC20, 0xBE46, 0x0809, 0x906B, 0x080A, 0x906C,
2257 0x080B, 0x906D, 0x081A, 0x9062, 0x081B, 0x9063, 0x081E, 0x9064, 0xBE59, 0x881E, 0x8065, 0x8166,
2258 0x8267, 0x8368, 0x8469, 0x856A, 0xEF00, 0xBC20, 0x696B, 0x8809, 0x696C, 0x880A, 0x696D, 0x880B,
2259 0x6962, 0x881A, 0x6963, 0x881B, 0x6964, 0x881E, 0x0065, 0x0166, 0x0267, 0x0368, 0x0469, 0x056A,
2260 0xBE3A,
2261};
2262
2263/*
2264 * Mini sample rate converter code image
2265 * that is to be loaded at 0x400 on the DSP.
2266 */
2267static u16 assp_minisrc_image[] __devinitdata = {
2268
2269 0xBF80, 0x101E, 0x906E, 0x006E, 0x8B88, 0x6980, 0xEF88, 0x906F, 0x0D6F, 0x6900, 0xEB08, 0x0412,
2270 0xBC20, 0x696E, 0xB801, 0x906E, 0x7980, 0x0403, 0xB90E, 0x8807, 0xBE43, 0xBF01, 0xBE47, 0xBE41,
2271 0x7A80, 0x002A, 0xBE40, 0x3029, 0xEFCC, 0xBE41, 0x7A80, 0x0028, 0xBE40, 0x3028, 0xEFCC, 0x6907,
2272 0xE308, 0x042A, 0x6909, 0x902C, 0x7980, 0x042C, 0x690D, 0x902C, 0x1009, 0x881A, 0x100A, 0xBA01,
2273 0x881B, 0x100D, 0x881C, 0x100E, 0xBA01, 0x881D, 0xBF80, 0x00ED, 0x881E, 0x050C, 0x0124, 0xB904,
2274 0x9027, 0x6918, 0xE308, 0x04B3, 0x902D, 0x6913, 0xBFA0, 0x7598, 0xF704, 0xAE2D, 0x00FF, 0x8B8D,
2275 0x6919, 0xE308, 0x0463, 0x691A, 0xE308, 0x0456, 0xB907, 0x8809, 0xBEC6, 0x0453, 0x10A9, 0x90AD,
2276 0x7980, 0x047C, 0xB903, 0x8809, 0xBEC6, 0x0460, 0x1889, 0x6C22, 0x90AD, 0x10A9, 0x6E23, 0x6C22,
2277 0x90AD, 0x7980, 0x047C, 0x101A, 0xE308, 0x046F, 0xB903, 0x8809, 0xBEC6, 0x046C, 0x10A9, 0x90A0,
2278 0x90AD, 0x7980, 0x047C, 0xB901, 0x8809, 0xBEC6, 0x047B, 0x1889, 0x6C22, 0x90A0, 0x90AD, 0x10A9,
2279 0x6E23, 0x6C22, 0x90A0, 0x90AD, 0x692D, 0xE308, 0x049C, 0x0124, 0xB703, 0xB902, 0x8818, 0x8B89,
2280 0x022C, 0x108A, 0x7C04, 0x90A0, 0x692B, 0x881F, 0x7E80, 0x055B, 0x692A, 0x8809, 0x8B89, 0x99A0,
2281 0x108A, 0x90A0, 0x692B, 0x881F, 0x7E80, 0x055B, 0x692A, 0x8809, 0x8B89, 0x99AF, 0x7B99, 0x0484,
2282 0x0124, 0x060F, 0x101B, 0x2013, 0x901B, 0xBFA0, 0x7FFF, 0xE344, 0x04AC, 0x901B, 0x8B89, 0x7A80,
2283 0x051A, 0x6927, 0xBA01, 0x9027, 0x7A80, 0x0523, 0x6927, 0xE308, 0x049E, 0x7980, 0x050F, 0x0624,
2284 0x1026, 0x2013, 0x9026, 0xBFA0, 0x7FFF, 0xE304, 0x04C0, 0x8B8D, 0x7A80, 0x051A, 0x7980, 0x04B4,
2285 0x9026, 0x1013, 0x3026, 0x901B, 0x8B8D, 0x7A80, 0x051A, 0x7A80, 0x0523, 0x1027, 0xBA01, 0x9027,
2286 0xE308, 0x04B4, 0x0124, 0x060F, 0x8B89, 0x691A, 0xE308, 0x04EA, 0x6919, 0xE388, 0x04E0, 0xB903,
2287 0x8809, 0xBEC6, 0x04DD, 0x1FA0, 0x2FAE, 0x98A9, 0x7980, 0x050F, 0xB901, 0x8818, 0xB907, 0x8809,
2288 0xBEC6, 0x04E7, 0x10EE, 0x90A9, 0x7980, 0x050F, 0x6919, 0xE308, 0x04FE, 0xB903, 0x8809, 0xBE46,
2289 0xBEC6, 0x04FA, 0x17A0, 0xBE1E, 0x1FAE, 0xBFBF, 0xFF00, 0xBE13, 0xBFDF, 0x8080, 0x99A9, 0xBE47,
2290 0x7980, 0x050F, 0xB901, 0x8809, 0xBEC6, 0x050E, 0x16A0, 0x26A0, 0xBFB7, 0xFF00, 0xBE1E, 0x1EA0,
2291 0x2EAE, 0xBFBF, 0xFF00, 0xBE13, 0xBFDF, 0x8080, 0x99A9, 0x850C, 0x860F, 0x6907, 0xE388, 0x0516,
2292 0x0D07, 0x8510, 0xBE59, 0x881E, 0xBE4A, 0xEF00, 0x101E, 0x901C, 0x101F, 0x901D, 0x10A0, 0x901E,
2293 0x10A0, 0x901F, 0xEF00, 0x101E, 0x301C, 0x9020, 0x731B, 0x5420, 0xBE03, 0x9825, 0x1025, 0x201C,
2294 0x9025, 0x7325, 0x5414, 0xBE03, 0x8B8E, 0x9880, 0x692F, 0xE388, 0x0539, 0xBE59, 0xBB07, 0x6180,
2295 0x9880, 0x8BA0, 0x101F, 0x301D, 0x9021, 0x731B, 0x5421, 0xBE03, 0x982E, 0x102E, 0x201D, 0x902E,
2296 0x732E, 0x5415, 0xBE03, 0x9880, 0x692F, 0xE388, 0x054F, 0xBE59, 0xBB07, 0x6180, 0x9880, 0x8BA0,
2297 0x6918, 0xEF08, 0x7325, 0x5416, 0xBE03, 0x98A0, 0x732E, 0x5417, 0xBE03, 0x98A0, 0xEF00, 0x8BA0,
2298 0xBEC6, 0x056B, 0xBE59, 0xBB04, 0xAA90, 0xBE04, 0xBE1E, 0x99E0, 0x8BE0, 0x69A0, 0x90D0, 0x69A0,
2299 0x90D0, 0x081F, 0xB805, 0x881F, 0x8B90, 0x69A0, 0x90D0, 0x69A0, 0x9090, 0x8BD0, 0x8BD8, 0xBE1F,
2300 0xEF00, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
2301 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
2302};
2303
2304
2305/*
2306 * initialize ASSP
2307 */
2308
2309#define MINISRC_LPF_LEN 10
2310static u16 minisrc_lpf[MINISRC_LPF_LEN] __devinitdata = {
2311 0X0743, 0X1104, 0X0A4C, 0XF88D, 0X242C,
2312 0X1023, 0X1AA9, 0X0B60, 0XEFDD, 0X186F
2313};
2314
2315static void __devinit snd_m3_assp_init(m3_t *chip)
2316{
2317 unsigned int i;
2318
2319 /* zero kernel data */
2320 for (i = 0; i < (REV_B_DATA_MEMORY_UNIT_LENGTH * NUM_UNITS_KERNEL_DATA) / 2; i++)
2321 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
2322 KDATA_BASE_ADDR + i, 0);
2323
2324 /* zero mixer data? */
2325 for (i = 0; i < (REV_B_DATA_MEMORY_UNIT_LENGTH * NUM_UNITS_KERNEL_DATA) / 2; i++)
2326 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
2327 KDATA_BASE_ADDR2 + i, 0);
2328
2329 /* init dma pointer */
2330 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
2331 KDATA_CURRENT_DMA,
2332 KDATA_DMA_XFER0);
2333
2334 /* write kernel into code memory.. */
2335 for (i = 0 ; i < sizeof(assp_kernel_image) / 2; i++) {
2336 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_CODE,
2337 REV_B_CODE_MEMORY_BEGIN + i,
2338 assp_kernel_image[i]);
2339 }
2340
2341 /*
2342 * We only have this one client and we know that 0x400
2343 * is free in our kernel's mem map, so lets just
2344 * drop it there. It seems that the minisrc doesn't
2345 * need vectors, so we won't bother with them..
2346 */
2347 for (i = 0; i < sizeof(assp_minisrc_image) / 2; i++) {
2348 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_CODE,
2349 0x400 + i,
2350 assp_minisrc_image[i]);
2351 }
2352
2353 /*
2354 * write the coefficients for the low pass filter?
2355 */
2356 for (i = 0; i < MINISRC_LPF_LEN ; i++) {
2357 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_CODE,
2358 0x400 + MINISRC_COEF_LOC + i,
2359 minisrc_lpf[i]);
2360 }
2361
2362 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_CODE,
2363 0x400 + MINISRC_COEF_LOC + MINISRC_LPF_LEN,
2364 0x8000);
2365
2366 /*
2367 * the minisrc is the only thing on
2368 * our task list..
2369 */
2370 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
2371 KDATA_TASK0,
2372 0x400);
2373
2374 /*
2375 * init the mixer number..
2376 */
2377
2378 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
2379 KDATA_MIXER_TASK_NUMBER,0);
2380
2381 /*
2382 * EXTREME KERNEL MASTER VOLUME
2383 */
2384 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
2385 KDATA_DAC_LEFT_VOLUME, ARB_VOLUME);
2386 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
2387 KDATA_DAC_RIGHT_VOLUME, ARB_VOLUME);
2388
2389 chip->mixer_list.curlen = 0;
2390 chip->mixer_list.mem_addr = KDATA_MIXER_XFER0;
2391 chip->mixer_list.max = MAX_VIRTUAL_MIXER_CHANNELS;
2392 chip->adc1_list.curlen = 0;
2393 chip->adc1_list.mem_addr = KDATA_ADC1_XFER0;
2394 chip->adc1_list.max = MAX_VIRTUAL_ADC1_CHANNELS;
2395 chip->dma_list.curlen = 0;
2396 chip->dma_list.mem_addr = KDATA_DMA_XFER0;
2397 chip->dma_list.max = MAX_VIRTUAL_DMA_CHANNELS;
2398 chip->msrc_list.curlen = 0;
2399 chip->msrc_list.mem_addr = KDATA_INSTANCE0_MINISRC;
2400 chip->msrc_list.max = MAX_INSTANCE_MINISRC;
2401}
2402
2403
2404static int __devinit snd_m3_assp_client_init(m3_t *chip, m3_dma_t *s, int index)
2405{
2406 int data_bytes = 2 * ( MINISRC_TMP_BUFFER_SIZE / 2 +
2407 MINISRC_IN_BUFFER_SIZE / 2 +
2408 1 + MINISRC_OUT_BUFFER_SIZE / 2 + 1 );
2409 int address, i;
2410
2411 /*
2412 * the revb memory map has 0x1100 through 0x1c00
2413 * free.
2414 */
2415
2416 /*
2417 * align instance address to 256 bytes so that it's
2418 * shifted list address is aligned.
2419 * list address = (mem address >> 1) >> 7;
2420 */
2421 data_bytes = (data_bytes + 255) & ~255;
2422 address = 0x1100 + ((data_bytes/2) * index);
2423
2424 if ((address + (data_bytes/2)) >= 0x1c00) {
2425 snd_printk("no memory for %d bytes at ind %d (addr 0x%x)\n",
2426 data_bytes, index, address);
2427 return -ENOMEM;
2428 }
2429
2430 s->number = index;
2431 s->inst.code = 0x400;
2432 s->inst.data = address;
2433
2434 for (i = data_bytes / 2; i > 0; address++, i--) {
2435 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
2436 address, 0);
2437 }
2438
2439 return 0;
2440}
2441
2442
2443/*
2444 * this works for the reference board, have to find
2445 * out about others
2446 *
2447 * this needs more magic for 4 speaker, but..
2448 */
2449static void
2450snd_m3_amp_enable(m3_t *chip, int enable)
2451{
2452 int io = chip->iobase;
2453 u16 gpo, polarity;
2454
2455 if (! chip->external_amp)
2456 return;
2457
2458 polarity = enable ? 0 : 1;
2459 polarity = polarity << chip->amp_gpio;
2460 gpo = 1 << chip->amp_gpio;
2461
2462 outw(~gpo, io + GPIO_MASK);
2463
2464 outw(inw(io + GPIO_DIRECTION) | gpo,
2465 io + GPIO_DIRECTION);
2466
2467 outw((GPO_SECONDARY_AC97 | GPO_PRIMARY_AC97 | polarity),
2468 io + GPIO_DATA);
2469
2470 outw(0xffff, io + GPIO_MASK);
2471}
2472
2473static int
2474snd_m3_chip_init(m3_t *chip)
2475{
2476 struct pci_dev *pcidev = chip->pci;
2477 unsigned long io = chip->iobase;
2478 u32 n;
2479 u16 w;
2480 u8 t; /* makes as much sense as 'n', no? */
2481
2482 pci_read_config_word(pcidev, PCI_LEGACY_AUDIO_CTRL, &w);
2483 w &= ~(SOUND_BLASTER_ENABLE|FM_SYNTHESIS_ENABLE|
2484 MPU401_IO_ENABLE|MPU401_IRQ_ENABLE|ALIAS_10BIT_IO|
2485 DISABLE_LEGACY);
2486 pci_write_config_word(pcidev, PCI_LEGACY_AUDIO_CTRL, w);
2487
2488 if (chip->hv_quirk && chip->hv_quirk->is_omnibook) {
2489 /*
2490 * Volume buttons on some HP OmniBook laptops don't work
2491 * correctly. This makes them work for the most part.
2492 *
2493 * Volume up and down buttons on the laptop side work.
2494 * Fn+cursor_up (volme up) works.
2495 * Fn+cursor_down (volume down) doesn't work.
2496 * Fn+F7 (mute) works acts as volume up.
2497 */
2498 outw(~(GPI_VOL_DOWN|GPI_VOL_UP), io + GPIO_MASK);
2499 outw(inw(io + GPIO_DIRECTION) & ~(GPI_VOL_DOWN|GPI_VOL_UP), io + GPIO_DIRECTION);
2500 outw((GPI_VOL_DOWN|GPI_VOL_UP), io + GPIO_DATA);
2501 outw(0xffff, io + GPIO_MASK);
2502 }
2503 pci_read_config_dword(pcidev, PCI_ALLEGRO_CONFIG, &n);
2504 n &= ~(HV_CTRL_ENABLE | REDUCED_DEBOUNCE | HV_BUTTON_FROM_GD);
2505 if (chip->hv_quirk)
2506 n |= chip->hv_quirk->config;
2507 /* For some reason we must always use reduced debounce. */
2508 n |= REDUCED_DEBOUNCE;
2509 n |= PM_CTRL_ENABLE | CLK_DIV_BY_49 | USE_PCI_TIMING;
2510 pci_write_config_dword(pcidev, PCI_ALLEGRO_CONFIG, n);
2511
2512 outb(RESET_ASSP, chip->iobase + ASSP_CONTROL_B);
2513 pci_read_config_dword(pcidev, PCI_ALLEGRO_CONFIG, &n);
2514 n &= ~INT_CLK_SELECT;
2515 if (!chip->allegro_flag) {
2516 n &= ~INT_CLK_MULT_ENABLE;
2517 n |= INT_CLK_SRC_NOT_PCI;
2518 }
2519 n &= ~( CLK_MULT_MODE_SELECT | CLK_MULT_MODE_SELECT_2 );
2520 pci_write_config_dword(pcidev, PCI_ALLEGRO_CONFIG, n);
2521
2522 if (chip->allegro_flag) {
2523 pci_read_config_dword(pcidev, PCI_USER_CONFIG, &n);
2524 n |= IN_CLK_12MHZ_SELECT;
2525 pci_write_config_dword(pcidev, PCI_USER_CONFIG, n);
2526 }
2527
2528 t = inb(chip->iobase + ASSP_CONTROL_A);
2529 t &= ~( DSP_CLK_36MHZ_SELECT | ASSP_CLK_49MHZ_SELECT);
2530 t |= ASSP_CLK_49MHZ_SELECT;
2531 t |= ASSP_0_WS_ENABLE;
2532 outb(t, chip->iobase + ASSP_CONTROL_A);
2533
2534 snd_m3_assp_init(chip); /* download DSP code before starting ASSP below */
2535 outb(RUN_ASSP, chip->iobase + ASSP_CONTROL_B);
2536 outb(0x00, io + HARDWARE_VOL_CTRL);
2537 outb(0x88, io + SHADOW_MIX_REG_VOICE);
2538 outb(0x88, io + HW_VOL_COUNTER_VOICE);
2539 outb(0x88, io + SHADOW_MIX_REG_MASTER);
2540 outb(0x88, io + HW_VOL_COUNTER_MASTER);
2541 return 0;
2542}
2543
2544static void
2545snd_m3_enable_ints(m3_t *chip)
2546{
2547 unsigned long io = chip->iobase;
2548 unsigned short val;
2549
2550 /* TODO: MPU401 not supported yet */
2551 val = ASSP_INT_ENABLE /*| MPU401_INT_ENABLE*/;
2552 if (chip->hv_quirk && (chip->hv_quirk->config & HV_CTRL_ENABLE))
2553 val |= HV_INT_ENABLE;
2554 outw(val, io + HOST_INT_CTRL);
2555 outb(inb(io + ASSP_CONTROL_C) | ASSP_HOST_INT_ENABLE,
2556 io + ASSP_CONTROL_C);
2557}
2558
2559
2560/*
2561 */
2562
2563static int snd_m3_free(m3_t *chip)
2564{
2565 m3_dma_t *s;
2566 int i;
2567
2568 if (chip->substreams) {
2569 spin_lock_irq(&chip->reg_lock);
2570 for (i = 0; i < chip->num_substreams; i++) {
2571 s = &chip->substreams[i];
2572 /* check surviving pcms; this should not happen though.. */
2573 if (s->substream && s->running)
2574 snd_m3_pcm_stop(chip, s, s->substream);
2575 }
2576 spin_unlock_irq(&chip->reg_lock);
2577 kfree(chip->substreams);
2578 }
2579 if (chip->iobase) {
2580 outw(0, chip->iobase + HOST_INT_CTRL); /* disable ints */
2581 }
2582
2583#ifdef CONFIG_PM
2584 if (chip->suspend_mem)
2585 vfree(chip->suspend_mem);
2586#endif
2587
2588 if (chip->irq >= 0) {
2589 synchronize_irq(chip->irq);
2590 free_irq(chip->irq, (void *)chip);
2591 }
2592 if (chip->iobase)
2593 pci_release_regions(chip->pci);
2594 kfree(chip);
2595 return 0;
2596}
2597
2598
2599/*
2600 * APM support
2601 */
2602#ifdef CONFIG_PM
2603
2604static int m3_suspend(snd_card_t *card, unsigned int state)
2605{
2606 m3_t *chip = card->pm_private_data;
2607 int i, index;
2608
2609 if (chip->suspend_mem == NULL)
2610 return 0;
2611
2612 snd_pcm_suspend_all(chip->pcm);
2613 snd_ac97_suspend(chip->ac97);
2614
2615 msleep(10); /* give the assp a chance to idle.. */
2616
2617 snd_m3_assp_halt(chip);
2618
2619 /* save dsp image */
2620 index = 0;
2621 for (i = REV_B_CODE_MEMORY_BEGIN; i <= REV_B_CODE_MEMORY_END; i++)
2622 chip->suspend_mem[index++] =
2623 snd_m3_assp_read(chip, MEMTYPE_INTERNAL_CODE, i);
2624 for (i = REV_B_DATA_MEMORY_BEGIN ; i <= REV_B_DATA_MEMORY_END; i++)
2625 chip->suspend_mem[index++] =
2626 snd_m3_assp_read(chip, MEMTYPE_INTERNAL_DATA, i);
2627
2628 /* power down apci registers */
2629 snd_m3_outw(chip, 0xffff, 0x54);
2630 snd_m3_outw(chip, 0xffff, 0x56);
2631 return 0;
2632}
2633
2634static int m3_resume(snd_card_t *card, unsigned int state)
2635{
2636 m3_t *chip = card->pm_private_data;
2637 int i, index;
2638
2639 if (chip->suspend_mem == NULL)
2640 return 0;
2641
2642 pci_set_master(chip->pci);
2643
2644 /* first lets just bring everything back. .*/
2645 snd_m3_outw(chip, 0, 0x54);
2646 snd_m3_outw(chip, 0, 0x56);
2647
2648 snd_m3_chip_init(chip);
2649 snd_m3_assp_halt(chip);
2650 snd_m3_ac97_reset(chip);
2651
2652 /* restore dsp image */
2653 index = 0;
2654 for (i = REV_B_CODE_MEMORY_BEGIN; i <= REV_B_CODE_MEMORY_END; i++)
2655 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_CODE, i,
2656 chip->suspend_mem[index++]);
2657 for (i = REV_B_DATA_MEMORY_BEGIN ; i <= REV_B_DATA_MEMORY_END; i++)
2658 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA, i,
2659 chip->suspend_mem[index++]);
2660
2661 /* tell the dma engine to restart itself */
2662 snd_m3_assp_write(chip, MEMTYPE_INTERNAL_DATA,
2663 KDATA_DMA_ACTIVE, 0);
2664
2665 /* restore ac97 registers */
2666 snd_ac97_resume(chip->ac97);
2667
2668 snd_m3_assp_continue(chip);
2669 snd_m3_enable_ints(chip);
2670 snd_m3_amp_enable(chip, 1);
2671
2672 return 0;
2673}
2674#endif /* CONFIG_PM */
2675
2676
2677/*
2678 */
2679
2680static int snd_m3_dev_free(snd_device_t *device)
2681{
2682 m3_t *chip = device->device_data;
2683 return snd_m3_free(chip);
2684}
2685
2686static int __devinit
2687snd_m3_create(snd_card_t *card, struct pci_dev *pci,
2688 int enable_amp,
2689 int amp_gpio,
2690 m3_t **chip_ret)
2691{
2692 m3_t *chip;
2693 int i, err;
2694 struct m3_quirk *quirk;
2695 struct m3_hv_quirk *hv_quirk;
2696#ifdef TARGET_OS2
2697 static snd_device_ops_t ops = {
2698 snd_m3_dev_free,0,0,0
2699 };
2700#else
2701 static snd_device_ops_t ops = {
2702 dev_free: snd_m3_dev_free,
2703 };
2704#endif
2705
2706 *chip_ret = NULL;
2707
2708 if (pci_enable_device(pci))
2709 return -EIO;
2710
2711 /* check, if we can restrict PCI DMA transfers to 28 bits */
2712 if (!pci_dma_supported(pci, 0x0fffffff)) {
2713 snd_printk("architecture does not support 28bit PCI busmaster DMA\n");
2714 return -ENXIO;
2715 }
2716 pci_set_consistent_dma_mask(pci, 0x0fffffff);
2717
2718 chip = kcalloc(1, sizeof(*chip), GFP_KERNEL);
2719 if (chip == NULL)
2720 return -ENOMEM;
2721
2722 spin_lock_init(&chip->reg_lock);
2723 spin_lock_init(&chip->ac97_lock);
2724
2725 switch (pci->device) {
2726 case PCI_DEVICE_ID_ESS_ALLEGRO:
2727 case PCI_DEVICE_ID_ESS_ALLEGRO_1:
2728 case PCI_DEVICE_ID_ESS_CANYON3D_2LE:
2729 case PCI_DEVICE_ID_ESS_CANYON3D_2:
2730 chip->allegro_flag = 1;
2731 break;
2732 }
2733
2734 chip->card = card;
2735 chip->pci = pci;
2736 chip->irq = -1;
2737
2738 for (quirk = m3_quirk_list; quirk->vendor; quirk++) {
2739 if (pci->subsystem_vendor == quirk->vendor &&
2740 pci->subsystem_device == quirk->device) {
2741 snd_printk("maestro3: enabled hack for '%s'\n", quirk->name);
2742 chip->quirk = quirk;
2743 break;
2744 }
2745 }
2746
2747 for (hv_quirk = m3_hv_quirk_list; hv_quirk->vendor; hv_quirk++) {
2748 if (pci->vendor == hv_quirk->vendor &&
2749 pci->device == hv_quirk->device &&
2750 pci->subsystem_vendor == hv_quirk->subsystem_vendor &&
2751 pci->subsystem_device == hv_quirk->subsystem_device) {
2752 chip->hv_quirk = hv_quirk;
2753 break;
2754 }
2755 }
2756
2757 chip->external_amp = enable_amp;
2758 if (amp_gpio >= 0 && amp_gpio <= 0x0f)
2759 chip->amp_gpio = amp_gpio;
2760 else if (chip->quirk && chip->quirk->amp_gpio >= 0)
2761 chip->amp_gpio = chip->quirk->amp_gpio;
2762 else if (chip->allegro_flag)
2763 chip->amp_gpio = GPO_EXT_AMP_ALLEGRO;
2764 else /* presumably this is for all 'maestro3's.. */
2765 chip->amp_gpio = GPO_EXT_AMP_M3;
2766
2767 chip->num_substreams = NR_DSPS;
2768 chip->substreams = kmalloc(sizeof(m3_dma_t) * chip->num_substreams, GFP_KERNEL);
2769 if (chip->substreams == NULL) {
2770 kfree(chip);
2771 return -ENOMEM;
2772 }
2773 memset(chip->substreams, 0, sizeof(m3_dma_t) * chip->num_substreams);
2774
2775 if ((err = pci_request_regions(pci, card->driver)) < 0) {
2776 snd_m3_free(chip);
2777 return err;
2778 }
2779 chip->iobase = pci_resource_start(pci, 0);
2780
2781 /* just to be sure */
2782 pci_set_master(pci);
2783
2784 snd_m3_chip_init(chip);
2785 snd_m3_assp_halt(chip);
2786
2787 snd_m3_ac97_reset(chip);
2788
2789 snd_m3_amp_enable(chip, 1);
2790
2791 if ((err = snd_m3_mixer(chip)) < 0) {
2792 snd_m3_free(chip);
2793 return err;
2794 }
2795
2796 for (i = 0; i < chip->num_substreams; i++) {
2797 m3_dma_t *s = &chip->substreams[i];
2798 s->chip = chip;
2799 if ((err = snd_m3_assp_client_init(chip, s, i)) < 0) {
2800 snd_m3_free(chip);
2801 return err;
2802 }
2803 }
2804
2805 if ((err = snd_m3_pcm(chip, 0)) < 0) {
2806 snd_m3_free(chip);
2807 return err;
2808 }
2809
2810 tasklet_init(&chip->hwvol_tq, snd_m3_update_hw_volume, (unsigned long)chip);
2811
2812 if (request_irq(pci->irq, snd_m3_interrupt, SA_INTERRUPT|SA_SHIRQ,
2813 card->driver, (void *)chip)) {
2814 snd_printk("unable to grab IRQ %d\n", pci->irq);
2815 snd_m3_free(chip);
2816 return -ENOMEM;
2817 }
2818 chip->irq = pci->irq;
2819
2820#ifdef CONFIG_PM
2821 chip->suspend_mem = vmalloc(sizeof(u16) * (REV_B_CODE_MEMORY_LENGTH + REV_B_DATA_MEMORY_LENGTH));
2822 if (chip->suspend_mem == NULL)
2823 snd_printk("can't allocate apm buffer\n");
2824 else
2825 snd_card_set_pm_callback(card, m3_suspend, m3_resume, chip);
2826#endif
2827
2828 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
2829 snd_m3_free(chip);
2830 return err;
2831 }
2832
2833 snd_m3_enable_ints(chip);
2834 snd_m3_assp_continue(chip);
2835
2836 *chip_ret = chip;
2837
2838 return 0;
2839}
2840
2841/*
2842 */
2843static int __devinit
2844snd_m3_probe(struct pci_dev *pci, const struct pci_device_id *pci_id)
2845{
2846 static int dev;
2847 snd_card_t *card;
2848 m3_t *chip;
2849 int err;
2850
2851 pci_read_config_dword(pci, PCI_CLASS_REVISION, &pci->_class);
2852
2853#ifdef DEBUG
2854 dprintf(("m3_probe. %x",pci->_class));
2855#endif
2856
2857#if 0 // os/2 doesnt pickup classes
2858 /* don't pick up modems */
2859#ifdef TARGET_OS2
2860 if (((pci->_class >> 8) & 0xffff) != PCI_CLASS_MULTIMEDIA_AUDIO)
2861#else
2862 if (((pci->class >> 8) & 0xffff) != PCI_CLASS_MULTIMEDIA_AUDIO)
2863#endif
2864 return -ENODEV;
2865#endif // 0
2866
2867 if (dev >= SNDRV_CARDS)
2868 return -ENODEV;
2869 if (!enable[dev]) {
2870 dev++;
2871 return -ENOENT;
2872 }
2873 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
2874 if (card == NULL)
2875 return -ENOMEM;
2876
2877 switch (pci->device) {
2878 case PCI_DEVICE_ID_ESS_ALLEGRO:
2879 case PCI_DEVICE_ID_ESS_ALLEGRO_1:
2880 strcpy(card->driver, "Allegro");
2881 break;
2882 case PCI_DEVICE_ID_ESS_CANYON3D_2LE:
2883 case PCI_DEVICE_ID_ESS_CANYON3D_2:
2884 strcpy(card->driver, "Canyon3D-2");
2885 break;
2886 default:
2887 strcpy(card->driver, "Maestro3");
2888 break;
2889 }
2890
2891 if ((err = snd_m3_create(card, pci,
2892 external_amp[dev],
2893 amp_gpio[dev],
2894 &chip)) < 0) {
2895 snd_card_free(card);
2896 return err;
2897 }
2898#ifdef DEBUG
2899 dprintf(("m3_probe: create passed"));
2900#endif
2901
2902 sprintf(card->shortname, "ESS %s PCI", card->driver);
2903 sprintf(card->longname, "%s at 0x%lx, irq %d",
2904 card->shortname, chip->iobase, chip->irq);
2905
2906 if ((err = snd_card_register(card)) < 0) {
2907 snd_card_free(card);
2908 return err;
2909 }
2910#ifdef DEBUG
2911 dprintf(("m3_probe: card registered"));
2912#endif
2913
2914#if 0 /* TODO: not supported yet */
2915 /* TODO enable midi irq and i/o */
2916 err = snd_mpu401_uart_new(chip->card, 0, MPU401_HW_MPU401,
2917 chip->iobase + MPU401_DATA_PORT, 1,
2918 chip->irq, 0, &chip->rmidi);
2919 if (err < 0)
2920 printk(KERN_WARNING "maestro3: no midi support.\n");
2921#endif
2922
2923 pci_set_drvdata(pci, card);
2924 dev++;
2925 return 0;
2926}
2927
2928static void __devexit snd_m3_remove(struct pci_dev *pci)
2929{
2930 snd_card_free(pci_get_drvdata(pci));
2931 pci_set_drvdata(pci, NULL);
2932}
2933
2934static struct pci_driver driver = {
2935 0,0,0, "Maestro3",
2936 snd_m3_ids,
2937 snd_m3_probe,
2938 snd_m3_remove,
2939 SND_PCI_PM_CALLBACKS
2940};
2941
2942static int __init alsa_card_m3_init(void)
2943{
2944 int err;
2945
2946 if ((err = pci_module_init(&driver)) < 0) {
2947#ifdef MODULE
2948 // snd_printk("Maestro3/Allegro soundcard not found or device busy\n");
2949#endif
2950 return err;
2951 }
2952 return 0;
2953}
2954
2955static void __exit alsa_card_m3_exit(void)
2956{
2957 pci_unregister_driver(&driver);
2958}
2959
2960module_init(alsa_card_m3_init)
2961module_exit(alsa_card_m3_exit)
2962
2963#ifndef MODULE
2964
2965/* format is: snd-maestro3=enable,index,id,external_amp,amp_gpio */
2966
2967static int __init alsa_card_maestro3_setup(char *str)
2968{
2969 static unsigned __initdata nr_dev = 0;
2970
2971 if (nr_dev >= SNDRV_CARDS)
2972 return 0;
2973 (void)(get_option(&str,&enable[nr_dev]) == 2 &&
2974 get_option(&str,&index[nr_dev]) == 2 &&
2975 get_id(&str,&id[nr_dev]) == 2 &&
2976 get_option(&str,&external_amp[nr_dev]) == 2 &&
2977 get_option(&str,&amp_gpio[nr_dev]) == 2);
2978 nr_dev++;
2979 return 1;
2980}
2981
2982__setup("snd-maestro3=", alsa_card_maestro3_setup);
2983
2984#endif /* ifndef MODULE */
Note: See TracBrowser for help on using the repository browser.