pvrusb2-io.h 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. *
  3. * $Id$
  4. *
  5. * Copyright (C) 2005 Mike Isely <isely@pobox.com>
  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
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. *
  20. */
  21. #ifndef __PVRUSB2_IO_H
  22. #define __PVRUSB2_IO_H
  23. #include <linux/usb.h>
  24. #include <linux/list.h>
  25. typedef void (*pvr2_stream_callback)(void *);
  26. enum pvr2_buffer_state {
  27. pvr2_buffer_state_none = 0, // Not on any list
  28. pvr2_buffer_state_idle = 1, // Buffer is ready to be used again
  29. pvr2_buffer_state_queued = 2, // Buffer has been queued for filling
  30. pvr2_buffer_state_ready = 3, // Buffer has data available
  31. };
  32. struct pvr2_stream;
  33. struct pvr2_buffer;
  34. /* Initialize / tear down stream structure */
  35. struct pvr2_stream *pvr2_stream_create(void);
  36. void pvr2_stream_destroy(struct pvr2_stream *);
  37. void pvr2_stream_setup(struct pvr2_stream *,
  38. struct usb_device *dev,int endpoint,
  39. unsigned int tolerance);
  40. void pvr2_stream_set_callback(struct pvr2_stream *,
  41. pvr2_stream_callback func,
  42. void *data);
  43. /* Query / set the nominal buffer count */
  44. int pvr2_stream_get_buffer_count(struct pvr2_stream *);
  45. int pvr2_stream_set_buffer_count(struct pvr2_stream *,unsigned int);
  46. /* Get a pointer to a buffer that is either idle, ready, or is specified
  47. named. */
  48. struct pvr2_buffer *pvr2_stream_get_idle_buffer(struct pvr2_stream *);
  49. struct pvr2_buffer *pvr2_stream_get_ready_buffer(struct pvr2_stream *);
  50. struct pvr2_buffer *pvr2_stream_get_buffer(struct pvr2_stream *sp,int id);
  51. /* Find out how many buffers are idle or ready */
  52. int pvr2_stream_get_ready_count(struct pvr2_stream *);
  53. /* Kill all pending buffers and throw away any ready buffers as well */
  54. void pvr2_stream_kill(struct pvr2_stream *);
  55. /* Set up the actual storage for a buffer */
  56. int pvr2_buffer_set_buffer(struct pvr2_buffer *,void *ptr,unsigned int cnt);
  57. /* Find out size of data in the given ready buffer */
  58. unsigned int pvr2_buffer_get_count(struct pvr2_buffer *);
  59. /* Retrieve completion code for given ready buffer */
  60. int pvr2_buffer_get_status(struct pvr2_buffer *);
  61. /* Retrieve ID of given buffer */
  62. int pvr2_buffer_get_id(struct pvr2_buffer *);
  63. /* Start reading into given buffer (kill it if needed) */
  64. int pvr2_buffer_queue(struct pvr2_buffer *);
  65. #endif /* __PVRUSB2_IO_H */
  66. /*
  67. Stuff for Emacs to see, in order to encourage consistent editing style:
  68. *** Local Variables: ***
  69. *** mode: c ***
  70. *** fill-column: 75 ***
  71. *** tab-width: 8 ***
  72. *** c-basic-offset: 8 ***
  73. *** End: ***
  74. */