1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * camss.c
4  *
5  * Qualcomm MSM Camera Subsystem - Core
6  *
7  * Copyright (c) 2015, The Linux Foundation. All rights reserved.
8  * Copyright (C) 2015-2018 Linaro Ltd.
9  */
10 #include <linux/clk.h>
11 #include <linux/media-bus-format.h>
12 #include <linux/media.h>
13 #include <linux/module.h>
14 #include <linux/platform_device.h>
15 #include <linux/of.h>
16 #include <linux/of_graph.h>
17 #include <linux/pm_runtime.h>
18 #include <linux/pm_domain.h>
19 #include <linux/slab.h>
20 #include <linux/videodev2.h>
21 
22 #include <media/media-device.h>
23 #include <media/v4l2-async.h>
24 #include <media/v4l2-device.h>
25 #include <media/v4l2-mc.h>
26 #include <media/v4l2-fwnode.h>
27 
28 #include "camss.h"
29 
30 #define CAMSS_CLOCK_MARGIN_NUMERATOR 105
31 #define CAMSS_CLOCK_MARGIN_DENOMINATOR 100
32 
33 static const struct resources csiphy_res_8x16[] = {
34 	/* CSIPHY0 */
35 	{
36 		.regulator = { NULL },
37 		.clock = { "top_ahb", "ispif_ahb", "ahb", "csiphy0_timer" },
38 		.clock_rate = { { 0 },
39 				{ 0 },
40 				{ 0 },
41 				{ 100000000, 200000000 } },
42 		.reg = { "csiphy0", "csiphy0_clk_mux" },
43 		.interrupt = { "csiphy0" }
44 	},
45 
46 	/* CSIPHY1 */
47 	{
48 		.regulator = { NULL },
49 		.clock = { "top_ahb", "ispif_ahb", "ahb", "csiphy1_timer" },
50 		.clock_rate = { { 0 },
51 				{ 0 },
52 				{ 0 },
53 				{ 100000000, 200000000 } },
54 		.reg = { "csiphy1", "csiphy1_clk_mux" },
55 		.interrupt = { "csiphy1" }
56 	}
57 };
58 
59 static const struct resources csid_res_8x16[] = {
60 	/* CSID0 */
61 	{
62 		.regulator = { "vdda" },
63 		.clock = { "top_ahb", "ispif_ahb", "csi0_ahb", "ahb",
64 			   "csi0", "csi0_phy", "csi0_pix", "csi0_rdi" },
65 		.clock_rate = { { 0 },
66 				{ 0 },
67 				{ 0 },
68 				{ 0 },
69 				{ 100000000, 200000000 },
70 				{ 0 },
71 				{ 0 },
72 				{ 0 } },
73 		.reg = { "csid0" },
74 		.interrupt = { "csid0" }
75 	},
76 
77 	/* CSID1 */
78 	{
79 		.regulator = { "vdda" },
80 		.clock = { "top_ahb", "ispif_ahb", "csi1_ahb", "ahb",
81 			   "csi1", "csi1_phy", "csi1_pix", "csi1_rdi" },
82 		.clock_rate = { { 0 },
83 				{ 0 },
84 				{ 0 },
85 				{ 0 },
86 				{ 100000000, 200000000 },
87 				{ 0 },
88 				{ 0 },
89 				{ 0 } },
90 		.reg = { "csid1" },
91 		.interrupt = { "csid1" }
92 	},
93 };
94 
95 static const struct resources_ispif ispif_res_8x16 = {
96 	/* ISPIF */
97 	.clock = { "top_ahb", "ahb", "ispif_ahb",
98 		   "csi0", "csi0_pix", "csi0_rdi",
99 		   "csi1", "csi1_pix", "csi1_rdi" },
100 	.clock_for_reset = { "vfe0", "csi_vfe0" },
101 	.reg = { "ispif", "csi_clk_mux" },
102 	.interrupt = "ispif"
103 
104 };
105 
106 static const struct resources vfe_res_8x16[] = {
107 	/* VFE0 */
108 	{
109 		.regulator = { NULL },
110 		.clock = { "top_ahb", "vfe0", "csi_vfe0",
111 			   "vfe_ahb", "vfe_axi", "ahb" },
112 		.clock_rate = { { 0 },
113 				{ 50000000, 80000000, 100000000, 160000000,
114 				  177780000, 200000000, 266670000, 320000000,
115 				  400000000, 465000000 },
116 				{ 0 },
117 				{ 0 },
118 				{ 0 },
119 				{ 0 },
120 				{ 0 },
121 				{ 0 },
122 				{ 0 } },
123 		.reg = { "vfe0" },
124 		.interrupt = { "vfe0" }
125 	}
126 };
127 
128 static const struct resources csiphy_res_8x96[] = {
129 	/* CSIPHY0 */
130 	{
131 		.regulator = { NULL },
132 		.clock = { "top_ahb", "ispif_ahb", "ahb", "csiphy0_timer" },
133 		.clock_rate = { { 0 },
134 				{ 0 },
135 				{ 0 },
136 				{ 100000000, 200000000, 266666667 } },
137 		.reg = { "csiphy0", "csiphy0_clk_mux" },
138 		.interrupt = { "csiphy0" }
139 	},
140 
141 	/* CSIPHY1 */
142 	{
143 		.regulator = { NULL },
144 		.clock = { "top_ahb", "ispif_ahb", "ahb", "csiphy1_timer" },
145 		.clock_rate = { { 0 },
146 				{ 0 },
147 				{ 0 },
148 				{ 100000000, 200000000, 266666667 } },
149 		.reg = { "csiphy1", "csiphy1_clk_mux" },
150 		.interrupt = { "csiphy1" }
151 	},
152 
153 	/* CSIPHY2 */
154 	{
155 		.regulator = { NULL },
156 		.clock = { "top_ahb", "ispif_ahb", "ahb", "csiphy2_timer" },
157 		.clock_rate = { { 0 },
158 				{ 0 },
159 				{ 0 },
160 				{ 100000000, 200000000, 266666667 } },
161 		.reg = { "csiphy2", "csiphy2_clk_mux" },
162 		.interrupt = { "csiphy2" }
163 	}
164 };
165 
166 static const struct resources csid_res_8x96[] = {
167 	/* CSID0 */
168 	{
169 		.regulator = { "vdda" },
170 		.clock = { "top_ahb", "ispif_ahb", "csi0_ahb", "ahb",
171 			   "csi0", "csi0_phy", "csi0_pix", "csi0_rdi" },
172 		.clock_rate = { { 0 },
173 				{ 0 },
174 				{ 0 },
175 				{ 0 },
176 				{ 100000000, 200000000, 266666667 },
177 				{ 0 },
178 				{ 0 },
179 				{ 0 } },
180 		.reg = { "csid0" },
181 		.interrupt = { "csid0" }
182 	},
183 
184 	/* CSID1 */
185 	{
186 		.regulator = { "vdda" },
187 		.clock = { "top_ahb", "ispif_ahb", "csi1_ahb", "ahb",
188 			   "csi1", "csi1_phy", "csi1_pix", "csi1_rdi" },
189 		.clock_rate = { { 0 },
190 				{ 0 },
191 				{ 0 },
192 				{ 0 },
193 				{ 100000000, 200000000, 266666667 },
194 				{ 0 },
195 				{ 0 },
196 				{ 0 } },
197 		.reg = { "csid1" },
198 		.interrupt = { "csid1" }
199 	},
200 
201 	/* CSID2 */
202 	{
203 		.regulator = { "vdda" },
204 		.clock = { "top_ahb", "ispif_ahb", "csi2_ahb", "ahb",
205 			   "csi2", "csi2_phy", "csi2_pix", "csi2_rdi" },
206 		.clock_rate = { { 0 },
207 				{ 0 },
208 				{ 0 },
209 				{ 0 },
210 				{ 100000000, 200000000, 266666667 },
211 				{ 0 },
212 				{ 0 },
213 				{ 0 } },
214 		.reg = { "csid2" },
215 		.interrupt = { "csid2" }
216 	},
217 
218 	/* CSID3 */
219 	{
220 		.regulator = { "vdda" },
221 		.clock = { "top_ahb", "ispif_ahb", "csi3_ahb", "ahb",
222 			   "csi3", "csi3_phy", "csi3_pix", "csi3_rdi" },
223 		.clock_rate = { { 0 },
224 				{ 0 },
225 				{ 0 },
226 				{ 0 },
227 				{ 100000000, 200000000, 266666667 },
228 				{ 0 },
229 				{ 0 },
230 				{ 0 } },
231 		.reg = { "csid3" },
232 		.interrupt = { "csid3" }
233 	}
234 };
235 
236 static const struct resources_ispif ispif_res_8x96 = {
237 	/* ISPIF */
238 	.clock = { "top_ahb", "ahb", "ispif_ahb",
239 		   "csi0", "csi0_pix", "csi0_rdi",
240 		   "csi1", "csi1_pix", "csi1_rdi",
241 		   "csi2", "csi2_pix", "csi2_rdi",
242 		   "csi3", "csi3_pix", "csi3_rdi" },
243 	.clock_for_reset = { "vfe0", "csi_vfe0", "vfe1", "csi_vfe1" },
244 	.reg = { "ispif", "csi_clk_mux" },
245 	.interrupt = "ispif"
246 };
247 
248 static const struct resources vfe_res_8x96[] = {
249 	/* VFE0 */
250 	{
251 		.regulator = { NULL },
252 		.clock = { "top_ahb", "ahb", "vfe0", "csi_vfe0", "vfe_ahb",
253 			   "vfe0_ahb", "vfe_axi", "vfe0_stream"},
254 		.clock_rate = { { 0 },
255 				{ 0 },
256 				{ 75000000, 100000000, 300000000,
257 				  320000000, 480000000, 600000000 },
258 				{ 0 },
259 				{ 0 },
260 				{ 0 },
261 				{ 0 },
262 				{ 0 } },
263 		.reg = { "vfe0" },
264 		.interrupt = { "vfe0" }
265 	},
266 
267 	/* VFE1 */
268 	{
269 		.regulator = { NULL },
270 		.clock = { "top_ahb", "ahb", "vfe1", "csi_vfe1", "vfe_ahb",
271 			   "vfe1_ahb", "vfe_axi", "vfe1_stream"},
272 		.clock_rate = { { 0 },
273 				{ 0 },
274 				{ 75000000, 100000000, 300000000,
275 				  320000000, 480000000, 600000000 },
276 				{ 0 },
277 				{ 0 },
278 				{ 0 },
279 				{ 0 },
280 				{ 0 } },
281 		.reg = { "vfe1" },
282 		.interrupt = { "vfe1" }
283 	}
284 };
285 
286 static const struct resources csiphy_res_660[] = {
287 	/* CSIPHY0 */
288 	{
289 		.regulator = { NULL },
290 		.clock = { "top_ahb", "ispif_ahb", "ahb", "csiphy0_timer",
291 			   "csi0_phy", "csiphy_ahb2crif" },
292 		.clock_rate = { { 0 },
293 				{ 0 },
294 				{ 0 },
295 				{ 100000000, 200000000, 269333333 },
296 				{ 0 } },
297 		.reg = { "csiphy0", "csiphy0_clk_mux" },
298 		.interrupt = { "csiphy0" }
299 	},
300 
301 	/* CSIPHY1 */
302 	{
303 		.regulator = { NULL },
304 		.clock = { "top_ahb", "ispif_ahb", "ahb", "csiphy1_timer",
305 			   "csi1_phy", "csiphy_ahb2crif" },
306 		.clock_rate = { { 0 },
307 				{ 0 },
308 				{ 0 },
309 				{ 100000000, 200000000, 269333333 },
310 				{ 0 } },
311 		.reg = { "csiphy1", "csiphy1_clk_mux" },
312 		.interrupt = { "csiphy1" }
313 	},
314 
315 	/* CSIPHY2 */
316 	{
317 		.regulator = { NULL },
318 		.clock = { "top_ahb", "ispif_ahb", "ahb", "csiphy2_timer",
319 			   "csi2_phy", "csiphy_ahb2crif" },
320 		.clock_rate = { { 0 },
321 				{ 0 },
322 				{ 0 },
323 				{ 100000000, 200000000, 269333333 },
324 				{ 0 } },
325 		.reg = { "csiphy2", "csiphy2_clk_mux" },
326 		.interrupt = { "csiphy2" }
327 	}
328 };
329 
330 static const struct resources csid_res_660[] = {
331 	/* CSID0 */
332 	{
333 		.regulator = { "vdda", "vdd_sec" },
334 		.clock = { "top_ahb", "ispif_ahb", "csi0_ahb", "ahb",
335 			   "csi0", "csi0_phy", "csi0_pix", "csi0_rdi",
336 			   "cphy_csid0" },
337 		.clock_rate = { { 0 },
338 				{ 0 },
339 				{ 0 },
340 				{ 0 },
341 				{ 100000000, 200000000, 310000000,
342 				  404000000, 465000000 },
343 				{ 0 },
344 				{ 0 },
345 				{ 0 },
346 				{ 0 } },
347 		.reg = { "csid0" },
348 		.interrupt = { "csid0" }
349 	},
350 
351 	/* CSID1 */
352 	{
353 		.regulator = { "vdda", "vdd_sec" },
354 		.clock = { "top_ahb", "ispif_ahb", "csi1_ahb", "ahb",
355 			   "csi1", "csi1_phy", "csi1_pix", "csi1_rdi",
356 			   "cphy_csid1" },
357 		.clock_rate = { { 0 },
358 				{ 0 },
359 				{ 0 },
360 				{ 0 },
361 				{ 100000000, 200000000, 310000000,
362 				  404000000, 465000000 },
363 				{ 0 },
364 				{ 0 },
365 				{ 0 },
366 				{ 0 } },
367 		.reg = { "csid1" },
368 		.interrupt = { "csid1" }
369 	},
370 
371 	/* CSID2 */
372 	{
373 		.regulator = { "vdda", "vdd_sec" },
374 		.clock = { "top_ahb", "ispif_ahb", "csi2_ahb", "ahb",
375 			   "csi2", "csi2_phy", "csi2_pix", "csi2_rdi",
376 			   "cphy_csid2" },
377 		.clock_rate = { { 0 },
378 				{ 0 },
379 				{ 0 },
380 				{ 0 },
381 				{ 100000000, 200000000, 310000000,
382 				  404000000, 465000000 },
383 				{ 0 },
384 				{ 0 },
385 				{ 0 },
386 				{ 0 } },
387 		.reg = { "csid2" },
388 		.interrupt = { "csid2" }
389 	},
390 
391 	/* CSID3 */
392 	{
393 		.regulator = { "vdda", "vdd_sec" },
394 		.clock = { "top_ahb", "ispif_ahb", "csi3_ahb", "ahb",
395 			   "csi3", "csi3_phy", "csi3_pix", "csi3_rdi",
396 			   "cphy_csid3" },
397 		.clock_rate = { { 0 },
398 				{ 0 },
399 				{ 0 },
400 				{ 0 },
401 				{ 100000000, 200000000, 310000000,
402 				  404000000, 465000000 },
403 				{ 0 },
404 				{ 0 },
405 				{ 0 },
406 				{ 0 } },
407 		.reg = { "csid3" },
408 		.interrupt = { "csid3" }
409 	}
410 };
411 
412 static const struct resources_ispif ispif_res_660 = {
413 	/* ISPIF */
414 	.clock = { "top_ahb", "ahb", "ispif_ahb",
415 		   "csi0", "csi0_pix", "csi0_rdi",
416 		   "csi1", "csi1_pix", "csi1_rdi",
417 		   "csi2", "csi2_pix", "csi2_rdi",
418 		   "csi3", "csi3_pix", "csi3_rdi" },
419 	.clock_for_reset = { "vfe0", "csi_vfe0", "vfe1", "csi_vfe1" },
420 	.reg = { "ispif", "csi_clk_mux" },
421 	.interrupt = "ispif"
422 };
423 
424 static const struct resources vfe_res_660[] = {
425 	/* VFE0 */
426 	{
427 		.regulator = { NULL },
428 		.clock = { "throttle_axi", "top_ahb", "ahb", "vfe0",
429 			   "csi_vfe0", "vfe_ahb", "vfe0_ahb", "vfe_axi",
430 			   "vfe0_stream"},
431 		.clock_rate = { { 0 },
432 				{ 0 },
433 				{ 0 },
434 				{ 120000000, 200000000, 256000000,
435 				  300000000, 404000000, 480000000,
436 				  540000000, 576000000 },
437 				{ 0 },
438 				{ 0 },
439 				{ 0 },
440 				{ 0 },
441 				{ 0 } },
442 		.reg = { "vfe0" },
443 		.interrupt = { "vfe0" }
444 	},
445 
446 	/* VFE1 */
447 	{
448 		.regulator = { NULL },
449 		.clock = { "throttle_axi", "top_ahb", "ahb", "vfe1",
450 			   "csi_vfe1", "vfe_ahb", "vfe1_ahb", "vfe_axi",
451 			   "vfe1_stream"},
452 		.clock_rate = { { 0 },
453 				{ 0 },
454 				{ 0 },
455 				{ 120000000, 200000000, 256000000,
456 				  300000000, 404000000, 480000000,
457 				  540000000, 576000000 },
458 				{ 0 },
459 				{ 0 },
460 				{ 0 },
461 				{ 0 },
462 				{ 0 } },
463 		.reg = { "vfe1" },
464 		.interrupt = { "vfe1" }
465 	}
466 };
467 
468 /*
469  * camss_add_clock_margin - Add margin to clock frequency rate
470  * @rate: Clock frequency rate
471  *
472  * When making calculations with physical clock frequency values
473  * some safety margin must be added. Add it.
474  */
475 inline void camss_add_clock_margin(u64 *rate)
476 {
477 	*rate *= CAMSS_CLOCK_MARGIN_NUMERATOR;
478 	*rate = div_u64(*rate, CAMSS_CLOCK_MARGIN_DENOMINATOR);
479 }
480 
481 /*
482  * camss_enable_clocks - Enable multiple clocks
483  * @nclocks: Number of clocks in clock array
484  * @clock: Clock array
485  * @dev: Device
486  *
487  * Return 0 on success or a negative error code otherwise
488  */
489 int camss_enable_clocks(int nclocks, struct camss_clock *clock,
490 			struct device *dev)
491 {
492 	int ret;
493 	int i;
494 
495 	for (i = 0; i < nclocks; i++) {
496 		ret = clk_prepare_enable(clock[i].clk);
497 		if (ret) {
498 			dev_err(dev, "clock enable failed: %d\n", ret);
499 			goto error;
500 		}
501 	}
502 
503 	return 0;
504 
505 error:
506 	for (i--; i >= 0; i--)
507 		clk_disable_unprepare(clock[i].clk);
508 
509 	return ret;
510 }
511 
512 /*
513  * camss_disable_clocks - Disable multiple clocks
514  * @nclocks: Number of clocks in clock array
515  * @clock: Clock array
516  */
517 void camss_disable_clocks(int nclocks, struct camss_clock *clock)
518 {
519 	int i;
520 
521 	for (i = nclocks - 1; i >= 0; i--)
522 		clk_disable_unprepare(clock[i].clk);
523 }
524 
525 /*
526  * camss_find_sensor - Find a linked media entity which represents a sensor
527  * @entity: Media entity to start searching from
528  *
529  * Return a pointer to sensor media entity or NULL if not found
530  */
531 struct media_entity *camss_find_sensor(struct media_entity *entity)
532 {
533 	struct media_pad *pad;
534 
535 	while (1) {
536 		pad = &entity->pads[0];
537 		if (!(pad->flags & MEDIA_PAD_FL_SINK))
538 			return NULL;
539 
540 		pad = media_entity_remote_pad(pad);
541 		if (!pad || !is_media_entity_v4l2_subdev(pad->entity))
542 			return NULL;
543 
544 		entity = pad->entity;
545 
546 		if (entity->function == MEDIA_ENT_F_CAM_SENSOR)
547 			return entity;
548 	}
549 }
550 
551 /*
552  * camss_get_pixel_clock - Get pixel clock rate from sensor
553  * @entity: Media entity in the current pipeline
554  * @pixel_clock: Received pixel clock value
555  *
556  * Return 0 on success or a negative error code otherwise
557  */
558 int camss_get_pixel_clock(struct media_entity *entity, u32 *pixel_clock)
559 {
560 	struct media_entity *sensor;
561 	struct v4l2_subdev *subdev;
562 	struct v4l2_ctrl *ctrl;
563 
564 	sensor = camss_find_sensor(entity);
565 	if (!sensor)
566 		return -ENODEV;
567 
568 	subdev = media_entity_to_v4l2_subdev(sensor);
569 
570 	ctrl = v4l2_ctrl_find(subdev->ctrl_handler, V4L2_CID_PIXEL_RATE);
571 
572 	if (!ctrl)
573 		return -EINVAL;
574 
575 	*pixel_clock = v4l2_ctrl_g_ctrl_int64(ctrl);
576 
577 	return 0;
578 }
579 
580 int camss_pm_domain_on(struct camss *camss, int id)
581 {
582 	if (camss->version == CAMSS_8x96 ||
583 	    camss->version == CAMSS_660) {
584 		camss->genpd_link[id] = device_link_add(camss->dev,
585 				camss->genpd[id], DL_FLAG_STATELESS |
586 				DL_FLAG_PM_RUNTIME | DL_FLAG_RPM_ACTIVE);
587 
588 		if (!camss->genpd_link[id])
589 			return -EINVAL;
590 	}
591 
592 	return 0;
593 }
594 
595 void camss_pm_domain_off(struct camss *camss, int id)
596 {
597 	if (camss->version == CAMSS_8x96 ||
598 	    camss->version == CAMSS_660)
599 		device_link_del(camss->genpd_link[id]);
600 }
601 
602 /*
603  * camss_of_parse_endpoint_node - Parse port endpoint node
604  * @dev: Device
605  * @node: Device node to be parsed
606  * @csd: Parsed data from port endpoint node
607  *
608  * Return 0 on success or a negative error code on failure
609  */
610 static int camss_of_parse_endpoint_node(struct device *dev,
611 					struct device_node *node,
612 					struct camss_async_subdev *csd)
613 {
614 	struct csiphy_lanes_cfg *lncfg = &csd->interface.csi2.lane_cfg;
615 	struct v4l2_fwnode_bus_mipi_csi2 *mipi_csi2;
616 	struct v4l2_fwnode_endpoint vep = { { 0 } };
617 	unsigned int i;
618 
619 	v4l2_fwnode_endpoint_parse(of_fwnode_handle(node), &vep);
620 
621 	csd->interface.csiphy_id = vep.base.port;
622 
623 	mipi_csi2 = &vep.bus.mipi_csi2;
624 	lncfg->clk.pos = mipi_csi2->clock_lane;
625 	lncfg->clk.pol = mipi_csi2->lane_polarities[0];
626 	lncfg->num_data = mipi_csi2->num_data_lanes;
627 
628 	lncfg->data = devm_kcalloc(dev,
629 				   lncfg->num_data, sizeof(*lncfg->data),
630 				   GFP_KERNEL);
631 	if (!lncfg->data)
632 		return -ENOMEM;
633 
634 	for (i = 0; i < lncfg->num_data; i++) {
635 		lncfg->data[i].pos = mipi_csi2->data_lanes[i];
636 		lncfg->data[i].pol = mipi_csi2->lane_polarities[i + 1];
637 	}
638 
639 	return 0;
640 }
641 
642 /*
643  * camss_of_parse_ports - Parse ports node
644  * @dev: Device
645  * @notifier: v4l2_device notifier data
646  *
647  * Return number of "port" nodes found in "ports" node
648  */
649 static int camss_of_parse_ports(struct camss *camss)
650 {
651 	struct device *dev = camss->dev;
652 	struct device_node *node = NULL;
653 	struct device_node *remote = NULL;
654 	int ret, num_subdevs = 0;
655 
656 	for_each_endpoint_of_node(dev->of_node, node) {
657 		struct camss_async_subdev *csd;
658 
659 		if (!of_device_is_available(node))
660 			continue;
661 
662 		remote = of_graph_get_remote_port_parent(node);
663 		if (!remote) {
664 			dev_err(dev, "Cannot get remote parent\n");
665 			ret = -EINVAL;
666 			goto err_cleanup;
667 		}
668 
669 		csd = v4l2_async_notifier_add_fwnode_subdev(
670 			&camss->notifier, of_fwnode_handle(remote),
671 			struct camss_async_subdev);
672 		of_node_put(remote);
673 		if (IS_ERR(csd)) {
674 			ret = PTR_ERR(csd);
675 			goto err_cleanup;
676 		}
677 
678 		ret = camss_of_parse_endpoint_node(dev, node, csd);
679 		if (ret < 0)
680 			goto err_cleanup;
681 
682 		num_subdevs++;
683 	}
684 
685 	return num_subdevs;
686 
687 err_cleanup:
688 	of_node_put(node);
689 	return ret;
690 }
691 
692 /*
693  * camss_init_subdevices - Initialize subdev structures and resources
694  * @camss: CAMSS device
695  *
696  * Return 0 on success or a negative error code on failure
697  */
698 static int camss_init_subdevices(struct camss *camss)
699 {
700 	const struct resources *csiphy_res;
701 	const struct resources *csid_res;
702 	const struct resources_ispif *ispif_res;
703 	const struct resources *vfe_res;
704 	unsigned int i;
705 	int ret;
706 
707 	if (camss->version == CAMSS_8x16) {
708 		csiphy_res = csiphy_res_8x16;
709 		csid_res = csid_res_8x16;
710 		ispif_res = &ispif_res_8x16;
711 		vfe_res = vfe_res_8x16;
712 	} else if (camss->version == CAMSS_8x96) {
713 		csiphy_res = csiphy_res_8x96;
714 		csid_res = csid_res_8x96;
715 		ispif_res = &ispif_res_8x96;
716 		vfe_res = vfe_res_8x96;
717 	} else if (camss->version == CAMSS_660) {
718 		csiphy_res = csiphy_res_660;
719 		csid_res = csid_res_660;
720 		ispif_res = &ispif_res_660;
721 		vfe_res = vfe_res_660;
722 	} else {
723 		return -EINVAL;
724 	}
725 
726 	for (i = 0; i < camss->csiphy_num; i++) {
727 		ret = msm_csiphy_subdev_init(camss, &camss->csiphy[i],
728 					     &csiphy_res[i], i);
729 		if (ret < 0) {
730 			dev_err(camss->dev,
731 				"Failed to init csiphy%d sub-device: %d\n",
732 				i, ret);
733 			return ret;
734 		}
735 	}
736 
737 	for (i = 0; i < camss->csid_num; i++) {
738 		ret = msm_csid_subdev_init(camss, &camss->csid[i],
739 					   &csid_res[i], i);
740 		if (ret < 0) {
741 			dev_err(camss->dev,
742 				"Failed to init csid%d sub-device: %d\n",
743 				i, ret);
744 			return ret;
745 		}
746 	}
747 
748 	ret = msm_ispif_subdev_init(&camss->ispif, ispif_res);
749 	if (ret < 0) {
750 		dev_err(camss->dev, "Failed to init ispif sub-device: %d\n",
751 			ret);
752 		return ret;
753 	}
754 
755 	for (i = 0; i < camss->vfe_num; i++) {
756 		ret = msm_vfe_subdev_init(camss, &camss->vfe[i],
757 					  &vfe_res[i], i);
758 		if (ret < 0) {
759 			dev_err(camss->dev,
760 				"Fail to init vfe%d sub-device: %d\n", i, ret);
761 			return ret;
762 		}
763 	}
764 
765 	return 0;
766 }
767 
768 /*
769  * camss_register_entities - Register subdev nodes and create links
770  * @camss: CAMSS device
771  *
772  * Return 0 on success or a negative error code on failure
773  */
774 static int camss_register_entities(struct camss *camss)
775 {
776 	int i, j, k;
777 	int ret;
778 
779 	for (i = 0; i < camss->csiphy_num; i++) {
780 		ret = msm_csiphy_register_entity(&camss->csiphy[i],
781 						 &camss->v4l2_dev);
782 		if (ret < 0) {
783 			dev_err(camss->dev,
784 				"Failed to register csiphy%d entity: %d\n",
785 				i, ret);
786 			goto err_reg_csiphy;
787 		}
788 	}
789 
790 	for (i = 0; i < camss->csid_num; i++) {
791 		ret = msm_csid_register_entity(&camss->csid[i],
792 					       &camss->v4l2_dev);
793 		if (ret < 0) {
794 			dev_err(camss->dev,
795 				"Failed to register csid%d entity: %d\n",
796 				i, ret);
797 			goto err_reg_csid;
798 		}
799 	}
800 
801 	ret = msm_ispif_register_entities(&camss->ispif, &camss->v4l2_dev);
802 	if (ret < 0) {
803 		dev_err(camss->dev, "Failed to register ispif entities: %d\n",
804 			ret);
805 		goto err_reg_ispif;
806 	}
807 
808 	for (i = 0; i < camss->vfe_num; i++) {
809 		ret = msm_vfe_register_entities(&camss->vfe[i],
810 						&camss->v4l2_dev);
811 		if (ret < 0) {
812 			dev_err(camss->dev,
813 				"Failed to register vfe%d entities: %d\n",
814 				i, ret);
815 			goto err_reg_vfe;
816 		}
817 	}
818 
819 	for (i = 0; i < camss->csiphy_num; i++) {
820 		for (j = 0; j < camss->csid_num; j++) {
821 			ret = media_create_pad_link(
822 				&camss->csiphy[i].subdev.entity,
823 				MSM_CSIPHY_PAD_SRC,
824 				&camss->csid[j].subdev.entity,
825 				MSM_CSID_PAD_SINK,
826 				0);
827 			if (ret < 0) {
828 				dev_err(camss->dev,
829 					"Failed to link %s->%s entities: %d\n",
830 					camss->csiphy[i].subdev.entity.name,
831 					camss->csid[j].subdev.entity.name,
832 					ret);
833 				goto err_link;
834 			}
835 		}
836 	}
837 
838 	for (i = 0; i < camss->csid_num; i++) {
839 		for (j = 0; j < camss->ispif.line_num; j++) {
840 			ret = media_create_pad_link(
841 				&camss->csid[i].subdev.entity,
842 				MSM_CSID_PAD_SRC,
843 				&camss->ispif.line[j].subdev.entity,
844 				MSM_ISPIF_PAD_SINK,
845 				0);
846 			if (ret < 0) {
847 				dev_err(camss->dev,
848 					"Failed to link %s->%s entities: %d\n",
849 					camss->csid[i].subdev.entity.name,
850 					camss->ispif.line[j].subdev.entity.name,
851 					ret);
852 				goto err_link;
853 			}
854 		}
855 	}
856 
857 	for (i = 0; i < camss->ispif.line_num; i++)
858 		for (k = 0; k < camss->vfe_num; k++)
859 			for (j = 0; j < ARRAY_SIZE(camss->vfe[k].line); j++) {
860 				ret = media_create_pad_link(
861 					&camss->ispif.line[i].subdev.entity,
862 					MSM_ISPIF_PAD_SRC,
863 					&camss->vfe[k].line[j].subdev.entity,
864 					MSM_VFE_PAD_SINK,
865 					0);
866 				if (ret < 0) {
867 					dev_err(camss->dev,
868 						"Failed to link %s->%s entities: %d\n",
869 						camss->ispif.line[i].subdev.entity.name,
870 						camss->vfe[k].line[j].subdev.entity.name,
871 						ret);
872 					goto err_link;
873 				}
874 			}
875 
876 	return 0;
877 
878 err_link:
879 	i = camss->vfe_num;
880 err_reg_vfe:
881 	for (i--; i >= 0; i--)
882 		msm_vfe_unregister_entities(&camss->vfe[i]);
883 
884 	msm_ispif_unregister_entities(&camss->ispif);
885 err_reg_ispif:
886 
887 	i = camss->csid_num;
888 err_reg_csid:
889 	for (i--; i >= 0; i--)
890 		msm_csid_unregister_entity(&camss->csid[i]);
891 
892 	i = camss->csiphy_num;
893 err_reg_csiphy:
894 	for (i--; i >= 0; i--)
895 		msm_csiphy_unregister_entity(&camss->csiphy[i]);
896 
897 	return ret;
898 }
899 
900 /*
901  * camss_unregister_entities - Unregister subdev nodes
902  * @camss: CAMSS device
903  *
904  * Return 0 on success or a negative error code on failure
905  */
906 static void camss_unregister_entities(struct camss *camss)
907 {
908 	unsigned int i;
909 
910 	for (i = 0; i < camss->csiphy_num; i++)
911 		msm_csiphy_unregister_entity(&camss->csiphy[i]);
912 
913 	for (i = 0; i < camss->csid_num; i++)
914 		msm_csid_unregister_entity(&camss->csid[i]);
915 
916 	msm_ispif_unregister_entities(&camss->ispif);
917 
918 	for (i = 0; i < camss->vfe_num; i++)
919 		msm_vfe_unregister_entities(&camss->vfe[i]);
920 }
921 
922 static int camss_subdev_notifier_bound(struct v4l2_async_notifier *async,
923 				       struct v4l2_subdev *subdev,
924 				       struct v4l2_async_subdev *asd)
925 {
926 	struct camss *camss = container_of(async, struct camss, notifier);
927 	struct camss_async_subdev *csd =
928 		container_of(asd, struct camss_async_subdev, asd);
929 	u8 id = csd->interface.csiphy_id;
930 	struct csiphy_device *csiphy = &camss->csiphy[id];
931 
932 	csiphy->cfg.csi2 = &csd->interface.csi2;
933 	subdev->host_priv = csiphy;
934 
935 	return 0;
936 }
937 
938 static int camss_subdev_notifier_complete(struct v4l2_async_notifier *async)
939 {
940 	struct camss *camss = container_of(async, struct camss, notifier);
941 	struct v4l2_device *v4l2_dev = &camss->v4l2_dev;
942 	struct v4l2_subdev *sd;
943 	int ret;
944 
945 	list_for_each_entry(sd, &v4l2_dev->subdevs, list) {
946 		if (sd->host_priv) {
947 			struct media_entity *sensor = &sd->entity;
948 			struct csiphy_device *csiphy =
949 					(struct csiphy_device *) sd->host_priv;
950 			struct media_entity *input = &csiphy->subdev.entity;
951 			unsigned int i;
952 
953 			for (i = 0; i < sensor->num_pads; i++) {
954 				if (sensor->pads[i].flags & MEDIA_PAD_FL_SOURCE)
955 					break;
956 			}
957 			if (i == sensor->num_pads) {
958 				dev_err(camss->dev,
959 					"No source pad in external entity\n");
960 				return -EINVAL;
961 			}
962 
963 			ret = media_create_pad_link(sensor, i,
964 				input, MSM_CSIPHY_PAD_SINK,
965 				MEDIA_LNK_FL_IMMUTABLE | MEDIA_LNK_FL_ENABLED);
966 			if (ret < 0) {
967 				dev_err(camss->dev,
968 					"Failed to link %s->%s entities: %d\n",
969 					sensor->name, input->name, ret);
970 				return ret;
971 			}
972 		}
973 	}
974 
975 	ret = v4l2_device_register_subdev_nodes(&camss->v4l2_dev);
976 	if (ret < 0)
977 		return ret;
978 
979 	return media_device_register(&camss->media_dev);
980 }
981 
982 static const struct v4l2_async_notifier_operations camss_subdev_notifier_ops = {
983 	.bound = camss_subdev_notifier_bound,
984 	.complete = camss_subdev_notifier_complete,
985 };
986 
987 static const struct media_device_ops camss_media_ops = {
988 	.link_notify = v4l2_pipeline_link_notify,
989 };
990 
991 /*
992  * camss_probe - Probe CAMSS platform device
993  * @pdev: Pointer to CAMSS platform device
994  *
995  * Return 0 on success or a negative error code on failure
996  */
997 static int camss_probe(struct platform_device *pdev)
998 {
999 	struct device *dev = &pdev->dev;
1000 	struct camss *camss;
1001 	int num_subdevs, ret;
1002 
1003 	camss = kzalloc(sizeof(*camss), GFP_KERNEL);
1004 	if (!camss)
1005 		return -ENOMEM;
1006 
1007 	atomic_set(&camss->ref_count, 0);
1008 	camss->dev = dev;
1009 	platform_set_drvdata(pdev, camss);
1010 
1011 	if (of_device_is_compatible(dev->of_node, "qcom,msm8916-camss")) {
1012 		camss->version = CAMSS_8x16;
1013 		camss->csiphy_num = 2;
1014 		camss->csid_num = 2;
1015 		camss->vfe_num = 1;
1016 	} else if (of_device_is_compatible(dev->of_node,
1017 					   "qcom,msm8996-camss")) {
1018 		camss->version = CAMSS_8x96;
1019 		camss->csiphy_num = 3;
1020 		camss->csid_num = 4;
1021 		camss->vfe_num = 2;
1022 	} else if (of_device_is_compatible(dev->of_node,
1023 					   "qcom,sdm660-camss")) {
1024 		camss->version = CAMSS_660;
1025 		camss->csiphy_num = 3;
1026 		camss->csid_num = 4;
1027 		camss->vfe_num = 2;
1028 	} else {
1029 		ret = -EINVAL;
1030 		goto err_free;
1031 	}
1032 
1033 	camss->csiphy = devm_kcalloc(dev, camss->csiphy_num,
1034 				     sizeof(*camss->csiphy), GFP_KERNEL);
1035 	if (!camss->csiphy) {
1036 		ret = -ENOMEM;
1037 		goto err_free;
1038 	}
1039 
1040 	camss->csid = devm_kcalloc(dev, camss->csid_num, sizeof(*camss->csid),
1041 				   GFP_KERNEL);
1042 	if (!camss->csid) {
1043 		ret = -ENOMEM;
1044 		goto err_free;
1045 	}
1046 
1047 	camss->vfe = devm_kcalloc(dev, camss->vfe_num, sizeof(*camss->vfe),
1048 				  GFP_KERNEL);
1049 	if (!camss->vfe) {
1050 		ret = -ENOMEM;
1051 		goto err_free;
1052 	}
1053 
1054 	v4l2_async_notifier_init(&camss->notifier);
1055 
1056 	num_subdevs = camss_of_parse_ports(camss);
1057 	if (num_subdevs < 0) {
1058 		ret = num_subdevs;
1059 		goto err_cleanup;
1060 	}
1061 
1062 	ret = camss_init_subdevices(camss);
1063 	if (ret < 0)
1064 		goto err_cleanup;
1065 
1066 	ret = dma_set_mask_and_coherent(dev, 0xffffffff);
1067 	if (ret)
1068 		goto err_cleanup;
1069 
1070 	camss->media_dev.dev = camss->dev;
1071 	strscpy(camss->media_dev.model, "Qualcomm Camera Subsystem",
1072 		sizeof(camss->media_dev.model));
1073 	camss->media_dev.ops = &camss_media_ops;
1074 	media_device_init(&camss->media_dev);
1075 
1076 	camss->v4l2_dev.mdev = &camss->media_dev;
1077 	ret = v4l2_device_register(camss->dev, &camss->v4l2_dev);
1078 	if (ret < 0) {
1079 		dev_err(dev, "Failed to register V4L2 device: %d\n", ret);
1080 		goto err_cleanup;
1081 	}
1082 
1083 	ret = camss_register_entities(camss);
1084 	if (ret < 0)
1085 		goto err_register_entities;
1086 
1087 	if (num_subdevs) {
1088 		camss->notifier.ops = &camss_subdev_notifier_ops;
1089 
1090 		ret = v4l2_async_notifier_register(&camss->v4l2_dev,
1091 						   &camss->notifier);
1092 		if (ret) {
1093 			dev_err(dev,
1094 				"Failed to register async subdev nodes: %d\n",
1095 				ret);
1096 			goto err_register_subdevs;
1097 		}
1098 	} else {
1099 		ret = v4l2_device_register_subdev_nodes(&camss->v4l2_dev);
1100 		if (ret < 0) {
1101 			dev_err(dev, "Failed to register subdev nodes: %d\n",
1102 				ret);
1103 			goto err_register_subdevs;
1104 		}
1105 
1106 		ret = media_device_register(&camss->media_dev);
1107 		if (ret < 0) {
1108 			dev_err(dev, "Failed to register media device: %d\n",
1109 				ret);
1110 			goto err_register_subdevs;
1111 		}
1112 	}
1113 
1114 	if (camss->version == CAMSS_8x96 ||
1115 	    camss->version == CAMSS_660) {
1116 		camss->genpd[PM_DOMAIN_VFE0] = dev_pm_domain_attach_by_id(
1117 						camss->dev, PM_DOMAIN_VFE0);
1118 		if (IS_ERR(camss->genpd[PM_DOMAIN_VFE0]))
1119 			return PTR_ERR(camss->genpd[PM_DOMAIN_VFE0]);
1120 
1121 		camss->genpd[PM_DOMAIN_VFE1] = dev_pm_domain_attach_by_id(
1122 						camss->dev, PM_DOMAIN_VFE1);
1123 		if (IS_ERR(camss->genpd[PM_DOMAIN_VFE1])) {
1124 			dev_pm_domain_detach(camss->genpd[PM_DOMAIN_VFE0],
1125 					     true);
1126 			return PTR_ERR(camss->genpd[PM_DOMAIN_VFE1]);
1127 		}
1128 	}
1129 
1130 	pm_runtime_enable(dev);
1131 
1132 	return 0;
1133 
1134 err_register_subdevs:
1135 	camss_unregister_entities(camss);
1136 err_register_entities:
1137 	v4l2_device_unregister(&camss->v4l2_dev);
1138 err_cleanup:
1139 	v4l2_async_notifier_cleanup(&camss->notifier);
1140 err_free:
1141 	kfree(camss);
1142 
1143 	return ret;
1144 }
1145 
1146 void camss_delete(struct camss *camss)
1147 {
1148 	v4l2_device_unregister(&camss->v4l2_dev);
1149 	media_device_unregister(&camss->media_dev);
1150 	media_device_cleanup(&camss->media_dev);
1151 
1152 	pm_runtime_disable(camss->dev);
1153 
1154 	if (camss->version == CAMSS_8x96 ||
1155 	    camss->version == CAMSS_660) {
1156 		dev_pm_domain_detach(camss->genpd[PM_DOMAIN_VFE0], true);
1157 		dev_pm_domain_detach(camss->genpd[PM_DOMAIN_VFE1], true);
1158 	}
1159 
1160 	kfree(camss);
1161 }
1162 
1163 /*
1164  * camss_remove - Remove CAMSS platform device
1165  * @pdev: Pointer to CAMSS platform device
1166  *
1167  * Always returns 0.
1168  */
1169 static int camss_remove(struct platform_device *pdev)
1170 {
1171 	struct camss *camss = platform_get_drvdata(pdev);
1172 
1173 	v4l2_async_notifier_unregister(&camss->notifier);
1174 	v4l2_async_notifier_cleanup(&camss->notifier);
1175 	camss_unregister_entities(camss);
1176 
1177 	if (atomic_read(&camss->ref_count) == 0)
1178 		camss_delete(camss);
1179 
1180 	return 0;
1181 }
1182 
1183 static const struct of_device_id camss_dt_match[] = {
1184 	{ .compatible = "qcom,msm8916-camss" },
1185 	{ .compatible = "qcom,msm8996-camss" },
1186 	{ .compatible = "qcom,sdm660-camss" },
1187 	{ }
1188 };
1189 
1190 MODULE_DEVICE_TABLE(of, camss_dt_match);
1191 
1192 static int __maybe_unused camss_runtime_suspend(struct device *dev)
1193 {
1194 	return 0;
1195 }
1196 
1197 static int __maybe_unused camss_runtime_resume(struct device *dev)
1198 {
1199 	return 0;
1200 }
1201 
1202 static const struct dev_pm_ops camss_pm_ops = {
1203 	SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
1204 				pm_runtime_force_resume)
1205 	SET_RUNTIME_PM_OPS(camss_runtime_suspend, camss_runtime_resume, NULL)
1206 };
1207 
1208 static struct platform_driver qcom_camss_driver = {
1209 	.probe = camss_probe,
1210 	.remove = camss_remove,
1211 	.driver = {
1212 		.name = "qcom-camss",
1213 		.of_match_table = camss_dt_match,
1214 		.pm = &camss_pm_ops,
1215 	},
1216 };
1217 
1218 module_platform_driver(qcom_camss_driver);
1219 
1220 MODULE_ALIAS("platform:qcom-camss");
1221 MODULE_DESCRIPTION("Qualcomm Camera Subsystem driver");
1222 MODULE_AUTHOR("Todor Tomov <todor.tomov@linaro.org>");
1223 MODULE_LICENSE("GPL v2");
1224