1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (C) 2020 NVIDIA CORPORATION. All rights reserved.
4 */
5
6 #include <linux/clk.h>
7 #include <linux/clk/tegra.h>
8 #include <linux/device.h>
9 #include <linux/host1x.h>
10 #include <linux/module.h>
11 #include <linux/of.h>
12 #include <linux/of_graph.h>
13 #include <linux/of_device.h>
14 #include <linux/platform_device.h>
15 #include <linux/pm_runtime.h>
16
17 #include <media/v4l2-fwnode.h>
18
19 #include "csi.h"
20 #include "video.h"
21
22 #define MHZ 1000000
23
24 static inline struct tegra_csi *
host1x_client_to_csi(struct host1x_client * client)25 host1x_client_to_csi(struct host1x_client *client)
26 {
27 return container_of(client, struct tegra_csi, client);
28 }
29
to_csi_chan(struct v4l2_subdev * subdev)30 static inline struct tegra_csi_channel *to_csi_chan(struct v4l2_subdev *subdev)
31 {
32 return container_of(subdev, struct tegra_csi_channel, subdev);
33 }
34
35 /*
36 * CSI is a separate subdevice which has 6 source pads to generate
37 * test pattern. CSI subdevice pad ops are used only for TPG and
38 * allows below TPG formats.
39 */
40 static const struct v4l2_mbus_framefmt tegra_csi_tpg_fmts[] = {
41 {
42 TEGRA_DEF_WIDTH,
43 TEGRA_DEF_HEIGHT,
44 MEDIA_BUS_FMT_SRGGB10_1X10,
45 V4L2_FIELD_NONE,
46 V4L2_COLORSPACE_SRGB
47 },
48 {
49 TEGRA_DEF_WIDTH,
50 TEGRA_DEF_HEIGHT,
51 MEDIA_BUS_FMT_RGB888_1X32_PADHI,
52 V4L2_FIELD_NONE,
53 V4L2_COLORSPACE_SRGB
54 },
55 };
56
57 static const struct v4l2_frmsize_discrete tegra_csi_tpg_sizes[] = {
58 { 1280, 720 },
59 { 1920, 1080 },
60 { 3840, 2160 },
61 };
62
63 /*
64 * V4L2 Subdevice Pad Operations
65 */
csi_enum_bus_code(struct v4l2_subdev * subdev,struct v4l2_subdev_pad_config * cfg,struct v4l2_subdev_mbus_code_enum * code)66 static int csi_enum_bus_code(struct v4l2_subdev *subdev,
67 struct v4l2_subdev_pad_config *cfg,
68 struct v4l2_subdev_mbus_code_enum *code)
69 {
70 if (!IS_ENABLED(CONFIG_VIDEO_TEGRA_TPG))
71 return -ENOIOCTLCMD;
72
73 if (code->index >= ARRAY_SIZE(tegra_csi_tpg_fmts))
74 return -EINVAL;
75
76 code->code = tegra_csi_tpg_fmts[code->index].code;
77
78 return 0;
79 }
80
csi_get_format(struct v4l2_subdev * subdev,struct v4l2_subdev_pad_config * cfg,struct v4l2_subdev_format * fmt)81 static int csi_get_format(struct v4l2_subdev *subdev,
82 struct v4l2_subdev_pad_config *cfg,
83 struct v4l2_subdev_format *fmt)
84 {
85 struct tegra_csi_channel *csi_chan = to_csi_chan(subdev);
86
87 if (!IS_ENABLED(CONFIG_VIDEO_TEGRA_TPG))
88 return -ENOIOCTLCMD;
89
90 fmt->format = csi_chan->format;
91
92 return 0;
93 }
94
csi_get_frmrate_table_index(struct tegra_csi * csi,u32 code,u32 width,u32 height)95 static int csi_get_frmrate_table_index(struct tegra_csi *csi, u32 code,
96 u32 width, u32 height)
97 {
98 const struct tpg_framerate *frmrate;
99 unsigned int i;
100
101 frmrate = csi->soc->tpg_frmrate_table;
102 for (i = 0; i < csi->soc->tpg_frmrate_table_size; i++) {
103 if (frmrate[i].code == code &&
104 frmrate[i].frmsize.width == width &&
105 frmrate[i].frmsize.height == height) {
106 return i;
107 }
108 }
109
110 return -EINVAL;
111 }
112
csi_chan_update_blank_intervals(struct tegra_csi_channel * csi_chan,u32 code,u32 width,u32 height)113 static void csi_chan_update_blank_intervals(struct tegra_csi_channel *csi_chan,
114 u32 code, u32 width, u32 height)
115 {
116 struct tegra_csi *csi = csi_chan->csi;
117 const struct tpg_framerate *frmrate = csi->soc->tpg_frmrate_table;
118 int index;
119
120 index = csi_get_frmrate_table_index(csi_chan->csi, code,
121 width, height);
122 if (index >= 0) {
123 csi_chan->h_blank = frmrate[index].h_blank;
124 csi_chan->v_blank = frmrate[index].v_blank;
125 csi_chan->framerate = frmrate[index].framerate;
126 }
127 }
128
csi_enum_framesizes(struct v4l2_subdev * subdev,struct v4l2_subdev_pad_config * cfg,struct v4l2_subdev_frame_size_enum * fse)129 static int csi_enum_framesizes(struct v4l2_subdev *subdev,
130 struct v4l2_subdev_pad_config *cfg,
131 struct v4l2_subdev_frame_size_enum *fse)
132 {
133 unsigned int i;
134
135 if (!IS_ENABLED(CONFIG_VIDEO_TEGRA_TPG))
136 return -ENOIOCTLCMD;
137
138 if (fse->index >= ARRAY_SIZE(tegra_csi_tpg_sizes))
139 return -EINVAL;
140
141 for (i = 0; i < ARRAY_SIZE(tegra_csi_tpg_fmts); i++)
142 if (fse->code == tegra_csi_tpg_fmts[i].code)
143 break;
144
145 if (i == ARRAY_SIZE(tegra_csi_tpg_fmts))
146 return -EINVAL;
147
148 fse->min_width = tegra_csi_tpg_sizes[fse->index].width;
149 fse->max_width = tegra_csi_tpg_sizes[fse->index].width;
150 fse->min_height = tegra_csi_tpg_sizes[fse->index].height;
151 fse->max_height = tegra_csi_tpg_sizes[fse->index].height;
152
153 return 0;
154 }
155
csi_enum_frameintervals(struct v4l2_subdev * subdev,struct v4l2_subdev_pad_config * cfg,struct v4l2_subdev_frame_interval_enum * fie)156 static int csi_enum_frameintervals(struct v4l2_subdev *subdev,
157 struct v4l2_subdev_pad_config *cfg,
158 struct v4l2_subdev_frame_interval_enum *fie)
159 {
160 struct tegra_csi_channel *csi_chan = to_csi_chan(subdev);
161 struct tegra_csi *csi = csi_chan->csi;
162 const struct tpg_framerate *frmrate = csi->soc->tpg_frmrate_table;
163 int index;
164
165 if (!IS_ENABLED(CONFIG_VIDEO_TEGRA_TPG))
166 return -ENOIOCTLCMD;
167
168 /* one framerate per format and resolution */
169 if (fie->index > 0)
170 return -EINVAL;
171
172 index = csi_get_frmrate_table_index(csi_chan->csi, fie->code,
173 fie->width, fie->height);
174 if (index < 0)
175 return -EINVAL;
176
177 fie->interval.numerator = 1;
178 fie->interval.denominator = frmrate[index].framerate;
179
180 return 0;
181 }
182
csi_set_format(struct v4l2_subdev * subdev,struct v4l2_subdev_pad_config * cfg,struct v4l2_subdev_format * fmt)183 static int csi_set_format(struct v4l2_subdev *subdev,
184 struct v4l2_subdev_pad_config *cfg,
185 struct v4l2_subdev_format *fmt)
186 {
187 struct tegra_csi_channel *csi_chan = to_csi_chan(subdev);
188 struct v4l2_mbus_framefmt *format = &fmt->format;
189 const struct v4l2_frmsize_discrete *sizes;
190 unsigned int i;
191
192 if (!IS_ENABLED(CONFIG_VIDEO_TEGRA_TPG))
193 return -ENOIOCTLCMD;
194
195 sizes = v4l2_find_nearest_size(tegra_csi_tpg_sizes,
196 ARRAY_SIZE(tegra_csi_tpg_sizes),
197 width, height,
198 format->width, format->width);
199 format->width = sizes->width;
200 format->height = sizes->height;
201
202 for (i = 0; i < ARRAY_SIZE(tegra_csi_tpg_fmts); i++)
203 if (format->code == tegra_csi_tpg_fmts[i].code)
204 break;
205
206 if (i == ARRAY_SIZE(tegra_csi_tpg_fmts))
207 i = 0;
208
209 format->code = tegra_csi_tpg_fmts[i].code;
210 format->field = V4L2_FIELD_NONE;
211
212 if (fmt->which == V4L2_SUBDEV_FORMAT_TRY)
213 return 0;
214
215 /* update blanking intervals from frame rate table and format */
216 csi_chan_update_blank_intervals(csi_chan, format->code,
217 format->width, format->height);
218 csi_chan->format = *format;
219
220 return 0;
221 }
222
223 /*
224 * V4L2 Subdevice Video Operations
225 */
tegra_csi_g_frame_interval(struct v4l2_subdev * subdev,struct v4l2_subdev_frame_interval * vfi)226 static int tegra_csi_g_frame_interval(struct v4l2_subdev *subdev,
227 struct v4l2_subdev_frame_interval *vfi)
228 {
229 struct tegra_csi_channel *csi_chan = to_csi_chan(subdev);
230
231 if (!IS_ENABLED(CONFIG_VIDEO_TEGRA_TPG))
232 return -ENOIOCTLCMD;
233
234 vfi->interval.numerator = 1;
235 vfi->interval.denominator = csi_chan->framerate;
236
237 return 0;
238 }
239
csi_get_pixel_rate(struct tegra_csi_channel * csi_chan)240 static unsigned int csi_get_pixel_rate(struct tegra_csi_channel *csi_chan)
241 {
242 struct tegra_vi_channel *chan;
243 struct v4l2_subdev *src_subdev;
244 struct v4l2_ctrl *ctrl;
245
246 chan = v4l2_get_subdev_hostdata(&csi_chan->subdev);
247 src_subdev = tegra_channel_get_remote_source_subdev(chan);
248 ctrl = v4l2_ctrl_find(src_subdev->ctrl_handler, V4L2_CID_PIXEL_RATE);
249 if (ctrl)
250 return v4l2_ctrl_g_ctrl_int64(ctrl);
251
252 return 0;
253 }
254
tegra_csi_calc_settle_time(struct tegra_csi_channel * csi_chan,u8 * clk_settle_time,u8 * ths_settle_time)255 void tegra_csi_calc_settle_time(struct tegra_csi_channel *csi_chan,
256 u8 *clk_settle_time,
257 u8 *ths_settle_time)
258 {
259 struct tegra_csi *csi = csi_chan->csi;
260 unsigned int cil_clk_mhz;
261 unsigned int pix_clk_mhz;
262 int clk_idx = (csi_chan->csi_port_num >> 1) + 1;
263
264 cil_clk_mhz = clk_get_rate(csi->clks[clk_idx].clk) / MHZ;
265 pix_clk_mhz = csi_get_pixel_rate(csi_chan) / MHZ;
266
267 /*
268 * CLK Settle time is the interval during which HS receiver should
269 * ignore any clock lane HS transitions, starting from the beginning
270 * of T-CLK-PREPARE.
271 * Per DPHY specification, T-CLK-SETTLE should be between 95ns ~ 300ns
272 *
273 * 95ns < (clk-settle-programmed + 7) * lp clk period < 300ns
274 * midpoint = 197.5 ns
275 */
276 *clk_settle_time = ((95 + 300) * cil_clk_mhz - 14000) / 2000;
277
278 /*
279 * THS Settle time is the interval during which HS receiver should
280 * ignore any data lane HS transitions, starting from the beginning
281 * of THS-PREPARE.
282 *
283 * Per DPHY specification, T-HS-SETTLE should be between 85ns + 6UI
284 * and 145ns+10UI.
285 * 85ns + 6UI < (Ths-settle-prog + 5) * lp_clk_period < 145ns + 10UI
286 * midpoint = 115ns + 8UI
287 */
288 if (pix_clk_mhz)
289 *ths_settle_time = (115 * cil_clk_mhz + 8000 * cil_clk_mhz
290 / (2 * pix_clk_mhz) - 5000) / 1000;
291 }
292
tegra_csi_enable_stream(struct v4l2_subdev * subdev)293 static int tegra_csi_enable_stream(struct v4l2_subdev *subdev)
294 {
295 struct tegra_vi_channel *chan = v4l2_get_subdev_hostdata(subdev);
296 struct tegra_csi_channel *csi_chan = to_csi_chan(subdev);
297 struct tegra_csi *csi = csi_chan->csi;
298 int ret, err;
299
300 ret = pm_runtime_get_sync(csi->dev);
301 if (ret < 0) {
302 dev_err(csi->dev, "failed to get runtime PM: %d\n", ret);
303 pm_runtime_put_noidle(csi->dev);
304 return ret;
305 }
306
307 if (csi_chan->mipi) {
308 ret = tegra_mipi_enable(csi_chan->mipi);
309 if (ret < 0) {
310 dev_err(csi->dev,
311 "failed to enable MIPI pads: %d\n", ret);
312 goto rpm_put;
313 }
314
315 /*
316 * CSI MIPI pads PULLUP, PULLDN and TERM impedances need to
317 * be calibrated after power on.
318 * So, trigger the calibration start here and results will
319 * be latched and applied to the pads when link is in LP11
320 * state during start of sensor streaming.
321 */
322 ret = tegra_mipi_start_calibration(csi_chan->mipi);
323 if (ret < 0) {
324 dev_err(csi->dev,
325 "failed to start MIPI calibration: %d\n", ret);
326 goto disable_mipi;
327 }
328 }
329
330 csi_chan->pg_mode = chan->pg_mode;
331 ret = csi->ops->csi_start_streaming(csi_chan);
332 if (ret < 0)
333 goto finish_calibration;
334
335 return 0;
336
337 finish_calibration:
338 if (csi_chan->mipi)
339 tegra_mipi_finish_calibration(csi_chan->mipi);
340 disable_mipi:
341 if (csi_chan->mipi) {
342 err = tegra_mipi_disable(csi_chan->mipi);
343 if (err < 0)
344 dev_err(csi->dev,
345 "failed to disable MIPI pads: %d\n", err);
346 }
347
348 rpm_put:
349 pm_runtime_put(csi->dev);
350 return ret;
351 }
352
tegra_csi_disable_stream(struct v4l2_subdev * subdev)353 static int tegra_csi_disable_stream(struct v4l2_subdev *subdev)
354 {
355 struct tegra_csi_channel *csi_chan = to_csi_chan(subdev);
356 struct tegra_csi *csi = csi_chan->csi;
357 int err;
358
359 csi->ops->csi_stop_streaming(csi_chan);
360
361 if (csi_chan->mipi) {
362 err = tegra_mipi_disable(csi_chan->mipi);
363 if (err < 0)
364 dev_err(csi->dev,
365 "failed to disable MIPI pads: %d\n", err);
366 }
367
368 pm_runtime_put(csi->dev);
369
370 return 0;
371 }
372
tegra_csi_s_stream(struct v4l2_subdev * subdev,int enable)373 static int tegra_csi_s_stream(struct v4l2_subdev *subdev, int enable)
374 {
375 int ret;
376
377 if (enable)
378 ret = tegra_csi_enable_stream(subdev);
379 else
380 ret = tegra_csi_disable_stream(subdev);
381
382 return ret;
383 }
384
385 /*
386 * V4L2 Subdevice Operations
387 */
388 static const struct v4l2_subdev_video_ops tegra_csi_video_ops = {
389 .s_stream = tegra_csi_s_stream,
390 .g_frame_interval = tegra_csi_g_frame_interval,
391 .s_frame_interval = tegra_csi_g_frame_interval,
392 };
393
394 static const struct v4l2_subdev_pad_ops tegra_csi_pad_ops = {
395 .enum_mbus_code = csi_enum_bus_code,
396 .enum_frame_size = csi_enum_framesizes,
397 .enum_frame_interval = csi_enum_frameintervals,
398 .get_fmt = csi_get_format,
399 .set_fmt = csi_set_format,
400 };
401
402 static const struct v4l2_subdev_ops tegra_csi_ops = {
403 .video = &tegra_csi_video_ops,
404 .pad = &tegra_csi_pad_ops,
405 };
406
tegra_csi_channel_alloc(struct tegra_csi * csi,struct device_node * node,unsigned int port_num,unsigned int lanes,unsigned int num_pads)407 static int tegra_csi_channel_alloc(struct tegra_csi *csi,
408 struct device_node *node,
409 unsigned int port_num, unsigned int lanes,
410 unsigned int num_pads)
411 {
412 struct tegra_csi_channel *chan;
413 int ret = 0;
414
415 chan = kzalloc(sizeof(*chan), GFP_KERNEL);
416 if (!chan)
417 return -ENOMEM;
418
419 list_add_tail(&chan->list, &csi->csi_chans);
420 chan->csi = csi;
421 chan->csi_port_num = port_num;
422 chan->numlanes = lanes;
423 chan->of_node = of_node_get(node);
424 chan->numpads = num_pads;
425 if (num_pads & 0x2) {
426 chan->pads[0].flags = MEDIA_PAD_FL_SINK;
427 chan->pads[1].flags = MEDIA_PAD_FL_SOURCE;
428 } else {
429 chan->pads[0].flags = MEDIA_PAD_FL_SOURCE;
430 }
431
432 if (IS_ENABLED(CONFIG_VIDEO_TEGRA_TPG))
433 return 0;
434
435 chan->mipi = tegra_mipi_request(csi->dev, node);
436 if (IS_ERR(chan->mipi)) {
437 ret = PTR_ERR(chan->mipi);
438 chan->mipi = NULL;
439 dev_err(csi->dev, "failed to get mipi device: %d\n", ret);
440 }
441
442 return ret;
443 }
444
tegra_csi_tpg_channels_alloc(struct tegra_csi * csi)445 static int tegra_csi_tpg_channels_alloc(struct tegra_csi *csi)
446 {
447 struct device_node *node = csi->dev->of_node;
448 unsigned int port_num;
449 unsigned int tpg_channels = csi->soc->csi_max_channels;
450 int ret;
451
452 /* allocate CSI channel for each CSI x2 ports */
453 for (port_num = 0; port_num < tpg_channels; port_num++) {
454 ret = tegra_csi_channel_alloc(csi, node, port_num, 2, 1);
455 if (ret < 0)
456 return ret;
457 }
458
459 return 0;
460 }
461
tegra_csi_channels_alloc(struct tegra_csi * csi)462 static int tegra_csi_channels_alloc(struct tegra_csi *csi)
463 {
464 struct device_node *node = csi->dev->of_node;
465 struct v4l2_fwnode_endpoint v4l2_ep = {
466 .bus_type = V4L2_MBUS_CSI2_DPHY
467 };
468 struct fwnode_handle *fwh;
469 struct device_node *channel;
470 struct device_node *ep;
471 unsigned int lanes, portno, num_pads;
472 int ret;
473
474 for_each_child_of_node(node, channel) {
475 if (!of_node_name_eq(channel, "channel"))
476 continue;
477
478 ret = of_property_read_u32(channel, "reg", &portno);
479 if (ret < 0)
480 continue;
481
482 if (portno >= csi->soc->csi_max_channels) {
483 dev_err(csi->dev, "invalid port num %d for %pOF\n",
484 portno, channel);
485 ret = -EINVAL;
486 goto err_node_put;
487 }
488
489 ep = of_graph_get_endpoint_by_regs(channel, 0, 0);
490 if (!ep)
491 continue;
492
493 fwh = of_fwnode_handle(ep);
494 ret = v4l2_fwnode_endpoint_parse(fwh, &v4l2_ep);
495 of_node_put(ep);
496 if (ret) {
497 dev_err(csi->dev,
498 "failed to parse v4l2 endpoint for %pOF: %d\n",
499 channel, ret);
500 goto err_node_put;
501 }
502
503 lanes = v4l2_ep.bus.mipi_csi2.num_data_lanes;
504 if (!lanes || ((lanes & (lanes - 1)) != 0)) {
505 dev_err(csi->dev, "invalid data-lanes %d for %pOF\n",
506 lanes, channel);
507 ret = -EINVAL;
508 goto err_node_put;
509 }
510
511 num_pads = of_graph_get_endpoint_count(channel);
512 if (num_pads == TEGRA_CSI_PADS_NUM) {
513 ret = tegra_csi_channel_alloc(csi, channel, portno,
514 lanes, num_pads);
515 if (ret < 0)
516 goto err_node_put;
517 }
518 }
519
520 return 0;
521
522 err_node_put:
523 of_node_put(channel);
524 return ret;
525 }
526
tegra_csi_channel_init(struct tegra_csi_channel * chan)527 static int tegra_csi_channel_init(struct tegra_csi_channel *chan)
528 {
529 struct tegra_csi *csi = chan->csi;
530 struct v4l2_subdev *subdev;
531 int ret;
532
533 /* initialize the default format */
534 chan->format.code = MEDIA_BUS_FMT_SRGGB10_1X10;
535 chan->format.field = V4L2_FIELD_NONE;
536 chan->format.colorspace = V4L2_COLORSPACE_SRGB;
537 chan->format.width = TEGRA_DEF_WIDTH;
538 chan->format.height = TEGRA_DEF_HEIGHT;
539 csi_chan_update_blank_intervals(chan, chan->format.code,
540 chan->format.width,
541 chan->format.height);
542 /* initialize V4L2 subdevice and media entity */
543 subdev = &chan->subdev;
544 v4l2_subdev_init(subdev, &tegra_csi_ops);
545 subdev->dev = csi->dev;
546 if (IS_ENABLED(CONFIG_VIDEO_TEGRA_TPG))
547 snprintf(subdev->name, V4L2_SUBDEV_NAME_SIZE, "%s-%d", "tpg",
548 chan->csi_port_num);
549 else
550 snprintf(subdev->name, V4L2_SUBDEV_NAME_SIZE, "%s",
551 kbasename(chan->of_node->full_name));
552
553 v4l2_set_subdevdata(subdev, chan);
554 subdev->fwnode = of_fwnode_handle(chan->of_node);
555 subdev->entity.function = MEDIA_ENT_F_VID_IF_BRIDGE;
556
557 /* initialize media entity pads */
558 ret = media_entity_pads_init(&subdev->entity, chan->numpads,
559 chan->pads);
560 if (ret < 0) {
561 dev_err(csi->dev,
562 "failed to initialize media entity: %d\n", ret);
563 subdev->dev = NULL;
564 return ret;
565 }
566
567 if (!IS_ENABLED(CONFIG_VIDEO_TEGRA_TPG)) {
568 ret = v4l2_async_register_subdev(subdev);
569 if (ret < 0) {
570 dev_err(csi->dev,
571 "failed to register subdev: %d\n", ret);
572 return ret;
573 }
574 }
575
576 return 0;
577 }
578
tegra_csi_error_recover(struct v4l2_subdev * sd)579 void tegra_csi_error_recover(struct v4l2_subdev *sd)
580 {
581 struct tegra_csi_channel *csi_chan = to_csi_chan(sd);
582 struct tegra_csi *csi = csi_chan->csi;
583
584 /* stop streaming during error recovery */
585 csi->ops->csi_stop_streaming(csi_chan);
586 csi->ops->csi_err_recover(csi_chan);
587 csi->ops->csi_start_streaming(csi_chan);
588 }
589
tegra_csi_channels_init(struct tegra_csi * csi)590 static int tegra_csi_channels_init(struct tegra_csi *csi)
591 {
592 struct tegra_csi_channel *chan;
593 int ret;
594
595 list_for_each_entry(chan, &csi->csi_chans, list) {
596 ret = tegra_csi_channel_init(chan);
597 if (ret) {
598 dev_err(csi->dev,
599 "failed to initialize channel-%d: %d\n",
600 chan->csi_port_num, ret);
601 return ret;
602 }
603 }
604
605 return 0;
606 }
607
tegra_csi_channels_cleanup(struct tegra_csi * csi)608 static void tegra_csi_channels_cleanup(struct tegra_csi *csi)
609 {
610 struct v4l2_subdev *subdev;
611 struct tegra_csi_channel *chan, *tmp;
612
613 list_for_each_entry_safe(chan, tmp, &csi->csi_chans, list) {
614 if (chan->mipi)
615 tegra_mipi_free(chan->mipi);
616
617 subdev = &chan->subdev;
618 if (subdev->dev) {
619 if (!IS_ENABLED(CONFIG_VIDEO_TEGRA_TPG))
620 v4l2_async_unregister_subdev(subdev);
621 media_entity_cleanup(&subdev->entity);
622 }
623
624 of_node_put(chan->of_node);
625 list_del(&chan->list);
626 kfree(chan);
627 }
628 }
629
csi_runtime_suspend(struct device * dev)630 static int __maybe_unused csi_runtime_suspend(struct device *dev)
631 {
632 struct tegra_csi *csi = dev_get_drvdata(dev);
633
634 clk_bulk_disable_unprepare(csi->soc->num_clks, csi->clks);
635
636 return 0;
637 }
638
csi_runtime_resume(struct device * dev)639 static int __maybe_unused csi_runtime_resume(struct device *dev)
640 {
641 struct tegra_csi *csi = dev_get_drvdata(dev);
642 int ret;
643
644 ret = clk_bulk_prepare_enable(csi->soc->num_clks, csi->clks);
645 if (ret < 0) {
646 dev_err(csi->dev, "failed to enable clocks: %d\n", ret);
647 return ret;
648 }
649
650 return 0;
651 }
652
tegra_csi_init(struct host1x_client * client)653 static int tegra_csi_init(struct host1x_client *client)
654 {
655 struct tegra_csi *csi = host1x_client_to_csi(client);
656 struct tegra_video_device *vid = dev_get_drvdata(client->host);
657 int ret;
658
659 INIT_LIST_HEAD(&csi->csi_chans);
660
661 if (IS_ENABLED(CONFIG_VIDEO_TEGRA_TPG))
662 ret = tegra_csi_tpg_channels_alloc(csi);
663 else
664 ret = tegra_csi_channels_alloc(csi);
665 if (ret < 0) {
666 dev_err(csi->dev,
667 "failed to allocate channels: %d\n", ret);
668 goto cleanup;
669 }
670
671 ret = tegra_csi_channels_init(csi);
672 if (ret < 0)
673 goto cleanup;
674
675 vid->csi = csi;
676
677 return 0;
678
679 cleanup:
680 tegra_csi_channels_cleanup(csi);
681 return ret;
682 }
683
tegra_csi_exit(struct host1x_client * client)684 static int tegra_csi_exit(struct host1x_client *client)
685 {
686 struct tegra_csi *csi = host1x_client_to_csi(client);
687
688 tegra_csi_channels_cleanup(csi);
689
690 return 0;
691 }
692
693 static const struct host1x_client_ops csi_client_ops = {
694 .init = tegra_csi_init,
695 .exit = tegra_csi_exit,
696 };
697
tegra_csi_probe(struct platform_device * pdev)698 static int tegra_csi_probe(struct platform_device *pdev)
699 {
700 struct tegra_csi *csi;
701 unsigned int i;
702 int ret;
703
704 csi = devm_kzalloc(&pdev->dev, sizeof(*csi), GFP_KERNEL);
705 if (!csi)
706 return -ENOMEM;
707
708 csi->iomem = devm_platform_ioremap_resource(pdev, 0);
709 if (IS_ERR(csi->iomem))
710 return PTR_ERR(csi->iomem);
711
712 csi->soc = of_device_get_match_data(&pdev->dev);
713
714 csi->clks = devm_kcalloc(&pdev->dev, csi->soc->num_clks,
715 sizeof(*csi->clks), GFP_KERNEL);
716 if (!csi->clks)
717 return -ENOMEM;
718
719 for (i = 0; i < csi->soc->num_clks; i++)
720 csi->clks[i].id = csi->soc->clk_names[i];
721
722 ret = devm_clk_bulk_get(&pdev->dev, csi->soc->num_clks, csi->clks);
723 if (ret) {
724 dev_err(&pdev->dev, "failed to get the clocks: %d\n", ret);
725 return ret;
726 }
727
728 if (!pdev->dev.pm_domain) {
729 ret = -ENOENT;
730 dev_warn(&pdev->dev, "PM domain is not attached: %d\n", ret);
731 return ret;
732 }
733
734 csi->dev = &pdev->dev;
735 csi->ops = csi->soc->ops;
736 platform_set_drvdata(pdev, csi);
737 pm_runtime_enable(&pdev->dev);
738
739 /* initialize host1x interface */
740 INIT_LIST_HEAD(&csi->client.list);
741 csi->client.ops = &csi_client_ops;
742 csi->client.dev = &pdev->dev;
743
744 ret = host1x_client_register(&csi->client);
745 if (ret < 0) {
746 dev_err(&pdev->dev,
747 "failed to register host1x client: %d\n", ret);
748 goto rpm_disable;
749 }
750
751 return 0;
752
753 rpm_disable:
754 pm_runtime_disable(&pdev->dev);
755 return ret;
756 }
757
tegra_csi_remove(struct platform_device * pdev)758 static int tegra_csi_remove(struct platform_device *pdev)
759 {
760 struct tegra_csi *csi = platform_get_drvdata(pdev);
761 int err;
762
763 err = host1x_client_unregister(&csi->client);
764 if (err < 0) {
765 dev_err(&pdev->dev,
766 "failed to unregister host1x client: %d\n", err);
767 return err;
768 }
769
770 pm_runtime_disable(&pdev->dev);
771
772 return 0;
773 }
774
775 static const struct of_device_id tegra_csi_of_id_table[] = {
776 #if defined(CONFIG_ARCH_TEGRA_210_SOC)
777 { .compatible = "nvidia,tegra210-csi", .data = &tegra210_csi_soc },
778 #endif
779 { }
780 };
781 MODULE_DEVICE_TABLE(of, tegra_csi_of_id_table);
782
783 static const struct dev_pm_ops tegra_csi_pm_ops = {
784 SET_RUNTIME_PM_OPS(csi_runtime_suspend, csi_runtime_resume, NULL)
785 };
786
787 struct platform_driver tegra_csi_driver = {
788 .driver = {
789 .name = "tegra-csi",
790 .of_match_table = tegra_csi_of_id_table,
791 .pm = &tegra_csi_pm_ops,
792 },
793 .probe = tegra_csi_probe,
794 .remove = tegra_csi_remove,
795 };
796