1/*
2 * Driver for Digigram miXart soundcards
3 *
4 * main file with alsa callbacks
5 *
6 * Copyright (c) 2003 by Digigram <alsa@digigram.com>
7 *
8 *   This program is free software; you can redistribute it and/or modify
9 *   it under the terms of the GNU General Public License as published by
10 *   the Free Software Foundation; either version 2 of the License, or
11 *   (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 */
22
23
24#include <sound/driver.h>
25#include <linux/init.h>
26#include <linux/interrupt.h>
27#include <linux/pci.h>
28#include <linux/dma-mapping.h>
29#include <linux/moduleparam.h>
30#include <linux/mutex.h>
31
32#include <sound/core.h>
33#include <sound/initval.h>
34#include <sound/info.h>
35#include <sound/control.h>
36#include <sound/pcm.h>
37#include <sound/pcm_params.h>
38#include "mixart.h"
39#include "mixart_hwdep.h"
40#include "mixart_core.h"
41#include "mixart_mixer.h"
42
43#define CARD_NAME "miXart"
44
45MODULE_AUTHOR("Digigram <alsa@digigram.com>");
46MODULE_DESCRIPTION("Digigram " CARD_NAME);
47MODULE_LICENSE("GPL");
48MODULE_SUPPORTED_DEVICE("{{Digigram," CARD_NAME "}}");
49
50static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;             /* Index 0-MAX */
51static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;              /* ID for this card */
52static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;     /* Enable this card */
53
54module_param_array(index, int, NULL, 0444);
55MODULE_PARM_DESC(index, "Index value for Digigram " CARD_NAME " soundcard.");
56module_param_array(id, charp, NULL, 0444);
57MODULE_PARM_DESC(id, "ID string for Digigram " CARD_NAME " soundcard.");
58module_param_array(enable, bool, NULL, 0444);
59MODULE_PARM_DESC(enable, "Enable Digigram " CARD_NAME " soundcard.");
60
61/*
62 */
63
64static struct pci_device_id snd_mixart_ids[] = {
65	{ 0x1057, 0x0003, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0, }, /* MC8240 */
66	{ 0, }
67};
68
69MODULE_DEVICE_TABLE(pci, snd_mixart_ids);
70
71
72static int mixart_set_pipe_state(struct mixart_mgr *mgr,
73				 struct mixart_pipe *pipe, int start)
74{
75	struct mixart_group_state_req group_state;
76	struct mixart_group_state_resp group_state_resp;
77	struct mixart_msg request;
78	int err;
79	u32 system_msg_uid;
80
81	switch(pipe->status) {
82	case PIPE_RUNNING:
83	case PIPE_CLOCK_SET:
84		if(start) return 0; /* already started */
85		break;
86	case PIPE_STOPPED:
87		if(!start) return 0; /* already stopped */
88		break;
89	default:
90		snd_printk(KERN_ERR "error mixart_set_pipe_state called with wrong pipe->status!\n");
91		return -EINVAL;      /* function called with wrong pipe status */
92	}
93
94	system_msg_uid = 0x12345678; /* the event ! (take care: the MSB and two LSB's have to be 0) */
95
96	/* wait on the last MSG_SYSTEM_SEND_SYNCHRO_CMD command to be really finished */
97
98	request.message_id = MSG_SYSTEM_WAIT_SYNCHRO_CMD;
99	request.uid = (struct mixart_uid){0,0};
100	request.data = &system_msg_uid;
101	request.size = sizeof(system_msg_uid);
102
103	err = snd_mixart_send_msg_wait_notif(mgr, &request, system_msg_uid);
104	if(err) {
105		snd_printk(KERN_ERR "error : MSG_SYSTEM_WAIT_SYNCHRO_CMD was not notified !\n");
106		return err;
107	}
108
109	/* start or stop the pipe (1 pipe) */
110
111	memset(&group_state, 0, sizeof(group_state));
112	group_state.pipe_count = 1;
113	group_state.pipe_uid[0] = pipe->group_uid;
114
115	if(start)
116		request.message_id = MSG_STREAM_START_STREAM_GRP_PACKET;
117	else
118		request.message_id = MSG_STREAM_STOP_STREAM_GRP_PACKET;
119
120	request.uid = pipe->group_uid; /*(struct mixart_uid){0,0};*/
121	request.data = &group_state;
122	request.size = sizeof(group_state);
123
124	err = snd_mixart_send_msg(mgr, &request, sizeof(group_state_resp), &group_state_resp);
125	if (err < 0 || group_state_resp.txx_status != 0) {
126		snd_printk(KERN_ERR "error MSG_STREAM_ST***_STREAM_GRP_PACKET err=%x stat=%x !\n", err, group_state_resp.txx_status);
127		return -EINVAL;
128	}
129
130	if(start) {
131		u32 stat;
132
133		group_state.pipe_count = 0; /* in case of start same command once again with pipe_count=0 */
134
135		err = snd_mixart_send_msg(mgr, &request, sizeof(group_state_resp), &group_state_resp);
136		if (err < 0 || group_state_resp.txx_status != 0) {
137			snd_printk(KERN_ERR "error MSG_STREAM_START_STREAM_GRP_PACKET err=%x stat=%x !\n", err, group_state_resp.txx_status);
138 			return -EINVAL;
139		}
140
141		/* in case of start send a synchro top */
142
143		request.message_id = MSG_SYSTEM_SEND_SYNCHRO_CMD;
144		request.uid = (struct mixart_uid){0,0};
145		request.data = NULL;
146		request.size = 0;
147
148		err = snd_mixart_send_msg(mgr, &request, sizeof(stat), &stat);
149		if (err < 0 || stat != 0) {
150			snd_printk(KERN_ERR "error MSG_SYSTEM_SEND_SYNCHRO_CMD err=%x stat=%x !\n", err, stat);
151			return -EINVAL;
152		}
153
154		pipe->status = PIPE_RUNNING;
155	}
156	else /* !start */
157		pipe->status = PIPE_STOPPED;
158
159	return 0;
160}
161
162
163static int mixart_set_clock(struct mixart_mgr *mgr,
164			    struct mixart_pipe *pipe, unsigned int rate)
165{
166	struct mixart_msg request;
167	struct mixart_clock_properties clock_properties;
168	struct mixart_clock_properties_resp clock_prop_resp;
169	int err;
170
171	switch(pipe->status) {
172	case PIPE_CLOCK_SET:
173		break;
174	case PIPE_RUNNING:
175		if(rate != 0)
176			break;
177	default:
178		if(rate == 0)
179			return 0; /* nothing to do */
180		else {
181			snd_printk(KERN_ERR "error mixart_set_clock(%d) called with wrong pipe->status !\n", rate);
182			return -EINVAL;
183		}
184	}
185
186	memset(&clock_properties, 0, sizeof(clock_properties));
187	clock_properties.clock_generic_type = (rate != 0) ? CGT_INTERNAL_CLOCK : CGT_NO_CLOCK;
188	clock_properties.clock_mode = CM_STANDALONE;
189	clock_properties.frequency = rate;
190	clock_properties.nb_callers = 1; /* only one entry in uid_caller ! */
191	clock_properties.uid_caller[0] = pipe->group_uid;
192
193	snd_printdd("mixart_set_clock to %d kHz\n", rate);
194
195	request.message_id = MSG_CLOCK_SET_PROPERTIES;
196	request.uid = mgr->uid_console_manager;
197	request.data = &clock_properties;
198	request.size = sizeof(clock_properties);
199
200	err = snd_mixart_send_msg(mgr, &request, sizeof(clock_prop_resp), &clock_prop_resp);
201	if (err < 0 || clock_prop_resp.status != 0 || clock_prop_resp.clock_mode != CM_STANDALONE) {
202		snd_printk(KERN_ERR "error MSG_CLOCK_SET_PROPERTIES err=%x stat=%x mod=%x !\n", err, clock_prop_resp.status, clock_prop_resp.clock_mode);
203		return -EINVAL;
204	}
205
206	if(rate)  pipe->status = PIPE_CLOCK_SET;
207	else      pipe->status = PIPE_RUNNING;
208
209	return 0;
210}
211
212
213/*
214 *  Allocate or reference output pipe for analog IOs (pcmp0/1)
215 */
216struct mixart_pipe *
217snd_mixart_add_ref_pipe(struct snd_mixart *chip, int pcm_number, int capture,
218			int monitoring)
219{
220	int stream_count;
221	struct mixart_pipe *pipe;
222	struct mixart_msg request;
223
224	if(capture) {
225		if (pcm_number == MIXART_PCM_ANALOG) {
226			pipe = &(chip->pipe_in_ana);  /* analog inputs */
227		} else {
228			pipe = &(chip->pipe_in_dig); /* digital inputs */
229		}
230		request.message_id = MSG_STREAM_ADD_OUTPUT_GROUP;
231		stream_count = MIXART_CAPTURE_STREAMS;
232	} else {
233		if (pcm_number == MIXART_PCM_ANALOG) {
234			pipe = &(chip->pipe_out_ana);  /* analog outputs */
235		} else {
236			pipe = &(chip->pipe_out_dig);  /* digital outputs */
237		}
238		request.message_id = MSG_STREAM_ADD_INPUT_GROUP;
239		stream_count = MIXART_PLAYBACK_STREAMS;
240	}
241
242	/* a new stream is opened and there are already all streams in use */
243	if( (monitoring == 0) && (pipe->references >= stream_count) ) {
244		return NULL;
245	}
246
247	/* pipe is not yet defined */
248	if( pipe->status == PIPE_UNDEFINED ) {
249		int err, i;
250		struct {
251			struct mixart_streaming_group_req sgroup_req;
252			struct mixart_streaming_group sgroup_resp;
253		} *buf;
254
255		snd_printdd("add_ref_pipe audio chip(%d) pcm(%d)\n", chip->chip_idx, pcm_number);
256
257		buf = kmalloc(sizeof(*buf), GFP_KERNEL);
258		if (!buf)
259			return NULL;
260
261		request.uid = (struct mixart_uid){0,0};      /* should be StreamManagerUID, but zero is OK if there is only one ! */
262		request.data = &buf->sgroup_req;
263		request.size = sizeof(buf->sgroup_req);
264
265		memset(&buf->sgroup_req, 0, sizeof(buf->sgroup_req));
266
267		buf->sgroup_req.stream_count = stream_count;
268		buf->sgroup_req.channel_count = 2;
269		buf->sgroup_req.latency = 256;
270		buf->sgroup_req.connector = pipe->uid_left_connector;  /* the left connector */
271
272		for (i=0; i<stream_count; i++) {
273			int j;
274			struct mixart_flowinfo *flowinfo;
275			struct mixart_bufferinfo *bufferinfo;
276
277			/* we don't yet know the format, so config 16 bit pcm audio for instance */
278			buf->sgroup_req.stream_info[i].size_max_byte_frame = 1024;
279			buf->sgroup_req.stream_info[i].size_max_sample_frame = 256;
280			buf->sgroup_req.stream_info[i].nb_bytes_max_per_sample = MIXART_FLOAT_P__4_0_TO_HEX; /* is 4.0f */
281
282			/* find the right bufferinfo_array */
283			j = (chip->chip_idx * MIXART_MAX_STREAM_PER_CARD) + (pcm_number * (MIXART_PLAYBACK_STREAMS + MIXART_CAPTURE_STREAMS)) + i;
284			if(capture) j += MIXART_PLAYBACK_STREAMS; /* in the array capture is behind playback */
285
286			buf->sgroup_req.flow_entry[i] = j;
287
288			flowinfo = (struct mixart_flowinfo *)chip->mgr->flowinfo.area;
289			flowinfo[j].bufferinfo_array_phy_address = (u32)chip->mgr->bufferinfo.addr + (j * sizeof(struct mixart_bufferinfo));
290			flowinfo[j].bufferinfo_count = 1;               /* 1 will set the miXart to ring-buffer mode ! */
291
292			bufferinfo = (struct mixart_bufferinfo *)chip->mgr->bufferinfo.area;
293			bufferinfo[j].buffer_address = 0;               /* buffer is not yet allocated */
294			bufferinfo[j].available_length = 0;             /* buffer is not yet allocated */
295
296			/* construct the identifier of the stream buffer received in the interrupts ! */
297			bufferinfo[j].buffer_id = (chip->chip_idx << MIXART_NOTIFY_CARD_OFFSET) + (pcm_number << MIXART_NOTIFY_PCM_OFFSET ) + i;
298			if(capture) {
299				bufferinfo[j].buffer_id |= MIXART_NOTIFY_CAPT_MASK;
300			}
301		}
302
303		err = snd_mixart_send_msg(chip->mgr, &request, sizeof(buf->sgroup_resp), &buf->sgroup_resp);
304		if((err < 0) || (buf->sgroup_resp.status != 0)) {
305			snd_printk(KERN_ERR "error MSG_STREAM_ADD_**PUT_GROUP err=%x stat=%x !\n", err, buf->sgroup_resp.status);
306			kfree(buf);
307			return NULL;
308		}
309
310		pipe->group_uid = buf->sgroup_resp.group;     /* id of the pipe, as returned by embedded */
311		pipe->stream_count = buf->sgroup_resp.stream_count;
312		/* pipe->stream_uid[i] = buf->sgroup_resp.stream[i].stream_uid; */
313
314		pipe->status = PIPE_STOPPED;
315		kfree(buf);
316	}
317
318	if(monitoring)	pipe->monitoring = 1;
319	else		pipe->references++;
320
321	return pipe;
322}
323
324
325int snd_mixart_kill_ref_pipe(struct mixart_mgr *mgr,
326			     struct mixart_pipe *pipe, int monitoring)
327{
328	int err = 0;
329
330	if(pipe->status == PIPE_UNDEFINED)
331		return 0;
332
333	if(monitoring)
334		pipe->monitoring = 0;
335	else
336		pipe->references--;
337
338	if((pipe->references <= 0) && (pipe->monitoring == 0)) {
339
340		struct mixart_msg request;
341		struct mixart_delete_group_resp delete_resp;
342
343		/* release the clock */
344		err = mixart_set_clock( mgr, pipe, 0);
345		if( err < 0 ) {
346			snd_printk(KERN_ERR "mixart_set_clock(0) return error!\n");
347		}
348
349		/* stop the pipe */
350		err = mixart_set_pipe_state(mgr, pipe, 0);
351		if( err < 0 ) {
352			snd_printk(KERN_ERR "error stopping pipe!\n");
353		}
354
355		request.message_id = MSG_STREAM_DELETE_GROUP;
356		request.uid = (struct mixart_uid){0,0};
357		request.data = &pipe->group_uid;            /* the streaming group ! */
358		request.size = sizeof(pipe->group_uid);
359
360		/* delete the pipe */
361		err = snd_mixart_send_msg(mgr, &request, sizeof(delete_resp), &delete_resp);
362		if ((err < 0) || (delete_resp.status != 0)) {
363			snd_printk(KERN_ERR "error MSG_STREAM_DELETE_GROUP err(%x), status(%x)\n", err, delete_resp.status);
364		}
365
366		pipe->group_uid = (struct mixart_uid){0,0};
367		pipe->stream_count = 0;
368		pipe->status = PIPE_UNDEFINED;
369	}
370
371	return err;
372}
373
374static int mixart_set_stream_state(struct mixart_stream *stream, int start)
375{
376	struct snd_mixart *chip;
377	struct mixart_stream_state_req stream_state_req;
378	struct mixart_msg request;
379
380	if(!stream->substream)
381		return -EINVAL;
382
383	memset(&stream_state_req, 0, sizeof(stream_state_req));
384	stream_state_req.stream_count = 1;
385	stream_state_req.stream_info.stream_desc.uid_pipe = stream->pipe->group_uid;
386	stream_state_req.stream_info.stream_desc.stream_idx = stream->substream->number;
387
388	if (stream->substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
389		request.message_id = start ? MSG_STREAM_START_INPUT_STAGE_PACKET : MSG_STREAM_STOP_INPUT_STAGE_PACKET;
390	else
391		request.message_id = start ? MSG_STREAM_START_OUTPUT_STAGE_PACKET : MSG_STREAM_STOP_OUTPUT_STAGE_PACKET;
392
393	request.uid = (struct mixart_uid){0,0};
394	request.data = &stream_state_req;
395	request.size = sizeof(stream_state_req);
396
397	stream->abs_period_elapsed = 0;            /* reset stream pos      */
398	stream->buf_periods = 0;
399	stream->buf_period_frag = 0;
400
401	chip = snd_pcm_substream_chip(stream->substream);
402
403	return snd_mixart_send_msg_nonblock(chip->mgr, &request);
404}
405
406/*
407 *  Trigger callback
408 */
409
410static int snd_mixart_trigger(struct snd_pcm_substream *subs, int cmd)
411{
412	struct mixart_stream *stream = subs->runtime->private_data;
413
414	switch (cmd) {
415	case SNDRV_PCM_TRIGGER_START:
416
417		snd_printdd("SNDRV_PCM_TRIGGER_START\n");
418
419		/* START_STREAM */
420		if( mixart_set_stream_state(stream, 1) )
421			return -EINVAL;
422
423		stream->status = MIXART_STREAM_STATUS_RUNNING;
424
425		break;
426	case SNDRV_PCM_TRIGGER_STOP:
427
428		/* STOP_STREAM */
429		if( mixart_set_stream_state(stream, 0) )
430			return -EINVAL;
431
432		stream->status = MIXART_STREAM_STATUS_OPEN;
433
434		snd_printdd("SNDRV_PCM_TRIGGER_STOP\n");
435
436		break;
437
438	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
439		/* TODO */
440		stream->status = MIXART_STREAM_STATUS_PAUSE;
441		snd_printdd("SNDRV_PCM_PAUSE_PUSH\n");
442		break;
443	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
444		/* TODO */
445		stream->status = MIXART_STREAM_STATUS_RUNNING;
446		snd_printdd("SNDRV_PCM_PAUSE_RELEASE\n");
447		break;
448	default:
449		return -EINVAL;
450	}
451	return 0;
452}
453
454static int mixart_sync_nonblock_events(struct mixart_mgr *mgr)
455{
456	unsigned long timeout = jiffies + HZ;
457	while (atomic_read(&mgr->msg_processed) > 0) {
458		if (time_after(jiffies, timeout)) {
459			snd_printk(KERN_ERR "mixart: cannot process nonblock events!\n");
460			return -EBUSY;
461		}
462		schedule_timeout_uninterruptible(1);
463	}
464	return 0;
465}
466
467/*
468 *  prepare callback for all pcms
469 */
470static int snd_mixart_prepare(struct snd_pcm_substream *subs)
471{
472	struct snd_mixart *chip = snd_pcm_substream_chip(subs);
473	struct mixart_stream *stream = subs->runtime->private_data;
474
475	/* TODO de fa��on non bloquante, r��appliquer les hw_params (rate, bits, codec) */
476
477	snd_printdd("snd_mixart_prepare\n");
478
479	mixart_sync_nonblock_events(chip->mgr);
480
481	/* only the first stream can choose the sample rate */
482	/* the further opened streams will be limited to its frequency (see open) */
483	if(chip->mgr->ref_count_rate == 1)
484		chip->mgr->sample_rate = subs->runtime->rate;
485
486	/* set the clock only once (first stream) on the same pipe */
487	if(stream->pipe->references == 1) {
488		if( mixart_set_clock(chip->mgr, stream->pipe, subs->runtime->rate) )
489			return -EINVAL;
490	}
491
492	return 0;
493}
494
495
496static int mixart_set_format(struct mixart_stream *stream, snd_pcm_format_t format)
497{
498	int err;
499	struct snd_mixart *chip;
500	struct mixart_msg request;
501	struct mixart_stream_param_desc stream_param;
502	struct mixart_return_uid resp;
503
504	chip = snd_pcm_substream_chip(stream->substream);
505
506	memset(&stream_param, 0, sizeof(stream_param));
507
508	stream_param.coding_type = CT_LINEAR;
509	stream_param.number_of_channel = stream->channels;
510
511	stream_param.sampling_freq = chip->mgr->sample_rate;
512	if(stream_param.sampling_freq == 0)
513		stream_param.sampling_freq = 44100; /* if frequency not yet defined, use some default */
514
515	switch(format){
516	case SNDRV_PCM_FORMAT_U8:
517		stream_param.sample_type = ST_INTEGER_8;
518		stream_param.sample_size = 8;
519		break;
520	case SNDRV_PCM_FORMAT_S16_LE:
521		stream_param.sample_type = ST_INTEGER_16LE;
522		stream_param.sample_size = 16;
523		break;
524	case SNDRV_PCM_FORMAT_S16_BE:
525		stream_param.sample_type = ST_INTEGER_16BE;
526		stream_param.sample_size = 16;
527		break;
528	case SNDRV_PCM_FORMAT_S24_3LE:
529		stream_param.sample_type = ST_INTEGER_24LE;
530		stream_param.sample_size = 24;
531		break;
532	case SNDRV_PCM_FORMAT_S24_3BE:
533		stream_param.sample_type = ST_INTEGER_24BE;
534		stream_param.sample_size = 24;
535		break;
536	case SNDRV_PCM_FORMAT_FLOAT_LE:
537		stream_param.sample_type = ST_FLOATING_POINT_32LE;
538		stream_param.sample_size = 32;
539		break;
540	case  SNDRV_PCM_FORMAT_FLOAT_BE:
541		stream_param.sample_type = ST_FLOATING_POINT_32BE;
542		stream_param.sample_size = 32;
543		break;
544	default:
545		snd_printk(KERN_ERR "error mixart_set_format() : unknown format\n");
546		return -EINVAL;
547	}
548
549	snd_printdd("set SNDRV_PCM_FORMAT sample_type(%d) sample_size(%d) freq(%d) channels(%d)\n",
550		   stream_param.sample_type, stream_param.sample_size, stream_param.sampling_freq, stream->channels);
551
552	/* TODO: what else to configure ? */
553	/* stream_param.samples_per_frame = 2; */
554	/* stream_param.bytes_per_frame = 4; */
555	/* stream_param.bytes_per_sample = 2; */
556
557	stream_param.pipe_count = 1;      /* set to 1 */
558	stream_param.stream_count = 1;    /* set to 1 */
559	stream_param.stream_desc[0].uid_pipe = stream->pipe->group_uid;
560	stream_param.stream_desc[0].stream_idx = stream->substream->number;
561
562	request.message_id = MSG_STREAM_SET_INPUT_STAGE_PARAM;
563	request.uid = (struct mixart_uid){0,0};
564	request.data = &stream_param;
565	request.size = sizeof(stream_param);
566
567	err = snd_mixart_send_msg(chip->mgr, &request, sizeof(resp), &resp);
568	if((err < 0) || resp.error_code) {
569		snd_printk(KERN_ERR "MSG_STREAM_SET_INPUT_STAGE_PARAM err=%x; resp=%x\n", err, resp.error_code);
570		return -EINVAL;
571	}
572	return 0;
573}
574
575
576/*
577 *  HW_PARAMS callback for all pcms
578 */
579static int snd_mixart_hw_params(struct snd_pcm_substream *subs,
580                                struct snd_pcm_hw_params *hw)
581{
582	struct snd_mixart *chip = snd_pcm_substream_chip(subs);
583	struct mixart_mgr *mgr = chip->mgr;
584	struct mixart_stream *stream = subs->runtime->private_data;
585	snd_pcm_format_t format;
586	int err;
587	int channels;
588
589	/* set up channels */
590	channels = params_channels(hw);
591
592	/*  set up format for the stream */
593	format = params_format(hw);
594
595	mutex_lock(&mgr->setup_mutex);
596
597	/* update the stream levels */
598	if( stream->pcm_number <= MIXART_PCM_DIGITAL ) {
599		int is_aes = stream->pcm_number > MIXART_PCM_ANALOG;
600		if( subs->stream == SNDRV_PCM_STREAM_PLAYBACK )
601			mixart_update_playback_stream_level(chip, is_aes, subs->number);
602		else
603			mixart_update_capture_stream_level( chip, is_aes);
604	}
605
606	stream->channels = channels;
607
608	/* set the format to the board */
609	err = mixart_set_format(stream, format);
610	if(err < 0) {
611		return err;
612	}
613
614	/* allocate buffer */
615	err = snd_pcm_lib_malloc_pages(subs, params_buffer_bytes(hw));
616
617	if (err > 0) {
618		struct mixart_bufferinfo *bufferinfo;
619		int i = (chip->chip_idx * MIXART_MAX_STREAM_PER_CARD) + (stream->pcm_number * (MIXART_PLAYBACK_STREAMS+MIXART_CAPTURE_STREAMS)) + subs->number;
620		if( subs->stream == SNDRV_PCM_STREAM_CAPTURE ) {
621			i += MIXART_PLAYBACK_STREAMS; /* in array capture is behind playback */
622		}
623
624		bufferinfo = (struct mixart_bufferinfo *)chip->mgr->bufferinfo.area;
625		bufferinfo[i].buffer_address = subs->runtime->dma_addr;
626		bufferinfo[i].available_length = subs->runtime->dma_bytes;
627		/* bufferinfo[i].buffer_id  is already defined */
628
629		snd_printdd("snd_mixart_hw_params(pcm %d) : dma_addr(%x) dma_bytes(%x) subs-number(%d)\n", i,
630				bufferinfo[i].buffer_address,
631				bufferinfo[i].available_length,
632				subs->number);
633	}
634	mutex_unlock(&mgr->setup_mutex);
635
636	return err;
637}
638
639static int snd_mixart_hw_free(struct snd_pcm_substream *subs)
640{
641	struct snd_mixart *chip = snd_pcm_substream_chip(subs);
642	snd_pcm_lib_free_pages(subs);
643	mixart_sync_nonblock_events(chip->mgr);
644	return 0;
645}
646
647
648
649/*
650 *  TODO CONFIGURATION SPACE for all pcms, mono pcm must update channels_max
651 */
652static struct snd_pcm_hardware snd_mixart_analog_caps =
653{
654	.info             = ( SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
655			      SNDRV_PCM_INFO_MMAP_VALID | SNDRV_PCM_INFO_SYNC_START |
656			      SNDRV_PCM_INFO_PAUSE),
657	.formats	  = ( SNDRV_PCM_FMTBIT_U8 |
658			      SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE |
659			      SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S24_3BE |
660			      SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE ),
661	.rates            = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
662	.rate_min         = 8000,
663	.rate_max         = 48000,
664	.channels_min     = 1,
665	.channels_max     = 2,
666	.buffer_bytes_max = (32*1024),
667	.period_bytes_min = 256,                  /* 256 frames U8 mono*/
668	.period_bytes_max = (16*1024),
669	.periods_min      = 2,
670	.periods_max      = (32*1024/256),
671};
672
673static struct snd_pcm_hardware snd_mixart_digital_caps =
674{
675	.info             = ( SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
676			      SNDRV_PCM_INFO_MMAP_VALID | SNDRV_PCM_INFO_SYNC_START |
677			      SNDRV_PCM_INFO_PAUSE),
678	.formats	  = ( SNDRV_PCM_FMTBIT_U8 |
679			      SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE |
680			      SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S24_3BE |
681			      SNDRV_PCM_FMTBIT_FLOAT_LE | SNDRV_PCM_FMTBIT_FLOAT_BE ),
682	.rates            = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000,
683	.rate_min         = 32000,
684	.rate_max         = 48000,
685	.channels_min     = 1,
686	.channels_max     = 2,
687	.buffer_bytes_max = (32*1024),
688	.period_bytes_min = 256,                  /* 256 frames U8 mono*/
689	.period_bytes_max = (16*1024),
690	.periods_min      = 2,
691	.periods_max      = (32*1024/256),
692};
693
694
695static int snd_mixart_playback_open(struct snd_pcm_substream *subs)
696{
697	struct snd_mixart            *chip = snd_pcm_substream_chip(subs);
698	struct mixart_mgr        *mgr = chip->mgr;
699	struct snd_pcm_runtime *runtime = subs->runtime;
700	struct snd_pcm *pcm = subs->pcm;
701	struct mixart_stream     *stream;
702	struct mixart_pipe       *pipe;
703	int err = 0;
704	int pcm_number;
705
706	mutex_lock(&mgr->setup_mutex);
707
708	if ( pcm == chip->pcm ) {
709		pcm_number = MIXART_PCM_ANALOG;
710		runtime->hw = snd_mixart_analog_caps;
711	} else {
712		snd_assert ( pcm == chip->pcm_dig );
713		pcm_number = MIXART_PCM_DIGITAL;
714		runtime->hw = snd_mixart_digital_caps;
715	}
716	snd_printdd("snd_mixart_playback_open C%d/P%d/Sub%d\n", chip->chip_idx, pcm_number, subs->number);
717
718	/* get stream info */
719	stream = &(chip->playback_stream[pcm_number][subs->number]);
720
721	if (stream->status != MIXART_STREAM_STATUS_FREE){
722		/* streams in use */
723		snd_printk(KERN_ERR "snd_mixart_playback_open C%d/P%d/Sub%d in use\n", chip->chip_idx, pcm_number, subs->number);
724		err = -EBUSY;
725		goto _exit_open;
726	}
727
728	/* get pipe pointer (out pipe) */
729	pipe = snd_mixart_add_ref_pipe(chip, pcm_number, 0, 0);
730
731	if (pipe == NULL) {
732		err = -EINVAL;
733		goto _exit_open;
734	}
735
736	/* start the pipe if necessary */
737	err = mixart_set_pipe_state(chip->mgr, pipe, 1);
738	if( err < 0 ) {
739		snd_printk(KERN_ERR "error starting pipe!\n");
740		snd_mixart_kill_ref_pipe(chip->mgr, pipe, 0);
741		err = -EINVAL;
742		goto _exit_open;
743	}
744
745	stream->pipe        = pipe;
746	stream->pcm_number  = pcm_number;
747	stream->status      = MIXART_STREAM_STATUS_OPEN;
748	stream->substream   = subs;
749	stream->channels    = 0; /* not configured yet */
750
751	runtime->private_data = stream;
752
753	snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 32);
754	snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 64);
755
756	/* if a sample rate is already used, another stream cannot change */
757	if(mgr->ref_count_rate++) {
758		if(mgr->sample_rate) {
759			runtime->hw.rate_min = runtime->hw.rate_max = mgr->sample_rate;
760		}
761	}
762
763 _exit_open:
764	mutex_unlock(&mgr->setup_mutex);
765
766	return err;
767}
768
769
770static int snd_mixart_capture_open(struct snd_pcm_substream *subs)
771{
772	struct snd_mixart            *chip = snd_pcm_substream_chip(subs);
773	struct mixart_mgr        *mgr = chip->mgr;
774	struct snd_pcm_runtime *runtime = subs->runtime;
775	struct snd_pcm *pcm = subs->pcm;
776	struct mixart_stream     *stream;
777	struct mixart_pipe       *pipe;
778	int err = 0;
779	int pcm_number;
780
781	mutex_lock(&mgr->setup_mutex);
782
783	if ( pcm == chip->pcm ) {
784		pcm_number = MIXART_PCM_ANALOG;
785		runtime->hw = snd_mixart_analog_caps;
786	} else {
787		snd_assert ( pcm == chip->pcm_dig );
788		pcm_number = MIXART_PCM_DIGITAL;
789		runtime->hw = snd_mixart_digital_caps;
790	}
791
792	runtime->hw.channels_min = 2; /* for instance, no mono */
793
794	snd_printdd("snd_mixart_capture_open C%d/P%d/Sub%d\n", chip->chip_idx, pcm_number, subs->number);
795
796	/* get stream info */
797	stream = &(chip->capture_stream[pcm_number]);
798
799	if (stream->status != MIXART_STREAM_STATUS_FREE){
800		/* streams in use */
801		snd_printk(KERN_ERR "snd_mixart_capture_open C%d/P%d/Sub%d in use\n", chip->chip_idx, pcm_number, subs->number);
802		err = -EBUSY;
803		goto _exit_open;
804	}
805
806	/* get pipe pointer (in pipe) */
807	pipe = snd_mixart_add_ref_pipe(chip, pcm_number, 1, 0);
808
809	if (pipe == NULL) {
810		err = -EINVAL;
811		goto _exit_open;
812	}
813
814	/* start the pipe if necessary */
815	err = mixart_set_pipe_state(chip->mgr, pipe, 1);
816	if( err < 0 ) {
817		snd_printk(KERN_ERR "error starting pipe!\n");
818		snd_mixart_kill_ref_pipe(chip->mgr, pipe, 0);
819		err = -EINVAL;
820		goto _exit_open;
821	}
822
823	stream->pipe        = pipe;
824	stream->pcm_number  = pcm_number;
825	stream->status      = MIXART_STREAM_STATUS_OPEN;
826	stream->substream   = subs;
827	stream->channels    = 0; /* not configured yet */
828
829	runtime->private_data = stream;
830
831	snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 32);
832	snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_SIZE, 64);
833
834	/* if a sample rate is already used, another stream cannot change */
835	if(mgr->ref_count_rate++) {
836		if(mgr->sample_rate) {
837			runtime->hw.rate_min = runtime->hw.rate_max = mgr->sample_rate;
838		}
839	}
840
841 _exit_open:
842	mutex_unlock(&mgr->setup_mutex);
843
844	return err;
845}
846
847
848
849static int snd_mixart_close(struct snd_pcm_substream *subs)
850{
851	struct snd_mixart *chip = snd_pcm_substream_chip(subs);
852	struct mixart_mgr *mgr = chip->mgr;
853	struct mixart_stream *stream = subs->runtime->private_data;
854
855	mutex_lock(&mgr->setup_mutex);
856
857	snd_printdd("snd_mixart_close C%d/P%d/Sub%d\n", chip->chip_idx, stream->pcm_number, subs->number);
858
859	/* sample rate released */
860	if(--mgr->ref_count_rate == 0) {
861		mgr->sample_rate = 0;
862	}
863
864	/* delete pipe */
865	if (snd_mixart_kill_ref_pipe(mgr, stream->pipe, 0 ) < 0) {
866
867		snd_printk(KERN_ERR "error snd_mixart_kill_ref_pipe C%dP%d\n", chip->chip_idx, stream->pcm_number);
868	}
869
870	stream->pipe      = NULL;
871	stream->status    = MIXART_STREAM_STATUS_FREE;
872	stream->substream = NULL;
873
874	mutex_unlock(&mgr->setup_mutex);
875	return 0;
876}
877
878
879static snd_pcm_uframes_t snd_mixart_stream_pointer(struct snd_pcm_substream *subs)
880{
881	struct snd_pcm_runtime *runtime = subs->runtime;
882	struct mixart_stream   *stream  = runtime->private_data;
883
884	return (snd_pcm_uframes_t)((stream->buf_periods * runtime->period_size) + stream->buf_period_frag);
885}
886
887
888
889static struct snd_pcm_ops snd_mixart_playback_ops = {
890	.open      = snd_mixart_playback_open,
891	.close     = snd_mixart_close,
892	.ioctl     = snd_pcm_lib_ioctl,
893	.prepare   = snd_mixart_prepare,
894	.hw_params = snd_mixart_hw_params,
895	.hw_free   = snd_mixart_hw_free,
896	.trigger   = snd_mixart_trigger,
897	.pointer   = snd_mixart_stream_pointer,
898};
899
900static struct snd_pcm_ops snd_mixart_capture_ops = {
901	.open      = snd_mixart_capture_open,
902	.close     = snd_mixart_close,
903	.ioctl     = snd_pcm_lib_ioctl,
904	.prepare   = snd_mixart_prepare,
905	.hw_params = snd_mixart_hw_params,
906	.hw_free   = snd_mixart_hw_free,
907	.trigger   = snd_mixart_trigger,
908	.pointer   = snd_mixart_stream_pointer,
909};
910
911static void preallocate_buffers(struct snd_mixart *chip, struct snd_pcm *pcm)
912{
913	snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
914					      snd_dma_pci_data(chip->mgr->pci), 32*1024, 32*1024);
915}
916
917/*
918 */
919static int snd_mixart_pcm_analog(struct snd_mixart *chip)
920{
921	int err;
922	struct snd_pcm *pcm;
923	char name[32];
924
925	sprintf(name, "miXart analog %d", chip->chip_idx);
926	if ((err = snd_pcm_new(chip->card, name, MIXART_PCM_ANALOG,
927			       MIXART_PLAYBACK_STREAMS,
928			       MIXART_CAPTURE_STREAMS, &pcm)) < 0) {
929		snd_printk(KERN_ERR "cannot create the analog pcm %d\n", chip->chip_idx);
930		return err;
931	}
932
933	pcm->private_data = chip;
934
935	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_mixart_playback_ops);
936	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_mixart_capture_ops);
937
938	pcm->info_flags = 0;
939	strcpy(pcm->name, name);
940
941	preallocate_buffers(chip, pcm);
942
943	chip->pcm = pcm;
944	return 0;
945}
946
947
948/*
949 */
950static int snd_mixart_pcm_digital(struct snd_mixart *chip)
951{
952	int err;
953	struct snd_pcm *pcm;
954	char name[32];
955
956	sprintf(name, "miXart AES/EBU %d", chip->chip_idx);
957	if ((err = snd_pcm_new(chip->card, name, MIXART_PCM_DIGITAL,
958			       MIXART_PLAYBACK_STREAMS,
959			       MIXART_CAPTURE_STREAMS, &pcm)) < 0) {
960		snd_printk(KERN_ERR "cannot create the digital pcm %d\n", chip->chip_idx);
961		return err;
962	}
963
964	pcm->private_data = chip;
965
966	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_mixart_playback_ops);
967	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_mixart_capture_ops);
968
969	pcm->info_flags = 0;
970	strcpy(pcm->name, name);
971
972	preallocate_buffers(chip, pcm);
973
974	chip->pcm_dig = pcm;
975	return 0;
976}
977
978static int snd_mixart_chip_free(struct snd_mixart *chip)
979{
980	kfree(chip);
981	return 0;
982}
983
984static int snd_mixart_chip_dev_free(struct snd_device *device)
985{
986	struct snd_mixart *chip = device->device_data;
987	return snd_mixart_chip_free(chip);
988}
989
990
991/*
992 */
993static int __devinit snd_mixart_create(struct mixart_mgr *mgr, struct snd_card *card, int idx)
994{
995	int err;
996	struct snd_mixart *chip;
997	static struct snd_device_ops ops = {
998		.dev_free = snd_mixart_chip_dev_free,
999	};
1000
1001	mgr->chip[idx] = chip = kzalloc(sizeof(*chip), GFP_KERNEL);
1002	if (! chip) {
1003		snd_printk(KERN_ERR "cannot allocate chip\n");
1004		return -ENOMEM;
1005	}
1006
1007	chip->card = card;
1008	chip->chip_idx = idx;
1009	chip->mgr = mgr;
1010
1011	if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
1012		snd_mixart_chip_free(chip);
1013		return err;
1014	}
1015
1016	snd_card_set_dev(card, &mgr->pci->dev);
1017
1018	return 0;
1019}
1020
1021int snd_mixart_create_pcm(struct snd_mixart* chip)
1022{
1023	int err;
1024
1025	err = snd_mixart_pcm_analog(chip);
1026	if (err < 0)
1027		return err;
1028
1029	if(chip->mgr->board_type == MIXART_DAUGHTER_TYPE_AES) {
1030
1031		err = snd_mixart_pcm_digital(chip);
1032		if (err < 0)
1033			return err;
1034	}
1035	return err;
1036}
1037
1038
1039/*
1040 * release all the cards assigned to a manager instance
1041 */
1042static int snd_mixart_free(struct mixart_mgr *mgr)
1043{
1044	unsigned int i;
1045
1046	for (i = 0; i < mgr->num_cards; i++) {
1047		if (mgr->chip[i])
1048			snd_card_free(mgr->chip[i]->card);
1049	}
1050
1051	/* stop mailbox */
1052	snd_mixart_exit_mailbox(mgr);
1053
1054	/* release irq  */
1055	if (mgr->irq >= 0)
1056		free_irq(mgr->irq, mgr);
1057
1058	/* reset board if some firmware was loaded */
1059	if(mgr->dsp_loaded) {
1060		snd_mixart_reset_board(mgr);
1061		snd_printdd("reset miXart !\n");
1062	}
1063
1064	/* release the i/o ports */
1065	for (i = 0; i < 2; i++) {
1066		if (mgr->mem[i].virt)
1067			iounmap(mgr->mem[i].virt);
1068	}
1069	pci_release_regions(mgr->pci);
1070
1071	/* free flowarray */
1072	if(mgr->flowinfo.area) {
1073		snd_dma_free_pages(&mgr->flowinfo);
1074		mgr->flowinfo.area = NULL;
1075	}
1076	/* free bufferarray */
1077	if(mgr->bufferinfo.area) {
1078		snd_dma_free_pages(&mgr->bufferinfo);
1079		mgr->bufferinfo.area = NULL;
1080	}
1081
1082	pci_disable_device(mgr->pci);
1083	kfree(mgr);
1084	return 0;
1085}
1086
1087/*
1088 * proc interface
1089 */
1090static long long snd_mixart_BA0_llseek(struct snd_info_entry *entry,
1091				       void *private_file_data,
1092				       struct file *file,
1093				       long long offset,
1094				       int orig)
1095{
1096	offset = offset & ~3; /* 4 bytes aligned */
1097
1098	switch(orig) {
1099	case SEEK_SET:
1100		file->f_pos = offset;
1101		break;
1102	case SEEK_CUR:
1103		file->f_pos += offset;
1104		break;
1105	case SEEK_END: /* offset is negative */
1106		file->f_pos = MIXART_BA0_SIZE + offset;
1107		break;
1108	default:
1109		return -EINVAL;
1110	}
1111	if(file->f_pos > MIXART_BA0_SIZE)
1112		file->f_pos = MIXART_BA0_SIZE;
1113	return file->f_pos;
1114}
1115
1116static long long snd_mixart_BA1_llseek(struct snd_info_entry *entry,
1117				       void *private_file_data,
1118				       struct file *file,
1119				       long long offset,
1120				       int orig)
1121{
1122	offset = offset & ~3; /* 4 bytes aligned */
1123
1124	switch(orig) {
1125	case SEEK_SET:
1126		file->f_pos = offset;
1127		break;
1128	case SEEK_CUR:
1129		file->f_pos += offset;
1130		break;
1131	case SEEK_END: /* offset is negative */
1132		file->f_pos = MIXART_BA1_SIZE + offset;
1133		break;
1134	default:
1135		return -EINVAL;
1136	}
1137	if(file->f_pos > MIXART_BA1_SIZE)
1138		file->f_pos = MIXART_BA1_SIZE;
1139	return file->f_pos;
1140}
1141
1142/*
1143  mixart_BA0 proc interface for BAR 0 - read callback
1144 */
1145static long snd_mixart_BA0_read(struct snd_info_entry *entry, void *file_private_data,
1146				struct file *file, char __user *buf,
1147				unsigned long count, unsigned long pos)
1148{
1149	struct mixart_mgr *mgr = entry->private_data;
1150
1151	count = count & ~3; /* make sure the read size is a multiple of 4 bytes */
1152	if(count <= 0)
1153		return 0;
1154	if(pos + count > MIXART_BA0_SIZE)
1155		count = (long)(MIXART_BA0_SIZE - pos);
1156	if(copy_to_user_fromio(buf, MIXART_MEM( mgr, pos ), count))
1157		return -EFAULT;
1158	return count;
1159}
1160
1161/*
1162  mixart_BA1 proc interface for BAR 1 - read callback
1163 */
1164static long snd_mixart_BA1_read(struct snd_info_entry *entry, void *file_private_data,
1165				struct file *file, char __user *buf,
1166				unsigned long count, unsigned long pos)
1167{
1168	struct mixart_mgr *mgr = entry->private_data;
1169
1170	count = count & ~3; /* make sure the read size is a multiple of 4 bytes */
1171	if(count <= 0)
1172		return 0;
1173	if(pos + count > MIXART_BA1_SIZE)
1174		count = (long)(MIXART_BA1_SIZE - pos);
1175	if(copy_to_user_fromio(buf, MIXART_REG( mgr, pos ), count))
1176		return -EFAULT;
1177	return count;
1178}
1179
1180static struct snd_info_entry_ops snd_mixart_proc_ops_BA0 = {
1181	.read   = snd_mixart_BA0_read,
1182	.llseek = snd_mixart_BA0_llseek
1183};
1184
1185static struct snd_info_entry_ops snd_mixart_proc_ops_BA1 = {
1186	.read   = snd_mixart_BA1_read,
1187	.llseek = snd_mixart_BA1_llseek
1188};
1189
1190
1191static void snd_mixart_proc_read(struct snd_info_entry *entry,
1192                                 struct snd_info_buffer *buffer)
1193{
1194	struct snd_mixart *chip = entry->private_data;
1195	u32 ref;
1196
1197	snd_iprintf(buffer, "Digigram miXart (alsa card %d)\n\n", chip->chip_idx);
1198
1199	/* stats available when embedded OS is running */
1200	if (chip->mgr->dsp_loaded & ( 1 << MIXART_MOTHERBOARD_ELF_INDEX)) {
1201		snd_iprintf(buffer, "- hardware -\n");
1202		switch (chip->mgr->board_type ) {
1203		case MIXART_DAUGHTER_TYPE_NONE     : snd_iprintf(buffer, "\tmiXart8 (no daughter board)\n\n"); break;
1204		case MIXART_DAUGHTER_TYPE_AES      : snd_iprintf(buffer, "\tmiXart8 AES/EBU\n\n"); break;
1205		case MIXART_DAUGHTER_TYPE_COBRANET : snd_iprintf(buffer, "\tmiXart8 Cobranet\n\n"); break;
1206		default:                             snd_iprintf(buffer, "\tUNKNOWN!\n\n"); break;
1207		}
1208
1209		snd_iprintf(buffer, "- system load -\n");
1210
1211		/* get perf reference */
1212
1213		ref = readl_be( MIXART_MEM( chip->mgr, MIXART_PSEUDOREG_PERF_SYSTEM_LOAD_OFFSET));
1214
1215		if (ref) {
1216			u32 mailbox   = 100 * readl_be( MIXART_MEM( chip->mgr, MIXART_PSEUDOREG_PERF_MAILBX_LOAD_OFFSET)) / ref;
1217			u32 streaming = 100 * readl_be( MIXART_MEM( chip->mgr, MIXART_PSEUDOREG_PERF_STREAM_LOAD_OFFSET)) / ref;
1218			u32 interr    = 100 * readl_be( MIXART_MEM( chip->mgr, MIXART_PSEUDOREG_PERF_INTERR_LOAD_OFFSET)) / ref;
1219
1220			snd_iprintf(buffer, "\tstreaming          : %d\n", streaming);
1221			snd_iprintf(buffer, "\tmailbox            : %d\n", mailbox);
1222			snd_iprintf(buffer, "\tinterrups handling : %d\n\n", interr);
1223		}
1224	} /* endif elf loaded */
1225}
1226
1227static void __devinit snd_mixart_proc_init(struct snd_mixart *chip)
1228{
1229	struct snd_info_entry *entry;
1230
1231	/* text interface to read perf and temp meters */
1232	if (! snd_card_proc_new(chip->card, "board_info", &entry)) {
1233		entry->private_data = chip;
1234		entry->c.text.read = snd_mixart_proc_read;
1235	}
1236
1237	if (! snd_card_proc_new(chip->card, "mixart_BA0", &entry)) {
1238		entry->content = SNDRV_INFO_CONTENT_DATA;
1239		entry->private_data = chip->mgr;
1240		entry->c.ops = &snd_mixart_proc_ops_BA0;
1241		entry->size = MIXART_BA0_SIZE;
1242	}
1243	if (! snd_card_proc_new(chip->card, "mixart_BA1", &entry)) {
1244		entry->content = SNDRV_INFO_CONTENT_DATA;
1245		entry->private_data = chip->mgr;
1246		entry->c.ops = &snd_mixart_proc_ops_BA1;
1247		entry->size = MIXART_BA1_SIZE;
1248	}
1249}
1250/* end of proc interface */
1251
1252
1253/*
1254 *    probe function - creates the card manager
1255 */
1256static int __devinit snd_mixart_probe(struct pci_dev *pci,
1257				      const struct pci_device_id *pci_id)
1258{
1259	static int dev;
1260	struct mixart_mgr *mgr;
1261	unsigned int i;
1262	int err;
1263	size_t size;
1264
1265	/*
1266	 */
1267	if (dev >= SNDRV_CARDS)
1268		return -ENODEV;
1269	if (! enable[dev]) {
1270		dev++;
1271		return -ENOENT;
1272	}
1273
1274	/* enable PCI device */
1275	if ((err = pci_enable_device(pci)) < 0)
1276		return err;
1277	pci_set_master(pci);
1278
1279	/* check if we can restrict PCI DMA transfers to 32 bits */
1280	if (pci_set_dma_mask(pci, DMA_32BIT_MASK) < 0) {
1281		snd_printk(KERN_ERR "architecture does not support 32bit PCI busmaster DMA\n");
1282		pci_disable_device(pci);
1283		return -ENXIO;
1284	}
1285
1286	/*
1287	 */
1288	mgr = kzalloc(sizeof(*mgr), GFP_KERNEL);
1289	if (! mgr) {
1290		pci_disable_device(pci);
1291		return -ENOMEM;
1292	}
1293
1294	mgr->pci = pci;
1295	mgr->irq = -1;
1296
1297	/* resource assignment */
1298	if ((err = pci_request_regions(pci, CARD_NAME)) < 0) {
1299		kfree(mgr);
1300		pci_disable_device(pci);
1301		return err;
1302	}
1303	for (i = 0; i < 2; i++) {
1304		mgr->mem[i].phys = pci_resource_start(pci, i);
1305		mgr->mem[i].virt = ioremap_nocache(mgr->mem[i].phys,
1306						   pci_resource_len(pci, i));
1307	}
1308
1309	if (request_irq(pci->irq, snd_mixart_interrupt, IRQF_SHARED,
1310			CARD_NAME, mgr)) {
1311		snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
1312		snd_mixart_free(mgr);
1313		return -EBUSY;
1314	}
1315	mgr->irq = pci->irq;
1316
1317	sprintf(mgr->shortname, "Digigram miXart");
1318	sprintf(mgr->longname, "%s at 0x%lx & 0x%lx, irq %i", mgr->shortname, mgr->mem[0].phys, mgr->mem[1].phys, mgr->irq);
1319
1320	/* ISR spinlock  */
1321	spin_lock_init(&mgr->lock);
1322
1323	/* init mailbox  */
1324	mgr->msg_fifo_readptr = 0;
1325	mgr->msg_fifo_writeptr = 0;
1326
1327	spin_lock_init(&mgr->msg_lock);
1328	mutex_init(&mgr->msg_mutex);
1329	init_waitqueue_head(&mgr->msg_sleep);
1330	atomic_set(&mgr->msg_processed, 0);
1331
1332	/* init setup mutex*/
1333	mutex_init(&mgr->setup_mutex);
1334
1335	/* init message taslket */
1336	tasklet_init(&mgr->msg_taskq, snd_mixart_msg_tasklet, (unsigned long) mgr);
1337
1338	/* card assignment */
1339	mgr->num_cards = MIXART_MAX_CARDS;
1340	for (i = 0; i < mgr->num_cards; i++) {
1341		struct snd_card *card;
1342		char tmpid[16];
1343		int idx;
1344
1345		if (index[dev] < 0)
1346			idx = index[dev];
1347		else
1348			idx = index[dev] + i;
1349		snprintf(tmpid, sizeof(tmpid), "%s-%d", id[dev] ? id[dev] : "MIXART", i);
1350		card = snd_card_new(idx, tmpid, THIS_MODULE, 0);
1351
1352		if (! card) {
1353			snd_printk(KERN_ERR "cannot allocate the card %d\n", i);
1354			snd_mixart_free(mgr);
1355			return -ENOMEM;
1356		}
1357
1358		strcpy(card->driver, CARD_NAME);
1359		sprintf(card->shortname, "%s [PCM #%d]", mgr->shortname, i);
1360		sprintf(card->longname, "%s [PCM #%d]", mgr->longname, i);
1361
1362		if ((err = snd_mixart_create(mgr, card, i)) < 0) {
1363			snd_mixart_free(mgr);
1364			return err;
1365		}
1366
1367		if(i==0) {
1368			/* init proc interface only for chip0 */
1369			snd_mixart_proc_init(mgr->chip[i]);
1370		}
1371
1372		if ((err = snd_card_register(card)) < 0) {
1373			snd_mixart_free(mgr);
1374			return err;
1375		}
1376	}
1377
1378	/* init firmware status (mgr->dsp_loaded reset in hwdep_new) */
1379	mgr->board_type = MIXART_DAUGHTER_TYPE_NONE;
1380
1381	/* create array of streaminfo */
1382	size = PAGE_ALIGN( (MIXART_MAX_STREAM_PER_CARD * MIXART_MAX_CARDS *
1383			    sizeof(struct mixart_flowinfo)) );
1384	if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci),
1385				size, &mgr->flowinfo) < 0) {
1386		snd_mixart_free(mgr);
1387		return -ENOMEM;
1388	}
1389	/* init streaminfo_array */
1390	memset(mgr->flowinfo.area, 0, size);
1391
1392	/* create array of bufferinfo */
1393	size = PAGE_ALIGN( (MIXART_MAX_STREAM_PER_CARD * MIXART_MAX_CARDS *
1394			    sizeof(struct mixart_bufferinfo)) );
1395	if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci),
1396				size, &mgr->bufferinfo) < 0) {
1397		snd_mixart_free(mgr);
1398		return -ENOMEM;
1399	}
1400	/* init bufferinfo_array */
1401	memset(mgr->bufferinfo.area, 0, size);
1402
1403	/* set up firmware */
1404	err = snd_mixart_setup_firmware(mgr);
1405	if (err < 0) {
1406		snd_mixart_free(mgr);
1407		return err;
1408	}
1409
1410	pci_set_drvdata(pci, mgr);
1411	dev++;
1412	return 0;
1413}
1414
1415static void __devexit snd_mixart_remove(struct pci_dev *pci)
1416{
1417	snd_mixart_free(pci_get_drvdata(pci));
1418	pci_set_drvdata(pci, NULL);
1419}
1420
1421static struct pci_driver driver = {
1422	.name = "Digigram miXart",
1423	.id_table = snd_mixart_ids,
1424	.probe = snd_mixart_probe,
1425	.remove = __devexit_p(snd_mixart_remove),
1426};
1427
1428static int __init alsa_card_mixart_init(void)
1429{
1430	return pci_register_driver(&driver);
1431}
1432
1433static void __exit alsa_card_mixart_exit(void)
1434{
1435	pci_unregister_driver(&driver);
1436}
1437
1438module_init(alsa_card_mixart_init)
1439module_exit(alsa_card_mixart_exit)
1440