isppreview.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  2. * isppreview.h
  3. *
  4. * TI OMAP3 ISP - Preview module
  5. *
  6. * Copyright (C) 2010 Nokia Corporation
  7. * Copyright (C) 2009 Texas Instruments, Inc.
  8. *
  9. * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
  10. * Sakari Ailus <sakari.ailus@iki.fi>
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License version 2 as
  14. * published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful, but
  17. * WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  19. * General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  24. * 02110-1301 USA
  25. */
  26. #ifndef OMAP3_ISP_PREVIEW_H
  27. #define OMAP3_ISP_PREVIEW_H
  28. #include <linux/omap3isp.h>
  29. #include <linux/types.h>
  30. #include <media/v4l2-ctrls.h>
  31. #include "ispvideo.h"
  32. #define ISPPRV_BRIGHT_STEP 0x1
  33. #define ISPPRV_BRIGHT_DEF 0x0
  34. #define ISPPRV_BRIGHT_LOW 0x0
  35. #define ISPPRV_BRIGHT_HIGH 0xFF
  36. #define ISPPRV_BRIGHT_UNITS 0x1
  37. #define ISPPRV_CONTRAST_STEP 0x1
  38. #define ISPPRV_CONTRAST_DEF 0x10
  39. #define ISPPRV_CONTRAST_LOW 0x0
  40. #define ISPPRV_CONTRAST_HIGH 0xFF
  41. #define ISPPRV_CONTRAST_UNITS 0x1
  42. /* Features list */
  43. #define PREV_LUMA_ENHANCE OMAP3ISP_PREV_LUMAENH
  44. #define PREV_INVERSE_ALAW OMAP3ISP_PREV_INVALAW
  45. #define PREV_HORZ_MEDIAN_FILTER OMAP3ISP_PREV_HRZ_MED
  46. #define PREV_CFA OMAP3ISP_PREV_CFA
  47. #define PREV_CHROMA_SUPPRESS OMAP3ISP_PREV_CHROMA_SUPP
  48. #define PREV_WB OMAP3ISP_PREV_WB
  49. #define PREV_BLKADJ OMAP3ISP_PREV_BLKADJ
  50. #define PREV_RGB2RGB OMAP3ISP_PREV_RGB2RGB
  51. #define PREV_COLOR_CONV OMAP3ISP_PREV_COLOR_CONV
  52. #define PREV_YCLIMITS OMAP3ISP_PREV_YC_LIMIT
  53. #define PREV_DEFECT_COR OMAP3ISP_PREV_DEFECT_COR
  54. #define PREV_GAMMA_BYPASS OMAP3ISP_PREV_GAMMABYPASS
  55. #define PREV_DARK_FRAME_CAPTURE OMAP3ISP_PREV_DRK_FRM_CAPTURE
  56. #define PREV_DARK_FRAME_SUBTRACT OMAP3ISP_PREV_DRK_FRM_SUBTRACT
  57. #define PREV_LENS_SHADING OMAP3ISP_PREV_LENS_SHADING
  58. #define PREV_NOISE_FILTER OMAP3ISP_PREV_NF
  59. #define PREV_GAMMA OMAP3ISP_PREV_GAMMA
  60. #define PREV_CONTRAST (1 << 17)
  61. #define PREV_BRIGHTNESS (1 << 18)
  62. #define PREV_FEATURES_END (1 << 19)
  63. enum preview_input_entity {
  64. PREVIEW_INPUT_NONE,
  65. PREVIEW_INPUT_CCDC,
  66. PREVIEW_INPUT_MEMORY,
  67. };
  68. #define PREVIEW_OUTPUT_RESIZER (1 << 1)
  69. #define PREVIEW_OUTPUT_MEMORY (1 << 2)
  70. /* Configure byte layout of YUV image */
  71. enum preview_ycpos_mode {
  72. YCPOS_YCrYCb = 0,
  73. YCPOS_YCbYCr = 1,
  74. YCPOS_CbYCrY = 2,
  75. YCPOS_CrYCbY = 3
  76. };
  77. /*
  78. * struct prev_params - Structure for all configuration
  79. * @features: Set of features enabled.
  80. * @cfa: CFA coefficients.
  81. * @csup: Chroma suppression coefficients.
  82. * @luma: Luma enhancement coefficients.
  83. * @nf: Noise filter coefficients.
  84. * @dcor: Noise filter coefficients.
  85. * @gamma: Gamma coefficients.
  86. * @wbal: White Balance parameters.
  87. * @blk_adj: Black adjustment parameters.
  88. * @rgb2rgb: RGB blending parameters.
  89. * @rgb2ycbcr: RGB to ycbcr parameters.
  90. * @hmed: Horizontal median filter.
  91. * @yclimit: YC limits parameters.
  92. * @contrast: Contrast.
  93. * @brightness: Brightness.
  94. */
  95. struct prev_params {
  96. u32 features;
  97. struct omap3isp_prev_cfa cfa;
  98. struct omap3isp_prev_csup csup;
  99. struct omap3isp_prev_luma luma;
  100. struct omap3isp_prev_nf nf;
  101. struct omap3isp_prev_dcor dcor;
  102. struct omap3isp_prev_gtables gamma;
  103. struct omap3isp_prev_wbal wbal;
  104. struct omap3isp_prev_blkadj blk_adj;
  105. struct omap3isp_prev_rgbtorgb rgb2rgb;
  106. struct omap3isp_prev_csc rgb2ycbcr;
  107. struct omap3isp_prev_hmed hmed;
  108. struct omap3isp_prev_yclimit yclimit;
  109. u8 contrast;
  110. u8 brightness;
  111. };
  112. /* Sink and source previewer pads */
  113. #define PREV_PAD_SINK 0
  114. #define PREV_PAD_SOURCE 1
  115. #define PREV_PADS_NUM 2
  116. /*
  117. * struct isp_prev_device - Structure for storing ISP Preview module information
  118. * @subdev: V4L2 subdevice
  119. * @pads: Media entity pads
  120. * @formats: Active formats at the subdev pad
  121. * @crop: Active crop rectangle
  122. * @input: Module currently connected to the input pad
  123. * @output: Bitmask of the active output
  124. * @video_in: Input video entity
  125. * @video_out: Output video entity
  126. * @params: Module configuration data
  127. * @shadow_update: If set, update the hardware configured in the next interrupt
  128. * @underrun: Whether the preview entity has queued buffers on the output
  129. * @state: Current preview pipeline state
  130. * @lock: Shadow update lock
  131. * @update: Bitmask of the parameters to be updated
  132. *
  133. * This structure is used to store the OMAP ISP Preview module Information.
  134. */
  135. struct isp_prev_device {
  136. struct v4l2_subdev subdev;
  137. struct media_pad pads[PREV_PADS_NUM];
  138. struct v4l2_mbus_framefmt formats[PREV_PADS_NUM];
  139. struct v4l2_rect crop;
  140. struct v4l2_ctrl_handler ctrls;
  141. enum preview_input_entity input;
  142. unsigned int output;
  143. struct isp_video video_in;
  144. struct isp_video video_out;
  145. struct prev_params params;
  146. unsigned int shadow_update:1;
  147. enum isp_pipeline_stream_state state;
  148. wait_queue_head_t wait;
  149. atomic_t stopping;
  150. spinlock_t lock;
  151. u32 update;
  152. };
  153. struct isp_device;
  154. int omap3isp_preview_init(struct isp_device *isp);
  155. void omap3isp_preview_cleanup(struct isp_device *isp);
  156. int omap3isp_preview_register_entities(struct isp_prev_device *prv,
  157. struct v4l2_device *vdev);
  158. void omap3isp_preview_unregister_entities(struct isp_prev_device *prv);
  159. void omap3isp_preview_isr_frame_sync(struct isp_prev_device *prev);
  160. void omap3isp_preview_isr(struct isp_prev_device *prev);
  161. int omap3isp_preview_busy(struct isp_prev_device *isp_prev);
  162. void omap3isp_preview_restore_context(struct isp_device *isp);
  163. #endif /* OMAP3_ISP_PREVIEW_H */