]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/media/soc_camera.h
[media] soc-camera: switch I2C subdevice drivers to use v4l2-clk
[mirror_ubuntu-bionic-kernel.git] / include / media / soc_camera.h
CommitLineData
e55222ef
GL
1/*
2 * camera image capture (abstract) bus driver header
3 *
4 * Copyright (C) 2006, Sascha Hauer, Pengutronix
5 * Copyright (C) 2008, Guennadi Liakhovetski <kernel@pengutronix.de>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#ifndef SOC_CAMERA_H
13#define SOC_CAMERA_H
14
d839fe17 15#include <linux/bitops.h>
52d268a3 16#include <linux/device.h>
1c3bb743
GL
17#include <linux/mutex.h>
18#include <linux/pm.h>
e55222ef 19#include <linux/videodev2.h>
092d3921 20#include <media/videobuf-core.h>
592c2aba 21#include <media/videobuf2-core.h>
ee02da64 22#include <media/v4l2-ctrls.h>
979ea1dd 23#include <media/v4l2-device.h>
e55222ef 24
57bee29d 25struct file;
25a34811 26struct soc_camera_desc;
57bee29d 27
e55222ef 28struct soc_camera_device {
d33b290a 29 struct list_head list; /* list of all registered devices */
25a34811 30 struct soc_camera_desc *sdesc;
979ea1dd 31 struct device *pdev; /* Platform device */
7dfff953
GL
32 struct device *parent; /* Camera host device */
33 struct device *control; /* E.g., the i2c client */
6a6c8786
GL
34 s32 user_width;
35 s32 user_height;
0e4c180d
SA
36 u32 bytesperline; /* for padding, zero if unused */
37 u32 sizeimage;
760697be 38 enum v4l2_colorspace colorspace;
e55222ef
GL
39 unsigned char iface; /* Host number */
40 unsigned char devnum; /* Device number per host */
a9bef518 41 struct soc_camera_sense *sense; /* See comment in struct definition */
e55222ef 42 struct video_device *vdev;
ee02da64 43 struct v4l2_ctrl_handler ctrl_handler;
760697be 44 const struct soc_camera_format_xlate *current_fmt;
c2786ad2
GL
45 struct soc_camera_format_xlate *user_formats;
46 int num_user_formats;
025c18a1 47 enum v4l2_field field; /* Preserve field over close() */
1c3bb743 48 void *host_priv; /* Per-device host private data */
dd669e90 49 /* soc_camera.c private count. Only accessed with .host_lock held */
9dc4e48f 50 int use_count;
57bee29d 51 struct file *streamer; /* stream owner */
9aea470b 52 struct v4l2_clk *clk;
592c2aba
GL
53 union {
54 struct videobuf_queue vb_vidq;
55 struct vb2_queue vb2_vidq;
56 };
e55222ef
GL
57};
58
914f05c8
LP
59/* Host supports programmable stride */
60#define SOCAM_HOST_CAP_STRIDE (1 << 0)
61
e55222ef 62struct soc_camera_host {
979ea1dd 63 struct v4l2_device v4l2_dev;
e55222ef 64 struct list_head list;
7d051b35 65 struct mutex host_lock; /* Protect pipeline modifications */
2f9a0c88 66 unsigned char nr; /* Host number */
914f05c8 67 u32 capabilities;
f7f6ce2d 68 struct soc_camera_device *icd; /* Currently attached client */
e55222ef 69 void *priv;
af128a10 70 const char *drv_name;
b8d9904c
GL
71 struct soc_camera_host_ops *ops;
72};
73
74struct soc_camera_host_ops {
75 struct module *owner;
e55222ef
GL
76 int (*add)(struct soc_camera_device *);
77 void (*remove)(struct soc_camera_device *);
eb569cf9
GL
78 int (*clock_start)(struct soc_camera_host *);
79 void (*clock_stop)(struct soc_camera_host *);
fa48984e
GL
80 /*
81 * .get_formats() is called for each client device format, but
82 * .put_formats() is only called once. Further, if any of the calls to
83 * .get_formats() fail, .put_formats() will not be called at all, the
84 * failing .get_formats() must then clean up internally.
85 */
3805f201 86 int (*get_formats)(struct soc_camera_device *, unsigned int,
c2786ad2 87 struct soc_camera_format_xlate *);
fa48984e 88 void (*put_formats)(struct soc_camera_device *);
6a6c8786
GL
89 int (*cropcap)(struct soc_camera_device *, struct v4l2_cropcap *);
90 int (*get_crop)(struct soc_camera_device *, struct v4l2_crop *);
4f996594 91 int (*set_crop)(struct soc_camera_device *, const struct v4l2_crop *);
3bfb4100
GL
92 int (*get_selection)(struct soc_camera_device *, struct v4l2_selection *);
93 int (*set_selection)(struct soc_camera_device *, struct v4l2_selection *);
aee5c2f1
GL
94 /*
95 * The difference to .set_crop() is, that .set_livecrop is not allowed
96 * to change the output sizes
97 */
4f996594 98 int (*set_livecrop)(struct soc_camera_device *, const struct v4l2_crop *);
09e231b3 99 int (*set_fmt)(struct soc_camera_device *, struct v4l2_format *);
d8fac217 100 int (*try_fmt)(struct soc_camera_device *, struct v4l2_format *);
a034d1b7 101 void (*init_videobuf)(struct videobuf_queue *,
092d3921 102 struct soc_camera_device *);
592c2aba
GL
103 int (*init_videobuf2)(struct vb2_queue *,
104 struct soc_camera_device *);
57bee29d 105 int (*reqbufs)(struct soc_camera_device *, struct v4l2_requestbuffers *);
e55222ef 106 int (*querycap)(struct soc_camera_host *, struct v4l2_capability *);
8843d119 107 int (*set_bus_param)(struct soc_camera_device *);
c9f6ef69
GL
108 int (*get_parm)(struct soc_camera_device *, struct v4l2_streamparm *);
109 int (*set_parm)(struct soc_camera_device *, struct v4l2_streamparm *);
ad3537b5 110 int (*enum_framesizes)(struct soc_camera_device *, struct v4l2_frmsizeenum *);
e55222ef
GL
111 unsigned int (*poll)(struct file *, poll_table *);
112};
113
bd73b36f
GL
114#define SOCAM_SENSOR_INVERT_PCLK (1 << 0)
115#define SOCAM_SENSOR_INVERT_MCLK (1 << 1)
116#define SOCAM_SENSOR_INVERT_HSYNC (1 << 2)
117#define SOCAM_SENSOR_INVERT_VSYNC (1 << 3)
118#define SOCAM_SENSOR_INVERT_DATA (1 << 4)
119
0fd327bd 120struct i2c_board_info;
96e442c1 121struct regulator_bulk_data;
0fd327bd 122
25a34811 123struct soc_camera_subdev_desc {
bd73b36f
GL
124 /* Per camera SOCAM_SENSOR_* bus flags */
125 unsigned long flags;
25a34811
GL
126
127 /* sensor driver private platform data */
128 void *drv_priv;
3fd7ceff 129
96e442c1
AP
130 /* Optional regulators that have to be managed on power on/off events */
131 struct regulator_bulk_data *regulators;
132 int num_regulators;
133
25a34811
GL
134 /* Optional callbacks to power on or off and reset the sensor */
135 int (*power)(struct device *, int);
136 int (*reset)(struct device *);
137
138 /*
139 * some platforms may support different data widths than the sensors
140 * native ones due to different data line routing. Let the board code
141 * overwrite the width flags.
142 */
143 int (*set_bus_param)(struct soc_camera_subdev_desc *, unsigned long flags);
144 unsigned long (*query_bus_param)(struct soc_camera_subdev_desc *);
145 void (*free_bus)(struct soc_camera_subdev_desc *);
146};
147
148struct soc_camera_host_desc {
149 /* Camera bus id, used to match a camera and a bus */
150 int bus_id;
151 int i2c_adapter_id;
152 struct i2c_board_info *board_info;
153 const char *module_name;
154
c41debaf 155 /*
d33b290a
GL
156 * For non-I2C devices platform has to provide methods to add a device
157 * to the system and to remove it
c41debaf 158 */
7dfff953
GL
159 int (*add_device)(struct soc_camera_device *);
160 void (*del_device)(struct soc_camera_device *);
25a34811
GL
161};
162
163/*
164 * This MUST be kept binary-identical to struct soc_camera_link below, until
165 * it is completely replaced by this one, after which we can split it into its
166 * two components.
167 */
168struct soc_camera_desc {
169 struct soc_camera_subdev_desc subdev_desc;
170 struct soc_camera_host_desc host_desc;
171};
172
173/* Prepare to replace this struct: don't change its layout any more! */
174struct soc_camera_link {
175 /*
176 * Subdevice part - keep at top and compatible to
177 * struct soc_camera_subdev_desc
178 */
179
180 /* Per camera SOCAM_SENSOR_* bus flags */
181 unsigned long flags;
182
183 void *priv;
184
185 /* Optional regulators that have to be managed on power on/off events */
186 struct regulator_bulk_data *regulators;
187 int num_regulators;
188
81034663
SH
189 /* Optional callbacks to power on or off and reset the sensor */
190 int (*power)(struct device *, int);
191 int (*reset)(struct device *);
28f59339
SH
192 /*
193 * some platforms may support different data widths than the sensors
194 * native ones due to different data line routing. Let the board code
195 * overwrite the width flags.
196 */
197 int (*set_bus_param)(struct soc_camera_link *, unsigned long flags);
198 unsigned long (*query_bus_param)(struct soc_camera_link *);
594bb46d 199 void (*free_bus)(struct soc_camera_link *);
25a34811
GL
200
201 /*
202 * Host part - keep at bottom and compatible to
203 * struct soc_camera_host_desc
204 */
205
206 /* Camera bus id, used to match a camera and a bus */
207 int bus_id;
208 int i2c_adapter_id;
209 struct i2c_board_info *board_info;
210 const char *module_name;
211
212 /*
213 * For non-I2C devices platform has to provide methods to add a device
214 * to the system and to remove it
215 */
216 int (*add_device)(struct soc_camera_device *);
217 void (*del_device)(struct soc_camera_device *);
e55222ef
GL
218};
219
96c75399
GL
220static inline struct soc_camera_host *to_soc_camera_host(
221 const struct device *dev)
e55222ef 222{
979ea1dd
GL
223 struct v4l2_device *v4l2_dev = dev_get_drvdata(dev);
224
225 return container_of(v4l2_dev, struct soc_camera_host, v4l2_dev);
e55222ef
GL
226}
227
25a34811 228static inline struct soc_camera_desc *to_soc_camera_desc(
96c75399 229 const struct soc_camera_device *icd)
40e2e092 230{
25a34811 231 return icd->sdesc;
40e2e092 232}
e55222ef 233
96c75399
GL
234static inline struct device *to_soc_camera_control(
235 const struct soc_camera_device *icd)
40e2e092 236{
7dfff953 237 return icd->control;
40e2e092 238}
e55222ef 239
96c75399
GL
240static inline struct v4l2_subdev *soc_camera_to_subdev(
241 const struct soc_camera_device *icd)
c9c1f1c0
GL
242{
243 struct device *control = to_soc_camera_control(icd);
244 return dev_get_drvdata(control);
245}
246
40e2e092
GL
247int soc_camera_host_register(struct soc_camera_host *ici);
248void soc_camera_host_unregister(struct soc_camera_host *ici);
249
40e2e092 250const struct soc_camera_format_xlate *soc_camera_xlate_by_fourcc(
c2786ad2 251 struct soc_camera_device *icd, unsigned int fourcc);
25c4d74e 252
c2786ad2
GL
253/**
254 * struct soc_camera_format_xlate - match between host and sensor formats
760697be
GL
255 * @code: code of a sensor provided format
256 * @host_fmt: host format after host translation from code
c2786ad2
GL
257 *
258 * Host and sensor translation structure. Used in table of host and sensor
259 * formats matchings in soc_camera_device. A host can override the generic list
260 * generation by implementing get_formats(), and use it for format checks and
261 * format setup.
262 */
263struct soc_camera_format_xlate {
760697be
GL
264 enum v4l2_mbus_pixelcode code;
265 const struct soc_mbus_pixelfmt *host_fmt;
c2786ad2
GL
266};
267
a9bef518
GL
268#define SOCAM_SENSE_PCLK_CHANGED (1 << 0)
269
270/**
271 * This struct can be attached to struct soc_camera_device by the host driver
272 * to request sense from the camera, for example, when calling .set_fmt(). The
273 * host then can check which flags are set and verify respective values if any.
274 * For example, if SOCAM_SENSE_PCLK_CHANGED is set, it means, pixclock has
275 * changed during this operation. After completion the host should detach sense.
276 *
277 * @flags ored SOCAM_SENSE_* flags
278 * @master_clock if the host wants to be informed about pixel-clock
279 * change, it better set master_clock.
280 * @pixel_clock_max maximum pixel clock frequency supported by the host,
281 * camera is not allowed to exceed this.
282 * @pixel_clock if the camera driver changed pixel clock during this
283 * operation, it sets SOCAM_SENSE_PCLK_CHANGED, uses
284 * master_clock to calculate the new pixel-clock and
285 * sets this field.
286 */
287struct soc_camera_sense {
288 unsigned long flags;
289 unsigned long master_clock;
290 unsigned long pixel_clock_max;
291 unsigned long pixel_clock;
292};
293
d839fe17
GL
294#define SOCAM_DATAWIDTH(x) BIT((x) - 1)
295#define SOCAM_DATAWIDTH_4 SOCAM_DATAWIDTH(4)
296#define SOCAM_DATAWIDTH_8 SOCAM_DATAWIDTH(8)
297#define SOCAM_DATAWIDTH_9 SOCAM_DATAWIDTH(9)
298#define SOCAM_DATAWIDTH_10 SOCAM_DATAWIDTH(10)
7b88fc08 299#define SOCAM_DATAWIDTH_12 SOCAM_DATAWIDTH(12)
d839fe17
GL
300#define SOCAM_DATAWIDTH_15 SOCAM_DATAWIDTH(15)
301#define SOCAM_DATAWIDTH_16 SOCAM_DATAWIDTH(16)
7b88fc08
PE
302#define SOCAM_DATAWIDTH_18 SOCAM_DATAWIDTH(18)
303#define SOCAM_DATAWIDTH_24 SOCAM_DATAWIDTH(24)
042d8790
GL
304
305#define SOCAM_DATAWIDTH_MASK (SOCAM_DATAWIDTH_4 | SOCAM_DATAWIDTH_8 | \
306 SOCAM_DATAWIDTH_9 | SOCAM_DATAWIDTH_10 | \
7b88fc08
PE
307 SOCAM_DATAWIDTH_12 | SOCAM_DATAWIDTH_15 | \
308 SOCAM_DATAWIDTH_16 | SOCAM_DATAWIDTH_18 | \
309 SOCAM_DATAWIDTH_24)
ad5f2e85 310
e26b3144
MN
311static inline void soc_camera_limit_side(int *start, int *length,
312 unsigned int start_min,
6a6c8786
GL
313 unsigned int length_min, unsigned int length_max)
314{
315 if (*length < length_min)
316 *length = length_min;
317 else if (*length > length_max)
318 *length = length_max;
319
320 if (*start < start_min)
321 *start = start_min;
322 else if (*start > start_min + length_max - *length)
323 *start = start_min + length_max - *length;
324}
325
25a34811 326unsigned long soc_camera_apply_board_flags(struct soc_camera_subdev_desc *ssdd,
32c69fcc 327 const struct v4l2_mbus_config *cfg);
bd73b36f 328
9aea470b
GL
329int soc_camera_power_on(struct device *dev, struct soc_camera_subdev_desc *ssdd,
330 struct v4l2_clk *clk);
331int soc_camera_power_off(struct device *dev, struct soc_camera_subdev_desc *ssdd,
332 struct v4l2_clk *clk);
4ec10bac
LP
333
334static inline int soc_camera_set_power(struct device *dev,
9aea470b 335 struct soc_camera_subdev_desc *ssdd, struct v4l2_clk *clk, bool on)
4ec10bac 336{
9aea470b
GL
337 return on ? soc_camera_power_on(dev, ssdd, clk)
338 : soc_camera_power_off(dev, ssdd, clk);
4ec10bac
LP
339}
340
4f9fb5ed
MCC
341/* This is only temporary here - until v4l2-subdev begins to link to video_device */
342#include <linux/i2c.h>
14178aa5 343static inline struct video_device *soc_camera_i2c_to_vdev(const struct i2c_client *client)
4f9fb5ed 344{
2f0babb7 345 struct v4l2_subdev *sd = i2c_get_clientdata(client);
4c0b036d 346 struct soc_camera_device *icd = v4l2_get_subdev_hostdata(sd);
14178aa5 347 return icd ? icd->vdev : NULL;
4f9fb5ed
MCC
348}
349
25a34811 350static inline struct soc_camera_subdev_desc *soc_camera_i2c_to_desc(const struct i2c_client *client)
14178aa5 351{
2f0babb7 352 return client->dev.platform_data;
14178aa5
GL
353}
354
14381c26 355static inline struct v4l2_subdev *soc_camera_vdev_to_subdev(struct video_device *vdev)
14178aa5 356{
14381c26 357 struct soc_camera_device *icd = video_get_drvdata(vdev);
14178aa5
GL
358 return soc_camera_to_subdev(icd);
359}
360
14178aa5 361static inline struct soc_camera_device *soc_camera_from_vb2q(const struct vb2_queue *vq)
8eb4476d
GL
362{
363 return container_of(vq, struct soc_camera_device, vb2_vidq);
364}
365
14178aa5 366static inline struct soc_camera_device *soc_camera_from_vbq(const struct videobuf_queue *vq)
8eb4476d
GL
367{
368 return container_of(vq, struct soc_camera_device, vb_vidq);
369}
370
4c0b036d
GL
371static inline u32 soc_camera_grp_id(const struct soc_camera_device *icd)
372{
373 return (icd->iface << 8) | (icd->devnum + 1);
374}
375
592c2aba
GL
376void soc_camera_lock(struct vb2_queue *vq);
377void soc_camera_unlock(struct vb2_queue *vq);
378
e55222ef 379#endif