2 * Media controller test application
4 * Copyright (C) 2010 Ideas on board SPRL <laurent.pinchart@ideasonboard.com>
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.
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.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
20 #include <sys/ioctl.h>
22 #include <sys/types.h>
31 #include <linux/videodev2.h>
32 #include <linux/media.h>
38 static const char *media_entity_type_to_string(unsigned type)
44 { MEDIA_ENTITY_TYPE_NODE, "Node" },
45 { MEDIA_ENTITY_TYPE_SUBDEV, "V4L2 subdev" },
50 for (i = 0; i < ARRAY_SIZE(types); i++) {
51 if (types[i].type == type)
58 static const char *media_entity_subtype_to_string(unsigned type, unsigned subtype)
60 static const char *node_types[] = {
67 static const char *subdev_types[] = {
75 case MEDIA_ENTITY_TYPE_NODE:
78 return node_types[subtype];
80 case MEDIA_ENTITY_TYPE_SUBDEV:
83 return subdev_types[subtype];
89 static const char *media_pad_type_to_string(unsigned type)
95 { MEDIA_PAD_TYPE_INPUT, "Input" },
96 { MEDIA_PAD_TYPE_OUTPUT, "Output" },
101 for (i = 0; i < ARRAY_SIZE(types); i++) {
102 if (types[i].type == type)
103 return types[i].name;
110 * media_entity_remote_pad -
112 struct media_entity_pad *media_entity_remote_pad(struct media_entity_pad *pad)
116 for (i = 0; i < pad->entity->info.links; ++i) {
117 struct media_entity_link *link = &pad->entity->links[i];
119 if (!(link->flags & MEDIA_LINK_FLAG_ACTIVE))
122 if (link->source == pad)
125 if (link->sink == pad)
133 * media_get_entity_by_name -
135 struct media_entity *media_get_entity_by_name(struct media_device *media,
136 const char *name, size_t length)
140 for (i = 0; i < media->entities_count; ++i) {
141 struct media_entity *entity = &media->entities[i];
143 if (strncmp(entity->info.name, name, length) == 0)
151 * media_get_entity_by_id -
153 struct media_entity *media_get_entity_by_id(struct media_device *media,
158 for (i = 0; i < media->entities_count; ++i) {
159 struct media_entity *entity = &media->entities[i];
161 if (entity->info.id == id)
171 int media_setup_link(struct media_device *media,
172 struct media_entity_pad *source,
173 struct media_entity_pad *sink,
176 struct media_entity_link *link;
177 struct media_user_link ulink;
181 for (i = 0; i < source->entity->info.links; i++) {
182 link = &source->entity->links[i];
184 if (link->source->entity == source->entity &&
185 link->source->index == source->index &&
186 link->sink->entity == sink->entity &&
187 link->sink->index == sink->index)
191 if (i == source->entity->info.links) {
192 printf("%s: Link not found\n", __func__);
197 ulink.source.entity = source->entity->info.id;
198 ulink.source.index = source->index;
199 ulink.source.type = MEDIA_PAD_TYPE_OUTPUT;
202 ulink.sink.entity = sink->entity->info.id;
203 ulink.sink.index = sink->index;
204 ulink.sink.type = MEDIA_PAD_TYPE_INPUT;
206 ulink.flags = flags | (link->flags & MEDIA_LINK_FLAG_IMMUTABLE);
208 ret = ioctl(media->fd, MEDIA_IOC_SETUP_LINK, &ulink);
210 printf("%s: Unable to setup link (%s)\n", __func__,
219 int media_reset_links(struct media_device *media)
224 for (i = 0; i < media->entities_count; ++i) {
225 struct media_entity *entity = &media->entities[i];
227 for (j = 0; j < entity->info.links; j++) {
228 struct media_entity_link *link = &entity->links[j];
230 if (link->flags & MEDIA_LINK_FLAG_IMMUTABLE)
233 ret = media_setup_link(media, link->source, link->sink,
234 link->flags & ~MEDIA_LINK_FLAG_ACTIVE);
243 static void media_print_topology_dot(struct media_device *media)
247 printf("digraph board {\n");
248 printf("\trankdir=TB\n");
250 for (i = 0; i < media->entities_count; ++i) {
251 struct media_entity *entity = &media->entities[i];
254 switch (entity->info.type) {
255 case MEDIA_ENTITY_TYPE_NODE:
256 printf("\tn%08x [label=\"%s\\n%s\", shape=box, style=filled, "
257 "fillcolor=yellow]\n",
258 entity->info.id, entity->info.name, entity->devname);
261 case MEDIA_ENTITY_TYPE_SUBDEV:
262 printf("\tn%08x [label=\"{{", entity->info.id);
264 for (j = 0, npads = 0; j < entity->info.pads; ++j) {
265 if (entity->pads[j].type != MEDIA_PAD_TYPE_INPUT)
268 printf("%s<port%u> %u", npads ? " | " : "", j, j);
272 printf("} | %s", entity->info.name);
274 printf("\\n%s", entity->devname);
277 for (j = 0, npads = 0; j < entity->info.pads; ++j) {
278 if (entity->pads[j].type != MEDIA_PAD_TYPE_OUTPUT)
281 printf("%s<port%u> %u", npads ? " | " : "", j, j);
285 printf("}}\", shape=Mrecord, style=filled, fillcolor=green]\n");
292 for (j = 0; j < entity->info.links; j++) {
293 struct media_entity_link *link = &entity->links[j];
295 if (link->source->entity != entity)
298 printf("\tn%08x", link->source->entity->info.id);
299 if (link->source->entity->info.type == MEDIA_ENTITY_TYPE_SUBDEV)
300 printf(":port%u", link->source->index);
302 printf("n%08x", link->sink->entity->info.id);
303 if (link->sink->entity->info.type == MEDIA_ENTITY_TYPE_SUBDEV)
304 printf(":port%u", link->sink->index);
306 if (link->flags & MEDIA_LINK_FLAG_IMMUTABLE)
307 printf(" [style=bold]");
308 else if (!(link->flags & MEDIA_LINK_FLAG_ACTIVE))
309 printf(" [style=dashed]");
317 static void media_print_topology_text(struct media_device *media)
319 unsigned int i, j, k;
320 unsigned int padding;
322 printf("Device topology\n");
324 for (i = 0; i < media->entities_count; ++i) {
325 struct media_entity *entity = &media->entities[i];
327 padding = printf("- entity %u: ", entity->info.id);
328 printf("%s (%u pad%s, %u link%s)\n", entity->info.name,
329 entity->info.pads, entity->info.pads > 1 ? "s" : "",
330 entity->info.links, entity->info.links > 1 ? "s" : "");
331 printf("%*ctype %s subtype %s\n", padding, ' ',
332 media_entity_type_to_string(entity->info.type),
333 media_entity_subtype_to_string(entity->info.type, entity->info.subtype));
334 if (entity->devname[0])
335 printf("%*cdevice node name %s\n", padding, ' ', entity->devname);
337 for (j = 0; j < entity->info.pads; j++) {
338 struct media_entity_pad *pad = &entity->pads[j];
340 printf("\tpad%u: %s ", j, media_pad_type_to_string(pad->type));
342 if (entity->info.type == MEDIA_ENTITY_TYPE_SUBDEV)
343 v4l2_subdev_print_format(entity, j, V4L2_SUBDEV_FORMAT_ACTIVE);
347 for (k = 0; k < entity->info.links; k++) {
348 struct media_entity_link *link = &entity->links[k];
350 if (link->source->entity != entity ||
351 link->source->index != j)
354 printf("\t\t-> '%s':pad%u [",
355 link->sink->entity->info.name, link->sink->index);
357 if (link->flags & MEDIA_LINK_FLAG_IMMUTABLE)
358 printf("IMMUTABLE,");
359 if (link->flags & MEDIA_LINK_FLAG_ACTIVE)
369 void media_print_topology(struct media_device *media, int dot)
372 media_print_topology_dot(media);
374 media_print_topology_text(media);
377 static int media_enum_links(struct media_device *media)
382 for (id = 1; id <= media->entities_count; id++) {
383 struct media_entity *entity = &media->entities[id - 1];
384 struct media_user_links links;
387 links.entity = entity->info.id;
388 links.pads = malloc(entity->info.pads * sizeof(struct media_user_pad));
389 links.links = malloc(entity->info.links * sizeof(struct media_user_link));
391 if (ioctl(media->fd, MEDIA_IOC_ENUM_LINKS, &links) < 0) {
392 printf("%s: Unable to enumerate pads and links (%s).\n",
393 __func__, strerror(errno));
399 for (i = 0; i < entity->info.pads; ++i) {
400 entity->pads[i].entity = entity;
401 entity->pads[i].type = links.pads[i].type;
402 entity->pads[i].index = links.pads[i].index;
405 for (i = 0; i < entity->info.links; ++i) {
406 struct media_user_link *link = &links.links[i];
407 struct media_entity *source;
408 struct media_entity *sink;
410 source = media_get_entity_by_id(media, link->source.entity);
411 sink = media_get_entity_by_id(media, link->sink.entity);
413 if (source == NULL || sink == NULL) {
414 printf("WARNING entity %u link %u from %u/%u to %u/%u is invalid!\n",
415 id, i, link->source.entity, link->source.index,
416 link->sink.entity, link->sink.index);
420 entity->links[i].source = &source->pads[link->source.index];
421 entity->links[i].sink = &sink->pads[link->sink.index];
422 entity->links[i].flags = links.links[i].flags;
432 static int media_enum_entities(struct media_device *media)
434 struct media_entity *entity;
444 for (id = 0; ; id = entity->info.id) {
445 size = (media->entities_count + 1) * sizeof(*media->entities);
446 media->entities = realloc(media->entities, size);
448 entity = &media->entities[media->entities_count];
449 memset(entity, 0, sizeof(*entity));
451 entity->info.id = id | MEDIA_ENTITY_ID_FLAG_NEXT;
453 ret = ioctl(media->fd, MEDIA_IOC_ENUM_ENTITIES, &entity->info);
460 entity->pads = malloc(entity->info.pads * sizeof(*entity->pads));
461 entity->links = malloc(entity->info.links * sizeof(*entity->links));
462 if (entity->pads == NULL || entity->links == NULL)
465 media->entities_count++;
467 /* Find the corresponding device name. */
468 if ((entity->info.type != MEDIA_ENTITY_TYPE_NODE ||
469 entity->info.type != MEDIA_NODE_TYPE_V4L) &&
470 (entity->info.type != MEDIA_ENTITY_TYPE_SUBDEV))
473 sprintf(sysname, "/sys/dev/char/%u:%u", entity->info.v4l.major,
474 entity->info.v4l.minor);
475 ret = readlink(sysname, target, sizeof(target));
480 p = strrchr(target, '/');
484 sprintf(devname, "/dev/%s", p + 1);
485 ret = stat(devname, &devstat);
489 /* Sanity check: udev might have reordered the device nodes.
490 * Make sure the major/minor match. We should really use
493 if (major(devstat.st_rdev) == entity->info.v4l.major &&
494 minor(devstat.st_rdev) == entity->info.v4l.minor)
495 strcpy(entity->devname, devname);
504 struct media_device *media_open(const char *name, int verbose)
506 struct media_device *media;
509 media = malloc(sizeof(*media));
511 printf("%s: unable to allocate memory\n", __func__);
514 memset(media, 0, sizeof(*media));
517 printf("Opening media device %s\n", name);
518 media->fd = open(name, O_RDWR);
521 printf("%s: Can't open media device %s\n", __func__, name);
526 printf("Enumerating entities\n");
528 ret = media_enum_entities(media);
530 printf("%s: Unable to enumerate entities for device %s (%s)\n",
531 __func__, name, strerror(-ret));
537 printf("Found %u entities\n", media->entities_count);
538 printf("Enumerating pads and links\n");
541 ret = media_enum_links(media);
543 printf("%s: Unable to enumerate pads and linksfor device %s\n",
555 void media_close(struct media_device *media)
562 for (i = 0; i < media->entities_count; ++i) {
563 struct media_entity *entity = &media->entities[i];
567 if (entity->fd != -1)
571 free(media->entities);