Blame view

sound/pci/es1968.c 78.1 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
  /*
   *  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
   *
   *   This program is free software; you can redistribute it and/or modify
   *   it under the terms of the GNU General Public License as published by
   *   the Free Software Foundation; either version 2 of the License, or
   *   (at your option) any later version.
   *
   *   This program is distributed in the hope that it will be useful,
   *   but WITHOUT ANY WARRANTY; without even the implied warranty of
   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   *   GNU General Public License for more details.
   *
   *   You should have received a copy of the GNU General Public License
   *   along with this program; if not, write to the Free Software
   *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
   *
   *
   *  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.
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
96
97
98
99
100
  #include <asm/io.h>
  #include <linux/delay.h>
  #include <linux/interrupt.h>
  #include <linux/init.h>
  #include <linux/pci.h>
9d2f928dd   Tobias Klauser   [PATCH] Intruduce...
101
  #include <linux/dma-mapping.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
102
103
  #include <linux/slab.h>
  #include <linux/gameport.h>
65a772172   Paul Gortmaker   sound: fix driver...
104
  #include <linux/module.h>
62932df8f   Ingo Molnar   [ALSA] semaphore ...
105
  #include <linux/mutex.h>
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
106
  #include <linux/input.h>
62932df8f   Ingo Molnar   [ALSA] semaphore ...
107

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
108
109
110
111
112
  #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...
113
114
115
  #ifdef CONFIG_SND_ES1968_RADIO
  #include <sound/tea575x-tuner.h>
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
  #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}}");
  
  #if defined(CONFIG_GAMEPORT) || (defined(MODULE) && defined(CONFIG_GAMEPORT_MODULE))
  #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...
132
  static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;	/* Enable this card */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
133
134
135
  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...
136
  static int clock[SNDRV_CARDS];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
137
138
139
  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...
140
  static bool joystick[SNDRV_CARDS];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
  #endif
  
  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
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
  #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...
180
  #define ESS_DISABLE_AUDIO	0x8000
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
  #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...
199
  #define PCI_TIMING		0x0040
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
  #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...
220
  /* ****Port Addresses**** */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
420
421
422
423
424
425
426
427
428
429
430
  
  /*   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
431

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
432
433
434
435
436
437
438
439
440
441
442
443
444
445
  /* 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...
446
  struct esm_memory {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
447
448
449
450
451
452
  	struct snd_dma_buffer buf;
  	int empty;	/* status */
  	struct list_head list;
  };
  
  /* Playback Channel */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
453
  struct esschan {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
454
455
456
457
458
459
  	int running;
  
  	u8 apu[4];
  	u8 apu_mode[4];
  
  	/* playback/capture pcm buffer */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
460
  	struct esm_memory *memory;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
461
  	/* capture mixer buffer */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
462
  	struct esm_memory *mixbuf;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
463
464
465
466
467
468
469
470
471
472
473
474
475
  
  	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...
476
  	struct snd_pcm_substream *substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
477
478
479
480
481
482
483
484
  
  	/* linked list */
  	struct list_head list;
  
  #ifdef CONFIG_PM
  	u16 wc_map[4];
  #endif
  };
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
485
  struct es1968 {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
  	/* 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...
506
507
  	struct snd_card *card;
  	struct snd_pcm *pcm;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
508
509
510
511
512
513
  	int do_pm;		/* power-management enabled */
  
  	/* DMA memory block */
  	struct list_head buf_list;
  
  	/* ALSA Stuff */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
514
  	struct snd_ac97 *ac97;
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
515
  	struct snd_rawmidi *rmidi;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
516
517
  
  	spinlock_t reg_lock;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
518
519
520
521
522
523
  	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 ...
524
  	struct mutex memory_mutex;	/* memory lock */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
  
  	/* APU states */
  	unsigned char apu[NR_APUS];
  
  	/* active substreams */
  	struct list_head substream_list;
  	spinlock_t substream_lock;
  
  #ifdef CONFIG_PM
  	u16 apu_map[NR_APUS][NR_APU_REGS];
  #endif
  
  #ifdef SUPPORT_JOYSTICK
  	struct gameport *gameport;
  #endif
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
540
541
542
543
544
545
546
  
  #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:...
547
  #endif
30bdee025   Takashi Iwai   ALSA: es1968,maes...
548
  	struct work_struct hwvol_work;
1872f5899   Ondrej Zary   ALSA: es1968: add...
549
550
551
552
  
  #ifdef CONFIG_SND_ES1968_RADIO
  	struct snd_tea575x tea;
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
553
  };
