4  * kernel ISO transmission/reception
 
   6  * Copyright (C) 2002 Maas Digital LLC
 
   8  * This code is licensed under the GPL.  See the file COPYING in the root
 
   9  * directory of the kernel sources for details.
 
  12 #ifndef IEEE1394_ISO_H
 
  13 #define IEEE1394_ISO_H
 
  18 /* high-level ISO interface */
 
  20 /* This API sends and receives isochronous packets on a large,
 
  21    virtually-contiguous kernel memory buffer. The buffer may be mapped
 
  22    into a user-space process for zero-copy transmission and reception.
 
  24    There are no explicit boundaries between packets in the buffer. A
 
  25    packet may be transmitted or received at any location. However,
 
  26    low-level drivers may impose certain restrictions on alignment or
 
  27    size of packets. (e.g. in OHCI no packet may cross a page boundary,
 
  28    and packets should be quadlet-aligned)
 
  31 /* Packet descriptor - the API maintains a ring buffer of these packet
 
  32    descriptors in kernel memory (hpsb_iso.infos[]).  */
 
  34 struct hpsb_iso_packet_info {
 
  35         /* offset of data payload relative to the first byte of the buffer */
 
  38         /* length of the data payload, in bytes (not including the isochronous header) */
 
  41         /* (recv only) the cycle number (mod 8000) on which the packet was received */
 
  44         /* (recv only) channel on which the packet was received */
 
  47         /* 2-bit 'tag' and 4-bit 'sy' fields of the isochronous header */
 
  52          * length in bytes of the packet including header/trailer.
 
  53          * MUST be at structure end, since the first part of this structure is also 
 
  54          * defined in raw1394.h (i.e. struct raw1394_iso_packet_info), is copied to 
 
  55          * userspace and is accessed there through libraw1394. 
 
  60 enum hpsb_iso_type { HPSB_ISO_RECV = 0, HPSB_ISO_XMIT = 1 };
 
  62 /* The mode of the dma when receiving iso data. Must be supported by chip */
 
  63 enum raw1394_iso_dma_recv_mode {
 
  64         HPSB_ISO_DMA_DEFAULT = -1,
 
  65         HPSB_ISO_DMA_OLD_ABI = 0,
 
  66         HPSB_ISO_DMA_BUFFERFILL = 1,
 
  67         HPSB_ISO_DMA_PACKET_PER_BUFFER = 2
 
  71         enum hpsb_iso_type type;
 
  73         /* pointer to low-level driver and its private data */
 
  74         struct hpsb_host *host;
 
  77         /* a function to be called (from interrupt context) after
 
  78            outgoing packets have been sent, or incoming packets have
 
  80         void (*callback)(struct hpsb_iso*);
 
  82         /* wait for buffer space */
 
  83         wait_queue_head_t waitq;
 
  85         int speed; /* IEEE1394_SPEED_100, 200, or 400 */
 
  86         int channel; /* -1 if multichannel */
 
  87         int dma_mode; /* dma receive mode */
 
  90         /* greatest # of packets between interrupts - controls
 
  91            the maximum latency of the buffer */
 
  94         /* the buffer for packet data payloads */
 
  95         struct dma_region data_buf;
 
  97         /* size of data_buf, in bytes (always a multiple of PAGE_SIZE) */
 
  98         unsigned int buf_size;
 
 100         /* # of packets in the ringbuffer */
 
 101         unsigned int buf_packets;
 
 103         /* protects packet cursors */
 
 106         /* the index of the next packet that will be produced
 
 107            or consumed by the user */
 
 110         /* the index of the next packet that will be transmitted
 
 111            or received by the 1394 hardware */
 
 114         /* how many packets, starting at first_packet:
 
 115            (transmit) are ready to be filled with data
 
 116            (receive)  contain received data */
 
 119         /* how many times the buffer has overflowed or underflowed */
 
 122         /* Current number of bytes lost in discarded packets */
 
 125         /* private flags to track initialization progress */
 
 126 #define HPSB_ISO_DRIVER_INIT     (1<<0)
 
 127 #define HPSB_ISO_DRIVER_STARTED  (1<<1)
 
 130         /* # of packets left to prebuffer (xmit only) */
 
 133         /* starting cycle for DMA (xmit only) */
 
 136         /* cycle at which next packet will be transmitted,
 
 140         /* ringbuffer of packet descriptors in regular kernel memory
 
 141          * XXX Keep this last, since we use over-allocated memory from
 
 142          * this entry to fill this field. */
 
 143         struct hpsb_iso_packet_info *infos;
 
 146 /* functions available to high-level drivers (e.g. raw1394) */
 
 148 /* allocate the buffer and DMA context */
 
 150 struct hpsb_iso* hpsb_iso_xmit_init(struct hpsb_host *host,
 
 151                                     unsigned int data_buf_size,
 
 152                                     unsigned int buf_packets,
 
 156                                     void (*callback)(struct hpsb_iso*));
 
 158 /* note: if channel = -1, multi-channel receive is enabled */
 
 159 struct hpsb_iso* hpsb_iso_recv_init(struct hpsb_host *host,
 
 160                                     unsigned int data_buf_size,
 
 161                                     unsigned int buf_packets,
 
 165                                     void (*callback)(struct hpsb_iso*));
 
 167 /* multi-channel only */
 
 168 int hpsb_iso_recv_listen_channel(struct hpsb_iso *iso, unsigned char channel);
 
 169 int hpsb_iso_recv_unlisten_channel(struct hpsb_iso *iso, unsigned char channel);
 
 170 int hpsb_iso_recv_set_channel_mask(struct hpsb_iso *iso, u64 mask);
 
 173 int hpsb_iso_xmit_start(struct hpsb_iso *iso, int start_on_cycle, int prebuffer);
 
 174 int hpsb_iso_recv_start(struct hpsb_iso *iso, int start_on_cycle, int tag_mask, int sync);
 
 175 void hpsb_iso_stop(struct hpsb_iso *iso);
 
 177 /* deallocate buffer and DMA context */
 
 178 void hpsb_iso_shutdown(struct hpsb_iso *iso);
 
 180 /* queue a packet for transmission. 'offset' is relative to the beginning of the
 
 181    DMA buffer, where the packet's data payload should already have been placed */
 
 182 int hpsb_iso_xmit_queue_packet(struct hpsb_iso *iso, u32 offset, u16 len, u8 tag, u8 sy);
 
 184 /* wait until all queued packets have been transmitted to the bus */
 
 185 int hpsb_iso_xmit_sync(struct hpsb_iso *iso);
 
 187 /* N packets have been read out of the buffer, re-use the buffer space */
 
 188 int  hpsb_iso_recv_release_packets(struct hpsb_iso *recv, unsigned int n_packets);
 
 190 /* check for arrival of new packets immediately (even if irq_interval
 
 191    has not yet been reached) */
 
 192 int hpsb_iso_recv_flush(struct hpsb_iso *iso);
 
 194 /* returns # of packets ready to send or receive */
 
 195 int hpsb_iso_n_ready(struct hpsb_iso *iso);
 
 197 /* the following are callbacks available to low-level drivers */
 
 199 /* call after a packet has been transmitted to the bus (interrupt context is OK)
 
 200    'cycle' is the _exact_ cycle the packet was sent on
 
 201    'error' should be non-zero if some sort of error occurred when sending the packet
 
 203 void hpsb_iso_packet_sent(struct hpsb_iso *iso, int cycle, int error);
 
 205 /* call after a packet has been received (interrupt context OK) */
 
 206 void hpsb_iso_packet_received(struct hpsb_iso *iso, u32 offset, u16 len,
 
 207                               u16 total_len, u16 cycle, u8 channel, u8 tag, u8 sy);
 
 209 /* call to wake waiting processes after buffer space has opened up. */
 
 210 void hpsb_iso_wake(struct hpsb_iso *iso);
 
 212 #endif /* IEEE1394_ISO_H */