Loading...
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * vimc-sensor.c Virtual Media Controller Driver
4 *
5 * Copyright (C) 2015-2017 Helen Koike <helen.fornazier@gmail.com>
6 */
7
8#include <linux/component.h>
9#include <linux/module.h>
10#include <linux/mod_devicetable.h>
11#include <linux/platform_device.h>
12#include <linux/v4l2-mediabus.h>
13#include <linux/vmalloc.h>
14#include <media/v4l2-ctrls.h>
15#include <media/v4l2-event.h>
16#include <media/v4l2-subdev.h>
17#include <media/tpg/v4l2-tpg.h>
18
19#include "vimc-common.h"
20
21#define VIMC_SEN_DRV_NAME "vimc-sensor"
22
23struct vimc_sen_device {
24 struct vimc_ent_device ved;
25 struct v4l2_subdev sd;
26 struct device *dev;
27 struct tpg_data tpg;
28 struct task_struct *kthread_sen;
29 u8 *frame;
30 /* The active format */
31 struct v4l2_mbus_framefmt mbus_format;
32 struct v4l2_ctrl_handler hdl;
33};
34
35static const struct v4l2_mbus_framefmt fmt_default = {
36 .width = 640,
37 .height = 480,
38 .code = MEDIA_BUS_FMT_RGB888_1X24,
39 .field = V4L2_FIELD_NONE,
40 .colorspace = V4L2_COLORSPACE_DEFAULT,
41};
42
43static int vimc_sen_init_cfg(struct v4l2_subdev *sd,
44 struct v4l2_subdev_pad_config *cfg)
45{
46 unsigned int i;
47
48 for (i = 0; i < sd->entity.num_pads; i++) {
49 struct v4l2_mbus_framefmt *mf;
50
51 mf = v4l2_subdev_get_try_format(sd, cfg, i);
52 *mf = fmt_default;
53 }
54
55 return 0;
56}
57
58static int vimc_sen_enum_mbus_code(struct v4l2_subdev *sd,
59 struct v4l2_subdev_pad_config *cfg,
60 struct v4l2_subdev_mbus_code_enum *code)
61{
62 const struct vimc_pix_map *vpix = vimc_pix_map_by_index(code->index);
63
64 if (!vpix)
65 return -EINVAL;
66
67 code->code = vpix->code;
68
69 return 0;
70}
71
72static int vimc_sen_enum_frame_size(struct v4l2_subdev *sd,
73 struct v4l2_subdev_pad_config *cfg,
74 struct v4l2_subdev_frame_size_enum *fse)
75{
76 const struct vimc_pix_map *vpix;
77
78 if (fse->index)
79 return -EINVAL;
80
81 /* Only accept code in the pix map table */
82 vpix = vimc_pix_map_by_code(fse->code);
83 if (!vpix)
84 return -EINVAL;
85
86 fse->min_width = VIMC_FRAME_MIN_WIDTH;
87 fse->max_width = VIMC_FRAME_MAX_WIDTH;
88 fse->min_height = VIMC_FRAME_MIN_HEIGHT;
89 fse->max_height = VIMC_FRAME_MAX_HEIGHT;
90
91 return 0;
92}
93
94static int vimc_sen_get_fmt(struct v4l2_subdev *sd,
95 struct v4l2_subdev_pad_config *cfg,
96 struct v4l2_subdev_format *fmt)
97{
98 struct vimc_sen_device *vsen =
99 container_of(sd, struct vimc_sen_device, sd);
100
101 fmt->format = fmt->which == V4L2_SUBDEV_FORMAT_TRY ?
102 *v4l2_subdev_get_try_format(sd, cfg, fmt->pad) :
103 vsen->mbus_format;
104
105 return 0;
106}
107
108static void vimc_sen_tpg_s_format(struct vimc_sen_device *vsen)
109{
110 const struct vimc_pix_map *vpix =
111 vimc_pix_map_by_code(vsen->mbus_format.code);
112
113 tpg_reset_source(&vsen->tpg, vsen->mbus_format.width,
114 vsen->mbus_format.height, vsen->mbus_format.field);
115 tpg_s_bytesperline(&vsen->tpg, 0, vsen->mbus_format.width * vpix->bpp);
116 tpg_s_buf_height(&vsen->tpg, vsen->mbus_format.height);
117 tpg_s_fourcc(&vsen->tpg, vpix->pixelformat);
118 /* TODO: add support for V4L2_FIELD_ALTERNATE */
119 tpg_s_field(&vsen->tpg, vsen->mbus_format.field, false);
120 tpg_s_colorspace(&vsen->tpg, vsen->mbus_format.colorspace);
121 tpg_s_ycbcr_enc(&vsen->tpg, vsen->mbus_format.ycbcr_enc);
122 tpg_s_quantization(&vsen->tpg, vsen->mbus_format.quantization);
123 tpg_s_xfer_func(&vsen->tpg, vsen->mbus_format.xfer_func);
124}
125
126static void vimc_sen_adjust_fmt(struct v4l2_mbus_framefmt *fmt)
127{
128 const struct vimc_pix_map *vpix;
129
130 /* Only accept code in the pix map table */
131 vpix = vimc_pix_map_by_code(fmt->code);
132 if (!vpix)
133 fmt->code = fmt_default.code;
134
135 fmt->width = clamp_t(u32, fmt->width, VIMC_FRAME_MIN_WIDTH,
136 VIMC_FRAME_MAX_WIDTH) & ~1;
137 fmt->height = clamp_t(u32, fmt->height, VIMC_FRAME_MIN_HEIGHT,
138 VIMC_FRAME_MAX_HEIGHT) & ~1;
139
140 /* TODO: add support for V4L2_FIELD_ALTERNATE */
141 if (fmt->field == V4L2_FIELD_ANY || fmt->field == V4L2_FIELD_ALTERNATE)
142 fmt->field = fmt_default.field;
143
144 vimc_colorimetry_clamp(fmt);
145}
146
147static int vimc_sen_set_fmt(struct v4l2_subdev *sd,
148 struct v4l2_subdev_pad_config *cfg,
149 struct v4l2_subdev_format *fmt)
150{
151 struct vimc_sen_device *vsen = v4l2_get_subdevdata(sd);
152 struct v4l2_mbus_framefmt *mf;
153
154 if (fmt->which == V4L2_SUBDEV_FORMAT_ACTIVE) {
155 /* Do not change the format while stream is on */
156 if (vsen->frame)
157 return -EBUSY;
158
159 mf = &vsen->mbus_format;
160 } else {
161 mf = v4l2_subdev_get_try_format(sd, cfg, fmt->pad);
162 }
163
164 /* Set the new format */
165 vimc_sen_adjust_fmt(&fmt->format);
166
167 dev_dbg(vsen->dev, "%s: format update: "
168 "old:%dx%d (0x%x, %d, %d, %d, %d) "
169 "new:%dx%d (0x%x, %d, %d, %d, %d)\n", vsen->sd.name,
170 /* old */
171 mf->width, mf->height, mf->code,
172 mf->colorspace, mf->quantization,
173 mf->xfer_func, mf->ycbcr_enc,
174 /* new */
175 fmt->format.width, fmt->format.height, fmt->format.code,
176 fmt->format.colorspace, fmt->format.quantization,
177 fmt->format.xfer_func, fmt->format.ycbcr_enc);
178
179 *mf = fmt->format;
180
181 return 0;
182}
183
184static const struct v4l2_subdev_pad_ops vimc_sen_pad_ops = {
185 .init_cfg = vimc_sen_init_cfg,
186 .enum_mbus_code = vimc_sen_enum_mbus_code,
187 .enum_frame_size = vimc_sen_enum_frame_size,
188 .get_fmt = vimc_sen_get_fmt,
189 .set_fmt = vimc_sen_set_fmt,
190};
191
192static void *vimc_sen_process_frame(struct vimc_ent_device *ved,
193 const void *sink_frame)
194{
195 struct vimc_sen_device *vsen = container_of(ved, struct vimc_sen_device,
196 ved);
197
198 tpg_fill_plane_buffer(&vsen->tpg, 0, 0, vsen->frame);
199 return vsen->frame;
200}
201
202static int vimc_sen_s_stream(struct v4l2_subdev *sd, int enable)
203{
204 struct vimc_sen_device *vsen =
205 container_of(sd, struct vimc_sen_device, sd);
206
207 if (enable) {
208 const struct vimc_pix_map *vpix;
209 unsigned int frame_size;
210
211 if (vsen->kthread_sen)
212 /* tpg is already executing */
213 return 0;
214
215 /* Calculate the frame size */
216 vpix = vimc_pix_map_by_code(vsen->mbus_format.code);
217 frame_size = vsen->mbus_format.width * vpix->bpp *
218 vsen->mbus_format.height;
219
220 /*
221 * Allocate the frame buffer. Use vmalloc to be able to
222 * allocate a large amount of memory
223 */
224 vsen->frame = vmalloc(frame_size);
225 if (!vsen->frame)
226 return -ENOMEM;
227
228 /* configure the test pattern generator */
229 vimc_sen_tpg_s_format(vsen);
230
231 } else {
232
233 vfree(vsen->frame);
234 vsen->frame = NULL;
235 }
236
237 return 0;
238}
239
240static const struct v4l2_subdev_core_ops vimc_sen_core_ops = {
241 .log_status = v4l2_ctrl_subdev_log_status,
242 .subscribe_event = v4l2_ctrl_subdev_subscribe_event,
243 .unsubscribe_event = v4l2_event_subdev_unsubscribe,
244};
245
246static const struct v4l2_subdev_video_ops vimc_sen_video_ops = {
247 .s_stream = vimc_sen_s_stream,
248};
249
250static const struct v4l2_subdev_ops vimc_sen_ops = {
251 .core = &vimc_sen_core_ops,
252 .pad = &vimc_sen_pad_ops,
253 .video = &vimc_sen_video_ops,
254};
255
256static int vimc_sen_s_ctrl(struct v4l2_ctrl *ctrl)
257{
258 struct vimc_sen_device *vsen =
259 container_of(ctrl->handler, struct vimc_sen_device, hdl);
260
261 switch (ctrl->id) {
262 case VIMC_CID_TEST_PATTERN:
263 tpg_s_pattern(&vsen->tpg, ctrl->val);
264 break;
265 case V4L2_CID_HFLIP:
266 tpg_s_hflip(&vsen->tpg, ctrl->val);
267 break;
268 case V4L2_CID_VFLIP:
269 tpg_s_vflip(&vsen->tpg, ctrl->val);
270 break;
271 case V4L2_CID_BRIGHTNESS:
272 tpg_s_brightness(&vsen->tpg, ctrl->val);
273 break;
274 case V4L2_CID_CONTRAST:
275 tpg_s_contrast(&vsen->tpg, ctrl->val);
276 break;
277 case V4L2_CID_HUE:
278 tpg_s_hue(&vsen->tpg, ctrl->val);
279 break;
280 case V4L2_CID_SATURATION:
281 tpg_s_saturation(&vsen->tpg, ctrl->val);
282 break;
283 default:
284 return -EINVAL;
285 }
286 return 0;
287}
288
289static const struct v4l2_ctrl_ops vimc_sen_ctrl_ops = {
290 .s_ctrl = vimc_sen_s_ctrl,
291};
292
293static void vimc_sen_release(struct v4l2_subdev *sd)
294{
295 struct vimc_sen_device *vsen =
296 container_of(sd, struct vimc_sen_device, sd);
297
298 v4l2_ctrl_handler_free(&vsen->hdl);
299 tpg_free(&vsen->tpg);
300 kfree(vsen);
301}
302
303static const struct v4l2_subdev_internal_ops vimc_sen_int_ops = {
304 .release = vimc_sen_release,
305};
306
307static void vimc_sen_comp_unbind(struct device *comp, struct device *master,
308 void *master_data)
309{
310 struct vimc_ent_device *ved = dev_get_drvdata(comp);
311 struct vimc_sen_device *vsen =
312 container_of(ved, struct vimc_sen_device, ved);
313
314 vimc_ent_sd_unregister(ved, &vsen->sd);
315}
316
317/* Image Processing Controls */
318static const struct v4l2_ctrl_config vimc_sen_ctrl_class = {
319 .flags = V4L2_CTRL_FLAG_READ_ONLY | V4L2_CTRL_FLAG_WRITE_ONLY,
320 .id = VIMC_CID_VIMC_CLASS,
321 .name = "VIMC Controls",
322 .type = V4L2_CTRL_TYPE_CTRL_CLASS,
323};
324
325static const struct v4l2_ctrl_config vimc_sen_ctrl_test_pattern = {
326 .ops = &vimc_sen_ctrl_ops,
327 .id = VIMC_CID_TEST_PATTERN,
328 .name = "Test Pattern",
329 .type = V4L2_CTRL_TYPE_MENU,
330 .max = TPG_PAT_NOISE,
331 .qmenu = tpg_pattern_strings,
332};
333
334static int vimc_sen_comp_bind(struct device *comp, struct device *master,
335 void *master_data)
336{
337 struct v4l2_device *v4l2_dev = master_data;
338 struct vimc_platform_data *pdata = comp->platform_data;
339 struct vimc_sen_device *vsen;
340 int ret;
341
342 /* Allocate the vsen struct */
343 vsen = kzalloc(sizeof(*vsen), GFP_KERNEL);
344 if (!vsen)
345 return -ENOMEM;
346
347 v4l2_ctrl_handler_init(&vsen->hdl, 4);
348
349 v4l2_ctrl_new_custom(&vsen->hdl, &vimc_sen_ctrl_class, NULL);
350 v4l2_ctrl_new_custom(&vsen->hdl, &vimc_sen_ctrl_test_pattern, NULL);
351 v4l2_ctrl_new_std(&vsen->hdl, &vimc_sen_ctrl_ops,
352 V4L2_CID_VFLIP, 0, 1, 1, 0);
353 v4l2_ctrl_new_std(&vsen->hdl, &vimc_sen_ctrl_ops,
354 V4L2_CID_HFLIP, 0, 1, 1, 0);
355 v4l2_ctrl_new_std(&vsen->hdl, &vimc_sen_ctrl_ops,
356 V4L2_CID_BRIGHTNESS, 0, 255, 1, 128);
357 v4l2_ctrl_new_std(&vsen->hdl, &vimc_sen_ctrl_ops,
358 V4L2_CID_CONTRAST, 0, 255, 1, 128);
359 v4l2_ctrl_new_std(&vsen->hdl, &vimc_sen_ctrl_ops,
360 V4L2_CID_HUE, -128, 127, 1, 0);
361 v4l2_ctrl_new_std(&vsen->hdl, &vimc_sen_ctrl_ops,
362 V4L2_CID_SATURATION, 0, 255, 1, 128);
363 vsen->sd.ctrl_handler = &vsen->hdl;
364 if (vsen->hdl.error) {
365 ret = vsen->hdl.error;
366 goto err_free_vsen;
367 }
368
369 /* Initialize ved and sd */
370 ret = vimc_ent_sd_register(&vsen->ved, &vsen->sd, v4l2_dev,
371 pdata->entity_name,
372 MEDIA_ENT_F_CAM_SENSOR, 1,
373 (const unsigned long[1]) {MEDIA_PAD_FL_SOURCE},
374 &vimc_sen_int_ops, &vimc_sen_ops);
375 if (ret)
376 goto err_free_hdl;
377
378 vsen->ved.process_frame = vimc_sen_process_frame;
379 dev_set_drvdata(comp, &vsen->ved);
380 vsen->dev = comp;
381
382 /* Initialize the frame format */
383 vsen->mbus_format = fmt_default;
384
385 /* Initialize the test pattern generator */
386 tpg_init(&vsen->tpg, vsen->mbus_format.width,
387 vsen->mbus_format.height);
388 ret = tpg_alloc(&vsen->tpg, VIMC_FRAME_MAX_WIDTH);
389 if (ret)
390 goto err_unregister_ent_sd;
391
392 return 0;
393
394err_unregister_ent_sd:
395 vimc_ent_sd_unregister(&vsen->ved, &vsen->sd);
396err_free_hdl:
397 v4l2_ctrl_handler_free(&vsen->hdl);
398err_free_vsen:
399 kfree(vsen);
400
401 return ret;
402}
403
404static const struct component_ops vimc_sen_comp_ops = {
405 .bind = vimc_sen_comp_bind,
406 .unbind = vimc_sen_comp_unbind,
407};
408
409static int vimc_sen_probe(struct platform_device *pdev)
410{
411 return component_add(&pdev->dev, &vimc_sen_comp_ops);
412}
413
414static int vimc_sen_remove(struct platform_device *pdev)
415{
416 component_del(&pdev->dev, &vimc_sen_comp_ops);
417
418 return 0;
419}
420
421static const struct platform_device_id vimc_sen_driver_ids[] = {
422 {
423 .name = VIMC_SEN_DRV_NAME,
424 },
425 { }
426};
427
428static struct platform_driver vimc_sen_pdrv = {
429 .probe = vimc_sen_probe,
430 .remove = vimc_sen_remove,
431 .id_table = vimc_sen_driver_ids,
432 .driver = {
433 .name = VIMC_SEN_DRV_NAME,
434 },
435};
436
437module_platform_driver(vimc_sen_pdrv);
438
439MODULE_DEVICE_TABLE(platform, vimc_sen_driver_ids);
440
441MODULE_DESCRIPTION("Virtual Media Controller Driver (VIMC) Sensor");
442MODULE_AUTHOR("Helen Mae Koike Fornazier <helen.fornazier@gmail.com>");
443MODULE_LICENSE("GPL");
1/*
2 * vimc-sensor.c Virtual Media Controller Driver
3 *
4 * Copyright (C) 2015-2017 Helen Koike <helen.fornazier@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 */
17
18#include <linux/component.h>
19#include <linux/freezer.h>
20#include <linux/kthread.h>
21#include <linux/module.h>
22#include <linux/platform_device.h>
23#include <linux/v4l2-mediabus.h>
24#include <linux/vmalloc.h>
25#include <media/v4l2-ctrls.h>
26#include <media/v4l2-event.h>
27#include <media/v4l2-subdev.h>
28#include <media/tpg/v4l2-tpg.h>
29
30#include "vimc-common.h"
31
32#define VIMC_SEN_DRV_NAME "vimc-sensor"
33
34struct vimc_sen_device {
35 struct vimc_ent_device ved;
36 struct v4l2_subdev sd;
37 struct device *dev;
38 struct tpg_data tpg;
39 struct task_struct *kthread_sen;
40 u8 *frame;
41 /* The active format */
42 struct v4l2_mbus_framefmt mbus_format;
43 struct v4l2_ctrl_handler hdl;
44};
45
46static const struct v4l2_mbus_framefmt fmt_default = {
47 .width = 640,
48 .height = 480,
49 .code = MEDIA_BUS_FMT_RGB888_1X24,
50 .field = V4L2_FIELD_NONE,
51 .colorspace = V4L2_COLORSPACE_DEFAULT,
52};
53
54static int vimc_sen_init_cfg(struct v4l2_subdev *sd,
55 struct v4l2_subdev_pad_config *cfg)
56{
57 unsigned int i;
58
59 for (i = 0; i < sd->entity.num_pads; i++) {
60 struct v4l2_mbus_framefmt *mf;
61
62 mf = v4l2_subdev_get_try_format(sd, cfg, i);
63 *mf = fmt_default;
64 }
65
66 return 0;
67}
68
69static int vimc_sen_enum_mbus_code(struct v4l2_subdev *sd,
70 struct v4l2_subdev_pad_config *cfg,
71 struct v4l2_subdev_mbus_code_enum *code)
72{
73 const struct vimc_pix_map *vpix = vimc_pix_map_by_index(code->index);
74
75 if (!vpix)
76 return -EINVAL;
77
78 code->code = vpix->code;
79
80 return 0;
81}
82
83static int vimc_sen_enum_frame_size(struct v4l2_subdev *sd,
84 struct v4l2_subdev_pad_config *cfg,
85 struct v4l2_subdev_frame_size_enum *fse)
86{
87 const struct vimc_pix_map *vpix;
88
89 if (fse->index)
90 return -EINVAL;
91
92 /* Only accept code in the pix map table */
93 vpix = vimc_pix_map_by_code(fse->code);
94 if (!vpix)
95 return -EINVAL;
96
97 fse->min_width = VIMC_FRAME_MIN_WIDTH;
98 fse->max_width = VIMC_FRAME_MAX_WIDTH;
99 fse->min_height = VIMC_FRAME_MIN_HEIGHT;
100 fse->max_height = VIMC_FRAME_MAX_HEIGHT;
101
102 return 0;
103}
104
105static int vimc_sen_get_fmt(struct v4l2_subdev *sd,
106 struct v4l2_subdev_pad_config *cfg,
107 struct v4l2_subdev_format *fmt)
108{
109 struct vimc_sen_device *vsen =
110 container_of(sd, struct vimc_sen_device, sd);
111
112 fmt->format = fmt->which == V4L2_SUBDEV_FORMAT_TRY ?
113 *v4l2_subdev_get_try_format(sd, cfg, fmt->pad) :
114 vsen->mbus_format;
115
116 return 0;
117}
118
119static void vimc_sen_tpg_s_format(struct vimc_sen_device *vsen)
120{
121 const struct vimc_pix_map *vpix =
122 vimc_pix_map_by_code(vsen->mbus_format.code);
123
124 tpg_reset_source(&vsen->tpg, vsen->mbus_format.width,
125 vsen->mbus_format.height, vsen->mbus_format.field);
126 tpg_s_bytesperline(&vsen->tpg, 0, vsen->mbus_format.width * vpix->bpp);
127 tpg_s_buf_height(&vsen->tpg, vsen->mbus_format.height);
128 tpg_s_fourcc(&vsen->tpg, vpix->pixelformat);
129 /* TODO: add support for V4L2_FIELD_ALTERNATE */
130 tpg_s_field(&vsen->tpg, vsen->mbus_format.field, false);
131 tpg_s_colorspace(&vsen->tpg, vsen->mbus_format.colorspace);
132 tpg_s_ycbcr_enc(&vsen->tpg, vsen->mbus_format.ycbcr_enc);
133 tpg_s_quantization(&vsen->tpg, vsen->mbus_format.quantization);
134 tpg_s_xfer_func(&vsen->tpg, vsen->mbus_format.xfer_func);
135}
136
137static void vimc_sen_adjust_fmt(struct v4l2_mbus_framefmt *fmt)
138{
139 const struct vimc_pix_map *vpix;
140
141 /* Only accept code in the pix map table */
142 vpix = vimc_pix_map_by_code(fmt->code);
143 if (!vpix)
144 fmt->code = fmt_default.code;
145
146 fmt->width = clamp_t(u32, fmt->width, VIMC_FRAME_MIN_WIDTH,
147 VIMC_FRAME_MAX_WIDTH) & ~1;
148 fmt->height = clamp_t(u32, fmt->height, VIMC_FRAME_MIN_HEIGHT,
149 VIMC_FRAME_MAX_HEIGHT) & ~1;
150
151 /* TODO: add support for V4L2_FIELD_ALTERNATE */
152 if (fmt->field == V4L2_FIELD_ANY || fmt->field == V4L2_FIELD_ALTERNATE)
153 fmt->field = fmt_default.field;
154
155 vimc_colorimetry_clamp(fmt);
156}
157
158static int vimc_sen_set_fmt(struct v4l2_subdev *sd,
159 struct v4l2_subdev_pad_config *cfg,
160 struct v4l2_subdev_format *fmt)
161{
162 struct vimc_sen_device *vsen = v4l2_get_subdevdata(sd);
163 struct v4l2_mbus_framefmt *mf;
164
165 if (fmt->which == V4L2_SUBDEV_FORMAT_ACTIVE) {
166 /* Do not change the format while stream is on */
167 if (vsen->frame)
168 return -EBUSY;
169
170 mf = &vsen->mbus_format;
171 } else {
172 mf = v4l2_subdev_get_try_format(sd, cfg, fmt->pad);
173 }
174
175 /* Set the new format */
176 vimc_sen_adjust_fmt(&fmt->format);
177
178 dev_dbg(vsen->dev, "%s: format update: "
179 "old:%dx%d (0x%x, %d, %d, %d, %d) "
180 "new:%dx%d (0x%x, %d, %d, %d, %d)\n", vsen->sd.name,
181 /* old */
182 mf->width, mf->height, mf->code,
183 mf->colorspace, mf->quantization,
184 mf->xfer_func, mf->ycbcr_enc,
185 /* new */
186 fmt->format.width, fmt->format.height, fmt->format.code,
187 fmt->format.colorspace, fmt->format.quantization,
188 fmt->format.xfer_func, fmt->format.ycbcr_enc);
189
190 *mf = fmt->format;
191
192 return 0;
193}
194
195static const struct v4l2_subdev_pad_ops vimc_sen_pad_ops = {
196 .init_cfg = vimc_sen_init_cfg,
197 .enum_mbus_code = vimc_sen_enum_mbus_code,
198 .enum_frame_size = vimc_sen_enum_frame_size,
199 .get_fmt = vimc_sen_get_fmt,
200 .set_fmt = vimc_sen_set_fmt,
201};
202
203static int vimc_sen_tpg_thread(void *data)
204{
205 struct vimc_sen_device *vsen = data;
206 unsigned int i;
207
208 set_freezable();
209 set_current_state(TASK_UNINTERRUPTIBLE);
210
211 for (;;) {
212 try_to_freeze();
213 if (kthread_should_stop())
214 break;
215
216 tpg_fill_plane_buffer(&vsen->tpg, 0, 0, vsen->frame);
217
218 /* Send the frame to all source pads */
219 for (i = 0; i < vsen->sd.entity.num_pads; i++)
220 vimc_propagate_frame(&vsen->sd.entity.pads[i],
221 vsen->frame);
222
223 /* 60 frames per second */
224 schedule_timeout(HZ/60);
225 }
226
227 return 0;
228}
229
230static int vimc_sen_s_stream(struct v4l2_subdev *sd, int enable)
231{
232 struct vimc_sen_device *vsen =
233 container_of(sd, struct vimc_sen_device, sd);
234 int ret;
235
236 if (enable) {
237 const struct vimc_pix_map *vpix;
238 unsigned int frame_size;
239
240 if (vsen->kthread_sen)
241 /* tpg is already executing */
242 return 0;
243
244 /* Calculate the frame size */
245 vpix = vimc_pix_map_by_code(vsen->mbus_format.code);
246 frame_size = vsen->mbus_format.width * vpix->bpp *
247 vsen->mbus_format.height;
248
249 /*
250 * Allocate the frame buffer. Use vmalloc to be able to
251 * allocate a large amount of memory
252 */
253 vsen->frame = vmalloc(frame_size);
254 if (!vsen->frame)
255 return -ENOMEM;
256
257 /* configure the test pattern generator */
258 vimc_sen_tpg_s_format(vsen);
259
260 /* Initialize the image generator thread */
261 vsen->kthread_sen = kthread_run(vimc_sen_tpg_thread, vsen,
262 "%s-sen", vsen->sd.v4l2_dev->name);
263 if (IS_ERR(vsen->kthread_sen)) {
264 dev_err(vsen->dev, "%s: kernel_thread() failed\n",
265 vsen->sd.name);
266 vfree(vsen->frame);
267 vsen->frame = NULL;
268 return PTR_ERR(vsen->kthread_sen);
269 }
270 } else {
271 if (!vsen->kthread_sen)
272 return 0;
273
274 /* Stop image generator */
275 ret = kthread_stop(vsen->kthread_sen);
276 if (ret)
277 return ret;
278
279 vsen->kthread_sen = NULL;
280 vfree(vsen->frame);
281 vsen->frame = NULL;
282 return 0;
283 }
284
285 return 0;
286}
287
288static struct v4l2_subdev_core_ops vimc_sen_core_ops = {
289 .log_status = v4l2_ctrl_subdev_log_status,
290 .subscribe_event = v4l2_ctrl_subdev_subscribe_event,
291 .unsubscribe_event = v4l2_event_subdev_unsubscribe,
292};
293
294static const struct v4l2_subdev_video_ops vimc_sen_video_ops = {
295 .s_stream = vimc_sen_s_stream,
296};
297
298static const struct v4l2_subdev_ops vimc_sen_ops = {
299 .core = &vimc_sen_core_ops,
300 .pad = &vimc_sen_pad_ops,
301 .video = &vimc_sen_video_ops,
302};
303
304static int vimc_sen_s_ctrl(struct v4l2_ctrl *ctrl)
305{
306 struct vimc_sen_device *vsen =
307 container_of(ctrl->handler, struct vimc_sen_device, hdl);
308
309 switch (ctrl->id) {
310 case VIMC_CID_TEST_PATTERN:
311 tpg_s_pattern(&vsen->tpg, ctrl->val);
312 break;
313 case V4L2_CID_HFLIP:
314 tpg_s_hflip(&vsen->tpg, ctrl->val);
315 break;
316 case V4L2_CID_VFLIP:
317 tpg_s_vflip(&vsen->tpg, ctrl->val);
318 break;
319 default:
320 return -EINVAL;
321 }
322 return 0;
323}
324
325static const struct v4l2_ctrl_ops vimc_sen_ctrl_ops = {
326 .s_ctrl = vimc_sen_s_ctrl,
327};
328
329static void vimc_sen_comp_unbind(struct device *comp, struct device *master,
330 void *master_data)
331{
332 struct vimc_ent_device *ved = dev_get_drvdata(comp);
333 struct vimc_sen_device *vsen =
334 container_of(ved, struct vimc_sen_device, ved);
335
336 vimc_ent_sd_unregister(ved, &vsen->sd);
337 v4l2_ctrl_handler_free(&vsen->hdl);
338 tpg_free(&vsen->tpg);
339 kfree(vsen);
340}
341
342/* Image Processing Controls */
343static const struct v4l2_ctrl_config vimc_sen_ctrl_class = {
344 .flags = V4L2_CTRL_FLAG_READ_ONLY | V4L2_CTRL_FLAG_WRITE_ONLY,
345 .id = VIMC_CID_VIMC_CLASS,
346 .name = "VIMC Controls",
347 .type = V4L2_CTRL_TYPE_CTRL_CLASS,
348};
349
350static const struct v4l2_ctrl_config vimc_sen_ctrl_test_pattern = {
351 .ops = &vimc_sen_ctrl_ops,
352 .id = VIMC_CID_TEST_PATTERN,
353 .name = "Test Pattern",
354 .type = V4L2_CTRL_TYPE_MENU,
355 .max = TPG_PAT_NOISE,
356 .qmenu = tpg_pattern_strings,
357};
358
359static int vimc_sen_comp_bind(struct device *comp, struct device *master,
360 void *master_data)
361{
362 struct v4l2_device *v4l2_dev = master_data;
363 struct vimc_platform_data *pdata = comp->platform_data;
364 struct vimc_sen_device *vsen;
365 int ret;
366
367 /* Allocate the vsen struct */
368 vsen = kzalloc(sizeof(*vsen), GFP_KERNEL);
369 if (!vsen)
370 return -ENOMEM;
371
372 v4l2_ctrl_handler_init(&vsen->hdl, 4);
373
374 v4l2_ctrl_new_custom(&vsen->hdl, &vimc_sen_ctrl_class, NULL);
375 v4l2_ctrl_new_custom(&vsen->hdl, &vimc_sen_ctrl_test_pattern, NULL);
376 v4l2_ctrl_new_std(&vsen->hdl, &vimc_sen_ctrl_ops,
377 V4L2_CID_VFLIP, 0, 1, 1, 0);
378 v4l2_ctrl_new_std(&vsen->hdl, &vimc_sen_ctrl_ops,
379 V4L2_CID_HFLIP, 0, 1, 1, 0);
380 vsen->sd.ctrl_handler = &vsen->hdl;
381 if (vsen->hdl.error) {
382 ret = vsen->hdl.error;
383 goto err_free_vsen;
384 }
385
386 /* Initialize ved and sd */
387 ret = vimc_ent_sd_register(&vsen->ved, &vsen->sd, v4l2_dev,
388 pdata->entity_name,
389 MEDIA_ENT_F_CAM_SENSOR, 1,
390 (const unsigned long[1]) {MEDIA_PAD_FL_SOURCE},
391 &vimc_sen_ops);
392 if (ret)
393 goto err_free_hdl;
394
395 dev_set_drvdata(comp, &vsen->ved);
396 vsen->dev = comp;
397
398 /* Initialize the frame format */
399 vsen->mbus_format = fmt_default;
400
401 /* Initialize the test pattern generator */
402 tpg_init(&vsen->tpg, vsen->mbus_format.width,
403 vsen->mbus_format.height);
404 ret = tpg_alloc(&vsen->tpg, VIMC_FRAME_MAX_WIDTH);
405 if (ret)
406 goto err_unregister_ent_sd;
407
408 return 0;
409
410err_unregister_ent_sd:
411 vimc_ent_sd_unregister(&vsen->ved, &vsen->sd);
412err_free_hdl:
413 v4l2_ctrl_handler_free(&vsen->hdl);
414err_free_vsen:
415 kfree(vsen);
416
417 return ret;
418}
419
420static const struct component_ops vimc_sen_comp_ops = {
421 .bind = vimc_sen_comp_bind,
422 .unbind = vimc_sen_comp_unbind,
423};
424
425static int vimc_sen_probe(struct platform_device *pdev)
426{
427 return component_add(&pdev->dev, &vimc_sen_comp_ops);
428}
429
430static int vimc_sen_remove(struct platform_device *pdev)
431{
432 component_del(&pdev->dev, &vimc_sen_comp_ops);
433
434 return 0;
435}
436
437static const struct platform_device_id vimc_sen_driver_ids[] = {
438 {
439 .name = VIMC_SEN_DRV_NAME,
440 },
441 { }
442};
443
444static struct platform_driver vimc_sen_pdrv = {
445 .probe = vimc_sen_probe,
446 .remove = vimc_sen_remove,
447 .id_table = vimc_sen_driver_ids,
448 .driver = {
449 .name = VIMC_SEN_DRV_NAME,
450 },
451};
452
453module_platform_driver(vimc_sen_pdrv);
454
455MODULE_DEVICE_TABLE(platform, vimc_sen_driver_ids);
456
457MODULE_DESCRIPTION("Virtual Media Controller Driver (VIMC) Sensor");
458MODULE_AUTHOR("Helen Mae Koike Fornazier <helen.fornazier@gmail.com>");
459MODULE_LICENSE("GPL");