vpbe_display.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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/videobuf2-dma-contig.h>
  19. #include <media/davinci/vpbe_types.h>
  20. #include <media/davinci/vpbe_osd.h>
  21. #include <media/davinci/vpbe.h>
  22. #define VPBE_DISPLAY_MAX_DEVICES 2
  23. enum vpbe_display_device_id {
  24. VPBE_DISPLAY_DEVICE_0,
  25. VPBE_DISPLAY_DEVICE_1
  26. };
  27. #define VPBE_DISPLAY_DRV_NAME "vpbe-display"
  28. #define VPBE_DISPLAY_MAJOR_RELEASE 1
  29. #define VPBE_DISPLAY_MINOR_RELEASE 0
  30. #define VPBE_DISPLAY_BUILD 1
  31. #define VPBE_DISPLAY_VERSION_CODE ((VPBE_DISPLAY_MAJOR_RELEASE << 16) | \
  32. (VPBE_DISPLAY_MINOR_RELEASE << 8) | \
  33. VPBE_DISPLAY_BUILD)
  34. #define VPBE_DISPLAY_VALID_FIELD(field) ((V4L2_FIELD_NONE == field) || \
  35. (V4L2_FIELD_ANY == field) || (V4L2_FIELD_INTERLACED == field))
  36. /* Exp ratio numerator and denominator constants */
  37. #define VPBE_DISPLAY_H_EXP_RATIO_N 9
  38. #define VPBE_DISPLAY_H_EXP_RATIO_D 8
  39. #define VPBE_DISPLAY_V_EXP_RATIO_N 6
  40. #define VPBE_DISPLAY_V_EXP_RATIO_D 5
  41. /* Zoom multiplication factor */
  42. #define VPBE_DISPLAY_ZOOM_4X 4
  43. #define VPBE_DISPLAY_ZOOM_2X 2
  44. /* Structures */
  45. struct display_layer_info {
  46. int enable;
  47. /* Layer ID used by Display Manager */
  48. enum osd_layer id;
  49. struct osd_layer_config config;
  50. enum osd_zoom_factor h_zoom;
  51. enum osd_zoom_factor v_zoom;
  52. enum osd_h_exp_ratio h_exp;
  53. enum osd_v_exp_ratio v_exp;
  54. };
  55. struct vpbe_disp_buffer {
  56. struct vb2_buffer vb;
  57. struct list_head list;
  58. };
  59. /* vpbe display object structure */
  60. struct vpbe_layer {
  61. /* number of buffers in fbuffers */
  62. unsigned int numbuffers;
  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. /* This field keeps track of type of buffer exchange mechanism user
  83. * has selected
  84. */
  85. enum v4l2_memory memory;
  86. /* Used to keep track of state of the priority */
  87. struct v4l2_prio_state prio;
  88. /* Used to store pixel format */
  89. struct v4l2_pix_format pix_fmt;
  90. enum v4l2_field buf_field;
  91. /* Video layer configuration params */
  92. struct display_layer_info layer_info;
  93. /* vpbe specific parameters
  94. * enable window for display
  95. */
  96. unsigned char window_enable;
  97. /* number of open instances of the layer */
  98. unsigned int usrs;
  99. /* number of users performing IO */
  100. unsigned int io_usrs;
  101. /* Indicates id of the field which is being displayed */
  102. unsigned int field_id;
  103. /* Indicates whether streaming started */
  104. unsigned char started;
  105. /* Identifies device object */
  106. enum vpbe_display_device_id device_id;
  107. /* facilitation of ioctl ops lock by v4l2*/
  108. struct mutex opslock;
  109. u8 layer_first_int;
  110. };
  111. /* vpbe device structure */
  112. struct vpbe_display {
  113. /* layer specific parameters */
  114. /* lock for isr updates to buf layers*/
  115. spinlock_t dma_queue_lock;
  116. /* C-Plane offset from start of y-plane */
  117. unsigned int cbcr_ofst;
  118. struct vpbe_layer *dev[VPBE_DISPLAY_MAX_DEVICES];
  119. struct vpbe_device *vpbe_dev;
  120. struct osd_state *osd_device;
  121. };
  122. /* File handle structure */
  123. struct vpbe_fh {
  124. /* vpbe device structure */
  125. struct vpbe_display *disp_dev;
  126. /* pointer to layer object for opened device */
  127. struct vpbe_layer *layer;
  128. /* Indicates whether this file handle is doing IO */
  129. unsigned char io_allowed;
  130. /* Used to keep track priority of this instance */
  131. enum v4l2_priority prio;
  132. };
  133. struct buf_config_params {
  134. unsigned char min_numbuffers;
  135. unsigned char numbuffers[VPBE_DISPLAY_MAX_DEVICES];
  136. unsigned int min_bufsize[VPBE_DISPLAY_MAX_DEVICES];
  137. unsigned int layer_bufsize[VPBE_DISPLAY_MAX_DEVICES];
  138. };
  139. #endif /* VPBE_DISPLAY_H */