seq_oss_readq.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * OSS compatible sequencer driver
  3. * read fifo queue
  4. *
  5. * Copyright (C) 1998,99 Takashi Iwai <tiwai@suse.de>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #ifndef __SEQ_OSS_READQ_H
  22. #define __SEQ_OSS_READQ_H
  23. #include "seq_oss_device.h"
  24. /*
  25. * definition of read queue
  26. */
  27. struct seq_oss_readq {
  28. union evrec *q;
  29. int qlen;
  30. int maxlen;
  31. int head, tail;
  32. unsigned long pre_event_timeout;
  33. unsigned long input_time;
  34. wait_queue_head_t midi_sleep;
  35. spinlock_t lock;
  36. };
  37. struct seq_oss_readq *snd_seq_oss_readq_new(struct seq_oss_devinfo *dp, int maxlen);
  38. void snd_seq_oss_readq_delete(struct seq_oss_readq *q);
  39. void snd_seq_oss_readq_clear(struct seq_oss_readq *readq);
  40. unsigned int snd_seq_oss_readq_poll(struct seq_oss_readq *readq, struct file *file, poll_table *wait);
  41. int snd_seq_oss_readq_puts(struct seq_oss_readq *readq, int dev, unsigned char *data, int len);
  42. int snd_seq_oss_readq_sysex(struct seq_oss_readq *q, int dev,
  43. struct snd_seq_event *ev);
  44. int snd_seq_oss_readq_put_event(struct seq_oss_readq *readq, union evrec *ev);
  45. int snd_seq_oss_readq_put_timestamp(struct seq_oss_readq *readq, unsigned long curt, int seq_mode);
  46. int snd_seq_oss_readq_pick(struct seq_oss_readq *q, union evrec *rec);
  47. void snd_seq_oss_readq_wait(struct seq_oss_readq *q);
  48. void snd_seq_oss_readq_free(struct seq_oss_readq *q);
  49. #define snd_seq_oss_readq_lock(q, flags) spin_lock_irqsave(&(q)->lock, flags)
  50. #define snd_seq_oss_readq_unlock(q, flags) spin_unlock_irqrestore(&(q)->lock, flags)
  51. #endif