aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/firewire-cdev.h39
1 files changed, 33 insertions, 6 deletions
diff --git a/include/linux/firewire-cdev.h b/include/linux/firewire-cdev.h
index 40b11013408e..011fdf1eaec5 100644
--- a/include/linux/firewire-cdev.h
+++ b/include/linux/firewire-cdev.h
@@ -438,7 +438,7 @@ struct fw_cdev_remove_descriptor {
438 * @type: %FW_CDEV_ISO_CONTEXT_TRANSMIT or %FW_CDEV_ISO_CONTEXT_RECEIVE 438 * @type: %FW_CDEV_ISO_CONTEXT_TRANSMIT or %FW_CDEV_ISO_CONTEXT_RECEIVE
439 * @header_size: Header size to strip for receive contexts 439 * @header_size: Header size to strip for receive contexts
440 * @channel: Channel to bind to 440 * @channel: Channel to bind to
441 * @speed: Speed to transmit at 441 * @speed: Speed for transmit contexts
442 * @closure: To be returned in &fw_cdev_event_iso_interrupt 442 * @closure: To be returned in &fw_cdev_event_iso_interrupt
443 * @handle: Handle to context, written back by kernel 443 * @handle: Handle to context, written back by kernel
444 * 444 *
@@ -451,6 +451,9 @@ struct fw_cdev_remove_descriptor {
451 * If a context was successfully created, the kernel writes back a handle to the 451 * If a context was successfully created, the kernel writes back a handle to the
452 * context, which must be passed in for subsequent operations on that context. 452 * context, which must be passed in for subsequent operations on that context.
453 * 453 *
454 * For receive contexts, @header_size must be at least 4 and must be a multiple
455 * of 4.
456 *
454 * Note that the effect of a @header_size > 4 depends on 457 * Note that the effect of a @header_size > 4 depends on
455 * &fw_cdev_get_info.version, as documented at &fw_cdev_event_iso_interrupt. 458 * &fw_cdev_get_info.version, as documented at &fw_cdev_event_iso_interrupt.
456 */ 459 */
@@ -481,10 +484,34 @@ struct fw_cdev_create_iso_context {
481 * 484 *
482 * &struct fw_cdev_iso_packet is used to describe isochronous packet queues. 485 * &struct fw_cdev_iso_packet is used to describe isochronous packet queues.
483 * 486 *
484 * Use the FW_CDEV_ISO_ macros to fill in @control. The sy and tag fields are 487 * Use the FW_CDEV_ISO_ macros to fill in @control.
485 * specified by IEEE 1394a and IEC 61883. 488 *
486 * 489 * For transmit packets, the header length must be a multiple of 4 and specifies
487 * FIXME - finish this documentation 490 * the numbers of bytes in @header that will be prepended to the packet's
491 * payload; these bytes are copied into the kernel and will not be accessed
492 * after the ioctl has returned. The sy and tag fields are copied to the iso
493 * packet header (these fields are specified by IEEE 1394a and IEC 61883-1).
494 * The skip flag specifies that no packet is to be sent in a frame; when using
495 * this, all other fields except the interrupt flag must be zero.
496 *
497 * For receive packets, the header length must be a multiple of the context's
498 * header size; if the header length is larger than the context's header size,
499 * multiple packets are queued for this entry. The sy and tag fields are
500 * ignored. If the sync flag is set, the context drops all packets until
501 * a packet with a matching sy field is received (the sync value to wait for is
502 * specified in the &fw_cdev_start_iso structure). The payload length defines
503 * how many payload bytes can be received for one packet (in addition to payload
504 * quadlets that have been defined as headers and are stripped and returned in
505 * the &fw_cdev_event_iso_interrupt structure). If more bytes are received, the
506 * additional bytes are dropped. If less bytes are received, the remaining
507 * bytes in this part of the payload buffer will not be written to, not even by
508 * the next packet, i.e., packets received in consecutive frames will not
509 * necessarily be consecutive in memory. If an entry has queued multiple
510 * packets, the payload length is divided equally among them.
511 *
512 * When a packet with the interrupt flag set has been completed, the
513 * &fw_cdev_event_iso_interrupt event will be sent. An entry that has queued
514 * multiple receive packets is completed when its last packet is completed.
488 */ 515 */
489struct fw_cdev_iso_packet { 516struct fw_cdev_iso_packet {
490 __u32 control; 517 __u32 control;
@@ -501,7 +528,7 @@ struct fw_cdev_iso_packet {
501 * Queue a number of isochronous packets for reception or transmission. 528 * Queue a number of isochronous packets for reception or transmission.
502 * This ioctl takes a pointer to an array of &fw_cdev_iso_packet structs, 529 * This ioctl takes a pointer to an array of &fw_cdev_iso_packet structs,
503 * which describe how to transmit from or receive into a contiguous region 530 * which describe how to transmit from or receive into a contiguous region
504 * of a mmap()'ed payload buffer. As part of the packet descriptors, 531 * of a mmap()'ed payload buffer. As part of transmit packet descriptors,
505 * a series of headers can be supplied, which will be prepended to the 532 * a series of headers can be supplied, which will be prepended to the
506 * payload during DMA. 533 * payload during DMA.
507 * 534 *