blob: 347b2415db5921a965d085eb10c0c21727953bfc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02002 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Creative Labs, Inc.
4 * Routines for control of EMU10K1 chips / proc interface routines
5 *
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01006 * Copyright (c) by James Courtier-Dutton <James@superbug.co.uk>
7 * Added EMU 1010 support.
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * BUGS:
10 * --
11 *
12 * TODO:
13 * --
14 *
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.
19 *
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.
24 *
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
28 *
29 */
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/slab.h>
32#include <linux/init.h>
33#include <sound/core.h>
34#include <sound/emu10k1.h>
James Courtier-Dutton001f7582005-04-09 23:38:25 +020035#include "p16v.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Takashi Iwaiadf1b3d2005-12-01 10:49:58 +010037#ifdef CONFIG_PROC_FS
Takashi Iwaieb4698f2005-11-17 14:50:13 +010038static void snd_emu10k1_proc_spdif_status(struct snd_emu10k1 * emu,
39 struct snd_info_buffer *buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 char *title,
41 int status_reg,
42 int rate_reg)
43{
44 static char *clkaccy[4] = { "1000ppm", "50ppm", "variable", "unknown" };
45 static int samplerate[16] = { 44100, 1, 48000, 32000, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 };
46 static char *channel[16] = { "unspec", "left", "right", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15" };
47 static char *emphasis[8] = { "none", "50/15 usec 2 channel", "2", "3", "4", "5", "6", "7" };
48 unsigned int status, rate = 0;
49
50 status = snd_emu10k1_ptr_read(emu, status_reg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 snd_iprintf(buffer, "\n%s\n", title);
53
James Courtier-Duttondf341402005-04-09 16:57:09 +020054 if (status != 0xffffffff) {
55 snd_iprintf(buffer, "Professional Mode : %s\n", (status & SPCS_PROFESSIONAL) ? "yes" : "no");
56 snd_iprintf(buffer, "Not Audio Data : %s\n", (status & SPCS_NOTAUDIODATA) ? "yes" : "no");
57 snd_iprintf(buffer, "Copyright : %s\n", (status & SPCS_COPYRIGHT) ? "yes" : "no");
58 snd_iprintf(buffer, "Emphasis : %s\n", emphasis[(status & SPCS_EMPHASISMASK) >> 3]);
59 snd_iprintf(buffer, "Mode : %i\n", (status & SPCS_MODEMASK) >> 6);
60 snd_iprintf(buffer, "Category Code : 0x%x\n", (status & SPCS_CATEGORYCODEMASK) >> 8);
61 snd_iprintf(buffer, "Generation Status : %s\n", status & SPCS_GENERATIONSTATUS ? "original" : "copy");
62 snd_iprintf(buffer, "Source Mask : %i\n", (status & SPCS_SOURCENUMMASK) >> 16);
63 snd_iprintf(buffer, "Channel Number : %s\n", channel[(status & SPCS_CHANNELNUMMASK) >> 20]);
64 snd_iprintf(buffer, "Sample Rate : %iHz\n", samplerate[(status & SPCS_SAMPLERATEMASK) >> 24]);
65 snd_iprintf(buffer, "Clock Accuracy : %s\n", clkaccy[(status & SPCS_CLKACCYMASK) >> 28]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
James Courtier-Duttondf341402005-04-09 16:57:09 +020067 if (rate_reg > 0) {
68 rate = snd_emu10k1_ptr_read(emu, rate_reg, 0);
James Courtier-Dutton001f7582005-04-09 23:38:25 +020069 snd_iprintf(buffer, "S/PDIF Valid : %s\n", rate & SRCS_SPDIFVALID ? "on" : "off");
James Courtier-Duttondf341402005-04-09 16:57:09 +020070 snd_iprintf(buffer, "S/PDIF Locked : %s\n", rate & SRCS_SPDIFLOCKED ? "on" : "off");
71 snd_iprintf(buffer, "Rate Locked : %s\n", rate & SRCS_RATELOCKED ? "on" : "off");
72 /* From ((Rate * 48000 ) / 262144); */
73 snd_iprintf(buffer, "Estimated Sample Rate : %d\n", ((rate & 0xFFFFF ) * 375) >> 11);
74 }
75 } else {
76 snd_iprintf(buffer, "No signal detected.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 }
James Courtier-Duttondf341402005-04-09 16:57:09 +020078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
Takashi Iwaieb4698f2005-11-17 14:50:13 +010081static void snd_emu10k1_proc_read(struct snd_info_entry *entry,
82 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 /* FIXME - output names are in emufx.c too */
85 static char *creative_outs[32] = {
86 /* 00 */ "AC97 Left",
87 /* 01 */ "AC97 Right",
88 /* 02 */ "Optical IEC958 Left",
89 /* 03 */ "Optical IEC958 Right",
90 /* 04 */ "Center",
91 /* 05 */ "LFE",
92 /* 06 */ "Headphone Left",
93 /* 07 */ "Headphone Right",
94 /* 08 */ "Surround Left",
95 /* 09 */ "Surround Right",
96 /* 10 */ "PCM Capture Left",
97 /* 11 */ "PCM Capture Right",
98 /* 12 */ "MIC Capture",
99 /* 13 */ "AC97 Surround Left",
100 /* 14 */ "AC97 Surround Right",
101 /* 15 */ "???",
102 /* 16 */ "???",
103 /* 17 */ "Analog Center",
104 /* 18 */ "Analog LFE",
105 /* 19 */ "???",
106 /* 20 */ "???",
107 /* 21 */ "???",
108 /* 22 */ "???",
109 /* 23 */ "???",
110 /* 24 */ "???",
111 /* 25 */ "???",
112 /* 26 */ "???",
113 /* 27 */ "???",
114 /* 28 */ "???",
115 /* 29 */ "???",
116 /* 30 */ "???",
117 /* 31 */ "???"
118 };
119
120 static char *audigy_outs[64] = {
121 /* 00 */ "Digital Front Left",
122 /* 01 */ "Digital Front Right",
123 /* 02 */ "Digital Center",
124 /* 03 */ "Digital LEF",
125 /* 04 */ "Headphone Left",
126 /* 05 */ "Headphone Right",
127 /* 06 */ "Digital Rear Left",
128 /* 07 */ "Digital Rear Right",
129 /* 08 */ "Front Left",
130 /* 09 */ "Front Right",
131 /* 10 */ "Center",
132 /* 11 */ "LFE",
133 /* 12 */ "???",
134 /* 13 */ "???",
135 /* 14 */ "Rear Left",
136 /* 15 */ "Rear Right",
137 /* 16 */ "AC97 Front Left",
138 /* 17 */ "AC97 Front Right",
139 /* 18 */ "ADC Caputre Left",
140 /* 19 */ "ADC Capture Right",
141 /* 20 */ "???",
142 /* 21 */ "???",
143 /* 22 */ "???",
144 /* 23 */ "???",
145 /* 24 */ "???",
146 /* 25 */ "???",
147 /* 26 */ "???",
148 /* 27 */ "???",
149 /* 28 */ "???",
150 /* 29 */ "???",
151 /* 30 */ "???",
152 /* 31 */ "???",
153 /* 32 */ "FXBUS2_0",
154 /* 33 */ "FXBUS2_1",
155 /* 34 */ "FXBUS2_2",
156 /* 35 */ "FXBUS2_3",
157 /* 36 */ "FXBUS2_4",
158 /* 37 */ "FXBUS2_5",
159 /* 38 */ "FXBUS2_6",
160 /* 39 */ "FXBUS2_7",
161 /* 40 */ "FXBUS2_8",
162 /* 41 */ "FXBUS2_9",
163 /* 42 */ "FXBUS2_10",
164 /* 43 */ "FXBUS2_11",
165 /* 44 */ "FXBUS2_12",
166 /* 45 */ "FXBUS2_13",
167 /* 46 */ "FXBUS2_14",
168 /* 47 */ "FXBUS2_15",
169 /* 48 */ "FXBUS2_16",
170 /* 49 */ "FXBUS2_17",
171 /* 50 */ "FXBUS2_18",
172 /* 51 */ "FXBUS2_19",
173 /* 52 */ "FXBUS2_20",
174 /* 53 */ "FXBUS2_21",
175 /* 54 */ "FXBUS2_22",
176 /* 55 */ "FXBUS2_23",
177 /* 56 */ "FXBUS2_24",
178 /* 57 */ "FXBUS2_25",
179 /* 58 */ "FXBUS2_26",
180 /* 59 */ "FXBUS2_27",
181 /* 60 */ "FXBUS2_28",
182 /* 61 */ "FXBUS2_29",
183 /* 62 */ "FXBUS2_30",
184 /* 63 */ "FXBUS2_31"
185 };
186
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100187 struct snd_emu10k1 *emu = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 unsigned int val, val1;
189 int nefx = emu->audigy ? 64 : 32;
190 char **outputs = emu->audigy ? audigy_outs : creative_outs;
191 int idx;
192
193 snd_iprintf(buffer, "EMU10K1\n\n");
194 snd_iprintf(buffer, "Card : %s\n",
Lee Revell2b637da2005-03-30 13:51:18 +0200195 emu->audigy ? "Audigy" : (emu->card_capabilities->ecard ? "EMU APS" : "Creative"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 snd_iprintf(buffer, "Internal TRAM (words) : 0x%x\n", emu->fx8010.itram_size);
197 snd_iprintf(buffer, "External TRAM (words) : 0x%x\n", (int)emu->fx8010.etram_pages.bytes / 2);
198 snd_iprintf(buffer, "\n");
199 snd_iprintf(buffer, "Effect Send Routing :\n");
200 for (idx = 0; idx < NUM_G; idx++) {
201 val = emu->audigy ?
202 snd_emu10k1_ptr_read(emu, A_FXRT1, idx) :
203 snd_emu10k1_ptr_read(emu, FXRT, idx);
204 val1 = emu->audigy ?
205 snd_emu10k1_ptr_read(emu, A_FXRT2, idx) :
206 0;
207 if (emu->audigy) {
208 snd_iprintf(buffer, "Ch%i: A=%i, B=%i, C=%i, D=%i, ",
209 idx,
210 val & 0x3f,
211 (val >> 8) & 0x3f,
212 (val >> 16) & 0x3f,
213 (val >> 24) & 0x3f);
214 snd_iprintf(buffer, "E=%i, F=%i, G=%i, H=%i\n",
215 val1 & 0x3f,
216 (val1 >> 8) & 0x3f,
217 (val1 >> 16) & 0x3f,
218 (val1 >> 24) & 0x3f);
219 } else {
220 snd_iprintf(buffer, "Ch%i: A=%i, B=%i, C=%i, D=%i\n",
221 idx,
222 (val >> 16) & 0x0f,
223 (val >> 20) & 0x0f,
224 (val >> 24) & 0x0f,
225 (val >> 28) & 0x0f);
226 }
227 }
228 snd_iprintf(buffer, "\nCaptured FX Outputs :\n");
229 for (idx = 0; idx < nefx; idx++) {
230 if (emu->efx_voices_mask[idx/32] & (1 << (idx%32)))
231 snd_iprintf(buffer, " Output %02i [%s]\n", idx, outputs[idx]);
232 }
233 snd_iprintf(buffer, "\nAll FX Outputs :\n");
234 for (idx = 0; idx < (emu->audigy ? 64 : 32); idx++)
235 snd_iprintf(buffer, " Output %02i [%s]\n", idx, outputs[idx]);
James Courtier-Duttondf341402005-04-09 16:57:09 +0200236}
237
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100238static void snd_emu10k1_proc_spdif_read(struct snd_info_entry *entry,
239 struct snd_info_buffer *buffer)
James Courtier-Duttondf341402005-04-09 16:57:09 +0200240{
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100241 struct snd_emu10k1 *emu = entry->private_data;
James Courtier-Duttonf93abe52007-07-26 18:31:39 +0100242 u32 value;
243 u32 value2;
244 unsigned long flags;
245 u32 rate;
246
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000247 if (emu->card_capabilities->emu_model) {
James Courtier-Duttonf93abe52007-07-26 18:31:39 +0100248 spin_lock_irqsave(&emu->emu_lock, flags);
249 snd_emu1010_fpga_read(emu, 0x38, &value);
250 spin_unlock_irqrestore(&emu->emu_lock, flags);
251 if ((value & 0x1) == 0) {
252 spin_lock_irqsave(&emu->emu_lock, flags);
253 snd_emu1010_fpga_read(emu, 0x2a, &value);
254 snd_emu1010_fpga_read(emu, 0x2b, &value2);
255 spin_unlock_irqrestore(&emu->emu_lock, flags);
256 rate = 0x1770000 / (((value << 5) | value2)+1);
257 snd_iprintf(buffer, "ADAT Locked : %u\n", rate);
258 } else {
259 snd_iprintf(buffer, "ADAT Unlocked\n");
260 }
261 spin_lock_irqsave(&emu->emu_lock, flags);
262 snd_emu1010_fpga_read(emu, 0x20, &value);
263 spin_unlock_irqrestore(&emu->emu_lock, flags);
264 if ((value & 0x4) == 0) {
265 spin_lock_irqsave(&emu->emu_lock, flags);
266 snd_emu1010_fpga_read(emu, 0x28, &value);
267 snd_emu1010_fpga_read(emu, 0x29, &value2);
268 spin_unlock_irqrestore(&emu->emu_lock, flags);
269 rate = 0x1770000 / (((value << 5) | value2)+1);
270 snd_iprintf(buffer, "SPDIF Locked : %d\n", rate);
271 } else {
272 snd_iprintf(buffer, "SPDIF Unlocked\n");
273 }
274 } else {
275 snd_emu10k1_proc_spdif_status(emu, buffer, "CD-ROM S/PDIF In", CDCS, CDSRCS);
276 snd_emu10k1_proc_spdif_status(emu, buffer, "Optical or Coax S/PDIF In", GPSCS, GPSRCS);
277 }
James Courtier-Duttondf341402005-04-09 16:57:09 +0200278#if 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 val = snd_emu10k1_ptr_read(emu, ZVSRCS, 0);
280 snd_iprintf(buffer, "\nZoomed Video\n");
281 snd_iprintf(buffer, "Rate Locked : %s\n", val & SRCS_RATELOCKED ? "on" : "off");
282 snd_iprintf(buffer, "Estimated Sample Rate : 0x%x\n", val & SRCS_ESTSAMPLERATE);
James Courtier-Duttondf341402005-04-09 16:57:09 +0200283#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100286static void snd_emu10k1_proc_rates_read(struct snd_info_entry *entry,
287 struct snd_info_buffer *buffer)
James Courtier-Dutton001f7582005-04-09 23:38:25 +0200288{
289 static int samplerate[8] = { 44100, 48000, 96000, 192000, 4, 5, 6, 7 };
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100290 struct snd_emu10k1 *emu = entry->private_data;
James Courtier-Dutton001f7582005-04-09 23:38:25 +0200291 unsigned int val, tmp, n;
292 val = snd_emu10k1_ptr20_read(emu, CAPTURE_RATE_STATUS, 0);
293 tmp = (val >> 16) & 0x8;
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100294 for (n = 0; n < 4; n++) {
James Courtier-Dutton001f7582005-04-09 23:38:25 +0200295 tmp = val >> (16 + (n*4));
296 if (tmp & 0x8) snd_iprintf(buffer, "Channel %d: Rate=%d\n", n, samplerate[tmp & 0x7]);
297 else snd_iprintf(buffer, "Channel %d: No input\n", n);
298 }
299}
300
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100301static void snd_emu10k1_proc_acode_read(struct snd_info_entry *entry,
302 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 u32 pc;
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100305 struct snd_emu10k1 *emu = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 snd_iprintf(buffer, "FX8010 Instruction List '%s'\n", emu->fx8010.name);
308 snd_iprintf(buffer, " Code dump :\n");
309 for (pc = 0; pc < (emu->audigy ? 1024 : 512); pc++) {
310 u32 low, high;
311
312 low = snd_emu10k1_efx_read(emu, pc * 2);
313 high = snd_emu10k1_efx_read(emu, pc * 2 + 1);
314 if (emu->audigy)
315 snd_iprintf(buffer, " OP(0x%02x, 0x%03x, 0x%03x, 0x%03x, 0x%03x) /* 0x%04x: 0x%08x%08x */\n",
316 (high >> 24) & 0x0f,
317 (high >> 12) & 0x7ff,
318 (high >> 0) & 0x7ff,
319 (low >> 12) & 0x7ff,
320 (low >> 0) & 0x7ff,
321 pc,
322 high, low);
323 else
324 snd_iprintf(buffer, " OP(0x%02x, 0x%03x, 0x%03x, 0x%03x, 0x%03x) /* 0x%04x: 0x%08x%08x */\n",
325 (high >> 20) & 0x0f,
326 (high >> 10) & 0x3ff,
327 (high >> 0) & 0x3ff,
328 (low >> 10) & 0x3ff,
329 (low >> 0) & 0x3ff,
330 pc,
331 high, low);
332 }
333}
334
335#define TOTAL_SIZE_GPR (0x100*4)
336#define A_TOTAL_SIZE_GPR (0x200*4)
337#define TOTAL_SIZE_TANKMEM_DATA (0xa0*4)
338#define TOTAL_SIZE_TANKMEM_ADDR (0xa0*4)
339#define A_TOTAL_SIZE_TANKMEM_DATA (0x100*4)
340#define A_TOTAL_SIZE_TANKMEM_ADDR (0x100*4)
341#define TOTAL_SIZE_CODE (0x200*8)
342#define A_TOTAL_SIZE_CODE (0x400*8)
343
Takashi Iwai24e4a122010-04-13 11:22:01 +0200344static ssize_t snd_emu10k1_fx8010_read(struct snd_info_entry *entry,
345 void *file_private_data,
346 struct file *file, char __user *buf,
347 size_t count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 long size;
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100350 struct snd_emu10k1 *emu = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 unsigned int offset;
352 int tram_addr = 0;
353
354 if (!strcmp(entry->name, "fx8010_tram_addr")) {
355 offset = TANKMEMADDRREGBASE;
356 tram_addr = 1;
357 } else if (!strcmp(entry->name, "fx8010_tram_data")) {
358 offset = TANKMEMDATAREGBASE;
359 } else if (!strcmp(entry->name, "fx8010_code")) {
360 offset = emu->audigy ? A_MICROCODEBASE : MICROCODEBASE;
361 } else {
362 offset = emu->audigy ? A_FXGPREGBASE : FXGPREGBASE;
363 }
364 size = count;
365 if (pos + size > entry->size)
366 size = (long)entry->size - pos;
367 if (size > 0) {
368 unsigned int *tmp;
369 long res;
370 unsigned int idx;
371 if ((tmp = kmalloc(size + 8, GFP_KERNEL)) == NULL)
372 return -ENOMEM;
373 for (idx = 0; idx < ((pos & 3) + size + 3) >> 2; idx++)
374 if (tram_addr && emu->audigy) {
375 tmp[idx] = snd_emu10k1_ptr_read(emu, offset + idx + (pos >> 2), 0) >> 11;
376 tmp[idx] |= snd_emu10k1_ptr_read(emu, 0x100 + idx + (pos >> 2), 0) << 20;
377 } else
378 tmp[idx] = snd_emu10k1_ptr_read(emu, offset + idx + (pos >> 2), 0);
379 if (copy_to_user(buf, ((char *)tmp) + (pos & 3), size))
380 res = -EFAULT;
381 else {
382 res = size;
383 }
384 kfree(tmp);
385 return res;
386 }
387 return 0;
388}
389
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100390static void snd_emu10k1_proc_voices_read(struct snd_info_entry *entry,
391 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100393 struct snd_emu10k1 *emu = entry->private_data;
394 struct snd_emu10k1_voice *voice;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 int idx;
396
397 snd_iprintf(buffer, "ch\tuse\tpcm\tefx\tsynth\tmidi\n");
398 for (idx = 0; idx < NUM_G; idx++) {
399 voice = &emu->voices[idx];
400 snd_iprintf(buffer, "%i\t%i\t%i\t%i\t%i\t%i\n",
401 idx,
402 voice->use,
403 voice->pcm,
404 voice->efx,
405 voice->synth,
406 voice->midi);
407 }
408}
409
410#ifdef CONFIG_SND_DEBUG
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100411static void snd_emu_proc_emu1010_reg_read(struct snd_info_entry *entry,
412 struct snd_info_buffer *buffer)
413{
414 struct snd_emu10k1 *emu = entry->private_data;
Harvey Harrison4677df02008-02-29 11:44:26 +0100415 u32 value;
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100416 unsigned long flags;
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100417 int i;
418 snd_iprintf(buffer, "EMU1010 Registers:\n\n");
419
James Courtier-Dutton90fd5ce2007-07-23 14:01:46 +0100420 for(i = 0; i < 0x40; i+=1) {
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100421 spin_lock_irqsave(&emu->emu_lock, flags);
James Courtier-Duttonf93abe52007-07-26 18:31:39 +0100422 snd_emu1010_fpga_read(emu, i, &value);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100423 spin_unlock_irqrestore(&emu->emu_lock, flags);
James Courtier-Duttonf93abe52007-07-26 18:31:39 +0100424 snd_iprintf(buffer, "%02X: %08X, %02X\n", i, value, (value >> 8) & 0x7f);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100425 }
426}
427
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100428static void snd_emu_proc_io_reg_read(struct snd_info_entry *entry,
429 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100431 struct snd_emu10k1 *emu = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 unsigned long value;
433 unsigned long flags;
434 int i;
435 snd_iprintf(buffer, "IO Registers:\n\n");
436 for(i = 0; i < 0x40; i+=4) {
437 spin_lock_irqsave(&emu->emu_lock, flags);
438 value = inl(emu->port + i);
439 spin_unlock_irqrestore(&emu->emu_lock, flags);
440 snd_iprintf(buffer, "%02X: %08lX\n", i, value);
441 }
442}
443
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100444static void snd_emu_proc_io_reg_write(struct snd_info_entry *entry,
445 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100447 struct snd_emu10k1 *emu = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 unsigned long flags;
449 char line[64];
450 u32 reg, val;
451 while (!snd_info_get_line(buffer, line, sizeof(line))) {
452 if (sscanf(line, "%x %x", &reg, &val) != 2)
453 continue;
Roel Kluin84ed1a12009-10-23 16:03:08 +0200454 if (reg < 0x40 && val <= 0xffffffff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 spin_lock_irqsave(&emu->emu_lock, flags);
456 outl(val, emu->port + (reg & 0xfffffffc));
457 spin_unlock_irqrestore(&emu->emu_lock, flags);
458 }
459 }
460}
461
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100462static unsigned int snd_ptr_read(struct snd_emu10k1 * emu,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 unsigned int iobase,
464 unsigned int reg,
465 unsigned int chn)
466{
467 unsigned long flags;
468 unsigned int regptr, val;
469
470 regptr = (reg << 16) | chn;
471
472 spin_lock_irqsave(&emu->emu_lock, flags);
473 outl(regptr, emu->port + iobase + PTR);
474 val = inl(emu->port + iobase + DATA);
475 spin_unlock_irqrestore(&emu->emu_lock, flags);
476 return val;
477}
478
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100479static void snd_ptr_write(struct snd_emu10k1 *emu,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 unsigned int iobase,
481 unsigned int reg,
482 unsigned int chn,
483 unsigned int data)
484{
485 unsigned int regptr;
486 unsigned long flags;
487
488 regptr = (reg << 16) | chn;
489
490 spin_lock_irqsave(&emu->emu_lock, flags);
491 outl(regptr, emu->port + iobase + PTR);
492 outl(data, emu->port + iobase + DATA);
493 spin_unlock_irqrestore(&emu->emu_lock, flags);
494}
495
496
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100497static void snd_emu_proc_ptr_reg_read(struct snd_info_entry *entry,
498 struct snd_info_buffer *buffer, int iobase, int offset, int length, int voices)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100500 struct snd_emu10k1 *emu = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 unsigned long value;
502 int i,j;
James Courtier-Dutton6ef7e862005-11-11 23:45:23 +0100503 if (offset+length > 0xa0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 snd_iprintf(buffer, "Input values out of range\n");
505 return;
506 }
507 snd_iprintf(buffer, "Registers 0x%x\n", iobase);
508 for(i = offset; i < offset+length; i++) {
509 snd_iprintf(buffer, "%02X: ",i);
510 for (j = 0; j < voices; j++) {
511 if(iobase == 0)
512 value = snd_ptr_read(emu, 0, i, j);
513 else
514 value = snd_ptr_read(emu, 0x20, i, j);
515 snd_iprintf(buffer, "%08lX ", value);
516 }
517 snd_iprintf(buffer, "\n");
518 }
519}
520
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100521static void snd_emu_proc_ptr_reg_write(struct snd_info_entry *entry,
522 struct snd_info_buffer *buffer, int iobase)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100524 struct snd_emu10k1 *emu = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 char line[64];
526 unsigned int reg, channel_id , val;
527 while (!snd_info_get_line(buffer, line, sizeof(line))) {
528 if (sscanf(line, "%x %x %x", &reg, &channel_id, &val) != 3)
529 continue;
Roel Kluin84ed1a12009-10-23 16:03:08 +0200530 if (reg < 0xa0 && val <= 0xffffffff && channel_id <= 3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 snd_ptr_write(emu, iobase, reg, channel_id, val);
532 }
533}
534
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100535static void snd_emu_proc_ptr_reg_write00(struct snd_info_entry *entry,
536 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 snd_emu_proc_ptr_reg_write(entry, buffer, 0);
539}
540
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100541static void snd_emu_proc_ptr_reg_write20(struct snd_info_entry *entry,
542 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543{
544 snd_emu_proc_ptr_reg_write(entry, buffer, 0x20);
545}
546
547
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100548static void snd_emu_proc_ptr_reg_read00a(struct snd_info_entry *entry,
549 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
551 snd_emu_proc_ptr_reg_read(entry, buffer, 0, 0, 0x40, 64);
552}
553
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100554static void snd_emu_proc_ptr_reg_read00b(struct snd_info_entry *entry,
555 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 snd_emu_proc_ptr_reg_read(entry, buffer, 0, 0x40, 0x40, 64);
558}
559
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100560static void snd_emu_proc_ptr_reg_read20a(struct snd_info_entry *entry,
561 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
563 snd_emu_proc_ptr_reg_read(entry, buffer, 0x20, 0, 0x40, 4);
564}
565
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100566static void snd_emu_proc_ptr_reg_read20b(struct snd_info_entry *entry,
567 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
569 snd_emu_proc_ptr_reg_read(entry, buffer, 0x20, 0x40, 0x40, 4);
570}
James Courtier-Dutton6ef7e862005-11-11 23:45:23 +0100571
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100572static void snd_emu_proc_ptr_reg_read20c(struct snd_info_entry *entry,
573 struct snd_info_buffer * buffer)
James Courtier-Dutton6ef7e862005-11-11 23:45:23 +0100574{
575 snd_emu_proc_ptr_reg_read(entry, buffer, 0x20, 0x80, 0x20, 4);
576}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577#endif
578
579static struct snd_info_entry_ops snd_emu10k1_proc_ops_fx8010 = {
580 .read = snd_emu10k1_fx8010_read,
581};
582
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100583int __devinit snd_emu10k1_proc_init(struct snd_emu10k1 * emu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100585 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586#ifdef CONFIG_SND_DEBUG
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000587 if (emu->card_capabilities->emu_model) {
James Courtier-Dutton90fd5ce2007-07-23 14:01:46 +0100588 if (! snd_card_proc_new(emu->card, "emu1010_regs", &entry))
589 snd_info_set_text_ops(entry, emu, snd_emu_proc_emu1010_reg_read);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (! snd_card_proc_new(emu->card, "io_regs", &entry)) {
Takashi Iwaibf850202006-04-28 15:13:41 +0200592 snd_info_set_text_ops(entry, emu, snd_emu_proc_io_reg_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 entry->c.text.write = snd_emu_proc_io_reg_write;
Takashi Iwaibd7bf042005-04-12 16:27:28 +0200594 entry->mode |= S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596 if (! snd_card_proc_new(emu->card, "ptr_regs00a", &entry)) {
Takashi Iwaibf850202006-04-28 15:13:41 +0200597 snd_info_set_text_ops(entry, emu, snd_emu_proc_ptr_reg_read00a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 entry->c.text.write = snd_emu_proc_ptr_reg_write00;
Takashi Iwaibd7bf042005-04-12 16:27:28 +0200599 entry->mode |= S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
601 if (! snd_card_proc_new(emu->card, "ptr_regs00b", &entry)) {
Takashi Iwaibf850202006-04-28 15:13:41 +0200602 snd_info_set_text_ops(entry, emu, snd_emu_proc_ptr_reg_read00b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 entry->c.text.write = snd_emu_proc_ptr_reg_write00;
Takashi Iwaibd7bf042005-04-12 16:27:28 +0200604 entry->mode |= S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
606 if (! snd_card_proc_new(emu->card, "ptr_regs20a", &entry)) {
Takashi Iwaibf850202006-04-28 15:13:41 +0200607 snd_info_set_text_ops(entry, emu, snd_emu_proc_ptr_reg_read20a);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 entry->c.text.write = snd_emu_proc_ptr_reg_write20;
Takashi Iwaibd7bf042005-04-12 16:27:28 +0200609 entry->mode |= S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
611 if (! snd_card_proc_new(emu->card, "ptr_regs20b", &entry)) {
Takashi Iwaibf850202006-04-28 15:13:41 +0200612 snd_info_set_text_ops(entry, emu, snd_emu_proc_ptr_reg_read20b);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 entry->c.text.write = snd_emu_proc_ptr_reg_write20;
Takashi Iwaibd7bf042005-04-12 16:27:28 +0200614 entry->mode |= S_IWUSR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
James Courtier-Dutton6ef7e862005-11-11 23:45:23 +0100616 if (! snd_card_proc_new(emu->card, "ptr_regs20c", &entry)) {
Takashi Iwaibf850202006-04-28 15:13:41 +0200617 snd_info_set_text_ops(entry, emu, snd_emu_proc_ptr_reg_read20c);
James Courtier-Dutton6ef7e862005-11-11 23:45:23 +0100618 entry->c.text.write = snd_emu_proc_ptr_reg_write20;
619 entry->mode |= S_IWUSR;
620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621#endif
622
623 if (! snd_card_proc_new(emu->card, "emu10k1", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +0200624 snd_info_set_text_ops(entry, emu, snd_emu10k1_proc_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
James Courtier-Duttondf341402005-04-09 16:57:09 +0200626 if (emu->card_capabilities->emu10k2_chip) {
627 if (! snd_card_proc_new(emu->card, "spdif-in", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +0200628 snd_info_set_text_ops(entry, emu, snd_emu10k1_proc_spdif_read);
James Courtier-Duttondf341402005-04-09 16:57:09 +0200629 }
James Courtier-Dutton001f7582005-04-09 23:38:25 +0200630 if (emu->card_capabilities->ca0151_chip) {
631 if (! snd_card_proc_new(emu->card, "capture-rates", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +0200632 snd_info_set_text_ops(entry, emu, snd_emu10k1_proc_rates_read);
James Courtier-Dutton001f7582005-04-09 23:38:25 +0200633 }
James Courtier-Duttondf341402005-04-09 16:57:09 +0200634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (! snd_card_proc_new(emu->card, "voices", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +0200636 snd_info_set_text_ops(entry, emu, snd_emu10k1_proc_voices_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 if (! snd_card_proc_new(emu->card, "fx8010_gpr", &entry)) {
639 entry->content = SNDRV_INFO_CONTENT_DATA;
640 entry->private_data = emu;
641 entry->mode = S_IFREG | S_IRUGO /*| S_IWUSR*/;
642 entry->size = emu->audigy ? A_TOTAL_SIZE_GPR : TOTAL_SIZE_GPR;
643 entry->c.ops = &snd_emu10k1_proc_ops_fx8010;
644 }
645 if (! snd_card_proc_new(emu->card, "fx8010_tram_data", &entry)) {
646 entry->content = SNDRV_INFO_CONTENT_DATA;
647 entry->private_data = emu;
648 entry->mode = S_IFREG | S_IRUGO /*| S_IWUSR*/;
649 entry->size = emu->audigy ? A_TOTAL_SIZE_TANKMEM_DATA : TOTAL_SIZE_TANKMEM_DATA ;
650 entry->c.ops = &snd_emu10k1_proc_ops_fx8010;
651 }
652 if (! snd_card_proc_new(emu->card, "fx8010_tram_addr", &entry)) {
653 entry->content = SNDRV_INFO_CONTENT_DATA;
654 entry->private_data = emu;
655 entry->mode = S_IFREG | S_IRUGO /*| S_IWUSR*/;
656 entry->size = emu->audigy ? A_TOTAL_SIZE_TANKMEM_ADDR : TOTAL_SIZE_TANKMEM_ADDR ;
657 entry->c.ops = &snd_emu10k1_proc_ops_fx8010;
658 }
659 if (! snd_card_proc_new(emu->card, "fx8010_code", &entry)) {
660 entry->content = SNDRV_INFO_CONTENT_DATA;
661 entry->private_data = emu;
662 entry->mode = S_IFREG | S_IRUGO /*| S_IWUSR*/;
663 entry->size = emu->audigy ? A_TOTAL_SIZE_CODE : TOTAL_SIZE_CODE;
664 entry->c.ops = &snd_emu10k1_proc_ops_fx8010;
665 }
666 if (! snd_card_proc_new(emu->card, "fx8010_acode", &entry)) {
667 entry->content = SNDRV_INFO_CONTENT_TEXT;
668 entry->private_data = emu;
669 entry->mode = S_IFREG | S_IRUGO /*| S_IWUSR*/;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 entry->c.text.read = snd_emu10k1_proc_acode_read;
671 }
672 return 0;
673}
Takashi Iwaiadf1b3d2005-12-01 10:49:58 +0100674#endif /* CONFIG_PROC_FS */