vpbe_display.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation version 2.
  7. *
  8. * This program is distributed WITHOUT ANY WARRANTY of any
  9. * kind, whether express or implied; without even the implied warranty
  10. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #ifndef VPBE_DISPLAY_H
  14. #define VPBE_DISPLAY_H
  15. /* Header files */
  16. #include <linux/videodev2.h>
  17. #include <media/v4l2-common.h>
  18. #include <media/v4l2-fh.h>
  19. #include <media/videobuf2-v4l2.h>
  20. #include <media/videobuf2-dma-contig.h>
  21. #include <media/davinci/vpbe_types.h>
  22. #include <media/davinci/vpbe_osd.h>
  23. #include <media/davinci/vpbe.h>
  24. #define VPBE_DISPLAY_MAX_DEVICES 2
  25. enum vpbe_display_device_id {
  26. VPBE_DISPLAY_DEVICE_0,
  27. VPBE_DISPLAY_DEVICE_1
  28. };
  29. #define VPBE_DISPLAY_DRV_NAME "vpbe-display"
  30. #define VPBE_DISPLAY_MAJOR_RELEASE 1
  31. #define VPBE_DISPLAY_MINOR_RELEASE 0
  32. #define VPBE_DISPLAY_BUILD 1
  33. #define VPBE_DISPLAY_VERSION_CODE ((VPBE_DISPLAY_MAJOR_RELEASE << 16) | \
  34. (VPBE_DISPLAY_MINOR_RELEASE << 8) | \
  35. VPBE_DISPLAY_BUILD)
  36. #define VPBE_DISPLAY_VALID_FIELD(field) ((V4L2_FIELD_NONE == field) || \
  37. (V4L2_FIELD_ANY == field) || (V4L2_FIELD_INTERLACED == field))
  38. /* Exp ratio numerator and denominator constants */
  39. #define VPBE_DISPLAY_H_EXP_RATIO_N 9
  40. #define VPBE_DISPLAY_H_EXP_RATIO_D 8
  41. #define VPBE_DISPLAY_V_EXP_RATIO_N 6
  42. #define VPBE_DISPLAY_V_EXP_RATIO_D 5
  43. /* Zoom multiplication factor */
  44. #define VPBE_DISPLAY_ZOOM_4X 4
  45. #define VPBE_DISPLAY_ZOOM_2X 2
  46. /* Structures */
  47. struct display_layer_info {
  48. int enable;
  49. /* Layer ID used by Display Manager */
  50. enum osd_layer id;
  51. struct osd_layer_config config;
  52. enum osd_zoom_factor h_zoom;
  53. enum osd_zoom_factor v_zoom;
  54. enum osd_h_exp_ratio h_exp;
  55. enum osd_v_exp_ratio v_exp;
  56. };
  57. struct vpbe_disp_buffer {
  58. struct vb2_v4l2_buffer vb;
  59. struct list_head list;
  60. };
  61. /* vpbe display object structure */
  62. struct vpbe_layer {
  63. /* Pointer to the vpbe_display */
  64. struct vpbe_display *disp_dev;
  65. /* Pointer pointing to current v4l2_buffer */
  66. struct vpbe_disp_buffer *cur_frm;
  67. /* Pointer pointing to next v4l2_buffer */
  68. struct vpbe_disp_buffer *next_frm;
  69. /* videobuf specific parameters
  70. * Buffer queue used in video-buf
  71. */
  72. struct vb2_queue buffer_queue;
  73. /* allocator-specific contexts for each plane */
  74. struct vb2_alloc_ctx *alloc_ctx;
  75. /* Queue of filled frames */
  76. struct list_head dma_queue;
  77. /* Used in video-buf */
  78. spinlock_t irqlock;
  79. /* V4l2 specific parameters */
  80. /* Identifies video device for this layer */
  81. struct video_device video_dev;
  82. /* Used to store pixel format */
  83. struct v4l2_pix_format pix_fmt;
  84. enum v4l2_field buf_field;
  85. /* Video layer configuration params */
  86. struct display_layer_info layer_info;
  87. /* vpbe specific parameters
  88. * enable window for display
  89. */
  90. unsigned char window_enable;
  91. /* number of open instances of the layer */
  92. unsigned int usrs;
  93. /* Indicates id of the field which is being displayed */
  94. unsigned int field_id;
  95. /* Identifies device object */
  96. enum vpbe_display_device_id device_id;
  97. /* facilitation of ioctl ops lock by v4l2*/
  98. struct mutex opslock;
  99. u8 layer_first_int;
  100. };
  101. /* vpbe device structure */
  102. struct vpbe_display {
  103. /* layer specific parameters */
  104. /* lock for isr updates to buf layers*/
  105. spinlock_t dma_queue_lock;
  106. /* C-Plane offset from start of y-plane */
  107. unsigned int cbcr_ofst;
  108. struct vpbe_layer *dev[VPBE_DISPLAY_MAX_DEVICES];
  109. struct vpbe_device *vpbe_dev;
  110. struct osd_state *osd_device;
  111. };
  112. struct buf_config_params {
  113. unsigned char min_numbuffers;
  114. unsigned char numbuffers[VPBE_DISPLAY_MAX_DEVICES];
  115. unsigned int min_bufsize[VPBE_DISPLAY_MAX_DEVICES];
  116. unsigned int layer_bufsize[VPBE_DISPLAY_MAX_DEVICES];
  117. };
  118. #endif /* VPBE_DISPLAY_H */