1
2
3
4
5
6
7
8
9
10
11
12#include <linux/device.h>
13#include <linux/module.h>
14
15#include <media/soc_camera.h>
16#include <media/v4l2-common.h>
17
18#include "soc_scale_crop.h"
19
20#ifdef DEBUG_GEOMETRY
21#define dev_geo dev_info
22#else
23#define dev_geo dev_dbg
24#endif
25
26
27static bool is_smaller(const struct v4l2_rect *r1, const struct v4l2_rect *r2)
28{
29 return r1->width < r2->width || r1->height < r2->height;
30}
31
32
33static bool is_inside(const struct v4l2_rect *r1, const struct v4l2_rect *r2)
34{
35 return r1->left > r2->left || r1->top > r2->top ||
36 r1->left + r1->width < r2->left + r2->width ||
37 r1->top + r1->height < r2->top + r2->height;
38}
39
40
41int soc_camera_client_g_rect(struct v4l2_subdev *sd, struct v4l2_rect *rect)
42{
43 struct v4l2_crop crop;
44 struct v4l2_cropcap cap;
45 int ret;
46
47 crop.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
48
49 ret = v4l2_subdev_call(sd, video, g_crop, &crop);
50 if (!ret) {
51 *rect = crop.c;
52 return ret;
53 }
54
55
56 cap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
57
58 ret = v4l2_subdev_call(sd, video, cropcap, &cap);
59 if (!ret)
60 *rect = cap.defrect;
61
62 return ret;
63}
64EXPORT_SYMBOL(soc_camera_client_g_rect);
65
66
67static void update_subrect(struct v4l2_rect *rect, struct v4l2_rect *subrect)
68{
69 if (rect->width < subrect->width)
70 subrect->width = rect->width;
71
72 if (rect->height < subrect->height)
73 subrect->height = rect->height;
74
75 if (rect->left > subrect->left)
76 subrect->left = rect->left;
77 else if (rect->left + rect->width >
78 subrect->left + subrect->width)
79 subrect->left = rect->left + rect->width -
80 subrect->width;
81
82 if (rect->top > subrect->top)
83 subrect->top = rect->top;
84 else if (rect->top + rect->height >
85 subrect->top + subrect->height)
86 subrect->top = rect->top + rect->height -
87 subrect->height;
88}
89
90
91
92
93
94
95
96int soc_camera_client_s_crop(struct v4l2_subdev *sd,
97 struct v4l2_crop *crop, struct v4l2_crop *cam_crop,
98 struct v4l2_rect *target_rect, struct v4l2_rect *subrect)
99{
100 struct v4l2_rect *rect = &crop->c, *cam_rect = &cam_crop->c;
101 struct device *dev = sd->v4l2_dev->dev;
102 struct v4l2_cropcap cap;
103 int ret;
104 unsigned int width, height;
105
106 v4l2_subdev_call(sd, video, s_crop, crop);
107 ret = soc_camera_client_g_rect(sd, cam_rect);
108 if (ret < 0)
109 return ret;
110
111
112
113
114
115 if (!memcmp(rect, cam_rect, sizeof(*rect))) {
116
117 dev_dbg(dev, "Camera S_CROP successful for %dx%d@%d:%d\n",
118 rect->width, rect->height, rect->left, rect->top);
119 *target_rect = *cam_rect;
120 return 0;
121 }
122
123
124 dev_geo(dev, "Fix camera S_CROP for %dx%d@%d:%d to %dx%d@%d:%d\n",
125 cam_rect->width, cam_rect->height,
126 cam_rect->left, cam_rect->top,
127 rect->width, rect->height, rect->left, rect->top);
128
129
130 ret = v4l2_subdev_call(sd, video, cropcap, &cap);
131 if (ret < 0)
132 return ret;
133
134
135 soc_camera_limit_side(&rect->left, &rect->width, cap.bounds.left, 2,
136 cap.bounds.width);
137 soc_camera_limit_side(&rect->top, &rect->height, cap.bounds.top, 4,
138 cap.bounds.height);
139
140
141
142
143
144 width = max_t(unsigned int, cam_rect->width, 2);
145 height = max_t(unsigned int, cam_rect->height, 2);
146
147
148
149
150
151 while (!ret && (is_smaller(cam_rect, rect) ||
152 is_inside(cam_rect, rect)) &&
153 (cap.bounds.width > width || cap.bounds.height > height)) {
154
155 width *= 2;
156 height *= 2;
157
158 cam_rect->width = width;
159 cam_rect->height = height;
160
161
162
163
164
165
166
167
168
169
170 if (cam_rect->left > rect->left)
171 cam_rect->left = cap.bounds.left;
172
173 if (cam_rect->left + cam_rect->width < rect->left + rect->width)
174 cam_rect->width = rect->left + rect->width -
175 cam_rect->left;
176
177 if (cam_rect->top > rect->top)
178 cam_rect->top = cap.bounds.top;
179
180 if (cam_rect->top + cam_rect->height < rect->top + rect->height)
181 cam_rect->height = rect->top + rect->height -
182 cam_rect->top;
183
184 v4l2_subdev_call(sd, video, s_crop, cam_crop);
185 ret = soc_camera_client_g_rect(sd, cam_rect);
186 dev_geo(dev, "Camera S_CROP %d for %dx%d@%d:%d\n", ret,
187 cam_rect->width, cam_rect->height,
188 cam_rect->left, cam_rect->top);
189 }
190
191
192 if (is_smaller(cam_rect, rect) || is_inside(cam_rect, rect)) {
193
194
195
196
197 *cam_rect = cap.bounds;
198 v4l2_subdev_call(sd, video, s_crop, cam_crop);
199 ret = soc_camera_client_g_rect(sd, cam_rect);
200 dev_geo(dev, "Camera S_CROP %d for max %dx%d@%d:%d\n", ret,
201 cam_rect->width, cam_rect->height,
202 cam_rect->left, cam_rect->top);
203 }
204
205 if (!ret) {
206 *target_rect = *cam_rect;
207 update_subrect(target_rect, subrect);
208 }
209
210 return ret;
211}
212EXPORT_SYMBOL(soc_camera_client_s_crop);
213
214
215static int client_s_fmt(struct soc_camera_device *icd,
216 struct v4l2_rect *rect, struct v4l2_rect *subrect,
217 unsigned int max_width, unsigned int max_height,
218 struct v4l2_mbus_framefmt *mf, bool host_can_scale)
219{
220 struct v4l2_subdev *sd = soc_camera_to_subdev(icd);
221 struct device *dev = icd->parent;
222 unsigned int width = mf->width, height = mf->height, tmp_w, tmp_h;
223 struct v4l2_cropcap cap;
224 bool host_1to1;
225 int ret;
226
227 ret = v4l2_device_call_until_err(sd->v4l2_dev,
228 soc_camera_grp_id(icd), video,
229 s_mbus_fmt, mf);
230 if (ret < 0)
231 return ret;
232
233 dev_geo(dev, "camera scaled to %ux%u\n", mf->width, mf->height);
234
235 if (width == mf->width && height == mf->height) {
236
237 host_1to1 = true;
238 goto update_cache;
239 }
240
241 host_1to1 = false;
242 if (!host_can_scale)
243 goto update_cache;
244
245 cap.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
246
247 ret = v4l2_subdev_call(sd, video, cropcap, &cap);
248 if (ret < 0)
249 return ret;
250
251 if (max_width > cap.bounds.width)
252 max_width = cap.bounds.width;
253 if (max_height > cap.bounds.height)
254 max_height = cap.bounds.height;
255
256
257 tmp_w = mf->width;
258 tmp_h = mf->height;
259
260
261 while ((width > tmp_w || height > tmp_h) &&
262 tmp_w < max_width && tmp_h < max_height) {
263 tmp_w = min(2 * tmp_w, max_width);
264 tmp_h = min(2 * tmp_h, max_height);
265 mf->width = tmp_w;
266 mf->height = tmp_h;
267 ret = v4l2_device_call_until_err(sd->v4l2_dev,
268 soc_camera_grp_id(icd), video,
269 s_mbus_fmt, mf);
270 dev_geo(dev, "Camera scaled to %ux%u\n",
271 mf->width, mf->height);
272 if (ret < 0) {
273
274 dev_err(dev, "Client failed to set format: %d\n", ret);
275 return ret;
276 }
277 }
278
279update_cache:
280
281 ret = soc_camera_client_g_rect(sd, rect);
282 if (ret < 0)
283 return ret;
284
285 if (host_1to1)
286 *subrect = *rect;
287 else
288 update_subrect(rect, subrect);
289
290 return 0;
291}
292
293
294
295
296
297
298
299
300
301
302
303
304
305int soc_camera_client_scale(struct soc_camera_device *icd,
306 struct v4l2_rect *rect, struct v4l2_rect *subrect,
307 struct v4l2_mbus_framefmt *mf,
308 unsigned int *width, unsigned int *height,
309 bool host_can_scale, unsigned int shift)
310{
311 struct device *dev = icd->parent;
312 struct v4l2_mbus_framefmt mf_tmp = *mf;
313 unsigned int scale_h, scale_v;
314 int ret;
315
316
317
318
319
320 ret = client_s_fmt(icd, rect, subrect, *width, *height,
321 &mf_tmp, host_can_scale);
322 if (ret < 0)
323 return ret;
324
325 dev_geo(dev, "5: camera scaled to %ux%u\n",
326 mf_tmp.width, mf_tmp.height);
327
328
329
330
331
332
333 scale_h = soc_camera_calc_scale(rect->width, shift, mf_tmp.width);
334 scale_v = soc_camera_calc_scale(rect->height, shift, mf_tmp.height);
335
336 mf->width = mf_tmp.width;
337 mf->height = mf_tmp.height;
338 mf->colorspace = mf_tmp.colorspace;
339
340
341
342
343
344 *width = soc_camera_shift_scale(subrect->width, shift, scale_h);
345 *height = soc_camera_shift_scale(subrect->height, shift, scale_v);
346
347 dev_geo(dev, "8: new client sub-window %ux%u\n", *width, *height);
348
349 return 0;
350}
351EXPORT_SYMBOL(soc_camera_client_scale);
352
353
354
355
356
357
358void soc_camera_calc_client_output(struct soc_camera_device *icd,
359 struct v4l2_rect *rect, struct v4l2_rect *subrect,
360 const struct v4l2_pix_format *pix, struct v4l2_mbus_framefmt *mf,
361 unsigned int shift)
362{
363 struct device *dev = icd->parent;
364 unsigned int scale_v, scale_h;
365
366 if (subrect->width == rect->width &&
367 subrect->height == rect->height) {
368
369 mf->width = pix->width;
370 mf->height = pix->height;
371 return;
372 }
373
374
375
376 dev_geo(dev, "2: subwin %ux%u@%u:%u\n",
377 subrect->width, subrect->height,
378 subrect->left, subrect->top);
379
380
381
382
383
384
385
386
387
388
389
390 scale_h = soc_camera_calc_scale(subrect->width, shift, pix->width);
391 scale_v = soc_camera_calc_scale(subrect->height, shift, pix->height);
392
393 dev_geo(dev, "3: scales %u:%u\n", scale_h, scale_v);
394
395
396
397
398
399 mf->width = soc_camera_shift_scale(rect->width, shift, scale_h);
400 mf->height = soc_camera_shift_scale(rect->height, shift, scale_v);
401}
402EXPORT_SYMBOL(soc_camera_calc_client_output);
403