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 for (n
= 0; n
< 4; n
++) {
284 tmp
= val
>> (16 + (n
*4));
285 if (tmp
& 0x8) snd_iprintf(buffer
, "Channel %d: Rate=%d\n", n
, samplerate
[tmp
& 0x7]);
286 else snd_iprintf(buffer
, "Channel %d: No input\n", n
);
290 static void snd_emu10k1_proc_acode_read(struct snd_info_entry
*entry
,
291 struct snd_info_buffer
*buffer
)
294 struct snd_emu10k1
*emu
= entry
->private_data
;
296 snd_iprintf(buffer
, "FX8010 Instruction List '%s'\n", emu
->fx8010
.name
);
297 snd_iprintf(buffer
, " Code dump :\n");
298 for (pc
= 0; pc
< (emu
->audigy
? 1024 : 512); pc
++) {
301 low
= snd_emu10k1_efx_read(emu
, pc
* 2);
302 high
= snd_emu10k1_efx_read(emu
, pc
* 2 + 1);
304 snd_iprintf(buffer
, " OP(0x%02x, 0x%03x, 0x%03x, 0x%03x, 0x%03x) /* 0x%04x: 0x%08x%08x */\n",
306 (high
>> 12) & 0x7ff,
313 snd_iprintf(buffer
, " OP(0x%02x, 0x%03x, 0x%03x, 0x%03x, 0x%03x) /* 0x%04x: 0x%08x%08x */\n",
315 (high
>> 10) & 0x3ff,
324 #define TOTAL_SIZE_GPR (0x100*4)
325 #define A_TOTAL_SIZE_GPR (0x200*4)
326 #define TOTAL_SIZE_TANKMEM_DATA (0xa0*4)
327 #define TOTAL_SIZE_TANKMEM_ADDR (0xa0*4)
328 #define A_TOTAL_SIZE_TANKMEM_DATA (0x100*4)
329 #define A_TOTAL_SIZE_TANKMEM_ADDR (0x100*4)
330 #define TOTAL_SIZE_CODE (0x200*8)
331 #define A_TOTAL_SIZE_CODE (0x400*8)
333 static ssize_t
snd_emu10k1_fx8010_read(struct snd_info_entry
*entry
,
334 void *file_private_data
,
335 struct file
*file
, char __user
*buf
,
336 size_t count
, loff_t pos
)
338 struct snd_emu10k1
*emu
= entry
->private_data
;
345 if (!strcmp(entry
->name
, "fx8010_tram_addr")) {
346 offset
= TANKMEMADDRREGBASE
;
348 } else if (!strcmp(entry
->name
, "fx8010_tram_data")) {
349 offset
= TANKMEMDATAREGBASE
;
350 } else if (!strcmp(entry
->name
, "fx8010_code")) {
351 offset
= emu
->audigy
? A_MICROCODEBASE
: MICROCODEBASE
;
353 offset
= emu
->audigy
? A_FXGPREGBASE
: FXGPREGBASE
;
356 tmp
= kmalloc(count
+ 8, GFP_KERNEL
);
359 for (idx
= 0; idx
< ((pos
& 3) + count
+ 3) >> 2; idx
++) {
361 val
= snd_emu10k1_ptr_read(emu
, offset
+ idx
+ (pos
>> 2), 0);
362 if (tram_addr
&& emu
->audigy
) {
364 val
|= snd_emu10k1_ptr_read(emu
, 0x100 + idx
+ (pos
>> 2), 0) << 20;
368 if (copy_to_user(buf
, ((char *)tmp
) + (pos
& 3), count
))
376 static void snd_emu10k1_proc_voices_read(struct snd_info_entry
*entry
,
377 struct snd_info_buffer
*buffer
)
379 struct snd_emu10k1
*emu
= entry
->private_data
;
380 struct snd_emu10k1_voice
*voice
;
383 snd_iprintf(buffer
, "ch\tuse\tpcm\tefx\tsynth\tmidi\n");
384 for (idx
= 0; idx
< NUM_G
; idx
++) {
385 voice
= &emu
->voices
[idx
];
386 snd_iprintf(buffer
, "%i\t%i\t%i\t%i\t%i\t%i\n",
396 #ifdef CONFIG_SND_DEBUG
397 static void snd_emu_proc_emu1010_reg_read(struct snd_info_entry
*entry
,
398 struct snd_info_buffer
*buffer
)
400 struct snd_emu10k1
*emu
= entry
->private_data
;
403 snd_iprintf(buffer
, "EMU1010 Registers:\n\n");
405 for(i
= 0; i
< 0x40; i
+=1) {
406 snd_emu1010_fpga_read(emu
, i
, &value
);
407 snd_iprintf(buffer
, "%02X: %08X, %02X\n", i
, value
, (value
>> 8) & 0x7f);
411 static void snd_emu_proc_io_reg_read(struct snd_info_entry
*entry
,
412 struct snd_info_buffer
*buffer
)
414 struct snd_emu10k1
*emu
= entry
->private_data
;
418 snd_iprintf(buffer
, "IO Registers:\n\n");
419 for(i
= 0; i
< 0x40; i
+=4) {
420 spin_lock_irqsave(&emu
->emu_lock
, flags
);
421 value
= inl(emu
->port
+ i
);
422 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
423 snd_iprintf(buffer
, "%02X: %08lX\n", i
, value
);
427 static void snd_emu_proc_io_reg_write(struct snd_info_entry
*entry
,
428 struct snd_info_buffer
*buffer
)
430 struct snd_emu10k1
*emu
= entry
->private_data
;
434 while (!snd_info_get_line(buffer
, line
, sizeof(line
))) {
435 if (sscanf(line
, "%x %x", ®
, &val
) != 2)
437 if (reg
< 0x40 && val
<= 0xffffffff) {
438 spin_lock_irqsave(&emu
->emu_lock
, flags
);
439 outl(val
, emu
->port
+ (reg
& 0xfffffffc));
440 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
445 static unsigned int snd_ptr_read(struct snd_emu10k1
* emu
,
451 unsigned int regptr
, val
;
453 regptr
= (reg
<< 16) | chn
;
455 spin_lock_irqsave(&emu
->emu_lock
, flags
);
456 outl(regptr
, emu
->port
+ iobase
+ PTR
);
457 val
= inl(emu
->port
+ iobase
+ DATA
);
458 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
462 static void snd_ptr_write(struct snd_emu10k1
*emu
,
471 regptr
= (reg
<< 16) | chn
;
473 spin_lock_irqsave(&emu
->emu_lock
, flags
);
474 outl(regptr
, emu
->port
+ iobase
+ PTR
);
475 outl(data
, emu
->port
+ iobase
+ DATA
);
476 spin_unlock_irqrestore(&emu
->emu_lock
, flags
);
480 static void snd_emu_proc_ptr_reg_read(struct snd_info_entry
*entry
,
481 struct snd_info_buffer
*buffer
, int iobase
, int offset
, int length
, int voices
)
483 struct snd_emu10k1
*emu
= entry
->private_data
;
486 if (offset
+length
> 0xa0) {
487 snd_iprintf(buffer
, "Input values out of range\n");
490 snd_iprintf(buffer
, "Registers 0x%x\n", iobase
);
491 for(i
= offset
; i
< offset
+length
; i
++) {
492 snd_iprintf(buffer
, "%02X: ",i
);
493 for (j
= 0; j
< voices
; j
++) {
495 value
= snd_ptr_read(emu
, 0, i
, j
);
497 value
= snd_ptr_read(emu
, 0x20, i
, j
);
498 snd_iprintf(buffer
, "%08lX ", value
);
500 snd_iprintf(buffer
, "\n");
504 static void snd_emu_proc_ptr_reg_write(struct snd_info_entry
*entry
,
505 struct snd_info_buffer
*buffer
, int iobase
)
507 struct snd_emu10k1
*emu
= entry
->private_data
;
509 unsigned int reg
, channel_id
, val
;
510 while (!snd_info_get_line(buffer
, line
, sizeof(line
))) {
511 if (sscanf(line
, "%x %x %x", ®
, &channel_id
, &val
) != 3)
513 if (reg
< 0xa0 && val
<= 0xffffffff && channel_id
<= 3)
514 snd_ptr_write(emu
, iobase
, reg
, channel_id
, val
);
518 static void snd_emu_proc_ptr_reg_write00(struct snd_info_entry
*entry
,
519 struct snd_info_buffer
*buffer
)
521 snd_emu_proc_ptr_reg_write(entry
, buffer
, 0);
524 static void snd_emu_proc_ptr_reg_write20(struct snd_info_entry
*entry
,
525 struct snd_info_buffer
*buffer
)
527 snd_emu_proc_ptr_reg_write(entry
, buffer
, 0x20);
531 static void snd_emu_proc_ptr_reg_read00a(struct snd_info_entry
*entry
,
532 struct snd_info_buffer
*buffer
)
534 snd_emu_proc_ptr_reg_read(entry
, buffer
, 0, 0, 0x40, 64);
537 static void snd_emu_proc_ptr_reg_read00b(struct snd_info_entry
*entry
,
538 struct snd_info_buffer
*buffer
)
540 snd_emu_proc_ptr_reg_read(entry
, buffer
, 0, 0x40, 0x40, 64);
543 static void snd_emu_proc_ptr_reg_read20a(struct snd_info_entry
*entry
,
544 struct snd_info_buffer
*buffer
)
546 snd_emu_proc_ptr_reg_read(entry
, buffer
, 0x20, 0, 0x40, 4);
549 static void snd_emu_proc_ptr_reg_read20b(struct snd_info_entry
*entry
,
550 struct snd_info_buffer
*buffer
)
552 snd_emu_proc_ptr_reg_read(entry
, buffer
, 0x20, 0x40, 0x40, 4);
555 static void snd_emu_proc_ptr_reg_read20c(struct snd_info_entry
*entry
,
556 struct snd_info_buffer
* buffer
)
558 snd_emu_proc_ptr_reg_read(entry
, buffer
, 0x20, 0x80, 0x20, 4);
562 static struct snd_info_entry_ops snd_emu10k1_proc_ops_fx8010
= {
563 .read
= snd_emu10k1_fx8010_read
,
566 int snd_emu10k1_proc_init(struct snd_emu10k1
*emu
)
568 struct snd_info_entry
*entry
;
569 #ifdef CONFIG_SND_DEBUG
570 if (emu
->card_capabilities
->emu_model
) {
571 if (! snd_card_proc_new(emu
->card
, "emu1010_regs", &entry
))
572 snd_info_set_text_ops(entry
, emu
, snd_emu_proc_emu1010_reg_read
);
574 if (! snd_card_proc_new(emu
->card
, "io_regs", &entry
)) {
575 snd_info_set_text_ops(entry
, emu
, snd_emu_proc_io_reg_read
);
576 entry
->c
.text
.write
= snd_emu_proc_io_reg_write
;
577 entry
->mode
|= S_IWUSR
;
579 if (! snd_card_proc_new(emu
->card
, "ptr_regs00a", &entry
)) {
580 snd_info_set_text_ops(entry
, emu
, snd_emu_proc_ptr_reg_read00a
);
581 entry
->c
.text
.write
= snd_emu_proc_ptr_reg_write00
;
582 entry
->mode
|= S_IWUSR
;
584 if (! snd_card_proc_new(emu
->card
, "ptr_regs00b", &entry
)) {
585 snd_info_set_text_ops(entry
, emu
, snd_emu_proc_ptr_reg_read00b
);
586 entry
->c
.text
.write
= snd_emu_proc_ptr_reg_write00
;
587 entry
->mode
|= S_IWUSR
;
589 if (! snd_card_proc_new(emu
->card
, "ptr_regs20a", &entry
)) {
590 snd_info_set_text_ops(entry
, emu
, snd_emu_proc_ptr_reg_read20a
);
591 entry
->c
.text
.write
= snd_emu_proc_ptr_reg_write20
;
592 entry
->mode
|= S_IWUSR
;
594 if (! snd_card_proc_new(emu
->card
, "ptr_regs20b", &entry
)) {
595 snd_info_set_text_ops(entry
, emu
, snd_emu_proc_ptr_reg_read20b
);
596 entry
->c
.text
.write
= snd_emu_proc_ptr_reg_write20
;
597 entry
->mode
|= S_IWUSR
;
599 if (! snd_card_proc_new(emu
->card
, "ptr_regs20c", &entry
)) {
600 snd_info_set_text_ops(entry
, emu
, snd_emu_proc_ptr_reg_read20c
);
601 entry
->c
.text
.write
= snd_emu_proc_ptr_reg_write20
;
602 entry
->mode
|= S_IWUSR
;
606 if (! snd_card_proc_new(emu
->card
, "emu10k1", &entry
))
607 snd_info_set_text_ops(entry
, emu
, snd_emu10k1_proc_read
);
609 if (emu
->card_capabilities
->emu10k2_chip
) {
610 if (! snd_card_proc_new(emu
->card
, "spdif-in", &entry
))
611 snd_info_set_text_ops(entry
, emu
, snd_emu10k1_proc_spdif_read
);
613 if (emu
->card_capabilities
->ca0151_chip
) {
614 if (! snd_card_proc_new(emu
->card
, "capture-rates", &entry
))
615 snd_info_set_text_ops(entry
, emu
, snd_emu10k1_proc_rates_read
);
618 if (! snd_card_proc_new(emu
->card
, "voices", &entry
))
619 snd_info_set_text_ops(entry
, emu
, snd_emu10k1_proc_voices_read
);
621 if (! snd_card_proc_new(emu
->card
, "fx8010_gpr", &entry
)) {
622 entry
->content
= SNDRV_INFO_CONTENT_DATA
;
623 entry
->private_data
= emu
;
624 entry
->mode
= S_IFREG
| S_IRUGO
/*| S_IWUSR*/;
625 entry
->size
= emu
->audigy
? A_TOTAL_SIZE_GPR
: TOTAL_SIZE_GPR
;
626 entry
->c
.ops
= &snd_emu10k1_proc_ops_fx8010
;
628 if (! snd_card_proc_new(emu
->card
, "fx8010_tram_data", &entry
)) {
629 entry
->content
= SNDRV_INFO_CONTENT_DATA
;
630 entry
->private_data
= emu
;
631 entry
->mode
= S_IFREG
| S_IRUGO
/*| S_IWUSR*/;
632 entry
->size
= emu
->audigy
? A_TOTAL_SIZE_TANKMEM_DATA
: TOTAL_SIZE_TANKMEM_DATA
;
633 entry
->c
.ops
= &snd_emu10k1_proc_ops_fx8010
;
635 if (! snd_card_proc_new(emu
->card
, "fx8010_tram_addr", &entry
)) {
636 entry
->content
= SNDRV_INFO_CONTENT_DATA
;
637 entry
->private_data
= emu
;
638 entry
->mode
= S_IFREG
| S_IRUGO
/*| S_IWUSR*/;
639 entry
->size
= emu
->audigy
? A_TOTAL_SIZE_TANKMEM_ADDR
: TOTAL_SIZE_TANKMEM_ADDR
;
640 entry
->c
.ops
= &snd_emu10k1_proc_ops_fx8010
;
642 if (! snd_card_proc_new(emu
->card
, "fx8010_code", &entry
)) {
643 entry
->content
= SNDRV_INFO_CONTENT_DATA
;
644 entry
->private_data
= emu
;
645 entry
->mode
= S_IFREG
| S_IRUGO
/*| S_IWUSR*/;
646 entry
->size
= emu
->audigy
? A_TOTAL_SIZE_CODE
: TOTAL_SIZE_CODE
;
647 entry
->c
.ops
= &snd_emu10k1_proc_ops_fx8010
;
649 if (! snd_card_proc_new(emu
->card
, "fx8010_acode", &entry
)) {
650 entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
651 entry
->private_data
= emu
;
652 entry
->mode
= S_IFREG
| S_IRUGO
/*| S_IWUSR*/;
653 entry
->c
.text
.read
= snd_emu10k1_proc_acode_read
;