cx25821-video.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Driver for the Conexant CX25821 PCIe bridge
  3. *
  4. * Copyright (C) 2009 Conexant Systems Inc.
  5. * Authors <shu.lin@conexant.com>, <hiep.huynh@conexant.com>
  6. * Based on Steven Toth <stoth@linuxtv.org> cx23885 driver
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. *
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22. */
  23. #ifndef CX25821_VIDEO_H_
  24. #define CX25821_VIDEO_H_
  25. #include <linux/init.h>
  26. #include <linux/list.h>
  27. #include <linux/module.h>
  28. #include <linux/moduleparam.h>
  29. #include <linux/kmod.h>
  30. #include <linux/kernel.h>
  31. #include <linux/slab.h>
  32. #include <linux/interrupt.h>
  33. #include <linux/delay.h>
  34. #include <linux/kthread.h>
  35. #include <asm/div64.h>
  36. #include "cx25821.h"
  37. #include <media/v4l2-common.h>
  38. #include <media/v4l2-ioctl.h>
  39. #include <media/v4l2-event.h>
  40. #define VIDEO_DEBUG 0
  41. #define dprintk(level, fmt, arg...) \
  42. do { \
  43. if (VIDEO_DEBUG >= level) \
  44. printk(KERN_DEBUG "%s/0: " fmt, dev->name, ##arg); \
  45. } while (0)
  46. #define FORMAT_FLAGS_PACKED 0x01
  47. extern void cx25821_video_wakeup(struct cx25821_dev *dev,
  48. struct cx25821_dmaqueue *q, u32 count);
  49. extern int cx25821_start_video_dma(struct cx25821_dev *dev,
  50. struct cx25821_dmaqueue *q,
  51. struct cx25821_buffer *buf,
  52. const struct sram_channel *channel);
  53. extern int cx25821_video_irq(struct cx25821_dev *dev, int chan_num, u32 status);
  54. extern void cx25821_video_unregister(struct cx25821_dev *dev, int chan_num);
  55. extern int cx25821_video_register(struct cx25821_dev *dev);
  56. #endif