Blame view

sound/pci/es1968.c 77.8 KB
1a59d1b8e   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
6
7
8
9
10
11
12
13
  /*
   *  Driver for ESS Maestro 1/2/2E Sound Card (started 21.8.99)
   *  Copyright (c) by Matze Braun <MatzeBraun@gmx.de>.
   *                   Takashi Iwai <tiwai@suse.de>
   *                  
   *  Most of the driver code comes from Zach Brown(zab@redhat.com)
   *	Alan Cox OSS Driver
   *  Rewritted from card-es1938.c source.
   *
   *  TODO:
   *   Perhaps Synth
   *
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
   *  Notes from Zach Brown about the driver code
   *
   *  Hardware Description
   *
   *	A working Maestro setup contains the Maestro chip wired to a 
   *	codec or 2.  In the Maestro we have the APUs, the ASSP, and the
   *	Wavecache.  The APUs can be though of as virtual audio routing
   *	channels.  They can take data from a number of sources and perform
   *	basic encodings of the data.  The wavecache is a storehouse for
   *	PCM data.  Typically it deals with PCI and interracts with the
   *	APUs.  The ASSP is a wacky DSP like device that ESS is loth
   *	to release docs on.  Thankfully it isn't required on the Maestro
   *	until you start doing insane things like FM emulation and surround
   *	encoding.  The codecs are almost always AC-97 compliant codecs, 
   *	but it appears that early Maestros may have had PT101 (an ESS
   *	part?) wired to them.  The only real difference in the Maestro
   *	families is external goop like docking capability, memory for
   *	the ASSP, and initialization differences.
   *
   *  Driver Operation
   *
   *	We only drive the APU/Wavecache as typical DACs and drive the
   *	mixers in the codecs.  There are 64 APUs.  We assign 6 to each
   *	/dev/dsp? device.  2 channels for output, and 4 channels for
   *	input.
   *
   *	Each APU can do a number of things, but we only really use
   *	3 basic functions.  For playback we use them to convert PCM
   *	data fetched over PCI by the wavecahche into analog data that
   *	is handed to the codec.  One APU for mono, and a pair for stereo.
   *	When in stereo, the combination of smarts in the APU and Wavecache
   *	decide which wavecache gets the left or right channel.
   *
   *	For record we still use the old overly mono system.  For each in
   *	coming channel the data comes in from the codec, through a 'input'
   *	APU, through another rate converter APU, and then into memory via
   *	the wavecache and PCI.  If its stereo, we mash it back into LRLR in
   *	software.  The pass between the 2 APUs is supposedly what requires us
   *	to have a 512 byte buffer sitting around in wavecache/memory.
   *
   *	The wavecache makes our life even more fun.  First off, it can
   *	only address the first 28 bits of PCI address space, making it
   *	useless on quite a few architectures.  Secondly, its insane.
   *	It claims to fetch from 4 regions of PCI space, each 4 meg in length.
   *	But that doesn't really work.  You can only use 1 region.  So all our
   *	allocations have to be in 4meg of each other.  Booo.  Hiss.
   *	So we have a module parameter, dsps_order, that is the order of
   *	the number of dsps to provide.  All their buffer space is allocated
   *	on open time.  The sonicvibes OSS routines we inherited really want
   *	power of 2 buffers, so we have all those next to each other, then
   *	512 byte regions for the recording wavecaches.  This ends up
   *	wasting quite a bit of memory.  The only fixes I can see would be 
   *	getting a kernel allocator that could work in zones, or figuring out
   *	just how to coerce the WP into doing what we want.
   *
   *	The indirection of the various registers means we have to spinlock
   *	nearly all register accesses.  We have the main register indirection
   *	like the wave cache, maestro registers, etc.  Then we have beasts
   *	like the APU interface that is indirect registers gotten at through
   *	the main maestro indirection.  Ouch.  We spinlock around the actual
   *	ports on a per card basis.  This means spinlock activity at each IO
   *	operation, but the only IO operation clusters are in non critical 
   *	paths and it makes the code far easier to follow.  Interrupts are
   *	blocked while holding the locks because the int handler has to
   *	get at some of them :(.  The mixer interface doesn't, however.
   *	We also have an OSS state lock that is thrown around in a few
   *	places.
   */
6cbbfe1c8   Takashi Iwai   ALSA: Include lin...
82
  #include <linux/io.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
83
84
85
86
  #include <linux/delay.h>
  #include <linux/interrupt.h>
  #include <linux/init.h>
  #include <linux/pci.h>
9d2f928dd   Tobias Klauser   [PATCH] Intruduce...
87
  #include <linux/dma-mapping.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
88
89
  #include <linux/slab.h>
  #include <linux/gameport.h>
65a772172   Paul Gortmaker   sound: fix driver...
90
  #include <linux/module.h>
62932df8f   Ingo Molnar   [ALSA] semaphore ...
91
  #include <linux/mutex.h>
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
92
  #include <linux/input.h>
62932df8f   Ingo Molnar   [ALSA] semaphore ...
93

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94
95
96
97
98
  #include <sound/core.h>
  #include <sound/pcm.h>
  #include <sound/mpu401.h>
  #include <sound/ac97_codec.h>
  #include <sound/initval.h>
1872f5899   Ondrej Zary   ALSA: es1968: add...
99
  #ifdef CONFIG_SND_ES1968_RADIO
d647f0b70   Mauro Carvalho Chehab   [media] include/m...
100
  #include <media/drv-intf/tea575x.h>
1872f5899   Ondrej Zary   ALSA: es1968: add...
101
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
102
103
104
105
106
107
108
109
110
  #define CARD_NAME "ESS Maestro1/2"
  #define DRIVER_NAME "ES1968"
  
  MODULE_DESCRIPTION("ESS Maestro");
  MODULE_LICENSE("GPL");
  MODULE_SUPPORTED_DEVICE("{{ESS,Maestro 2e},"
  		"{ESS,Maestro 2},"
  		"{ESS,Maestro 1},"
  		"{TerraTec,DMX}}");
b2fac0730   Fabian Frederick   ALSA: pci: don't ...
111
  #if IS_REACHABLE(CONFIG_GAMEPORT)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
112
113
114
115
116
  #define SUPPORT_JOYSTICK 1
  #endif
  
  static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;	/* Index 1-MAX */
  static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;	/* ID for this card */
a67ff6a54   Rusty Russell   ALSA: module_para...
117
  static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;	/* Enable this card */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
118
119
120
  static int total_bufsize[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1024 };
  static int pcm_substreams_p[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 4 };
  static int pcm_substreams_c[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1 };
6581f4e74   Takashi Iwai   [ALSA] Remove zer...
121
  static int clock[SNDRV_CARDS];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
