vpbe_venc.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright (C) 2010 Texas Instruments Inc
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation version 2.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program; if not, write to the Free Software
  15. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. */
  17. #ifndef _VPBE_VENC_H
  18. #define _VPBE_VENC_H
  19. #include <media/v4l2-subdev.h>
  20. #include <media/davinci/vpbe_types.h>
  21. #define VPBE_VENC_SUBDEV_NAME "vpbe-venc"
  22. /* venc events */
  23. #define VENC_END_OF_FRAME BIT(0)
  24. #define VENC_FIRST_FIELD BIT(1)
  25. #define VENC_SECOND_FIELD BIT(2)
  26. struct venc_platform_data {
  27. enum vpbe_version venc_type;
  28. int (*setup_clock)(enum vpbe_enc_timings_type type,
  29. unsigned int mode);
  30. /* Number of LCD outputs supported */
  31. int num_lcd_outputs;
  32. };
  33. enum venc_ioctls {
  34. VENC_GET_FLD = 1,
  35. };
  36. /* exported functions */
  37. struct v4l2_subdev *venc_sub_dev_init(struct v4l2_device *v4l2_dev,
  38. const char *venc_name);
  39. #endif