⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mpu401_uart.c

📁 LINUX 2.6.17.4的源码
💻 C
📖 第 1 页 / 共 2 页
字号:
	mpu = substream->rmidi->private_data;	clear_bit(MPU401_MODE_BIT_INPUT, &mpu->mode);	mpu->substream_input = NULL;	if (! test_bit(MPU401_MODE_BIT_OUTPUT, &mpu->mode))		err = snd_mpu401_uart_cmd(mpu, MPU401_RESET, 0);	if (mpu->close_input)		mpu->close_input(mpu);	if (err)		return -EIO;	return 0;}static int snd_mpu401_uart_output_close(struct snd_rawmidi_substream *substream){	struct snd_mpu401 *mpu;	int err = 0;	mpu = substream->rmidi->private_data;	clear_bit(MPU401_MODE_BIT_OUTPUT, &mpu->mode);	mpu->substream_output = NULL;	if (! test_bit(MPU401_MODE_BIT_INPUT, &mpu->mode))		err = snd_mpu401_uart_cmd(mpu, MPU401_RESET, 0);	if (mpu->close_output)		mpu->close_output(mpu);	if (err)		return -EIO;	return 0;}/* * trigger input callback */static void snd_mpu401_uart_input_trigger(struct snd_rawmidi_substream *substream, int up){	unsigned long flags;	struct snd_mpu401 *mpu;	int max = 64;	mpu = substream->rmidi->private_data;	if (up) {		if (! test_and_set_bit(MPU401_MODE_BIT_INPUT_TRIGGER, &mpu->mode)) {			/* first time - flush FIFO */			while (max-- > 0)				mpu->read(mpu, MPU401D(mpu));			if (mpu->irq < 0)				snd_mpu401_uart_add_timer(mpu, 1);		}				/* read data in advance */		spin_lock_irqsave(&mpu->input_lock, flags);		snd_mpu401_uart_input_read(mpu);		spin_unlock_irqrestore(&mpu->input_lock, flags);	} else {		if (mpu->irq < 0)			snd_mpu401_uart_remove_timer(mpu, 1);		clear_bit(MPU401_MODE_BIT_INPUT_TRIGGER, &mpu->mode);	}}/* * transfer input pending data * call with input_lock spinlock held */static void snd_mpu401_uart_input_read(struct snd_mpu401 * mpu){	int max = 128;	unsigned char byte;	while (max-- > 0) {		if (snd_mpu401_input_avail(mpu)) {			byte = mpu->read(mpu, MPU401D(mpu));			if (test_bit(MPU401_MODE_BIT_INPUT_TRIGGER, &mpu->mode))				snd_rawmidi_receive(mpu->substream_input, &byte, 1);		} else {			break; /* input not available */		}	}}/* *  Tx FIFO sizes: *    CS4237B			- 16 bytes *    AudioDrive ES1688         - 12 bytes *    S3 SonicVibes             -  8 bytes *    SoundBlaster AWE 64       -  2 bytes (ugly hardware) *//* * write output pending bytes * call with output_lock spinlock held */static void snd_mpu401_uart_output_write(struct snd_mpu401 * mpu){	unsigned char byte;	int max = 256, timeout;	do {		if (snd_rawmidi_transmit_peek(mpu->substream_output, &byte, 1) == 1) {			for (timeout = 100; timeout > 0; timeout--) {				if (snd_mpu401_output_ready(mpu)) {					mpu->write(mpu, byte, MPU401D(mpu));					snd_rawmidi_transmit_ack(mpu->substream_output, 1);					break;				}			}			if (timeout == 0)				break;	/* Tx FIFO full - try again later */		} else {			snd_mpu401_uart_remove_timer (mpu, 0);			break;	/* no other data - leave the tx loop */		}	} while (--max > 0);}/* * output trigger callback */static void snd_mpu401_uart_output_trigger(struct snd_rawmidi_substream *substream, int up){	unsigned long flags;	struct snd_mpu401 *mpu;	mpu = substream->rmidi->private_data;	if (up) {		set_bit(MPU401_MODE_BIT_OUTPUT_TRIGGER, &mpu->mode);		/* try to add the timer at each output trigger,		 * since the output timer might have been removed in		 * snd_mpu401_uart_output_write().		 */		snd_mpu401_uart_add_timer(mpu, 0);		/* output pending data */		spin_lock_irqsave(&mpu->output_lock, flags);		snd_mpu401_uart_output_write(mpu);		spin_unlock_irqrestore(&mpu->output_lock, flags);	} else {		snd_mpu401_uart_remove_timer(mpu, 0);		clear_bit(MPU401_MODE_BIT_OUTPUT_TRIGGER, &mpu->mode);	}}/* */static struct snd_rawmidi_ops snd_mpu401_uart_output ={	.open =		snd_mpu401_uart_output_open,	.close =	snd_mpu401_uart_output_close,	.trigger =	snd_mpu401_uart_output_trigger,};static struct snd_rawmidi_ops snd_mpu401_uart_input ={	.open =		snd_mpu401_uart_input_open,	.close =	snd_mpu401_uart_input_close,	.trigger =	snd_mpu401_uart_input_trigger,};static void snd_mpu401_uart_free(struct snd_rawmidi *rmidi){	struct snd_mpu401 *mpu = rmidi->private_data;	if (mpu->irq_flags && mpu->irq >= 0)		free_irq(mpu->irq, (void *) mpu);	release_and_free_resource(mpu->res);	kfree(mpu);}/** * snd_mpu401_uart_new - create an MPU401-UART instance * @card: the card instance * @device: the device index, zero-based * @hardware: the hardware type, MPU401_HW_XXXX * @port: the base address of MPU401 port * @integrated: non-zero if the port was already reserved by the chip * @irq: the irq number, -1 if no interrupt for mpu * @irq_flags: the irq request flags (SA_XXX), 0 if irq was already reserved. * @rrawmidi: the pointer to store the new rawmidi instance * * Creates a new MPU-401 instance. * * Note that the rawmidi instance is returned on the rrawmidi argument, * not the mpu401 instance itself.  To access to the mpu401 instance, * cast from rawmidi->private_data (with struct snd_mpu401 magic-cast). * * Returns zero if successful, or a negative error code. */int snd_mpu401_uart_new(struct snd_card *card, int device,			unsigned short hardware,			unsigned long port, int integrated,			int irq, int irq_flags,			struct snd_rawmidi ** rrawmidi){	struct snd_mpu401 *mpu;	struct snd_rawmidi *rmidi;	int err;	if (rrawmidi)		*rrawmidi = NULL;	if ((err = snd_rawmidi_new(card, "MPU-401U", device, 1, 1, &rmidi)) < 0)		return err;	mpu = kzalloc(sizeof(*mpu), GFP_KERNEL);	if (mpu == NULL) {		snd_printk(KERN_ERR "mpu401_uart: cannot allocate\n");		snd_device_free(card, rmidi);		return -ENOMEM;	}	rmidi->private_data = mpu;	rmidi->private_free = snd_mpu401_uart_free;	spin_lock_init(&mpu->input_lock);	spin_lock_init(&mpu->output_lock);	spin_lock_init(&mpu->timer_lock);	mpu->hardware = hardware;	if (!integrated) {		int res_size = hardware == MPU401_HW_PC98II ? 4 : 2;		if ((mpu->res = request_region(port, res_size, "MPU401 UART")) == NULL) {			snd_printk(KERN_ERR "mpu401_uart: unable to grab port 0x%lx size %d\n", port, res_size);			snd_device_free(card, rmidi);			return -EBUSY;		}	}	switch (hardware) {	case MPU401_HW_AUREAL:		mpu->write = mpu401_write_mmio;		mpu->read = mpu401_read_mmio;		break;	default:		mpu->write = mpu401_write_port;		mpu->read = mpu401_read_port;		break;	}	mpu->port = port;	if (hardware == MPU401_HW_PC98II)		mpu->cport = port + 2;	else		mpu->cport = port + 1;	if (irq >= 0 && irq_flags) {		if (request_irq(irq, snd_mpu401_uart_interrupt, irq_flags, "MPU401 UART", (void *) mpu)) {			snd_printk(KERN_ERR "mpu401_uart: unable to grab IRQ %d\n", irq);			snd_device_free(card, rmidi);			return -EBUSY;		}	}	mpu->irq = irq;	mpu->irq_flags = irq_flags;	if (card->shortname[0])		snprintf(rmidi->name, sizeof(rmidi->name), "%s MIDI", card->shortname);	else		sprintf(rmidi->name, "MPU-401 MIDI %d-%d", card->number, device);	snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT, &snd_mpu401_uart_output);	snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT, &snd_mpu401_uart_input);	rmidi->info_flags |= SNDRV_RAWMIDI_INFO_OUTPUT |	                     SNDRV_RAWMIDI_INFO_INPUT |	                     SNDRV_RAWMIDI_INFO_DUPLEX;	mpu->rmidi = rmidi;	if (rrawmidi)		*rrawmidi = rmidi;	return 0;}EXPORT_SYMBOL(snd_mpu401_uart_interrupt);EXPORT_SYMBOL(snd_mpu401_uart_new);/* *  INIT part */static int __init alsa_mpu401_uart_init(void){	return 0;}static void __exit alsa_mpu401_uart_exit(void){}module_init(alsa_mpu401_uart_init)module_exit(alsa_mpu401_uart_exit)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -