isppreview.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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. /* Additional features not listed in linux/omap3isp.h */
  43. #define OMAP3ISP_PREV_CONTRAST (1 << 17)
  44. #define OMAP3ISP_PREV_BRIGHTNESS (1 << 18)
  45. #define OMAP3ISP_PREV_FEATURES_END (1 << 19)
  46. enum preview_input_entity {
  47. PREVIEW_INPUT_NONE,
  48. PREVIEW_INPUT_CCDC,
  49. PREVIEW_INPUT_MEMORY,
  50. };
  51. #define PREVIEW_OUTPUT_RESIZER (1 << 1)
  52. #define PREVIEW_OUTPUT_MEMORY (1 << 2)
  53. /* Configure byte layout of YUV image */
  54. enum preview_ycpos_mode {
  55. YCPOS_YCrYCb = 0,
  56. YCPOS_YCbYCr = 1,
  57. YCPOS_CbYCrY = 2,
  58. YCPOS_CrYCbY = 3
  59. };
  60. /*
  61. * struct prev_params - Structure for all configuration
  62. * @busy: Bitmask of busy parameters (being updated or used)
  63. * @update: Bitmask of the parameters to be updated
  64. * @features: Set of features enabled.
  65. * @cfa: CFA coefficients.
  66. * @csup: Chroma suppression coefficients.
  67. * @luma: Luma enhancement coefficients.
  68. * @nf: Noise filter coefficients.
  69. * @dcor: Noise filter coefficients.
  70. * @gamma: Gamma coefficients.
  71. * @wbal: White Balance parameters.
  72. * @blkadj: Black adjustment parameters.
  73. * @rgb2rgb: RGB blending parameters.
  74. * @csc: Color space conversion (RGB to YCbCr) parameters.
  75. * @hmed: Horizontal median filter.
  76. * @yclimit: YC limits parameters.
  77. * @contrast: Contrast.
  78. * @brightness: Brightness.
  79. */
  80. struct prev_params {
  81. u32 busy;
  82. u32 update;
  83. u32 features;
  84. struct omap3isp_prev_cfa cfa;
  85. struct omap3isp_prev_csup csup;
  86. struct omap3isp_prev_luma luma;
  87. struct omap3isp_prev_nf nf;
  88. struct omap3isp_prev_dcor dcor;
  89. struct omap3isp_prev_gtables gamma;
  90. struct omap3isp_prev_wbal wbal;
  91. struct omap3isp_prev_blkadj blkadj;
  92. struct omap3isp_prev_rgbtorgb rgb2rgb;
  93. struct omap3isp_prev_csc csc;
  94. struct omap3isp_prev_hmed hmed;
  95. struct omap3isp_prev_yclimit yclimit;
  96. u8 contrast;
  97. u8 brightness;
  98. };
  99. /* Sink and source previewer pads */
  100. #define PREV_PAD_SINK 0
  101. #define PREV_PAD_SOURCE 1
  102. #define PREV_PADS_NUM 2
  103. /*
  104. * struct isp_prev_device - Structure for storing ISP Preview module information
  105. * @subdev: V4L2 subdevice
  106. * @pads: Media entity pads
  107. * @formats: Active formats at the subdev pad
  108. * @crop: Active crop rectangle
  109. * @input: Module currently connected to the input pad
  110. * @output: Bitmask of the active output
  111. * @video_in: Input video entity
  112. * @video_out: Output video entity
  113. * @params.params : Active and shadow parameters sets
  114. * @params.active: Bitmask of parameters active in set 0
  115. * @params.lock: Parameters lock, protects params.active and params.shadow
  116. * @underrun: Whether the preview entity has queued buffers on the output
  117. * @state: Current preview pipeline state
  118. *
  119. * This structure is used to store the OMAP ISP Preview module Information.
  120. */
  121. struct isp_prev_device {
  122. struct v4l2_subdev subdev;
  123. struct media_pad pads[PREV_PADS_NUM];
  124. struct v4l2_mbus_framefmt formats[PREV_PADS_NUM];
  125. struct v4l2_rect crop;
  126. struct v4l2_ctrl_handler ctrls;
  127. enum preview_input_entity input;
  128. unsigned int output;
  129. struct isp_video video_in;
  130. struct isp_video video_out;
  131. struct {
  132. unsigned int cfa_order;
  133. struct prev_params params[2];
  134. u32 active;
  135. spinlock_t lock;
  136. } params;
  137. enum isp_pipeline_stream_state state;
  138. wait_queue_head_t wait;
  139. atomic_t stopping;
  140. };
  141. struct isp_device;
  142. int omap3isp_preview_init(struct isp_device *isp);
  143. void omap3isp_preview_cleanup(struct isp_device *isp);
  144. int omap3isp_preview_register_entities(struct isp_prev_device *prv,
  145. struct v4l2_device *vdev);
  146. void omap3isp_preview_unregister_entities(struct isp_prev_device *prv);
  147. void omap3isp_preview_isr_frame_sync(struct isp_prev_device *prev);
  148. void omap3isp_preview_isr(struct isp_prev_device *prev);
  149. int omap3isp_preview_busy(struct isp_prev_device *isp_prev);
  150. void omap3isp_preview_restore_context(struct isp_device *isp);
  151. #endif /* OMAP3_ISP_PREVIEW_H */