source: GPL/trunk/alsa-kernel/pci/es1968.c@ 598

Last change on this file since 598 was 598, checked in by David Azarewicz, 8 years ago

Merged/reintegrated v2 branch into trunk. Trunk is now v2

File size: 80.5 KB
Line 
1/*
2 * Driver for ESS Maestro 1/2/2E Sound Card (started 21.8.99)
3 * Copyright (c) by Matze Braun <MatzeBraun@gmx.de>.
4 * Takashi Iwai <tiwai@suse.de>
5 *
6 * Most of the driver code comes from Zach Brown(zab@redhat.com)
7 * Alan Cox OSS Driver
8 * Rewritted from card-es1938.c source.
9 *
10 * TODO:
11 * Perhaps Synth
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 *
27 *
28 * Notes from Zach Brown about the driver code
29 *
30 * Hardware Description
31 *
32 * A working Maestro setup contains the Maestro chip wired to a
33 * codec or 2. In the Maestro we have the APUs, the ASSP, and the
34 * Wavecache. The APUs can be though of as virtual audio routing
35 * channels. They can take data from a number of sources and perform
36 * basic encodings of the data. The wavecache is a storehouse for
37 * PCM data. Typically it deals with PCI and interracts with the
38 * APUs. The ASSP is a wacky DSP like device that ESS is loth
39 * to release docs on. Thankfully it isn't required on the Maestro
40 * until you start doing insane things like FM emulation and surround
41 * encoding. The codecs are almost always AC-97 compliant codecs,
42 * but it appears that early Maestros may have had PT101 (an ESS
43 * part?) wired to them. The only real difference in the Maestro
44 * families is external goop like docking capability, memory for
45 * the ASSP, and initialization differences.
46 *
47 * Driver Operation
48 *
49 * We only drive the APU/Wavecache as typical DACs and drive the
50 * mixers in the codecs. There are 64 APUs. We assign 6 to each
51 * /dev/dsp? device. 2 channels for output, and 4 channels for
52 * input.
53 *
54 * Each APU can do a number of things, but we only really use
55 * 3 basic functions. For playback we use them to convert PCM
56 * data fetched over PCI by the wavecahche into analog data that
57 * is handed to the codec. One APU for mono, and a pair for stereo.
58 * When in stereo, the combination of smarts in the APU and Wavecache
59 * decide which wavecache gets the left or right channel.
60 *
61 * For record we still use the old overly mono system. For each in
62 * coming channel the data comes in from the codec, through a 'input'
63 * APU, through another rate converter APU, and then into memory via
64 * the wavecache and PCI. If its stereo, we mash it back into LRLR in
65 * software. The pass between the 2 APUs is supposedly what requires us
66 * to have a 512 byte buffer sitting around in wavecache/memory.
67 *
68 * The wavecache makes our life even more fun. First off, it can
69 * only address the first 28 bits of PCI address space, making it
70 * useless on quite a few architectures. Secondly, its insane.
71 * It claims to fetch from 4 regions of PCI space, each 4 meg in length.
72 * But that doesn't really work. You can only use 1 region. So all our
73 * allocations have to be in 4meg of each other. Booo. Hiss.
74 * So we have a module parameter, dsps_order, that is the order of
75 * the number of dsps to provide. All their buffer space is allocated
76 * on open time. The sonicvibes OSS routines we inherited really want
77 * power of 2 buffers, so we have all those next to each other, then
78 * 512 byte regions for the recording wavecaches. This ends up
79 * wasting quite a bit of memory. The only fixes I can see would be
80 * getting a kernel allocator that could work in zones, or figuring out
81 * just how to coerce the WP into doing what we want.
82 *
83 * The indirection of the various registers means we have to spinlock
84 * nearly all register accesses. We have the main register indirection
85 * like the wave cache, maestro registers, etc. Then we have beasts
86 * like the APU interface that is indirect registers gotten at through
87 * the main maestro indirection. Ouch. We spinlock around the actual
88 * ports on a per card basis. This means spinlock activity at each IO
89 * operation, but the only IO operation clusters are in non critical
90 * paths and it makes the code far easier to follow. Interrupts are
91 * blocked while holding the locks because the int handler has to
92 * get at some of them :(. The mixer interface doesn't, however.
93 * We also have an OSS state lock that is thrown around in a few
94 * places.
95 */
96
97#include <asm/io.h>
98#include <linux/delay.h>
99#include <linux/interrupt.h>
100#include <linux/init.h>
101#include <linux/pci.h>
102#include <linux/dma-mapping.h>
103#include <linux/slab.h>
104#include <linux/gameport.h>
105#include <linux/moduleparam.h>
106#include <linux/mutex.h>
107#include <linux/input.h>
108
109#include <sound/core.h>
110#include <sound/pcm.h>
111#include <sound/mpu401.h>
112#include <sound/ac97_codec.h>
113#include <sound/initval.h>
114
115#define CARD_NAME "ESS Maestro1/2"
116#define DRIVER_NAME "ES1968"
117
118MODULE_DESCRIPTION("ESS Maestro");
119MODULE_LICENSE("GPL");
120MODULE_SUPPORTED_DEVICE("{{ESS,Maestro 2e},"
121 "{ESS,Maestro 2},"
122 "{ESS,Maestro 1},"
123 "{TerraTec,DMX}}");
124
125#if defined(CONFIG_GAMEPORT) || (defined(MODULE) && defined(CONFIG_GAMEPORT_MODULE))
126#define SUPPORT_JOYSTICK 1
127#endif
128
129static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 1-MAX */
130static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
131static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */
132#ifndef TARGET_OS2
133static int total_bufsize[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1024 };
134static int pcm_substreams_p[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 4 };
135static int pcm_substreams_c[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1 };
136static int clock[SNDRV_CARDS];
137static int use_pm[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
138static int enable_mpu[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
139#else
140static int total_bufsize[SNDRV_CARDS] = { REPEAT_SNDRV(1024) };
141static int pcm_substreams_p[SNDRV_CARDS] = { REPEAT_SNDRV(4) };
142static int pcm_substreams_c[SNDRV_CARDS] = { REPEAT_SNDRV(1) };
143static int clock[SNDRV_CARDS];
144static int use_pm[SNDRV_CARDS] = { REPEAT_SNDRV(2) };
145static int enable_mpu[SNDRV_CARDS] = { REPEAT_SNDRV(1) };
146#endif
147#ifdef SUPPORT_JOYSTICK
148static int joystick[SNDRV_CARDS];
149#endif
150
151module_param_array(index, int, NULL, 0444);
152MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard.");
153module_param_array(id, charp, NULL, 0444);
154MODULE_PARM_DESC(id, "ID string for " CARD_NAME " soundcard.");
155module_param_array(enable, bool, NULL, 0444);
156MODULE_PARM_DESC(enable, "Enable " CARD_NAME " soundcard.");
157module_param_array(total_bufsize, int, NULL, 0444);
158MODULE_PARM_DESC(total_bufsize, "Total buffer size in kB.");
159module_param_array(pcm_substreams_p, int, NULL, 0444);
160MODULE_PARM_DESC(pcm_substreams_p, "PCM Playback substreams for " CARD_NAME " soundcard.");
161module_param_array(pcm_substreams_c, int, NULL, 0444);
162MODULE_PARM_DESC(pcm_substreams_c, "PCM Capture substreams for " CARD_NAME " soundcard.");
163module_param_array(clock, int, NULL, 0444);
164MODULE_PARM_DESC(clock, "Clock on " CARD_NAME " soundcard. (0 = auto-detect)");
165module_param_array(use_pm, int, NULL, 0444);
166MODULE_PARM_DESC(use_pm, "Toggle power-management. (0 = off, 1 = on, 2 = auto)");
167module_param_array(enable_mpu, int, NULL, 0444);
168MODULE_PARM_DESC(enable_mpu, "Enable MPU401. (0 = off, 1 = on, 2 = auto)");
169#ifdef SUPPORT_JOYSTICK
170module_param_array(joystick, bool, NULL, 0444);
171MODULE_PARM_DESC(joystick, "Enable joystick.");
172#endif
173
174
175#define NR_APUS 64
176#define NR_APU_REGS 16
177
178/* NEC Versas ? */
179#define NEC_VERSA_SUBID1 0x80581033
180#define NEC_VERSA_SUBID2 0x803c1033
181
182/* Mode Flags */
183#define ESS_FMT_STEREO 0x01
184#define ESS_FMT_16BIT 0x02
185
186#define DAC_RUNNING 1
187#define ADC_RUNNING 2
188
189/* Values for the ESM_LEGACY_AUDIO_CONTROL */
190
191#define ESS_DISABLE_AUDIO 0x8000
192#define ESS_ENABLE_SERIAL_IRQ 0x4000
193#define IO_ADRESS_ALIAS 0x0020
194#define MPU401_IRQ_ENABLE 0x0010
195#define MPU401_IO_ENABLE 0x0008
196#define GAME_IO_ENABLE 0x0004
197#define FM_IO_ENABLE 0x0002
198#define SB_IO_ENABLE 0x0001
199
200/* Values for the ESM_CONFIG_A */
201
202#define PIC_SNOOP1 0x4000
203#define PIC_SNOOP2 0x2000
204#define SAFEGUARD 0x0800
205#define DMA_CLEAR 0x0700
206#define DMA_DDMA 0x0000
207#define DMA_TDMA 0x0100
208#define DMA_PCPCI 0x0200
209#define POST_WRITE 0x0080
210#define PCI_TIMING 0x0040
211#define SWAP_LR 0x0020
212#define SUBTR_DECODE 0x0002
213
214/* Values for the ESM_CONFIG_B */
215
216#define SPDIF_CONFB 0x0100
217#define HWV_CONFB 0x0080
218#define DEBOUNCE 0x0040
219#define GPIO_CONFB 0x0020
220#define CHI_CONFB 0x0010
221#define IDMA_CONFB 0x0008 /*undoc */
222#define MIDI_FIX 0x0004 /*undoc */
223#define IRQ_TO_ISA 0x0001 /*undoc */
224
225/* Values for Ring Bus Control B */
226#define RINGB_2CODEC_ID_MASK 0x0003
227#define RINGB_DIS_VALIDATION 0x0008
228#define RINGB_EN_SPDIF 0x0010
229#define RINGB_EN_2CODEC 0x0020
230#define RINGB_SING_BIT_DUAL 0x0040
231
232/* ****Port Addresses**** */
233
234/* Write & Read */
235#define ESM_INDEX 0x02
236#define ESM_DATA 0x00
237
238/* AC97 + RingBus */
239#define ESM_AC97_INDEX 0x30
240#define ESM_AC97_DATA 0x32
241#define ESM_RING_BUS_DEST 0x34
242#define ESM_RING_BUS_CONTR_A 0x36
243#define ESM_RING_BUS_CONTR_B 0x38
244#define ESM_RING_BUS_SDO 0x3A
245
246/* WaveCache*/
247#define WC_INDEX 0x10
248#define WC_DATA 0x12
249#define WC_CONTROL 0x14
250
251/* ASSP*/
252#define ASSP_INDEX 0x80
253#define ASSP_MEMORY 0x82
254#define ASSP_DATA 0x84
255#define ASSP_CONTROL_A 0xA2
256#define ASSP_CONTROL_B 0xA4
257#define ASSP_CONTROL_C 0xA6
258#define ASSP_HOSTW_INDEX 0xA8
259#define ASSP_HOSTW_DATA 0xAA
260#define ASSP_HOSTW_IRQ 0xAC
261/* Midi */
262#define ESM_MPU401_PORT 0x98
263/* Others */
264#define ESM_PORT_HOST_IRQ 0x18
265
266#define IDR0_DATA_PORT 0x00
267#define IDR1_CRAM_POINTER 0x01
268#define IDR2_CRAM_DATA 0x02
269#define IDR3_WAVE_DATA 0x03
270#define IDR4_WAVE_PTR_LOW 0x04
271#define IDR5_WAVE_PTR_HI 0x05
272#define IDR6_TIMER_CTRL 0x06
273#define IDR7_WAVE_ROMRAM 0x07
274
275#define WRITEABLE_MAP 0xEFFFFF
276#define READABLE_MAP 0x64003F
277
278/* PCI Register */
279
280#define ESM_LEGACY_AUDIO_CONTROL 0x40
281#define ESM_ACPI_COMMAND 0x54
282#define ESM_CONFIG_A 0x50
283#define ESM_CONFIG_B 0x52
284#define ESM_DDMA 0x60
285
286/* Bob Bits */
287#define ESM_BOB_ENABLE 0x0001
288#define ESM_BOB_START 0x0001
289
290/* Host IRQ Control Bits */
291#define ESM_RESET_MAESTRO 0x8000
292#define ESM_RESET_DIRECTSOUND 0x4000
293#define ESM_HIRQ_ClkRun 0x0100
294#define ESM_HIRQ_HW_VOLUME 0x0040
295#define ESM_HIRQ_HARPO 0x0030 /* What's that? */
296#define ESM_HIRQ_ASSP 0x0010
297#define ESM_HIRQ_DSIE 0x0004
298#define ESM_HIRQ_MPU401 0x0002
299#define ESM_HIRQ_SB 0x0001
300
301/* Host IRQ Status Bits */
302#define ESM_MPU401_IRQ 0x02
303#define ESM_SB_IRQ 0x01
304#define ESM_SOUND_IRQ 0x04
305#define ESM_ASSP_IRQ 0x10
306#define ESM_HWVOL_IRQ 0x40
307
308#define ESS_SYSCLK 50000000
309#define ESM_BOB_FREQ 200
310#define ESM_BOB_FREQ_MAX 800
311
312#define ESM_FREQ_ESM1 (49152000L / 1024L) /* default rate 48000 */
313#define ESM_FREQ_ESM2 (50000000L / 1024L)
314
315/* APU Modes: reg 0x00, bit 4-7 */
316#define ESM_APU_MODE_SHIFT 4
317#define ESM_APU_MODE_MASK (0xf << 4)
318#define ESM_APU_OFF 0x00
319#define ESM_APU_16BITLINEAR 0x01 /* 16-Bit Linear Sample Player */
320#define ESM_APU_16BITSTEREO 0x02 /* 16-Bit Stereo Sample Player */
321#define ESM_APU_8BITLINEAR 0x03 /* 8-Bit Linear Sample Player */
322#define ESM_APU_8BITSTEREO 0x04 /* 8-Bit Stereo Sample Player */
323#define ESM_APU_8BITDIFF 0x05 /* 8-Bit Differential Sample Playrer */
324#define ESM_APU_DIGITALDELAY 0x06 /* Digital Delay Line */
325#define ESM_APU_DUALTAP 0x07 /* Dual Tap Reader */
326#define ESM_APU_CORRELATOR 0x08 /* Correlator */
327#define ESM_APU_INPUTMIXER 0x09 /* Input Mixer */
328#define ESM_APU_WAVETABLE 0x0A /* Wave Table Mode */
329#define ESM_APU_SRCONVERTOR 0x0B /* Sample Rate Convertor */
330#define ESM_APU_16BITPINGPONG 0x0C /* 16-Bit Ping-Pong Sample Player */
331#define ESM_APU_RESERVED1 0x0D /* Reserved 1 */
332#define ESM_APU_RESERVED2 0x0E /* Reserved 2 */
333#define ESM_APU_RESERVED3 0x0F /* Reserved 3 */
334
335/* reg 0x00 */
336#define ESM_APU_FILTER_Q_SHIFT 0
337#define ESM_APU_FILTER_Q_MASK (3 << 0)
338/* APU Filtey Q Control */
339#define ESM_APU_FILTER_LESSQ 0x00
340#define ESM_APU_FILTER_MOREQ 0x03
341
342#define ESM_APU_FILTER_TYPE_SHIFT 2
343#define ESM_APU_FILTER_TYPE_MASK (3 << 2)
344#define ESM_APU_ENV_TYPE_SHIFT 8
345#define ESM_APU_ENV_TYPE_MASK (3 << 8)
346#define ESM_APU_ENV_STATE_SHIFT 10
347#define ESM_APU_ENV_STATE_MASK (3 << 10)
348#define ESM_APU_END_CURVE (1 << 12)
349#define ESM_APU_INT_ON_LOOP (1 << 13)
350#define ESM_APU_DMA_ENABLE (1 << 14)
351
352/* reg 0x02 */
353#define ESM_APU_SUBMIX_GROUP_SHIRT 0
354#define ESM_APU_SUBMIX_GROUP_MASK (7 << 0)
355#define ESM_APU_SUBMIX_MODE (1 << 3)
356#define ESM_APU_6dB (1 << 4)
357#define ESM_APU_DUAL_EFFECT (1 << 5)
358#define ESM_APU_EFFECT_CHANNELS_SHIFT 6
359#define ESM_APU_EFFECT_CHANNELS_MASK (3 << 6)
360
361/* reg 0x03 */
362#define ESM_APU_STEP_SIZE_MASK 0x0fff
363
364/* reg 0x04 */
365#define ESM_APU_PHASE_SHIFT 0
366#define ESM_APU_PHASE_MASK (0xff << 0)
367#define ESM_APU_WAVE64K_PAGE_SHIFT 8 /* most 8bit of wave start offset */
368#define ESM_APU_WAVE64K_PAGE_MASK (0xff << 8)
369
370/* reg 0x05 - wave start offset */
371/* reg 0x06 - wave end offset */
372/* reg 0x07 - wave loop length */
373
374/* reg 0x08 */
375#define ESM_APU_EFFECT_GAIN_SHIFT 0
376#define ESM_APU_EFFECT_GAIN_MASK (0xff << 0)
377#define ESM_APU_TREMOLO_DEPTH_SHIFT 8
378#define ESM_APU_TREMOLO_DEPTH_MASK (0xf << 8)
379#define ESM_APU_TREMOLO_RATE_SHIFT 12
380#define ESM_APU_TREMOLO_RATE_MASK (0xf << 12)
381
382/* reg 0x09 */
383/* bit 0-7 amplitude dest? */
384#define ESM_APU_AMPLITUDE_NOW_SHIFT 8
385#define ESM_APU_AMPLITUDE_NOW_MASK (0xff << 8)
386
387/* reg 0x0a */
388#define ESM_APU_POLAR_PAN_SHIFT 0
389#define ESM_APU_POLAR_PAN_MASK (0x3f << 0)
390/* Polar Pan Control */
391#define ESM_APU_PAN_CENTER_CIRCLE 0x00
392#define ESM_APU_PAN_MIDDLE_RADIUS 0x01
393#define ESM_APU_PAN_OUTSIDE_RADIUS 0x02
394
395#define ESM_APU_FILTER_TUNING_SHIFT 8
396#define ESM_APU_FILTER_TUNING_MASK (0xff << 8)
397
398/* reg 0x0b */
399#define ESM_APU_DATA_SRC_A_SHIFT 0
400#define ESM_APU_DATA_SRC_A_MASK (0x7f << 0)
401#define ESM_APU_INV_POL_A (1 << 7)
402#define ESM_APU_DATA_SRC_B_SHIFT 8
403#define ESM_APU_DATA_SRC_B_MASK (0x7f << 8)
404#define ESM_APU_INV_POL_B (1 << 15)
405
406#define ESM_APU_VIBRATO_RATE_SHIFT 0
407#define ESM_APU_VIBRATO_RATE_MASK (0xf << 0)
408#define ESM_APU_VIBRATO_DEPTH_SHIFT 4
409#define ESM_APU_VIBRATO_DEPTH_MASK (0xf << 4)
410#define ESM_APU_VIBRATO_PHASE_SHIFT 8
411#define ESM_APU_VIBRATO_PHASE_MASK (0xff << 8)
412
413/* reg 0x0c */
414#define ESM_APU_RADIUS_SELECT (1 << 6)
415
416/* APU Filter Control */
417#define ESM_APU_FILTER_2POLE_LOPASS 0x00
418#define ESM_APU_FILTER_2POLE_BANDPASS 0x01
419#define ESM_APU_FILTER_2POLE_HIPASS 0x02
420#define ESM_APU_FILTER_1POLE_LOPASS 0x03
421#define ESM_APU_FILTER_1POLE_HIPASS 0x04
422#define ESM_APU_FILTER_OFF 0x05
423
424/* APU ATFP Type */
425#define ESM_APU_ATFP_AMPLITUDE 0x00
426#define ESM_APU_ATFP_TREMELO 0x01
427#define ESM_APU_ATFP_FILTER 0x02
428#define ESM_APU_ATFP_PAN 0x03
429
430/* APU ATFP Flags */
431#define ESM_APU_ATFP_FLG_OFF 0x00
432#define ESM_APU_ATFP_FLG_WAIT 0x01
433#define ESM_APU_ATFP_FLG_DONE 0x02
434#define ESM_APU_ATFP_FLG_INPROCESS 0x03
435
436
437/* capture mixing buffer size */
438#define ESM_MEM_ALIGN 0x1000
439#define ESM_MIXBUF_SIZE 0x400
440
441#define ESM_MODE_PLAY 0
442#define ESM_MODE_CAPTURE 1
443
444
445/* APU use in the driver */
446enum snd_enum_apu_type {
447 ESM_APU_PCM_PLAY,
448 ESM_APU_PCM_CAPTURE,
449 ESM_APU_PCM_RATECONV,
450 ESM_APU_FREE
451};
452
453/* chip type */
454enum {
455 TYPE_MAESTRO, TYPE_MAESTRO2, TYPE_MAESTRO2E
456};
457
458/* DMA Hack! */
459struct esm_memory {
460 struct snd_dma_buffer buf;
461 int empty; /* status */
462 struct list_head list;
463};
464
465/* Playback Channel */
466struct esschan {
467 int running;
468
469 u8 apu[4];
470 u8 apu_mode[4];
471
472 /* playback/capture pcm buffer */
473 struct esm_memory *memory;
474 /* capture mixer buffer */
475 struct esm_memory *mixbuf;
476
477 unsigned int hwptr; /* current hw pointer in bytes */
478 unsigned int count; /* sample counter in bytes */
479 unsigned int dma_size; /* total buffer size in bytes */
480 unsigned int frag_size; /* period size in bytes */
481 unsigned int wav_shift;
482 u16 base[4]; /* offset for ptr */
483
484 /* stereo/16bit flag */
485 unsigned char fmt;
486 int mode; /* playback / capture */
487
488 int bob_freq; /* required timer frequency */
489
490 struct snd_pcm_substream *substream;
491
492 /* linked list */
493 struct list_head list;
494
495#ifdef CONFIG_PM
496 u16 wc_map[4];
497#endif
498};
499
500struct es1968 {
501 /* Module Config */
502 int total_bufsize; /* in bytes */
503
504 int playback_streams, capture_streams;
505
506 unsigned int clock; /* clock */
507 /* for clock measurement */
508 unsigned int in_measurement: 1;
509 unsigned int measure_apu;
510 unsigned int measure_lastpos;
511 unsigned int measure_count;
512
513 /* buffer */
514 struct snd_dma_buffer dma;
515
516 /* Resources... */
517 int irq;
518 unsigned long io_port;
519 int type;
520 struct pci_dev *pci;
521 struct snd_card *card;
522 struct snd_pcm *pcm;
523 int do_pm; /* power-management enabled */
524
525 /* DMA memory block */
526 struct list_head buf_list;
527
528 /* ALSA Stuff */
529 struct snd_ac97 *ac97;
530 struct snd_rawmidi *rmidi;
531
532 spinlock_t reg_lock;
533 unsigned int in_suspend;
534
535 /* Maestro Stuff */
536 u16 maestro_map[32];
537 int bobclient; /* active timer instancs */
538 int bob_freq; /* timer frequency */
539 struct mutex memory_mutex; /* memory lock */
540
541 /* APU states */
542 unsigned char apu[NR_APUS];
543
544 /* active substreams */
545 struct list_head substream_list;
546 spinlock_t substream_lock;
547
548#ifdef CONFIG_PM
549 u16 apu_map[NR_APUS][NR_APU_REGS];
550#endif
551
552#ifdef SUPPORT_JOYSTICK
553 struct gameport *gameport;
554#endif
555
556#ifdef CONFIG_SND_ES1968_INPUT
557 struct input_dev *input_dev;
558 char phys[64]; /* physical device path */
559#else
560 struct snd_kcontrol *master_switch; /* for h/w volume control */
561 struct snd_kcontrol *master_volume;
562 spinlock_t ac97_lock;
563 struct tasklet_struct hwvol_tq;
564#endif
565};
566
567static irqreturn_t snd_es1968_interrupt(int irq, void *dev_id);
568
569static DEFINE_PCI_DEVICE_TABLE(snd_es1968_ids) = {
570 /* Maestro 1 */
571 { 0x1285, 0x0100, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, TYPE_MAESTRO },
572 /* Maestro 2 */
573 { 0x125d, 0x1968, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, TYPE_MAESTRO2 },
574 /* Maestro 2E */
575 { 0x125d, 0x1978, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, TYPE_MAESTRO2E },
576 { 0, }
577};
578
579MODULE_DEVICE_TABLE(pci, snd_es1968_ids);
580
581/* *********************
582 * Low Level Funcs! *
583 *********************/
584
585/* no spinlock */
586static void __maestro_write(struct es1968 *chip, u16 reg, u16 data)
587{
588 outw(reg, chip->io_port + ESM_INDEX);
589 outw(data, chip->io_port + ESM_DATA);
590 chip->maestro_map[reg] = data;
591}
592
593static inline void maestro_write(struct es1968 *chip, u16 reg, u16 data)
594{
595 unsigned long flags;
596 spin_lock_irqsave(&chip->reg_lock, flags);
597 __maestro_write(chip, reg, data);
598 spin_unlock_irqrestore(&chip->reg_lock, flags);
599}
600
601/* no spinlock */
602static u16 __maestro_read(struct es1968 *chip, u16 reg)
603{
604 if (READABLE_MAP & (1 << reg)) {
605 outw(reg, chip->io_port + ESM_INDEX);
606 chip->maestro_map[reg] = inw(chip->io_port + ESM_DATA);
607 }
608 return chip->maestro_map[reg];
609}
610
611static inline u16 maestro_read(struct es1968 *chip, u16 reg)
612{
613 unsigned long flags;
614 u16 result;
615 spin_lock_irqsave(&chip->reg_lock, flags);
616 result = __maestro_read(chip, reg);
617 spin_unlock_irqrestore(&chip->reg_lock, flags);
618 return result;
619}
620
621/* Wait for the codec bus to be free */
622static int snd_es1968_ac97_wait(struct es1968 *chip)
623{
624 int timeout = 100000;
625
626 while (timeout-- > 0) {
627 if (!(inb(chip->io_port + ESM_AC97_INDEX) & 1))
628 return 0;
629 cond_resched();
630 }
631 snd_printd("es1968: ac97 timeout\n");
632 return 1; /* timeout */
633}
634
635static int snd_es1968_ac97_wait_poll(struct es1968 *chip)
636{
637 int timeout = 100000;
638
639 while (timeout-- > 0) {
640 if (!(inb(chip->io_port + ESM_AC97_INDEX) & 1))
641 return 0;
642 }
643 snd_printd("es1968: ac97 timeout\n");
644 return 1; /* timeout */
645}
646
647static void snd_es1968_ac97_write(struct snd_ac97 *ac97, unsigned short reg, unsigned short val)
648{
649 struct es1968 *chip = ac97->private_data;
650#ifndef CONFIG_SND_ES1968_INPUT
651 unsigned long flags;
652#endif
653
654 snd_es1968_ac97_wait(chip);
655
656 /* Write the bus */
657#ifndef CONFIG_SND_ES1968_INPUT
658 spin_lock_irqsave(&chip->ac97_lock, flags);
659#endif
660 outw(val, chip->io_port + ESM_AC97_DATA);
661 /*msleep(1);*/
662 outb(reg, chip->io_port + ESM_AC97_INDEX);
663 /*msleep(1);*/
664#ifndef CONFIG_SND_ES1968_INPUT
665 spin_unlock_irqrestore(&chip->ac97_lock, flags);
666#endif
667}
668
669static unsigned short snd_es1968_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
670{
671 u16 data = 0;
672 struct es1968 *chip = ac97->private_data;
673#ifndef CONFIG_SND_ES1968_INPUT
674 unsigned long flags;
675#endif
676
677 snd_es1968_ac97_wait(chip);
678
679#ifndef CONFIG_SND_ES1968_INPUT
680 spin_lock_irqsave(&chip->ac97_lock, flags);
681#endif
682 outb(reg | 0x80, chip->io_port + ESM_AC97_INDEX);
683 /*msleep(1);*/
684
685 if (!snd_es1968_ac97_wait_poll(chip)) {
686 data = inw(chip->io_port + ESM_AC97_DATA);
687 /*msleep(1);*/
688 }
689#ifndef CONFIG_SND_ES1968_INPUT
690 spin_unlock_irqrestore(&chip->ac97_lock, flags);
691#endif
692
693 return data;
694}
695
696/* no spinlock */
697static void apu_index_set(struct es1968 *chip, u16 index)
698{
699 int i;
700 __maestro_write(chip, IDR1_CRAM_POINTER, index);
701 for (i = 0; i < 1000; i++)
702 if (__maestro_read(chip, IDR1_CRAM_POINTER) == index)
703 return;
704 snd_printd("es1968: APU register select failed. (Timeout)\n");
705}
706
707/* no spinlock */
708static void apu_data_set(struct es1968 *chip, u16 data)
709{
710 int i;
711 for (i = 0; i < 1000; i++) {
712 if (__maestro_read(chip, IDR0_DATA_PORT) == data)
713 return;
714 __maestro_write(chip, IDR0_DATA_PORT, data);
715 }
716 snd_printd("es1968: APU register set probably failed (Timeout)!\n");
717}
718
719/* no spinlock */
720static void __apu_set_register(struct es1968 *chip, u16 channel, u8 reg, u16 data)
721{
722 if (snd_BUG_ON(channel >= NR_APUS))
723 return;
724#ifdef CONFIG_PM
725 chip->apu_map[channel][reg] = data;
726#endif
727 reg |= (channel << 4);
728 apu_index_set(chip, reg);
729 apu_data_set(chip, data);
730}
731
732static void apu_set_register(struct es1968 *chip, u16 channel, u8 reg, u16 data)
733{
734 unsigned long flags;
735 spin_lock_irqsave(&chip->reg_lock, flags);
736 __apu_set_register(chip, channel, reg, data);
737 spin_unlock_irqrestore(&chip->reg_lock, flags);
738}
739
740static u16 __apu_get_register(struct es1968 *chip, u16 channel, u8 reg)
741{
742 if (snd_BUG_ON(channel >= NR_APUS))
743 return 0;
744 reg |= (channel << 4);
745 apu_index_set(chip, reg);
746 return __maestro_read(chip, IDR0_DATA_PORT);
747}
748
749static u16 apu_get_register(struct es1968 *chip, u16 channel, u8 reg)
750{
751 unsigned long flags;
752 u16 v;
753 spin_lock_irqsave(&chip->reg_lock, flags);
754 v = __apu_get_register(chip, channel, reg);
755 spin_unlock_irqrestore(&chip->reg_lock, flags);
756 return v;
757}
758
759#if 0 /* ASSP is not supported */
760
761static void assp_set_register(struct es1968 *chip, u32 reg, u32 value)
762{
763 unsigned long flags;
764
765 spin_lock_irqsave(&chip->reg_lock, flags);
766 outl(reg, chip->io_port + ASSP_INDEX);
767 outl(value, chip->io_port + ASSP_DATA);
768 spin_unlock_irqrestore(&chip->reg_lock, flags);
769}
770
771static u32 assp_get_register(struct es1968 *chip, u32 reg)
772{
773 unsigned long flags;
774 u32 value;
775
776 spin_lock_irqsave(&chip->reg_lock, flags);
777 outl(reg, chip->io_port + ASSP_INDEX);
778 value = inl(chip->io_port + ASSP_DATA);
779 spin_unlock_irqrestore(&chip->reg_lock, flags);
780
781 return value;
782}
783
784#endif
785
786static void wave_set_register(struct es1968 *chip, u16 reg, u16 value)
787{
788 unsigned long flags;
789
790 spin_lock_irqsave(&chip->reg_lock, flags);
791 outw(reg, chip->io_port + WC_INDEX);
792 outw(value, chip->io_port + WC_DATA);
793 spin_unlock_irqrestore(&chip->reg_lock, flags);
794}
795
796static u16 wave_get_register(struct es1968 *chip, u16 reg)
797{
798 unsigned long flags;
799 u16 value;
800
801 spin_lock_irqsave(&chip->reg_lock, flags);
802 outw(reg, chip->io_port + WC_INDEX);
803 value = inw(chip->io_port + WC_DATA);
804 spin_unlock_irqrestore(&chip->reg_lock, flags);
805
806 return value;
807}
808
809/* *******************
810 * Bob the Timer! *
811 *******************/
812
813static void snd_es1968_bob_stop(struct es1968 *chip)
814{
815 u16 reg;
816
817 reg = __maestro_read(chip, 0x11);
818 reg &= ~ESM_BOB_ENABLE;
819 __maestro_write(chip, 0x11, reg);
820 reg = __maestro_read(chip, 0x17);
821 reg &= ~ESM_BOB_START;
822 __maestro_write(chip, 0x17, reg);
823}
824
825static void snd_es1968_bob_start(struct es1968 *chip)
826{
827 int prescale;
828 int divide;
829
830 /* compute ideal interrupt frequency for buffer size & play rate */
831 /* first, find best prescaler value to match freq */
832 for (prescale = 5; prescale < 12; prescale++)
833 if (chip->bob_freq > (ESS_SYSCLK >> (prescale + 9)))
834 break;
835
836 /* next, back off prescaler whilst getting divider into optimum range */
837 divide = 1;
838 while ((prescale > 5) && (divide < 32)) {
839 prescale--;
840 divide <<= 1;
841 }
842 divide >>= 1;
843
844 /* now fine-tune the divider for best match */
845 for (; divide < 31; divide++)
846 if (chip->bob_freq >
847 ((ESS_SYSCLK >> (prescale + 9)) / (divide + 1))) break;
848
849 /* divide = 0 is illegal, but don't let prescale = 4! */
850 if (divide == 0) {
851 divide++;
852 if (prescale > 5)
853 prescale--;
854 } else if (divide > 1)
855 divide--;
856
857 __maestro_write(chip, 6, 0x9000 | (prescale << 5) | divide); /* set reg */
858
859 /* Now set IDR 11/17 */
860 __maestro_write(chip, 0x11, __maestro_read(chip, 0x11) | 1);
861 __maestro_write(chip, 0x17, __maestro_read(chip, 0x17) | 1);
862}
863
864/* call with substream spinlock */
865static void snd_es1968_bob_inc(struct es1968 *chip, int freq)
866{
867 chip->bobclient++;
868 if (chip->bobclient == 1) {
869 chip->bob_freq = freq;
870 snd_es1968_bob_start(chip);
871 } else if (chip->bob_freq < freq) {
872 snd_es1968_bob_stop(chip);
873 chip->bob_freq = freq;
874 snd_es1968_bob_start(chip);
875 }
876}
877
878/* call with substream spinlock */
879static void snd_es1968_bob_dec(struct es1968 *chip)
880{
881 chip->bobclient--;
882 if (chip->bobclient <= 0)
883 snd_es1968_bob_stop(chip);
884 else if (chip->bob_freq > ESM_BOB_FREQ) {
885 /* check reduction of timer frequency */
886 int max_freq = ESM_BOB_FREQ;
887 struct esschan *es;
888 list_for_each_entry(es, &chip->substream_list, list, struct esschan) {
889 if (max_freq < es->bob_freq)
890 max_freq = es->bob_freq;
891 }
892 if (max_freq != chip->bob_freq) {
893 snd_es1968_bob_stop(chip);
894 chip->bob_freq = max_freq;
895 snd_es1968_bob_start(chip);
896 }
897 }
898}
899
900static int
901snd_es1968_calc_bob_rate(struct es1968 *chip, struct esschan *es,
902 struct snd_pcm_runtime *runtime)
903{
904 /* we acquire 4 interrupts per period for precise control.. */
905 int freq = runtime->rate * 4;
906 if (es->fmt & ESS_FMT_STEREO)
907 freq <<= 1;
908 if (es->fmt & ESS_FMT_16BIT)
909 freq <<= 1;
910 freq /= es->frag_size;
911 if (freq < ESM_BOB_FREQ)
912 freq = ESM_BOB_FREQ;
913 else if (freq > ESM_BOB_FREQ_MAX)
914 freq = ESM_BOB_FREQ_MAX;
915 return freq;
916}
917
918
919/*************
920 * PCM Part *
921 *************/
922
923static u32 snd_es1968_compute_rate(struct es1968 *chip, u32 freq)
924{
925 u32 rate = (freq << 16) / chip->clock;
926#if 0 /* XXX: do we need this? */
927 if (rate > 0x10000)
928 rate = 0x10000;
929#endif
930 return rate;
931}
932
933/* get current pointer */
934static inline unsigned int
935snd_es1968_get_dma_ptr(struct es1968 *chip, struct esschan *es)
936{
937 unsigned int offset;
938
939 offset = apu_get_register(chip, es->apu[0], 5);
940
941 offset -= es->base[0];
942
943 return (offset & 0xFFFE); /* hardware is in words */
944}
945
946static void snd_es1968_apu_set_freq(struct es1968 *chip, int apu, int freq)
947{
948 apu_set_register(chip, apu, 2,
949 (apu_get_register(chip, apu, 2) & 0x00FF) |
950 ((freq & 0xff) << 8) | 0x10);
951 apu_set_register(chip, apu, 3, freq >> 8);
952}
953
954/* spin lock held */
955static inline void snd_es1968_trigger_apu(struct es1968 *esm, int apu, int mode)
956{
957 /* set the APU mode */
958 __apu_set_register(esm, apu, 0,
959 (__apu_get_register(esm, apu, 0) & 0xff0f) |
960 (mode << 4));
961}
962
963static void snd_es1968_pcm_start(struct es1968 *chip, struct esschan *es)
964{
965 spin_lock(&chip->reg_lock);
966 __apu_set_register(chip, es->apu[0], 5, es->base[0]);
967 snd_es1968_trigger_apu(chip, es->apu[0], es->apu_mode[0]);
968 if (es->mode == ESM_MODE_CAPTURE) {
969 __apu_set_register(chip, es->apu[2], 5, es->base[2]);
970 snd_es1968_trigger_apu(chip, es->apu[2], es->apu_mode[2]);
971 }
972 if (es->fmt & ESS_FMT_STEREO) {
973 __apu_set_register(chip, es->apu[1], 5, es->base[1]);
974 snd_es1968_trigger_apu(chip, es->apu[1], es->apu_mode[1]);
975 if (es->mode == ESM_MODE_CAPTURE) {
976 __apu_set_register(chip, es->apu[3], 5, es->base[3]);
977 snd_es1968_trigger_apu(chip, es->apu[3], es->apu_mode[3]);
978 }
979 }
980 spin_unlock(&chip->reg_lock);
981}
982
983static void snd_es1968_pcm_stop(struct es1968 *chip, struct esschan *es)
984{
985 spin_lock(&chip->reg_lock);
986 snd_es1968_trigger_apu(chip, es->apu[0], 0);
987 snd_es1968_trigger_apu(chip, es->apu[1], 0);
988 if (es->mode == ESM_MODE_CAPTURE) {
989 snd_es1968_trigger_apu(chip, es->apu[2], 0);
990 snd_es1968_trigger_apu(chip, es->apu[3], 0);
991 }
992 spin_unlock(&chip->reg_lock);
993}
994
995/* set the wavecache control reg */
996static void snd_es1968_program_wavecache(struct es1968 *chip, struct esschan *es,
997 int channel, u32 addr, int capture)
998{
999 u32 tmpval = (addr - 0x10) & 0xFFF8;
1000
1001 if (! capture) {
1002 if (!(es->fmt & ESS_FMT_16BIT))
1003 tmpval |= 4; /* 8bit */
1004 if (es->fmt & ESS_FMT_STEREO)
1005 tmpval |= 2; /* stereo */
1006 }
1007
1008 /* set the wavecache control reg */
1009 wave_set_register(chip, es->apu[channel] << 3, tmpval);
1010
1011#ifdef CONFIG_PM
1012 es->wc_map[channel] = tmpval;
1013#endif
1014}
1015
1016
1017static void snd_es1968_playback_setup(struct es1968 *chip, struct esschan *es,
1018 struct snd_pcm_runtime *runtime)
1019{
1020 u32 pa;
1021 int high_apu = 0;
1022 int channel, apu;
1023 int i, size;
1024 unsigned long flags;
1025 u32 freq;
1026
1027 size = es->dma_size >> es->wav_shift;
1028
1029 if (es->fmt & ESS_FMT_STEREO)
1030 high_apu++;
1031
1032 for (channel = 0; channel <= high_apu; channel++) {
1033 apu = es->apu[channel];
1034
1035 snd_es1968_program_wavecache(chip, es, channel, es->memory->buf.addr, 0);
1036
1037 /* Offset to PCMBAR */
1038 pa = es->memory->buf.addr;
1039 pa -= chip->dma.addr;
1040 pa >>= 1; /* words */
1041
1042 pa |= 0x00400000; /* System RAM (Bit 22) */
1043
1044 if (es->fmt & ESS_FMT_STEREO) {
1045 /* Enable stereo */
1046 if (channel)
1047 pa |= 0x00800000; /* (Bit 23) */
1048 if (es->fmt & ESS_FMT_16BIT)
1049 pa >>= 1;
1050 }
1051
1052 /* base offset of dma calcs when reading the pointer
1053 on this left one */
1054 es->base[channel] = pa & 0xFFFF;
1055
1056 for (i = 0; i < 16; i++)
1057 apu_set_register(chip, apu, i, 0x0000);
1058
1059 /* Load the buffer into the wave engine */
1060 apu_set_register(chip, apu, 4, ((pa >> 16) & 0xFF) << 8);
1061 apu_set_register(chip, apu, 5, pa & 0xFFFF);
1062 apu_set_register(chip, apu, 6, (pa + size) & 0xFFFF);
1063 /* setting loop == sample len */
1064 apu_set_register(chip, apu, 7, size);
1065
1066 /* clear effects/env.. */
1067 apu_set_register(chip, apu, 8, 0x0000);
1068 /* set amp now to 0xd0 (?), low byte is 'amplitude dest'? */
1069 apu_set_register(chip, apu, 9, 0xD000);
1070
1071 /* clear routing stuff */
1072 apu_set_register(chip, apu, 11, 0x0000);
1073 /* dma on, no envelopes, filter to all 1s) */
1074 apu_set_register(chip, apu, 0, 0x400F);
1075
1076 if (es->fmt & ESS_FMT_16BIT)
1077 es->apu_mode[channel] = ESM_APU_16BITLINEAR;
1078 else
1079 es->apu_mode[channel] = ESM_APU_8BITLINEAR;
1080
1081 if (es->fmt & ESS_FMT_STEREO) {
1082 /* set panning: left or right */
1083 /* Check: different panning. On my Canyon 3D Chipset the
1084 Channels are swapped. I don't know, about the output
1085 to the SPDif Link. Perhaps you have to change this
1086 and not the APU Regs 4-5. */
1087 apu_set_register(chip, apu, 10,
1088 0x8F00 | (channel ? 0 : 0x10));
1089 es->apu_mode[channel] += 1; /* stereo */
1090 } else
1091 apu_set_register(chip, apu, 10, 0x8F08);
1092 }
1093
1094 spin_lock_irqsave(&chip->reg_lock, flags);
1095 /* clear WP interrupts */
1096 outw(1, chip->io_port + 0x04);
1097 /* enable WP ints */
1098 outw(inw(chip->io_port + ESM_PORT_HOST_IRQ) | ESM_HIRQ_DSIE, chip->io_port + ESM_PORT_HOST_IRQ);
1099 spin_unlock_irqrestore(&chip->reg_lock, flags);
1100
1101 freq = runtime->rate;
1102 /* set frequency */
1103 if (freq > 48000)
1104 freq = 48000;
1105 if (freq < 4000)
1106 freq = 4000;
1107
1108 /* hmmm.. */
1109 if (!(es->fmt & ESS_FMT_16BIT) && !(es->fmt & ESS_FMT_STEREO))
1110 freq >>= 1;
1111
1112 freq = snd_es1968_compute_rate(chip, freq);
1113
1114 /* Load the frequency, turn on 6dB */
1115 snd_es1968_apu_set_freq(chip, es->apu[0], freq);
1116 snd_es1968_apu_set_freq(chip, es->apu[1], freq);
1117}
1118
1119
1120static void init_capture_apu(struct es1968 *chip, struct esschan *es, int channel,
1121 unsigned int pa, unsigned int bsize,
1122 int mode, int route)
1123{
1124 int i, apu = es->apu[channel];
1125
1126 es->apu_mode[channel] = mode;
1127
1128 /* set the wavecache control reg */
1129 snd_es1968_program_wavecache(chip, es, channel, pa, 1);
1130
1131 /* Offset to PCMBAR */
1132 pa -= chip->dma.addr;
1133 pa >>= 1; /* words */
1134
1135 /* base offset of dma calcs when reading the pointer
1136 on this left one */
1137 es->base[channel] = pa & 0xFFFF;
1138 pa |= 0x00400000; /* bit 22 -> System RAM */
1139
1140 /* Begin loading the APU */
1141 for (i = 0; i < 16; i++)
1142 apu_set_register(chip, apu, i, 0x0000);
1143
1144 /* need to enable subgroups.. and we should probably
1145 have different groups for different /dev/dsps.. */
1146 apu_set_register(chip, apu, 2, 0x8);
1147
1148 /* Load the buffer into the wave engine */
1149 apu_set_register(chip, apu, 4, ((pa >> 16) & 0xFF) << 8);
1150 apu_set_register(chip, apu, 5, pa & 0xFFFF);
1151 apu_set_register(chip, apu, 6, (pa + bsize) & 0xFFFF);
1152 apu_set_register(chip, apu, 7, bsize);
1153 /* clear effects/env.. */
1154 apu_set_register(chip, apu, 8, 0x00F0);
1155 /* amplitude now? sure. why not. */
1156 apu_set_register(chip, apu, 9, 0x0000);
1157 /* set filter tune, radius, polar pan */
1158 apu_set_register(chip, apu, 10, 0x8F08);
1159 /* route input */
1160 apu_set_register(chip, apu, 11, route);
1161 /* dma on, no envelopes, filter to all 1s) */
1162 apu_set_register(chip, apu, 0, 0x400F);
1163}
1164
1165static void snd_es1968_capture_setup(struct es1968 *chip, struct esschan *es,
1166 struct snd_pcm_runtime *runtime)
1167{
1168 int size;
1169 u32 freq;
1170 unsigned long flags;
1171
1172 size = es->dma_size >> es->wav_shift;
1173
1174 /* APU assignments:
1175 0 = mono/left SRC
1176 1 = right SRC
1177 2 = mono/left Input Mixer
1178 3 = right Input Mixer
1179 */
1180 /* data seems to flow from the codec, through an apu into
1181 the 'mixbuf' bit of page, then through the SRC apu
1182 and out to the real 'buffer'. ok. sure. */
1183
1184 /* input mixer (left/mono) */
1185 /* parallel in crap, see maestro reg 0xC [8-11] */
1186 init_capture_apu(chip, es, 2,
1187 es->mixbuf->buf.addr, ESM_MIXBUF_SIZE/4, /* in words */
1188 ESM_APU_INPUTMIXER, 0x14);
1189 /* SRC (left/mono); get input from inputing apu */
1190 init_capture_apu(chip, es, 0, es->memory->buf.addr, size,
1191 ESM_APU_SRCONVERTOR, es->apu[2]);
1192 if (es->fmt & ESS_FMT_STEREO) {
1193 /* input mixer (right) */
1194 init_capture_apu(chip, es, 3,
1195 es->mixbuf->buf.addr + ESM_MIXBUF_SIZE/2,
1196 ESM_MIXBUF_SIZE/4, /* in words */
1197 ESM_APU_INPUTMIXER, 0x15);
1198 /* SRC (right) */
1199 init_capture_apu(chip, es, 1,
1200 es->memory->buf.addr + size*2, size,
1201 ESM_APU_SRCONVERTOR, es->apu[3]);
1202 }
1203
1204 freq = runtime->rate;
1205 /* Sample Rate conversion APUs don't like 0x10000 for their rate */
1206 if (freq > 47999)
1207 freq = 47999;
1208 if (freq < 4000)
1209 freq = 4000;
1210
1211 freq = snd_es1968_compute_rate(chip, freq);
1212
1213 /* Load the frequency, turn on 6dB */
1214 snd_es1968_apu_set_freq(chip, es->apu[0], freq);
1215 snd_es1968_apu_set_freq(chip, es->apu[1], freq);
1216
1217 /* fix mixer rate at 48khz. and its _must_ be 0x10000. */
1218 freq = 0x10000;
1219 snd_es1968_apu_set_freq(chip, es->apu[2], freq);
1220 snd_es1968_apu_set_freq(chip, es->apu[3], freq);
1221
1222 spin_lock_irqsave(&chip->reg_lock, flags);
1223 /* clear WP interrupts */
1224 outw(1, chip->io_port + 0x04);
1225 /* enable WP ints */
1226 outw(inw(chip->io_port + ESM_PORT_HOST_IRQ) | ESM_HIRQ_DSIE, chip->io_port + ESM_PORT_HOST_IRQ);
1227 spin_unlock_irqrestore(&chip->reg_lock, flags);
1228}
1229
1230/*******************
1231 * ALSA Interface *
1232 *******************/
1233
1234static int snd_es1968_pcm_prepare(struct snd_pcm_substream *substream)
1235{
1236 struct es1968 *chip = snd_pcm_substream_chip(substream);
1237 struct snd_pcm_runtime *runtime = substream->runtime;
1238 struct esschan *es = runtime->private_data;
1239
1240 es->dma_size = snd_pcm_lib_buffer_bytes(substream);
1241 es->frag_size = snd_pcm_lib_period_bytes(substream);
1242
1243 es->wav_shift = 1; /* maestro handles always 16bit */
1244 es->fmt = 0;
1245 if (snd_pcm_format_width(runtime->format) == 16)
1246 es->fmt |= ESS_FMT_16BIT;
1247 if (runtime->channels > 1) {
1248 es->fmt |= ESS_FMT_STEREO;
1249 if (es->fmt & ESS_FMT_16BIT) /* 8bit is already word shifted */
1250 es->wav_shift++;
1251 }
1252 es->bob_freq = snd_es1968_calc_bob_rate(chip, es, runtime);
1253
1254 switch (es->mode) {
1255 case ESM_MODE_PLAY:
1256 snd_es1968_playback_setup(chip, es, runtime);
1257 break;
1258 case ESM_MODE_CAPTURE:
1259 snd_es1968_capture_setup(chip, es, runtime);
1260 break;
1261 }
1262
1263 return 0;
1264}
1265
1266static int snd_es1968_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1267{
1268 struct es1968 *chip = snd_pcm_substream_chip(substream);
1269 struct esschan *es = substream->runtime->private_data;
1270
1271 spin_lock(&chip->substream_lock);
1272 switch (cmd) {
1273 case SNDRV_PCM_TRIGGER_START:
1274 case SNDRV_PCM_TRIGGER_RESUME:
1275 if (es->running)
1276 break;
1277 snd_es1968_bob_inc(chip, es->bob_freq);
1278 es->count = 0;
1279 es->hwptr = 0;
1280 snd_es1968_pcm_start(chip, es);
1281 es->running = 1;
1282 break;
1283 case SNDRV_PCM_TRIGGER_STOP:
1284 case SNDRV_PCM_TRIGGER_SUSPEND:
1285 if (! es->running)
1286 break;
1287 snd_es1968_pcm_stop(chip, es);
1288 es->running = 0;
1289 snd_es1968_bob_dec(chip);
1290 break;
1291 }
1292 spin_unlock(&chip->substream_lock);
1293 return 0;
1294}
1295
1296static snd_pcm_uframes_t snd_es1968_pcm_pointer(struct snd_pcm_substream *substream)
1297{
1298 struct es1968 *chip = snd_pcm_substream_chip(substream);
1299 struct esschan *es = substream->runtime->private_data;
1300 unsigned int ptr;
1301
1302 ptr = snd_es1968_get_dma_ptr(chip, es) << es->wav_shift;
1303
1304 return bytes_to_frames(substream->runtime, ptr % es->dma_size);
1305}
1306
1307static struct snd_pcm_hardware snd_es1968_playback = {
1308 .info = (SNDRV_PCM_INFO_MMAP |
1309 SNDRV_PCM_INFO_MMAP_VALID |
1310 SNDRV_PCM_INFO_INTERLEAVED |
1311 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1312 /*SNDRV_PCM_INFO_PAUSE |*/
1313 SNDRV_PCM_INFO_RESUME),
1314 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
1315 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
1316 .rate_min = 4000,
1317 .rate_max = 48000,
1318 .channels_min = 1,
1319 .channels_max = 2,
1320 .buffer_bytes_max = 65536,
1321 .period_bytes_min = 256,
1322 .period_bytes_max = 65536,
1323 .periods_min = 1,
1324 .periods_max = 1024,
1325 .fifo_size = 0,
1326};
1327
1328static struct snd_pcm_hardware snd_es1968_capture = {
1329 .info = (SNDRV_PCM_INFO_NONINTERLEAVED |
1330 SNDRV_PCM_INFO_MMAP |
1331 SNDRV_PCM_INFO_MMAP_VALID |
1332 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1333 /*SNDRV_PCM_INFO_PAUSE |*/
1334 SNDRV_PCM_INFO_RESUME),
1335 .formats = /*SNDRV_PCM_FMTBIT_U8 |*/ SNDRV_PCM_FMTBIT_S16_LE,
1336 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
1337 .rate_min = 4000,
1338 .rate_max = 48000,
1339 .channels_min = 1,
1340 .channels_max = 2,
1341 .buffer_bytes_max = 65536,
1342 .period_bytes_min = 256,
1343 .period_bytes_max = 65536,
1344 .periods_min = 1,
1345 .periods_max = 1024,
1346 .fifo_size = 0,
1347};
1348
1349/* *************************
1350 * DMA memory management *
1351 *************************/
1352
1353/* Because the Maestro can only take addresses relative to the PCM base address
1354 register :( */
1355
1356static int calc_available_memory_size(struct es1968 *chip)
1357{
1358 int max_size = 0;
1359 struct esm_memory *buf;
1360
1361 mutex_lock(&chip->memory_mutex);
1362 list_for_each_entry(buf, &chip->buf_list, list, struct esm_memory) {
1363 if (buf->empty && buf->buf.bytes > max_size)
1364 max_size = buf->buf.bytes;
1365 }
1366 mutex_unlock(&chip->memory_mutex);
1367 if (max_size >= 128*1024)
1368 max_size = 127*1024;
1369 return max_size;
1370}
1371
1372/* allocate a new memory chunk with the specified size */
1373static struct esm_memory *snd_es1968_new_memory(struct es1968 *chip, int size)
1374{
1375 struct esm_memory *buf;
1376
1377 size = ALIGN(size, ESM_MEM_ALIGN);
1378 mutex_lock(&chip->memory_mutex);
1379 list_for_each_entry(buf, &chip->buf_list, list, struct esm_memory) {
1380 if (buf->empty && buf->buf.bytes >= size)
1381 goto __found;
1382 }
1383 mutex_unlock(&chip->memory_mutex);
1384 return NULL;
1385
1386__found:
1387 if (buf->buf.bytes > size) {
1388 struct esm_memory *chunk = kmalloc(sizeof(*chunk), GFP_KERNEL);
1389 if (chunk == NULL) {
1390 mutex_unlock(&chip->memory_mutex);
1391 return NULL;
1392 }
1393 chunk->buf = buf->buf;
1394 chunk->buf.bytes -= size;
1395 chunk->buf.area += size;
1396 chunk->buf.addr += size;
1397 chunk->empty = 1;
1398 buf->buf.bytes = size;
1399 list_add(&chunk->list, &buf->list);
1400 }
1401 buf->empty = 0;
1402 mutex_unlock(&chip->memory_mutex);
1403 return buf;
1404}
1405
1406/* free a memory chunk */
1407static void snd_es1968_free_memory(struct es1968 *chip, struct esm_memory *buf)
1408{
1409 struct esm_memory *chunk;
1410
1411 mutex_lock(&chip->memory_mutex);
1412 buf->empty = 1;
1413 if (buf->list.prev != &chip->buf_list) {
1414 chunk = list_entry(buf->list.prev, struct esm_memory, list);
1415 if (chunk->empty) {
1416 chunk->buf.bytes += buf->buf.bytes;
1417 list_del(&buf->list);
1418 kfree(buf);
1419 buf = chunk;
1420 }
1421 }
1422 if (buf->list.next != &chip->buf_list) {
1423 chunk = list_entry(buf->list.next, struct esm_memory, list);
1424 if (chunk->empty) {
1425 buf->buf.bytes += chunk->buf.bytes;
1426 list_del(&chunk->list);
1427 kfree(chunk);
1428 }
1429 }
1430 mutex_unlock(&chip->memory_mutex);
1431}
1432
1433static void snd_es1968_free_dmabuf(struct es1968 *chip)
1434{
1435 struct list_head *p;
1436
1437 if (! chip->dma.area)
1438 return;
1439 snd_dma_reserve_buf(&chip->dma, snd_dma_pci_buf_id(chip->pci));
1440 while ((p = chip->buf_list.next) != &chip->buf_list) {
1441 struct esm_memory *chunk = list_entry(p, struct esm_memory, list);
1442 list_del(p);
1443 kfree(chunk);
1444 }
1445}
1446
1447static int __devinit
1448snd_es1968_init_dmabuf(struct es1968 *chip)
1449{
1450 int err;
1451 struct esm_memory *chunk;
1452
1453 chip->dma.dev.type = SNDRV_DMA_TYPE_DEV;
1454 chip->dma.dev.dev = snd_dma_pci_data(chip->pci);
1455 if (! snd_dma_get_reserved_buf(&chip->dma, snd_dma_pci_buf_id(chip->pci))) {
1456 err = snd_dma_alloc_pages_fallback(SNDRV_DMA_TYPE_DEV,
1457 snd_dma_pci_data(chip->pci),
1458 chip->total_bufsize, &chip->dma);
1459 if (err < 0 || ! chip->dma.area) {
1460 snd_printk(KERN_ERR "es1968: can't allocate dma pages for size %d\n",
1461 chip->total_bufsize);
1462 return -ENOMEM;
1463 }
1464 if ((chip->dma.addr + chip->dma.bytes - 1) & ~((1 << 28) - 1)) {
1465 snd_dma_free_pages(&chip->dma);
1466 snd_printk(KERN_ERR "es1968: DMA buffer beyond 256MB.\n");
1467 return -ENOMEM;
1468 }
1469 }
1470
1471 INIT_LIST_HEAD(&chip->buf_list);
1472 /* allocate an empty chunk */
1473 chunk = kmalloc(sizeof(*chunk), GFP_KERNEL);
1474 if (chunk == NULL) {
1475 snd_es1968_free_dmabuf(chip);
1476 return -ENOMEM;
1477 }
1478 memset(chip->dma.area, 0, ESM_MEM_ALIGN);
1479 chunk->buf = chip->dma;
1480 chunk->buf.area += ESM_MEM_ALIGN;
1481 chunk->buf.addr += ESM_MEM_ALIGN;
1482 chunk->buf.bytes -= ESM_MEM_ALIGN;
1483 chunk->empty = 1;
1484 list_add(&chunk->list, &chip->buf_list);
1485
1486 return 0;
1487}
1488
1489/* setup the dma_areas */
1490/* buffer is extracted from the pre-allocated memory chunk */
1491static int snd_es1968_hw_params(struct snd_pcm_substream *substream,
1492 struct snd_pcm_hw_params *hw_params)
1493{
1494 struct es1968 *chip = snd_pcm_substream_chip(substream);
1495 struct snd_pcm_runtime *runtime = substream->runtime;
1496 struct esschan *chan = runtime->private_data;
1497 int size = params_buffer_bytes(hw_params);
1498
1499 if (chan->memory) {
1500 if (chan->memory->buf.bytes >= size) {
1501 runtime->dma_bytes = size;
1502 return 0;
1503 }
1504 snd_es1968_free_memory(chip, chan->memory);
1505 }
1506 chan->memory = snd_es1968_new_memory(chip, size);
1507 if (chan->memory == NULL) {
1508 // snd_printd("cannot allocate dma buffer: size = %d\n", size);
1509 return -ENOMEM;
1510 }
1511 snd_pcm_set_runtime_buffer(substream, &chan->memory->buf);
1512 return 1; /* area was changed */
1513}
1514
1515/* remove dma areas if allocated */
1516static int snd_es1968_hw_free(struct snd_pcm_substream *substream)
1517{
1518 struct es1968 *chip = snd_pcm_substream_chip(substream);
1519 struct snd_pcm_runtime *runtime = substream->runtime;
1520 struct esschan *chan;
1521
1522 if (runtime->private_data == NULL)
1523 return 0;
1524 chan = runtime->private_data;
1525 if (chan->memory) {
1526 snd_es1968_free_memory(chip, chan->memory);
1527 chan->memory = NULL;
1528 }
1529 return 0;
1530}
1531
1532
1533/*
1534 * allocate APU pair
1535 */
1536static int snd_es1968_alloc_apu_pair(struct es1968 *chip, int type)
1537{
1538 int apu;
1539
1540 for (apu = 0; apu < NR_APUS; apu += 2) {
1541 if (chip->apu[apu] == ESM_APU_FREE &&
1542 chip->apu[apu + 1] == ESM_APU_FREE) {
1543 chip->apu[apu] = chip->apu[apu + 1] = type;
1544 return apu;
1545 }
1546 }
1547 return -EBUSY;
1548}
1549
1550/*
1551 * release APU pair
1552 */
1553static void snd_es1968_free_apu_pair(struct es1968 *chip, int apu)
1554{
1555 chip->apu[apu] = chip->apu[apu + 1] = ESM_APU_FREE;
1556}
1557
1558
1559/******************
1560 * PCM open/close *
1561 ******************/
1562
1563static int snd_es1968_playback_open(struct snd_pcm_substream *substream)
1564{
1565 struct es1968 *chip = snd_pcm_substream_chip(substream);
1566 struct snd_pcm_runtime *runtime = substream->runtime;
1567 struct esschan *es;
1568 int apu1;
1569
1570 /* search 2 APUs */
1571 apu1 = snd_es1968_alloc_apu_pair(chip, ESM_APU_PCM_PLAY);
1572 if (apu1 < 0)
1573 return apu1;
1574
1575 es = kzalloc(sizeof(*es), GFP_KERNEL);
1576 if (!es) {
1577 snd_es1968_free_apu_pair(chip, apu1);
1578 return -ENOMEM;
1579 }
1580
1581 es->apu[0] = apu1;
1582 es->apu[1] = apu1 + 1;
1583 es->apu_mode[0] = 0;
1584 es->apu_mode[1] = 0;
1585 es->running = 0;
1586 es->substream = substream;
1587 es->mode = ESM_MODE_PLAY;
1588
1589 runtime->private_data = es;
1590 runtime->hw = snd_es1968_playback;
1591 runtime->hw.buffer_bytes_max = runtime->hw.period_bytes_max =
1592 calc_available_memory_size(chip);
1593
1594 spin_lock_irq(&chip->substream_lock);
1595 list_add(&es->list, &chip->substream_list);
1596 spin_unlock_irq(&chip->substream_lock);
1597
1598 return 0;
1599}
1600
1601static int snd_es1968_capture_open(struct snd_pcm_substream *substream)
1602{
1603 struct snd_pcm_runtime *runtime = substream->runtime;
1604 struct es1968 *chip = snd_pcm_substream_chip(substream);
1605 struct esschan *es;
1606 int apu1, apu2;
1607
1608 apu1 = snd_es1968_alloc_apu_pair(chip, ESM_APU_PCM_CAPTURE);
1609 if (apu1 < 0)
1610 return apu1;
1611 apu2 = snd_es1968_alloc_apu_pair(chip, ESM_APU_PCM_RATECONV);
1612 if (apu2 < 0) {
1613 snd_es1968_free_apu_pair(chip, apu1);
1614 return apu2;
1615 }
1616
1617 es = kzalloc(sizeof(*es), GFP_KERNEL);
1618 if (!es) {
1619 snd_es1968_free_apu_pair(chip, apu1);
1620 snd_es1968_free_apu_pair(chip, apu2);
1621 return -ENOMEM;
1622 }
1623
1624 es->apu[0] = apu1;
1625 es->apu[1] = apu1 + 1;
1626 es->apu[2] = apu2;
1627 es->apu[3] = apu2 + 1;
1628 es->apu_mode[0] = 0;
1629 es->apu_mode[1] = 0;
1630 es->apu_mode[2] = 0;
1631 es->apu_mode[3] = 0;
1632 es->running = 0;
1633 es->substream = substream;
1634 es->mode = ESM_MODE_CAPTURE;
1635
1636 /* get mixbuffer */
1637 if ((es->mixbuf = snd_es1968_new_memory(chip, ESM_MIXBUF_SIZE)) == NULL) {
1638 snd_es1968_free_apu_pair(chip, apu1);
1639 snd_es1968_free_apu_pair(chip, apu2);
1640 kfree(es);
1641 return -ENOMEM;
1642 }
1643 memset(es->mixbuf->buf.area, 0, ESM_MIXBUF_SIZE);
1644
1645 runtime->private_data = es;
1646 runtime->hw = snd_es1968_capture;
1647 runtime->hw.buffer_bytes_max = runtime->hw.period_bytes_max =
1648 calc_available_memory_size(chip) - 1024; /* keep MIXBUF size */
1649 snd_pcm_hw_constraint_pow2(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES);
1650
1651 spin_lock_irq(&chip->substream_lock);
1652 list_add(&es->list, &chip->substream_list);
1653 spin_unlock_irq(&chip->substream_lock);
1654
1655 return 0;
1656}
1657
1658static int snd_es1968_playback_close(struct snd_pcm_substream *substream)
1659{
1660 struct es1968 *chip = snd_pcm_substream_chip(substream);
1661 struct esschan *es;
1662
1663 if (substream->runtime->private_data == NULL)
1664 return 0;
1665 es = substream->runtime->private_data;
1666 spin_lock_irq(&chip->substream_lock);
1667 list_del(&es->list);
1668 spin_unlock_irq(&chip->substream_lock);
1669 snd_es1968_free_apu_pair(chip, es->apu[0]);
1670 kfree(es);
1671
1672 return 0;
1673}
1674
1675static int snd_es1968_capture_close(struct snd_pcm_substream *substream)
1676{
1677 struct es1968 *chip = snd_pcm_substream_chip(substream);
1678 struct esschan *es;
1679
1680 if (substream->runtime->private_data == NULL)
1681 return 0;
1682 es = substream->runtime->private_data;
1683 spin_lock_irq(&chip->substream_lock);
1684 list_del(&es->list);
1685 spin_unlock_irq(&chip->substream_lock);
1686 snd_es1968_free_memory(chip, es->mixbuf);
1687 snd_es1968_free_apu_pair(chip, es->apu[0]);
1688 snd_es1968_free_apu_pair(chip, es->apu[2]);
1689 kfree(es);
1690
1691 return 0;
1692}
1693
1694static struct snd_pcm_ops snd_es1968_playback_ops = {
1695 .open = snd_es1968_playback_open,
1696 .close = snd_es1968_playback_close,
1697 .ioctl = snd_pcm_lib_ioctl,
1698 .hw_params = snd_es1968_hw_params,
1699 .hw_free = snd_es1968_hw_free,
1700 .prepare = snd_es1968_pcm_prepare,
1701 .trigger = snd_es1968_pcm_trigger,
1702 .pointer = snd_es1968_pcm_pointer,
1703};
1704
1705static struct snd_pcm_ops snd_es1968_capture_ops = {
1706 .open = snd_es1968_capture_open,
1707 .close = snd_es1968_capture_close,
1708 .ioctl = snd_pcm_lib_ioctl,
1709 .hw_params = snd_es1968_hw_params,
1710 .hw_free = snd_es1968_hw_free,
1711 .prepare = snd_es1968_pcm_prepare,
1712 .trigger = snd_es1968_pcm_trigger,
1713 .pointer = snd_es1968_pcm_pointer,
1714};
1715
1716
1717/*
1718 * measure clock
1719 */
1720#define CLOCK_MEASURE_BUFSIZE 16768 /* enough large for a single shot */
1721
1722static void __devinit es1968_measure_clock(struct es1968 *chip)
1723{
1724 int i, apu;
1725 unsigned int pa, offset, t;
1726 struct esm_memory *memory;
1727 struct timeval start_time, stop_time;
1728
1729 if (chip->clock == 0)
1730 chip->clock = 48000; /* default clock value */
1731
1732 /* search 2 APUs (although one apu is enough) */
1733 if ((apu = snd_es1968_alloc_apu_pair(chip, ESM_APU_PCM_PLAY)) < 0) {
1734 snd_printk(KERN_ERR "Hmm, cannot find empty APU pair!?\n");
1735 return;
1736 }
1737 if ((memory = snd_es1968_new_memory(chip, CLOCK_MEASURE_BUFSIZE)) == NULL) {
1738 snd_printk(KERN_ERR "cannot allocate dma buffer - using default clock %d\n", chip->clock);
1739 snd_es1968_free_apu_pair(chip, apu);
1740 return;
1741 }
1742
1743 memset(memory->buf.area, 0, CLOCK_MEASURE_BUFSIZE);
1744
1745 wave_set_register(chip, apu << 3, (memory->buf.addr - 0x10) & 0xfff8);
1746
1747 pa = (unsigned int)((memory->buf.addr - chip->dma.addr) >> 1);
1748 pa |= 0x00400000; /* System RAM (Bit 22) */
1749
1750 /* initialize apu */
1751 for (i = 0; i < 16; i++)
1752 apu_set_register(chip, apu, i, 0x0000);
1753
1754 apu_set_register(chip, apu, 0, 0x400f);
1755 apu_set_register(chip, apu, 4, ((pa >> 16) & 0xff) << 8);
1756 apu_set_register(chip, apu, 5, pa & 0xffff);
1757 apu_set_register(chip, apu, 6, (pa + CLOCK_MEASURE_BUFSIZE/2) & 0xffff);
1758 apu_set_register(chip, apu, 7, CLOCK_MEASURE_BUFSIZE/2);
1759 apu_set_register(chip, apu, 8, 0x0000);
1760 apu_set_register(chip, apu, 9, 0xD000);
1761 apu_set_register(chip, apu, 10, 0x8F08);
1762 apu_set_register(chip, apu, 11, 0x0000);
1763 spin_lock_irq(&chip->reg_lock);
1764 outw(1, chip->io_port + 0x04); /* clear WP interrupts */
1765 outw(inw(chip->io_port + ESM_PORT_HOST_IRQ) | ESM_HIRQ_DSIE, chip->io_port + ESM_PORT_HOST_IRQ); /* enable WP ints */
1766 spin_unlock_irq(&chip->reg_lock);
1767
1768 snd_es1968_apu_set_freq(chip, apu, ((unsigned int)48000 << 16) / chip->clock); /* 48000 Hz */
1769
1770 chip->in_measurement = 1;
1771 chip->measure_apu = apu;
1772 spin_lock_irq(&chip->reg_lock);
1773 snd_es1968_bob_inc(chip, ESM_BOB_FREQ);
1774 __apu_set_register(chip, apu, 5, pa & 0xffff);
1775 snd_es1968_trigger_apu(chip, apu, ESM_APU_16BITLINEAR);
1776 do_gettimeofday(&start_time);
1777 spin_unlock_irq(&chip->reg_lock);
1778 msleep(50);
1779 spin_lock_irq(&chip->reg_lock);
1780 offset = __apu_get_register(chip, apu, 5);
1781 do_gettimeofday(&stop_time);
1782 snd_es1968_trigger_apu(chip, apu, 0); /* stop */
1783 snd_es1968_bob_dec(chip);
1784 chip->in_measurement = 0;
1785 spin_unlock_irq(&chip->reg_lock);
1786
1787 /* check the current position */
1788 offset -= (pa & 0xffff);
1789 offset &= 0xfffe;
1790 offset += chip->measure_count * (CLOCK_MEASURE_BUFSIZE/2);
1791
1792 t = stop_time.tv_sec - start_time.tv_sec;
1793 t *= 1000000;
1794 if (stop_time.tv_usec < start_time.tv_usec)
1795 t -= start_time.tv_usec - stop_time.tv_usec;
1796 else
1797 t += stop_time.tv_usec - start_time.tv_usec;
1798 if (t == 0) {
1799 snd_printk(KERN_ERR "?? calculation error..\n");
1800 } else {
1801 offset *= 1000;
1802 offset = (offset / t) * 1000 + ((offset % t) * 1000) / t;
1803 if (offset < 47500 || offset > 48500) {
1804 if (offset >= 40000 && offset <= 50000)
1805 chip->clock = (chip->clock * offset) / 48000;
1806 }
1807 printk(KERN_INFO "es1968: clocking to %d\n", chip->clock);
1808 }
1809 snd_es1968_free_memory(chip, memory);
1810 snd_es1968_free_apu_pair(chip, apu);
1811}
1812
1813
1814/*
1815 */
1816
1817static void snd_es1968_pcm_free(struct snd_pcm *pcm)
1818{
1819 struct es1968 *esm = pcm->private_data;
1820 snd_es1968_free_dmabuf(esm);
1821 esm->pcm = NULL;
1822}
1823
1824static int __devinit
1825snd_es1968_pcm(struct es1968 *chip, int device)
1826{
1827 struct snd_pcm *pcm;
1828 int err;
1829
1830 /* get DMA buffer */
1831 if ((err = snd_es1968_init_dmabuf(chip)) < 0)
1832 return err;
1833
1834 /* set PCMBAR */
1835 wave_set_register(chip, 0x01FC, chip->dma.addr >> 12);
1836 wave_set_register(chip, 0x01FD, chip->dma.addr >> 12);
1837 wave_set_register(chip, 0x01FE, chip->dma.addr >> 12);
1838 wave_set_register(chip, 0x01FF, chip->dma.addr >> 12);
1839
1840 if ((err = snd_pcm_new(chip->card, "ESS Maestro", device,
1841 chip->playback_streams,
1842 chip->capture_streams, &pcm)) < 0)
1843 return err;
1844
1845 pcm->private_data = chip;
1846 pcm->private_free = snd_es1968_pcm_free;
1847
1848 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_es1968_playback_ops);
1849 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_es1968_capture_ops);
1850
1851 pcm->info_flags = 0;
1852
1853 strcpy(pcm->name, "ESS Maestro");
1854
1855 chip->pcm = pcm;
1856
1857 return 0;
1858}
1859/*
1860 * suppress jitter on some maestros when playing stereo
1861 */
1862static void snd_es1968_suppress_jitter(struct es1968 *chip, struct esschan *es)
1863{
1864 unsigned int cp1;
1865 unsigned int cp2;
1866 unsigned int diff;
1867
1868 cp1 = __apu_get_register(chip, 0, 5);
1869 cp2 = __apu_get_register(chip, 1, 5);
1870 diff = (cp1 > cp2 ? cp1 - cp2 : cp2 - cp1);
1871
1872 if (diff > 1)
1873 __maestro_write(chip, IDR0_DATA_PORT, cp1);
1874}
1875
1876/*
1877 * update pointer
1878 */
1879static void snd_es1968_update_pcm(struct es1968 *chip, struct esschan *es)
1880{
1881 unsigned int hwptr;
1882 unsigned int diff;
1883 struct snd_pcm_substream *subs = es->substream;
1884
1885 if (subs == NULL || !es->running)
1886 return;
1887
1888 hwptr = snd_es1968_get_dma_ptr(chip, es) << es->wav_shift;
1889 hwptr %= es->dma_size;
1890
1891 diff = (es->dma_size + hwptr - es->hwptr) % es->dma_size;
1892
1893 es->hwptr = hwptr;
1894 es->count += diff;
1895
1896 if (es->count > es->frag_size) {
1897 spin_unlock(&chip->substream_lock);
1898 snd_pcm_period_elapsed(subs);
1899 spin_lock(&chip->substream_lock);
1900 es->count %= es->frag_size;
1901 }
1902}
1903
1904/* The hardware volume works by incrementing / decrementing 2 counters
1905 (without wrap around) in response to volume button presses and then
1906 generating an interrupt. The pair of counters is stored in bits 1-3 and 5-7
1907 of a byte wide register. The meaning of bits 0 and 4 is unknown. */
1908static void es1968_update_hw_volume(unsigned long private_data)
1909{
1910 struct es1968 *chip = (struct es1968 *) private_data;
1911 int x, val;
1912#ifndef CONFIG_SND_ES1968_INPUT
1913 unsigned long flags;
1914#endif
1915
1916 /* Figure out which volume control button was pushed,
1917 based on differences from the default register
1918 values. */
1919 x = inb(chip->io_port + 0x1c) & 0xee;
1920 /* Reset the volume control registers. */
1921 outb(0x88, chip->io_port + 0x1c);
1922 outb(0x88, chip->io_port + 0x1d);
1923 outb(0x88, chip->io_port + 0x1e);
1924 outb(0x88, chip->io_port + 0x1f);
1925
1926 if (chip->in_suspend)
1927 return;
1928
1929#ifndef CONFIG_SND_ES1968_INPUT
1930 if (! chip->master_switch || ! chip->master_volume)
1931 return;
1932
1933 /* FIXME: we can't call snd_ac97_* functions since here is in tasklet. */
1934 spin_lock_irqsave(&chip->ac97_lock, flags);
1935 val = chip->ac97->regs[AC97_MASTER];
1936 switch (x) {
1937 case 0x88:
1938 /* mute */
1939 val ^= 0x8000;
1940 chip->ac97->regs[AC97_MASTER] = val;
1941 outw(val, chip->io_port + ESM_AC97_DATA);
1942 outb(AC97_MASTER, chip->io_port + ESM_AC97_INDEX);
1943 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
1944 &chip->master_switch->id);
1945 break;
1946 case 0xaa:
1947 /* volume up */
1948 if ((val & 0x7f) > 0)
1949 val--;
1950 if ((val & 0x7f00) > 0)
1951 val -= 0x0100;
1952 chip->ac97->regs[AC97_MASTER] = val;
1953 outw(val, chip->io_port + ESM_AC97_DATA);
1954 outb(AC97_MASTER, chip->io_port + ESM_AC97_INDEX);
1955 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
1956 &chip->master_volume->id);
1957 break;
1958 case 0x66:
1959 /* volume down */
1960 if ((val & 0x7f) < 0x1f)
1961 val++;
1962 if ((val & 0x7f00) < 0x1f00)
1963 val += 0x0100;
1964 chip->ac97->regs[AC97_MASTER] = val;
1965 outw(val, chip->io_port + ESM_AC97_DATA);
1966 outb(AC97_MASTER, chip->io_port + ESM_AC97_INDEX);
1967 snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
1968 &chip->master_volume->id);
1969 break;
1970 }
1971 spin_unlock_irqrestore(&chip->ac97_lock, flags);
1972#else
1973 if (!chip->input_dev)
1974 return;
1975
1976 val = 0;
1977 switch (x) {
1978 case 0x88:
1979 /* The counters have not changed, yet we've received a HV
1980 interrupt. According to tests run by various people this
1981 happens when pressing the mute button. */
1982 val = KEY_MUTE;
1983 break;
1984 case 0xaa:
1985 /* counters increased by 1 -> volume up */
1986 val = KEY_VOLUMEUP;
1987 break;
1988 case 0x66:
1989 /* counters decreased by 1 -> volume down */
1990 val = KEY_VOLUMEDOWN;
1991 break;
1992 }
1993
1994 if (val) {
1995 input_report_key(chip->input_dev, val, 1);
1996 input_sync(chip->input_dev);
1997 input_report_key(chip->input_dev, val, 0);
1998 input_sync(chip->input_dev);
1999 }
2000#endif
2001}
2002
2003/*
2004 * interrupt handler
2005 */
2006static irqreturn_t snd_es1968_interrupt(int irq, void *dev_id)
2007{
2008 struct es1968 *chip = dev_id;
2009 u32 event;
2010
2011 if (!(event = inb(chip->io_port + 0x1A)))
2012 return IRQ_NONE;
2013
2014 outw(inw(chip->io_port + 4) & 1, chip->io_port + 4);
2015
2016 if (event & ESM_HWVOL_IRQ)
2017#ifdef CONFIG_SND_ES1968_INPUT
2018 es1968_update_hw_volume((unsigned long)chip);
2019#else
2020 tasklet_schedule(&chip->hwvol_tq); /* we'll do this later */
2021#endif
2022
2023 /* else ack 'em all, i imagine */
2024 outb(0xFF, chip->io_port + 0x1A);
2025
2026 if ((event & ESM_MPU401_IRQ) && chip->rmidi) {
2027 snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data);
2028 }
2029
2030 if (event & ESM_SOUND_IRQ) {
2031 struct esschan *es;
2032 spin_lock(&chip->substream_lock);
2033 list_for_each_entry(es, &chip->substream_list, list, struct esschan) {
2034 if (es->running) {
2035 snd_es1968_update_pcm(chip, es);
2036 if (es->fmt & ESS_FMT_STEREO)
2037 snd_es1968_suppress_jitter(chip, es);
2038 }
2039 }
2040 spin_unlock(&chip->substream_lock);
2041 if (chip->in_measurement) {
2042 unsigned int curp = __apu_get_register(chip, chip->measure_apu, 5);
2043 if (curp < chip->measure_lastpos)
2044 chip->measure_count++;
2045 chip->measure_lastpos = curp;
2046 }
2047 }
2048
2049 return IRQ_HANDLED;
2050}
2051
2052/*
2053 * Mixer stuff
2054 */
2055
2056static int __devinit
2057snd_es1968_mixer(struct es1968 *chip)
2058{
2059 struct snd_ac97_bus *pbus;
2060 struct snd_ac97_template ac97;
2061#ifndef CONFIG_SND_ES1968_INPUT
2062 struct snd_ctl_elem_id elem_id;
2063#endif
2064 int err;
2065 static struct snd_ac97_bus_ops ops = {
2066 .write = snd_es1968_ac97_write,
2067 .read = snd_es1968_ac97_read,
2068 };
2069
2070 if ((err = snd_ac97_bus(chip->card, 0, &ops, NULL, &pbus)) < 0)
2071 return err;
2072 pbus->no_vra = 1; /* ES1968 doesn't need VRA */
2073
2074 memset(&ac97, 0, sizeof(ac97));
2075 ac97.private_data = chip;
2076 if ((err = snd_ac97_mixer(pbus, &ac97, &chip->ac97)) < 0)
2077 return err;
2078
2079#ifndef CONFIG_SND_ES1968_INPUT
2080 /* attach master switch / volumes for h/w volume control */
2081 memset(&elem_id, 0, sizeof(elem_id));
2082 elem_id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
2083 strcpy(elem_id.name, "Master Playback Switch");
2084 chip->master_switch = snd_ctl_find_id(chip->card, &elem_id);
2085 memset(&elem_id, 0, sizeof(elem_id));
2086 elem_id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
2087 strcpy(elem_id.name, "Master Playback Volume");
2088 chip->master_volume = snd_ctl_find_id(chip->card, &elem_id);
2089#endif
2090
2091 return 0;
2092}
2093
2094/*
2095 * reset ac97 codec
2096 */
2097
2098static void snd_es1968_ac97_reset(struct es1968 *chip)
2099{
2100 unsigned long ioaddr = chip->io_port;
2101
2102 unsigned short save_ringbus_a;
2103 unsigned short save_68;
2104 unsigned short w;
2105 unsigned int vend;
2106
2107 /* save configuration */
2108 save_ringbus_a = inw(ioaddr + 0x36);
2109
2110 //outw(inw(ioaddr + 0x38) & 0xfffc, ioaddr + 0x38); /* clear second codec id? */
2111 /* set command/status address i/o to 1st codec */
2112 outw(inw(ioaddr + 0x3a) & 0xfffc, ioaddr + 0x3a);
2113 outw(inw(ioaddr + 0x3c) & 0xfffc, ioaddr + 0x3c);
2114
2115 /* disable ac link */
2116 outw(0x0000, ioaddr + 0x36);
2117 save_68 = inw(ioaddr + 0x68);
2118 pci_read_config_word(chip->pci, 0x58, &w); /* something magical with gpio and bus arb. */
2119 pci_read_config_dword(chip->pci, PCI_SUBSYSTEM_VENDOR_ID, &vend);
2120 if (w & 1)
2121 save_68 |= 0x10;
2122 outw(0xfffe, ioaddr + 0x64); /* unmask gpio 0 */
2123 outw(0x0001, ioaddr + 0x68); /* gpio write */
2124 outw(0x0000, ioaddr + 0x60); /* write 0 to gpio 0 */
2125 udelay(20);
2126 outw(0x0001, ioaddr + 0x60); /* write 1 to gpio 1 */
2127 msleep(20);
2128
2129 outw(save_68 | 0x1, ioaddr + 0x68); /* now restore .. */
2130 outw((inw(ioaddr + 0x38) & 0xfffc) | 0x1, ioaddr + 0x38);
2131 outw((inw(ioaddr + 0x3a) & 0xfffc) | 0x1, ioaddr + 0x3a);
2132 outw((inw(ioaddr + 0x3c) & 0xfffc) | 0x1, ioaddr + 0x3c);
2133
2134 /* now the second codec */
2135 /* disable ac link */
2136 outw(0x0000, ioaddr + 0x36);
2137 outw(0xfff7, ioaddr + 0x64); /* unmask gpio 3 */
2138 save_68 = inw(ioaddr + 0x68);
2139 outw(0x0009, ioaddr + 0x68); /* gpio write 0 & 3 ?? */
2140 outw(0x0001, ioaddr + 0x60); /* write 1 to gpio */
2141 udelay(20);
2142 outw(0x0009, ioaddr + 0x60); /* write 9 to gpio */
2143 msleep(500);
2144 //outw(inw(ioaddr + 0x38) & 0xfffc, ioaddr + 0x38);
2145 outw(inw(ioaddr + 0x3a) & 0xfffc, ioaddr + 0x3a);
2146 outw(inw(ioaddr + 0x3c) & 0xfffc, ioaddr + 0x3c);
2147
2148#if 0 /* the loop here needs to be much better if we want it.. */
2149 snd_printk(KERN_INFO "trying software reset\n");
2150 /* try and do a software reset */
2151 outb(0x80 | 0x7c, ioaddr + 0x30);
2152 for (w = 0;; w++) {
2153 if ((inw(ioaddr + 0x30) & 1) == 0) {
2154 if (inb(ioaddr + 0x32) != 0)
2155 break;
2156
2157 outb(0x80 | 0x7d, ioaddr + 0x30);
2158 if (((inw(ioaddr + 0x30) & 1) == 0)
2159 && (inb(ioaddr + 0x32) != 0))
2160 break;
2161 outb(0x80 | 0x7f, ioaddr + 0x30);
2162 if (((inw(ioaddr + 0x30) & 1) == 0)
2163 && (inb(ioaddr + 0x32) != 0))
2164 break;
2165 }
2166
2167 if (w > 10000) {
2168 outb(inb(ioaddr + 0x37) | 0x08, ioaddr + 0x37); /* do a software reset */
2169 msleep(500); /* oh my.. */
2170 outb(inb(ioaddr + 0x37) & ~0x08,
2171 ioaddr + 0x37);
2172 udelay(1);
2173 outw(0x80, ioaddr + 0x30);
2174 for (w = 0; w < 10000; w++) {
2175 if ((inw(ioaddr + 0x30) & 1) == 0)
2176 break;
2177 }
2178 }
2179 }
2180#endif
2181 if (vend == NEC_VERSA_SUBID1 || vend == NEC_VERSA_SUBID2) {
2182 /* turn on external amp? */
2183 outw(0xf9ff, ioaddr + 0x64);
2184 outw(inw(ioaddr + 0x68) | 0x600, ioaddr + 0x68);
2185 outw(0x0209, ioaddr + 0x60);
2186 }
2187
2188 /* restore.. */
2189 outw(save_ringbus_a, ioaddr + 0x36);
2190
2191 /* Turn on the 978 docking chip.
2192 First frob the "master output enable" bit,
2193 then set most of the playback volume control registers to max. */
2194 outb(inb(ioaddr+0xc0)|(1<<5), ioaddr+0xc0);
2195 outb(0xff, ioaddr+0xc3);
2196 outb(0xff, ioaddr+0xc4);
2197 outb(0xff, ioaddr+0xc6);
2198 outb(0xff, ioaddr+0xc8);
2199 outb(0x3f, ioaddr+0xcf);
2200 outb(0x3f, ioaddr+0xd0);
2201}
2202
2203static void snd_es1968_reset(struct es1968 *chip)
2204{
2205 /* Reset */
2206 outw(ESM_RESET_MAESTRO | ESM_RESET_DIRECTSOUND,
2207 chip->io_port + ESM_PORT_HOST_IRQ);
2208 udelay(10);
2209 outw(0x0000, chip->io_port + ESM_PORT_HOST_IRQ);
2210 udelay(10);
2211}
2212
2213/*
2214 * initialize maestro chip
2215 */
2216static void snd_es1968_chip_init(struct es1968 *chip)
2217{
2218 struct pci_dev *pci = chip->pci;
2219 int i;
2220 unsigned long iobase = chip->io_port;
2221 u16 w;
2222 u32 n;
2223
2224 /* We used to muck around with pci config space that
2225 * we had no business messing with. We don't know enough
2226 * about the machine to know which DMA mode is appropriate,
2227 * etc. We were guessing wrong on some machines and making
2228 * them unhappy. We now trust in the BIOS to do things right,
2229 * which almost certainly means a new host of problems will
2230 * arise with broken BIOS implementations. screw 'em.
2231 * We're already intolerant of machines that don't assign
2232 * IRQs.
2233 */
2234
2235 /* Config Reg A */
2236 pci_read_config_word(pci, ESM_CONFIG_A, &w);
2237
2238 w &= ~DMA_CLEAR; /* Clear DMA bits */
2239 w &= ~(PIC_SNOOP1 | PIC_SNOOP2); /* Clear Pic Snoop Mode Bits */
2240 w &= ~SAFEGUARD; /* Safeguard off */
2241 w |= POST_WRITE; /* Posted write */
2242 w |= PCI_TIMING; /* PCI timing on */
2243 /* XXX huh? claims to be reserved.. */
2244 w &= ~SWAP_LR; /* swap left/right
2245 seems to only have effect on SB
2246 Emulation */
2247 w &= ~SUBTR_DECODE; /* Subtractive decode off */
2248
2249 pci_write_config_word(pci, ESM_CONFIG_A, w);
2250
2251 /* Config Reg B */
2252
2253 pci_read_config_word(pci, ESM_CONFIG_B, &w);
2254
2255 w &= ~(1 << 15); /* Turn off internal clock multiplier */
2256 /* XXX how do we know which to use? */
2257 w &= ~(1 << 14); /* External clock */
2258
2259 w &= ~SPDIF_CONFB; /* disable S/PDIF output */
2260 w |= HWV_CONFB; /* HWV on */
2261 w |= DEBOUNCE; /* Debounce off: easier to push the HW buttons */
2262 w &= ~GPIO_CONFB; /* GPIO 4:5 */
2263 w |= CHI_CONFB; /* Disconnect from the CHI. Enabling this made a dell 7500 work. */
2264 w &= ~IDMA_CONFB; /* IDMA off (undocumented) */
2265 w &= ~MIDI_FIX; /* MIDI fix off (undoc) */
2266 w &= ~(1 << 1); /* reserved, always write 0 */
2267 w &= ~IRQ_TO_ISA; /* IRQ to ISA off (undoc) */
2268
2269 pci_write_config_word(pci, ESM_CONFIG_B, w);
2270
2271 /* DDMA off */
2272
2273 pci_read_config_word(pci, ESM_DDMA, &w);
2274 w &= ~(1 << 0);
2275 pci_write_config_word(pci, ESM_DDMA, w);
2276
2277 /*
2278 * Legacy mode
2279 */
2280
2281 pci_read_config_word(pci, ESM_LEGACY_AUDIO_CONTROL, &w);
2282
2283 w |= ESS_DISABLE_AUDIO; /* Disable Legacy Audio */
2284 w &= ~ESS_ENABLE_SERIAL_IRQ; /* Disable SIRQ */
2285 w &= ~(0x1f); /* disable mpu irq/io, game port, fm, SB */
2286
2287 pci_write_config_word(pci, ESM_LEGACY_AUDIO_CONTROL, w);
2288
2289 /* Set up 978 docking control chip. */
2290 pci_read_config_word(pci, 0x58, &w);
2291 w|=1<<2; /* Enable 978. */
2292 w|=1<<3; /* Turn on 978 hardware volume control. */
2293 w&=~(1<<11); /* Turn on 978 mixer volume control. */
2294 pci_write_config_word(pci, 0x58, w);
2295
2296 /* Sound Reset */
2297
2298 snd_es1968_reset(chip);
2299
2300 /*
2301 * Ring Bus Setup
2302 */
2303
2304 /* setup usual 0x34 stuff.. 0x36 may be chip specific */
2305 outw(0xC090, iobase + ESM_RING_BUS_DEST); /* direct sound, stereo */
2306 udelay(20);
2307 outw(0x3000, iobase + ESM_RING_BUS_CONTR_A); /* enable ringbus/serial */
2308 udelay(20);
2309
2310 /*
2311 * Reset the CODEC
2312 */
2313
2314 snd_es1968_ac97_reset(chip);
2315
2316 /* Ring Bus Control B */
2317
2318 n = inl(iobase + ESM_RING_BUS_CONTR_B);
2319 n &= ~RINGB_EN_SPDIF; /* SPDIF off */
2320 //w |= RINGB_EN_2CODEC; /* enable 2nd codec */
2321 outl(n, iobase + ESM_RING_BUS_CONTR_B);
2322
2323 /* Set hardware volume control registers to midpoints.
2324 We can tell which button was pushed based on how they change. */
2325 outb(0x88, iobase+0x1c);
2326 outb(0x88, iobase+0x1d);
2327 outb(0x88, iobase+0x1e);
2328 outb(0x88, iobase+0x1f);
2329
2330 /* it appears some maestros (dell 7500) only work if these are set,
2331 regardless of wether we use the assp or not. */
2332
2333 outb(0, iobase + ASSP_CONTROL_B);
2334 outb(3, iobase + ASSP_CONTROL_A); /* M: Reserved bits... */
2335 outb(0, iobase + ASSP_CONTROL_C); /* M: Disable ASSP, ASSP IRQ's and FM Port */
2336
2337 /*
2338 * set up wavecache
2339 */
2340 for (i = 0; i < 16; i++) {
2341 /* Write 0 into the buffer area 0x1E0->1EF */
2342 outw(0x01E0 + i, iobase + WC_INDEX);
2343 outw(0x0000, iobase + WC_DATA);
2344
2345 /* The 1.10 test program seem to write 0 into the buffer area
2346 * 0x1D0-0x1DF too.*/
2347 outw(0x01D0 + i, iobase + WC_INDEX);
2348 outw(0x0000, iobase + WC_DATA);
2349 }
2350 wave_set_register(chip, IDR7_WAVE_ROMRAM,
2351 (wave_get_register(chip, IDR7_WAVE_ROMRAM) & 0xFF00));
2352 wave_set_register(chip, IDR7_WAVE_ROMRAM,
2353 wave_get_register(chip, IDR7_WAVE_ROMRAM) | 0x100);
2354 wave_set_register(chip, IDR7_WAVE_ROMRAM,
2355 wave_get_register(chip, IDR7_WAVE_ROMRAM) & ~0x200);
2356 wave_set_register(chip, IDR7_WAVE_ROMRAM,
2357 wave_get_register(chip, IDR7_WAVE_ROMRAM) | ~0x400);
2358
2359
2360 maestro_write(chip, IDR2_CRAM_DATA, 0x0000);
2361 /* Now back to the DirectSound stuff */
2362 /* audio serial configuration.. ? */
2363 maestro_write(chip, 0x08, 0xB004);
2364 maestro_write(chip, 0x09, 0x001B);
2365 maestro_write(chip, 0x0A, 0x8000);
2366 maestro_write(chip, 0x0B, 0x3F37);
2367 maestro_write(chip, 0x0C, 0x0098);
2368
2369 /* parallel in, has something to do with recording :) */
2370 maestro_write(chip, 0x0C,
2371 (maestro_read(chip, 0x0C) & ~0xF000) | 0x8000);
2372 /* parallel out */
2373 maestro_write(chip, 0x0C,
2374 (maestro_read(chip, 0x0C) & ~0x0F00) | 0x0500);
2375
2376 maestro_write(chip, 0x0D, 0x7632);
2377
2378 /* Wave cache control on - test off, sg off,
2379 enable, enable extra chans 1Mb */
2380
2381 w = inw(iobase + WC_CONTROL);
2382
2383 w &= ~0xFA00; /* Seems to be reserved? I don't know */
2384 w |= 0xA000; /* reserved... I don't know */
2385 w &= ~0x0200; /* Channels 56,57,58,59 as Extra Play,Rec Channel enable
2386 Seems to crash the Computer if enabled... */
2387 w |= 0x0100; /* Wave Cache Operation Enabled */
2388 w |= 0x0080; /* Channels 60/61 as Placback/Record enabled */
2389 w &= ~0x0060; /* Clear Wavtable Size */
2390 w |= 0x0020; /* Wavetable Size : 1MB */
2391 /* Bit 4 is reserved */
2392 w &= ~0x000C; /* DMA Stuff? I don't understand what the datasheet means */
2393 /* Bit 1 is reserved */
2394 w &= ~0x0001; /* Test Mode off */
2395
2396 outw(w, iobase + WC_CONTROL);
2397
2398 /* Now clear the APU control ram */
2399 for (i = 0; i < NR_APUS; i++) {
2400 for (w = 0; w < NR_APU_REGS; w++)
2401 apu_set_register(chip, i, w, 0);
2402
2403 }
2404}
2405
2406/* Enable IRQ's */
2407static void snd_es1968_start_irq(struct es1968 *chip)
2408{
2409 unsigned short w;
2410 w = ESM_HIRQ_DSIE | ESM_HIRQ_HW_VOLUME;
2411 if (chip->rmidi)
2412 w |= ESM_HIRQ_MPU401;
2413 outb(w, chip->io_port + 0x1A);
2414 outw(w, chip->io_port + ESM_PORT_HOST_IRQ);
2415}
2416
2417#ifdef CONFIG_PM
2418/*
2419 * PM support
2420 */
2421static int es1968_suspend(struct pci_dev *pci, pm_message_t state)
2422{
2423 struct snd_card *card = pci_get_drvdata(pci);
2424 struct es1968 *chip = card->private_data;
2425
2426 if (! chip->do_pm)
2427 return 0;
2428
2429 chip->in_suspend = 1;
2430 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
2431 snd_pcm_suspend_all(chip->pcm);
2432 snd_ac97_suspend(chip->ac97);
2433 snd_es1968_bob_stop(chip);
2434
2435 pci_disable_device(pci);
2436 pci_save_state(pci);
2437 pci_set_power_state(pci, pci_choose_state(pci, state));
2438 return 0;
2439}
2440
2441static int es1968_resume(struct pci_dev *pci)
2442{
2443 struct snd_card *card = pci_get_drvdata(pci);
2444 struct es1968 *chip = card->private_data;
2445 struct esschan *es;
2446
2447 if (! chip->do_pm)
2448 return 0;
2449
2450 /* restore all our config */
2451 pci_set_power_state(pci, PCI_D0);
2452 pci_restore_state(pci);
2453 if (pci_enable_device(pci) < 0) {
2454 printk(KERN_ERR "es1968: pci_enable_device failed, "
2455 "disabling device\n");
2456 snd_card_disconnect(card);
2457 return -EIO;
2458 }
2459 pci_set_master(pci);
2460
2461 snd_es1968_chip_init(chip);
2462
2463 /* need to restore the base pointers.. */
2464 if (chip->dma.addr) {
2465 /* set PCMBAR */
2466 wave_set_register(chip, 0x01FC, chip->dma.addr >> 12);
2467 }
2468
2469 snd_es1968_start_irq(chip);
2470
2471 /* restore ac97 state */
2472 snd_ac97_resume(chip->ac97);
2473
2474 list_for_each_entry(es, &chip->substream_list, list, struct esschan) {
2475 switch (es->mode) {
2476 case ESM_MODE_PLAY:
2477 snd_es1968_playback_setup(chip, es, es->substream->runtime);
2478 break;
2479 case ESM_MODE_CAPTURE:
2480 snd_es1968_capture_setup(chip, es, es->substream->runtime);
2481 break;
2482 }
2483 }
2484
2485 /* start timer again */
2486 if (chip->bobclient)
2487 snd_es1968_bob_start(chip);
2488
2489 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
2490 chip->in_suspend = 0;
2491 return 0;
2492}
2493#endif /* CONFIG_PM */
2494
2495#ifdef SUPPORT_JOYSTICK
2496#define JOYSTICK_ADDR 0x200
2497static int __devinit snd_es1968_create_gameport(struct es1968 *chip, int dev)
2498{
2499 struct gameport *gp;
2500 struct resource *r;
2501 u16 val;
2502
2503 if (!joystick[dev])
2504 return -ENODEV;
2505
2506 r = request_region(JOYSTICK_ADDR, 8, "ES1968 gameport");
2507 if (!r)
2508 return -EBUSY;
2509
2510 chip->gameport = gp = gameport_allocate_port();
2511 if (!gp) {
2512 printk(KERN_ERR "es1968: cannot allocate memory for gameport\n");
2513 release_and_free_resource(r);
2514 return -ENOMEM;
2515 }
2516
2517 pci_read_config_word(chip->pci, ESM_LEGACY_AUDIO_CONTROL, &val);
2518 pci_write_config_word(chip->pci, ESM_LEGACY_AUDIO_CONTROL, val | 0x04);
2519
2520 gameport_set_name(gp, "ES1968 Gameport");
2521 gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci));
2522 gameport_set_dev_parent(gp, &chip->pci->dev);
2523 gp->io = JOYSTICK_ADDR;
2524 gameport_set_port_data(gp, r);
2525
2526 gameport_register_port(gp);
2527
2528 return 0;
2529}
2530
2531static void snd_es1968_free_gameport(struct es1968 *chip)
2532{
2533 if (chip->gameport) {
2534 struct resource *r = gameport_get_port_data(chip->gameport);
2535
2536 gameport_unregister_port(chip->gameport);
2537 chip->gameport = NULL;
2538
2539 release_and_free_resource(r);
2540 }
2541}
2542#else
2543static inline int snd_es1968_create_gameport(struct es1968 *chip, int dev) { return -ENOSYS; }
2544static inline void snd_es1968_free_gameport(struct es1968 *chip) { }
2545#endif
2546
2547#ifdef CONFIG_SND_ES1968_INPUT
2548static int __devinit snd_es1968_input_register(struct es1968 *chip)
2549{
2550 struct input_dev *input_dev;
2551 int err;
2552
2553 input_dev = input_allocate_device();
2554 if (!input_dev)
2555 return -ENOMEM;
2556
2557 snprintf(chip->phys, sizeof(chip->phys), "pci-%s/input0",
2558 pci_name(chip->pci));
2559
2560 input_dev->name = chip->card->driver;
2561 input_dev->phys = chip->phys;
2562 input_dev->id.bustype = BUS_PCI;
2563 input_dev->id.vendor = chip->pci->vendor;
2564 input_dev->id.product = chip->pci->device;
2565 input_dev->dev.parent = &chip->pci->dev;
2566
2567 __set_bit(EV_KEY, input_dev->evbit);
2568 __set_bit(KEY_MUTE, input_dev->keybit);
2569 __set_bit(KEY_VOLUMEDOWN, input_dev->keybit);
2570 __set_bit(KEY_VOLUMEUP, input_dev->keybit);
2571
2572 err = input_register_device(input_dev);
2573 if (err) {
2574 input_free_device(input_dev);
2575 return err;
2576 }
2577
2578 chip->input_dev = input_dev;
2579 return 0;
2580}
2581#endif /* CONFIG_SND_ES1968_INPUT */
2582
2583static int snd_es1968_free(struct es1968 *chip)
2584{
2585#ifdef CONFIG_SND_ES1968_INPUT
2586 if (chip->input_dev)
2587 input_unregister_device(chip->input_dev);
2588#endif
2589
2590 if (chip->io_port) {
2591 if (chip->irq >= 0)
2592 synchronize_irq(chip->irq);
2593 outw(1, chip->io_port + 0x04); /* clear WP interrupts */
2594 outw(0, chip->io_port + ESM_PORT_HOST_IRQ); /* disable IRQ */
2595 }
2596
2597 if (chip->irq >= 0)
2598 free_irq(chip->irq, chip);
2599 snd_es1968_free_gameport(chip);
2600 pci_release_regions(chip->pci);
2601 pci_disable_device(chip->pci);
2602 kfree(chip);
2603 return 0;
2604}
2605
2606static int snd_es1968_dev_free(struct snd_device *device)
2607{
2608 struct es1968 *chip = device->device_data;
2609 return snd_es1968_free(chip);
2610}
2611
2612struct ess_device_list {
2613 unsigned short type; /* chip type */
2614 unsigned short vendor; /* subsystem vendor id */
2615};
2616
2617static struct ess_device_list pm_whitelist[] __devinitdata = {
2618 { TYPE_MAESTRO2E, 0x0e11 }, /* Compaq Armada */
2619 { TYPE_MAESTRO2E, 0x1028 },
2620 { TYPE_MAESTRO2E, 0x103c },
2621 { TYPE_MAESTRO2E, 0x1179 },
2622 { TYPE_MAESTRO2E, 0x14c0 }, /* HP omnibook 4150 */
2623 { TYPE_MAESTRO2E, 0x1558 },
2624};
2625
2626static struct ess_device_list mpu_blacklist[] __devinitdata = {
2627 { TYPE_MAESTRO2, 0x125d },
2628};
2629
2630static int __devinit snd_es1968_create(struct snd_card *card,
2631 struct pci_dev *pci,
2632 int total_bufsize,
2633 int play_streams,
2634 int capt_streams,
2635 int chip_type,
2636 int do_pm,
2637 struct es1968 **chip_ret)
2638{
2639 static struct snd_device_ops ops = {
2640 .dev_free = snd_es1968_dev_free,
2641 };
2642 struct es1968 *chip;
2643 int i, err;
2644
2645 *chip_ret = NULL;
2646
2647 /* enable PCI device */
2648 if ((err = pci_enable_device(pci)) < 0)
2649 return err;
2650 /* check, if we can restrict PCI DMA transfers to 28 bits */
2651 if (pci_set_dma_mask(pci, DMA_BIT_MASK(28)) < 0 ||
2652 pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(28)) < 0) {
2653 snd_printk(KERN_ERR "architecture does not support 28bit PCI busmaster DMA\n");
2654 pci_disable_device(pci);
2655 return -ENXIO;
2656 }
2657
2658 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
2659 if (! chip) {
2660 pci_disable_device(pci);
2661 return -ENOMEM;
2662 }
2663
2664 /* Set Vars */
2665 chip->type = chip_type;
2666 spin_lock_init(&chip->reg_lock);
2667 spin_lock_init(&chip->substream_lock);
2668 INIT_LIST_HEAD(&chip->buf_list);
2669 INIT_LIST_HEAD(&chip->substream_list);
2670 mutex_init(&chip->memory_mutex);
2671#ifndef CONFIG_SND_ES1968_INPUT
2672 spin_lock_init(&chip->ac97_lock);
2673 tasklet_init(&chip->hwvol_tq, es1968_update_hw_volume, (unsigned long)chip);
2674#endif
2675 chip->card = card;
2676 chip->pci = pci;
2677 chip->irq = -1;
2678 chip->total_bufsize = total_bufsize; /* in bytes */
2679 chip->playback_streams = play_streams;
2680 chip->capture_streams = capt_streams;
2681
2682 if ((err = pci_request_regions(pci, "ESS Maestro")) < 0) {
2683 kfree(chip);
2684 pci_disable_device(pci);
2685 return err;
2686 }
2687 chip->io_port = pci_resource_start(pci, 0);
2688 if (request_irq(pci->irq, snd_es1968_interrupt, IRQF_SHARED,
2689 "ESS Maestro", chip)) {
2690 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
2691 snd_es1968_free(chip);
2692 return -EBUSY;
2693 }
2694 chip->irq = pci->irq;
2695
2696 /* Clear Maestro_map */
2697 for (i = 0; i < 32; i++)
2698 chip->maestro_map[i] = 0;
2699
2700 /* Clear Apu Map */
2701 for (i = 0; i < NR_APUS; i++)
2702 chip->apu[i] = ESM_APU_FREE;
2703
2704 /* just to be sure */
2705 pci_set_master(pci);
2706
2707 if (do_pm > 1) {
2708 /* disable power-management if not on the whitelist */
2709 unsigned short vend;
2710 pci_read_config_word(chip->pci, PCI_SUBSYSTEM_VENDOR_ID, &vend);
2711 for (i = 0; i < (int)ARRAY_SIZE(pm_whitelist); i++) {
2712 if (chip->type == pm_whitelist[i].type &&
2713 vend == pm_whitelist[i].vendor) {
2714 do_pm = 1;
2715 break;
2716 }
2717 }
2718 if (do_pm > 1) {
2719 /* not matched; disabling pm */
2720 printk(KERN_INFO "es1968: not attempting power management.\n");
2721 do_pm = 0;
2722 }
2723 }
2724 chip->do_pm = do_pm;
2725
2726 snd_es1968_chip_init(chip);
2727
2728 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
2729 snd_es1968_free(chip);
2730 return err;
2731 }
2732
2733 snd_card_set_dev(card, &pci->dev);
2734
2735 *chip_ret = chip;
2736
2737 return 0;
2738}
2739
2740
2741/*
2742 */
2743static int __devinit snd_es1968_probe(struct pci_dev *pci,
2744 const struct pci_device_id *pci_id)
2745{
2746 static int dev;
2747 struct snd_card *card;
2748 struct es1968 *chip;
2749 unsigned int i;
2750 int err;
2751
2752 if (dev >= SNDRV_CARDS)
2753 return -ENODEV;
2754 if (!enable[dev]) {
2755 dev++;
2756 return -ENOENT;
2757 }
2758
2759 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
2760 if (err < 0)
2761 return err;
2762
2763 if (total_bufsize[dev] < 128)
2764 total_bufsize[dev] = 128;
2765 if (total_bufsize[dev] > 4096)
2766 total_bufsize[dev] = 4096;
2767 if ((err = snd_es1968_create(card, pci,
2768 total_bufsize[dev] * 1024, /* in bytes */
2769 pcm_substreams_p[dev],
2770 pcm_substreams_c[dev],
2771 pci_id->driver_data,
2772 use_pm[dev],
2773 &chip)) < 0) {
2774 snd_card_free(card);
2775 return err;
2776 }
2777 card->private_data = chip;
2778
2779 switch (chip->type) {
2780 case TYPE_MAESTRO2E:
2781 strcpy(card->driver, "ES1978");
2782 strcpy(card->shortname, "ESS ES1978 (Maestro 2E)");
2783 break;
2784 case TYPE_MAESTRO2:
2785 strcpy(card->driver, "ES1968");
2786 strcpy(card->shortname, "ESS ES1968 (Maestro 2)");
2787 break;
2788 case TYPE_MAESTRO:
2789 strcpy(card->driver, "ESM1");
2790 strcpy(card->shortname, "ESS Maestro 1");
2791 break;
2792 }
2793
2794 if ((err = snd_es1968_pcm(chip, 0)) < 0) {
2795 snd_card_free(card);
2796 return err;
2797 }
2798
2799 if ((err = snd_es1968_mixer(chip)) < 0) {
2800 snd_card_free(card);
2801 return err;
2802 }
2803
2804 if (enable_mpu[dev] == 2) {
2805 /* check the black list */
2806 unsigned short vend;
2807 pci_read_config_word(chip->pci, PCI_SUBSYSTEM_VENDOR_ID, &vend);
2808 for (i = 0; i < ARRAY_SIZE(mpu_blacklist); i++) {
2809 if (chip->type == mpu_blacklist[i].type &&
2810 vend == mpu_blacklist[i].vendor) {
2811 enable_mpu[dev] = 0;
2812 break;
2813 }
2814 }
2815 }
2816 if (enable_mpu[dev]) {
2817 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_MPU401,
2818 chip->io_port + ESM_MPU401_PORT,
2819 MPU401_INFO_INTEGRATED,
2820 chip->irq, 0, &chip->rmidi)) < 0) {
2821 printk(KERN_WARNING "es1968: skipping MPU-401 MIDI support..\n");
2822 }
2823 }
2824
2825 snd_es1968_create_gameport(chip, dev);
2826
2827#ifdef CONFIG_SND_ES1968_INPUT
2828 err = snd_es1968_input_register(chip);
2829 if (err)
2830 snd_printk(KERN_WARNING "Input device registration "
2831 "failed with error %i", err);
2832#endif
2833
2834 snd_es1968_start_irq(chip);
2835
2836 chip->clock = clock[dev];
2837 if (! chip->clock)
2838 es1968_measure_clock(chip);
2839
2840 sprintf(card->longname, "%s at 0x%lx, irq %i",
2841 card->shortname, chip->io_port, chip->irq);
2842
2843 if ((err = snd_card_register(card)) < 0) {
2844 snd_card_free(card);
2845 return err;
2846 }
2847 pci_set_drvdata(pci, card);
2848 dev++;
2849 return 0;
2850}
2851
2852static void __devexit snd_es1968_remove(struct pci_dev *pci)
2853{
2854 snd_card_free(pci_get_drvdata(pci));
2855 pci_set_drvdata(pci, NULL);
2856}
2857
2858static struct pci_driver driver = {
2859 .name = "ES1968 (ESS Maestro)",
2860 .id_table = snd_es1968_ids,
2861 .probe = snd_es1968_probe,
2862 .remove = __devexit_p(snd_es1968_remove),
2863#ifdef CONFIG_PM
2864 .suspend = es1968_suspend,
2865 .resume = es1968_resume,
2866#endif
2867};
2868
2869static int __init alsa_card_es1968_init(void)
2870{
2871 return pci_register_driver(&driver);
2872}
2873
2874static void __exit alsa_card_es1968_exit(void)
2875{
2876 pci_unregister_driver(&driver);
2877}
2878
2879module_init(alsa_card_es1968_init)
2880module_exit(alsa_card_es1968_exit)
Note: See TracBrowser for help on using the repository browser.