1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * Media entity 4 * 5 * Copyright (C) 2010 Nokia Corporation 6 * 7 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com> 8 * Sakari Ailus <sakari.ailus@iki.fi> 9 */ 10 11 #ifndef _MEDIA_ENTITY_H 12 #define _MEDIA_ENTITY_H 13 14 #include <linux/bitmap.h> 15 #include <linux/bug.h> 16 #include <linux/container_of.h> 17 #include <linux/fwnode.h> 18 #include <linux/list.h> 19 #include <linux/media.h> 20 #include <linux/types.h> 21 22 /* Enums used internally at the media controller to represent graphs */ 23 24 /** 25 * enum media_gobj_type - type of a graph object 26 * 27 * @MEDIA_GRAPH_ENTITY: Identify a media entity 28 * @MEDIA_GRAPH_PAD: Identify a media pad 29 * @MEDIA_GRAPH_LINK: Identify a media link 30 * @MEDIA_GRAPH_INTF_DEVNODE: Identify a media Kernel API interface via 31 * a device node 32 */ 33 enum media_gobj_type { 34 MEDIA_GRAPH_ENTITY, 35 MEDIA_GRAPH_PAD, 36 MEDIA_GRAPH_LINK, 37 MEDIA_GRAPH_INTF_DEVNODE, 38 }; 39 40 #define MEDIA_BITS_PER_TYPE 8 41 #define MEDIA_BITS_PER_ID (32 - MEDIA_BITS_PER_TYPE) 42 #define MEDIA_ID_MASK GENMASK_ULL(MEDIA_BITS_PER_ID - 1, 0) 43 44 /* Structs to represent the objects that belong to a media graph */ 45 46 /** 47 * struct media_gobj - Define a graph object. 48 * 49 * @mdev: Pointer to the struct &media_device that owns the object 50 * @id: Non-zero object ID identifier. The ID should be unique 51 * inside a media_device, as it is composed by 52 * %MEDIA_BITS_PER_TYPE to store the type plus 53 * %MEDIA_BITS_PER_ID to store the ID 54 * @list: List entry stored in one of the per-type mdev object lists 55 * 56 * All objects on the media graph should have this struct embedded 57 */ 58 struct media_gobj { 59 struct media_device *mdev; 60 u32 id; 61 struct list_head list; 62 }; 63 64 #define MEDIA_ENTITY_ENUM_MAX_DEPTH 16 65 66 /** 67 * struct media_entity_enum - An enumeration of media entities. 68 * 69 * @bmap: Bit map in which each bit represents one entity at struct 70 * media_entity->internal_idx. 71 * @idx_max: Number of bits in bmap 72 */ 73 struct media_entity_enum { 74 unsigned long *bmap; 75 int idx_max; 76 }; 77 78 /** 79 * struct media_graph - Media graph traversal state 80 * 81 * @stack: Graph traversal stack; the stack contains information 82 * on the path the media entities to be walked and the 83 * links through which they were reached. 84 * @stack.entity: pointer to &struct media_entity at the graph. 85 * @stack.link: pointer to &struct list_head. 86 * @ent_enum: Visited entities 87 * @top: The top of the stack 88 */ 89 struct media_graph { 90 struct { 91 struct media_entity *entity; 92 struct list_head *link; 93 } stack[MEDIA_ENTITY_ENUM_MAX_DEPTH]; 94 95 struct media_entity_enum ent_enum; 96 int top; 97 }; 98 99 /** 100 * struct media_pipeline - Media pipeline related information 101 * 102 * @streaming_count: Streaming start count - streaming stop count 103 * @graph: Media graph walk during pipeline start / stop 104 */ 105 struct media_pipeline { 106 int streaming_count; 107 struct media_graph graph; 108 }; 109 110 /** 111 * struct media_link - A link object part of a media graph. 112 * 113 * @graph_obj: Embedded structure containing the media object common data 114 * @list: Linked list associated with an entity or an interface that 115 * owns the link. 116 * @gobj0: Part of a union. Used to get the pointer for the first 117 * graph_object of the link. 118 * @source: Part of a union. Used only if the first object (gobj0) is 119 * a pad. In that case, it represents the source pad. 120 * @intf: Part of a union. Used only if the first object (gobj0) is 121 * an interface. 122 * @gobj1: Part of a union. Used to get the pointer for the second 123 * graph_object of the link. 124 * @sink: Part of a union. Used only if the second object (gobj1) is 125 * a pad. In that case, it represents the sink pad. 126 * @entity: Part of a union. Used only if the second object (gobj1) is 127 * an entity. 128 * @reverse: Pointer to the link for the reverse direction of a pad to pad 129 * link. 130 * @flags: Link flags, as defined in uapi/media.h (MEDIA_LNK_FL_*) 131 * @is_backlink: Indicate if the link is a backlink. 132 */ 133 struct media_link { 134 struct media_gobj graph_obj; 135 struct list_head list; 136 union { 137 struct media_gobj *gobj0; 138 struct media_pad *source; 139 struct media_interface *intf; 140 }; 141 union { 142 struct media_gobj *gobj1; 143 struct media_pad *sink; 144 struct media_entity *entity; 145 }; 146 struct media_link *reverse; 147 unsigned long flags; 148 bool is_backlink; 149 }; 150 151 /** 152 * enum media_pad_signal_type - type of the signal inside a media pad 153 * 154 * @PAD_SIGNAL_DEFAULT: 155 * Default signal. Use this when all inputs or all outputs are 156 * uniquely identified by the pad number. 157 * @PAD_SIGNAL_ANALOG: 158 * The pad contains an analog signal. It can be Radio Frequency, 159 * Intermediate Frequency, a baseband signal or sub-carriers. 160 * Tuner inputs, IF-PLL demodulators, composite and s-video signals 161 * should use it. 162 * @PAD_SIGNAL_DV: 163 * Contains a digital video signal, with can be a bitstream of samples 164 * taken from an analog TV video source. On such case, it usually 165 * contains the VBI data on it. 166 * @PAD_SIGNAL_AUDIO: 167 * Contains an Intermediate Frequency analog signal from an audio 168 * sub-carrier or an audio bitstream. IF signals are provided by tuners 169 * and consumed by audio AM/FM decoders. Bitstream audio is provided by 170 * an audio decoder. 171 */ 172 enum media_pad_signal_type { 173 PAD_SIGNAL_DEFAULT = 0, 174 PAD_SIGNAL_ANALOG, 175 PAD_SIGNAL_DV, 176 PAD_SIGNAL_AUDIO, 177 }; 178 179 /** 180 * struct media_pad - A media pad graph object. 181 * 182 * @graph_obj: Embedded structure containing the media object common data 183 * @entity: Entity this pad belongs to 184 * @index: Pad index in the entity pads array, numbered from 0 to n 185 * @sig_type: Type of the signal inside a media pad 186 * @flags: Pad flags, as defined in 187 * :ref:`include/uapi/linux/media.h <media_header>` 188 * (seek for ``MEDIA_PAD_FL_*``) 189 */ 190 struct media_pad { 191 struct media_gobj graph_obj; /* must be first field in struct */ 192 struct media_entity *entity; 193 u16 index; 194 enum media_pad_signal_type sig_type; 195 unsigned long flags; 196 }; 197 198 /** 199 * struct media_entity_operations - Media entity operations 200 * @get_fwnode_pad: Return the pad number based on a fwnode endpoint or 201 * a negative value on error. This operation can be used 202 * to map a fwnode to a media pad number. Optional. 203 * @link_setup: Notify the entity of link changes. The operation can 204 * return an error, in which case link setup will be 205 * cancelled. Optional. 206 * @link_validate: Return whether a link is valid from the entity point of 207 * view. The media_pipeline_start() function 208 * validates all links by calling this operation. Optional. 209 * 210 * .. note:: 211 * 212 * Those these callbacks are called with struct &media_device.graph_mutex 213 * mutex held. 214 */ 215 struct media_entity_operations { 216 int (*get_fwnode_pad)(struct media_entity *entity, 217 struct fwnode_endpoint *endpoint); 218 int (*link_setup)(struct media_entity *entity, 219 const struct media_pad *local, 220 const struct media_pad *remote, u32 flags); 221 int (*link_validate)(struct media_link *link); 222 }; 223 224 /** 225 * enum media_entity_type - Media entity type 226 * 227 * @MEDIA_ENTITY_TYPE_BASE: 228 * The entity isn't embedded in another subsystem structure. 229 * @MEDIA_ENTITY_TYPE_VIDEO_DEVICE: 230 * The entity is embedded in a struct video_device instance. 231 * @MEDIA_ENTITY_TYPE_V4L2_SUBDEV: 232 * The entity is embedded in a struct v4l2_subdev instance. 233 * 234 * Media entity objects are often not instantiated directly, but the media 235 * entity structure is inherited by (through embedding) other subsystem-specific 236 * structures. The media entity type identifies the type of the subclass 237 * structure that implements a media entity instance. 238 * 239 * This allows runtime type identification of media entities and safe casting to 240 * the correct object type. For instance, a media entity structure instance 241 * embedded in a v4l2_subdev structure instance will have the type 242 * %MEDIA_ENTITY_TYPE_V4L2_SUBDEV and can safely be cast to a &v4l2_subdev 243 * structure using the container_of() macro. 244 */ 245 enum media_entity_type { 246 MEDIA_ENTITY_TYPE_BASE, 247 MEDIA_ENTITY_TYPE_VIDEO_DEVICE, 248 MEDIA_ENTITY_TYPE_V4L2_SUBDEV, 249 }; 250 251 /** 252 * struct media_entity - A media entity graph object. 253 * 254 * @graph_obj: Embedded structure containing the media object common data. 255 * @name: Entity name. 256 * @obj_type: Type of the object that implements the media_entity. 257 * @function: Entity main function, as defined in 258 * :ref:`include/uapi/linux/media.h <media_header>` 259 * (seek for ``MEDIA_ENT_F_*``) 260 * @flags: Entity flags, as defined in 261 * :ref:`include/uapi/linux/media.h <media_header>` 262 * (seek for ``MEDIA_ENT_FL_*``) 263 * @num_pads: Number of sink and source pads. 264 * @num_links: Total number of links, forward and back, enabled and disabled. 265 * @num_backlinks: Number of backlinks 266 * @internal_idx: An unique internal entity specific number. The numbers are 267 * re-used if entities are unregistered or registered again. 268 * @pads: Pads array with the size defined by @num_pads. 269 * @links: List of data links. 270 * @ops: Entity operations. 271 * @use_count: Use count for the entity. 272 * @pipe: Pipeline this entity belongs to. 273 * @info: Union with devnode information. Kept just for backward 274 * compatibility. 275 * @info.dev: Contains device major and minor info. 276 * @info.dev.major: device node major, if the device is a devnode. 277 * @info.dev.minor: device node minor, if the device is a devnode. 278 * @major: Devnode major number (zero if not applicable). Kept just 279 * for backward compatibility. 280 * @minor: Devnode minor number (zero if not applicable). Kept just 281 * for backward compatibility. 282 * 283 * .. note:: 284 * 285 * The @use_count reference count must never be negative, but is a signed 286 * integer on purpose: a simple ``WARN_ON(<0)`` check can be used to detect 287 * reference count bugs that would make it negative. 288 */ 289 struct media_entity { 290 struct media_gobj graph_obj; /* must be first field in struct */ 291 const char *name; 292 enum media_entity_type obj_type; 293 u32 function; 294 unsigned long flags; 295 296 u16 num_pads; 297 u16 num_links; 298 u16 num_backlinks; 299 int internal_idx; 300 301 struct media_pad *pads; 302 struct list_head links; 303 304 const struct media_entity_operations *ops; 305 306 int use_count; 307 308 struct media_pipeline *pipe; 309 310 union { 311 struct { 312 u32 major; 313 u32 minor; 314 } dev; 315 } info; 316 }; 317 318 /** 319 * struct media_interface - A media interface graph object. 320 * 321 * @graph_obj: embedded graph object 322 * @links: List of links pointing to graph entities 323 * @type: Type of the interface as defined in 324 * :ref:`include/uapi/linux/media.h <media_header>` 325 * (seek for ``MEDIA_INTF_T_*``) 326 * @flags: Interface flags as defined in 327 * :ref:`include/uapi/linux/media.h <media_header>` 328 * (seek for ``MEDIA_INTF_FL_*``) 329 * 330 * .. note:: 331 * 332 * Currently, no flags for &media_interface is defined. 333 */ 334 struct media_interface { 335 struct media_gobj graph_obj; 336 struct list_head links; 337 u32 type; 338 u32 flags; 339 }; 340 341 /** 342 * struct media_intf_devnode - A media interface via a device node. 343 * 344 * @intf: embedded interface object 345 * @major: Major number of a device node 346 * @minor: Minor number of a device node 347 */ 348 struct media_intf_devnode { 349 struct media_interface intf; 350 351 /* Should match the fields at media_v2_intf_devnode */ 352 u32 major; 353 u32 minor; 354 }; 355 356 /** 357 * media_entity_id() - return the media entity graph object id 358 * 359 * @entity: pointer to &media_entity 360 */ 361 static inline u32 media_entity_id(struct media_entity *entity) 362 { 363 return entity->graph_obj.id; 364 } 365 366 /** 367 * media_type() - return the media object type 368 * 369 * @gobj: Pointer to the struct &media_gobj graph object 370 */ 371 static inline enum media_gobj_type media_type(struct media_gobj *gobj) 372 { 373 return gobj->id >> MEDIA_BITS_PER_ID; 374 } 375 376 /** 377 * media_id() - return the media object ID 378 * 379 * @gobj: Pointer to the struct &media_gobj graph object 380 */ 381 static inline u32 media_id(struct media_gobj *gobj) 382 { 383 return gobj->id & MEDIA_ID_MASK; 384 } 385 386 /** 387 * media_gobj_gen_id() - encapsulates type and ID on at the object ID 388 * 389 * @type: object type as define at enum &media_gobj_type. 390 * @local_id: next ID, from struct &media_device.id. 391 */ 392 static inline u32 media_gobj_gen_id(enum media_gobj_type type, u64 local_id) 393 { 394 u32 id; 395 396 id = type << MEDIA_BITS_PER_ID; 397 id |= local_id & MEDIA_ID_MASK; 398 399 return id; 400 } 401 402 /** 403 * is_media_entity_v4l2_video_device() - Check if the entity is a video_device 404 * @entity: pointer to entity 405 * 406 * Return: %true if the entity is an instance of a video_device object and can 407 * safely be cast to a struct video_device using the container_of() macro, or 408 * %false otherwise. 409 */ 410 static inline bool is_media_entity_v4l2_video_device(struct media_entity *entity) 411 { 412 return entity && entity->obj_type == MEDIA_ENTITY_TYPE_VIDEO_DEVICE; 413 } 414 415 /** 416 * is_media_entity_v4l2_subdev() - Check if the entity is a v4l2_subdev 417 * @entity: pointer to entity 418 * 419 * Return: %true if the entity is an instance of a &v4l2_subdev object and can 420 * safely be cast to a struct &v4l2_subdev using the container_of() macro, or 421 * %false otherwise. 422 */ 423 static inline bool is_media_entity_v4l2_subdev(struct media_entity *entity) 424 { 425 return entity && entity->obj_type == MEDIA_ENTITY_TYPE_V4L2_SUBDEV; 426 } 427 428 /** 429 * __media_entity_enum_init - Initialise an entity enumeration 430 * 431 * @ent_enum: Entity enumeration to be initialised 432 * @idx_max: Maximum number of entities in the enumeration 433 * 434 * Return: Returns zero on success or a negative error code. 435 */ 436 __must_check int __media_entity_enum_init(struct media_entity_enum *ent_enum, 437 int idx_max); 438 439 /** 440 * media_entity_enum_cleanup - Release resources of an entity enumeration 441 * 442 * @ent_enum: Entity enumeration to be released 443 */ 444 void media_entity_enum_cleanup(struct media_entity_enum *ent_enum); 445 446 /** 447 * media_entity_enum_zero - Clear the entire enum 448 * 449 * @ent_enum: Entity enumeration to be cleared 450 */ 451 static inline void media_entity_enum_zero(struct media_entity_enum *ent_enum) 452 { 453 bitmap_zero(ent_enum->bmap, ent_enum->idx_max); 454 } 455 456 /** 457 * media_entity_enum_set - Mark a single entity in the enum 458 * 459 * @ent_enum: Entity enumeration 460 * @entity: Entity to be marked 461 */ 462 static inline void media_entity_enum_set(struct media_entity_enum *ent_enum, 463 struct media_entity *entity) 464 { 465 if (WARN_ON(entity->internal_idx >= ent_enum->idx_max)) 466 return; 467 468 __set_bit(entity->internal_idx, ent_enum->bmap); 469 } 470 471 /** 472 * media_entity_enum_clear - Unmark a single entity in the enum 473 * 474 * @ent_enum: Entity enumeration 475 * @entity: Entity to be unmarked 476 */ 477 static inline void media_entity_enum_clear(struct media_entity_enum *ent_enum, 478 struct media_entity *entity) 479 { 480 if (WARN_ON(entity->internal_idx >= ent_enum->idx_max)) 481 return; 482 483 __clear_bit(entity->internal_idx, ent_enum->bmap); 484 } 485 486 /** 487 * media_entity_enum_test - Test whether the entity is marked 488 * 489 * @ent_enum: Entity enumeration 490 * @entity: Entity to be tested 491 * 492 * Returns %true if the entity was marked. 493 */ 494 static inline bool media_entity_enum_test(struct media_entity_enum *ent_enum, 495 struct media_entity *entity) 496 { 497 if (WARN_ON(entity->internal_idx >= ent_enum->idx_max)) 498 return true; 499 500 return test_bit(entity->internal_idx, ent_enum->bmap); 501 } 502 503 /** 504 * media_entity_enum_test_and_set - Test whether the entity is marked, 505 * and mark it 506 * 507 * @ent_enum: Entity enumeration 508 * @entity: Entity to be tested 509 * 510 * Returns %true if the entity was marked, and mark it before doing so. 511 */ 512 static inline bool 513 media_entity_enum_test_and_set(struct media_entity_enum *ent_enum, 514 struct media_entity *entity) 515 { 516 if (WARN_ON(entity->internal_idx >= ent_enum->idx_max)) 517 return true; 518 519 return __test_and_set_bit(entity->internal_idx, ent_enum->bmap); 520 } 521 522 /** 523 * media_entity_enum_empty - Test whether the entire enum is empty 524 * 525 * @ent_enum: Entity enumeration 526 * 527 * Return: %true if the entity was empty. 528 */ 529 static inline bool media_entity_enum_empty(struct media_entity_enum *ent_enum) 530 { 531 return bitmap_empty(ent_enum->bmap, ent_enum->idx_max); 532 } 533 534 /** 535 * media_entity_enum_intersects - Test whether two enums intersect 536 * 537 * @ent_enum1: First entity enumeration 538 * @ent_enum2: Second entity enumeration 539 * 540 * Return: %true if entity enumerations @ent_enum1 and @ent_enum2 intersect, 541 * otherwise %false. 542 */ 543 static inline bool media_entity_enum_intersects( 544 struct media_entity_enum *ent_enum1, 545 struct media_entity_enum *ent_enum2) 546 { 547 WARN_ON(ent_enum1->idx_max != ent_enum2->idx_max); 548 549 return bitmap_intersects(ent_enum1->bmap, ent_enum2->bmap, 550 min(ent_enum1->idx_max, ent_enum2->idx_max)); 551 } 552 553 /** 554 * gobj_to_entity - returns the struct &media_entity pointer from the 555 * @gobj contained on it. 556 * 557 * @gobj: Pointer to the struct &media_gobj graph object 558 */ 559 #define gobj_to_entity(gobj) \ 560 container_of(gobj, struct media_entity, graph_obj) 561 562 /** 563 * gobj_to_pad - returns the struct &media_pad pointer from the 564 * @gobj contained on it. 565 * 566 * @gobj: Pointer to the struct &media_gobj graph object 567 */ 568 #define gobj_to_pad(gobj) \ 569 container_of(gobj, struct media_pad, graph_obj) 570 571 /** 572 * gobj_to_link - returns the struct &media_link pointer from the 573 * @gobj contained on it. 574 * 575 * @gobj: Pointer to the struct &media_gobj graph object 576 */ 577 #define gobj_to_link(gobj) \ 578 container_of(gobj, struct media_link, graph_obj) 579 580 /** 581 * gobj_to_intf - returns the struct &media_interface pointer from the 582 * @gobj contained on it. 583 * 584 * @gobj: Pointer to the struct &media_gobj graph object 585 */ 586 #define gobj_to_intf(gobj) \ 587 container_of(gobj, struct media_interface, graph_obj) 588 589 /** 590 * intf_to_devnode - returns the struct media_intf_devnode pointer from the 591 * @intf contained on it. 592 * 593 * @intf: Pointer to struct &media_intf_devnode 594 */ 595 #define intf_to_devnode(intf) \ 596 container_of(intf, struct media_intf_devnode, intf) 597 598 /** 599 * media_gobj_create - Initialize a graph object 600 * 601 * @mdev: Pointer to the &media_device that contains the object 602 * @type: Type of the object 603 * @gobj: Pointer to the struct &media_gobj graph object 604 * 605 * This routine initializes the embedded struct &media_gobj inside a 606 * media graph object. It is called automatically if ``media_*_create`` 607 * function calls are used. However, if the object (entity, link, pad, 608 * interface) is embedded on some other object, this function should be 609 * called before registering the object at the media controller. 610 */ 611 void media_gobj_create(struct media_device *mdev, 612 enum media_gobj_type type, 613 struct media_gobj *gobj); 614 615 /** 616 * media_gobj_destroy - Stop using a graph object on a media device 617 * 618 * @gobj: Pointer to the struct &media_gobj graph object 619 * 620 * This should be called by all routines like media_device_unregister() 621 * that remove/destroy media graph objects. 622 */ 623 void media_gobj_destroy(struct media_gobj *gobj); 624 625 /** 626 * media_entity_pads_init() - Initialize the entity pads 627 * 628 * @entity: entity where the pads belong 629 * @num_pads: total number of sink and source pads 630 * @pads: Array of @num_pads pads. 631 * 632 * The pads array is managed by the entity driver and passed to 633 * media_entity_pads_init() where its pointer will be stored in the 634 * &media_entity structure. 635 * 636 * If no pads are needed, drivers could either directly fill 637 * &media_entity->num_pads with 0 and &media_entity->pads with %NULL or call 638 * this function that will do the same. 639 * 640 * As the number of pads is known in advance, the pads array is not allocated 641 * dynamically but is managed by the entity driver. Most drivers will embed the 642 * pads array in a driver-specific structure, avoiding dynamic allocation. 643 * 644 * Drivers must set the direction of every pad in the pads array before calling 645 * media_entity_pads_init(). The function will initialize the other pads fields. 646 */ 647 int media_entity_pads_init(struct media_entity *entity, u16 num_pads, 648 struct media_pad *pads); 649 650 /** 651 * media_entity_cleanup() - free resources associated with an entity 652 * 653 * @entity: entity where the pads belong 654 * 655 * This function must be called during the cleanup phase after unregistering 656 * the entity (currently, it does nothing). 657 * 658 * Calling media_entity_cleanup() on a media_entity whose memory has been 659 * zeroed but that has not been initialized with media_entity_pad_init() is 660 * valid and is a no-op. 661 */ 662 #if IS_ENABLED(CONFIG_MEDIA_CONTROLLER) 663 static inline void media_entity_cleanup(struct media_entity *entity) {} 664 #else 665 #define media_entity_cleanup(entity) do { } while (false) 666 #endif 667 668 /** 669 * media_get_pad_index() - retrieves a pad index from an entity 670 * 671 * @entity: entity where the pads belong 672 * @is_sink: true if the pad is a sink, false if it is a source 673 * @sig_type: type of signal of the pad to be search 674 * 675 * This helper function finds the first pad index inside an entity that 676 * satisfies both @is_sink and @sig_type conditions. 677 * 678 * Return: 679 * 680 * On success, return the pad number. If the pad was not found or the media 681 * entity is a NULL pointer, return -EINVAL. 682 */ 683 int media_get_pad_index(struct media_entity *entity, bool is_sink, 684 enum media_pad_signal_type sig_type); 685 686 /** 687 * media_create_pad_link() - creates a link between two entities. 688 * 689 * @source: pointer to &media_entity of the source pad. 690 * @source_pad: number of the source pad in the pads array 691 * @sink: pointer to &media_entity of the sink pad. 692 * @sink_pad: number of the sink pad in the pads array. 693 * @flags: Link flags, as defined in 694 * :ref:`include/uapi/linux/media.h <media_header>` 695 * ( seek for ``MEDIA_LNK_FL_*``) 696 * 697 * Valid values for flags: 698 * 699 * %MEDIA_LNK_FL_ENABLED 700 * Indicates that the link is enabled and can be used to transfer media data. 701 * When two or more links target a sink pad, only one of them can be 702 * enabled at a time. 703 * 704 * %MEDIA_LNK_FL_IMMUTABLE 705 * Indicates that the link enabled state can't be modified at runtime. If 706 * %MEDIA_LNK_FL_IMMUTABLE is set, then %MEDIA_LNK_FL_ENABLED must also be 707 * set, since an immutable link is always enabled. 708 * 709 * .. note:: 710 * 711 * Before calling this function, media_entity_pads_init() and 712 * media_device_register_entity() should be called previously for both ends. 713 */ 714 __must_check int media_create_pad_link(struct media_entity *source, 715 u16 source_pad, struct media_entity *sink, 716 u16 sink_pad, u32 flags); 717 718 /** 719 * media_create_pad_links() - creates a link between two entities. 720 * 721 * @mdev: Pointer to the media_device that contains the object 722 * @source_function: Function of the source entities. Used only if @source is 723 * NULL. 724 * @source: pointer to &media_entity of the source pad. If NULL, it will use 725 * all entities that matches the @sink_function. 726 * @source_pad: number of the source pad in the pads array 727 * @sink_function: Function of the sink entities. Used only if @sink is NULL. 728 * @sink: pointer to &media_entity of the sink pad. If NULL, it will use 729 * all entities that matches the @sink_function. 730 * @sink_pad: number of the sink pad in the pads array. 731 * @flags: Link flags, as defined in include/uapi/linux/media.h. 732 * @allow_both_undefined: if %true, then both @source and @sink can be NULL. 733 * In such case, it will create a crossbar between all entities that 734 * matches @source_function to all entities that matches @sink_function. 735 * If %false, it will return 0 and won't create any link if both @source 736 * and @sink are NULL. 737 * 738 * Valid values for flags: 739 * 740 * A %MEDIA_LNK_FL_ENABLED flag indicates that the link is enabled and can be 741 * used to transfer media data. If multiple links are created and this 742 * flag is passed as an argument, only the first created link will have 743 * this flag. 744 * 745 * A %MEDIA_LNK_FL_IMMUTABLE flag indicates that the link enabled state can't 746 * be modified at runtime. If %MEDIA_LNK_FL_IMMUTABLE is set, then 747 * %MEDIA_LNK_FL_ENABLED must also be set since an immutable link is 748 * always enabled. 749 * 750 * It is common for some devices to have multiple source and/or sink entities 751 * of the same type that should be linked. While media_create_pad_link() 752 * creates link by link, this function is meant to allow 1:n, n:1 and even 753 * cross-bar (n:n) links. 754 * 755 * .. note:: 756 * 757 * Before calling this function, media_entity_pads_init() and 758 * media_device_register_entity() should be called previously for the 759 * entities to be linked. 760 */ 761 int media_create_pad_links(const struct media_device *mdev, 762 const u32 source_function, 763 struct media_entity *source, 764 const u16 source_pad, 765 const u32 sink_function, 766 struct media_entity *sink, 767 const u16 sink_pad, 768 u32 flags, 769 const bool allow_both_undefined); 770 771 void __media_entity_remove_links(struct media_entity *entity); 772 773 /** 774 * media_entity_remove_links() - remove all links associated with an entity 775 * 776 * @entity: pointer to &media_entity 777 * 778 * .. note:: 779 * 780 * This is called automatically when an entity is unregistered via 781 * media_device_register_entity(). 782 */ 783 void media_entity_remove_links(struct media_entity *entity); 784 785 /** 786 * __media_entity_setup_link - Configure a media link without locking 787 * @link: The link being configured 788 * @flags: Link configuration flags 789 * 790 * The bulk of link setup is handled by the two entities connected through the 791 * link. This function notifies both entities of the link configuration change. 792 * 793 * If the link is immutable or if the current and new configuration are 794 * identical, return immediately. 795 * 796 * The user is expected to hold link->source->parent->mutex. If not, 797 * media_entity_setup_link() should be used instead. 798 */ 799 int __media_entity_setup_link(struct media_link *link, u32 flags); 800 801 /** 802 * media_entity_setup_link() - changes the link flags properties in runtime 803 * 804 * @link: pointer to &media_link 805 * @flags: the requested new link flags 806 * 807 * The only configurable property is the %MEDIA_LNK_FL_ENABLED link flag 808 * to enable/disable a link. Links marked with the 809 * %MEDIA_LNK_FL_IMMUTABLE link flag can not be enabled or disabled. 810 * 811 * When a link is enabled or disabled, the media framework calls the 812 * link_setup operation for the two entities at the source and sink of the 813 * link, in that order. If the second link_setup call fails, another 814 * link_setup call is made on the first entity to restore the original link 815 * flags. 816 * 817 * Media device drivers can be notified of link setup operations by setting the 818 * &media_device.link_notify pointer to a callback function. If provided, the 819 * notification callback will be called before enabling and after disabling 820 * links. 821 * 822 * Entity drivers must implement the link_setup operation if any of their links 823 * is non-immutable. The operation must either configure the hardware or store 824 * the configuration information to be applied later. 825 * 826 * Link configuration must not have any side effect on other links. If an 827 * enabled link at a sink pad prevents another link at the same pad from 828 * being enabled, the link_setup operation must return %-EBUSY and can't 829 * implicitly disable the first enabled link. 830 * 831 * .. note:: 832 * 833 * The valid values of the flags for the link is the same as described 834 * on media_create_pad_link(), for pad to pad links or the same as described 835 * on media_create_intf_link(), for interface to entity links. 836 */ 837 int media_entity_setup_link(struct media_link *link, u32 flags); 838 839 /** 840 * media_entity_find_link - Find a link between two pads 841 * @source: Source pad 842 * @sink: Sink pad 843 * 844 * Return: returns a pointer to the link between the two entities. If no 845 * such link exists, return %NULL. 846 */ 847 struct media_link *media_entity_find_link(struct media_pad *source, 848 struct media_pad *sink); 849 850 /** 851 * media_pad_remote_pad_first - Find the first pad at the remote end of a link 852 * @pad: Pad at the local end of the link 853 * 854 * Search for a remote pad connected to the given pad by iterating over all 855 * links originating or terminating at that pad until an enabled link is found. 856 * 857 * Return: returns a pointer to the pad at the remote end of the first found 858 * enabled link, or %NULL if no enabled link has been found. 859 */ 860 struct media_pad *media_pad_remote_pad_first(const struct media_pad *pad); 861 862 /** 863 * media_pad_remote_pad_unique - Find a remote pad connected to a pad 864 * @pad: The pad 865 * 866 * Search for and return a remote pad connected to @pad through an enabled 867 * link. If multiple (or no) remote pads are found, an error is returned. 868 * 869 * The uniqueness constraint makes this helper function suitable for entities 870 * that support a single active source at a time on a given pad. 871 * 872 * Return: A pointer to the remote pad, or one of the following error pointers 873 * if an error occurs: 874 * 875 * * -ENOTUNIQ - Multiple links are enabled 876 * * -ENOLINK - No connected pad found 877 */ 878 struct media_pad *media_pad_remote_pad_unique(const struct media_pad *pad); 879 880 /** 881 * media_entity_remote_pad_unique - Find a remote pad connected to an entity 882 * @entity: The entity 883 * @type: The type of pad to find (MEDIA_PAD_FL_SINK or MEDIA_PAD_FL_SOURCE) 884 * 885 * Search for and return a remote pad of @type connected to @entity through an 886 * enabled link. If multiple (or no) remote pads match these criteria, an error 887 * is returned. 888 * 889 * The uniqueness constraint makes this helper function suitable for entities 890 * that support a single active source or sink at a time. 891 * 892 * Return: A pointer to the remote pad, or one of the following error pointers 893 * if an error occurs: 894 * 895 * * -ENOTUNIQ - Multiple links are enabled 896 * * -ENOLINK - No connected pad found 897 */ 898 struct media_pad * 899 media_entity_remote_pad_unique(const struct media_entity *entity, 900 unsigned int type); 901 902 /** 903 * media_entity_remote_source_pad_unique - Find a remote source pad connected to 904 * an entity 905 * @entity: The entity 906 * 907 * Search for and return a remote source pad connected to @entity through an 908 * enabled link. If multiple (or no) remote pads match these criteria, an error 909 * is returned. 910 * 911 * The uniqueness constraint makes this helper function suitable for entities 912 * that support a single active source at a time. 913 * 914 * Return: A pointer to the remote pad, or one of the following error pointers 915 * if an error occurs: 916 * 917 * * -ENOTUNIQ - Multiple links are enabled 918 * * -ENOLINK - No connected pad found 919 */ 920 static inline struct media_pad * 921 media_entity_remote_source_pad_unique(const struct media_entity *entity) 922 { 923 return media_entity_remote_pad_unique(entity, MEDIA_PAD_FL_SOURCE); 924 } 925 926 /** 927 * media_entity_is_streaming - Test if an entity is part of a streaming pipeline 928 * @entity: The entity 929 * 930 * Return: True if the entity is part of a pipeline started with the 931 * media_pipeline_start() function, false otherwise. 932 */ 933 static inline bool media_entity_is_streaming(const struct media_entity *entity) 934 { 935 return entity->pipe; 936 } 937 938 /** 939 * media_entity_get_fwnode_pad - Get pad number from fwnode 940 * 941 * @entity: The entity 942 * @fwnode: Pointer to the fwnode_handle which should be used to find the pad 943 * @direction_flags: Expected direction of the pad, as defined in 944 * :ref:`include/uapi/linux/media.h <media_header>` 945 * (seek for ``MEDIA_PAD_FL_*``) 946 * 947 * This function can be used to resolve the media pad number from 948 * a fwnode. This is useful for devices which use more complex 949 * mappings of media pads. 950 * 951 * If the entity does not implement the get_fwnode_pad() operation 952 * then this function searches the entity for the first pad that 953 * matches the @direction_flags. 954 * 955 * Return: returns the pad number on success or a negative error code. 956 */ 957 int media_entity_get_fwnode_pad(struct media_entity *entity, 958 struct fwnode_handle *fwnode, 959 unsigned long direction_flags); 960 961 /** 962 * media_graph_walk_init - Allocate resources used by graph walk. 963 * 964 * @graph: Media graph structure that will be used to walk the graph 965 * @mdev: Pointer to the &media_device that contains the object 966 * 967 * The caller is required to hold the media_device graph_mutex during the graph 968 * walk until the graph state is released. 969 * 970 * Returns zero on success or a negative error code otherwise. 971 */ 972 __must_check int media_graph_walk_init( 973 struct media_graph *graph, struct media_device *mdev); 974 975 /** 976 * media_graph_walk_cleanup - Release resources used by graph walk. 977 * 978 * @graph: Media graph structure that will be used to walk the graph 979 */ 980 void media_graph_walk_cleanup(struct media_graph *graph); 981 982 /** 983 * media_graph_walk_start - Start walking the media graph at a 984 * given entity 985 * 986 * @graph: Media graph structure that will be used to walk the graph 987 * @entity: Starting entity 988 * 989 * Before using this function, media_graph_walk_init() must be 990 * used to allocate resources used for walking the graph. This 991 * function initializes the graph traversal structure to walk the 992 * entities graph starting at the given entity. The traversal 993 * structure must not be modified by the caller during graph 994 * traversal. After the graph walk, the resources must be released 995 * using media_graph_walk_cleanup(). 996 */ 997 void media_graph_walk_start(struct media_graph *graph, 998 struct media_entity *entity); 999 1000 /** 1001 * media_graph_walk_next - Get the next entity in the graph 1002 * @graph: Media graph structure 1003 * 1004 * Perform a depth-first traversal of the given media entities graph. 1005 * 1006 * The graph structure must have been previously initialized with a call to 1007 * media_graph_walk_start(). 1008 * 1009 * Return: returns the next entity in the graph or %NULL if the whole graph 1010 * have been traversed. 1011 */ 1012 struct media_entity *media_graph_walk_next(struct media_graph *graph); 1013 1014 /** 1015 * media_pipeline_start - Mark a pipeline as streaming 1016 * @entity: Starting entity 1017 * @pipe: Media pipeline to be assigned to all entities in the pipeline. 1018 * 1019 * Mark all entities connected to a given entity through enabled links, either 1020 * directly or indirectly, as streaming. The given pipeline object is assigned 1021 * to every entity in the pipeline and stored in the media_entity pipe field. 1022 * 1023 * Calls to this function can be nested, in which case the same number of 1024 * media_pipeline_stop() calls will be required to stop streaming. The 1025 * pipeline pointer must be identical for all nested calls to 1026 * media_pipeline_start(). 1027 */ 1028 __must_check int media_pipeline_start(struct media_entity *entity, 1029 struct media_pipeline *pipe); 1030 /** 1031 * __media_pipeline_start - Mark a pipeline as streaming 1032 * 1033 * @entity: Starting entity 1034 * @pipe: Media pipeline to be assigned to all entities in the pipeline. 1035 * 1036 * ..note:: This is the non-locking version of media_pipeline_start() 1037 */ 1038 __must_check int __media_pipeline_start(struct media_entity *entity, 1039 struct media_pipeline *pipe); 1040 1041 /** 1042 * media_pipeline_stop - Mark a pipeline as not streaming 1043 * @entity: Starting entity 1044 * 1045 * Mark all entities connected to a given entity through enabled links, either 1046 * directly or indirectly, as not streaming. The media_entity pipe field is 1047 * reset to %NULL. 1048 * 1049 * If multiple calls to media_pipeline_start() have been made, the same 1050 * number of calls to this function are required to mark the pipeline as not 1051 * streaming. 1052 */ 1053 void media_pipeline_stop(struct media_entity *entity); 1054 1055 /** 1056 * __media_pipeline_stop - Mark a pipeline as not streaming 1057 * 1058 * @entity: Starting entity 1059 * 1060 * .. note:: This is the non-locking version of media_pipeline_stop() 1061 */ 1062 void __media_pipeline_stop(struct media_entity *entity); 1063 1064 /** 1065 * media_devnode_create() - creates and initializes a device node interface 1066 * 1067 * @mdev: pointer to struct &media_device 1068 * @type: type of the interface, as given by 1069 * :ref:`include/uapi/linux/media.h <media_header>` 1070 * ( seek for ``MEDIA_INTF_T_*``) macros. 1071 * @flags: Interface flags, as defined in 1072 * :ref:`include/uapi/linux/media.h <media_header>` 1073 * ( seek for ``MEDIA_INTF_FL_*``) 1074 * @major: Device node major number. 1075 * @minor: Device node minor number. 1076 * 1077 * Return: if succeeded, returns a pointer to the newly allocated 1078 * &media_intf_devnode pointer. 1079 * 1080 * .. note:: 1081 * 1082 * Currently, no flags for &media_interface is defined. 1083 */ 1084 struct media_intf_devnode * 1085 __must_check media_devnode_create(struct media_device *mdev, 1086 u32 type, u32 flags, 1087 u32 major, u32 minor); 1088 /** 1089 * media_devnode_remove() - removes a device node interface 1090 * 1091 * @devnode: pointer to &media_intf_devnode to be freed. 1092 * 1093 * When a device node interface is removed, all links to it are automatically 1094 * removed. 1095 */ 1096 void media_devnode_remove(struct media_intf_devnode *devnode); 1097 1098 /** 1099 * media_create_intf_link() - creates a link between an entity and an interface 1100 * 1101 * @entity: pointer to %media_entity 1102 * @intf: pointer to %media_interface 1103 * @flags: Link flags, as defined in 1104 * :ref:`include/uapi/linux/media.h <media_header>` 1105 * ( seek for ``MEDIA_LNK_FL_*``) 1106 * 1107 * 1108 * Valid values for flags: 1109 * 1110 * %MEDIA_LNK_FL_ENABLED 1111 * Indicates that the interface is connected to the entity hardware. 1112 * That's the default value for interfaces. An interface may be disabled if 1113 * the hardware is busy due to the usage of some other interface that it is 1114 * currently controlling the hardware. 1115 * 1116 * A typical example is an hybrid TV device that handle only one type of 1117 * stream on a given time. So, when the digital TV is streaming, 1118 * the V4L2 interfaces won't be enabled, as such device is not able to 1119 * also stream analog TV or radio. 1120 * 1121 * .. note:: 1122 * 1123 * Before calling this function, media_devnode_create() should be called for 1124 * the interface and media_device_register_entity() should be called for the 1125 * interface that will be part of the link. 1126 */ 1127 struct media_link * 1128 __must_check media_create_intf_link(struct media_entity *entity, 1129 struct media_interface *intf, 1130 u32 flags); 1131 /** 1132 * __media_remove_intf_link() - remove a single interface link 1133 * 1134 * @link: pointer to &media_link. 1135 * 1136 * .. note:: This is an unlocked version of media_remove_intf_link() 1137 */ 1138 void __media_remove_intf_link(struct media_link *link); 1139 1140 /** 1141 * media_remove_intf_link() - remove a single interface link 1142 * 1143 * @link: pointer to &media_link. 1144 * 1145 * .. note:: Prefer to use this one, instead of __media_remove_intf_link() 1146 */ 1147 void media_remove_intf_link(struct media_link *link); 1148 1149 /** 1150 * __media_remove_intf_links() - remove all links associated with an interface 1151 * 1152 * @intf: pointer to &media_interface 1153 * 1154 * .. note:: This is an unlocked version of media_remove_intf_links(). 1155 */ 1156 void __media_remove_intf_links(struct media_interface *intf); 1157 1158 /** 1159 * media_remove_intf_links() - remove all links associated with an interface 1160 * 1161 * @intf: pointer to &media_interface 1162 * 1163 * .. note:: 1164 * 1165 * #) This is called automatically when an entity is unregistered via 1166 * media_device_register_entity() and by media_devnode_remove(). 1167 * 1168 * #) Prefer to use this one, instead of __media_remove_intf_links(). 1169 */ 1170 void media_remove_intf_links(struct media_interface *intf); 1171 1172 /** 1173 * media_entity_call - Calls a struct media_entity_operations operation on 1174 * an entity 1175 * 1176 * @entity: entity where the @operation will be called 1177 * @operation: type of the operation. Should be the name of a member of 1178 * struct &media_entity_operations. 1179 * 1180 * This helper function will check if @operation is not %NULL. On such case, 1181 * it will issue a call to @operation\(@entity, @args\). 1182 */ 1183 1184 #define media_entity_call(entity, operation, args...) \ 1185 (((entity)->ops && (entity)->ops->operation) ? \ 1186 (entity)->ops->operation((entity) , ##args) : -ENOIOCTLCMD) 1187 1188 /** 1189 * media_create_ancillary_link() - create an ancillary link between two 1190 * instances of &media_entity 1191 * 1192 * @primary: pointer to the primary &media_entity 1193 * @ancillary: pointer to the ancillary &media_entity 1194 * 1195 * Create an ancillary link between two entities, indicating that they 1196 * represent two connected pieces of hardware that form a single logical unit. 1197 * A typical example is a camera lens controller being linked to the sensor that 1198 * it is supporting. 1199 * 1200 * The function sets both MEDIA_LNK_FL_ENABLED and MEDIA_LNK_FL_IMMUTABLE for 1201 * the new link. 1202 */ 1203 struct media_link * 1204 media_create_ancillary_link(struct media_entity *primary, 1205 struct media_entity *ancillary); 1206 1207 /** 1208 * __media_entity_next_link() - Iterate through a &media_entity's links 1209 * 1210 * @entity: pointer to the &media_entity 1211 * @link: pointer to a &media_link to hold the iterated values 1212 * @link_type: one of the MEDIA_LNK_FL_LINK_TYPE flags 1213 * 1214 * Return the next link against an entity matching a specific link type. This 1215 * allows iteration through an entity's links whilst guaranteeing all of the 1216 * returned links are of the given type. 1217 */ 1218 struct media_link *__media_entity_next_link(struct media_entity *entity, 1219 struct media_link *link, 1220 unsigned long link_type); 1221 1222 /** 1223 * for_each_media_entity_data_link() - Iterate through an entity's data links 1224 * 1225 * @entity: pointer to the &media_entity 1226 * @link: pointer to a &media_link to hold the iterated values 1227 * 1228 * Iterate over a &media_entity's data links 1229 */ 1230 #define for_each_media_entity_data_link(entity, link) \ 1231 for (link = __media_entity_next_link(entity, NULL, \ 1232 MEDIA_LNK_FL_DATA_LINK); \ 1233 link; \ 1234 link = __media_entity_next_link(entity, link, \ 1235 MEDIA_LNK_FL_DATA_LINK)) 1236 1237 #endif 1238