patch-2.1.67 linux/drivers/sound/uart6850.c

Next file: linux/drivers/video/Config.in
Previous file: linux/drivers/sound/uart401.c
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.1.66/linux/drivers/sound/uart6850.c linux/drivers/sound/uart6850.c
@@ -1,3 +1,6 @@
+
+
+
 /*
  * sound/uart6850.c
  */
@@ -7,17 +10,20 @@
  * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL)
  * Version 2 (June 1991). See the "COPYING" file distributed with this software
  * for more info.
+ * Extended by Alan Cox for Red Hat Software. Now a loadable MIDI driver.
+ * 28/4/97 - (C) Copyright Alan Cox. Released under the GPL version 2.
+ *
  */
 #include <linux/config.h>
+#include <linux/module.h>
 
 /* Mon Nov 22 22:38:35 MET 1993 marco@driq.home.usn.nl:
  *      added 6850 support, used with COVOX SoundMaster II and custom cards.
  */
 
 #include "sound_config.h"
-
-#ifdef CONFIG_UART6850
-#ifdef CONFIG_MIDI
+#include "soundmodule.h"
+#if defined(CONFIG_UART6850) && defined(CONFIG_MIDI) || defined(MODULE)
 
 static int      uart6850_base = 0x330;
 
@@ -27,27 +33,27 @@
 #define	COMDPORT   (uart6850_base+1)
 #define	STATPORT   (uart6850_base+1)
 
-static int 
-uart6850_status (void)
+static int
+uart6850_status(void)
 {
-  return inb (STATPORT);
+	return inb(STATPORT);
 }
 #define input_avail()		(uart6850_status()&INPUT_AVAIL)
 #define output_ready()		(uart6850_status()&OUTPUT_READY)
-static void 
-uart6850_cmd (unsigned char cmd)
+static void
+uart6850_cmd(unsigned char cmd)
 {
-  outb ((cmd), COMDPORT);
+	outb((cmd), COMDPORT);
 }
-static int 
-uart6850_read (void)
+static int
+uart6850_read(void)
 {
-  return inb (DATAPORT);
+	return inb(DATAPORT);
 }
-static void 
-uart6850_write (unsigned char byte)
+static void
+uart6850_write(unsigned char byte)
 {
-  outb ((byte), DATAPORT);
+	outb((byte), DATAPORT);
 }
 
 #define	OUTPUT_READY	0x02	/* Mask for data ready Bit */
@@ -61,43 +67,42 @@
 static int      uart6850_detected = 0;
 static int      my_dev;
 
-static int      reset_uart6850 (void);
+static int      reset_uart6850(void);
 static void     (*midi_input_intr) (int dev, unsigned char data);
-static void     poll_uart6850 (unsigned long dummy);
+static void     poll_uart6850(unsigned long dummy);
 
 
 static struct timer_list uart6850_timer =
 {NULL, NULL, 0, 0, poll_uart6850};
 
 static void
-uart6850_input_loop (void)
+uart6850_input_loop(void)
 {
-  int             count;
+	int             count;
 
-  count = 10;
+	count = 10;
 
-  while (count)			/*
+	while (count)		/*
 				 * Not timed out
 				 */
-    if (input_avail ())
-      {
-	unsigned char   c = uart6850_read ();
-
-	count = 100;
-
-	if (uart6850_opened & OPEN_READ)
-	  midi_input_intr (my_dev, c);
-      }
-    else
-      while (!input_avail () && count)
-	count--;
+		if (input_avail())
+		  {
+			  unsigned char   c = uart6850_read();
+
+			  count = 100;
+
+			  if (uart6850_opened & OPEN_READ)
+				  midi_input_intr(my_dev, c);
+		} else
+			while (!input_avail() && count)
+				count--;
 }
 
 void
-m6850intr (int irq, void *dev_id, struct pt_regs *dummy)
+m6850intr(int irq, void *dev_id, struct pt_regs *dummy)
 {
-  if (input_avail ())
-    uart6850_input_loop ();
+	if (input_avail())
+		uart6850_input_loop();
 }
 
 /*
@@ -106,135 +111,136 @@
  */
 
 static void
-poll_uart6850 (unsigned long dummy)
+poll_uart6850(unsigned long dummy)
 {
-  unsigned long   flags;
+	unsigned long   flags;
 
-  if (!(uart6850_opened & OPEN_READ))
-    return;			/* Device has been closed */
+	if (!(uart6850_opened & OPEN_READ))
+		return;		/* Device has been closed */
 
-  save_flags (flags);
-  cli ();
+	save_flags(flags);
+	cli();
 
-  if (input_avail ())
-    uart6850_input_loop ();
+	if (input_avail())
+		uart6850_input_loop();
 
 
-  {
-    uart6850_timer.expires = (1) + jiffies;
-    add_timer (&uart6850_timer);
-  };				/*
+	{
+		uart6850_timer.expires = (1) + jiffies;
+		add_timer(&uart6850_timer);
+	};			/*
 				   * Come back later
 				 */
 
-  restore_flags (flags);
+	restore_flags(flags);
 }
 
 static int
