1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Microchip Image Sensor Controller (ISC) driver header file
5 * Copyright (C) 2016-2019 Microchip Technology, Inc.
8 * Author: Eugen Hristev <eugen.hristev@microchip.com>
13 #define ISC_MAX_SUPPORT_WIDTH 2592
14 #define ISC_MAX_SUPPORT_HEIGHT 1944
16 #define ISC_CLK_MAX_DIV 255
26 struct regmap
*regmap
;
27 spinlock_t lock
; /* serialize access to clock registers */
34 #define to_isc_clk(v) container_of(v, struct isc_clk, hw)
37 struct vb2_v4l2_buffer vb
;
38 struct list_head list
;
41 struct isc_subdev_entity
{
42 struct v4l2_subdev
*sd
;
43 struct v4l2_async_subdev
*asd
;
44 struct v4l2_async_notifier notifier
;
48 struct list_head list
;
52 * struct isc_format - ISC media bus format information
53 This structure represents the interface between the ISC
54 and the sensor. It's the input format received by
56 * @fourcc: Fourcc code for this format
57 * @mbus_code: V4L2 media bus format code.
58 * @cfa_baycfg: If this format is RAW BAYER, indicate the type of bayer.
59 this is either BGBG, RGRG, etc.
60 * @pfe_cfg0_bps: Number of hardware data lines connected to the ISC
73 #define WB_ENABLE BIT(0)
74 #define CFA_ENABLE BIT(1)
75 #define CC_ENABLE BIT(2)
76 #define GAM_ENABLE BIT(3)
77 #define GAM_BENABLE BIT(4)
78 #define GAM_GENABLE BIT(5)
79 #define GAM_RENABLE BIT(6)
80 #define CSC_ENABLE BIT(7)
81 #define CBC_ENABLE BIT(8)
82 #define SUB422_ENABLE BIT(9)
83 #define SUB420_ENABLE BIT(10)
85 #define GAM_ENABLES (GAM_RENABLE | GAM_GENABLE | GAM_BENABLE | GAM_ENABLE)
88 * struct fmt_config - ISC format configuration and internal pipeline
89 This structure represents the internal configuration
91 It also holds the format that ISC will present to v4l2.
92 * @sd_format: Pointer to an isc_format struct that holds the sensor
94 * @fourcc: Fourcc code for this format.
95 * @bpp: Bytes per pixel in the current format.
96 * @rlp_cfg_mode: Configuration of the RLP (rounding, limiting packaging)
97 * @dcfg_imode: Configuration of the input of the DMA module
98 * @dctrl_dview: Configuration of the output of the DMA module
99 * @bits_pipeline: Configuration of the pipeline, which modules are enabled
102 struct isc_format
*sd_format
;
114 #define HIST_ENTRIES 512
115 #define HIST_BAYER (ISC_HIS_CFG_MODE_B + 1)
124 struct v4l2_ctrl_handler handler
;
129 #define ISC_WB_NONE 0
130 #define ISC_WB_AUTO 1
131 #define ISC_WB_ONETIME 2
134 /* one for each component : GR, R, GB, B */
135 u32 gain
[HIST_BAYER
];
136 s32 offset
[HIST_BAYER
];
138 u32 hist_entry
[HIST_ENTRIES
];
139 u32 hist_count
[HIST_BAYER
];
142 #define HIST_MIN_INDEX 0
143 #define HIST_MAX_INDEX 1
144 u32 hist_minmax
[HIST_BAYER
][2];
147 #define ISC_PIPE_LINE_NODE_NUM 11
150 * struct isc_device - ISC device driver data/config struct
151 * @regmap: Register map
152 * @hclock: Hclock clock input (refer datasheet)
153 * @ispck: iscpck clock (refer datasheet)
154 * @isc_clks: ISC clocks
156 * @dev: Registered device driver
157 * @v4l2_dev: v4l2 registered device
158 * @video_dev: registered video device
160 * @vb2_vidq: video buffer 2 video queue
161 * @dma_queue_lock: lock to serialize the dma buffer queue
162 * @dma_queue: the queue for dma buffers
163 * @cur_frm: current isc frame/buffer
164 * @sequence: current frame number
165 * @stop: true if isc is not streaming, false if streaming
166 * @comp: completion reference that signals frame completion
168 * @fmt: current v42l format
169 * @user_formats: list of formats that are supported and agreed with sd
170 * @num_user_formats: how many formats are in user_formats
172 * @config: current ISC format configuration
173 * @try_config: the current ISC try format , not yet activated
175 * @ctrls: holds information about ISC controls
176 * @do_wb_ctrl: control regarding the DO_WHITE_BALANCE button
177 * @awb_work: workqueue reference for autowhitebalance histogram
180 * @lock: lock for serializing userspace file operations
181 * with ISC operations
182 * @awb_lock: lock for serializing awb work queue operations
183 * with DMA/buffer operations
185 * @pipeline: configuration of the ISC pipeline
187 * @current_subdev: current subdevice: the sensor
188 * @subdev_entities: list of subdevice entitites
191 struct regmap
*regmap
;
194 struct isc_clk isc_clks
[2];
197 struct v4l2_device v4l2_dev
;
198 struct video_device video_dev
;
200 struct vb2_queue vb2_vidq
;
201 spinlock_t dma_queue_lock
; /* serialize access to dma queue */
202 struct list_head dma_queue
;
203 struct isc_buffer
*cur_frm
;
204 unsigned int sequence
;
206 struct completion comp
;
208 struct v4l2_format fmt
;
209 struct isc_format
**user_formats
;
210 unsigned int num_user_formats
;
212 struct fmt_config config
;
213 struct fmt_config try_config
;
215 struct isc_ctrls ctrls
;
216 struct work_struct awb_work
;
218 struct mutex lock
; /* serialize access to file operations */
219 spinlock_t awb_lock
; /* serialize access to DMA buffers from awb work queue */
221 struct regmap_field
*pipeline
[ISC_PIPE_LINE_NODE_NUM
];
223 struct isc_subdev_entity
*current_subdev
;
224 struct list_head subdev_entities
;
227 #define ISC_CTRL_DO_WB 1
228 #define ISC_CTRL_R_GAIN 2
229 #define ISC_CTRL_B_GAIN 3
230 #define ISC_CTRL_GR_GAIN 4
231 #define ISC_CTRL_GB_GAIN 5
232 #define ISC_CTRL_R_OFF 6
233 #define ISC_CTRL_B_OFF 7
234 #define ISC_CTRL_GR_OFF 8
235 #define ISC_CTRL_GB_OFF 9
236 struct v4l2_ctrl
*awb_ctrl
;
237 struct v4l2_ctrl
*do_wb_ctrl
;
238 struct v4l2_ctrl
*r_gain_ctrl
;
239 struct v4l2_ctrl
*b_gain_ctrl
;
240 struct v4l2_ctrl
*gr_gain_ctrl
;
241 struct v4l2_ctrl
*gb_gain_ctrl
;
242 struct v4l2_ctrl
*r_off_ctrl
;
243 struct v4l2_ctrl
*b_off_ctrl
;
244 struct v4l2_ctrl
*gr_off_ctrl
;
245 struct v4l2_ctrl
*gb_off_ctrl
;
250 #define GAMMA_ENTRIES 64
252 #define ATMEL_ISC_NAME "atmel-isc"
254 extern struct isc_format formats_list
[];
255 extern const struct isc_format controller_formats
[];
256 extern const u32 isc_gamma_table
[GAMMA_MAX
+ 1][GAMMA_ENTRIES
];
257 extern const struct regmap_config isc_regmap_config
;
258 extern const struct v4l2_async_notifier_operations isc_async_ops
;
260 irqreturn_t
isc_interrupt(int irq
, void *dev_id
);
261 int isc_pipeline_init(struct isc_device
*isc
);
262 int isc_clk_init(struct isc_device
*isc
);
263 void isc_subdev_cleanup(struct isc_device
*isc
);
264 void isc_clk_cleanup(struct isc_device
*isc
);