2 * Xilinx Video IP Composite Device
4 * Copyright (C) 2013-2015 Ideas on Board
5 * Copyright (C) 2013-2015 Xilinx, Inc.
7 * Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
8 * Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/list.h>
16 #include <linux/module.h>
18 #include <linux/of_graph.h>
19 #include <linux/platform_device.h>
20 #include <linux/slab.h>
22 #include <media/v4l2-async.h>
23 #include <media/v4l2-common.h>
24 #include <media/v4l2-device.h>
25 #include <media/v4l2-of.h>
27 #include "xilinx-dma.h"
28 #include "xilinx-vipp.h"
30 #define XVIPP_DMA_S2MM 0
31 #define XVIPP_DMA_MM2S 1
34 * struct xvip_graph_entity - Entity in the video graph
35 * @list: list entry in a graph entities list
36 * @node: the entity's DT node
37 * @entity: media entity, from the corresponding V4L2 subdev
38 * @asd: subdev asynchronous registration information
39 * @subdev: V4L2 subdev
41 struct xvip_graph_entity
{
42 struct list_head list
;
43 struct device_node
*node
;
44 struct media_entity
*entity
;
46 struct v4l2_async_subdev asd
;
47 struct v4l2_subdev
*subdev
;
50 /* -----------------------------------------------------------------------------
54 static struct xvip_graph_entity
*
55 xvip_graph_find_entity(struct xvip_composite_device
*xdev
,
56 const struct device_node
*node
)
58 struct xvip_graph_entity
*entity
;
60 list_for_each_entry(entity
, &xdev
->entities
, list
) {
61 if (entity
->node
== node
)
68 static int xvip_graph_build_one(struct xvip_composite_device
*xdev
,
69 struct xvip_graph_entity
*entity
)
71 u32 link_flags
= MEDIA_LNK_FL_ENABLED
;
72 struct media_entity
*local
= entity
->entity
;
73 struct media_entity
*remote
;
74 struct media_pad
*local_pad
;
75 struct media_pad
*remote_pad
;
76 struct xvip_graph_entity
*ent
;
77 struct v4l2_of_link link
;
78 struct device_node
*ep
= NULL
;
79 struct device_node
*next
;
82 dev_dbg(xdev
->dev
, "creating links for entity %s\n", local
->name
);
85 /* Get the next endpoint and parse its link. */
86 next
= of_graph_get_next_endpoint(entity
->node
, ep
);
93 dev_dbg(xdev
->dev
, "processing endpoint %s\n", ep
->full_name
);
95 ret
= v4l2_of_parse_link(ep
, &link
);
97 dev_err(xdev
->dev
, "failed to parse link for %s\n",
102 /* Skip sink ports, they will be processed from the other end of
105 if (link
.local_port
>= local
->num_pads
) {
106 dev_err(xdev
->dev
, "invalid port number %u on %s\n",
107 link
.local_port
, link
.local_node
->full_name
);
108 v4l2_of_put_link(&link
);
113 local_pad
= &local
->pads
[link
.local_port
];
115 if (local_pad
->flags
& MEDIA_PAD_FL_SINK
) {
116 dev_dbg(xdev
->dev
, "skipping sink port %s:%u\n",
117 link
.local_node
->full_name
, link
.local_port
);
118 v4l2_of_put_link(&link
);
122 /* Skip DMA engines, they will be processed separately. */
123 if (link
.remote_node
== xdev
->dev
->of_node
) {
124 dev_dbg(xdev
->dev
, "skipping DMA port %s:%u\n",
125 link
.local_node
->full_name
, link
.local_port
);
126 v4l2_of_put_link(&link
);
130 /* Find the remote entity. */
131 ent
= xvip_graph_find_entity(xdev
, link
.remote_node
);
133 dev_err(xdev
->dev
, "no entity found for %s\n",
134 link
.remote_node
->full_name
);
135 v4l2_of_put_link(&link
);
140 remote
= ent
->entity
;
142 if (link
.remote_port
>= remote
->num_pads
) {
143 dev_err(xdev
->dev
, "invalid port number %u on %s\n",
144 link
.remote_port
, link
.remote_node
->full_name
);
145 v4l2_of_put_link(&link
);
150 remote_pad
= &remote
->pads
[link
.remote_port
];
152 v4l2_of_put_link(&link
);
154 /* Create the media link. */
155 dev_dbg(xdev
->dev
, "creating %s:%u -> %s:%u link\n",
156 local
->name
, local_pad
->index
,
157 remote
->name
, remote_pad
->index
);
159 ret
= media_create_pad_link(local
, local_pad
->index
,
160 remote
, remote_pad
->index
,
164 "failed to create %s:%u -> %s:%u link\n",
165 local
->name
, local_pad
->index
,
166 remote
->name
, remote_pad
->index
);
175 static struct xvip_dma
*
176 xvip_graph_find_dma(struct xvip_composite_device
*xdev
, unsigned int port
)
178 struct xvip_dma
*dma
;
180 list_for_each_entry(dma
, &xdev
->dmas
, list
) {
181 if (dma
->port
== port
)
188 static int xvip_graph_build_dma(struct xvip_composite_device
*xdev
)
190 u32 link_flags
= MEDIA_LNK_FL_ENABLED
;
191 struct device_node
*node
= xdev
->dev
->of_node
;
192 struct media_entity
*source
;
193 struct media_entity
*sink
;
194 struct media_pad
*source_pad
;
195 struct media_pad
*sink_pad
;
196 struct xvip_graph_entity
*ent
;
197 struct v4l2_of_link link
;
198 struct device_node
*ep
= NULL
;
199 struct device_node
*next
;
200 struct xvip_dma
*dma
;
203 dev_dbg(xdev
->dev
, "creating links for DMA engines\n");
206 /* Get the next endpoint and parse its link. */
207 next
= of_graph_get_next_endpoint(node
, ep
);
214 dev_dbg(xdev
->dev
, "processing endpoint %s\n", ep
->full_name
);
216 ret
= v4l2_of_parse_link(ep
, &link
);
218 dev_err(xdev
->dev
, "failed to parse link for %s\n",
223 /* Find the DMA engine. */
224 dma
= xvip_graph_find_dma(xdev
, link
.local_port
);
226 dev_err(xdev
->dev
, "no DMA engine found for port %u\n",
228 v4l2_of_put_link(&link
);
233 dev_dbg(xdev
->dev
, "creating link for DMA engine %s\n",
236 /* Find the remote entity. */
237 ent
= xvip_graph_find_entity(xdev
, link
.remote_node
);
239 dev_err(xdev
->dev
, "no entity found for %s\n",
240 link
.remote_node
->full_name
);
241 v4l2_of_put_link(&link
);
246 if (link
.remote_port
>= ent
->entity
->num_pads
) {
247 dev_err(xdev
->dev
, "invalid port number %u on %s\n",
248 link
.remote_port
, link
.remote_node
->full_name
);
249 v4l2_of_put_link(&link
);
254 if (dma
->pad
.flags
& MEDIA_PAD_FL_SOURCE
) {
255 source
= &dma
->video
.entity
;
256 source_pad
= &dma
->pad
;
258 sink_pad
= &sink
->pads
[link
.remote_port
];
260 source
= ent
->entity
;
261 source_pad
= &source
->pads
[link
.remote_port
];
262 sink
= &dma
->video
.entity
;
263 sink_pad
= &dma
->pad
;
266 v4l2_of_put_link(&link
);
268 /* Create the media link. */
269 dev_dbg(xdev
->dev
, "creating %s:%u -> %s:%u link\n",
270 source
->name
, source_pad
->index
,
271 sink
->name
, sink_pad
->index
);
273 ret
= media_create_pad_link(source
, source_pad
->index
,
274 sink
, sink_pad
->index
,
278 "failed to create %s:%u -> %s:%u link\n",
279 source
->name
, source_pad
->index
,
280 sink
->name
, sink_pad
->index
);
289 static int xvip_graph_notify_complete(struct v4l2_async_notifier
*notifier
)
291 struct xvip_composite_device
*xdev
=
292 container_of(notifier
, struct xvip_composite_device
, notifier
);
293 struct xvip_graph_entity
*entity
;
296 dev_dbg(xdev
->dev
, "notify complete, all subdevs registered\n");
298 /* Create links for every entity. */
299 list_for_each_entry(entity
, &xdev
->entities
, list
) {
300 ret
= xvip_graph_build_one(xdev
, entity
);
305 /* Create links for DMA channels. */
306 ret
= xvip_graph_build_dma(xdev
);
310 ret
= v4l2_device_register_subdev_nodes(&xdev
->v4l2_dev
);
312 dev_err(xdev
->dev
, "failed to register subdev nodes\n");
314 return media_device_register(&xdev
->media_dev
);
317 static int xvip_graph_notify_bound(struct v4l2_async_notifier
*notifier
,
318 struct v4l2_subdev
*subdev
,
319 struct v4l2_async_subdev
*asd
)
321 struct xvip_composite_device
*xdev
=
322 container_of(notifier
, struct xvip_composite_device
, notifier
);
323 struct xvip_graph_entity
*entity
;
325 /* Locate the entity corresponding to the bound subdev and store the
328 list_for_each_entry(entity
, &xdev
->entities
, list
) {
329 if (entity
->node
!= subdev
->dev
->of_node
)
332 if (entity
->subdev
) {
333 dev_err(xdev
->dev
, "duplicate subdev for node %s\n",
334 entity
->node
->full_name
);
338 dev_dbg(xdev
->dev
, "subdev %s bound\n", subdev
->name
);
339 entity
->entity
= &subdev
->entity
;
340 entity
->subdev
= subdev
;
344 dev_err(xdev
->dev
, "no entity for subdev %s\n", subdev
->name
);
348 static int xvip_graph_parse_one(struct xvip_composite_device
*xdev
,
349 struct device_node
*node
)
351 struct xvip_graph_entity
*entity
;
352 struct device_node
*remote
;
353 struct device_node
*ep
= NULL
;
356 dev_dbg(xdev
->dev
, "parsing node %s\n", node
->full_name
);
359 ep
= of_graph_get_next_endpoint(node
, ep
);
363 dev_dbg(xdev
->dev
, "handling endpoint %s\n", ep
->full_name
);
365 remote
= of_graph_get_remote_port_parent(ep
);
366 if (remote
== NULL
) {
371 /* Skip entities that we have already processed. */
372 if (remote
== xdev
->dev
->of_node
||
373 xvip_graph_find_entity(xdev
, remote
)) {
378 entity
= devm_kzalloc(xdev
->dev
, sizeof(*entity
), GFP_KERNEL
);
379 if (entity
== NULL
) {
385 entity
->node
= remote
;
386 entity
->asd
.match_type
= V4L2_ASYNC_MATCH_OF
;
387 entity
->asd
.match
.of
.node
= remote
;
388 list_add_tail(&entity
->list
, &xdev
->entities
);
396 static int xvip_graph_parse(struct xvip_composite_device
*xdev
)
398 struct xvip_graph_entity
*entity
;
402 * Walk the links to parse the full graph. Start by parsing the
403 * composite node and then parse entities in turn. The list_for_each
404 * loop will handle entities added at the end of the list while walking
407 ret
= xvip_graph_parse_one(xdev
, xdev
->dev
->of_node
);
411 list_for_each_entry(entity
, &xdev
->entities
, list
) {
412 ret
= xvip_graph_parse_one(xdev
, entity
->node
);
420 static int xvip_graph_dma_init_one(struct xvip_composite_device
*xdev
,
421 struct device_node
*node
)
423 struct xvip_dma
*dma
;
424 enum v4l2_buf_type type
;
425 const char *direction
;
429 ret
= of_property_read_string(node
, "direction", &direction
);
433 if (strcmp(direction
, "input") == 0)
434 type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
435 else if (strcmp(direction
, "output") == 0)
436 type
= V4L2_BUF_TYPE_VIDEO_OUTPUT
;
440 of_property_read_u32(node
, "reg", &index
);
442 dma
= devm_kzalloc(xdev
->dev
, sizeof(*dma
), GFP_KERNEL
);
446 ret
= xvip_dma_init(xdev
, dma
, type
, index
);
448 dev_err(xdev
->dev
, "%s initialization failed\n",
453 list_add_tail(&dma
->list
, &xdev
->dmas
);
455 xdev
->v4l2_caps
|= type
== V4L2_BUF_TYPE_VIDEO_CAPTURE
456 ? V4L2_CAP_VIDEO_CAPTURE
: V4L2_CAP_VIDEO_OUTPUT
;
461 static int xvip_graph_dma_init(struct xvip_composite_device
*xdev
)
463 struct device_node
*ports
;
464 struct device_node
*port
;
467 ports
= of_get_child_by_name(xdev
->dev
->of_node
, "ports");
469 dev_err(xdev
->dev
, "ports node not present\n");
473 for_each_child_of_node(ports
, port
) {
474 ret
= xvip_graph_dma_init_one(xdev
, port
);
484 static void xvip_graph_cleanup(struct xvip_composite_device
*xdev
)
486 struct xvip_graph_entity
*entityp
;
487 struct xvip_graph_entity
*entity
;
488 struct xvip_dma
*dmap
;
489 struct xvip_dma
*dma
;
491 v4l2_async_notifier_unregister(&xdev
->notifier
);
493 list_for_each_entry_safe(entity
, entityp
, &xdev
->entities
, list
) {
494 of_node_put(entity
->node
);
495 list_del(&entity
->list
);
498 list_for_each_entry_safe(dma
, dmap
, &xdev
->dmas
, list
) {
499 xvip_dma_cleanup(dma
);
500 list_del(&dma
->list
);
504 static int xvip_graph_init(struct xvip_composite_device
*xdev
)
506 struct xvip_graph_entity
*entity
;
507 struct v4l2_async_subdev
**subdevs
= NULL
;
508 unsigned int num_subdevs
;
512 /* Init the DMA channels. */
513 ret
= xvip_graph_dma_init(xdev
);
515 dev_err(xdev
->dev
, "DMA initialization failed\n");
519 /* Parse the graph to extract a list of subdevice DT nodes. */
520 ret
= xvip_graph_parse(xdev
);
522 dev_err(xdev
->dev
, "graph parsing failed\n");
526 if (!xdev
->num_subdevs
) {
527 dev_err(xdev
->dev
, "no subdev found in graph\n");
531 /* Register the subdevices notifier. */
532 num_subdevs
= xdev
->num_subdevs
;
533 subdevs
= devm_kzalloc(xdev
->dev
, sizeof(*subdevs
) * num_subdevs
,
535 if (subdevs
== NULL
) {
541 list_for_each_entry(entity
, &xdev
->entities
, list
)
542 subdevs
[i
++] = &entity
->asd
;
544 xdev
->notifier
.subdevs
= subdevs
;
545 xdev
->notifier
.num_subdevs
= num_subdevs
;
546 xdev
->notifier
.bound
= xvip_graph_notify_bound
;
547 xdev
->notifier
.complete
= xvip_graph_notify_complete
;
549 ret
= v4l2_async_notifier_register(&xdev
->v4l2_dev
, &xdev
->notifier
);
551 dev_err(xdev
->dev
, "notifier registration failed\n");
559 xvip_graph_cleanup(xdev
);
564 /* -----------------------------------------------------------------------------
565 * Media Controller and V4L2
568 static void xvip_composite_v4l2_cleanup(struct xvip_composite_device
*xdev
)
570 v4l2_device_unregister(&xdev
->v4l2_dev
);
571 media_device_unregister(&xdev
->media_dev
);
572 media_device_cleanup(&xdev
->media_dev
);
575 static int xvip_composite_v4l2_init(struct xvip_composite_device
*xdev
)
579 xdev
->media_dev
.dev
= xdev
->dev
;
580 strlcpy(xdev
->media_dev
.model
, "Xilinx Video Composite Device",
581 sizeof(xdev
->media_dev
.model
));
582 xdev
->media_dev
.hw_revision
= 0;
584 media_device_init(&xdev
->media_dev
);
586 xdev
->v4l2_dev
.mdev
= &xdev
->media_dev
;
587 ret
= v4l2_device_register(xdev
->dev
, &xdev
->v4l2_dev
);
589 dev_err(xdev
->dev
, "V4L2 device registration failed (%d)\n",
591 media_device_cleanup(&xdev
->media_dev
);
598 /* -----------------------------------------------------------------------------
599 * Platform Device Driver
602 static int xvip_composite_probe(struct platform_device
*pdev
)
604 struct xvip_composite_device
*xdev
;
607 xdev
= devm_kzalloc(&pdev
->dev
, sizeof(*xdev
), GFP_KERNEL
);
611 xdev
->dev
= &pdev
->dev
;
612 INIT_LIST_HEAD(&xdev
->entities
);
613 INIT_LIST_HEAD(&xdev
->dmas
);
615 ret
= xvip_composite_v4l2_init(xdev
);
619 ret
= xvip_graph_init(xdev
);
623 platform_set_drvdata(pdev
, xdev
);
625 dev_info(xdev
->dev
, "device registered\n");
630 xvip_composite_v4l2_cleanup(xdev
);
634 static int xvip_composite_remove(struct platform_device
*pdev
)
636 struct xvip_composite_device
*xdev
= platform_get_drvdata(pdev
);
638 xvip_graph_cleanup(xdev
);
639 xvip_composite_v4l2_cleanup(xdev
);
644 static const struct of_device_id xvip_composite_of_id_table
[] = {
645 { .compatible
= "xlnx,video" },
648 MODULE_DEVICE_TABLE(of
, xvip_composite_of_id_table
);
650 static struct platform_driver xvip_composite_driver
= {
652 .name
= "xilinx-video",
653 .of_match_table
= xvip_composite_of_id_table
,
655 .probe
= xvip_composite_probe
,
656 .remove
= xvip_composite_remove
,
659 module_platform_driver(xvip_composite_driver
);
661 MODULE_AUTHOR("Laurent Pinchart <laurent.pinchart@ideasonboard.com>");
662 MODULE_DESCRIPTION("Xilinx Video IP Composite Driver");
663 MODULE_LICENSE("GPL v2");