122
123
124
  static int use_pm[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
  static int enable_mpu[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
  #ifdef SUPPORT_JOYSTICK
a67ff6a54   Rusty Russell   ALSA: module_para...
125
  static bool joystick[SNDRV_CARDS];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
126
  #endif
d4ecc83b7   Hans Verkuil   [media] tea575x-t...
127
  static int radio_nr[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = -1};
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
  
  module_param_array(index, int, NULL, 0444);
  MODULE_PARM_DESC(index, "Index value for " CARD_NAME " soundcard.");
  module_param_array(id, charp, NULL, 0444);
  MODULE_PARM_DESC(id, "ID string for " CARD_NAME " soundcard.");
  module_param_array(enable, bool, NULL, 0444);
  MODULE_PARM_DESC(enable, "Enable " CARD_NAME " soundcard.");
  module_param_array(total_bufsize, int, NULL, 0444);
  MODULE_PARM_DESC(total_bufsize, "Total buffer size in kB.");
  module_param_array(pcm_substreams_p, int, NULL, 0444);
  MODULE_PARM_DESC(pcm_substreams_p, "PCM Playback substreams for " CARD_NAME " soundcard.");
  module_param_array(pcm_substreams_c, int, NULL, 0444);
  MODULE_PARM_DESC(pcm_substreams_c, "PCM Capture substreams for " CARD_NAME " soundcard.");
  module_param_array(clock, int, NULL, 0444);
  MODULE_PARM_DESC(clock, "Clock on " CARD_NAME " soundcard.  (0 = auto-detect)");
  module_param_array(use_pm, int, NULL, 0444);
  MODULE_PARM_DESC(use_pm, "Toggle power-management.  (0 = off, 1 = on, 2 = auto)");
  module_param_array(enable_mpu, int, NULL, 0444);
  MODULE_PARM_DESC(enable_mpu, "Enable MPU401.  (0 = off, 1 = on, 2 = auto)");
  #ifdef SUPPORT_JOYSTICK
  module_param_array(joystick, bool, NULL, 0444);
  MODULE_PARM_DESC(joystick, "Enable joystick.");
  #endif
d4ecc83b7   Hans Verkuil   [media] tea575x-t...
151
152
  module_param_array(radio_nr, int, NULL, 0444);
  MODULE_PARM_DESC(radio_nr, "Radio device numbers");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
153

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
  #define NR_APUS			64
  #define NR_APU_REGS		16
  
  /* NEC Versas ? */
  #define NEC_VERSA_SUBID1	0x80581033
  #define NEC_VERSA_SUBID2	0x803c1033
  
  /* Mode Flags */
  #define ESS_FMT_STEREO     	0x01
  #define ESS_FMT_16BIT      	0x02
  
  #define DAC_RUNNING		1
  #define ADC_RUNNING		2
  
  /* Values for the ESM_LEGACY_AUDIO_CONTROL */
607da7f83   Rene Herman   [ALSA] es1968 - F...
169
  #define ESS_DISABLE_AUDIO	0x8000
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
  #define ESS_ENABLE_SERIAL_IRQ	0x4000
  #define IO_ADRESS_ALIAS		0x0020
  #define MPU401_IRQ_ENABLE	0x0010
  #define MPU401_IO_ENABLE	0x0008
  #define GAME_IO_ENABLE		0x0004
  #define FM_IO_ENABLE		0x0002
  #define SB_IO_ENABLE		0x0001
  
  /* Values for the ESM_CONFIG_A */
  
  #define PIC_SNOOP1		0x4000
  #define PIC_SNOOP2		0x2000
  #define SAFEGUARD		0x0800
  #define DMA_CLEAR		0x0700
  #define DMA_DDMA		0x0000
  #define DMA_TDMA		0x0100
  #define DMA_PCPCI		0x0200
  #define POST_WRITE		0x0080
607da7f83   Rene Herman   [ALSA] es1968 - F...
188
  #define PCI_TIMING		0x0040
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
  #define SWAP_LR			0x0020
  #define SUBTR_DECODE		0x0002
  
  /* Values for the ESM_CONFIG_B */
  
  #define SPDIF_CONFB		0x0100
  #define HWV_CONFB		0x0080
  #define DEBOUNCE		0x0040
  #define GPIO_CONFB		0x0020
  #define CHI_CONFB		0x0010
  #define IDMA_CONFB		0x0008	/*undoc */
  #define MIDI_FIX		0x0004	/*undoc */
  #define IRQ_TO_ISA		0x0001	/*undoc */
  
  /* Values for Ring Bus Control B */
  #define	RINGB_2CODEC_ID_MASK	0x0003
  #define RINGB_DIS_VALIDATION	0x0008
  #define RINGB_EN_SPDIF		0x0010
  #define	RINGB_EN_2CODEC		0x0020
  #define RINGB_SING_BIT_DUAL	0x0040
b595076a1   Uwe Kleine-König   tree-wide: fix co...
209
  /* ****Port Addresses**** */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
  
  /*   Write & Read */
  #define ESM_INDEX		0x02
  #define ESM_DATA		0x00
  
  /*   AC97 + RingBus */
  #define ESM_AC97_INDEX		0x30
  #define	ESM_AC97_DATA		0x32
  #define ESM_RING_BUS_DEST	0x34
  #define ESM_RING_BUS_CONTR_A	0x36
  #define ESM_RING_BUS_CONTR_B	0x38
  #define ESM_RING_BUS_SDO	0x3A
  
  /*   WaveCache*/
  #define WC_INDEX		0x10
  #define WC_DATA			0x12
  #define WC_CONTROL		0x14
  
  /*   ASSP*/
  #define ASSP_INDEX		0x80
  #define ASSP_MEMORY		0x82
  #define ASSP_DATA		0x84
  #define ASSP_CONTROL_A		0xA2
  #define ASSP_CONTROL_B		0xA4
  #define ASSP_CONTROL_C		0xA6
  #define ASSP_HOSTW_INDEX	0xA8
  #define ASSP_HOSTW_DATA		0xAA
  #define ASSP_HOSTW_IRQ		0xAC
  /* Midi */
  #define ESM_MPU401_PORT		0x98
  /* Others */
  #define ESM_PORT_HOST_IRQ	0x18
  
  #define IDR0_DATA_PORT		0x00
  #define IDR1_CRAM_POINTER	0x01
  #define IDR2_CRAM_DATA		0x02
  #define IDR3_WAVE_DATA		0x03
  #define IDR4_WAVE_PTR_LOW	0x04
  #define IDR5_WAVE_PTR_HI	0x05
  #define IDR6_TIMER_CTRL		0x06
  #define IDR7_WAVE_ROMRAM	0x07
  
  #define WRITEABLE_MAP		0xEFFFFF
  #define READABLE_MAP		0x64003F
  
  /* PCI Register */
  
  #define ESM_LEGACY_AUDIO_CONTROL 0x40
  #define ESM_ACPI_COMMAND	0x54
  #define ESM_CONFIG_A		0x50
  #define ESM_CONFIG_B		0x52
  #define ESM_DDMA		0x60
  
  /* Bob Bits */
  #define ESM_BOB_ENABLE		0x0001
  #define ESM_BOB_START		0x0001
  
  /* Host IRQ Control Bits */
  #define ESM_RESET_MAESTRO	0x8000
  #define ESM_RESET_DIRECTSOUND   0x4000
  #define ESM_HIRQ_ClkRun		0x0100
  #define ESM_HIRQ_HW_VOLUME	0x0040
  #define ESM_HIRQ_HARPO		0x0030	/* What's that? */
  #define ESM_HIRQ_ASSP		0x0010
  #define	ESM_HIRQ_DSIE		0x0004
  #define ESM_HIRQ_MPU401		0x0002
  #define ESM_HIRQ_SB		0x0001
  
  /* Host IRQ Status Bits */
  #define ESM_MPU401_IRQ		0x02
  #define ESM_SB_IRQ		0x01
  #define ESM_SOUND_IRQ		0x04
  #define	ESM_ASSP_IRQ		0x10
  #define ESM_HWVOL_IRQ		0x40
  
  #define ESS_SYSCLK		50000000
  #define ESM_BOB_FREQ 		200
  #define ESM_BOB_FREQ_MAX	800
  
  #define ESM_FREQ_ESM1  		(49152000L / 1024L)	/* default rate 48000 */
  #define ESM_FREQ_ESM2  		(50000000L / 1024L)
  
  /* APU Modes: reg 0x00, bit 4-7 */
  #define ESM_APU_MODE_SHIFT	4
  #define ESM_APU_MODE_MASK	(0xf << 4)
  #define	ESM_APU_OFF		0x00
  #define	ESM_APU_16BITLINEAR	0x01	/* 16-Bit Linear Sample Player */
  #define	ESM_APU_16BITSTEREO	0x02	/* 16-Bit Stereo Sample Player */
  #define	ESM_APU_8BITLINEAR	0x03	/* 8-Bit Linear Sample Player */
  #define	ESM_APU_8BITSTEREO	0x04	/* 8-Bit Stereo Sample Player */
  #define	ESM_APU_8BITDIFF	0x05	/* 8-Bit Differential Sample Playrer */
  #define	ESM_APU_DIGITALDELAY	0x06	/* Digital Delay Line */
  #define	ESM_APU_DUALTAP		0x07	/* Dual Tap Reader */
  #define	ESM_APU_CORRELATOR	0x08	/* Correlator */
  #define	ESM_APU_INPUTMIXER	0x09	/* Input Mixer */
  #define	ESM_APU_WAVETABLE	0x0A	/* Wave Table Mode */
  #define	ESM_APU_SRCONVERTOR	0x0B	/* Sample Rate Convertor */
  #define	ESM_APU_16BITPINGPONG	0x0C	/* 16-Bit Ping-Pong Sample Player */
  #define	ESM_APU_RESERVED1	0x0D	/* Reserved 1 */
  #define	ESM_APU_RESERVED2	0x0E	/* Reserved 2 */
  #define	ESM_APU_RESERVED3	0x0F	/* Reserved 3 */
  
  /* reg 0x00 */
  #define ESM_APU_FILTER_Q_SHIFT		0
  #define ESM_APU_FILTER_Q_MASK		(3 << 0)
  /* APU Filtey Q Control */
  #define ESM_APU_FILTER_LESSQ	0x00
  #define ESM_APU_FILTER_MOREQ	0x03
  
  #define ESM_APU_FILTER_TYPE_SHIFT	2
  #define ESM_APU_FILTER_TYPE_MASK	(3 << 2)
  #define ESM_APU_ENV_TYPE_SHIFT		8
  #define ESM_APU_ENV_TYPE_MASK		(3 << 8)
  #define ESM_APU_ENV_STATE_SHIFT		10
  #define ESM_APU_ENV_STATE_MASK		(3 << 10)
  #define ESM_APU_END_CURVE		(1 << 12)
  #define ESM_APU_INT_ON_LOOP		(1 << 13)
  #define ESM_APU_DMA_ENABLE		(1 << 14)
  
  /* reg 0x02 */
  #define ESM_APU_SUBMIX_GROUP_SHIRT	0
  #define ESM_APU_SUBMIX_GROUP_MASK	(7 << 0)
  #define ESM_APU_SUBMIX_MODE		(1 << 3)
  #define ESM_APU_6dB			(1 << 4)
  #define ESM_APU_DUAL_EFFECT		(1 << 5)
  #define ESM_APU_EFFECT_CHANNELS_SHIFT	6
  #define ESM_APU_EFFECT_CHANNELS_MASK	(3 << 6)
  
  /* reg 0x03 */
  #define ESM_APU_STEP_SIZE_MASK		0x0fff
  
  /* reg 0x04 */
  #define ESM_APU_PHASE_SHIFT		0
  #define ESM_APU_PHASE_MASK		(0xff << 0)
  #define ESM_APU_WAVE64K_PAGE_SHIFT	8	/* most 8bit of wave start offset */
  #define ESM_APU_WAVE64K_PAGE_MASK	(0xff << 8)
  
  /* reg 0x05 - wave start offset */
  /* reg 0x06 - wave end offset */
  /* reg 0x07 - wave loop length */
  
  /* reg 0x08 */
  #define ESM_APU_EFFECT_GAIN_SHIFT	0
  #define ESM_APU_EFFECT_GAIN_MASK	(0xff << 0)
  #define ESM_APU_TREMOLO_DEPTH_SHIFT	8
  #define ESM_APU_TREMOLO_DEPTH_MASK	(0xf << 8)
  #define ESM_APU_TREMOLO_RATE_SHIFT	12
  #define ESM_APU_TREMOLO_RATE_MASK	(0xf << 12)
  
  /* reg 0x09 */
  /* bit 0-7 amplitude dest? */
  #define ESM_APU_AMPLITUDE_NOW_SHIFT	8
  #define ESM_APU_AMPLITUDE_NOW_MASK	(0xff << 8)
  
  /* reg 0x0a */
  #define ESM_APU_POLAR_PAN_SHIFT		0
  #define ESM_APU_POLAR_PAN_MASK		(0x3f << 0)
  /* Polar Pan Control */
  #define	ESM_APU_PAN_CENTER_CIRCLE		0x00
  #define	ESM_APU_PAN_MIDDLE_RADIUS		0x01
  #define	ESM_APU_PAN_OUTSIDE_RADIUS		0x02
  
  #define ESM_APU_FILTER_TUNING_SHIFT	8
  #define ESM_APU_FILTER_TUNING_MASK	(0xff << 8)
  
  /* reg 0x0b */
  #define ESM_APU_DATA_SRC_A_SHIFT	0
  #define ESM_APU_DATA_SRC_A_MASK		(0x7f << 0)
  #define ESM_APU_INV_POL_A		(1 << 7)
  #define ESM_APU_DATA_SRC_B_SHIFT	8
  #define ESM_APU_DATA_SRC_B_MASK		(0x7f << 8)
  #define ESM_APU_INV_POL_B		(1 << 15)
  
  #define ESM_APU_VIBRATO_RATE_SHIFT	0
  #define ESM_APU_VIBRATO_RATE_MASK	(0xf << 0)
  #define ESM_APU_VIBRATO_DEPTH_SHIFT	4
  #define ESM_APU_VIBRATO_DEPTH_MASK	(0xf << 4)
  #define ESM_APU_VIBRATO_PHASE_SHIFT	8
  #define ESM_APU_VIBRATO_PHASE_MASK	(0xff << 8)
  
  /* reg 0x0c */
  #define ESM_APU_RADIUS_SELECT		(1 << 6)
  
  /* APU Filter Control */
  #define	ESM_APU_FILTER_2POLE_LOPASS	0x00
  #define	ESM_APU_FILTER_2POLE_BANDPASS	0x01
  #define	ESM_APU_FILTER_2POLE_HIPASS	0x02
  #define	ESM_APU_FILTER_1POLE_LOPASS	0x03
  #define	ESM_APU_FILTER_1POLE_HIPASS	0x04
  #define	ESM_APU_FILTER_OFF		0x05
  
  /* APU ATFP Type */
  #define	ESM_APU_ATFP_AMPLITUDE			0x00
  #define	ESM_APU_ATFP_TREMELO			0x01
  #define	ESM_APU_ATFP_FILTER			0x02
  #define	ESM_APU_ATFP_PAN			0x03
  
  /* APU ATFP Flags */
  #define	ESM_APU_ATFP_FLG_OFF			0x00
  #define	ESM_APU_ATFP_FLG_WAIT			0x01
  #define	ESM_APU_ATFP_FLG_DONE			0x02
  #define	ESM_APU_ATFP_FLG_INPROCESS		0x03
  
  
  /* capture mixing buffer size */
  #define ESM_MEM_ALIGN		0x1000
  #define ESM_MIXBUF_SIZE		0x400
  
  #define ESM_MODE_PLAY		0
  #define ESM_MODE_CAPTURE	1
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
420

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
421
422
423
424
425
426
427
428
429
430
431
432
433
434
  /* APU use in the driver */
  enum snd_enum_apu_type {
  	ESM_APU_PCM_PLAY,
  	ESM_APU_PCM_CAPTURE,
  	ESM_APU_PCM_RATECONV,
  	ESM_APU_FREE
  };
  
  /* chip type */
  enum {
  	TYPE_MAESTRO, TYPE_MAESTRO2, TYPE_MAESTRO2E
  };
  
  /* DMA Hack! */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
435
  struct esm_memory {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
436
437
438
439
440
441
  	struct snd_dma_buffer buf;
  	int empty;	/* status */
  	struct list_head list;
  };
  
  /* Playback Channel */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
442
  struct esschan {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
443
444
445
446
447
448
  	int running;
  
  	u8 apu[4];
  	u8 apu_mode[4];
  
  	/* playback/capture pcm buffer */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
449
  	struct esm_memory *memory;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
450
  	/* capture mixer buffer */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
451
  	struct esm_memory *mixbuf;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
452
453
454
455
456
457
458
459
460
461
462
463
464
  
  	unsigned int hwptr;	/* current hw pointer in bytes */
  	unsigned int count;	/* sample counter in bytes */
  	unsigned int dma_size;	/* total buffer size in bytes */
  	unsigned int frag_size;	/* period size in bytes */
  	unsigned int wav_shift;
  	u16 base[4];		/* offset for ptr */
  
  	/* stereo/16bit flag */
  	unsigned char fmt;
  	int mode;	/* playback / capture */
  
  	int bob_freq;	/* required timer frequency */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
465
  	struct snd_pcm_substream *substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
466
467
468
  
  	/* linked list */
  	struct list_head list;
c7561cd80   Takashi Iwai   ALSA: PCI: Replac...
469
  #ifdef CONFIG_PM_SLEEP
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
470
471
472
  	u16 wc_map[4];
  #endif
  };
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
473
  struct es1968 {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
  	/* Module Config */
  	int total_bufsize;			/* in bytes */
  
  	int playback_streams, capture_streams;
  
  	unsigned int clock;		/* clock */
  	/* for clock measurement */
  	unsigned int in_measurement: 1;
  	unsigned int measure_apu;
  	unsigned int measure_lastpos;
  	unsigned int measure_count;
  
  	/* buffer */
  	struct snd_dma_buffer dma;
  
  	/* Resources... */
  	int irq;
  	unsigned long io_port;
  	int type;
  	struct pci_dev *pci;
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
494
495
  	struct snd_card *card;
  	struct snd_pcm *pcm;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
496
497
498
499
500
501
  	int do_pm;		/* power-management enabled */
  
  	/* DMA memory block */
  	struct list_head buf_list;
  
  	/* ALSA Stuff */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
502
  	struct snd_ac97 *ac97;
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
503
  	struct snd_rawmidi *rmidi;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
504
505
  
  	spinlock_t reg_lock;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
506
507
508
509
510
511
  	unsigned int in_suspend;
  
  	/* Maestro Stuff */
  	u16 maestro_map[32];
  	int bobclient;		/* active timer instancs */
  	int bob_freq;		/* timer frequency */
62932df8f   Ingo Molnar   [ALSA] semaphore ...
512
  	struct mutex memory_mutex;	/* memory lock */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
513
514
515
516
517
518
519
  
  	/* APU states */
  	unsigned char apu[NR_APUS];
  
  	/* active substreams */
  	struct list_head substream_list;
  	spinlock_t substream_lock;
c7561cd80   Takashi Iwai   ALSA: PCI: Replac...
520
  #ifdef CONFIG_PM_SLEEP
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
521
522
523
524
525
526
  	u16 apu_map[NR_APUS][NR_APU_REGS];
  #endif
  
  #ifdef SUPPORT_JOYSTICK
  	struct gameport *gameport;
  #endif
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
527
528
529
530
531
532
533
  
  #ifdef CONFIG_SND_ES1968_INPUT
  	struct input_dev *input_dev;
  	char phys[64];			/* physical device path */
  #else
  	struct snd_kcontrol *master_switch; /* for h/w volume control */
  	struct snd_kcontrol *master_volume;
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
534
  #endif
30bdee025   Takashi Iwai   ALSA: es1968,maes...
535
  	struct work_struct hwvol_work;
1872f5899   Ondrej Zary   ALSA: es1968: add...
536
537
  
  #ifdef CONFIG_SND_ES1968_RADIO
d4ecc83b7   Hans Verkuil   [media] tea575x-t...
538
  	struct v4l2_device v4l2_dev;
1872f5899   Ondrej Zary   ALSA: es1968: add...
539
  	struct snd_tea575x tea;
8e0d70434   Ondrej Zary   ALSA: es1968: Add...
540
  	unsigned int tea575x_tuner;
1872f5899   Ondrej Zary   ALSA: es1968: add...
541
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
542
  };
7d12e780e   David Howells   IRQ: Maintain reg...
543
  static irqreturn_t snd_es1968_interrupt(int irq, void *dev_id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
544

9baa3c34a   Benoit Taine   PCI: Remove DEFIN...
545
  static const struct pci_device_id snd_es1968_ids[] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
  	/* Maestro 1 */
          { 0x1285, 0x0100, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, TYPE_MAESTRO },
  	/* Maestro 2 */
  	{ 0x125d, 0x1968, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, TYPE_MAESTRO2 },
  	/* Maestro 2E */
          { 0x125d, 0x1978, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_MULTIMEDIA_AUDIO << 8, 0xffff00, TYPE_MAESTRO2E },
  	{ 0, }
  };
  
  MODULE_DEVICE_TABLE(pci, snd_es1968_ids);
  
  /* *********************
     * Low Level Funcs!  *
     *********************/
  
  /* no spinlock */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
562
  static void __maestro_write(struct es1968 *chip, u16 reg, u16 data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
563
564
565
566
567
  {
  	outw(reg, chip->io_port + ESM_INDEX);
  	outw(data, chip->io_port + ESM_DATA);
  	chip->maestro_map[reg] = data;
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
568
  static inline void maestro_write(struct es1968 *chip, u16 reg, u16 data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
569
570
571
572
573
574
575
576
  {
  	unsigned long flags;
  	spin_lock_irqsave(&chip->reg_lock, flags);
  	__maestro_write(chip, reg, data);
  	spin_unlock_irqrestore(&chip->reg_lock, flags);
  }
  
  /* no spinlock */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
577
  static u16 __maestro_read(struct es1968 *chip, u16 reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
578
579
580
581
582
583
584
  {
  	if (READABLE_MAP & (1 << reg)) {
  		outw(reg, chip->io_port + ESM_INDEX);
  		chip->maestro_map[reg] = inw(chip->io_port + ESM_DATA);
  	}
  	return chip->maestro_map[reg];
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
585
  static inline u16 maestro_read(struct es1968 *chip, u16 reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
586
587
588
589
590
591
592
593
  {
  	unsigned long flags;
  	u16 result;
  	spin_lock_irqsave(&chip->reg_lock, flags);
  	result = __maestro_read(chip, reg);
  	spin_unlock_irqrestore(&chip->reg_lock, flags);
  	return result;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
594
  /* Wait for the codec bus to be free */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
595
  static int snd_es1968_ac97_wait(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
596
597
598
599
600
601
602
603
  {
  	int timeout = 100000;
  
  	while (timeout-- > 0) {
  		if (!(inb(chip->io_port + ESM_AC97_INDEX) & 1))
  			return 0;
  		cond_resched();
  	}
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
604
605
  	dev_dbg(chip->card->dev, "ac97 timeout
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
606
607
  	return 1; /* timeout */
  }
4b47c971d   Arjan van de Ven   es1968: fix sleep...
608
609
610
611
612
613
614
615
  static int snd_es1968_ac97_wait_poll(struct es1968 *chip)
  {
  	int timeout = 100000;
  
  	while (timeout-- > 0) {
  		if (!(inb(chip->io_port + ESM_AC97_INDEX) & 1))
  			return 0;
  	}
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
616
617
  	dev_dbg(chip->card->dev, "ac97 timeout
  ");
4b47c971d   Arjan van de Ven   es1968: fix sleep...
618
619
  	return 1; /* timeout */
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
620
  static void snd_es1968_ac97_write(struct snd_ac97 *ac97, unsigned short reg, unsigned short val)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
621
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
622
  	struct es1968 *chip = ac97->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
623
624
625
626
  
  	snd_es1968_ac97_wait(chip);
  
  	/* Write the bus */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
627
628
629
630
  	outw(val, chip->io_port + ESM_AC97_DATA);
  	/*msleep(1);*/
  	outb(reg, chip->io_port + ESM_AC97_INDEX);
  	/*msleep(1);*/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
631
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
632
  static unsigned short snd_es1968_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
633
634
  {
  	u16 data = 0;
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
635
  	struct es1968 *chip = ac97->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
636
637
  
  	snd_es1968_ac97_wait(chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
638
639
  	outb(reg | 0x80, chip->io_port + ESM_AC97_INDEX);
  	/*msleep(1);*/
4b47c971d   Arjan van de Ven   es1968: fix sleep...
640
  	if (!snd_es1968_ac97_wait_poll(chip)) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
641
642
643
  		data = inw(chip->io_port + ESM_AC97_DATA);
  		/*msleep(1);*/
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
644
645
646
647
648
  
  	return data;
  }
  
  /* no spinlock */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
649
  static void apu_index_set(struct es1968 *chip, u16 index)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
650
651
652
653
654
655
  {
  	int i;
  	__maestro_write(chip, IDR1_CRAM_POINTER, index);
  	for (i = 0; i < 1000; i++)
  		if (__maestro_read(chip, IDR1_CRAM_POINTER) == index)
  			return;
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
656
657
  	dev_dbg(chip->card->dev, "APU register select failed. (Timeout)
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
658
659
660
  }
  
  /* no spinlock */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
661
  static void apu_data_set(struct es1968 *chip, u16 data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
662
663
664
665
666
667
668
  {
  	int i;
  	for (i = 0; i < 1000; i++) {
  		if (__maestro_read(chip, IDR0_DATA_PORT) == data)
  			return;
  		__maestro_write(chip, IDR0_DATA_PORT, data);
  	}
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
669
670
  	dev_dbg(chip->card->dev, "APU register set probably failed (Timeout)!
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
671
672
673
  }
  
  /* no spinlock */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
674
  static void __apu_set_register(struct es1968 *chip, u16 channel, u8 reg, u16 data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
675
  {
da3cec35d   Takashi Iwai   ALSA: Kill snd_as...
676
677
  	if (snd_BUG_ON(channel >= NR_APUS))
  		return;
c7561cd80   Takashi Iwai   ALSA: PCI: Replac...
678
  #ifdef CONFIG_PM_SLEEP
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
679
680
681
682
683
684
  	chip->apu_map[channel][reg] = data;
  #endif
  	reg |= (channel << 4);
  	apu_index_set(chip, reg);
  	apu_data_set(chip, data);
  }
858119e15   Arjan van de Ven   [PATCH] Unlinline...
685
  static void apu_set_register(struct es1968 *chip, u16 channel, u8 reg, u16 data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
686
687
688
689
690
691
  {
  	unsigned long flags;
  	spin_lock_irqsave(&chip->reg_lock, flags);
  	__apu_set_register(chip, channel, reg, data);
  	spin_unlock_irqrestore(&chip->reg_lock, flags);
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
692
  static u16 __apu_get_register(struct es1968 *chip, u16 channel, u8 reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
693
  {
da3cec35d   Takashi Iwai   ALSA: Kill snd_as...
694
695
  	if (snd_BUG_ON(channel >= NR_APUS))
  		return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
696
697
698
699
  	reg |= (channel << 4);
  	apu_index_set(chip, reg);
  	return __maestro_read(chip, IDR0_DATA_PORT);
  }
858119e15   Arjan van de Ven   [PATCH] Unlinline...
700
  static u16 apu_get_register(struct es1968 *chip, u16 channel, u8 reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
701
702
703
704
705
706
707
708
709
710
  {
  	unsigned long flags;
  	u16 v;
  	spin_lock_irqsave(&chip->reg_lock, flags);
  	v = __apu_get_register(chip, channel, reg);
  	spin_unlock_irqrestore(&chip->reg_lock, flags);
  	return v;
  }
  
  #if 0 /* ASSP is not supported */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
711
  static void assp_set_register(struct es1968 *chip, u32 reg, u32 value)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
712
713
714
715
716
717
718
719
  {
  	unsigned long flags;
  
  	spin_lock_irqsave(&chip->reg_lock, flags);
  	outl(reg, chip->io_port + ASSP_INDEX);
  	outl(value, chip->io_port + ASSP_DATA);
  	spin_unlock_irqrestore(&chip->reg_lock, flags);
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
720
  static u32 assp_get_register(struct es1968 *chip, u32 reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
721
722
723
724
725
726
727
728
729
730
731
732
733
  {
  	unsigned long flags;
  	u32 value;
  
  	spin_lock_irqsave(&chip->reg_lock, flags);
  	outl(reg, chip->io_port + ASSP_INDEX);
  	value = inl(chip->io_port + ASSP_DATA);
  	spin_unlock_irqrestore(&chip->reg_lock, flags);
  
  	return value;
  }
  
  #endif
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
734
  static void wave_set_register(struct es1968 *chip, u16 reg, u16 value)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
735
736
737
738
739
740
741
742
  {
  	unsigned long flags;
  
  	spin_lock_irqsave(&chip->reg_lock, flags);
  	outw(reg, chip->io_port + WC_INDEX);
  	outw(value, chip->io_port + WC_DATA);
  	spin_unlock_irqrestore(&chip->reg_lock, flags);
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
743
  static u16 wave_get_register(struct es1968 *chip, u16 reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
  {
  	unsigned long flags;
  	u16 value;
  
  	spin_lock_irqsave(&chip->reg_lock, flags);
  	outw(reg, chip->io_port + WC_INDEX);
  	value = inw(chip->io_port + WC_DATA);
  	spin_unlock_irqrestore(&chip->reg_lock, flags);
  
  	return value;
  }
  
  /* *******************
     * Bob the Timer!  *
     *******************/
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
759
  static void snd_es1968_bob_stop(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
760
761
762
763
764
765
766
767
768
769
  {
  	u16 reg;
  
  	reg = __maestro_read(chip, 0x11);
  	reg &= ~ESM_BOB_ENABLE;
  	__maestro_write(chip, 0x11, reg);
  	reg = __maestro_read(chip, 0x17);
  	reg &= ~ESM_BOB_START;
  	__maestro_write(chip, 0x17, reg);
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
770
  static void snd_es1968_bob_start(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
  {
  	int prescale;
  	int divide;
  
  	/* compute ideal interrupt frequency for buffer size & play rate */
  	/* first, find best prescaler value to match freq */
  	for (prescale = 5; prescale < 12; prescale++)
  		if (chip->bob_freq > (ESS_SYSCLK >> (prescale + 9)))
  			break;
  
  	/* next, back off prescaler whilst getting divider into optimum range */
  	divide = 1;
  	while ((prescale > 5) && (divide < 32)) {
  		prescale--;
  		divide <<= 1;
  	}
  	divide >>= 1;
  
  	/* now fine-tune the divider for best match */
  	for (; divide < 31; divide++)
  		if (chip->bob_freq >
  		    ((ESS_SYSCLK >> (prescale + 9)) / (divide + 1))) break;
  
  	/* divide = 0 is illegal, but don't let prescale = 4! */
  	if (divide == 0) {
  		divide++;
  		if (prescale > 5)
  			prescale--;
  	} else if (divide > 1)
  		divide--;
  
  	__maestro_write(chip, 6, 0x9000 | (prescale << 5) | divide);	/* set reg */
  
  	/* Now set IDR 11/17 */
  	__maestro_write(chip, 0x11, __maestro_read(chip, 0x11) | 1);
  	__maestro_write(chip, 0x17, __maestro_read(chip, 0x17) | 1);
  }
  
  /* call with substream spinlock */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
810
  static void snd_es1968_bob_inc(struct es1968 *chip, int freq)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
811
812
813
814
815
816
817
818
819
820
821
822
823
  {
  	chip->bobclient++;
  	if (chip->bobclient == 1) {
  		chip->bob_freq = freq;
  		snd_es1968_bob_start(chip);
  	} else if (chip->bob_freq < freq) {
  		snd_es1968_bob_stop(chip);
  		chip->bob_freq = freq;
  		snd_es1968_bob_start(chip);
  	}
  }
  
  /* call with substream spinlock */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
824
  static void snd_es1968_bob_dec(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
825
826
827
828
829
830
  {
  	chip->bobclient--;
  	if (chip->bobclient <= 0)
  		snd_es1968_bob_stop(chip);
  	else if (chip->bob_freq > ESM_BOB_FREQ) {
  		/* check reduction of timer frequency */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
831
  		int max_freq = ESM_BOB_FREQ;
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
832
833
  		struct esschan *es;
  		list_for_each_entry(es, &chip->substream_list, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
834
835
836
837
838
839
840
841
842
843
844
845
  			if (max_freq < es->bob_freq)
  				max_freq = es->bob_freq;
  		}
  		if (max_freq != chip->bob_freq) {
  			snd_es1968_bob_stop(chip);
  			chip->bob_freq = max_freq;
  			snd_es1968_bob_start(chip);
  		}
  	}
  }
  
  static int
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
846
847
  snd_es1968_calc_bob_rate(struct es1968 *chip, struct esschan *es,
  			 struct snd_pcm_runtime *runtime)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
  {
  	/* we acquire 4 interrupts per period for precise control.. */
  	int freq = runtime->rate * 4;
  	if (es->fmt & ESS_FMT_STEREO)
  		freq <<= 1;
  	if (es->fmt & ESS_FMT_16BIT)
  		freq <<= 1;
  	freq /= es->frag_size;
  	if (freq < ESM_BOB_FREQ)
  		freq = ESM_BOB_FREQ;
  	else if (freq > ESM_BOB_FREQ_MAX)
  		freq = ESM_BOB_FREQ_MAX;
  	return freq;
  }
  
  
  /*************
   *  PCM Part *
   *************/
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
867
  static u32 snd_es1968_compute_rate(struct es1968 *chip, u32 freq)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
868
869
870
871
872
873
874
875
876
877
  {
  	u32 rate = (freq << 16) / chip->clock;
  #if 0 /* XXX: do we need this? */ 
  	if (rate > 0x10000)
  		rate = 0x10000;
  #endif
  	return rate;
  }
  
  /* get current pointer */
77933d727   Jesper Juhl   [PATCH] clean up ...
878
  static inline unsigned int
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
879
  snd_es1968_get_dma_ptr(struct es1968 *chip, struct esschan *es)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
880
881
882
883
884
885
886
887
888
  {
  	unsigned int offset;
  
  	offset = apu_get_register(chip, es->apu[0], 5);
  
  	offset -= es->base[0];
  
  	return (offset & 0xFFFE);	/* hardware is in words */
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
889
  static void snd_es1968_apu_set_freq(struct es1968 *chip, int apu, int freq)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
890
891
892
893
894
895
896
897
  {
  	apu_set_register(chip, apu, 2,
  			   (apu_get_register(chip, apu, 2) & 0x00FF) |
  			   ((freq & 0xff) << 8) | 0x10);
  	apu_set_register(chip, apu, 3, freq >> 8);
  }
  
  /* spin lock held */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
898
  static inline void snd_es1968_trigger_apu(struct es1968 *esm, int apu, int mode)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
899
900
901
902
903
904
  {
  	/* set the APU mode */
  	__apu_set_register(esm, apu, 0,
  			   (__apu_get_register(esm, apu, 0) & 0xff0f) |
  			   (mode << 4));
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
905
  static void snd_es1968_pcm_start(struct es1968 *chip, struct esschan *es)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
  {
  	spin_lock(&chip->reg_lock);
  	__apu_set_register(chip, es->apu[0], 5, es->base[0]);
  	snd_es1968_trigger_apu(chip, es->apu[0], es->apu_mode[0]);
  	if (es->mode == ESM_MODE_CAPTURE) {
  		__apu_set_register(chip, es->apu[2], 5, es->base[2]);
  		snd_es1968_trigger_apu(chip, es->apu[2], es->apu_mode[2]);
  	}
  	if (es->fmt & ESS_FMT_STEREO) {
  		__apu_set_register(chip, es->apu[1], 5, es->base[1]);
  		snd_es1968_trigger_apu(chip, es->apu[1], es->apu_mode[1]);
  		if (es->mode == ESM_MODE_CAPTURE) {
  			__apu_set_register(chip, es->apu[3], 5, es->base[3]);
  			snd_es1968_trigger_apu(chip, es->apu[3], es->apu_mode[3]);
  		}
  	}
  	spin_unlock(&chip->reg_lock);
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
924
  static void snd_es1968_pcm_stop(struct es1968 *chip, struct esschan *es)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
925
926
927
928
929
930
931
932
933
934
935
936
  {
  	spin_lock(&chip->reg_lock);
  	snd_es1968_trigger_apu(chip, es->apu[0], 0);
  	snd_es1968_trigger_apu(chip, es->apu[1], 0);
  	if (es->mode == ESM_MODE_CAPTURE) {
  		snd_es1968_trigger_apu(chip, es->apu[2], 0);
  		snd_es1968_trigger_apu(chip, es->apu[3], 0);
  	}
  	spin_unlock(&chip->reg_lock);
  }
  
  /* set the wavecache control reg */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
937
  static void snd_es1968_program_wavecache(struct es1968 *chip, struct esschan *es,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
938
939
940
941
942
943
944
945
946
947
948
949
950
  					 int channel, u32 addr, int capture)
  {
  	u32 tmpval = (addr - 0x10) & 0xFFF8;
  
  	if (! capture) {
  		if (!(es->fmt & ESS_FMT_16BIT))
  			tmpval |= 4;	/* 8bit */
  		if (es->fmt & ESS_FMT_STEREO)
  			tmpval |= 2;	/* stereo */
  	}
  
  	/* set the wavecache control reg */
  	wave_set_register(chip, es->apu[channel] << 3, tmpval);
c7561cd80   Takashi Iwai   ALSA: PCI: Replac...
951
  #ifdef CONFIG_PM_SLEEP
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
952
953
954
  	es->wc_map[channel] = tmpval;
  #endif
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
955
956
  static void snd_es1968_playback_setup(struct es1968 *chip, struct esschan *es,
  				      struct snd_pcm_runtime *runtime)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
  {
  	u32 pa;
  	int high_apu = 0;
  	int channel, apu;
  	int i, size;
  	unsigned long flags;
  	u32 freq;
  
  	size = es->dma_size >> es->wav_shift;
  
  	if (es->fmt & ESS_FMT_STEREO)
  		high_apu++;
  
  	for (channel = 0; channel <= high_apu; channel++) {
  		apu = es->apu[channel];
  
  		snd_es1968_program_wavecache(chip, es, channel, es->memory->buf.addr, 0);
  
  		/* Offset to PCMBAR */
  		pa = es->memory->buf.addr;
  		pa -= chip->dma.addr;
  		pa >>= 1;	/* words */
  
  		pa |= 0x00400000;	/* System RAM (Bit 22) */
  
  		if (es->fmt & ESS_FMT_STEREO) {
  			/* Enable stereo */
  			if (channel)
  				pa |= 0x00800000;	/* (Bit 23) */
  			if (es->fmt & ESS_FMT_16BIT)
  				pa >>= 1;
  		}
  
  		/* base offset of dma calcs when reading the pointer
  		   on this left one */
  		es->base[channel] = pa & 0xFFFF;
  
  		for (i = 0; i < 16; i++)
  			apu_set_register(chip, apu, i, 0x0000);
  
  		/* Load the buffer into the wave engine */
  		apu_set_register(chip, apu, 4, ((pa >> 16) & 0xFF) << 8);
  		apu_set_register(chip, apu, 5, pa & 0xFFFF);
  		apu_set_register(chip, apu, 6, (pa + size) & 0xFFFF);
  		/* setting loop == sample len */
  		apu_set_register(chip, apu, 7, size);
  
  		/* clear effects/env.. */
  		apu_set_register(chip, apu, 8, 0x0000);
  		/* set amp now to 0xd0 (?), low byte is 'amplitude dest'? */
  		apu_set_register(chip, apu, 9, 0xD000);
  
  		/* clear routing stuff */
  		apu_set_register(chip, apu, 11, 0x0000);
  		/* dma on, no envelopes, filter to all 1s) */
  		apu_set_register(chip, apu, 0, 0x400F);
  
  		if (es->fmt & ESS_FMT_16BIT)
  			es->apu_mode[channel] = ESM_APU_16BITLINEAR;
  		else
  			es->apu_mode[channel] = ESM_APU_8BITLINEAR;
  
  		if (es->fmt & ESS_FMT_STEREO) {
  			/* set panning: left or right */
  			/* Check: different panning. On my Canyon 3D Chipset the
  			   Channels are swapped. I don't know, about the output
  			   to the SPDif Link. Perhaps you have to change this
  			   and not the APU Regs 4-5. */
  			apu_set_register(chip, apu, 10,
  					 0x8F00 | (channel ? 0 : 0x10));
  			es->apu_mode[channel] += 1;	/* stereo */
  		} else
  			apu_set_register(chip, apu, 10, 0x8F08);
  	}
  
  	spin_lock_irqsave(&chip->reg_lock, flags);
  	/* clear WP interrupts */
  	outw(1, chip->io_port + 0x04);
  	/* enable WP ints */
  	outw(inw(chip->io_port + ESM_PORT_HOST_IRQ) | ESM_HIRQ_DSIE, chip->io_port + ESM_PORT_HOST_IRQ);
  	spin_unlock_irqrestore(&chip->reg_lock, flags);
  
  	freq = runtime->rate;
  	/* set frequency */
  	if (freq > 48000)
  		freq = 48000;
  	if (freq < 4000)
  		freq = 4000;
  
  	/* hmmm.. */
  	if (!(es->fmt & ESS_FMT_16BIT) && !(es->fmt & ESS_FMT_STEREO))
  		freq >>= 1;
  
  	freq = snd_es1968_compute_rate(chip, freq);
  
  	/* Load the frequency, turn on 6dB */
  	snd_es1968_apu_set_freq(chip, es->apu[0], freq);
  	snd_es1968_apu_set_freq(chip, es->apu[1], freq);
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1056
  static void init_capture_apu(struct es1968 *chip, struct esschan *es, int channel,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
  			     unsigned int pa, unsigned int bsize,
  			     int mode, int route)
  {
  	int i, apu = es->apu[channel];
  
  	es->apu_mode[channel] = mode;
  
  	/* set the wavecache control reg */
  	snd_es1968_program_wavecache(chip, es, channel, pa, 1);
  
  	/* Offset to PCMBAR */
  	pa -= chip->dma.addr;
  	pa >>= 1;	/* words */
  
  	/* base offset of dma calcs when reading the pointer
  	   on this left one */
  	es->base[channel] = pa & 0xFFFF;
  	pa |= 0x00400000;	/* bit 22 -> System RAM */
  
  	/* Begin loading the APU */
  	for (i = 0; i < 16; i++)
  		apu_set_register(chip, apu, i, 0x0000);
  
  	/* need to enable subgroups.. and we should probably
  	   have different groups for different /dev/dsps..  */
  	apu_set_register(chip, apu, 2, 0x8);
  
  	/* Load the buffer into the wave engine */
  	apu_set_register(chip, apu, 4, ((pa >> 16) & 0xFF) << 8);
  	apu_set_register(chip, apu, 5, pa & 0xFFFF);
  	apu_set_register(chip, apu, 6, (pa + bsize) & 0xFFFF);
  	apu_set_register(chip, apu, 7, bsize);
  	/* clear effects/env.. */
  	apu_set_register(chip, apu, 8, 0x00F0);
  	/* amplitude now?  sure.  why not.  */
  	apu_set_register(chip, apu, 9, 0x0000);
  	/* set filter tune, radius, polar pan */
  	apu_set_register(chip, apu, 10, 0x8F08);
  	/* route input */
  	apu_set_register(chip, apu, 11, route);
  	/* dma on, no envelopes, filter to all 1s) */
  	apu_set_register(chip, apu, 0, 0x400F);
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1100
1101
  static void snd_es1968_capture_setup(struct es1968 *chip, struct esschan *es,
  				     struct snd_pcm_runtime *runtime)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
  {
  	int size;
  	u32 freq;
  	unsigned long flags;
  
  	size = es->dma_size >> es->wav_shift;
  
  	/* APU assignments:
  	   0 = mono/left SRC
  	   1 = right SRC
  	   2 = mono/left Input Mixer
  	   3 = right Input Mixer
  	*/
  	/* data seems to flow from the codec, through an apu into
  	   the 'mixbuf' bit of page, then through the SRC apu
  	   and out to the real 'buffer'.  ok.  sure.  */
  
  	/* input mixer (left/mono) */
  	/* parallel in crap, see maestro reg 0xC [8-11] */
  	init_capture_apu(chip, es, 2,
  			 es->mixbuf->buf.addr, ESM_MIXBUF_SIZE/4, /* in words */
  			 ESM_APU_INPUTMIXER, 0x14);
  	/* SRC (left/mono); get input from inputing apu */
  	init_capture_apu(chip, es, 0, es->memory->buf.addr, size,
  			 ESM_APU_SRCONVERTOR, es->apu[2]);
  	if (es->fmt & ESS_FMT_STEREO) {
  		/* input mixer (right) */
  		init_capture_apu(chip, es, 3,
  				 es->mixbuf->buf.addr + ESM_MIXBUF_SIZE/2,
  				 ESM_MIXBUF_SIZE/4, /* in words */
  				 ESM_APU_INPUTMIXER, 0x15);
  		/* SRC (right) */
  		init_capture_apu(chip, es, 1,
  				 es->memory->buf.addr + size*2, size,
  				 ESM_APU_SRCONVERTOR, es->apu[3]);
  	}
  
  	freq = runtime->rate;
  	/* Sample Rate conversion APUs don't like 0x10000 for their rate */
  	if (freq > 47999)
  		freq = 47999;
  	if (freq < 4000)
  		freq = 4000;
  
  	freq = snd_es1968_compute_rate(chip, freq);
  
  	/* Load the frequency, turn on 6dB */
  	snd_es1968_apu_set_freq(chip, es->apu[0], freq);
  	snd_es1968_apu_set_freq(chip, es->apu[1], freq);
  
  	/* fix mixer rate at 48khz.  and its _must_ be 0x10000. */
  	freq = 0x10000;
  	snd_es1968_apu_set_freq(chip, es->apu[2], freq);
  	snd_es1968_apu_set_freq(chip, es->apu[3], freq);
  
  	spin_lock_irqsave(&chip->reg_lock, flags);
  	/* clear WP interrupts */
  	outw(1, chip->io_port + 0x04);
  	/* enable WP ints */
  	outw(inw(chip->io_port + ESM_PORT_HOST_IRQ) | ESM_HIRQ_DSIE, chip->io_port + ESM_PORT_HOST_IRQ);
  	spin_unlock_irqrestore(&chip->reg_lock, flags);
  }
  
  /*******************
   *  ALSA Interface *
   *******************/
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1168
  static int snd_es1968_pcm_prepare(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1169
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1170
1171
1172
  	struct es1968 *chip = snd_pcm_substream_chip(substream);
  	struct snd_pcm_runtime *runtime = substream->runtime;
  	struct esschan *es = runtime->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
  
  	es->dma_size = snd_pcm_lib_buffer_bytes(substream);
  	es->frag_size = snd_pcm_lib_period_bytes(substream);
  
  	es->wav_shift = 1; /* maestro handles always 16bit */
  	es->fmt = 0;
  	if (snd_pcm_format_width(runtime->format) == 16)
  		es->fmt |= ESS_FMT_16BIT;
  	if (runtime->channels > 1) {
  		es->fmt |= ESS_FMT_STEREO;
  		if (es->fmt & ESS_FMT_16BIT) /* 8bit is already word shifted */
  			es->wav_shift++;
  	}
  	es->bob_freq = snd_es1968_calc_bob_rate(chip, es, runtime);
  
  	switch (es->mode) {
  	case ESM_MODE_PLAY:
  		snd_es1968_playback_setup(chip, es, runtime);
  		break;
  	case ESM_MODE_CAPTURE:
  		snd_es1968_capture_setup(chip, es, runtime);
  		break;
  	}
  
  	return 0;
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1199
  static int snd_es1968_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1200
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1201
1202
  	struct es1968 *chip = snd_pcm_substream_chip(substream);
  	struct esschan *es = substream->runtime->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
  
  	spin_lock(&chip->substream_lock);
  	switch (cmd) {
  	case SNDRV_PCM_TRIGGER_START:
  	case SNDRV_PCM_TRIGGER_RESUME:
  		if (es->running)
  			break;
  		snd_es1968_bob_inc(chip, es->bob_freq);
  		es->count = 0;
  		es->hwptr = 0;
  		snd_es1968_pcm_start(chip, es);
  		es->running = 1;
  		break;
  	case SNDRV_PCM_TRIGGER_STOP:
  	case SNDRV_PCM_TRIGGER_SUSPEND:
  		if (! es->running)
  			break;
  		snd_es1968_pcm_stop(chip, es);
  		es->running = 0;
  		snd_es1968_bob_dec(chip);
  		break;
  	}
  	spin_unlock(&chip->substream_lock);
  	return 0;
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1228
  static snd_pcm_uframes_t snd_es1968_pcm_pointer(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1229
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1230
1231
  	struct es1968 *chip = snd_pcm_substream_chip(substream);
  	struct esschan *es = substream->runtime->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1232
1233
1234
1235
1236
1237
  	unsigned int ptr;
  
  	ptr = snd_es1968_get_dma_ptr(chip, es) << es->wav_shift;
  	
  	return bytes_to_frames(substream->runtime, ptr % es->dma_size);
  }
dee49895b   Bhumika Goyal   ALSA: pci: make s...
1238
  static const struct snd_pcm_hardware snd_es1968_playback = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
  	.info =			(SNDRV_PCM_INFO_MMAP |
                 		         SNDRV_PCM_INFO_MMAP_VALID |
  				 SNDRV_PCM_INFO_INTERLEAVED |
  				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
  				 /*SNDRV_PCM_INFO_PAUSE |*/
  				 SNDRV_PCM_INFO_RESUME),
  	.formats =		SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
  	.rates =		SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
  	.rate_min =		4000,
  	.rate_max =		48000,
  	.channels_min =		1,
  	.channels_max =		2,
  	.buffer_bytes_max =	65536,
  	.period_bytes_min =	256,
  	.period_bytes_max =	65536,
  	.periods_min =		1,
  	.periods_max =		1024,
  	.fifo_size =		0,
  };
dee49895b   Bhumika Goyal   ALSA: pci: make s...
1258
  static const struct snd_pcm_hardware snd_es1968_capture = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
  	.info =			(SNDRV_PCM_INFO_NONINTERLEAVED |
  				 SNDRV_PCM_INFO_MMAP |
  				 SNDRV_PCM_INFO_MMAP_VALID |
  				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
  				 /*SNDRV_PCM_INFO_PAUSE |*/
  				 SNDRV_PCM_INFO_RESUME),
  	.formats =		/*SNDRV_PCM_FMTBIT_U8 |*/ SNDRV_PCM_FMTBIT_S16_LE,
  	.rates =		SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
  	.rate_min =		4000,
  	.rate_max =		48000,
  	.channels_min =		1,
  	.channels_max =		2,
  	.buffer_bytes_max =	65536,
  	.period_bytes_min =	256,
  	.period_bytes_max =	65536,
  	.periods_min =		1,
  	.periods_max =		1024,
  	.fifo_size =		0,
  };
  
  /* *************************
     * DMA memory management *
     *************************/
  
  /* Because the Maestro can only take addresses relative to the PCM base address
     register :( */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1285
  static int calc_available_memory_size(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1286
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1287
  	int max_size = 0;
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
1288
  	struct esm_memory *buf;
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1289
  	mutex_lock(&chip->memory_mutex);
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
1290
  	list_for_each_entry(buf, &chip->buf_list, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1291
1292
1293
  		if (buf->empty && buf->buf.bytes > max_size)
  			max_size = buf->buf.bytes;
  	}
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1294
  	mutex_unlock(&chip->memory_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1295
1296
1297
1298
1299
1300
  	if (max_size >= 128*1024)
  		max_size = 127*1024;
  	return max_size;
  }
  
  /* allocate a new memory chunk with the specified size */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1301
  static struct esm_memory *snd_es1968_new_memory(struct es1968 *chip, int size)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1302
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1303
  	struct esm_memory *buf;
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
1304

7ab399262   Clemens Ladisch   [ALSA] use the AL...
1305
  	size = ALIGN(size, ESM_MEM_ALIGN);
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1306
  	mutex_lock(&chip->memory_mutex);
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
1307
  	list_for_each_entry(buf, &chip->buf_list, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1308
1309
1310
  		if (buf->empty && buf->buf.bytes >= size)
  			goto __found;
  	}
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1311
  	mutex_unlock(&chip->memory_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1312
1313
1314
1315
  	return NULL;
  
  __found:
  	if (buf->buf.bytes > size) {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1316
  		struct esm_memory *chunk = kmalloc(sizeof(*chunk), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1317
  		if (chunk == NULL) {
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1318
  			mutex_unlock(&chip->memory_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
  			return NULL;
  		}
  		chunk->buf = buf->buf;
  		chunk->buf.bytes -= size;
  		chunk->buf.area += size;
  		chunk->buf.addr += size;
  		chunk->empty = 1;
  		buf->buf.bytes = size;
  		list_add(&chunk->list, &buf->list);
  	}
  	buf->empty = 0;
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1330
  	mutex_unlock(&chip->memory_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1331
1332
1333
1334
  	return buf;
  }
  
  /* free a memory chunk */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1335
  static void snd_es1968_free_memory(struct es1968 *chip, struct esm_memory *buf)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1336
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1337
  	struct esm_memory *chunk;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1338

62932df8f   Ingo Molnar   [ALSA] semaphore ...
1339
  	mutex_lock(&chip->memory_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1340
1341
  	buf->empty = 1;
  	if (buf->list.prev != &chip->buf_list) {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1342
  		chunk = list_entry(buf->list.prev, struct esm_memory, list);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1343
1344
1345
1346
1347
1348
1349
1350
  		if (chunk->empty) {
  			chunk->buf.bytes += buf->buf.bytes;
  			list_del(&buf->list);
  			kfree(buf);
  			buf = chunk;
  		}
  	}
  	if (buf->list.next != &chip->buf_list) {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1351
  		chunk = list_entry(buf->list.next, struct esm_memory, list);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1352
1353
1354
1355
1356
1357
  		if (chunk->empty) {
  			buf->buf.bytes += chunk->buf.bytes;
  			list_del(&chunk->list);
  			kfree(chunk);
  		}
  	}
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1358
  	mutex_unlock(&chip->memory_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1359
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1360
  static void snd_es1968_free_dmabuf(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1361
1362
1363
1364
1365
  {
  	struct list_head *p;
  
  	if (! chip->dma.area)
  		return;
47d98c026   Takashi Iwai   ALSA: Remove memo...
1366
  	snd_dma_free_pages(&chip->dma);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1367
  	while ((p = chip->buf_list.next) != &chip->buf_list) {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1368
  		struct esm_memory *chunk = list_entry(p, struct esm_memory, list);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1369
1370
1371
1372
  		list_del(p);
  		kfree(chunk);
  	}
  }
e23e7a143   Bill Pemberton   ALSA: pci: remove...
1373
  static int
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1374
  snd_es1968_init_dmabuf(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1375
1376
  {
  	int err;
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1377
  	struct esm_memory *chunk;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1378

47d98c026   Takashi Iwai   ALSA: Remove memo...
1379
  	err = snd_dma_alloc_pages_fallback(SNDRV_DMA_TYPE_DEV,
af7153a29   Takashi Iwai   ALSA: es1968: Avo...
1380
  					   &chip->pci->dev,
47d98c026   Takashi Iwai   ALSA: Remove memo...
1381
1382
  					   chip->total_bufsize, &chip->dma);
  	if (err < 0 || ! chip->dma.area) {
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
1383
1384
1385
  		dev_err(chip->card->dev,
  			"can't allocate dma pages for size %d
  ",
47d98c026   Takashi Iwai   ALSA: Remove memo...
1386
1387
1388
1389
1390
  			   chip->total_bufsize);
  		return -ENOMEM;
  	}
  	if ((chip->dma.addr + chip->dma.bytes - 1) & ~((1 << 28) - 1)) {
  		snd_dma_free_pages(&chip->dma);
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
1391
1392
  		dev_err(chip->card->dev, "DMA buffer beyond 256MB.
  ");
47d98c026   Takashi Iwai   ALSA: Remove memo...
1393
  		return -ENOMEM;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
  	}
  
  	INIT_LIST_HEAD(&chip->buf_list);
  	/* allocate an empty chunk */
  	chunk = kmalloc(sizeof(*chunk), GFP_KERNEL);
  	if (chunk == NULL) {
  		snd_es1968_free_dmabuf(chip);
  		return -ENOMEM;
  	}
  	memset(chip->dma.area, 0, ESM_MEM_ALIGN);
  	chunk->buf = chip->dma;
  	chunk->buf.area += ESM_MEM_ALIGN;
  	chunk->buf.addr += ESM_MEM_ALIGN;
  	chunk->buf.bytes -= ESM_MEM_ALIGN;
  	chunk->empty = 1;
  	list_add(&chunk->list, &chip->buf_list);
  
  	return 0;
  }
  
  /* setup the dma_areas */
  /* buffer is extracted from the pre-allocated memory chunk */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1416
1417
  static int snd_es1968_hw_params(struct snd_pcm_substream *substream,
  				struct snd_pcm_hw_params *hw_params)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1418
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1419
1420
1421
  	struct es1968 *chip = snd_pcm_substream_chip(substream);
  	struct snd_pcm_runtime *runtime = substream->runtime;
  	struct esschan *chan = runtime->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
  	int size = params_buffer_bytes(hw_params);
  
  	if (chan->memory) {
  		if (chan->memory->buf.bytes >= size) {
  			runtime->dma_bytes = size;
  			return 0;
  		}
  		snd_es1968_free_memory(chip, chan->memory);
  	}
  	chan->memory = snd_es1968_new_memory(chip, size);
  	if (chan->memory == NULL) {
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
1433
1434
1435
  		dev_dbg(chip->card->dev,
  			"cannot allocate dma buffer: size = %d
  ", size);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1436
1437
1438
1439
1440
1441
1442
  		return -ENOMEM;
  	}
  	snd_pcm_set_runtime_buffer(substream, &chan->memory->buf);
  	return 1; /* area was changed */
  }
  
  /* remove dma areas if allocated */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1443
  static int snd_es1968_hw_free(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1444
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1445
1446
1447
  	struct es1968 *chip = snd_pcm_substream_chip(substream);
  	struct snd_pcm_runtime *runtime = substream->runtime;
  	struct esschan *chan;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
  	
  	if (runtime->private_data == NULL)
  		return 0;
  	chan = runtime->private_data;
  	if (chan->memory) {
  		snd_es1968_free_memory(chip, chan->memory);
  		chan->memory = NULL;
  	}
  	return 0;
  }
  
  
  /*
   * allocate APU pair
   */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1463
  static int snd_es1968_alloc_apu_pair(struct es1968 *chip, int type)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
  {
  	int apu;
  
  	for (apu = 0; apu < NR_APUS; apu += 2) {
  		if (chip->apu[apu] == ESM_APU_FREE &&
  		    chip->apu[apu + 1] == ESM_APU_FREE) {
  			chip->apu[apu] = chip->apu[apu + 1] = type;
  			return apu;
  		}
  	}
  	return -EBUSY;
  }
  
  /*
   * release APU pair
   */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1480
  static void snd_es1968_free_apu_pair(struct es1968 *chip, int apu)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1481
1482
1483
1484
1485
1486
1487
1488
  {
  	chip->apu[apu] = chip->apu[apu + 1] = ESM_APU_FREE;
  }
  
  
  /******************
   * PCM open/close *
   ******************/
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1489
  static int snd_es1968_playback_open(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1490
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1491
1492
1493
  	struct es1968 *chip = snd_pcm_substream_chip(substream);
  	struct snd_pcm_runtime *runtime = substream->runtime;
  	struct esschan *es;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1494
1495
1496
1497
1498
1499
  	int apu1;
  
  	/* search 2 APUs */
  	apu1 = snd_es1968_alloc_apu_pair(chip, ESM_APU_PCM_PLAY);
  	if (apu1 < 0)
  		return apu1;
e560d8d83   Takashi Iwai   [ALSA] Replace wi...
1500
  	es = kzalloc(sizeof(*es), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
  	if (!es) {
  		snd_es1968_free_apu_pair(chip, apu1);
  		return -ENOMEM;
  	}
  
  	es->apu[0] = apu1;
  	es->apu[1] = apu1 + 1;
  	es->apu_mode[0] = 0;
  	es->apu_mode[1] = 0;
  	es->running = 0;
  	es->substream = substream;
  	es->mode = ESM_MODE_PLAY;
  
  	runtime->private_data = es;
  	runtime->hw = snd_es1968_playback;
  	runtime->hw.buffer_bytes_max = runtime->hw.period_bytes_max =
  		calc_available_memory_size(chip);
b942cf815   Rene Herman   [ALSA] es1968 - F...
1518

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1519
1520
1521
1522
1523
1524
  	spin_lock_irq(&chip->substream_lock);
  	list_add(&es->list, &chip->substream_list);
  	spin_unlock_irq(&chip->substream_lock);
  
  	return 0;
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1525
  static int snd_es1968_capture_open(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1526
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1527
1528
1529
  	struct snd_pcm_runtime *runtime = substream->runtime;
  	struct es1968 *chip = snd_pcm_substream_chip(substream);
  	struct esschan *es;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
  	int apu1, apu2;
  
  	apu1 = snd_es1968_alloc_apu_pair(chip, ESM_APU_PCM_CAPTURE);
  	if (apu1 < 0)
  		return apu1;
  	apu2 = snd_es1968_alloc_apu_pair(chip, ESM_APU_PCM_RATECONV);
  	if (apu2 < 0) {
  		snd_es1968_free_apu_pair(chip, apu1);
  		return apu2;
  	}
  	
e560d8d83   Takashi Iwai   [ALSA] Replace wi...
1541
  	es = kzalloc(sizeof(*es), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
  	if (!es) {
  		snd_es1968_free_apu_pair(chip, apu1);
  		snd_es1968_free_apu_pair(chip, apu2);
  		return -ENOMEM;
  	}
  
  	es->apu[0] = apu1;
  	es->apu[1] = apu1 + 1;
  	es->apu[2] = apu2;
  	es->apu[3] = apu2 + 1;
  	es->apu_mode[0] = 0;
  	es->apu_mode[1] = 0;
  	es->apu_mode[2] = 0;
  	es->apu_mode[3] = 0;
  	es->running = 0;
  	es->substream = substream;
  	es->mode = ESM_MODE_CAPTURE;
  
  	/* get mixbuffer */
  	if ((es->mixbuf = snd_es1968_new_memory(chip, ESM_MIXBUF_SIZE)) == NULL) {
  		snd_es1968_free_apu_pair(chip, apu1);
  		snd_es1968_free_apu_pair(chip, apu2);
  		kfree(es);
                  return -ENOMEM;
          }
  	memset(es->mixbuf->buf.area, 0, ESM_MIXBUF_SIZE);
  
  	runtime->private_data = es;
  	runtime->hw = snd_es1968_capture;
  	runtime->hw.buffer_bytes_max = runtime->hw.period_bytes_max =
  		calc_available_memory_size(chip) - 1024; /* keep MIXBUF size */
b942cf815   Rene Herman   [ALSA] es1968 - F...
1573
  	snd_pcm_hw_constraint_pow2(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1574
1575
1576
1577
1578
1579
  	spin_lock_irq(&chip->substream_lock);
  	list_add(&es->list, &chip->substream_list);
  	spin_unlock_irq(&chip->substream_lock);
  
  	return 0;
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1580
  static int snd_es1968_playback_close(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1581
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1582
1583
  	struct es1968 *chip = snd_pcm_substream_chip(substream);
  	struct esschan *es;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
  
  	if (substream->runtime->private_data == NULL)
  		return 0;
  	es = substream->runtime->private_data;
  	spin_lock_irq(&chip->substream_lock);
  	list_del(&es->list);
  	spin_unlock_irq(&chip->substream_lock);
  	snd_es1968_free_apu_pair(chip, es->apu[0]);
  	kfree(es);
  
  	return 0;
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1596
  static int snd_es1968_capture_close(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1597
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1598
1599
  	struct es1968 *chip = snd_pcm_substream_chip(substream);
  	struct esschan *es;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
  
  	if (substream->runtime->private_data == NULL)
  		return 0;
  	es = substream->runtime->private_data;
  	spin_lock_irq(&chip->substream_lock);
  	list_del(&es->list);
  	spin_unlock_irq(&chip->substream_lock);
  	snd_es1968_free_memory(chip, es->mixbuf);
  	snd_es1968_free_apu_pair(chip, es->apu[0]);
  	snd_es1968_free_apu_pair(chip, es->apu[2]);
  	kfree(es);
  
  	return 0;
  }
6769e988b   Julia Lawall   ALSA: constify sn...
1614
  static const struct snd_pcm_ops snd_es1968_playback_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1615
1616
  	.open =		snd_es1968_playback_open,
  	.close =	snd_es1968_playback_close,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1617
1618
1619
1620
1621
1622
  	.hw_params =	snd_es1968_hw_params,
  	.hw_free =	snd_es1968_hw_free,
  	.prepare =	snd_es1968_pcm_prepare,
  	.trigger =	snd_es1968_pcm_trigger,
  	.pointer =	snd_es1968_pcm_pointer,
  };
6769e988b   Julia Lawall   ALSA: constify sn...
1623
  static const struct snd_pcm_ops snd_es1968_capture_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1624
1625
  	.open =		snd_es1968_capture_open,
  	.close =	snd_es1968_capture_close,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
  	.hw_params =	snd_es1968_hw_params,
  	.hw_free =	snd_es1968_hw_free,
  	.prepare =	snd_es1968_pcm_prepare,
  	.trigger =	snd_es1968_pcm_trigger,
  	.pointer =	snd_es1968_pcm_pointer,
  };
  
  
  /*
   * measure clock
   */
  #define CLOCK_MEASURE_BUFSIZE	16768	/* enough large for a single shot */
e23e7a143   Bill Pemberton   ALSA: pci: remove...
1638
  static void es1968_measure_clock(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1639
1640
1641
  {
  	int i, apu;
  	unsigned int pa, offset, t;
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1642
  	struct esm_memory *memory;
eafe8404c   Tina Ruchandani   ALSA: es1968: Rep...
1643
1644
  	ktime_t start_time, stop_time;
  	ktime_t diff;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1645
1646
1647
1648
1649
1650
  
  	if (chip->clock == 0)
  		chip->clock = 48000; /* default clock value */
  
  	/* search 2 APUs (although one apu is enough) */
  	if ((apu = snd_es1968_alloc_apu_pair(chip, ESM_APU_PCM_PLAY)) < 0) {
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
1651
1652
  		dev_err(chip->card->dev, "Hmm, cannot find empty APU pair!?
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1653
1654
1655
  		return;
  	}
  	if ((memory = snd_es1968_new_memory(chip, CLOCK_MEASURE_BUFSIZE)) == NULL) {
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
1656
1657
1658
1659
  		dev_warn(chip->card->dev,
  			 "cannot allocate dma buffer - using default clock %d
  ",
  			 chip->clock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
  		snd_es1968_free_apu_pair(chip, apu);
  		return;
  	}
  
  	memset(memory->buf.area, 0, CLOCK_MEASURE_BUFSIZE);
  
  	wave_set_register(chip, apu << 3, (memory->buf.addr - 0x10) & 0xfff8);
  
  	pa = (unsigned int)((memory->buf.addr - chip->dma.addr) >> 1);
  	pa |= 0x00400000;	/* System RAM (Bit 22) */
  
  	/* initialize apu */
  	for (i = 0; i < 16; i++)
  		apu_set_register(chip, apu, i, 0x0000);
  
  	apu_set_register(chip, apu, 0, 0x400f);
  	apu_set_register(chip, apu, 4, ((pa >> 16) & 0xff) << 8);
  	apu_set_register(chip, apu, 5, pa & 0xffff);
  	apu_set_register(chip, apu, 6, (pa + CLOCK_MEASURE_BUFSIZE/2) & 0xffff);
  	apu_set_register(chip, apu, 7, CLOCK_MEASURE_BUFSIZE/2);
  	apu_set_register(chip, apu, 8, 0x0000);
  	apu_set_register(chip, apu, 9, 0xD000);
  	apu_set_register(chip, apu, 10, 0x8F08);
  	apu_set_register(chip, apu, 11, 0x0000);
  	spin_lock_irq(&chip->reg_lock);
  	outw(1, chip->io_port + 0x04); /* clear WP interrupts */
  	outw(inw(chip->io_port + ESM_PORT_HOST_IRQ) | ESM_HIRQ_DSIE, chip->io_port + ESM_PORT_HOST_IRQ); /* enable WP ints */
  	spin_unlock_irq(&chip->reg_lock);
  
  	snd_es1968_apu_set_freq(chip, apu, ((unsigned int)48000 << 16) / chip->clock); /* 48000 Hz */
  
  	chip->in_measurement = 1;
  	chip->measure_apu = apu;
  	spin_lock_irq(&chip->reg_lock);
  	snd_es1968_bob_inc(chip, ESM_BOB_FREQ);
  	__apu_set_register(chip, apu, 5, pa & 0xffff);
  	snd_es1968_trigger_apu(chip, apu, ESM_APU_16BITLINEAR);
eafe8404c   Tina Ruchandani   ALSA: es1968: Rep...
1697
  	start_time = ktime_get();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1698
  	spin_unlock_irq(&chip->reg_lock);
ef21ca24f   Nishanth Aravamudan   [ALSA] sound/pci:...
1699
  	msleep(50);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1700
1701
  	spin_lock_irq(&chip->reg_lock);
  	offset = __apu_get_register(chip, apu, 5);
eafe8404c   Tina Ruchandani   ALSA: es1968: Rep...
1702
  	stop_time = ktime_get();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1703
1704
1705
1706
1707
1708
1709
1710
1711
  	snd_es1968_trigger_apu(chip, apu, 0); /* stop */
  	snd_es1968_bob_dec(chip);
  	chip->in_measurement = 0;
  	spin_unlock_irq(&chip->reg_lock);
  
  	/* check the current position */
  	offset -= (pa & 0xffff);
  	offset &= 0xfffe;
  	offset += chip->measure_count * (CLOCK_MEASURE_BUFSIZE/2);
eafe8404c   Tina Ruchandani   ALSA: es1968: Rep...
1712
1713
  	diff = ktime_sub(stop_time, start_time);
  	t = ktime_to_us(diff);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1714
  	if (t == 0) {
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
1715
1716
  		dev_err(chip->card->dev, "?? calculation error..
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1717
1718
1719
1720
1721
1722
1723
  	} else {
  		offset *= 1000;
  		offset = (offset / t) * 1000 + ((offset % t) * 1000) / t;
  		if (offset < 47500 || offset > 48500) {
  			if (offset >= 40000 && offset <= 50000)
  				chip->clock = (chip->clock * offset) / 48000;
  		}
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
1724
1725
  		dev_info(chip->card->dev, "clocking to %d
  ", chip->clock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1726
1727
1728
1729
1730
1731
1732
1733
  	}
  	snd_es1968_free_memory(chip, memory);
  	snd_es1968_free_apu_pair(chip, apu);
  }
  
  
  /*
   */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1734
  static void snd_es1968_pcm_free(struct snd_pcm *pcm)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1735
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1736
  	struct es1968 *esm = pcm->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1737
1738
1739
  	snd_es1968_free_dmabuf(esm);
  	esm->pcm = NULL;
  }
e23e7a143   Bill Pemberton   ALSA: pci: remove...
1740
  static int
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1741
  snd_es1968_pcm(struct es1968 *chip, int device)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1742
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1743
  	struct snd_pcm *pcm;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
  	int err;
  
  	/* get DMA buffer */
  	if ((err = snd_es1968_init_dmabuf(chip)) < 0)
  		return err;
  
  	/* set PCMBAR */
  	wave_set_register(chip, 0x01FC, chip->dma.addr >> 12);
  	wave_set_register(chip, 0x01FD, chip->dma.addr >> 12);
  	wave_set_register(chip, 0x01FE, chip->dma.addr >> 12);
  	wave_set_register(chip, 0x01FF, chip->dma.addr >> 12);
  
  	if ((err = snd_pcm_new(chip->card, "ESS Maestro", device,
  			       chip->playback_streams,
  			       chip->capture_streams, &pcm)) < 0)
  		return err;
  
  	pcm->private_data = chip;
  	pcm->private_free = snd_es1968_pcm_free;
  
  	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_es1968_playback_ops);
  	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_es1968_capture_ops);
  
  	pcm->info_flags = 0;
  
  	strcpy(pcm->name, "ESS Maestro");
  
  	chip->pcm = pcm;
  
  	return 0;
  }
f24bfa53d   Andreas Mueller   [ALSA] es1968: fi...
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
  /*
   * suppress jitter on some maestros when playing stereo
   */
  static void snd_es1968_suppress_jitter(struct es1968 *chip, struct esschan *es)
  {
  	unsigned int cp1;
  	unsigned int cp2;
  	unsigned int diff;
  
  	cp1 = __apu_get_register(chip, 0, 5);
  	cp2 = __apu_get_register(chip, 1, 5);
  	diff = (cp1 > cp2 ? cp1 - cp2 : cp2 - cp1);
66c9aa604   Andrew Morton   [ALSA] es1968 - f...
1787
  	if (diff > 1)
f24bfa53d   Andreas Mueller   [ALSA] es1968: fi...
1788
  		__maestro_write(chip, IDR0_DATA_PORT, cp1);
f24bfa53d   Andreas Mueller   [ALSA] es1968: fi...
1789
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1790
1791
1792
1793
  
  /*
   * update pointer
   */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1794
  static void snd_es1968_update_pcm(struct es1968 *chip, struct esschan *es)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1795
1796
1797
  {
  	unsigned int hwptr;
  	unsigned int diff;
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1798
  	struct snd_pcm_substream *subs = es->substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
          
  	if (subs == NULL || !es->running)
  		return;
  
  	hwptr = snd_es1968_get_dma_ptr(chip, es) << es->wav_shift;
  	hwptr %= es->dma_size;
  
  	diff = (es->dma_size + hwptr - es->hwptr) % es->dma_size;
  
  	es->hwptr = hwptr;
  	es->count += diff;
  
  	if (es->count > es->frag_size) {
  		spin_unlock(&chip->substream_lock);
  		snd_pcm_period_elapsed(subs);
  		spin_lock(&chip->substream_lock);
  		es->count %= es->frag_size;
  	}
  }
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
1818
1819
1820
1821
  /* The hardware volume works by incrementing / decrementing 2 counters
     (without wrap around) in response to volume button presses and then
     generating an interrupt. The pair of counters is stored in bits 1-3 and 5-7
     of a byte wide register. The meaning of bits 0 and 4 is unknown. */
30bdee025   Takashi Iwai   ALSA: es1968,maes...
1822
  static void es1968_update_hw_volume(struct work_struct *work)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1823
  {
30bdee025   Takashi Iwai   ALSA: es1968,maes...
1824
  	struct es1968 *chip = container_of(work, struct es1968, hwvol_work);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1825
  	int x, val;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1826
1827
1828
1829
  
  	/* Figure out which volume control button was pushed,
  	   based on differences from the default register
  	   values. */
679e28eef   Ville Syrjala   [ALSA] es1968: Fi...
1830
  	x = inb(chip->io_port + 0x1c) & 0xee;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1831
1832
1833
1834
1835
1836
1837
1838
  	/* Reset the volume control registers. */
  	outb(0x88, chip->io_port + 0x1c);
  	outb(0x88, chip->io_port + 0x1d);
  	outb(0x88, chip->io_port + 0x1e);
  	outb(0x88, chip->io_port + 0x1f);
  
  	if (chip->in_suspend)
  		return;
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
1839
  #ifndef CONFIG_SND_ES1968_INPUT
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1840
1841
  	if (! chip->master_switch || ! chip->master_volume)
  		return;
30bdee025   Takashi Iwai   ALSA: es1968,maes...
1842
  	val = snd_ac97_read(chip->ac97, AC97_MASTER);
679e28eef   Ville Syrjala   [ALSA] es1968: Fi...
1843
1844
  	switch (x) {
  	case 0x88:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1845
1846
  		/* mute */
  		val ^= 0x8000;
679e28eef   Ville Syrjala   [ALSA] es1968: Fi...
1847
1848
1849
1850
1851
1852
1853
  		break;
  	case 0xaa:
  		/* volume up */
  		if ((val & 0x7f) > 0)
  			val--;
  		if ((val & 0x7f00) > 0)
  			val -= 0x0100;
679e28eef   Ville Syrjala   [ALSA] es1968: Fi...
1854
1855
1856
1857
1858
1859
1860
  		break;
  	case 0x66:
  		/* volume down */
  		if ((val & 0x7f) < 0x1f)
  			val++;
  		if ((val & 0x7f00) < 0x1f00)
  			val += 0x0100;
679e28eef   Ville Syrjala   [ALSA] es1968: Fi...
1861
  		break;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1862
  	}
30bdee025   Takashi Iwai   ALSA: es1968,maes...
1863
1864
1865
  	if (snd_ac97_update(chip->ac97, AC97_MASTER, val))
  		snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
  			       &chip->master_volume->id);
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
  #else
  	if (!chip->input_dev)
  		return;
  
  	val = 0;
  	switch (x) {
  	case 0x88:
  		/* The counters have not changed, yet we've received a HV
  		   interrupt. According to tests run by various people this
  		   happens when pressing the mute button. */
  		val = KEY_MUTE;
  		break;
  	case 0xaa:
  		/* counters increased by 1 -> volume up */
  		val = KEY_VOLUMEUP;
  		break;
  	case 0x66:
  		/* counters decreased by 1 -> volume down */
  		val = KEY_VOLUMEDOWN;
  		break;
  	}
  
  	if (val) {
  		input_report_key(chip->input_dev, val, 1);
  		input_sync(chip->input_dev);
  		input_report_key(chip->input_dev, val, 0);
  		input_sync(chip->input_dev);
  	}
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1895
1896
1897
1898
1899
  }
  
  /*
   * interrupt handler
   */
7d12e780e   David Howells   IRQ: Maintain reg...
1900
  static irqreturn_t snd_es1968_interrupt(int irq, void *dev_id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1901
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1902
  	struct es1968 *chip = dev_id;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1903
1904
1905
1906
1907
1908
1909
1910
  	u32 event;
  
  	if (!(event = inb(chip->io_port + 0x1A)))
  		return IRQ_NONE;
  
  	outw(inw(chip->io_port + 4) & 1, chip->io_port + 4);
  
  	if (event & ESM_HWVOL_IRQ)
30bdee025   Takashi Iwai   ALSA: es1968,maes...
1911
  		schedule_work(&chip->hwvol_work);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1912
1913
1914
1915
1916
  
  	/* else ack 'em all, i imagine */
  	outb(0xFF, chip->io_port + 0x1A);
  
  	if ((event & ESM_MPU401_IRQ) && chip->rmidi) {
7d12e780e   David Howells   IRQ: Maintain reg...
1917
  		snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1918
1919
1920
  	}
  
  	if (event & ESM_SOUND_IRQ) {
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
1921
  		struct esschan *es;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1922
  		spin_lock(&chip->substream_lock);
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
1923
  		list_for_each_entry(es, &chip->substream_list, list) {
f24bfa53d   Andreas Mueller   [ALSA] es1968: fi...
1924
  			if (es->running) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1925
  				snd_es1968_update_pcm(chip, es);
f24bfa53d   Andreas Mueller   [ALSA] es1968: fi...
1926
1927
1928
  				if (es->fmt & ESS_FMT_STEREO)
  					snd_es1968_suppress_jitter(chip, es);
  			}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
  		}
  		spin_unlock(&chip->substream_lock);
  		if (chip->in_measurement) {
  			unsigned int curp = __apu_get_register(chip, chip->measure_apu, 5);
  			if (curp < chip->measure_lastpos)
  				chip->measure_count++;
  			chip->measure_lastpos = curp;
  		}
  	}
  
  	return IRQ_HANDLED;
  }
  
  /*
   *  Mixer stuff
   */
e23e7a143   Bill Pemberton   ALSA: pci: remove...
1945
  static int
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1946
  snd_es1968_mixer(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1947
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1948
1949
  	struct snd_ac97_bus *pbus;
  	struct snd_ac97_template ac97;
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
1950
  #ifndef CONFIG_SND_ES1968_INPUT
3463d8fa1   Harvey Harrison   [ALSA] sound: es1...
1951
  	struct snd_ctl_elem_id elem_id;
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
1952
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1953
  	int err;
51055da51   Takashi Iwai   ALSA: pci: Consti...
1954
  	static const struct snd_ac97_bus_ops ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
  		.write = snd_es1968_ac97_write,
  		.read = snd_es1968_ac97_read,
  	};
  
  	if ((err = snd_ac97_bus(chip->card, 0, &ops, NULL, &pbus)) < 0)
  		return err;
  	pbus->no_vra = 1; /* ES1968 doesn't need VRA */
  
  	memset(&ac97, 0, sizeof(ac97));
  	ac97.private_data = chip;
  	if ((err = snd_ac97_mixer(pbus, &ac97, &chip->ac97)) < 0)
  		return err;
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
1967
  #ifndef CONFIG_SND_ES1968_INPUT
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1968
  	/* attach master switch / volumes for h/w volume control */
3463d8fa1   Harvey Harrison   [ALSA] sound: es1...
1969
1970
1971
1972
1973
1974
1975
1976
  	memset(&elem_id, 0, sizeof(elem_id));
  	elem_id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
  	strcpy(elem_id.name, "Master Playback Switch");
  	chip->master_switch = snd_ctl_find_id(chip->card, &elem_id);
  	memset(&elem_id, 0, sizeof(elem_id));
  	elem_id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
  	strcpy(elem_id.name, "Master Playback Volume");
  	chip->master_volume = snd_ctl_find_id(chip->card, &elem_id);
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
1977
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1978
1979
1980
1981
1982
1983
1984
  
  	return 0;
  }
  
  /*
   * reset ac97 codec
   */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1985
  static void snd_es1968_ac97_reset(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
  {
  	unsigned long ioaddr = chip->io_port;
  
  	unsigned short save_ringbus_a;
  	unsigned short save_68;
  	unsigned short w;
  	unsigned int vend;
  
  	/* save configuration */
  	save_ringbus_a = inw(ioaddr + 0x36);
  
  	//outw(inw(ioaddr + 0x38) & 0xfffc, ioaddr + 0x38); /* clear second codec id? */
  	/* set command/status address i/o to 1st codec */
  	outw(inw(ioaddr + 0x3a) & 0xfffc, ioaddr + 0x3a);
  	outw(inw(ioaddr + 0x3c) & 0xfffc, ioaddr + 0x3c);
  
  	/* disable ac link */
  	outw(0x0000, ioaddr + 0x36);
  	save_68 = inw(ioaddr + 0x68);
  	pci_read_config_word(chip->pci, 0x58, &w);	/* something magical with gpio and bus arb. */
  	pci_read_config_dword(chip->pci, PCI_SUBSYSTEM_VENDOR_ID, &vend);
  	if (w & 1)
  		save_68 |= 0x10;
  	outw(0xfffe, ioaddr + 0x64);	/* unmask gpio 0 */
  	outw(0x0001, ioaddr + 0x68);	/* gpio write */
  	outw(0x0000, ioaddr + 0x60);	/* write 0 to gpio 0 */
  	udelay(20);
  	outw(0x0001, ioaddr + 0x60);	/* write 1 to gpio 1 */
ef21ca24f   Nishanth Aravamudan   [ALSA] sound/pci:...
2014
  	msleep(20);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
  
  	outw(save_68 | 0x1, ioaddr + 0x68);	/* now restore .. */
  	outw((inw(ioaddr + 0x38) & 0xfffc) | 0x1, ioaddr + 0x38);
  	outw((inw(ioaddr + 0x3a) & 0xfffc) | 0x1, ioaddr + 0x3a);
  	outw((inw(ioaddr + 0x3c) & 0xfffc) | 0x1, ioaddr + 0x3c);
  
  	/* now the second codec */
  	/* disable ac link */
  	outw(0x0000, ioaddr + 0x36);
  	outw(0xfff7, ioaddr + 0x64);	/* unmask gpio 3 */
  	save_68 = inw(ioaddr + 0x68);
  	outw(0x0009, ioaddr + 0x68);	/* gpio write 0 & 3 ?? */
  	outw(0x0001, ioaddr + 0x60);	/* write 1 to gpio */
  	udelay(20);
  	outw(0x0009, ioaddr + 0x60);	/* write 9 to gpio */
ef21ca24f   Nishanth Aravamudan   [ALSA] sound/pci:...
2030
  	msleep(500);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2031
2032
2033
2034
2035
  	//outw(inw(ioaddr + 0x38) & 0xfffc, ioaddr + 0x38);
  	outw(inw(ioaddr + 0x3a) & 0xfffc, ioaddr + 0x3a);
  	outw(inw(ioaddr + 0x3c) & 0xfffc, ioaddr + 0x3c);
  
  #if 0				/* the loop here needs to be much better if we want it.. */
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
2036
2037
  	dev_info(chip->card->dev, "trying software reset
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
  	/* try and do a software reset */
  	outb(0x80 | 0x7c, ioaddr + 0x30);
  	for (w = 0;; w++) {
  		if ((inw(ioaddr + 0x30) & 1) == 0) {
  			if (inb(ioaddr + 0x32) != 0)
  				break;
  
  			outb(0x80 | 0x7d, ioaddr + 0x30);
  			if (((inw(ioaddr + 0x30) & 1) == 0)
  			    && (inb(ioaddr + 0x32) != 0))
  				break;
  			outb(0x80 | 0x7f, ioaddr + 0x30);
  			if (((inw(ioaddr + 0x30) & 1) == 0)
  			    && (inb(ioaddr + 0x32) != 0))
  				break;
  		}
  
  		if (w > 10000) {
  			outb(inb(ioaddr + 0x37) | 0x08, ioaddr + 0x37);	/* do a software reset */
ef21ca24f   Nishanth Aravamudan   [ALSA] sound/pci:...
2057
  			msleep(500);	/* oh my.. */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
  			outb(inb(ioaddr + 0x37) & ~0x08,
  				ioaddr + 0x37);
  			udelay(1);
  			outw(0x80, ioaddr + 0x30);
  			for (w = 0; w < 10000; w++) {
  				if ((inw(ioaddr + 0x30) & 1) == 0)
  					break;
  			}
  		}
  	}
  #endif
  	if (vend == NEC_VERSA_SUBID1 || vend == NEC_VERSA_SUBID2) {
  		/* turn on external amp? */
  		outw(0xf9ff, ioaddr + 0x64);
  		outw(inw(ioaddr + 0x68) | 0x600, ioaddr + 0x68);
  		outw(0x0209, ioaddr + 0x60);
  	}
  
  	/* restore.. */
  	outw(save_ringbus_a, ioaddr + 0x36);
  
  	/* Turn on the 978 docking chip.
  	   First frob the "master output enable" bit,
  	   then set most of the playback volume control registers to max. */
  	outb(inb(ioaddr+0xc0)|(1<<5), ioaddr+0xc0);
  	outb(0xff, ioaddr+0xc3);
  	outb(0xff, ioaddr+0xc4);
  	outb(0xff, ioaddr+0xc6);
  	outb(0xff, ioaddr+0xc8);
  	outb(0x3f, ioaddr+0xcf);
  	outb(0x3f, ioaddr+0xd0);
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2090
  static void snd_es1968_reset(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
  {
  	/* Reset */
  	outw(ESM_RESET_MAESTRO | ESM_RESET_DIRECTSOUND,
  	     chip->io_port + ESM_PORT_HOST_IRQ);
  	udelay(10);
  	outw(0x0000, chip->io_port + ESM_PORT_HOST_IRQ);
  	udelay(10);
  }
  
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2101
2102
   * initialize maestro chip
   */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2103
  static void snd_es1968_chip_init(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
  {
  	struct pci_dev *pci = chip->pci;
  	int i;
  	unsigned long iobase  = chip->io_port;
  	u16 w;
  	u32 n;
  
  	/* We used to muck around with pci config space that
  	 * we had no business messing with.  We don't know enough
  	 * about the machine to know which DMA mode is appropriate, 
  	 * etc.  We were guessing wrong on some machines and making
  	 * them unhappy.  We now trust in the BIOS to do things right,
  	 * which almost certainly means a new host of problems will
  	 * arise with broken BIOS implementations.  screw 'em. 
  	 * We're already intolerant of machines that don't assign
  	 * IRQs.
  	 */
  	
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2122
2123
  	/* Config Reg A */
  	pci_read_config_word(pci, ESM_CONFIG_A, &w);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2124
  	w &= ~DMA_CLEAR;	/* Clear DMA bits */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2125
2126
2127
  	w &= ~(PIC_SNOOP1 | PIC_SNOOP2);	/* Clear Pic Snoop Mode Bits */
  	w &= ~SAFEGUARD;	/* Safeguard off */
  	w |= POST_WRITE;	/* Posted write */
607da7f83   Rene Herman   [ALSA] es1968 - F...
2128
  	w |= PCI_TIMING;	/* PCI timing on */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
  	/* XXX huh?  claims to be reserved.. */
  	w &= ~SWAP_LR;		/* swap left/right 
  				   seems to only have effect on SB
  				   Emulation */
  	w &= ~SUBTR_DECODE;	/* Subtractive decode off */
  
  	pci_write_config_word(pci, ESM_CONFIG_A, w);
  
  	/* Config Reg B */
  
  	pci_read_config_word(pci, ESM_CONFIG_B, &w);
  
  	w &= ~(1 << 15);	/* Turn off internal clock multiplier */
  	/* XXX how do we know which to use? */
  	w &= ~(1 << 14);	/* External clock */
  
  	w &= ~SPDIF_CONFB;	/* disable S/PDIF output */
  	w |= HWV_CONFB;		/* HWV on */
  	w |= DEBOUNCE;		/* Debounce off: easier to push the HW buttons */
  	w &= ~GPIO_CONFB;	/* GPIO 4:5 */
  	w |= CHI_CONFB;		/* Disconnect from the CHI.  Enabling this made a dell 7500 work. */
  	w &= ~IDMA_CONFB;	/* IDMA off (undocumented) */
  	w &= ~MIDI_FIX;		/* MIDI fix off (undoc) */
  	w &= ~(1 << 1);		/* reserved, always write 0 */
  	w &= ~IRQ_TO_ISA;	/* IRQ to ISA off (undoc) */
  
  	pci_write_config_word(pci, ESM_CONFIG_B, w);
  
  	/* DDMA off */
  
  	pci_read_config_word(pci, ESM_DDMA, &w);
  	w &= ~(1 << 0);
  	pci_write_config_word(pci, ESM_DDMA, w);
  
  	/*
  	 *	Legacy mode
  	 */
  
  	pci_read_config_word(pci, ESM_LEGACY_AUDIO_CONTROL, &w);
607da7f83   Rene Herman   [ALSA] es1968 - F...
2168
  	w |= ESS_DISABLE_AUDIO;	/* Disable Legacy Audio */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
  	w &= ~ESS_ENABLE_SERIAL_IRQ;	/* Disable SIRQ */
  	w &= ~(0x1f);		/* disable mpu irq/io, game port, fm, SB */
  
  	pci_write_config_word(pci, ESM_LEGACY_AUDIO_CONTROL, w);
  
  	/* Set up 978 docking control chip. */
  	pci_read_config_word(pci, 0x58, &w);
  	w|=1<<2;	/* Enable 978. */
  	w|=1<<3;	/* Turn on 978 hardware volume control. */
  	w&=~(1<<11);	/* Turn on 978 mixer volume control. */
  	pci_write_config_word(pci, 0x58, w);
  	
  	/* Sound Reset */
  
  	snd_es1968_reset(chip);
  
  	/*
  	 *	Ring Bus Setup
  	 */
  
  	/* setup usual 0x34 stuff.. 0x36 may be chip specific */
  	outw(0xC090, iobase + ESM_RING_BUS_DEST); /* direct sound, stereo */
  	udelay(20);
  	outw(0x3000, iobase + ESM_RING_BUS_CONTR_A); /* enable ringbus/serial */
  	udelay(20);
  
  	/*
  	 *	Reset the CODEC
  	 */
  	 
  	snd_es1968_ac97_reset(chip);
  
  	/* Ring Bus Control B */
  
  	n = inl(iobase + ESM_RING_BUS_CONTR_B);
  	n &= ~RINGB_EN_SPDIF;	/* SPDIF off */
  	//w |= RINGB_EN_2CODEC;	/* enable 2nd codec */
  	outl(n, iobase + ESM_RING_BUS_CONTR_B);
  
  	/* Set hardware volume control registers to midpoints.
  	   We can tell which button was pushed based on how they change. */
  	outb(0x88, iobase+0x1c);
  	outb(0x88, iobase+0x1d);
  	outb(0x88, iobase+0x1e);
  	outb(0x88, iobase+0x1f);
  
  	/* it appears some maestros (dell 7500) only work if these are set,
48fc7f7e7   Adam Buchbinder   Fix misspellings ...
2216
  	   regardless of whether we use the assp or not. */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
  
  	outb(0, iobase + ASSP_CONTROL_B);
  	outb(3, iobase + ASSP_CONTROL_A);	/* M: Reserved bits... */
  	outb(0, iobase + ASSP_CONTROL_C);	/* M: Disable ASSP, ASSP IRQ's and FM Port */
  
  	/*
  	 * set up wavecache
  	 */
  	for (i = 0; i < 16; i++) {
  		/* Write 0 into the buffer area 0x1E0->1EF */
  		outw(0x01E0 + i, iobase + WC_INDEX);
  		outw(0x0000, iobase + WC_DATA);
  
  		/* The 1.10 test program seem to write 0 into the buffer area
  		 * 0x1D0-0x1DF too.*/
  		outw(0x01D0 + i, iobase + WC_INDEX);
  		outw(0x0000, iobase + WC_DATA);
  	}
  	wave_set_register(chip, IDR7_WAVE_ROMRAM,
  			  (wave_get_register(chip, IDR7_WAVE_ROMRAM) & 0xFF00));
  	wave_set_register(chip, IDR7_WAVE_ROMRAM,
  			  wave_get_register(chip, IDR7_WAVE_ROMRAM) | 0x100);
  	wave_set_register(chip, IDR7_WAVE_ROMRAM,
  			  wave_get_register(chip, IDR7_WAVE_ROMRAM) & ~0x200);
  	wave_set_register(chip, IDR7_WAVE_ROMRAM,
  			  wave_get_register(chip, IDR7_WAVE_ROMRAM) | ~0x400);
  
  
  	maestro_write(chip, IDR2_CRAM_DATA, 0x0000);
  	/* Now back to the DirectSound stuff */
  	/* audio serial configuration.. ? */
  	maestro_write(chip, 0x08, 0xB004);
  	maestro_write(chip, 0x09, 0x001B);
  	maestro_write(chip, 0x0A, 0x8000);
  	maestro_write(chip, 0x0B, 0x3F37);
  	maestro_write(chip, 0x0C, 0x0098);
  
  	/* parallel in, has something to do with recording :) */
  	maestro_write(chip, 0x0C,
  		      (maestro_read(chip, 0x0C) & ~0xF000) | 0x8000);
  	/* parallel out */
  	maestro_write(chip, 0x0C,
  		      (maestro_read(chip, 0x0C) & ~0x0F00) | 0x0500);
  
  	maestro_write(chip, 0x0D, 0x7632);
  
  	/* Wave cache control on - test off, sg off, 
  	   enable, enable extra chans 1Mb */
  
  	w = inw(iobase + WC_CONTROL);
  
  	w &= ~0xFA00;		/* Seems to be reserved? I don't know */
  	w |= 0xA000;		/* reserved... I don't know */
  	w &= ~0x0200;		/* Channels 56,57,58,59 as Extra Play,Rec Channel enable
  				   Seems to crash the Computer if enabled... */
  	w |= 0x0100;		/* Wave Cache Operation Enabled */
  	w |= 0x0080;		/* Channels 60/61 as Placback/Record enabled */
  	w &= ~0x0060;		/* Clear Wavtable Size */
  	w |= 0x0020;		/* Wavetable Size : 1MB */
  	/* Bit 4 is reserved */
  	w &= ~0x000C;		/* DMA Stuff? I don't understand what the datasheet means */
  	/* Bit 1 is reserved */
  	w &= ~0x0001;		/* Test Mode off */
  
  	outw(w, iobase + WC_CONTROL);
  
  	/* Now clear the APU control ram */
  	for (i = 0; i < NR_APUS; i++) {
  		for (w = 0; w < NR_APU_REGS; w++)
  			apu_set_register(chip, i, w, 0);
  
  	}
  }
  
  /* Enable IRQ's */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2292
  static void snd_es1968_start_irq(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2293
2294
2295
2296
2297
  {
  	unsigned short w;
  	w = ESM_HIRQ_DSIE | ESM_HIRQ_HW_VOLUME;
  	if (chip->rmidi)
  		w |= ESM_HIRQ_MPU401;
6895b5262   Ville Syrjälä   ALSA: es1968: Cle...
2298
  	outb(w, chip->io_port + 0x1A);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2299
2300
  	outw(w, chip->io_port + ESM_PORT_HOST_IRQ);
  }
c7561cd80   Takashi Iwai   ALSA: PCI: Replac...
2301
  #ifdef CONFIG_PM_SLEEP
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2302
2303
2304
  /*
   * PM support
   */
68cb2b559   Takashi Iwai   ALSA: Convert to ...
2305
  static int es1968_suspend(struct device *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2306
  {
68cb2b559   Takashi Iwai   ALSA: Convert to ...
2307
  	struct snd_card *card = dev_get_drvdata(dev);
1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2308
  	struct es1968 *chip = card->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2309
2310
2311
2312
2313
  
  	if (! chip->do_pm)
  		return 0;
  
  	chip->in_suspend = 1;
30bdee025   Takashi Iwai   ALSA: es1968,maes...
2314
  	cancel_work_sync(&chip->hwvol_work);
1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2315
  	snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2316
2317
  	snd_ac97_suspend(chip->ac97);
  	snd_es1968_bob_stop(chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2318
2319
  	return 0;
  }
68cb2b559   Takashi Iwai   ALSA: Convert to ...
2320
  static int es1968_resume(struct device *dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2321
  {
68cb2b559   Takashi Iwai   ALSA: Convert to ...
2322
  	struct snd_card *card = dev_get_drvdata(dev);
1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2323
  	struct es1968 *chip = card->private_data;
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
2324
  	struct esschan *es;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2325
2326
2327
  
  	if (! chip->do_pm)
  		return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
  	snd_es1968_chip_init(chip);
  
  	/* need to restore the base pointers.. */ 
  	if (chip->dma.addr) {
  		/* set PCMBAR */
  		wave_set_register(chip, 0x01FC, chip->dma.addr >> 12);
  	}
  
  	snd_es1968_start_irq(chip);
  
  	/* restore ac97 state */
  	snd_ac97_resume(chip->ac97);
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
2340
  	list_for_each_entry(es, &chip->substream_list, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
  		switch (es->mode) {
  		case ESM_MODE_PLAY:
  			snd_es1968_playback_setup(chip, es, es->substream->runtime);
  			break;
  		case ESM_MODE_CAPTURE:
  			snd_es1968_capture_setup(chip, es, es->substream->runtime);
  			break;
  		}
  	}
  
  	/* start timer again */
  	if (chip->bobclient)
  		snd_es1968_bob_start(chip);
1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2354
  	snd_power_change_state(card, SNDRV_CTL_POWER_D0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2355
2356
2357
  	chip->in_suspend = 0;
  	return 0;
  }
68cb2b559   Takashi Iwai   ALSA: Convert to ...
2358
2359
2360
2361
2362
  
  static SIMPLE_DEV_PM_OPS(es1968_pm, es1968_suspend, es1968_resume);
  #define ES1968_PM_OPS	&es1968_pm
  #else
  #define ES1968_PM_OPS	NULL
c7561cd80   Takashi Iwai   ALSA: PCI: Replac...
2363
  #endif /* CONFIG_PM_SLEEP */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2364
2365
2366
  
  #ifdef SUPPORT_JOYSTICK
  #define JOYSTICK_ADDR	0x200
e23e7a143   Bill Pemberton   ALSA: pci: remove...
2367
  static int snd_es1968_create_gameport(struct es1968 *chip, int dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
  {
  	struct gameport *gp;
  	struct resource *r;
  	u16 val;
  
  	if (!joystick[dev])
  		return -ENODEV;
  
  	r = request_region(JOYSTICK_ADDR, 8, "ES1968 gameport");
  	if (!r)
  		return -EBUSY;
  
  	chip->gameport = gp = gameport_allocate_port();
  	if (!gp) {
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
2382
2383
2384
  		dev_err(chip->card->dev,
  			"cannot allocate memory for gameport
  ");
b1d5776d8   Takashi Iwai   [ALSA] Remove vma...
2385
  		release_and_free_resource(r);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
  		return -ENOMEM;
  	}
  
  	pci_read_config_word(chip->pci, ESM_LEGACY_AUDIO_CONTROL, &val);
  	pci_write_config_word(chip->pci, ESM_LEGACY_AUDIO_CONTROL, val | 0x04);
  
  	gameport_set_name(gp, "ES1968 Gameport");
  	gameport_set_phys(gp, "pci%s/gameport0", pci_name(chip->pci));
  	gameport_set_dev_parent(gp, &chip->pci->dev);
  	gp->io = JOYSTICK_ADDR;
  	gameport_set_port_data(gp, r);
  
  	gameport_register_port(gp);
  
  	return 0;
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2402
  static void snd_es1968_free_gameport(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2403
2404
2405
2406
2407
2408
  {
  	if (chip->gameport) {
  		struct resource *r = gameport_get_port_data(chip->gameport);
  
  		gameport_unregister_port(chip->gameport);
  		chip->gameport = NULL;
b1d5776d8   Takashi Iwai   [ALSA] Remove vma...
2409
  		release_and_free_resource(r);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2410
2411
2412
  	}
  }
  #else
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2413
2414
  static inline int snd_es1968_create_gameport(struct es1968 *chip, int dev) { return -ENOSYS; }
  static inline void snd_es1968_free_gameport(struct es1968 *chip) { }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2415
  #endif
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
2416
  #ifdef CONFIG_SND_ES1968_INPUT
e23e7a143   Bill Pemberton   ALSA: pci: remove...
2417
  static int snd_es1968_input_register(struct es1968 *chip)
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
  {
  	struct input_dev *input_dev;
  	int err;
  
  	input_dev = input_allocate_device();
  	if (!input_dev)
  		return -ENOMEM;
  
  	snprintf(chip->phys, sizeof(chip->phys), "pci-%s/input0",
  		 pci_name(chip->pci));
  
  	input_dev->name = chip->card->driver;
  	input_dev->phys = chip->phys;
  	input_dev->id.bustype = BUS_PCI;
  	input_dev->id.vendor  = chip->pci->vendor;
  	input_dev->id.product = chip->pci->device;
  	input_dev->dev.parent = &chip->pci->dev;
  
  	__set_bit(EV_KEY, input_dev->evbit);
  	__set_bit(KEY_MUTE, input_dev->keybit);
  	__set_bit(KEY_VOLUMEDOWN, input_dev->keybit);
  	__set_bit(KEY_VOLUMEUP, input_dev->keybit);
  
  	err = input_register_device(input_dev);
  	if (err) {
  		input_free_device(input_dev);
  		return err;
  	}
  
  	chip->input_dev = input_dev;
  	return 0;
  }
  #endif /* CONFIG_SND_ES1968_INPUT */
1872f5899   Ondrej Zary   ALSA: es1968: add...
2451
2452
2453
2454
2455
2456
  #ifdef CONFIG_SND_ES1968_RADIO
  #define GPIO_DATA	0x60
  #define IO_MASK		4      /* mask      register offset from GPIO_DATA
  				bits 1=unmask write to given bit */
  #define IO_DIR		8      /* direction register offset from GPIO_DATA
  				bits 0/1=read/write direction */
8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2457
2458
2459
2460
2461
2462
  
  /* GPIO to TEA575x maps */
  struct snd_es1968_tea575x_gpio {
  	u8 data, clk, wren, most;
  	char *name;
  };
cd6e03122   Takashi Iwai   ALSA: es1968: Con...
2463
  static const struct snd_es1968_tea575x_gpio snd_es1968_tea575x_gpios[] = {
8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2464
2465
2466
2467
2468
2469
  	{ .data = 6, .clk = 7, .wren = 8, .most = 9, .name = "SF64-PCE2" },
  	{ .data = 7, .clk = 8, .wren = 6, .most = 10, .name = "M56VAP" },
  };
  
  #define get_tea575x_gpio(chip) \
  	(&snd_es1968_tea575x_gpios[(chip)->tea575x_tuner])
1872f5899   Ondrej Zary   ALSA: es1968: add...
2470

72587173c   Ondrej Zary   ALSA: es1968: con...
2471
  static void snd_es1968_tea575x_set_pins(struct snd_tea575x *tea, u8 pins)
1872f5899   Ondrej Zary   ALSA: es1968: add...
2472
2473
  {
  	struct es1968 *chip = tea->private_data;
8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2474
  	struct snd_es1968_tea575x_gpio gpio = *get_tea575x_gpio(chip);
72587173c   Ondrej Zary   ALSA: es1968: con...
2475
  	u16 val = 0;
1872f5899   Ondrej Zary   ALSA: es1968: add...
2476

8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2477
2478
2479
  	val |= (pins & TEA575X_DATA) ? (1 << gpio.data) : 0;
  	val |= (pins & TEA575X_CLK)  ? (1 << gpio.clk)  : 0;
  	val |= (pins & TEA575X_WREN) ? (1 << gpio.wren) : 0;
1872f5899   Ondrej Zary   ALSA: es1968: add...
2480

8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2481
  	outw(val, chip->io_port + GPIO_DATA);
1872f5899   Ondrej Zary   ALSA: es1968: add...
2482
  }
72587173c   Ondrej Zary   ALSA: es1968: con...
2483
  static u8 snd_es1968_tea575x_get_pins(struct snd_tea575x *tea)
1872f5899   Ondrej Zary   ALSA: es1968: add...
2484
2485
  {
  	struct es1968 *chip = tea->private_data;
8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2486
2487
2488
  	struct snd_es1968_tea575x_gpio gpio = *get_tea575x_gpio(chip);
  	u16 val = inw(chip->io_port + GPIO_DATA);
  	u8 ret = 0;
d2153a159   Dan Carpenter   ALSA: es1968: pre...
2489

8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2490
  	if (val & (1 << gpio.data))
d2153a159   Dan Carpenter   ALSA: es1968: pre...
2491
  		ret |= TEA575X_DATA;
8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2492
  	if (val & (1 << gpio.most))
d2153a159   Dan Carpenter   ALSA: es1968: pre...
2493
  		ret |= TEA575X_MOST;
8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2494

d2153a159   Dan Carpenter   ALSA: es1968: pre...
2495
  	return ret;
1872f5899   Ondrej Zary   ALSA: es1968: add...
2496
  }
72587173c   Ondrej Zary   ALSA: es1968: con...
2497
  static void snd_es1968_tea575x_set_direction(struct snd_tea575x *tea, bool output)
1872f5899   Ondrej Zary   ALSA: es1968: add...
2498
2499
2500
  {
  	struct es1968 *chip = tea->private_data;
  	unsigned long io = chip->io_port + GPIO_DATA;
72587173c   Ondrej Zary   ALSA: es1968: con...
2501
  	u16 odir = inw(io + IO_DIR);
8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2502
  	struct snd_es1968_tea575x_gpio gpio = *get_tea575x_gpio(chip);
1872f5899   Ondrej Zary   ALSA: es1968: add...
2503

72587173c   Ondrej Zary   ALSA: es1968: con...
2504
  	if (output) {
8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2505
2506
2507
2508
  		outw(~((1 << gpio.data) | (1 << gpio.clk) | (1 << gpio.wren)),
  			io + IO_MASK);
  		outw(odir | (1 << gpio.data) | (1 << gpio.clk) | (1 << gpio.wren),
  			io + IO_DIR);
72587173c   Ondrej Zary   ALSA: es1968: con...
2509
  	} else {
8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2510
2511
2512
2513
  		outw(~((1 << gpio.clk) | (1 << gpio.wren) | (1 << gpio.data) | (1 << gpio.most)),
  			io + IO_MASK);
  		outw((odir & ~((1 << gpio.data) | (1 << gpio.most)))
  			| (1 << gpio.clk) | (1 << gpio.wren), io + IO_DIR);
72587173c   Ondrej Zary   ALSA: es1968: con...
2514
  	}
1872f5899   Ondrej Zary   ALSA: es1968: add...
2515
  }
22dbec265   Julia Lawall   [media] media, so...
2516
  static const struct snd_tea575x_ops snd_es1968_tea_ops = {
72587173c   Ondrej Zary   ALSA: es1968: con...
2517
2518
2519
  	.set_pins = snd_es1968_tea575x_set_pins,
  	.get_pins = snd_es1968_tea575x_get_pins,
  	.set_direction = snd_es1968_tea575x_set_direction,
1872f5899   Ondrej Zary   ALSA: es1968: add...
2520
2521
  };
  #endif
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2522
  static int snd_es1968_free(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2523
  {
30bdee025   Takashi Iwai   ALSA: es1968,maes...
2524
  	cancel_work_sync(&chip->hwvol_work);
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
2525
2526
2527
2528
  #ifdef CONFIG_SND_ES1968_INPUT
  	if (chip->input_dev)
  		input_unregister_device(chip->input_dev);
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2529
  	if (chip->io_port) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2530
2531
2532
  		outw(1, chip->io_port + 0x04); /* clear WP interrupts */
  		outw(0, chip->io_port + ESM_PORT_HOST_IRQ); /* disable IRQ */
  	}
1872f5899   Ondrej Zary   ALSA: es1968: add...
2533
2534
  #ifdef CONFIG_SND_ES1968_RADIO
  	snd_tea575x_exit(&chip->tea);
d4ecc83b7   Hans Verkuil   [media] tea575x-t...
2535
  	v4l2_device_unregister(&chip->v4l2_dev);
1872f5899   Ondrej Zary   ALSA: es1968: add...
2536
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2537
  	if (chip->irq >= 0)
437a5a460   Takashi Iwai   [ALSA] Remove IRQ...
2538
  		free_irq(chip->irq, chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2539
  	snd_es1968_free_gameport(chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2540
2541
2542
2543
2544
  	pci_release_regions(chip->pci);
  	pci_disable_device(chip->pci);
  	kfree(chip);
  	return 0;
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2545
  static int snd_es1968_dev_free(struct snd_device *device)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2546
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2547
  	struct es1968 *chip = device->device_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2548
2549
2550
2551
2552
2553
2554
  	return snd_es1968_free(chip);
  }
  
  struct ess_device_list {
  	unsigned short type;	/* chip type */
  	unsigned short vendor;	/* subsystem vendor id */
  };
abe092aed   Takashi Iwai   ALSA: es1968: Rep...
2555
  static const struct ess_device_list pm_allowlist[] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2556
2557
2558
2559
2560
  	{ TYPE_MAESTRO2E, 0x0e11 },	/* Compaq Armada */
  	{ TYPE_MAESTRO2E, 0x1028 },
  	{ TYPE_MAESTRO2E, 0x103c },
  	{ TYPE_MAESTRO2E, 0x1179 },
  	{ TYPE_MAESTRO2E, 0x14c0 },	/* HP omnibook 4150 */
e6e514fa8   Takashi Iwai   [ALSA] Add the ve...
2561
  	{ TYPE_MAESTRO2E, 0x1558 },
5c0ee9497   Ondrej Zary   ALSA: es1968: Add...
2562
2563
  	{ TYPE_MAESTRO2E, 0x125d },	/* a PCI card, e.g. Terratec DMX */
  	{ TYPE_MAESTRO2, 0x125d },	/* a PCI card, e.g. SF64-PCE2 */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2564
  };
abe092aed   Takashi Iwai   ALSA: es1968: Rep...
2565
  static const struct ess_device_list mpu_denylist[] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2566
2567
  	{ TYPE_MAESTRO2, 0x125d },
  };
e23e7a143   Bill Pemberton   ALSA: pci: remove...
2568
2569
2570
2571
2572
2573
2574
2575
2576
  static int snd_es1968_create(struct snd_card *card,
  			     struct pci_dev *pci,
  			     int total_bufsize,
  			     int play_streams,
  			     int capt_streams,
  			     int chip_type,
  			     int do_pm,
  			     int radio_nr,
  			     struct es1968 **chip_ret)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2577
  {
efb0ad25d   Takashi Iwai   ALSA: pci: Consti...
2578
  	static const struct snd_device_ops ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2579
2580
  		.dev_free =	snd_es1968_dev_free,
  	};
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2581
  	struct es1968 *chip;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2582
2583
2584
2585
2586
2587
2588
2589
  	int i, err;
  
  	*chip_ret = NULL;
  
  	/* enable PCI device */
  	if ((err = pci_enable_device(pci)) < 0)
  		return err;
  	/* check, if we can restrict PCI DMA transfers to 28 bits */
412b979cc   Quentin Lambert   ALSA: remove depr...
2590
2591
  	if (dma_set_mask(&pci->dev, DMA_BIT_MASK(28)) < 0 ||
  	    dma_set_coherent_mask(&pci->dev, DMA_BIT_MASK(28)) < 0) {
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
2592
2593
2594
  		dev_err(card->dev,
  			"architecture does not support 28bit PCI busmaster DMA
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2595
2596
2597
  		pci_disable_device(pci);
  		return -ENXIO;
  	}
e560d8d83   Takashi Iwai   [ALSA] Replace wi...
2598
  	chip = kzalloc(sizeof(*chip), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
  	if (! chip) {
  		pci_disable_device(pci);
  		return -ENOMEM;
  	}
  
  	/* Set Vars */
  	chip->type = chip_type;
  	spin_lock_init(&chip->reg_lock);
  	spin_lock_init(&chip->substream_lock);
  	INIT_LIST_HEAD(&chip->buf_list);
  	INIT_LIST_HEAD(&chip->substream_list);
62932df8f   Ingo Molnar   [ALSA] semaphore ...
2610
  	mutex_init(&chip->memory_mutex);
30bdee025   Takashi Iwai   ALSA: es1968,maes...
2611
  	INIT_WORK(&chip->hwvol_work, es1968_update_hw_volume);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
  	chip->card = card;
  	chip->pci = pci;
  	chip->irq = -1;
  	chip->total_bufsize = total_bufsize;	/* in bytes */
  	chip->playback_streams = play_streams;
  	chip->capture_streams = capt_streams;
  
  	if ((err = pci_request_regions(pci, "ESS Maestro")) < 0) {
  		kfree(chip);
  		pci_disable_device(pci);
  		return err;
  	}
  	chip->io_port = pci_resource_start(pci, 0);
437a5a460   Takashi Iwai   [ALSA] Remove IRQ...
2625
  	if (request_irq(pci->irq, snd_es1968_interrupt, IRQF_SHARED,
934c2b6d0   Takashi Iwai   ALSA: use KBUILD_...
2626
  			KBUILD_MODNAME, chip)) {
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
2627
2628
  		dev_err(card->dev, "unable to grab IRQ %d
  ", pci->irq);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2629
2630
2631
2632
  		snd_es1968_free(chip);
  		return -EBUSY;
  	}
  	chip->irq = pci->irq;
dbb71ab05   Takashi Iwai   ALSA: es1968: Sup...
2633
  	card->sync_irq = chip->irq;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
  	        
  	/* Clear Maestro_map */
  	for (i = 0; i < 32; i++)
  		chip->maestro_map[i] = 0;
  
  	/* Clear Apu Map */
  	for (i = 0; i < NR_APUS; i++)
  		chip->apu[i] = ESM_APU_FREE;
  
  	/* just to be sure */
  	pci_set_master(pci);
  
  	if (do_pm > 1) {
abe092aed   Takashi Iwai   ALSA: es1968: Rep...
2647
  		/* disable power-management if not on the allowlist */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2648
2649
  		unsigned short vend;
  		pci_read_config_word(chip->pci, PCI_SUBSYSTEM_VENDOR_ID, &vend);
abe092aed   Takashi Iwai   ALSA: es1968: Rep...
2650
2651
2652
  		for (i = 0; i < (int)ARRAY_SIZE(pm_allowlist); i++) {
  			if (chip->type == pm_allowlist[i].type &&
  			    vend == pm_allowlist[i].vendor) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2653
2654
2655
2656
2657
2658
  				do_pm = 1;
  				break;
  			}
  		}
  		if (do_pm > 1) {
  			/* not matched; disabling pm */
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
2659
2660
  			dev_info(card->dev, "not attempting power management.
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2661
2662
2663
2664
2665
2666
  			do_pm = 0;
  		}
  	}
  	chip->do_pm = do_pm;
  
  	snd_es1968_chip_init(chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2667
2668
2669
2670
  	if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
  		snd_es1968_free(chip);
  		return err;
  	}
1872f5899   Ondrej Zary   ALSA: es1968: add...
2671
  #ifdef CONFIG_SND_ES1968_RADIO
8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2672
2673
2674
  	/* don't play with GPIOs on laptops */
  	if (chip->pci->subsystem_vendor != 0x125d)
  		goto no_radio;
d4ecc83b7   Hans Verkuil   [media] tea575x-t...
2675
2676
2677
2678
2679
2680
  	err = v4l2_device_register(&pci->dev, &chip->v4l2_dev);
  	if (err < 0) {
  		snd_es1968_free(chip);
  		return err;
  	}
  	chip->tea.v4l2_dev = &chip->v4l2_dev;
1872f5899   Ondrej Zary   ALSA: es1968: add...
2681
  	chip->tea.private_data = chip;
d4ecc83b7   Hans Verkuil   [media] tea575x-t...
2682
  	chip->tea.radio_nr = radio_nr;
1872f5899   Ondrej Zary   ALSA: es1968: add...
2683
  	chip->tea.ops = &snd_es1968_tea_ops;
10ca72014   Ondrej Zary   ALSA: tea575x: us...
2684
  	sprintf(chip->tea.bus_info, "PCI:%s", pci_name(pci));
8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2685
2686
2687
  	for (i = 0; i < ARRAY_SIZE(snd_es1968_tea575x_gpios); i++) {
  		chip->tea575x_tuner = i;
  		if (!snd_tea575x_init(&chip->tea, THIS_MODULE)) {
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
2688
2689
  			dev_info(card->dev, "detected TEA575x radio type %s
  ",
8e0d70434   Ondrej Zary   ALSA: es1968: Add...
2690
2691
2692
2693
2694
2695
2696
  				   get_tea575x_gpio(chip)->name);
  			strlcpy(chip->tea.card, get_tea575x_gpio(chip)->name,
  				sizeof(chip->tea.card));
  			break;
  		}
  	}
  no_radio:
1872f5899   Ondrej Zary   ALSA: es1968: add...
2697
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2698
2699
2700
2701
2702
2703
2704
2705
  	*chip_ret = chip;
  
  	return 0;
  }
  
  
  /*
   */
e23e7a143   Bill Pemberton   ALSA: pci: remove...
2706
2707
  static int snd_es1968_probe(struct pci_dev *pci,
  			    const struct pci_device_id *pci_id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2708
2709
  {
  	static int dev;
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2710
2711
  	struct snd_card *card;
  	struct es1968 *chip;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2712
2713
2714
2715
2716
2717
2718
2719
2720
  	unsigned int i;
  	int err;
  
  	if (dev >= SNDRV_CARDS)
  		return -ENODEV;
  	if (!enable[dev]) {
  		dev++;
  		return -ENOENT;
  	}
60c5772b5   Takashi Iwai   ALSA: pci: Conver...
2721
2722
  	err = snd_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
  			   0, &card);
e58de7baf   Takashi Iwai   ALSA: Convert to ...
2723
2724
  	if (err < 0)
  		return err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
                  
  	if (total_bufsize[dev] < 128)
  		total_bufsize[dev] = 128;
  	if (total_bufsize[dev] > 4096)
  		total_bufsize[dev] = 4096;
  	if ((err = snd_es1968_create(card, pci,
  				     total_bufsize[dev] * 1024, /* in bytes */
  				     pcm_substreams_p[dev], 
  				     pcm_substreams_c[dev],
  				     pci_id->driver_data,
  				     use_pm[dev],
d4ecc83b7   Hans Verkuil   [media] tea575x-t...
2736
  				     radio_nr[dev],
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2737
2738
2739
2740
  				     &chip)) < 0) {
  		snd_card_free(card);
  		return err;
  	}
1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2741
  	card->private_data = chip;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
  
  	switch (chip->type) {
  	case TYPE_MAESTRO2E:
  		strcpy(card->driver, "ES1978");
  		strcpy(card->shortname, "ESS ES1978 (Maestro 2E)");
  		break;
  	case TYPE_MAESTRO2:
  		strcpy(card->driver, "ES1968");
  		strcpy(card->shortname, "ESS ES1968 (Maestro 2)");
  		break;
  	case TYPE_MAESTRO:
  		strcpy(card->driver, "ESM1");
  		strcpy(card->shortname, "ESS Maestro 1");
  		break;
  	}
  
  	if ((err = snd_es1968_pcm(chip, 0)) < 0) {
  		snd_card_free(card);
  		return err;
  	}
  
  	if ((err = snd_es1968_mixer(chip)) < 0) {
  		snd_card_free(card);
  		return err;
  	}
  
  	if (enable_mpu[dev] == 2) {
abe092aed   Takashi Iwai   ALSA: es1968: Rep...
2769
  		/* check the deny list */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2770
2771
  		unsigned short vend;
  		pci_read_config_word(chip->pci, PCI_SUBSYSTEM_VENDOR_ID, &vend);
abe092aed   Takashi Iwai   ALSA: es1968: Rep...
2772
2773
2774
  		for (i = 0; i < ARRAY_SIZE(mpu_denylist); i++) {
  			if (chip->type == mpu_denylist[i].type &&
  			    vend == mpu_denylist[i].vendor) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2775
2776
2777
2778
2779
2780
2781
  				enable_mpu[dev] = 0;
  				break;
  			}
  		}
  	}
  	if (enable_mpu[dev]) {
  		if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_MPU401,
302e4c2f9   Takashi Iwai   [ALSA] Change an ...
2782
  					       chip->io_port + ESM_MPU401_PORT,
dba8b4699   Clemens Ladisch   ALSA: mpu401: cle...
2783
2784
2785
  					       MPU401_INFO_INTEGRATED |
  					       MPU401_INFO_IRQ_HOOK,
  					       -1, &chip->rmidi)) < 0) {
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
2786
2787
  			dev_warn(card->dev, "skipping MPU-401 MIDI support..
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2788
2789
2790
2791
  		}
  	}
  
  	snd_es1968_create_gameport(chip, dev);
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
2792
2793
2794
  #ifdef CONFIG_SND_ES1968_INPUT
  	err = snd_es1968_input_register(chip);
  	if (err)
86cd372fe   Takashi Iwai   ALSA: es1968: Use...
2795
2796
  		dev_warn(card->dev,
  			 "Input device registration failed with error %i", err);
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
2797
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
  	snd_es1968_start_irq(chip);
  
  	chip->clock = clock[dev];
  	if (! chip->clock)
  		es1968_measure_clock(chip);
  
  	sprintf(card->longname, "%s at 0x%lx, irq %i",
  		card->shortname, chip->io_port, chip->irq);
  
  	if ((err = snd_card_register(card)) < 0) {
  		snd_card_free(card);
  		return err;
  	}
  	pci_set_drvdata(pci, card);
  	dev++;
  	return 0;
  }
e23e7a143   Bill Pemberton   ALSA: pci: remove...
2815
  static void snd_es1968_remove(struct pci_dev *pci)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2816
2817
  {
  	snd_card_free(pci_get_drvdata(pci));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2818
  }
e9f66d9b9   Takashi Iwai   ALSA: pci: clean ...
2819
  static struct pci_driver es1968_driver = {
3733e424c   Takashi Iwai   ALSA: Use KBUILD_...
2820
  	.name = KBUILD_MODNAME,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2821
2822
  	.id_table = snd_es1968_ids,
  	.probe = snd_es1968_probe,
e23e7a143   Bill Pemberton   ALSA: pci: remove...
2823
  	.remove = snd_es1968_remove,
68cb2b559   Takashi Iwai   ALSA: Convert to ...
2824
2825
2826
  	.driver = {
  		.pm = ES1968_PM_OPS,
  	},
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2827
  };
e9f66d9b9   Takashi Iwai   ALSA: pci: clean ...
2828
  module_pci_driver(es1968_driver);