2 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
4 * Routines for control of EMU10K1 chips / proc interface routines
6 * Copyright (c) by James Courtier-Dutton <James@superbug.co.uk>
7 * Added EMU 1010 support.
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #include <linux/slab.h>
32 #include <linux/init.h>
33 #include <sound/core.h>
34 #include <sound/emu10k1.h>
37 static void snd_emu10k1_proc_spdif_status(struct snd_emu10k1
* emu
,
38 struct snd_info_buffer
*buffer
,
43 static char *clkaccy
[4] = { "1000ppm", "50ppm", "variable", "unknown" };
44 static int samplerate
[16] = { 44100, 1, 48000, 32000, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
45 static char *channel
[16] = { "unspec", "left", "right", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15" };
46 static char *emphasis
[8] = { "none", "50/15 usec 2 channel", "2", "3", "4", "5", "6", "7" };
47 unsigned int status
, rate
= 0;
49 status
= snd_emu10k1_ptr_read(emu
, status_reg
, 0);
51 snd_iprintf(buffer
, "\n%s\n", title
);
53 if (status
!= 0xffffffff) {
54 snd_iprintf(buffer
, "Professional Mode : %s\n", (status
& SPCS_PROFESSIONAL
) ? "yes" : "no");
55 snd_iprintf(buffer
, "Not Audio Data : %s\n", (status
& SPCS_NOTAUDIODATA
) ? "yes" : "no");
56 snd_iprintf(buffer
, "Copyright : %s\n", (status
& SPCS_COPYRIGHT
) ? "yes" : "no");
57 snd_iprintf(buffer
, "Emphasis : %s\n", emphasis
[(status
& SPCS_EMPHASISMASK
) >> 3]);
58 snd_iprintf(buffer
, "Mode : %i\n", (status
& SPCS_MODEMASK
) >> 6);
59 snd_iprintf(buffer
, "Category Code : 0x%x\n", (status
& SPCS_CATEGORYCODEMASK
) >> 8);
60 snd_iprintf(buffer
, "Generation Status : %s\n", status
& SPCS_GENERATIONSTATUS
? "original" : "copy");
61 snd_iprintf(buffer
, "Source Mask : %i\n", (status
& SPCS_SOURCENUMMASK
) >> 16);
62 snd_iprintf(buffer
, "Channel Number : %s\n", channel
[(status
& SPCS_CHANNELNUMMASK
) >> 20]);
63 snd_iprintf(buffer
, "Sample Rate : %iHz\n", samplerate
[(status
& SPCS_SAMPLERATEMASK
) >> 24]);
64 snd_iprintf(buffer
, "Clock Accuracy : %s\n", clkaccy
[(status
& SPCS_CLKACCYMASK
) >> 28]);
67 rate
= snd_emu10k1_ptr_read(emu
, rate_reg
, 0);
68 snd_iprintf(buffer
, "S/PDIF Valid : %s\n", rate
& SRCS_SPDIFVALID
? "on" : "off");
69 snd_iprintf(buffer
, "S/PDIF Locked : %s\n", rate
& SRCS_SPDIFLOCKED
? "on" : "off");
70 snd_iprintf(buffer
, "Rate Locked : %s\n", rate
& SRCS_RATELOCKED
? "on" : "off");
71 /* From ((Rate * 48000 ) / 262144); */
72 snd_iprintf(buffer
, "Estimated Sample Rate : %d\n", ((rate
& 0xFFFFF ) * 375) >> 11);
75 snd_iprintf(buffer
, "No signal detected.\n");
80 static void snd_emu10k1_proc_read(struct snd_info_entry
*entry
,
81 struct snd_info_buffer
*buffer
)
83 /* FIXME - output names are in emufx.c too */
84 static char *creative_outs
[32] = {
86 /* 01 */ "AC97 Right",
87 /* 02 */ "Optical IEC958 Left",
88 /* 03 */ "Optical IEC958 Right",
91 /* 06 */ "Headphone Left",
92 /* 07 */ "Headphone Right",
93 /* 08 */ "Surround Left",
94 /* 09 */ "Surround Right",
95 /* 10 */ "PCM Capture Left",
96 /* 11 */ "PCM Capture Right",
97 /* 12 */ "MIC Capture",
98 /* 13 */ "AC97 Surround Left",
99 /* 14 */ "AC97 Surround Right",
102 /* 17 */ "Analog Center",
103 /* 18 */ "Analog LFE",
119 static char *audigy_outs
[64] = {
120 /* 00 */ "Digital Front Left",
121 /* 01 */ "Digital Front Right",
122 /* 02 */ "Digital Center",
123 /* 03 */ "Digital LEF",
124 /* 04 */ "Headphone Left",
125 /* 05 */ "Headphone Right",
126 /* 06 */ "Digital Rear Left",
127 /* 07 */ "Digital Rear Right",
128 /* 08 */ "Front Left",
129 /* 09 */ "Front Right",
134 /* 14 */ "Rear Left",
135 /* 15 */ "Rear Right",
136 /* 16 */ "AC97 Front Left",
137 /* 17 */ "AC97 Front Right",
138 /* 18 */ "ADC Caputre Left",
139 /* 19 */ "ADC Capture Right",
162 /* 42 */ "FXBUS2_10",
163 /* 43 */ "FXBUS2_11",
164 /* 44 */ "FXBUS2_12",
165 /* 45 */ "FXBUS2_13",
166 /* 46 */ "FXBUS2_14",
167 /* 47 */ "FXBUS2_15",
168 /* 48 */ "FXBUS2_16",
169 /* 49 */ "FXBUS2_17",
170 /* 50 */ "FXBUS2_18",
171 /* 51 */ "FXBUS2_19",
172 /* 52 */ "FXBUS2_20",
173 /* 53 */ "FXBUS2_21",
174 /* 54 */ "FXBUS2_22",
175 /* 55 */ "FXBUS2_23",
176 /* 56 */ "FXBUS2_24",
177 /* 57 */ "FXBUS2_25",
178 /* 58 */ "FXBUS2_26",
179 /* 59 */ "FXBUS2_27",
180 /* 60 */ "FXBUS2_28",
181 /* 61 */ "FXBUS2_29",
182 /* 62 */ "FXBUS2_30",
186 struct snd_emu10k1
*emu
= entry
->private_data
;
187 unsigned int val
, val1
;
188 int nefx
= emu
->audigy
? 64 : 32;
189 char **outputs
= emu
->audigy
? audigy_outs
: creative_outs
;
192 snd_iprintf(buffer
, "EMU10K1\n\n");
193 snd_iprintf(buffer
, "Card : %s\n",
194 emu
->audigy
? "Audigy" : (emu
->card_capabilities
->ecard
? "EMU APS" : "Creative"));
195 snd_iprintf(buffer
, "Internal TRAM (words) : 0x%x\n", emu
->fx8010
.itram_size
);
196 snd_iprintf(buffer
, "External TRAM (words) : 0x%x\n", (int)emu
->fx8010
.etram_pages
.bytes
/ 2);
197 snd_iprintf(buffer
, "\n");
198 snd_iprintf(buffer
, "Effect Send Routing :\n");
199 for (idx
= 0; idx
< NUM_G
; idx
++) {
201 snd_emu10k1_ptr_read(emu
, A_FXRT1
, idx
) :
202 snd_emu10k1_ptr_read(emu
, FXRT
, idx
);
204 snd_emu10k1_ptr_read(emu
, A_FXRT2
, idx
) :
207 snd_iprintf(buffer
, "Ch%i: A=%i, B=%i, C=%i, D=%i, ",
213 snd_iprintf(buffer
, "E=%i, F=%i, G=%i, H=%i\n",
217 (val1
>> 24) & 0x3f);
219 snd_iprintf(buffer
, "Ch%i: A=%i, B=%i, C=%i, D=%i\n",
227 snd_iprintf(buffer
, "\nCaptured FX Outputs :\n");
228 for (idx
= 0; idx
< nefx
; idx
++) {
229 if (emu
->efx_voices_mask
[idx
/32] & (1 << (idx
%32)))
230 snd_iprintf(buffer
, " Output %02i [%s]\n", idx
, outputs
[idx
]);
232 snd_iprintf(buffer
, "\nAll FX Outputs :\n");
233 for (idx
= 0; idx
< (emu
->audigy
? 64 : 32); idx
++)
234 snd_iprintf(buffer
, " Output %02i [%s]\n", idx
, outputs
[idx
]);
237 static void snd_emu10k1_proc_spdif_read(struct snd_info_entry
*entry
,
238 struct snd_info_buffer
*buffer
)
240 struct snd_emu10k1
*emu
= entry
->private_data
;
245 if (emu
->card_capabilities
->emu_model
) {
246 snd_emu1010_fpga_read(emu
, 0x38, &value
);
247 if ((value
& 0x1) == 0) {
248 snd_emu1010_fpga_read(emu
, 0x2a, &value
);
249 snd_emu1010_fpga_read(emu
, 0x2b, &value2
);
250 rate
= 0x1770000 / (((value
<< 5) | value2
)+1);
251 snd_iprintf(buffer
, "ADAT Locked : %u\n", rate
);
253 snd_iprintf(buffer
, "ADAT Unlocked\n");
255 snd_emu1010_fpga_read(emu
, 0x20, &value
);
256 if ((value
& 0x4) == 0) {
257 snd_emu1010_fpga_read(emu
, 0x28, &value
);
258 snd_emu1010_fpga_read(emu
, 0x29, &value2
);
259 rate
= 0x1770000 / (((value
<< 5) | value2
)+1);
260 snd_iprintf(buffer
, "SPDIF Locked : %d\n", rate
);
262 snd_iprintf(buffer
, "SPDIF Unlocked\n");
265 snd_emu10k1_proc_spdif_status(emu
, buffer
, "CD-ROM S/PDIF In", CDCS
, CDSRCS
);
266 snd_emu10k1_proc_spdif_status(emu
, buffer
, "Optical or Coax S/PDIF In", GPSCS
, GPSRCS
);
269 val
= snd_emu10k1_ptr_read(emu
, ZVSRCS
, 0);
270 snd_iprintf(buffer
, "\nZoomed Video\n");
271 snd_iprintf(buffer
, "Rate Locked : %s\n", val
& SRCS_RATELOCKED
? "on" : "off");
272 snd_iprintf(buffer
, "Estimated Sample Rate : 0x%x\n", val
& SRCS_ESTSAMPLERATE
);
276 static void snd_emu10k1_proc_rates_read(struct snd_info_entry
*entry
,
277 struct snd_info_buffer
*buffer
)
279 static int samplerate
[8] = { 44100, 48000, 96000, 192000, 4, 5, 6, 7 };
280 struct snd_emu10k1
*emu
= entry
->private_data
;
281 unsigned int val
, tmp
, n
;
282 val
= snd_emu10k1_ptr20_read(emu
, CAPTURE_RATE_STATUS
, 0);
283 tmp
= (val
>> 16) & 0x8;
284 for (n
= 0; n
< 4; n
++) {
285 tmp
= val
>> (16 + (n
*4));
286 if (tmp
& 0x8) snd_iprintf(buffer
, "Channel %d: Rate=%d\n", n
, samplerate
[tmp
& 0x7]);
287 else snd_iprintf(buffer
, "Channel %d: No input\n", n
);
291 static void snd_emu10k1_proc_acode_read(struct snd_info_entry
*entry
,
292 struct snd_info_buffer
*buffer
)
295 struct snd_emu10k1
*emu
= entry
->private_data
;
297 snd_iprintf(buffer
, "FX8010 Instruction List '%s'\n", emu
->fx8010
.name
);
298 snd_iprintf(buffer
, " Code dump :\n");
299 for (pc
= 0; pc
< (emu
->audigy
? 1024 : 512); pc
++) {
302 low
= snd_emu10k1_efx_read(emu
, pc
* 2);
303 high
= snd_emu10k1_efx_read(emu
, pc
* 2 + 1);
305 snd_iprintf(buffer
, " OP(0x%02x, 0x%03x, 0x%03x, 0x%03x, 0x%03x) /* 0x%04x: 0x%08x%08x */\n",
307 (high
>> 12) & 0x7ff,
314 snd_iprintf(buffer
, " OP(0x%02x, 0x%03x, 0x%03x, 0x%03x, 0x%03x) /* 0x%04x: 0x%08x%08x */\n",
316 (high
>> 10) & 0x3ff,
325 #define TOTAL_SIZE_GPR (0x100*4)
326 #define A_TOTAL_SIZE_GPR (0x200*4)
327 #define TOTAL_SIZE_TANKMEM_DATA (0xa0*4)
328 #define TOTAL_SIZE_TANKMEM_ADDR (0xa0*4)
329 #define A_TOTAL_SIZE_TANKMEM_DATA (0x100*4)
330 #define A_TOTAL_SIZE_TANKMEM_ADDR (0x100*4)
331 #define TOTAL_SIZE_CODE (0x200*8)
332 #define A_TOTAL_SIZE_CODE (0x400*8)
334 static ssize_t
snd_emu10k1_fx8010_read(struct snd_info_entry
*entry
,
335 void *file_private_data
,
336 struct file
*file
, char __user
*buf
,
337 size_t count
, loff_t pos
)
339 struct snd_emu10k1
*emu
= entry
->private_data
;
346 if (!strcmp(entry
->name
, "fx8010_tram_addr")) {
347 offset
= TANKMEMADDRREGBASE
;
349 } else if (!strcmp(entry
->name
, "fx8010_tram_data")) {
350 offset
= TANKMEMDATAREGBASE
;
351 } else if (!strcmp(entry
->name
, "fx8010_code")) {
352 offset
= emu
->audigy
? A_MICROCODEBASE
: MICROCODEBASE
;
354 offset
= emu
->audigy
? A_FXGPREGBASE
: FXGPREGBASE
;
357 tmp
= kmalloc(count
+ 8, GFP_KERNEL
);
360 for (idx
= 0; idx
< ((pos
& 3) + count
+ 3) >> 2; idx
++) {
362 val
= snd_emu10k1_ptr_read(emu
, offset
+ idx
+ (pos
>> 2), 0);
363 if (tram_addr
&& emu
->audigy
) {
365 val
|= snd_emu10k1_ptr_read(emu
, 0x100 + idx
+ (pos
>> 2), 0) << 20;
369 if (copy_to_user(buf
, ((char *)tmp
) + (pos
& 3), count
))
377 static void snd_emu10k1_proc_voices_read(struct snd_info_entry
*entry
,
378 struct snd_info_buffer
*buffer
)
380 struct snd_emu10k1
*emu
= entry
->private_data
;
381 struct snd_emu10k1_voice
*voice
;
384 snd_iprintf(buffer
, "ch\tuse\tpcm\tefx\tsynth\tmidi\n");
385 for (idx
= 0; idx
< NUM_G
; idx
++) {
386 voice
= &emu
->voices
[idx
];
387 snd_iprintf(buffer
, "%i\t%i\t%i\t%i\t%i\t%i\n",
397 #ifdef CONFIG_SND_DEBUG
398 static void snd_emu_proc_emu1010_reg_read(struct snd_info_entry
*entry
,
399 struct snd_info_buffer
*buffer
)
401 struct snd_emu10k1
*emu
= entry
->private_data
;
404 snd_iprintf(buffer
, "EMU1010 Registers:\n\n");
406 for(i
= 0; i
< 0x40; i
+=1) {
407 snd_emu1010_fpga_read(emu
, i
, &value
);
408 snd_iprintf(buffer
, "%02X: %08X, %02X\n", i
, value
, (value
>> 8) & 0x7f);
412 static void snd_emu_proc_io_reg_read(struct snd_info_entry
*entry
,
413 struct snd_info_buffer
*buffer
)
415 struct snd_emu10k1
*emu
= entry
->private_data
;
419 snd_iprintf(buffer
, "IO Registers:\n\n");
420 for(i
= 0; i
< 0x40; i
+=4) {
421 spin_lock_irqsave(&emu
->emu_lock
, flags
);
422 value
= inl(emu
->port
+ i
);
423 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
424 snd_iprintf(buffer
, "%02X: %08lX\n", i
, value
);
428 static void snd_emu_proc_io_reg_write(struct snd_info_entry
*entry
,
429 struct snd_info_buffer
*buffer
)
431 struct snd_emu10k1
*emu
= entry
->private_data
;
435 while (!snd_info_get_line(buffer
, line
, sizeof(line
))) {
436 if (sscanf(line
, "%x %x", ®
, &val
) != 2)
438 if (reg
< 0x40 && val
<= 0xffffffff) {
439 spin_lock_irqsave(&emu
->emu_lock
, flags
);
440 outl(val
, emu
->port
+ (reg
& 0xfffffffc));
441 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
446 static unsigned int snd_ptr_read(struct snd_emu10k1
* emu
,
452 unsigned int regptr
, val
;
454 regptr
= (reg
<< 16) | chn
;
456 spin_lock_irqsave(&emu
->emu_lock
, flags
);
457 outl(regptr
, emu
->port
+ iobase
+ PTR
);
458 val
= inl(emu
->port
+ iobase
+ DATA
);
459 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
463 static void snd_ptr_write(struct snd_emu10k1
*emu
,
472 regptr
= (reg
<< 16) | chn
;
474 spin_lock_irqsave(&emu
->emu_lock
, flags
);
475 outl(regptr
, emu
->port
+ iobase
+ PTR
);
476 outl(data
, emu
->port
+ iobase
+ DATA
);
477 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
481 static void snd_emu_proc_ptr_reg_read(struct snd_info_entry
*entry
,
482 struct snd_info_buffer
*buffer
, int iobase
, int offset
, int length
, int voices
)
484 struct snd_emu10k1
*emu
= entry
->private_data
;
487 if (offset
+length
> 0xa0) {
488 snd_iprintf(buffer
, "Input values out of range\n");
491 snd_iprintf(buffer
, "Registers 0x%x\n", iobase
);
492 for(i
= offset
; i
< offset
+length
; i
++) {
493 snd_iprintf(buffer
, "%02X: ",i
);
494 for (j
= 0; j
< voices
; j
++) {
496 value
= snd_ptr_read(emu
, 0, i
, j
);
498 value
= snd_ptr_read(emu
, 0x20, i
, j
);
499 snd_iprintf(buffer
, "%08lX ", value
);
501 snd_iprintf(buffer
, "\n");
505 static void snd_emu_proc_ptr_reg_write(struct snd_info_entry
*entry
,
506 struct snd_info_buffer
*buffer
, int iobase
)
508 struct snd_emu10k1
*emu
= entry
->private_data
;
510 unsigned int reg
, channel_id
, val
;
511 while (!snd_info_get_line(buffer
, line
, sizeof(line
))) {
512 if (sscanf(line
, "%x %x %x", ®
, &channel_id
, &val
) != 3)
514 if (reg
< 0xa0 && val
<= 0xffffffff && channel_id
<= 3)
515 snd_ptr_write(emu
, iobase
, reg
, channel_id
, val
);
519 static void snd_emu_proc_ptr_reg_write00(struct snd_info_entry
*entry
,
520 struct snd_info_buffer
*buffer
)
522 snd_emu_proc_ptr_reg_write(entry
, buffer
, 0);
525 static void snd_emu_proc_ptr_reg_write20(struct snd_info_entry
*entry
,
526 struct snd_info_buffer
*buffer
)
528 snd_emu_proc_ptr_reg_write(entry
, buffer
, 0x20);
532 static void snd_emu_proc_ptr_reg_read00a(struct snd_info_entry
*entry
,
533 struct snd_info_buffer
*buffer
)
535 snd_emu_proc_ptr_reg_read(entry
, buffer
, 0, 0, 0x40, 64);
538 static void snd_emu_proc_ptr_reg_read00b(struct snd_info_entry
*entry
,
539 struct snd_info_buffer
*buffer
)
541 snd_emu_proc_ptr_reg_read(entry
, buffer
, 0, 0x40, 0x40, 64);
544 static void snd_emu_proc_ptr_reg_read20a(struct snd_info_entry
*entry
,
545 struct snd_info_buffer
*buffer
)
547 snd_emu_proc_ptr_reg_read(entry
, buffer
, 0x20, 0, 0x40, 4);
550 static void snd_emu_proc_ptr_reg_read20b(struct snd_info_entry
*entry
,
551 struct snd_info_buffer
*buffer
)
553 snd_emu_proc_ptr_reg_read(entry
, buffer
, 0x20, 0x40, 0x40, 4);
556 static void snd_emu_proc_ptr_reg_read20c(struct snd_info_entry
*entry
,
557 struct snd_info_buffer
* buffer
)
559 snd_emu_proc_ptr_reg_read(entry
, buffer
, 0x20, 0x80, 0x20, 4);
563 static struct snd_info_entry_ops snd_emu10k1_proc_ops_fx8010
= {
564 .read
= snd_emu10k1_fx8010_read
,
567 int snd_emu10k1_proc_init(struct snd_emu10k1
*emu
)
569 struct snd_info_entry
*entry
;
570 #ifdef CONFIG_SND_DEBUG
571 if (emu
->card_capabilities
->emu_model
) {
572 if (! snd_card_proc_new(emu
->card
, "emu1010_regs", &entry
))
573 snd_info_set_text_ops(entry
, emu
, snd_emu_proc_emu1010_reg_read
);
575 if (! snd_card_proc_new(emu
->card
, "io_regs", &entry
)) {
576 snd_info_set_text_ops(entry
, emu
, snd_emu_proc_io_reg_read
);
577 entry
->c
.text
.write
= snd_emu_proc_io_reg_write
;
578 entry
->mode
|= S_IWUSR
;
580 if (! snd_card_proc_new(emu
->card
, "ptr_regs00a", &entry
)) {
581 snd_info_set_text_ops(entry
, emu
, snd_emu_proc_ptr_reg_read00a
);
582 entry
->c
.text
.write
= snd_emu_proc_ptr_reg_write00
;
583 entry
->mode
|= S_IWUSR
;
585 if (! snd_card_proc_new(emu
->card
, "ptr_regs00b", &entry
)) {
586 snd_info_set_text_ops(entry
, emu
, snd_emu_proc_ptr_reg_read00b
);
587 entry
->c
.text
.write
= snd_emu_proc_ptr_reg_write00
;
588 entry
->mode
|= S_IWUSR
;
590 if (! snd_card_proc_new(emu
->card
, "ptr_regs20a", &entry
)) {
591 snd_info_set_text_ops(entry
, emu
, snd_emu_proc_ptr_reg_read20a
);
592 entry
->c
.text
.write
= snd_emu_proc_ptr_reg_write20
;
593 entry
->mode
|= S_IWUSR
;
595 if (! snd_card_proc_new(emu
->card
, "ptr_regs20b", &entry
)) {
596 snd_info_set_text_ops(entry
, emu
, snd_emu_proc_ptr_reg_read20b
);
597 entry
->c
.text
.write
= snd_emu_proc_ptr_reg_write20
;
598 entry
->mode
|= S_IWUSR
;
600 if (! snd_card_proc_new(emu
->card
, "ptr_regs20c", &entry
)) {
601 snd_info_set_text_ops(entry
, emu
, snd_emu_proc_ptr_reg_read20c
);
602 entry
->c
.text
.write
= snd_emu_proc_ptr_reg_write20
;
603 entry
->mode
|= S_IWUSR
;
607 if (! snd_card_proc_new(emu
->card
, "emu10k1", &entry
))
608 snd_info_set_text_ops(entry
, emu
, snd_emu10k1_proc_read
);
610 if (emu
->card_capabilities
->emu10k2_chip
) {
611 if (! snd_card_proc_new(emu
->card
, "spdif-in", &entry
))
612 snd_info_set_text_ops(entry
, emu
, snd_emu10k1_proc_spdif_read
);
614 if (emu
->card_capabilities
->ca0151_chip
) {
615 if (! snd_card_proc_new(emu
->card
, "capture-rates", &entry
))
616 snd_info_set_text_ops(entry
, emu
, snd_emu10k1_proc_rates_read
);
619 if (! snd_card_proc_new(emu
->card
, "voices", &entry
))
620 snd_info_set_text_ops(entry
, emu
, snd_emu10k1_proc_voices_read
);
622 if (! snd_card_proc_new(emu
->card
, "fx8010_gpr", &entry
)) {
623 entry
->content
= SNDRV_INFO_CONTENT_DATA
;
624 entry
->private_data
= emu
;
625 entry
->mode
= S_IFREG
| S_IRUGO
/*| S_IWUSR*/;
626 entry
->size
= emu
->audigy
? A_TOTAL_SIZE_GPR
: TOTAL_SIZE_GPR
;
627 entry
->c
.ops
= &snd_emu10k1_proc_ops_fx8010
;
629 if (! snd_card_proc_new(emu
->card
, "fx8010_tram_data", &entry
)) {
630 entry
->content
= SNDRV_INFO_CONTENT_DATA
;
631 entry
->private_data
= emu
;
632 entry
->mode
= S_IFREG
| S_IRUGO
/*| S_IWUSR*/;
633 entry
->size
= emu
->audigy
? A_TOTAL_SIZE_TANKMEM_DATA
: TOTAL_SIZE_TANKMEM_DATA
;
634 entry
->c
.ops
= &snd_emu10k1_proc_ops_fx8010
;
636 if (! snd_card_proc_new(emu
->card
, "fx8010_tram_addr", &entry
)) {
637 entry
->content
= SNDRV_INFO_CONTENT_DATA
;
638 entry
->private_data
= emu
;
639 entry
->mode
= S_IFREG
| S_IRUGO
/*| S_IWUSR*/;
640 entry
->size
= emu
->audigy
? A_TOTAL_SIZE_TANKMEM_ADDR
: TOTAL_SIZE_TANKMEM_ADDR
;
641 entry
->c
.ops
= &snd_emu10k1_proc_ops_fx8010
;
643 if (! snd_card_proc_new(emu
->card
, "fx8010_code", &entry
)) {
644 entry
->content
= SNDRV_INFO_CONTENT_DATA
;
645 entry
->private_data
= emu
;
646 entry
->mode
= S_IFREG
| S_IRUGO
/*| S_IWUSR*/;
647 entry
->size
= emu
->audigy
? A_TOTAL_SIZE_CODE
: TOTAL_SIZE_CODE
;
648 entry
->c
.ops
= &snd_emu10k1_proc_ops_fx8010
;
650 if (! snd_card_proc_new(emu
->card
, "fx8010_acode", &entry
)) {
651 entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
652 entry
->private_data
= emu
;
653 entry
->mode
= S_IFREG
| S_IRUGO
/*| S_IWUSR*/;
654 entry
->c
.text
.read
= snd_emu10k1_proc_acode_read
;