pvrusb2-io.h 3.1 KB

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