7d12e780e   David Howells   IRQ: Maintain reg...
554
  static irqreturn_t snd_es1968_interrupt(int irq, void *dev_id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
555

cebe41d4b   Alexey Dobriyan   sound: use DEFINE...
556
  static DEFINE_PCI_DEVICE_TABLE(snd_es1968_ids) = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
  	/* 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...
573
  static void __maestro_write(struct es1968 *chip, u16 reg, u16 data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
574
575
576
577
578
  {
  	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...
579
  static inline void maestro_write(struct es1968 *chip, u16 reg, u16 data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
580
581
582
583
584
585
586
587
  {
  	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...
588
  static u16 __maestro_read(struct es1968 *chip, u16 reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
589
590
591
592
593
594
595
  {
  	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...
596
  static inline u16 maestro_read(struct es1968 *chip, u16 reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
597
598
599
600
601
602
603
604
  {
  	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
605
  /* Wait for the codec bus to be free */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
606
  static int snd_es1968_ac97_wait(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
607
608
609
610
611
612
613
614
615
616
617
618
  {
  	int timeout = 100000;
  
  	while (timeout-- > 0) {
  		if (!(inb(chip->io_port + ESM_AC97_INDEX) & 1))
  			return 0;
  		cond_resched();
  	}
  	snd_printd("es1968: ac97 timeout
  ");
  	return 1; /* timeout */
  }
4b47c971d   Arjan van de Ven   es1968: fix sleep...
619
620
621
622
623
624
625
626
627
628
629
630
  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;
  	}
  	snd_printd("es1968: ac97 timeout
  ");
  	return 1; /* timeout */
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
631
  static void snd_es1968_ac97_write(struct snd_ac97 *ac97, unsigned short reg, unsigned short val)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
632
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
633
  	struct es1968 *chip = ac97->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
634
635
636
637
  
  	snd_es1968_ac97_wait(chip);
  
  	/* Write the bus */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
638
639
640
641
  	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
642
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
643
  static unsigned short snd_es1968_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
644
645
  {
  	u16 data = 0;
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
646
  	struct es1968 *chip = ac97->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
647
648
  
  	snd_es1968_ac97_wait(chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
649
650
  	outb(reg | 0x80, chip->io_port + ESM_AC97_INDEX);
  	/*msleep(1);*/
4b47c971d   Arjan van de Ven   es1968: fix sleep...
651
  	if (!snd_es1968_ac97_wait_poll(chip)) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
652
653
654
  		data = inw(chip->io_port + ESM_AC97_DATA);
  		/*msleep(1);*/
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
655
656
657
658
659
  
  	return data;
  }
  
  /* no spinlock */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
660
  static void apu_index_set(struct es1968 *chip, u16 index)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
661
662
663
664
665
666
667
668
669
670
671
  {
  	int i;
  	__maestro_write(chip, IDR1_CRAM_POINTER, index);
  	for (i = 0; i < 1000; i++)
  		if (__maestro_read(chip, IDR1_CRAM_POINTER) == index)
  			return;
  	snd_printd("es1968: APU register select failed. (Timeout)
  ");
  }
  
  /* no spinlock */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
672
  static void apu_data_set(struct es1968 *chip, u16 data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
673
674
675
676
677
678
679
680
681
682
683
684
  {
  	int i;
  	for (i = 0; i < 1000; i++) {
  		if (__maestro_read(chip, IDR0_DATA_PORT) == data)
  			return;
  		__maestro_write(chip, IDR0_DATA_PORT, data);
  	}
  	snd_printd("es1968: APU register set probably failed (Timeout)!
  ");
  }
  
  /* no spinlock */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
685
  static void __apu_set_register(struct es1968 *chip, u16 channel, u8 reg, u16 data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
686
  {
da3cec35d   Takashi Iwai   ALSA: Kill snd_as...
687
688
  	if (snd_BUG_ON(channel >= NR_APUS))
  		return;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
689
690
691
692
693
694
695
  #ifdef CONFIG_PM
  	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...
696
  static void apu_set_register(struct es1968 *chip, u16 channel, u8 reg, u16 data)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
697
698
699
700
701
702
  {
  	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...
703
  static u16 __apu_get_register(struct es1968 *chip, u16 channel, u8 reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
704
  {
da3cec35d   Takashi Iwai   ALSA: Kill snd_as...
705
706
  	if (snd_BUG_ON(channel >= NR_APUS))
  		return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
707
708
709
710
  	reg |= (channel << 4);
  	apu_index_set(chip, reg);
  	return __maestro_read(chip, IDR0_DATA_PORT);
  }
858119e15   Arjan van de Ven   [PATCH] Unlinline...
711
  static u16 apu_get_register(struct es1968 *chip, u16 channel, u8 reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
712
713
714
715
716
717
718
719
720
721
  {
  	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...
722
  static void assp_set_register(struct es1968 *chip, u32 reg, u32 value)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
723
724
725
726
727
728
729
730
  {
  	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...
731
  static u32 assp_get_register(struct es1968 *chip, u32 reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
732
733
734
735
736
737
738
739
740
741
742
743
744
  {
  	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...
745
  static void wave_set_register(struct es1968 *chip, u16 reg, u16 value)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
746
747
748
749
750
751
752
753
  {
  	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...
754
  static u16 wave_get_register(struct es1968 *chip, u16 reg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
  {
  	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...
770
  static void snd_es1968_bob_stop(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
771
772
773
774
775
776
777
778
779
780
  {
  	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...
781
  static void snd_es1968_bob_start(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
810
811
812
813
814
815
816
817
818
819
820
  {
  	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...
821
  static void snd_es1968_bob_inc(struct es1968 *chip, int freq)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
822
823
824
825
826
827
828
829
830
831
832
833
834
  {
  	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...
835
  static void snd_es1968_bob_dec(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
836
837
838
839
840
841
  {
  	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
842
  		int max_freq = ESM_BOB_FREQ;
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
843
844
  		struct esschan *es;
  		list_for_each_entry(es, &chip->substream_list, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
845
846
847
848
849
850
851
852
853
854
855
856
  			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...
857
858
  snd_es1968_calc_bob_rate(struct es1968 *chip, struct esschan *es,
  			 struct snd_pcm_runtime *runtime)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
  {
  	/* 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...
878
  static u32 snd_es1968_compute_rate(struct es1968 *chip, u32 freq)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
879
880
881
882
883
884
885
886
887
888
  {
  	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 ...
889
  static inline unsigned int
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
890
  snd_es1968_get_dma_ptr(struct es1968 *chip, struct esschan *es)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
891
892
893
894
895
896
897
898
899
  {
  	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...
900
  static void snd_es1968_apu_set_freq(struct es1968 *chip, int apu, int freq)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
901
902
903
904
905
906
907
908
  {
  	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...
909
  static inline void snd_es1968_trigger_apu(struct es1968 *esm, int apu, int mode)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
910
911
912
913
914
915
  {
  	/* 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...
916
  static void snd_es1968_pcm_start(struct es1968 *chip, struct esschan *es)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
  {
  	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...
935
  static void snd_es1968_pcm_stop(struct es1968 *chip, struct esschan *es)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
936
937
938
939
940
941
942
943
944
945
946
947
  {
  	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...
948
  static void snd_es1968_program_wavecache(struct es1968 *chip, struct esschan *es,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
  					 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);
  
  #ifdef CONFIG_PM
  	es->wc_map[channel] = tmpval;
  #endif
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
967
968
  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
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
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
  {
  	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...
1068
  static void init_capture_apu(struct es1968 *chip, struct esschan *es, int channel,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
  			     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...
1112
1113
  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
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
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
  {
  	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...
1180
  static int snd_es1968_pcm_prepare(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1181
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1182
1183
1184
  	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
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
  
  	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...
1211
  static int snd_es1968_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1212
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1213
1214
  	struct es1968 *chip = snd_pcm_substream_chip(substream);
  	struct esschan *es = substream->runtime->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
  
  	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...
1240
  static snd_pcm_uframes_t snd_es1968_pcm_pointer(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1241
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1242
1243
  	struct es1968 *chip = snd_pcm_substream_chip(substream);
  	struct esschan *es = substream->runtime->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1244
1245
1246
1247
1248
1249
  	unsigned int ptr;
  
  	ptr = snd_es1968_get_dma_ptr(chip, es) << es->wav_shift;
  	
  	return bytes_to_frames(substream->runtime, ptr % es->dma_size);
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1250
  static struct snd_pcm_hardware snd_es1968_playback = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
  	.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,
  };
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1270
  static struct snd_pcm_hardware snd_es1968_capture = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
  	.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...
1297
  static int calc_available_memory_size(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1298
  {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1299
  	int max_size = 0;
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
1300
  	struct esm_memory *buf;
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1301
  	mutex_lock(&chip->memory_mutex);
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
1302
  	list_for_each_entry(buf, &chip->buf_list, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1303
1304
1305
  		if (buf->empty && buf->buf.bytes > max_size)
  			max_size = buf->buf.bytes;
  	}
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1306
  	mutex_unlock(&chip->memory_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1307
1308
1309
1310
1311
1312
  	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...
1313
  static struct esm_memory *snd_es1968_new_memory(struct es1968 *chip, int size)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1314
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1315
  	struct esm_memory *buf;
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
1316

7ab399262   Clemens Ladisch   [ALSA] use the AL...
1317
  	size = ALIGN(size, ESM_MEM_ALIGN);
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1318
  	mutex_lock(&chip->memory_mutex);
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
1319
  	list_for_each_entry(buf, &chip->buf_list, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1320
1321
1322
  		if (buf->empty && buf->buf.bytes >= size)
  			goto __found;
  	}
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1323
  	mutex_unlock(&chip->memory_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1324
1325
1326
1327
  	return NULL;
  
  __found:
  	if (buf->buf.bytes > size) {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1328
  		struct esm_memory *chunk = kmalloc(sizeof(*chunk), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1329
  		if (chunk == NULL) {
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1330
  			mutex_unlock(&chip->memory_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
  			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 ...
1342
  	mutex_unlock(&chip->memory_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1343
1344
1345
1346
  	return buf;
  }
  
  /* free a memory chunk */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1347
  static void snd_es1968_free_memory(struct es1968 *chip, struct esm_memory *buf)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1348
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1349
  	struct esm_memory *chunk;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1350

62932df8f   Ingo Molnar   [ALSA] semaphore ...
1351
  	mutex_lock(&chip->memory_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1352
1353
  	buf->empty = 1;
  	if (buf->list.prev != &chip->buf_list) {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1354
  		chunk = list_entry(buf->list.prev, struct esm_memory, list);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1355
1356
1357
1358
1359
1360
1361
1362
  		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...
1363
  		chunk = list_entry(buf->list.next, struct esm_memory, list);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1364
1365
1366
1367
1368
1369
  		if (chunk->empty) {
  			buf->buf.bytes += chunk->buf.bytes;
  			list_del(&chunk->list);
  			kfree(chunk);
  		}
  	}
62932df8f   Ingo Molnar   [ALSA] semaphore ...
1370
  	mutex_unlock(&chip->memory_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1371
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1372
  static void snd_es1968_free_dmabuf(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1373
1374
1375
1376
1377
1378
1379
  {
  	struct list_head *p;
  
  	if (! chip->dma.area)
  		return;
  	snd_dma_reserve_buf(&chip->dma, snd_dma_pci_buf_id(chip->pci));
  	while ((p = chip->buf_list.next) != &chip->buf_list) {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1380
  		struct esm_memory *chunk = list_entry(p, struct esm_memory, list);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1381
1382
1383
1384
1385
1386
  		list_del(p);
  		kfree(chunk);
  	}
  }
  
  static int __devinit
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1387
  snd_es1968_init_dmabuf(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1388
1389
  {
  	int err;
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1390
  	struct esm_memory *chunk;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1391
1392
1393
1394
1395
1396
1397
1398
  
  	chip->dma.dev.type = SNDRV_DMA_TYPE_DEV;
  	chip->dma.dev.dev = snd_dma_pci_data(chip->pci);
  	if (! snd_dma_get_reserved_buf(&chip->dma, snd_dma_pci_buf_id(chip->pci))) {
  		err = snd_dma_alloc_pages_fallback(SNDRV_DMA_TYPE_DEV,
  						   snd_dma_pci_data(chip->pci),
  						   chip->total_bufsize, &chip->dma);
  		if (err < 0 || ! chip->dma.area) {
99b359ba1   Takashi Iwai   [ALSA] Add missin...
1399
1400
  			snd_printk(KERN_ERR "es1968: can't allocate dma pages for size %d
  ",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1401
1402
1403
1404
1405
  				   chip->total_bufsize);
  			return -ENOMEM;
  		}
  		if ((chip->dma.addr + chip->dma.bytes - 1) & ~((1 << 28) - 1)) {
  			snd_dma_free_pages(&chip->dma);
99b359ba1   Takashi Iwai   [ALSA] Add missin...
1406
1407
  			snd_printk(KERN_ERR "es1968: DMA buffer beyond 256MB.
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
  			return -ENOMEM;
  		}
  	}
  
  	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...
1432
1433
  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
1434
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1435
1436
1437
  	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
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
  	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) {
  		// snd_printd("cannot allocate dma buffer: size = %d
  ", size);
  		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...
1458
  static int snd_es1968_hw_free(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1459
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1460
1461
1462
  	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
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
  	
  	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...
1478
  static int snd_es1968_alloc_apu_pair(struct es1968 *chip, int type)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
  {
  	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...
1495
  static void snd_es1968_free_apu_pair(struct es1968 *chip, int apu)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1496
1497
1498
1499
1500
1501
1502
1503
  {
  	chip->apu[apu] = chip->apu[apu + 1] = ESM_APU_FREE;
  }
  
  
  /******************
   * PCM open/close *
   ******************/
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1504
  static int snd_es1968_playback_open(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1505
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1506
1507
1508
  	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
1509
1510
1511
1512
1513
1514
  	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...
1515
  	es = kzalloc(sizeof(*es), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
  	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...
1533

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1534
1535
1536
1537
1538
1539
  	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...
1540
  static int snd_es1968_capture_open(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1541
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1542
1543
1544
  	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
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
  	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...
1556
  	es = kzalloc(sizeof(*es), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
  	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...
1588
  	snd_pcm_hw_constraint_pow2(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1589
1590
1591
1592
1593
1594
  	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...
1595
  static int snd_es1968_playback_close(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1596
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1597
1598
  	struct es1968 *chip = snd_pcm_substream_chip(substream);
  	struct esschan *es;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
  
  	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...
1611
  static int snd_es1968_capture_close(struct snd_pcm_substream *substream)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1612
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1613
1614
  	struct es1968 *chip = snd_pcm_substream_chip(substream);
  	struct esschan *es;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
  
  	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;
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1629
  static struct snd_pcm_ops snd_es1968_playback_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1630
1631
1632
1633
1634
1635
1636
1637
1638
  	.open =		snd_es1968_playback_open,
  	.close =	snd_es1968_playback_close,
  	.ioctl =	snd_pcm_lib_ioctl,
  	.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,
  };
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1639
  static struct snd_pcm_ops snd_es1968_capture_ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
  	.open =		snd_es1968_capture_open,
  	.close =	snd_es1968_capture_close,
  	.ioctl =	snd_pcm_lib_ioctl,
  	.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 */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1655
  static void __devinit es1968_measure_clock(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1656
1657
1658
  {
  	int i, apu;
  	unsigned int pa, offset, t;
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1659
  	struct esm_memory *memory;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1660
1661
1662
1663
1664
1665
1666
  	struct timeval start_time, stop_time;
  
  	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) {
99b359ba1   Takashi Iwai   [ALSA] Add missin...
1667
1668
  		snd_printk(KERN_ERR "Hmm, cannot find empty APU pair!?
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1669
1670
1671
  		return;
  	}
  	if ((memory = snd_es1968_new_memory(chip, CLOCK_MEASURE_BUFSIZE)) == NULL) {
99b359ba1   Takashi Iwai   [ALSA] Add missin...
1672
1673
  		snd_printk(KERN_ERR "cannot allocate dma buffer - using default clock %d
  ", chip->clock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
  		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);
  	do_gettimeofday(&start_time);
  	spin_unlock_irq(&chip->reg_lock);
ef21ca24f   Nishanth Aravamudan   [ALSA] sound/pci:...
1713
  	msleep(50);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
  	spin_lock_irq(&chip->reg_lock);
  	offset = __apu_get_register(chip, apu, 5);
  	do_gettimeofday(&stop_time);
  	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);
  
  	t = stop_time.tv_sec - start_time.tv_sec;
  	t *= 1000000;
  	if (stop_time.tv_usec < start_time.tv_usec)
  		t -= start_time.tv_usec - stop_time.tv_usec;
  	else
  		t += stop_time.tv_usec - start_time.tv_usec;
  	if (t == 0) {
99b359ba1   Takashi Iwai   [ALSA] Add missin...
1734
1735
  		snd_printk(KERN_ERR "?? calculation error..
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
  	} 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;
  		}
  		printk(KERN_INFO "es1968: clocking to %d
  ", chip->clock);
  	}
  	snd_es1968_free_memory(chip, memory);
  	snd_es1968_free_apu_pair(chip, apu);
  }
  
  
  /*
   */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1753
  static void snd_es1968_pcm_free(struct snd_pcm *pcm)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1754
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1755
  	struct es1968 *esm = pcm->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1756
1757
1758
1759
1760
  	snd_es1968_free_dmabuf(esm);
  	esm->pcm = NULL;
  }
  
  static int __devinit
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1761
  snd_es1968_pcm(struct es1968 *chip, int device)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1762
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1763
  	struct snd_pcm *pcm;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
  	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...
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
  /*
   * 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...
1807
  	if (diff > 1)
f24bfa53d   Andreas Mueller   [ALSA] es1968: fi...
1808
  		__maestro_write(chip, IDR0_DATA_PORT, cp1);
f24bfa53d   Andreas Mueller   [ALSA] es1968: fi...
1809
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1810
1811
1812
1813
  
  /*
   * update pointer
   */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1814
  static void snd_es1968_update_pcm(struct es1968 *chip, struct esschan *es)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1815
1816
1817
  {
  	unsigned int hwptr;
  	unsigned int diff;
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1818
  	struct snd_pcm_substream *subs = es->substream;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
          
  	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:...
1838
1839
1840
1841
  /* 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...
1842
  static void es1968_update_hw_volume(struct work_struct *work)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1843
  {
30bdee025   Takashi Iwai   ALSA: es1968,maes...
1844
  	struct es1968 *chip = container_of(work, struct es1968, hwvol_work);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1845
  	int x, val;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1846
1847
1848
1849
  
  	/* Figure out which volume control button was pushed,
  	   based on differences from the default register
  	   values. */
679e28eef   Ville Syrjala   [ALSA] es1968: Fi...
1850
  	x = inb(chip->io_port + 0x1c) & 0xee;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1851
1852
1853
1854
1855
1856
1857
1858
  	/* 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:...
1859
  #ifndef CONFIG_SND_ES1968_INPUT
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1860
1861
  	if (! chip->master_switch || ! chip->master_volume)
  		return;
30bdee025   Takashi Iwai   ALSA: es1968,maes...
1862
  	val = snd_ac97_read(chip->ac97, AC97_MASTER);
679e28eef   Ville Syrjala   [ALSA] es1968: Fi...
1863
1864
  	switch (x) {
  	case 0x88:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1865
1866
  		/* mute */
  		val ^= 0x8000;
679e28eef   Ville Syrjala   [ALSA] es1968: Fi...
1867
1868
1869
1870
1871
1872
1873
  		break;
  	case 0xaa:
  		/* volume up */
  		if ((val & 0x7f) > 0)
  			val--;
  		if ((val & 0x7f00) > 0)
  			val -= 0x0100;
679e28eef   Ville Syrjala   [ALSA] es1968: Fi...
1874
1875
1876
1877
1878
1879
1880
  		break;
  	case 0x66:
  		/* volume down */
  		if ((val & 0x7f) < 0x1f)
  			val++;
  		if ((val & 0x7f00) < 0x1f00)
  			val += 0x0100;
679e28eef   Ville Syrjala   [ALSA] es1968: Fi...
1881
  		break;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1882
  	}
30bdee025   Takashi Iwai   ALSA: es1968,maes...
1883
1884
1885
  	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:...
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
  #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
1915
1916
1917
1918
1919
  }
  
  /*
   * interrupt handler
   */
7d12e780e   David Howells   IRQ: Maintain reg...
1920
  static irqreturn_t snd_es1968_interrupt(int irq, void *dev_id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1921
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1922
  	struct es1968 *chip = dev_id;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1923
1924
1925
1926
1927
1928
1929
1930
  	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...
1931
  		schedule_work(&chip->hwvol_work);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1932
1933
1934
1935
1936
  
  	/* 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...
1937
  		snd_mpu401_uart_interrupt(irq, chip->rmidi->private_data);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1938
1939
1940
  	}
  
  	if (event & ESM_SOUND_IRQ) {
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
1941
  		struct esschan *es;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1942
  		spin_lock(&chip->substream_lock);
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
1943
  		list_for_each_entry(es, &chip->substream_list, list) {
f24bfa53d   Andreas Mueller   [ALSA] es1968: fi...
1944
  			if (es->running) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1945
  				snd_es1968_update_pcm(chip, es);
f24bfa53d   Andreas Mueller   [ALSA] es1968: fi...
1946
1947
1948
  				if (es->fmt & ESS_FMT_STEREO)
  					snd_es1968_suppress_jitter(chip, es);
  			}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
  		}
  		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
   */
  
  static int __devinit
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1967
  snd_es1968_mixer(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1968
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1969
1970
  	struct snd_ac97_bus *pbus;
  	struct snd_ac97_template ac97;
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
1971
  #ifndef CONFIG_SND_ES1968_INPUT
3463d8fa1   Harvey Harrison   [ALSA] sound: es1...
1972
  	struct snd_ctl_elem_id elem_id;
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
1973
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1974
  	int err;
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
1975
  	static struct snd_ac97_bus_ops ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
  		.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:...
1988
  #ifndef CONFIG_SND_ES1968_INPUT
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1989
  	/* attach master switch / volumes for h/w volume control */
3463d8fa1   Harvey Harrison   [ALSA] sound: es1...
1990
1991
1992
1993
1994
1995
1996
1997
  	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:...
1998
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1999
2000
2001
2002
2003
2004
2005
  
  	return 0;
  }
  
  /*
   * reset ac97 codec
   */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2006
  static void snd_es1968_ac97_reset(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
  {
  	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:...
2035
  	msleep(20);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
  
  	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:...
2051
  	msleep(500);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2052
2053
2054
2055
2056
  	//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.. */
99b359ba1   Takashi Iwai   [ALSA] Add missin...
2057
2058
  	snd_printk(KERN_INFO "trying software reset
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
  	/* 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:...
2078
  			msleep(500);	/* oh my.. */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
  			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...
2111
  static void snd_es1968_reset(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
  {
  	/* 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
2122
2123
   * initialize maestro chip
   */
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2124
  static void snd_es1968_chip_init(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
  {
  	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
2143
2144
  	/* Config Reg A */
  	pci_read_config_word(pci, ESM_CONFIG_A, &w);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2145
  	w &= ~DMA_CLEAR;	/* Clear DMA bits */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2146
2147
2148
  	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...
2149
  	w |= PCI_TIMING;	/* PCI timing on */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
  	/* 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...
2189
  	w |= ESS_DISABLE_AUDIO;	/* Disable Legacy Audio */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
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
2216
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
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
  	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,
  	   regardless of wether we use the assp or not. */
  
  	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...
2313
  static void snd_es1968_start_irq(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2314
2315
2316
2317
2318
  {
  	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...
2319
  	outb(w, chip->io_port + 0x1A);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2320
2321
2322
2323
2324
2325
2326
  	outw(w, chip->io_port + ESM_PORT_HOST_IRQ);
  }
  
  #ifdef CONFIG_PM
  /*
   * PM support
   */
1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2327
  static int es1968_suspend(struct pci_dev *pci, pm_message_t state)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2328
  {
1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2329
2330
  	struct snd_card *card = pci_get_drvdata(pci);
  	struct es1968 *chip = card->private_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2331
2332
2333
2334
2335
  
  	if (! chip->do_pm)
  		return 0;
  
  	chip->in_suspend = 1;
30bdee025   Takashi Iwai   ALSA: es1968,maes...
2336
  	cancel_work_sync(&chip->hwvol_work);
1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2337
  	snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2338
2339
2340
  	snd_pcm_suspend_all(chip->pcm);
  	snd_ac97_suspend(chip->ac97);
  	snd_es1968_bob_stop(chip);
30b35399c   Takashi Iwai   [ALSA] Various fi...
2341

1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2342
2343
  	pci_disable_device(pci);
  	pci_save_state(pci);
30b35399c   Takashi Iwai   [ALSA] Various fi...
2344
  	pci_set_power_state(pci, pci_choose_state(pci, state));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2345
2346
  	return 0;
  }
1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2347
  static int es1968_resume(struct pci_dev *pci)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2348
  {
1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2349
2350
  	struct snd_card *card = pci_get_drvdata(pci);
  	struct es1968 *chip = card->private_data;
50f47ff1b   Matthias Kaehlcke   [ALSA] ESS Maestr...
2351
  	struct esschan *es;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2352
2353
2354
2355
2356
  
  	if (! chip->do_pm)
  		return 0;
  
  	/* restore all our config */
30b35399c   Takashi Iwai   [ALSA] Various fi...
2357
  	pci_set_power_state(pci, PCI_D0);
1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2358
  	pci_restore_state(pci);
30b35399c   Takashi Iwai   [ALSA] Various fi...
2359
2360
2361
2362
2363
2364
2365
  	if (pci_enable_device(pci) < 0) {
  		printk(KERN_ERR "es1968: pci_enable_device failed, "
  		       "disabling device
  ");
  		snd_card_disconnect(card);
  		return -EIO;
  	}
1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2366
  	pci_set_master(pci);
30b35399c   Takashi Iwai   [ALSA] Various fi...
2367

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
  	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...
2380
  	list_for_each_entry(es, &chip->substream_list, list) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
  		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...
2394
  	snd_power_change_state(card, SNDRV_CTL_POWER_D0);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2395
2396
2397
2398
2399
2400
2401
  	chip->in_suspend = 0;
  	return 0;
  }
  #endif /* CONFIG_PM */
  
  #ifdef SUPPORT_JOYSTICK
  #define JOYSTICK_ADDR	0x200
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2402
  static int __devinit snd_es1968_create_gameport(struct es1968 *chip, int dev)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
  {
  	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) {
  		printk(KERN_ERR "es1968: cannot allocate memory for gameport
  ");
b1d5776d8   Takashi Iwai   [ALSA] Remove vma...
2419
  		release_and_free_resource(r);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
  		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...
2436
  static void snd_es1968_free_gameport(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2437
2438
2439
2440
2441
2442
  {
  	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...
2443
  		release_and_free_resource(r);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2444
2445
2446
  	}
  }
  #else
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2447
2448
  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
2449
  #endif
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
  #ifdef CONFIG_SND_ES1968_INPUT
  static int __devinit snd_es1968_input_register(struct es1968 *chip)
  {
  	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...
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
  #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 */
  /* mask bits for GPIO lines */
  #define STR_DATA	0x0040 /* GPIO6 */
  #define STR_CLK		0x0080 /* GPIO7 */
  #define STR_WREN	0x0100 /* GPIO8 */
  #define STR_MOST	0x0200 /* GPIO9 */
72587173c   Ondrej Zary   ALSA: es1968: con...
2496
  static void snd_es1968_tea575x_set_pins(struct snd_tea575x *tea, u8 pins)
1872f5899   Ondrej Zary   ALSA: es1968: add...
2497
2498
2499
  {
  	struct es1968 *chip = tea->private_data;
  	unsigned long io = chip->io_port + GPIO_DATA;
72587173c   Ondrej Zary   ALSA: es1968: con...
2500
  	u16 val = 0;
1872f5899   Ondrej Zary   ALSA: es1968: add...
2501

72587173c   Ondrej Zary   ALSA: es1968: con...
2502
2503
2504
  	val |= (pins & TEA575X_DATA) ? STR_DATA : 0;
  	val |= (pins & TEA575X_CLK)  ? STR_CLK  : 0;
  	val |= (pins & TEA575X_WREN) ? STR_WREN : 0;
1872f5899   Ondrej Zary   ALSA: es1968: add...
2505

72587173c   Ondrej Zary   ALSA: es1968: con...
2506
  	outw(val, io);
1872f5899   Ondrej Zary   ALSA: es1968: add...
2507
  }
72587173c   Ondrej Zary   ALSA: es1968: con...
2508
  static u8 snd_es1968_tea575x_get_pins(struct snd_tea575x *tea)
1872f5899   Ondrej Zary   ALSA: es1968: add...
2509
2510
2511
  {
  	struct es1968 *chip = tea->private_data;
  	unsigned long io = chip->io_port + GPIO_DATA;
72587173c   Ondrej Zary   ALSA: es1968: con...
2512
  	u16 val = inw(io);
1872f5899   Ondrej Zary   ALSA: es1968: add...
2513

72587173c   Ondrej Zary   ALSA: es1968: con...
2514
2515
  	return  (val & STR_DATA) ? TEA575X_DATA : 0 |
  		(val & STR_MOST) ? TEA575X_MOST : 0;
1872f5899   Ondrej Zary   ALSA: es1968: add...
2516
  }
72587173c   Ondrej Zary   ALSA: es1968: con...
2517
  static void snd_es1968_tea575x_set_direction(struct snd_tea575x *tea, bool output)
1872f5899   Ondrej Zary   ALSA: es1968: add...
2518
2519
2520
  {
  	struct es1968 *chip = tea->private_data;
  	unsigned long io = chip->io_port + GPIO_DATA;
72587173c   Ondrej Zary   ALSA: es1968: con...
2521
  	u16 odir = inw(io + IO_DIR);
1872f5899   Ondrej Zary   ALSA: es1968: add...
2522

72587173c   Ondrej Zary   ALSA: es1968: con...
2523
2524
2525
2526
2527
2528
2529
  	if (output) {
  		outw(~(STR_DATA | STR_CLK | STR_WREN), io + IO_MASK);
  		outw(odir | STR_DATA | STR_CLK | STR_WREN, io + IO_DIR);
  	} else {
  		outw(~(STR_CLK | STR_WREN | STR_DATA | STR_MOST), io + IO_MASK);
  		outw((odir & ~(STR_DATA | STR_MOST)) | STR_CLK | STR_WREN, io + IO_DIR);
  	}
1872f5899   Ondrej Zary   ALSA: es1968: add...
2530
2531
2532
  }
  
  static struct snd_tea575x_ops snd_es1968_tea_ops = {
72587173c   Ondrej Zary   ALSA: es1968: con...
2533
2534
2535
  	.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...
2536
2537
  };
  #endif
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2538
  static int snd_es1968_free(struct es1968 *chip)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2539
  {
30bdee025   Takashi Iwai   ALSA: es1968,maes...
2540
  	cancel_work_sync(&chip->hwvol_work);
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
2541
2542
2543
2544
  #ifdef CONFIG_SND_ES1968_INPUT
  	if (chip->input_dev)
  		input_unregister_device(chip->input_dev);
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2545
  	if (chip->io_port) {
f000fd809   Jeff Garzik   [ALSA] Fix synchr...
2546
2547
  		if (chip->irq >= 0)
  			synchronize_irq(chip->irq);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2548
2549
2550
  		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...
2551
2552
2553
  #ifdef CONFIG_SND_ES1968_RADIO
  	snd_tea575x_exit(&chip->tea);
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2554
  	if (chip->irq >= 0)
437a5a460   Takashi Iwai   [ALSA] Remove IRQ...
2555
  		free_irq(chip->irq, chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2556
  	snd_es1968_free_gameport(chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2557
2558
2559
2560
2561
  	pci_release_regions(chip->pci);
  	pci_disable_device(chip->pci);
  	kfree(chip);
  	return 0;
  }
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2562
  static int snd_es1968_dev_free(struct snd_device *device)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2563
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2564
  	struct es1968 *chip = device->device_data;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
  	return snd_es1968_free(chip);
  }
  
  struct ess_device_list {
  	unsigned short type;	/* chip type */
  	unsigned short vendor;	/* subsystem vendor id */
  };
  
  static struct ess_device_list pm_whitelist[] __devinitdata = {
  	{ 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...
2579
  	{ TYPE_MAESTRO2E, 0x1558 },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2580
2581
2582
2583
2584
  };
  
  static struct ess_device_list mpu_blacklist[] __devinitdata = {
  	{ TYPE_MAESTRO2, 0x125d },
  };
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2585
  static int __devinit snd_es1968_create(struct snd_card *card,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2586
2587
2588
2589
2590
2591
  				       struct pci_dev *pci,
  				       int total_bufsize,
  				       int play_streams,
  				       int capt_streams,
  				       int chip_type,
  				       int do_pm,
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2592
  				       struct es1968 **chip_ret)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2593
  {
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2594
  	static struct snd_device_ops ops = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2595
2596
  		.dev_free =	snd_es1968_dev_free,
  	};
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2597
  	struct es1968 *chip;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2598
2599
2600
2601
2602
2603
2604
2605
  	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 */
ce0b62016   Yang Hongyang   dma-mapping: repl...
2606
2607
  	if (pci_set_dma_mask(pci, DMA_BIT_MASK(28)) < 0 ||
  	    pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(28)) < 0) {
99b359ba1   Takashi Iwai   [ALSA] Add missin...
2608
2609
  		snd_printk(KERN_ERR "architecture does not support 28bit PCI busmaster DMA
  ");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2610
2611
2612
  		pci_disable_device(pci);
  		return -ENXIO;
  	}
e560d8d83   Takashi Iwai   [ALSA] Replace wi...
2613
  	chip = kzalloc(sizeof(*chip), GFP_KERNEL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
  	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 ...
2625
  	mutex_init(&chip->memory_mutex);
30bdee025   Takashi Iwai   ALSA: es1968,maes...
2626
  	INIT_WORK(&chip->hwvol_work, es1968_update_hw_volume);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
  	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...
2640
  	if (request_irq(pci->irq, snd_es1968_interrupt, IRQF_SHARED,
934c2b6d0   Takashi Iwai   ALSA: use KBUILD_...
2641
  			KBUILD_MODNAME, chip)) {
99b359ba1   Takashi Iwai   [ALSA] Add missin...
2642
2643
  		snd_printk(KERN_ERR "unable to grab IRQ %d
  ", pci->irq);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
  		snd_es1968_free(chip);
  		return -EBUSY;
  	}
  	chip->irq = pci->irq;
  	        
  	/* 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) {
  		/* disable power-management if not on the whitelist */
  		unsigned short vend;
  		pci_read_config_word(chip->pci, PCI_SUBSYSTEM_VENDOR_ID, &vend);
  		for (i = 0; i < (int)ARRAY_SIZE(pm_whitelist); i++) {
  			if (chip->type == pm_whitelist[i].type &&
  			    vend == pm_whitelist[i].vendor) {
  				do_pm = 1;
  				break;
  			}
  		}
  		if (do_pm > 1) {
  			/* not matched; disabling pm */
  			printk(KERN_INFO "es1968: not attempting power management.
  ");
  			do_pm = 0;
  		}
  	}
  	chip->do_pm = do_pm;
  
  	snd_es1968_chip_init(chip);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2681
2682
2683
2684
2685
2686
  	if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
  		snd_es1968_free(chip);
  		return err;
  	}
  
  	snd_card_set_dev(card, &pci->dev);
1872f5899   Ondrej Zary   ALSA: es1968: add...
2687
  #ifdef CONFIG_SND_ES1968_RADIO
1872f5899   Ondrej Zary   ALSA: es1968: add...
2688
2689
  	chip->tea.private_data = chip;
  	chip->tea.ops = &snd_es1968_tea_ops;
10ca72014   Ondrej Zary   ALSA: tea575x: us...
2690
2691
  	strlcpy(chip->tea.card, "SF64-PCE2", sizeof(chip->tea.card));
  	sprintf(chip->tea.bus_info, "PCI:%s", pci_name(pci));
72587173c   Ondrej Zary   ALSA: es1968: con...
2692
2693
2694
  	if (!snd_tea575x_init(&chip->tea))
  		printk(KERN_INFO "es1968: detected TEA575x radio
  ");
1872f5899   Ondrej Zary   ALSA: es1968: add...
2695
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
  	*chip_ret = chip;
  
  	return 0;
  }
  
  
  /*
   */
  static int __devinit snd_es1968_probe(struct pci_dev *pci,
  				      const struct pci_device_id *pci_id)
  {
  	static int dev;
969165a8b   Takashi Iwai   [ALSA] Remove xxx...
2708
2709
  	struct snd_card *card;
  	struct es1968 *chip;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2710
2711
2712
2713
2714
2715
2716
2717
2718
  	unsigned int i;
  	int err;
  
  	if (dev >= SNDRV_CARDS)
  		return -ENODEV;
  	if (!enable[dev]) {
  		dev++;
  		return -ENOENT;
  	}
e58de7baf   Takashi Iwai   ALSA: Convert to ...
2719
2720
2721
  	err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
  	if (err < 0)
  		return err;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
                  
  	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],
  				     &chip)) < 0) {
  		snd_card_free(card);
  		return err;
  	}
1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2737
  	card->private_data = chip;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2738
2739
2740
2741
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
2769
2770
2771
2772
2773
2774
2775
2776
2777
  
  	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) {
  		/* check the black list */
  		unsigned short vend;
  		pci_read_config_word(chip->pci, PCI_SUBSYSTEM_VENDOR_ID, &vend);
  		for (i = 0; i < ARRAY_SIZE(mpu_blacklist); i++) {
  			if (chip->type == mpu_blacklist[i].type &&
  			    vend == mpu_blacklist[i].vendor) {
  				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 ...
2778
  					       chip->io_port + ESM_MPU401_PORT,
dba8b4699   Clemens Ladisch   ALSA: mpu401: cle...
2779
2780
2781
  					       MPU401_INFO_INTEGRATED |
  					       MPU401_INFO_IRQ_HOOK,
  					       -1, &chip->rmidi)) < 0) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2782
2783
2784
2785
2786
2787
  			printk(KERN_WARNING "es1968: skipping MPU-401 MIDI support..
  ");
  		}
  	}
  
  	snd_es1968_create_gameport(chip, dev);
5a5e02e50   Hans de Goede   ALSA: snd-es1968:...
2788
2789
2790
2791
2792
2793
  #ifdef CONFIG_SND_ES1968_INPUT
  	err = snd_es1968_input_register(chip);
  	if (err)
  		snd_printk(KERN_WARNING "Input device registration "
  			"failed with error %i", err);
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
  	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;
  }
  
  static void __devexit snd_es1968_remove(struct pci_dev *pci)
  {
  	snd_card_free(pci_get_drvdata(pci));
  	pci_set_drvdata(pci, NULL);
  }
  
  static struct pci_driver driver = {
3733e424c   Takashi Iwai   ALSA: Use KBUILD_...
2819
  	.name = KBUILD_MODNAME,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2820
2821
2822
  	.id_table = snd_es1968_ids,
  	.probe = snd_es1968_probe,
  	.remove = __devexit_p(snd_es1968_remove),
1d4b822be   Takashi Iwai   [ALSA] es1968 - F...
2823
2824
2825
2826
  #ifdef CONFIG_PM
  	.suspend = es1968_suspend,
  	.resume = es1968_resume,
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2827
2828
2829
2830
  };
  
  static int __init alsa_card_es1968_init(void)
  {
01d25d460   Takashi Iwai   [ALSA] Replace pc...
2831
  	return pci_register_driver(&driver);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2832
2833
2834
2835
2836
2837
2838
2839
2840
  }
  
  static void __exit alsa_card_es1968_exit(void)
  {
  	pci_unregister_driver(&driver);
  }
  
  module_init(alsa_card_es1968_init)
  module_exit(alsa_card_es1968_exit)