isppreview.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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_AVERAGER (1 << 19)
  63. #define PREV_FEATURES_END (1 << 20)
  64. enum preview_input_entity {
  65. PREVIEW_INPUT_NONE,
  66. PREVIEW_INPUT_CCDC,
  67. PREVIEW_INPUT_MEMORY,
  68. };
  69. #define PREVIEW_OUTPUT_RESIZER (1 << 1)
  70. #define PREVIEW_OUTPUT_MEMORY (1 << 2)
  71. /* Configure byte layout of YUV image */
  72. enum preview_ycpos_mode {
  73. YCPOS_YCrYCb = 0,
  74. YCPOS_YCbYCr = 1,
  75. YCPOS_CbYCrY = 2,
  76. YCPOS_CrYCbY = 3
  77. };
  78. /*
  79. * struct prev_params - Structure for all configuration
  80. * @features: Set of features enabled.
  81. * @cfa: CFA coefficients.
  82. * @csup: Chroma suppression coefficients.
  83. * @luma: Luma enhancement coefficients.
  84. * @nf: Noise filter coefficients.
  85. * @dcor: Noise filter coefficients.
  86. * @gamma: Gamma coefficients.
  87. * @wbal: White Balance parameters.
  88. * @blk_adj: Black adjustment parameters.
  89. * @rgb2rgb: RGB blending parameters.
  90. * @rgb2ycbcr: RGB to ycbcr parameters.
  91. * @hmed: Horizontal median filter.
  92. * @yclimit: YC limits parameters.
  93. * @contrast: Contrast.
  94. * @brightness: Brightness.
  95. */
  96. struct prev_params {
  97. u32 features;
  98. struct omap3isp_prev_cfa cfa;
  99. struct omap3isp_prev_csup csup;
  100. struct omap3isp_prev_luma luma;
  101. struct omap3isp_prev_nf nf;
  102. struct omap3isp_prev_dcor dcor;
  103. struct omap3isp_prev_gtables gamma;
  104. struct omap3isp_prev_wbal wbal;
  105. struct omap3isp_prev_blkadj blk_adj;
  106. struct omap3isp_prev_rgbtorgb rgb2rgb;
  107. struct omap3isp_prev_csc rgb2ycbcr;
  108. struct omap3isp_prev_hmed hmed;
  109. struct omap3isp_prev_yclimit yclimit;
  110. u8 contrast;
  111. u8 brightness;
  112. };
  113. /*
  114. * struct isptables_update - Structure for Table Configuration.
  115. * @update: Specifies which tables should be updated.
  116. * @flag: Specifies which tables should be enabled.
  117. * @nf: Pointer to structure for Noise Filter
  118. * @lsc: Pointer to LSC gain table. (currently not used)
  119. * @gamma: Pointer to gamma correction tables.
  120. * @cfa: Pointer to color filter array configuration.
  121. * @wbal: Pointer to colour and digital gain configuration.
  122. */
  123. struct isptables_update {
  124. u32 update;
  125. u32 flag;
  126. struct omap3isp_prev_nf *nf;
  127. u32 *lsc;
  128. struct omap3isp_prev_gtables *gamma;
  129. struct omap3isp_prev_cfa *cfa;
  130. struct omap3isp_prev_wbal *wbal;
  131. };
  132. /* Sink and source previewer pads */
  133. #define PREV_PAD_SINK 0
  134. #define PREV_PAD_SOURCE 1
  135. #define PREV_PADS_NUM 2
  136. /*
  137. * struct isp_prev_device - Structure for storing ISP Preview module information
  138. * @subdev: V4L2 subdevice
  139. * @pads: Media entity pads
  140. * @formats: Active formats at the subdev pad
  141. * @crop: Active crop rectangle
  142. * @input: Module currently connected to the input pad
  143. * @output: Bitmask of the active output
  144. * @video_in: Input video entity
  145. * @video_out: Output video entity
  146. * @params: Module configuration data
  147. * @shadow_update: If set, update the hardware configured in the next interrupt
  148. * @underrun: Whether the preview entity has queued buffers on the output
  149. * @state: Current preview pipeline state
  150. * @lock: Shadow update lock
  151. * @update: Bitmask of the parameters to be updated
  152. *
  153. * This structure is used to store the OMAP ISP Preview module Information.
  154. */
  155. struct isp_prev_device {
  156. struct v4l2_subdev subdev;
  157. struct media_pad pads[PREV_PADS_NUM];
  158. struct v4l2_mbus_framefmt formats[PREV_PADS_NUM];
  159. struct v4l2_rect crop;
  160. struct v4l2_ctrl_handler ctrls;
  161. enum preview_input_entity input;
  162. unsigned int output;
  163. struct isp_video video_in;
  164. struct isp_video video_out;
  165. struct prev_params params;
  166. unsigned int shadow_update:1;
  167. enum isp_pipeline_stream_state state;
  168. wait_queue_head_t wait;
  169. atomic_t stopping;
  170. spinlock_t lock;
  171. u32 update;
  172. };
  173. struct isp_device;
  174. int omap3isp_preview_init(struct isp_device *isp);
  175. void omap3isp_preview_cleanup(struct isp_device *isp);
  176. int omap3isp_preview_register_entities(struct isp_prev_device *prv,
  177. struct v4l2_device *vdev);
  178. void omap3isp_preview_unregister_entities(struct isp_prev_device *prv);
  179. void omap3isp_preview_isr_frame_sync(struct isp_prev_device *prev);
  180. void omap3isp_preview_isr(struct isp_prev_device *prev);
  181. int omap3isp_preview_busy(struct isp_prev_device *isp_prev);
  182. void omap3isp_preview_restore_context(struct isp_device *isp);
  183. #endif /* OMAP3_ISP_PREVIEW_H */