-uart6850_open (int dev, int mode,
-	       void            (*input) (int dev, unsigned char data),
-	       void            (*output) (int dev)
+uart6850_open(int dev, int mode,
+	      void            (*input) (int dev, unsigned char data),
+	      void            (*output) (int dev)
 )
 {
-  if (uart6850_opened)
-    {
-      printk ("Midi6850: Midi busy\n");
-      return -EBUSY;
-    }
-
-  ;
-  uart6850_cmd (UART_RESET);
-
-  uart6850_input_loop ();
-
-  midi_input_intr = input;
-  uart6850_opened = mode;
-  poll_uart6850 (0);		/*
+	if (uart6850_opened)
+	  {
+		  printk("Midi6850: Midi busy\n");
+		  return -EBUSY;
+	  };
+
+	MOD_INC_USE_COUNT;
+	uart6850_cmd(UART_RESET);
+
+	uart6850_input_loop();
+
+	midi_input_intr = input;
+	uart6850_opened = mode;
+	poll_uart6850(0);	/*
 				 * Enable input polling
 				 */
 
-  return 0;
+	return 0;
 }
 
 static void
-uart6850_close (int dev)
+uart6850_close(int dev)
 {
-  uart6850_cmd (UART_MODE_ON);
+	uart6850_cmd(UART_MODE_ON);
 
-  del_timer (&uart6850_timer);;
-  uart6850_opened = 0;
+	del_timer(&uart6850_timer);;
+	uart6850_opened = 0;
+
+	MOD_DEC_USE_COUNT;
 }
 
 static int
-uart6850_out (int dev, unsigned char midi_byte)
+uart6850_out(int dev, unsigned char midi_byte)
 {
-  int             timeout;
-  unsigned long   flags;
-
-  /*
-   * Test for input since pending input seems to block the output.
-   */
-
-  save_flags (flags);
-  cli ();
-
-  if (input_avail ())
-    uart6850_input_loop ();
-
-  restore_flags (flags);
+	int             timeout;
+	unsigned long   flags;
 
-  /*
-   * Sometimes it takes about 13000 loops before the output becomes ready
-   * (After reset). Normally it takes just about 10 loops.
-   */
-
-  for (timeout = 30000; timeout > 0 && !output_ready (); timeout--);	/*
-									 * Wait
-									 */
-
-  if (!output_ready ())
-    {
-      printk ("Midi6850: Timeout\n");
-      return 0;
-    }
-
-  uart6850_write (midi_byte);
-  return 1;
+	/*
+	 * Test for input since pending input seems to block the output.
+	 */
+
+	save_flags(flags);
+	cli();
+
+	if (input_avail())
+		uart6850_input_loop();
+
+	restore_flags(flags);
+
+	/*
+	 * Sometimes it takes about 13000 loops before the output becomes ready
+	 * (After reset). Normally it takes just about 10 loops.
+	 */
+
+	for (timeout = 30000; timeout > 0 && !output_ready(); timeout--);	/*
+										 * Wait
+										 */
+
+	if (!output_ready())
+	  {
+		  printk("Midi6850: Timeout\n");
+		  return 0;
+	  }
+	uart6850_write(midi_byte);
+	return 1;
 }
 
 static int
-uart6850_command (int dev, unsigned char *midi_byte)
+uart6850_command(int dev, unsigned char *midi_byte)
 {
-  return 1;
+	return 1;
 }
 
 static int
-uart6850_start_read (int dev)
+uart6850_start_read(int dev)
 {
-  return 0;
+	return 0;
 }
 
 static int
-uart6850_end_read (int dev)
+uart6850_end_read(int dev)
 {
-  return 0;
+	return 0;
 }
 
 static int
-uart6850_ioctl (int dev, unsigned cmd, caddr_t arg)
+uart6850_ioctl(int dev, unsigned cmd, caddr_t arg)
 {
-  return -EINVAL;
+	return -EINVAL;
 }
 
 static void
-uart6850_kick (int dev)
+uart6850_kick(int dev)
 {
 }
 
 static int
-uart6850_buffer_status (int dev)
+uart6850_buffer_status(int dev)
 {
-  return 0;			/*
+	return 0;		/*
 				 * No data in buffers
 				 */
 }
@@ -245,92 +251,127 @@
 
 static struct midi_operations uart6850_operations =
 {
-  {"6850 UART", 0, 0, SNDCARD_UART6850},
-  &std_midi_synth,
-  {0},
-  uart6850_open,
-  uart6850_close,
-  uart6850_ioctl,
-  uart6850_out,
-  uart6850_start_read,
-  uart6850_end_read,
-  uart6850_kick,
-  uart6850_command,
-  uart6850_buffer_status
+	{"6850 UART", 0, 0, SNDCARD_UART6850},
+	&std_midi_synth,
+	{0},
+	uart6850_open,
+	uart6850_close,
+	uart6850_ioctl,
+	uart6850_out,
+	uart6850_start_read,
+	uart6850_end_read,
+	uart6850_kick,
+	uart6850_command,
+	uart6850_buffer_status
 };
 
 
 void
-attach_uart6850 (struct address_info *hw_config)
+attach_uart6850(struct address_info *hw_config)
 {
-  int             ok, timeout;
-  unsigned long   flags;
-
-  if (num_midis >= MAX_MIDI_DEV)
-    {
-      printk ("Sound: Too many midi devices detected\n");
-      return;
-    }
+	int             ok, timeout;
+	unsigned long   flags;
 
-  uart6850_base = hw_config->io_base;
-  uart6850_osp = hw_config->osp;
-  uart6850_irq = hw_config->irq;
-
-  if (!uart6850_detected)
-    return;
-
-  save_flags (flags);
-  cli ();
-
-  for (timeout = 30000; timeout < 0 && !output_ready (); timeout--);	/*
-									 * Wait
-									 */
-  uart6850_cmd (UART_MODE_ON);
-
-  ok = 1;
-
-  restore_flags (flags);
-
-  conf_printf ("6850 Midi Interface", hw_config);
-
-  std_midi_synth.midi_dev = my_dev = num_midis;
-  midi_devs[num_midis++] = &uart6850_operations;
-  sequencer_init ();
+	if ((my_dev = sound_alloc_mididev()) == -1)
+	  {
+		  printk(KERN_INFO "uart6850: Too many midi devices detected\n");
+		  return;
+	  }
+	uart6850_base = hw_config->io_base;
+	uart6850_osp = hw_config->osp;
+	uart6850_irq = hw_config->irq;
+
+	if (!uart6850_detected)
+	  {
+		  sound_unload_mididev(my_dev);
+		  return;
+	  }
+	save_flags(flags);
+	cli();
+
+	for (timeout = 30000; timeout > 0 && !output_ready(); timeout--);	/*
+										 * Wait
+										 */
+	uart6850_cmd(UART_MODE_ON);
+
+	ok = 1;
+
+	restore_flags(flags);
+
+	conf_printf("6850 Midi Interface", hw_config);
+
+	std_midi_synth.midi_dev = my_dev;
+	hw_config->slots[4] = my_dev;
+	midi_devs[my_dev] = &uart6850_operations;
+	sequencer_init();
 }
 
 static int
-reset_uart6850 (void)
+reset_uart6850(void)
 {
-  uart6850_read ();
-  return 1;			/*
+	uart6850_read();
+	return 1;		/*
 				 * OK
 				 */
 }
 
 
 int
-probe_uart6850 (struct address_info *hw_config)
+probe_uart6850(struct address_info *hw_config)
 {
-  int             ok = 0;
+	int             ok = 0;
 
-  uart6850_osp = hw_config->osp;
-  uart6850_base = hw_config->io_base;
-  uart6850_irq = hw_config->irq;
+	uart6850_osp = hw_config->osp;
+	uart6850_base = hw_config->io_base;
+	uart6850_irq = hw_config->irq;
 
-  if (snd_set_irq_handler (uart6850_irq, m6850intr, "MIDI6850", uart6850_osp) < 0)
-    return 0;
+	if (snd_set_irq_handler(uart6850_irq, m6850intr, "MIDI6850", uart6850_osp) < 0)
+		return 0;
 
-  ok = reset_uart6850 ();
+	ok = reset_uart6850();
 
-  uart6850_detected = ok;
-  return ok;
+	uart6850_detected = ok;
+	return ok;
 }
 
 void
-unload_uart6850 (struct address_info *hw_config)
+unload_uart6850(struct address_info *hw_config)
+{
+	snd_release_irq(hw_config->irq);
+	sound_unload_mididev(hw_config->slots[4]);
+}
+
+
+#ifdef MODULE
+
+int             io = -1;
+int             irq = -1;
+
+struct address_info cfg;
+
+int 
+init_module(void)
 {
-  snd_release_irq (hw_config->irq);
+	if (io == -1 || irq == -1)
+	  {
+		  printk("uart6850: irq and io must be set.\n");
+		  return -EINVAL;
+	  }
+	cfg.io_base = io;
+	cfg.irq = irq;
+
+	if (probe_uart6850(&cfg))
+		return -ENODEV;
+
+	SOUND_LOCK;
+	return 0;
 }
 
+void 
+cleanup_module(void)
+{
+	unload_uart6850(&cfg);
+	SOUND_LOCK_END;
+}
 #endif
 #endif

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov