Kristian Høgsberg | 4c5a443 | 2007-05-07 20:33:37 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Char device interface. |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2005-2006 Kristian Hoegsberg <krh@bitplanet.net> |
| 5 | * |
| 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. |
| 10 | * |
| 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. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software Foundation, |
| 18 | * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 19 | */ |
| 20 | |
Kristian Høgsberg | 4c5a443 | 2007-05-07 20:33:37 -0400 | [diff] [blame] | 21 | #ifndef _LINUX_FIREWIRE_CDEV_H |
| 22 | #define _LINUX_FIREWIRE_CDEV_H |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 23 | |
Kristian Høgsberg | 04dfb8d | 2007-05-07 20:33:36 -0400 | [diff] [blame] | 24 | #include <linux/ioctl.h> |
| 25 | #include <linux/types.h> |
Kristian Høgsberg | 4c5a443 | 2007-05-07 20:33:37 -0400 | [diff] [blame] | 26 | #include <linux/firewire-constants.h> |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 27 | |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 28 | #define FW_CDEV_EVENT_BUS_RESET 0x00 |
| 29 | #define FW_CDEV_EVENT_RESPONSE 0x01 |
| 30 | #define FW_CDEV_EVENT_REQUEST 0x02 |
| 31 | #define FW_CDEV_EVENT_ISO_INTERRUPT 0x03 |
| 32 | #define FW_CDEV_EVENT_ISO_RESOURCE_ALLOCATED 0x04 |
| 33 | #define FW_CDEV_EVENT_ISO_RESOURCE_DEALLOCATED 0x05 |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 34 | |
Stefan Richter | e205597 | 2010-06-20 22:53:55 +0200 | [diff] [blame] | 35 | /* available since kernel version 2.6.36 */ |
| 36 | #define FW_CDEV_EVENT_REQUEST2 0x06 |
Stefan Richter | 850bb6f | 2010-07-16 22:25:14 +0200 | [diff] [blame] | 37 | #define FW_CDEV_EVENT_PHY_PACKET_SENT 0x07 |
Stefan Richter | bf54e14 | 2010-07-16 22:25:51 +0200 | [diff] [blame] | 38 | #define FW_CDEV_EVENT_PHY_PACKET_RECEIVED 0x08 |
Stefan Richter | e205597 | 2010-06-20 22:53:55 +0200 | [diff] [blame] | 39 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 40 | /** |
| 41 | * struct fw_cdev_event_common - Common part of all fw_cdev_event_ types |
| 42 | * @closure: For arbitrary use by userspace |
| 43 | * @type: Discriminates the fw_cdev_event_ types |
| 44 | * |
| 45 | * This struct may be used to access generic members of all fw_cdev_event_ |
| 46 | * types regardless of the specific type. |
| 47 | * |
| 48 | * Data passed in the @closure field for a request will be returned in the |
| 49 | * corresponding event. It is big enough to hold a pointer on all platforms. |
| 50 | * The ioctl used to set @closure depends on the @type of event. |
| 51 | */ |
Kristian Høgsberg | da8ecff | 2007-03-27 01:43:39 -0400 | [diff] [blame] | 52 | struct fw_cdev_event_common { |
| 53 | __u64 closure; |
| 54 | __u32 type; |
| 55 | }; |
| 56 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 57 | /** |
| 58 | * struct fw_cdev_event_bus_reset - Sent when a bus reset occurred |
| 59 | * @closure: See &fw_cdev_event_common; set by %FW_CDEV_IOC_GET_INFO ioctl |
| 60 | * @type: See &fw_cdev_event_common; always %FW_CDEV_EVENT_BUS_RESET |
| 61 | * @node_id: New node ID of this node |
| 62 | * @local_node_id: Node ID of the local node, i.e. of the controller |
| 63 | * @bm_node_id: Node ID of the bus manager |
| 64 | * @irm_node_id: Node ID of the iso resource manager |
| 65 | * @root_node_id: Node ID of the root node |
| 66 | * @generation: New bus generation |
| 67 | * |
| 68 | * This event is sent when the bus the device belongs to goes through a bus |
| 69 | * reset. It provides information about the new bus configuration, such as |
| 70 | * new node ID for this device, new root ID, and others. |
Stefan Richter | 250b2b6 | 2010-06-21 23:24:35 +0200 | [diff] [blame] | 71 | * |
| 72 | * If @bm_node_id is 0xffff right after bus reset it can be reread by an |
| 73 | * %FW_CDEV_IOC_GET_INFO ioctl after bus manager selection was finished. |
| 74 | * Kernels with ABI version < 4 do not set @bm_node_id. |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 75 | */ |
Kristian Høgsberg | 97bd9ef | 2007-03-07 12:12:41 -0500 | [diff] [blame] | 76 | struct fw_cdev_event_bus_reset { |
Kristian Høgsberg | da8ecff | 2007-03-27 01:43:39 -0400 | [diff] [blame] | 77 | __u64 closure; |
Kristian Høgsberg | 97bd9ef | 2007-03-07 12:12:41 -0500 | [diff] [blame] | 78 | __u32 type; |
| 79 | __u32 node_id; |
| 80 | __u32 local_node_id; |
| 81 | __u32 bm_node_id; |
| 82 | __u32 irm_node_id; |
| 83 | __u32 root_node_id; |
| 84 | __u32 generation; |
| 85 | }; |
| 86 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 87 | /** |
| 88 | * struct fw_cdev_event_response - Sent when a response packet was received |
Stefan Richter | d505e6e | 2010-07-17 21:36:02 +0200 | [diff] [blame] | 89 | * @closure: See &fw_cdev_event_common; set by %FW_CDEV_IOC_SEND_REQUEST |
| 90 | * or %FW_CDEV_IOC_SEND_BROADCAST_REQUEST |
| 91 | * or %FW_CDEV_IOC_SEND_STREAM_PACKET ioctl |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 92 | * @type: See &fw_cdev_event_common; always %FW_CDEV_EVENT_RESPONSE |
| 93 | * @rcode: Response code returned by the remote node |
| 94 | * @length: Data length, i.e. the response's payload size in bytes |
| 95 | * @data: Payload data, if any |
| 96 | * |
| 97 | * This event is sent when the stack receives a response to an outgoing request |
| 98 | * sent by %FW_CDEV_IOC_SEND_REQUEST ioctl. The payload data for responses |
| 99 | * carrying data (read and lock responses) follows immediately and can be |
| 100 | * accessed through the @data field. |
Stefan Richter | d505e6e | 2010-07-17 21:36:02 +0200 | [diff] [blame] | 101 | * |
| 102 | * The event is also generated after conclusions of transactions that do not |
| 103 | * involve response packets. This includes unified write transactions, |
| 104 | * broadcast write transactions, and transmission of asynchronous stream |
| 105 | * packets. @rcode indicates success or failure of such transmissions. |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 106 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 107 | struct fw_cdev_event_response { |
Kristian Høgsberg | da8ecff | 2007-03-27 01:43:39 -0400 | [diff] [blame] | 108 | __u64 closure; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 109 | __u32 type; |
| 110 | __u32 rcode; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 111 | __u32 length; |
| 112 | __u32 data[0]; |
| 113 | }; |
| 114 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 115 | /** |
Stefan Richter | e205597 | 2010-06-20 22:53:55 +0200 | [diff] [blame] | 116 | * struct fw_cdev_event_request - Old version of &fw_cdev_event_request2 |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 117 | * @closure: See &fw_cdev_event_common; set by %FW_CDEV_IOC_ALLOCATE ioctl |
| 118 | * @type: See &fw_cdev_event_common; always %FW_CDEV_EVENT_REQUEST |
Stefan Richter | e205597 | 2010-06-20 22:53:55 +0200 | [diff] [blame] | 119 | * @tcode: See &fw_cdev_event_request2 |
| 120 | * @offset: See &fw_cdev_event_request2 |
| 121 | * @handle: See &fw_cdev_event_request2 |
| 122 | * @length: See &fw_cdev_event_request2 |
| 123 | * @data: See &fw_cdev_event_request2 |
| 124 | * |
| 125 | * This event is sent instead of &fw_cdev_event_request2 if the kernel or |
| 126 | * the client implements ABI version <= 3. |
| 127 | * |
| 128 | * Unlike &fw_cdev_event_request2, the sender identity cannot be established, |
| 129 | * broadcast write requests cannot be distinguished from unicast writes, and |
| 130 | * @tcode of lock requests is %TCODE_LOCK_REQUEST. |
| 131 | * |
| 132 | * Requests to the FCP_REQUEST or FCP_RESPONSE register are responded to as |
| 133 | * with &fw_cdev_event_request2, except in kernel 2.6.32 and older which send |
| 134 | * the response packet of the client's %FW_CDEV_IOC_SEND_RESPONSE ioctl. |
| 135 | */ |
| 136 | struct fw_cdev_event_request { |
| 137 | __u64 closure; |
| 138 | __u32 type; |
| 139 | __u32 tcode; |
| 140 | __u64 offset; |
| 141 | __u32 handle; |
| 142 | __u32 length; |
| 143 | __u32 data[0]; |
| 144 | }; |
| 145 | |
| 146 | /** |
| 147 | * struct fw_cdev_event_request2 - Sent on incoming request to an address region |
| 148 | * @closure: See &fw_cdev_event_common; set by %FW_CDEV_IOC_ALLOCATE ioctl |
| 149 | * @type: See &fw_cdev_event_common; always %FW_CDEV_EVENT_REQUEST2 |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 150 | * @tcode: Transaction code of the incoming request |
| 151 | * @offset: The offset into the 48-bit per-node address space |
Stefan Richter | e205597 | 2010-06-20 22:53:55 +0200 | [diff] [blame] | 152 | * @source_node_id: Sender node ID |
| 153 | * @destination_node_id: Destination node ID |
| 154 | * @card: The index of the card from which the request came |
| 155 | * @generation: Bus generation in which the request is valid |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 156 | * @handle: Reference to the kernel-side pending request |
| 157 | * @length: Data length, i.e. the request's payload size in bytes |
| 158 | * @data: Incoming data, if any |
| 159 | * |
| 160 | * This event is sent when the stack receives an incoming request to an address |
| 161 | * region registered using the %FW_CDEV_IOC_ALLOCATE ioctl. The request is |
| 162 | * guaranteed to be completely contained in the specified region. Userspace is |
| 163 | * responsible for sending the response by %FW_CDEV_IOC_SEND_RESPONSE ioctl, |
| 164 | * using the same @handle. |
| 165 | * |
| 166 | * The payload data for requests carrying data (write and lock requests) |
| 167 | * follows immediately and can be accessed through the @data field. |
Stefan Richter | e205597 | 2010-06-20 22:53:55 +0200 | [diff] [blame] | 168 | * |
| 169 | * Unlike &fw_cdev_event_request, @tcode of lock requests is one of the |
| 170 | * firewire-core specific %TCODE_LOCK_MASK_SWAP...%TCODE_LOCK_VENDOR_DEPENDENT, |
| 171 | * i.e. encodes the extended transaction code. |
| 172 | * |
| 173 | * @card may differ from &fw_cdev_get_info.card because requests are received |
| 174 | * from all cards of the Linux host. @source_node_id, @destination_node_id, and |
| 175 | * @generation pertain to that card. Destination node ID and bus generation may |
| 176 | * therefore differ from the corresponding fields of the last |
| 177 | * &fw_cdev_event_bus_reset. |
| 178 | * |
| 179 | * @destination_node_id may also differ from the current node ID because of a |
| 180 | * non-local bus ID part or in case of a broadcast write request. Note, a |
| 181 | * client must call an %FW_CDEV_IOC_SEND_RESPONSE ioctl even in case of a |
| 182 | * broadcast write request; the kernel will then release the kernel-side pending |
| 183 | * request but will not actually send a response packet. |
| 184 | * |
| 185 | * In case of a write request to FCP_REQUEST or FCP_RESPONSE, the kernel already |
| 186 | * sent a write response immediately after the request was received; in this |
| 187 | * case the client must still call an %FW_CDEV_IOC_SEND_RESPONSE ioctl to |
| 188 | * release the kernel-side pending request, though another response won't be |
| 189 | * sent. |
| 190 | * |
| 191 | * If the client subsequently needs to initiate requests to the sender node of |
| 192 | * an &fw_cdev_event_request2, it needs to use a device file with matching |
| 193 | * card index, node ID, and generation for outbound requests. |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 194 | */ |
Stefan Richter | e205597 | 2010-06-20 22:53:55 +0200 | [diff] [blame] | 195 | struct fw_cdev_event_request2 { |
Kristian Høgsberg | da8ecff | 2007-03-27 01:43:39 -0400 | [diff] [blame] | 196 | __u64 closure; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 197 | __u32 type; |
| 198 | __u32 tcode; |
| 199 | __u64 offset; |
Stefan Richter | e205597 | 2010-06-20 22:53:55 +0200 | [diff] [blame] | 200 | __u32 source_node_id; |
| 201 | __u32 destination_node_id; |
| 202 | __u32 card; |
| 203 | __u32 generation; |
Kristian Høgsberg | 3964a44 | 2007-03-27 01:43:41 -0400 | [diff] [blame] | 204 | __u32 handle; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 205 | __u32 length; |
| 206 | __u32 data[0]; |
| 207 | }; |
| 208 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 209 | /** |
| 210 | * struct fw_cdev_event_iso_interrupt - Sent when an iso packet was completed |
| 211 | * @closure: See &fw_cdev_event_common; |
| 212 | * set by %FW_CDEV_CREATE_ISO_CONTEXT ioctl |
| 213 | * @type: See &fw_cdev_event_common; always %FW_CDEV_EVENT_ISO_INTERRUPT |
| 214 | * @cycle: Cycle counter of the interrupt packet |
| 215 | * @header_length: Total length of following headers, in bytes |
| 216 | * @header: Stripped headers, if any |
| 217 | * |
| 218 | * This event is sent when the controller has completed an &fw_cdev_iso_packet |
Stefan Richter | 3b2b65d | 2010-06-20 22:54:22 +0200 | [diff] [blame] | 219 | * with the %FW_CDEV_ISO_INTERRUPT bit set. |
| 220 | * |
| 221 | * Isochronous transmit events: |
| 222 | * |
| 223 | * In version 1 of the ABI, &header_length is 0. In version 3 and some |
| 224 | * implementations of version 2 of the ABI, &header_length is a multiple of 4 |
| 225 | * and &header contains timestamps of all packets up until the interrupt packet. |
| 226 | * The format of the timestamps is as described below for isochronous reception. |
| 227 | * |
| 228 | * Isochronous receive events: |
| 229 | * |
| 230 | * The headers stripped of all packets up until and including the interrupt |
| 231 | * packet are returned in the @header field. The amount of header data per |
| 232 | * packet is as specified at iso context creation by |
| 233 | * &fw_cdev_create_iso_context.header_size. |
Stefan Richter | 77258da | 2009-01-07 20:14:53 +0100 | [diff] [blame] | 234 | * |
| 235 | * In version 1 of this ABI, header data consisted of the 1394 isochronous |
| 236 | * packet header, followed by quadlets from the packet payload if |
| 237 | * &fw_cdev_create_iso_context.header_size > 4. |
| 238 | * |
| 239 | * In version 2 of this ABI, header data consist of the 1394 isochronous |
| 240 | * packet header, followed by a timestamp quadlet if |
| 241 | * &fw_cdev_create_iso_context.header_size > 4, followed by quadlets from the |
| 242 | * packet payload if &fw_cdev_create_iso_context.header_size > 8. |
| 243 | * |
| 244 | * Behaviour of ver. 1 of this ABI is no longer available since ABI ver. 2. |
| 245 | * |
| 246 | * Format of 1394 iso packet header: 16 bits len, 2 bits tag, 6 bits channel, |
| 247 | * 4 bits tcode, 4 bits sy, in big endian byte order. Format of timestamp: |
| 248 | * 16 bits invalid, 3 bits cycleSeconds, 13 bits cycleCount, in big endian byte |
| 249 | * order. |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 250 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 251 | struct fw_cdev_event_iso_interrupt { |
Kristian Høgsberg | da8ecff | 2007-03-27 01:43:39 -0400 | [diff] [blame] | 252 | __u64 closure; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 253 | __u32 type; |
| 254 | __u32 cycle; |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 255 | __u32 header_length; |
Kristian Høgsberg | 9b32d5f | 2007-02-16 17:34:44 -0500 | [diff] [blame] | 256 | __u32 header[0]; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 257 | }; |
| 258 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 259 | /** |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 260 | * struct fw_cdev_event_iso_resource - Iso resources were allocated or freed |
| 261 | * @closure: See &fw_cdev_event_common; |
Stefan Richter | 1ec3c02 | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 262 | * set by %FW_CDEV_IOC_(DE)ALLOCATE_ISO_RESOURCE(_ONCE) ioctl |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 263 | * @type: %FW_CDEV_EVENT_ISO_RESOURCE_ALLOCATED or |
| 264 | * %FW_CDEV_EVENT_ISO_RESOURCE_DEALLOCATED |
| 265 | * @handle: Reference by which an allocated resource can be deallocated |
| 266 | * @channel: Isochronous channel which was (de)allocated, if any |
| 267 | * @bandwidth: Bandwidth allocation units which were (de)allocated, if any |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 268 | * |
| 269 | * An %FW_CDEV_EVENT_ISO_RESOURCE_ALLOCATED event is sent after an isochronous |
| 270 | * resource was allocated at the IRM. The client has to check @channel and |
| 271 | * @bandwidth for whether the allocation actually succeeded. |
| 272 | * |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 273 | * An %FW_CDEV_EVENT_ISO_RESOURCE_DEALLOCATED event is sent after an isochronous |
| 274 | * resource was deallocated at the IRM. It is also sent when automatic |
| 275 | * reallocation after a bus reset failed. |
Stefan Richter | 1ec3c02 | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 276 | * |
| 277 | * @channel is <0 if no channel was (de)allocated or if reallocation failed. |
| 278 | * @bandwidth is 0 if no bandwidth was (de)allocated or if reallocation failed. |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 279 | */ |
| 280 | struct fw_cdev_event_iso_resource { |
| 281 | __u64 closure; |
| 282 | __u32 type; |
| 283 | __u32 handle; |
| 284 | __s32 channel; |
| 285 | __s32 bandwidth; |
| 286 | }; |
| 287 | |
| 288 | /** |
Stefan Richter | bf54e14 | 2010-07-16 22:25:51 +0200 | [diff] [blame] | 289 | * struct fw_cdev_event_phy_packet - A PHY packet was transmitted or received |
| 290 | * @closure: See &fw_cdev_event_common; set by %FW_CDEV_IOC_SEND_PHY_PACKET |
| 291 | * or %FW_CDEV_IOC_RECEIVE_PHY_PACKETS ioctl |
| 292 | * @type: %FW_CDEV_EVENT_PHY_PACKET_SENT or %..._RECEIVED |
Stefan Richter | 850bb6f | 2010-07-16 22:25:14 +0200 | [diff] [blame] | 293 | * @rcode: %RCODE_..., indicates success or failure of transmission |
Stefan Richter | bf54e14 | 2010-07-16 22:25:51 +0200 | [diff] [blame] | 294 | * @length: Data length in bytes |
| 295 | * @data: Incoming data |
| 296 | * |
Stefan Richter | cc55021 | 2010-07-18 13:00:50 +0200 | [diff] [blame] | 297 | * If @type is %FW_CDEV_EVENT_PHY_PACKET_SENT, @length is 0 and @data empty, |
| 298 | * except in case of a ping packet: Then, @length is 4, and @data[0] is the |
| 299 | * ping time in 49.152MHz clocks if @rcode is %RCODE_COMPLETE. |
| 300 | * |
Stefan Richter | bf54e14 | 2010-07-16 22:25:51 +0200 | [diff] [blame] | 301 | * If @type is %FW_CDEV_EVENT_PHY_PACKET_RECEIVED, @length is 8 and @data |
| 302 | * consists of the two PHY packet quadlets, in host byte order. |
Stefan Richter | 850bb6f | 2010-07-16 22:25:14 +0200 | [diff] [blame] | 303 | */ |
| 304 | struct fw_cdev_event_phy_packet { |
| 305 | __u64 closure; |
| 306 | __u32 type; |
| 307 | __u32 rcode; |
Stefan Richter | bf54e14 | 2010-07-16 22:25:51 +0200 | [diff] [blame] | 308 | __u32 length; |
| 309 | __u32 data[0]; |
Stefan Richter | 850bb6f | 2010-07-16 22:25:14 +0200 | [diff] [blame] | 310 | }; |
| 311 | |
| 312 | /** |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 313 | * union fw_cdev_event - Convenience union of fw_cdev_event_ types |
| 314 | * @common: Valid for all types |
| 315 | * @bus_reset: Valid if @common.type == %FW_CDEV_EVENT_BUS_RESET |
| 316 | * @response: Valid if @common.type == %FW_CDEV_EVENT_RESPONSE |
| 317 | * @request: Valid if @common.type == %FW_CDEV_EVENT_REQUEST |
Stefan Richter | e205597 | 2010-06-20 22:53:55 +0200 | [diff] [blame] | 318 | * @request2: Valid if @common.type == %FW_CDEV_EVENT_REQUEST2 |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 319 | * @iso_interrupt: Valid if @common.type == %FW_CDEV_EVENT_ISO_INTERRUPT |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 320 | * @iso_resource: Valid if @common.type == |
| 321 | * %FW_CDEV_EVENT_ISO_RESOURCE_ALLOCATED or |
| 322 | * %FW_CDEV_EVENT_ISO_RESOURCE_DEALLOCATED |
Stefan Richter | bf54e14 | 2010-07-16 22:25:51 +0200 | [diff] [blame] | 323 | * @phy_packet: Valid if @common.type == |
| 324 | * %FW_CDEV_EVENT_PHY_PACKET_SENT or |
| 325 | * %FW_CDEV_EVENT_PHY_PACKET_RECEIVED |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 326 | * |
Jay Fenlason | be585c0 | 2008-10-01 18:13:20 -0400 | [diff] [blame] | 327 | * Convenience union for userspace use. Events could be read(2) into an |
| 328 | * appropriately aligned char buffer and then cast to this union for further |
| 329 | * processing. Note that for a request, response or iso_interrupt event, |
| 330 | * the data[] or header[] may make the size of the full event larger than |
| 331 | * sizeof(union fw_cdev_event). Also note that if you attempt to read(2) |
| 332 | * an event into a buffer that is not large enough for it, the data that does |
| 333 | * not fit will be discarded so that the next read(2) will return a new event. |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 334 | */ |
Kristian Høgsberg | da8ecff | 2007-03-27 01:43:39 -0400 | [diff] [blame] | 335 | union fw_cdev_event { |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 336 | struct fw_cdev_event_common common; |
| 337 | struct fw_cdev_event_bus_reset bus_reset; |
| 338 | struct fw_cdev_event_response response; |
| 339 | struct fw_cdev_event_request request; |
Stefan Richter | e205597 | 2010-06-20 22:53:55 +0200 | [diff] [blame] | 340 | struct fw_cdev_event_request2 request2; /* added in 2.6.36 */ |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 341 | struct fw_cdev_event_iso_interrupt iso_interrupt; |
Stefan Richter | 604f451 | 2010-06-20 22:52:55 +0200 | [diff] [blame] | 342 | struct fw_cdev_event_iso_resource iso_resource; /* added in 2.6.30 */ |
Stefan Richter | 850bb6f | 2010-07-16 22:25:14 +0200 | [diff] [blame] | 343 | struct fw_cdev_event_phy_packet phy_packet; /* added in 2.6.36 */ |
Kristian Høgsberg | da8ecff | 2007-03-27 01:43:39 -0400 | [diff] [blame] | 344 | }; |
| 345 | |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 346 | /* available since kernel version 2.6.22 */ |
Stefan Richter | c8a2590 | 2009-03-10 20:59:16 +0100 | [diff] [blame] | 347 | #define FW_CDEV_IOC_GET_INFO _IOWR('#', 0x00, struct fw_cdev_get_info) |
| 348 | #define FW_CDEV_IOC_SEND_REQUEST _IOW('#', 0x01, struct fw_cdev_send_request) |
| 349 | #define FW_CDEV_IOC_ALLOCATE _IOWR('#', 0x02, struct fw_cdev_allocate) |
| 350 | #define FW_CDEV_IOC_DEALLOCATE _IOW('#', 0x03, struct fw_cdev_deallocate) |
| 351 | #define FW_CDEV_IOC_SEND_RESPONSE _IOW('#', 0x04, struct fw_cdev_send_response) |
| 352 | #define FW_CDEV_IOC_INITIATE_BUS_RESET _IOW('#', 0x05, struct fw_cdev_initiate_bus_reset) |
| 353 | #define FW_CDEV_IOC_ADD_DESCRIPTOR _IOWR('#', 0x06, struct fw_cdev_add_descriptor) |
| 354 | #define FW_CDEV_IOC_REMOVE_DESCRIPTOR _IOW('#', 0x07, struct fw_cdev_remove_descriptor) |
| 355 | #define FW_CDEV_IOC_CREATE_ISO_CONTEXT _IOWR('#', 0x08, struct fw_cdev_create_iso_context) |
| 356 | #define FW_CDEV_IOC_QUEUE_ISO _IOWR('#', 0x09, struct fw_cdev_queue_iso) |
| 357 | #define FW_CDEV_IOC_START_ISO _IOW('#', 0x0a, struct fw_cdev_start_iso) |
| 358 | #define FW_CDEV_IOC_STOP_ISO _IOW('#', 0x0b, struct fw_cdev_stop_iso) |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 359 | |
| 360 | /* available since kernel version 2.6.24 */ |
Stefan Richter | c8a2590 | 2009-03-10 20:59:16 +0100 | [diff] [blame] | 361 | #define FW_CDEV_IOC_GET_CYCLE_TIMER _IOR('#', 0x0c, struct fw_cdev_get_cycle_timer) |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 362 | |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 363 | /* available since kernel version 2.6.30 */ |
Stefan Richter | 1ec3c02 | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 364 | #define FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE _IOWR('#', 0x0d, struct fw_cdev_allocate_iso_resource) |
| 365 | #define FW_CDEV_IOC_DEALLOCATE_ISO_RESOURCE _IOW('#', 0x0e, struct fw_cdev_deallocate) |
| 366 | #define FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE_ONCE _IOW('#', 0x0f, struct fw_cdev_allocate_iso_resource) |
| 367 | #define FW_CDEV_IOC_DEALLOCATE_ISO_RESOURCE_ONCE _IOW('#', 0x10, struct fw_cdev_allocate_iso_resource) |
Stefan Richter | c8a2590 | 2009-03-10 20:59:16 +0100 | [diff] [blame] | 368 | #define FW_CDEV_IOC_GET_SPEED _IO('#', 0x11) /* returns speed code */ |
Jay Fenlason, Stefan Richter | acfe833 | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 369 | #define FW_CDEV_IOC_SEND_BROADCAST_REQUEST _IOW('#', 0x12, struct fw_cdev_send_request) |
Jay Fenlason | f8c2287 | 2009-03-05 19:08:40 +0100 | [diff] [blame] | 370 | #define FW_CDEV_IOC_SEND_STREAM_PACKET _IOW('#', 0x13, struct fw_cdev_send_stream_packet) |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 371 | |
Stefan Richter | abfe5a0 | 2010-02-20 12:13:49 +0100 | [diff] [blame] | 372 | /* available since kernel version 2.6.34 */ |
| 373 | #define FW_CDEV_IOC_GET_CYCLE_TIMER2 _IOWR('#', 0x14, struct fw_cdev_get_cycle_timer2) |
| 374 | |
Stefan Richter | 850bb6f | 2010-07-16 22:25:14 +0200 | [diff] [blame] | 375 | /* available since kernel version 2.6.36 */ |
| 376 | #define FW_CDEV_IOC_SEND_PHY_PACKET _IOWR('#', 0x15, struct fw_cdev_send_phy_packet) |
Stefan Richter | bf54e14 | 2010-07-16 22:25:51 +0200 | [diff] [blame] | 377 | #define FW_CDEV_IOC_RECEIVE_PHY_PACKETS _IOW('#', 0x16, struct fw_cdev_receive_phy_packets) |
Stefan Richter | 850bb6f | 2010-07-16 22:25:14 +0200 | [diff] [blame] | 378 | |
Stefan Richter | 77258da | 2009-01-07 20:14:53 +0100 | [diff] [blame] | 379 | /* |
Stefan Richter | 604f451 | 2010-06-20 22:52:55 +0200 | [diff] [blame] | 380 | * ABI version history |
Stefan Richter | 77258da | 2009-01-07 20:14:53 +0100 | [diff] [blame] | 381 | * 1 (2.6.22) - initial version |
Stefan Richter | 604f451 | 2010-06-20 22:52:55 +0200 | [diff] [blame] | 382 | * (2.6.24) - added %FW_CDEV_IOC_GET_CYCLE_TIMER |
Stefan Richter | 77258da | 2009-01-07 20:14:53 +0100 | [diff] [blame] | 383 | * 2 (2.6.30) - changed &fw_cdev_event_iso_interrupt.header if |
| 384 | * &fw_cdev_create_iso_context.header_size is 8 or more |
Stefan Richter | 604f451 | 2010-06-20 22:52:55 +0200 | [diff] [blame] | 385 | * - added %FW_CDEV_IOC_*_ISO_RESOURCE*, |
| 386 | * %FW_CDEV_IOC_GET_SPEED, %FW_CDEV_IOC_SEND_BROADCAST_REQUEST, |
| 387 | * %FW_CDEV_IOC_SEND_STREAM_PACKET |
Stefan Richter | e94b6d7 | 2010-02-21 12:48:57 +0100 | [diff] [blame] | 388 | * (2.6.32) - added time stamp to xmit &fw_cdev_event_iso_interrupt |
| 389 | * (2.6.33) - IR has always packet-per-buffer semantics now, not one of |
| 390 | * dual-buffer or packet-per-buffer depending on hardware |
Stefan Richter | e205597 | 2010-06-20 22:53:55 +0200 | [diff] [blame] | 391 | * - shared use and auto-response for FCP registers |
Stefan Richter | e94b6d7 | 2010-02-21 12:48:57 +0100 | [diff] [blame] | 392 | * 3 (2.6.34) - made &fw_cdev_get_cycle_timer reliable |
Stefan Richter | 604f451 | 2010-06-20 22:52:55 +0200 | [diff] [blame] | 393 | * - added %FW_CDEV_IOC_GET_CYCLE_TIMER2 |
Stefan Richter | bf54e14 | 2010-07-16 22:25:51 +0200 | [diff] [blame] | 394 | * 4 (2.6.36) - added %FW_CDEV_EVENT_REQUEST2, %FW_CDEV_EVENT_PHY_PACKET_* |
Stefan Richter | 250b2b6 | 2010-06-21 23:24:35 +0200 | [diff] [blame] | 395 | * - implemented &fw_cdev_event_bus_reset.bm_node_id |
Stefan Richter | bf54e14 | 2010-07-16 22:25:51 +0200 | [diff] [blame] | 396 | * - added %FW_CDEV_IOC_SEND_PHY_PACKET, _RECEIVE_PHY_PACKETS |
Stefan Richter | 8e2b2b4 | 2010-07-23 13:05:39 +0200 | [diff] [blame] | 397 | * - added &fw_cdev_allocate.region_end |
Kristian Høgsberg | 344bbc4 | 2007-03-07 12:12:43 -0500 | [diff] [blame] | 398 | */ |
Stefan Richter | 604f451 | 2010-06-20 22:52:55 +0200 | [diff] [blame] | 399 | #define FW_CDEV_VERSION 3 /* Meaningless; don't use this macro. */ |
Kristian Høgsberg | 344bbc4 | 2007-03-07 12:12:43 -0500 | [diff] [blame] | 400 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 401 | /** |
| 402 | * struct fw_cdev_get_info - General purpose information ioctl |
Stefan Richter | 604f451 | 2010-06-20 22:52:55 +0200 | [diff] [blame] | 403 | * @version: The version field is just a running serial number. Both an |
| 404 | * input parameter (ABI version implemented by the client) and |
| 405 | * output parameter (ABI version implemented by the kernel). |
| 406 | * A client must not fill in an %FW_CDEV_VERSION defined from an |
| 407 | * included kernel header file but the actual version for which |
| 408 | * the client was implemented. This is necessary for forward |
| 409 | * compatibility. We never break backwards compatibility, but |
| 410 | * may add more structs, events, and ioctls in later revisions. |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 411 | * @rom_length: If @rom is non-zero, at most rom_length bytes of configuration |
| 412 | * ROM will be copied into that user space address. In either |
| 413 | * case, @rom_length is updated with the actual length of the |
| 414 | * configuration ROM. |
| 415 | * @rom: If non-zero, address of a buffer to be filled by a copy of the |
Stefan Richter | 632321e | 2009-01-02 12:47:13 +0100 | [diff] [blame] | 416 | * device's configuration ROM |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 417 | * @bus_reset: If non-zero, address of a buffer to be filled by a |
| 418 | * &struct fw_cdev_event_bus_reset with the current state |
| 419 | * of the bus. This does not cause a bus reset to happen. |
| 420 | * @bus_reset_closure: Value of &closure in this and subsequent bus reset events |
| 421 | * @card: The index of the card this device belongs to |
| 422 | */ |
Kristian Høgsberg | 344bbc4 | 2007-03-07 12:12:43 -0500 | [diff] [blame] | 423 | struct fw_cdev_get_info { |
Kristian Høgsberg | 344bbc4 | 2007-03-07 12:12:43 -0500 | [diff] [blame] | 424 | __u32 version; |
Kristian Høgsberg | 344bbc4 | 2007-03-07 12:12:43 -0500 | [diff] [blame] | 425 | __u32 rom_length; |
| 426 | __u64 rom; |
Kristian Høgsberg | 344bbc4 | 2007-03-07 12:12:43 -0500 | [diff] [blame] | 427 | __u64 bus_reset; |
Kristian Høgsberg | da8ecff | 2007-03-27 01:43:39 -0400 | [diff] [blame] | 428 | __u64 bus_reset_closure; |
Kristian Høgsberg | e753350 | 2007-03-07 12:12:52 -0500 | [diff] [blame] | 429 | __u32 card; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 430 | }; |
| 431 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 432 | /** |
| 433 | * struct fw_cdev_send_request - Send an asynchronous request packet |
| 434 | * @tcode: Transaction code of the request |
| 435 | * @length: Length of outgoing payload, in bytes |
| 436 | * @offset: 48-bit offset at destination node |
| 437 | * @closure: Passed back to userspace in the response event |
| 438 | * @data: Userspace pointer to payload |
| 439 | * @generation: The bus generation where packet is valid |
| 440 | * |
| 441 | * Send a request to the device. This ioctl implements all outgoing requests. |
| 442 | * Both quadlet and block request specify the payload as a pointer to the data |
| 443 | * in the @data field. Once the transaction completes, the kernel writes an |
Stefan Richter | bf8e335 | 2008-12-05 22:43:41 +0100 | [diff] [blame] | 444 | * &fw_cdev_event_response event back. The @closure field is passed back to |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 445 | * user space in the response event. |
| 446 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 447 | struct fw_cdev_send_request { |
| 448 | __u32 tcode; |
| 449 | __u32 length; |
| 450 | __u64 offset; |
| 451 | __u64 closure; |
| 452 | __u64 data; |
Kristian Høgsberg | 97e3527 | 2007-03-07 12:12:53 -0500 | [diff] [blame] | 453 | __u32 generation; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 454 | }; |
| 455 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 456 | /** |
| 457 | * struct fw_cdev_send_response - Send an asynchronous response packet |
| 458 | * @rcode: Response code as determined by the userspace handler |
| 459 | * @length: Length of outgoing payload, in bytes |
| 460 | * @data: Userspace pointer to payload |
| 461 | * @handle: The handle from the &fw_cdev_event_request |
| 462 | * |
| 463 | * Send a response to an incoming request. By setting up an address range using |
| 464 | * the %FW_CDEV_IOC_ALLOCATE ioctl, userspace can listen for incoming requests. An |
| 465 | * incoming request will generate an %FW_CDEV_EVENT_REQUEST, and userspace must |
| 466 | * send a reply using this ioctl. The event has a handle to the kernel-side |
| 467 | * pending transaction, which should be used with this ioctl. |
| 468 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 469 | struct fw_cdev_send_response { |
| 470 | __u32 rcode; |
| 471 | __u32 length; |
| 472 | __u64 data; |
Kristian Høgsberg | 3964a44 | 2007-03-27 01:43:41 -0400 | [diff] [blame] | 473 | __u32 handle; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 474 | }; |
| 475 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 476 | /** |
Stefan Richter | 8e2b2b4 | 2010-07-23 13:05:39 +0200 | [diff] [blame] | 477 | * struct fw_cdev_allocate - Allocate a CSR in an address range |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 478 | * @offset: Start offset of the address range |
| 479 | * @closure: To be passed back to userspace in request events |
Stefan Richter | 8e2b2b4 | 2010-07-23 13:05:39 +0200 | [diff] [blame] | 480 | * @length: Length of the CSR, in bytes |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 481 | * @handle: Handle to the allocation, written by the kernel |
Stefan Richter | 8e2b2b4 | 2010-07-23 13:05:39 +0200 | [diff] [blame] | 482 | * @region_end: First address above the address range (added in ABI v4, 2.6.36) |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 483 | * |
| 484 | * Allocate an address range in the 48-bit address space on the local node |
| 485 | * (the controller). This allows userspace to listen for requests with an |
Stefan Richter | 8e2b2b4 | 2010-07-23 13:05:39 +0200 | [diff] [blame] | 486 | * offset within that address range. Every time when the kernel receives a |
| 487 | * request within the range, an &fw_cdev_event_request2 event will be emitted. |
| 488 | * (If the kernel or the client implements ABI version <= 3, an |
| 489 | * &fw_cdev_event_request will be generated instead.) |
| 490 | * |
| 491 | * The @closure field is passed back to userspace in these request events. |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 492 | * The @handle field is an out parameter, returning a handle to the allocated |
| 493 | * range to be used for later deallocation of the range. |
Clemens Ladisch | db5d247 | 2009-12-24 12:05:58 +0100 | [diff] [blame] | 494 | * |
| 495 | * The address range is allocated on all local nodes. The address allocation |
Stefan Richter | d505e6e | 2010-07-17 21:36:02 +0200 | [diff] [blame] | 496 | * is exclusive except for the FCP command and response registers. If an |
| 497 | * exclusive address region is already in use, the ioctl fails with errno set |
| 498 | * to %EBUSY. |
Stefan Richter | 8e2b2b4 | 2010-07-23 13:05:39 +0200 | [diff] [blame] | 499 | * |
| 500 | * If kernel and client implement ABI version >= 4, the kernel looks up a free |
| 501 | * spot of size @length inside [@offset..@region_end) and, if found, writes |
| 502 | * the start address of the new CSR back in @offset. I.e. @offset is an |
| 503 | * in and out parameter. If this automatic placement of a CSR in a bigger |
| 504 | * address range is not desired, the client simply needs to set @region_end |
| 505 | * = @offset + @length. |
| 506 | * |
| 507 | * If the kernel or the client implements ABI version <= 3, @region_end is |
| 508 | * ignored and effectively assumed to be @offset + @length. |
| 509 | * |
| 510 | * @region_end is only present in a kernel header >= 2.6.36. If necessary, |
| 511 | * this can for example be tested by #ifdef FW_CDEV_EVENT_REQUEST2. |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 512 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 513 | struct fw_cdev_allocate { |
| 514 | __u64 offset; |
| 515 | __u64 closure; |
| 516 | __u32 length; |
Kristian Høgsberg | 3964a44 | 2007-03-27 01:43:41 -0400 | [diff] [blame] | 517 | __u32 handle; |
Stefan Richter | 8e2b2b4 | 2010-07-23 13:05:39 +0200 | [diff] [blame] | 518 | __u64 region_end; /* available since kernel version 2.6.36 */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 519 | }; |
| 520 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 521 | /** |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 522 | * struct fw_cdev_deallocate - Free a CSR address range or isochronous resource |
| 523 | * @handle: Handle to the address range or iso resource, as returned by the |
| 524 | * kernel when the range or resource was allocated |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 525 | */ |
Kristian Høgsberg | 9472316 | 2007-03-14 17:34:55 -0400 | [diff] [blame] | 526 | struct fw_cdev_deallocate { |
Kristian Høgsberg | 3964a44 | 2007-03-27 01:43:41 -0400 | [diff] [blame] | 527 | __u32 handle; |
Kristian Høgsberg | 9472316 | 2007-03-14 17:34:55 -0400 | [diff] [blame] | 528 | }; |
| 529 | |
Kristian Høgsberg | 5371842 | 2007-03-07 12:12:42 -0500 | [diff] [blame] | 530 | #define FW_CDEV_LONG_RESET 0 |
| 531 | #define FW_CDEV_SHORT_RESET 1 |
| 532 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 533 | /** |
| 534 | * struct fw_cdev_initiate_bus_reset - Initiate a bus reset |
| 535 | * @type: %FW_CDEV_SHORT_RESET or %FW_CDEV_LONG_RESET |
| 536 | * |
| 537 | * Initiate a bus reset for the bus this device is on. The bus reset can be |
| 538 | * either the original (long) bus reset or the arbitrated (short) bus reset |
| 539 | * introduced in 1394a-2000. |
Stefan Richter | d505e6e | 2010-07-17 21:36:02 +0200 | [diff] [blame] | 540 | * |
| 541 | * The ioctl returns immediately. A subsequent &fw_cdev_event_bus_reset |
| 542 | * indicates when the reset actually happened. Since ABI v4, this may be |
| 543 | * considerably later than the ioctl because the kernel ensures a grace period |
| 544 | * between subsequent bus resets as per IEEE 1394 bus management specification. |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 545 | */ |
Kristian Høgsberg | 5371842 | 2007-03-07 12:12:42 -0500 | [diff] [blame] | 546 | struct fw_cdev_initiate_bus_reset { |
Stefan Richter | d505e6e | 2010-07-17 21:36:02 +0200 | [diff] [blame] | 547 | __u32 type; |
Kristian Høgsberg | 5371842 | 2007-03-07 12:12:42 -0500 | [diff] [blame] | 548 | }; |
| 549 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 550 | /** |
| 551 | * struct fw_cdev_add_descriptor - Add contents to the local node's config ROM |
| 552 | * @immediate: If non-zero, immediate key to insert before pointer |
| 553 | * @key: Upper 8 bits of root directory pointer |
| 554 | * @data: Userspace pointer to contents of descriptor block |
Stefan Richter | 6d3faf6 | 2010-01-24 14:48:00 +0100 | [diff] [blame] | 555 | * @length: Length of descriptor block data, in quadlets |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 556 | * @handle: Handle to the descriptor, written by the kernel |
| 557 | * |
| 558 | * Add a descriptor block and optionally a preceding immediate key to the local |
| 559 | * node's configuration ROM. |
| 560 | * |
| 561 | * The @key field specifies the upper 8 bits of the descriptor root directory |
| 562 | * pointer and the @data and @length fields specify the contents. The @key |
| 563 | * should be of the form 0xXX000000. The offset part of the root directory entry |
| 564 | * will be filled in by the kernel. |
| 565 | * |
| 566 | * If not 0, the @immediate field specifies an immediate key which will be |
| 567 | * inserted before the root directory pointer. |
| 568 | * |
Stefan Richter | 6d3faf6 | 2010-01-24 14:48:00 +0100 | [diff] [blame] | 569 | * @immediate, @key, and @data array elements are CPU-endian quadlets. |
| 570 | * |
Stefan Richter | d505e6e | 2010-07-17 21:36:02 +0200 | [diff] [blame] | 571 | * If successful, the kernel adds the descriptor and writes back a @handle to |
| 572 | * the kernel-side object to be used for later removal of the descriptor block |
| 573 | * and immediate key. The kernel will also generate a bus reset to signal the |
| 574 | * change of the configuration ROM to other nodes. |
Stefan Richter | de487da | 2009-03-10 21:00:23 +0100 | [diff] [blame] | 575 | * |
| 576 | * This ioctl affects the configuration ROMs of all local nodes. |
| 577 | * The ioctl only succeeds on device files which represent a local node. |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 578 | */ |
Kristian Høgsberg | 66dea3e | 2007-03-28 21:26:42 +0200 | [diff] [blame] | 579 | struct fw_cdev_add_descriptor { |
| 580 | __u32 immediate; |
| 581 | __u32 key; |
| 582 | __u64 data; |
| 583 | __u32 length; |
| 584 | __u32 handle; |
| 585 | }; |
| 586 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 587 | /** |
| 588 | * struct fw_cdev_remove_descriptor - Remove contents from the configuration ROM |
| 589 | * @handle: Handle to the descriptor, as returned by the kernel when the |
| 590 | * descriptor was added |
| 591 | * |
| 592 | * Remove a descriptor block and accompanying immediate key from the local |
Stefan Richter | d505e6e | 2010-07-17 21:36:02 +0200 | [diff] [blame] | 593 | * nodes' configuration ROMs. The kernel will also generate a bus reset to |
| 594 | * signal the change of the configuration ROM to other nodes. |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 595 | */ |
Kristian Høgsberg | 66dea3e | 2007-03-28 21:26:42 +0200 | [diff] [blame] | 596 | struct fw_cdev_remove_descriptor { |
| 597 | __u32 handle; |
| 598 | }; |
| 599 | |
Kristian Høgsberg | 295e3fe | 2007-02-16 17:34:40 -0500 | [diff] [blame] | 600 | #define FW_CDEV_ISO_CONTEXT_TRANSMIT 0 |
| 601 | #define FW_CDEV_ISO_CONTEXT_RECEIVE 1 |
| 602 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 603 | /** |
| 604 | * struct fw_cdev_create_iso_context - Create a context for isochronous IO |
| 605 | * @type: %FW_CDEV_ISO_CONTEXT_TRANSMIT or %FW_CDEV_ISO_CONTEXT_RECEIVE |
| 606 | * @header_size: Header size to strip for receive contexts |
| 607 | * @channel: Channel to bind to |
Clemens Ladisch | aa6fec3 | 2010-03-31 16:26:52 +0200 | [diff] [blame] | 608 | * @speed: Speed for transmit contexts |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 609 | * @closure: To be returned in &fw_cdev_event_iso_interrupt |
| 610 | * @handle: Handle to context, written back by kernel |
| 611 | * |
| 612 | * Prior to sending or receiving isochronous I/O, a context must be created. |
| 613 | * The context records information about the transmit or receive configuration |
| 614 | * and typically maps to an underlying hardware resource. A context is set up |
| 615 | * for either sending or receiving. It is bound to a specific isochronous |
| 616 | * channel. |
| 617 | * |
| 618 | * If a context was successfully created, the kernel writes back a handle to the |
| 619 | * context, which must be passed in for subsequent operations on that context. |
Stefan Richter | 77258da | 2009-01-07 20:14:53 +0100 | [diff] [blame] | 620 | * |
Clemens Ladisch | aa6fec3 | 2010-03-31 16:26:52 +0200 | [diff] [blame] | 621 | * For receive contexts, @header_size must be at least 4 and must be a multiple |
| 622 | * of 4. |
| 623 | * |
Stefan Richter | 77258da | 2009-01-07 20:14:53 +0100 | [diff] [blame] | 624 | * Note that the effect of a @header_size > 4 depends on |
| 625 | * &fw_cdev_get_info.version, as documented at &fw_cdev_event_iso_interrupt. |
Stefan Richter | d505e6e | 2010-07-17 21:36:02 +0200 | [diff] [blame] | 626 | * |
| 627 | * No more than one iso context can be created per fd. |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 628 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 629 | struct fw_cdev_create_iso_context { |
Kristian Høgsberg | 295e3fe | 2007-02-16 17:34:40 -0500 | [diff] [blame] | 630 | __u32 type; |
| 631 | __u32 header_size; |
Kristian Høgsberg | 21efb3c | 2007-02-16 17:34:50 -0500 | [diff] [blame] | 632 | __u32 channel; |
| 633 | __u32 speed; |
Kristian Høgsberg | abaa574 | 2007-04-30 15:03:14 -0400 | [diff] [blame] | 634 | __u64 closure; |
| 635 | __u32 handle; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 636 | }; |
| 637 | |
Kristian Høgsberg | 1ca31ae | 2007-05-31 11:16:43 -0400 | [diff] [blame] | 638 | #define FW_CDEV_ISO_PAYLOAD_LENGTH(v) (v) |
| 639 | #define FW_CDEV_ISO_INTERRUPT (1 << 16) |
| 640 | #define FW_CDEV_ISO_SKIP (1 << 17) |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 641 | #define FW_CDEV_ISO_SYNC (1 << 17) |
Kristian Høgsberg | 1ca31ae | 2007-05-31 11:16:43 -0400 | [diff] [blame] | 642 | #define FW_CDEV_ISO_TAG(v) ((v) << 18) |
| 643 | #define FW_CDEV_ISO_SY(v) ((v) << 20) |
| 644 | #define FW_CDEV_ISO_HEADER_LENGTH(v) ((v) << 24) |
| 645 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 646 | /** |
| 647 | * struct fw_cdev_iso_packet - Isochronous packet |
| 648 | * @control: Contains the header length (8 uppermost bits), the sy field |
| 649 | * (4 bits), the tag field (2 bits), a sync flag (1 bit), |
| 650 | * a skip flag (1 bit), an interrupt flag (1 bit), and the |
| 651 | * payload length (16 lowermost bits) |
| 652 | * @header: Header and payload |
| 653 | * |
| 654 | * &struct fw_cdev_iso_packet is used to describe isochronous packet queues. |
| 655 | * |
Clemens Ladisch | aa6fec3 | 2010-03-31 16:26:52 +0200 | [diff] [blame] | 656 | * Use the FW_CDEV_ISO_ macros to fill in @control. |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 657 | * |
Clemens Ladisch | aa6fec3 | 2010-03-31 16:26:52 +0200 | [diff] [blame] | 658 | * For transmit packets, the header length must be a multiple of 4 and specifies |
| 659 | * the numbers of bytes in @header that will be prepended to the packet's |
| 660 | * payload; these bytes are copied into the kernel and will not be accessed |
| 661 | * after the ioctl has returned. The sy and tag fields are copied to the iso |
| 662 | * packet header (these fields are specified by IEEE 1394a and IEC 61883-1). |
| 663 | * The skip flag specifies that no packet is to be sent in a frame; when using |
| 664 | * this, all other fields except the interrupt flag must be zero. |
| 665 | * |
| 666 | * For receive packets, the header length must be a multiple of the context's |
| 667 | * header size; if the header length is larger than the context's header size, |
| 668 | * multiple packets are queued for this entry. The sy and tag fields are |
| 669 | * ignored. If the sync flag is set, the context drops all packets until |
| 670 | * a packet with a matching sy field is received (the sync value to wait for is |
| 671 | * specified in the &fw_cdev_start_iso structure). The payload length defines |
| 672 | * how many payload bytes can be received for one packet (in addition to payload |
| 673 | * quadlets that have been defined as headers and are stripped and returned in |
| 674 | * the &fw_cdev_event_iso_interrupt structure). If more bytes are received, the |
| 675 | * additional bytes are dropped. If less bytes are received, the remaining |
| 676 | * bytes in this part of the payload buffer will not be written to, not even by |
| 677 | * the next packet, i.e., packets received in consecutive frames will not |
| 678 | * necessarily be consecutive in memory. If an entry has queued multiple |
| 679 | * packets, the payload length is divided equally among them. |
| 680 | * |
| 681 | * When a packet with the interrupt flag set has been completed, the |
| 682 | * &fw_cdev_event_iso_interrupt event will be sent. An entry that has queued |
| 683 | * multiple receive packets is completed when its last packet is completed. |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 684 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 685 | struct fw_cdev_iso_packet { |
Kristian Høgsberg | 1ca31ae | 2007-05-31 11:16:43 -0400 | [diff] [blame] | 686 | __u32 control; |
Stefan Richter | 5e20c28 | 2007-01-21 20:44:09 +0100 | [diff] [blame] | 687 | __u32 header[0]; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 688 | }; |
| 689 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 690 | /** |
| 691 | * struct fw_cdev_queue_iso - Queue isochronous packets for I/O |
| 692 | * @packets: Userspace pointer to packet data |
| 693 | * @data: Pointer into mmap()'ed payload buffer |
| 694 | * @size: Size of packet data in bytes |
| 695 | * @handle: Isochronous context handle |
| 696 | * |
| 697 | * Queue a number of isochronous packets for reception or transmission. |
| 698 | * This ioctl takes a pointer to an array of &fw_cdev_iso_packet structs, |
| 699 | * which describe how to transmit from or receive into a contiguous region |
Clemens Ladisch | aa6fec3 | 2010-03-31 16:26:52 +0200 | [diff] [blame] | 700 | * of a mmap()'ed payload buffer. As part of transmit packet descriptors, |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 701 | * a series of headers can be supplied, which will be prepended to the |
| 702 | * payload during DMA. |
| 703 | * |
| 704 | * The kernel may or may not queue all packets, but will write back updated |
| 705 | * values of the @packets, @data and @size fields, so the ioctl can be |
| 706 | * resubmitted easily. |
| 707 | */ |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 708 | struct fw_cdev_queue_iso { |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 709 | __u64 packets; |
| 710 | __u64 data; |
Kristian Høgsberg | da8ecff | 2007-03-27 01:43:39 -0400 | [diff] [blame] | 711 | __u32 size; |
Kristian Høgsberg | abaa574 | 2007-04-30 15:03:14 -0400 | [diff] [blame] | 712 | __u32 handle; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 713 | }; |
| 714 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 715 | #define FW_CDEV_ISO_CONTEXT_MATCH_TAG0 1 |
| 716 | #define FW_CDEV_ISO_CONTEXT_MATCH_TAG1 2 |
| 717 | #define FW_CDEV_ISO_CONTEXT_MATCH_TAG2 4 |
| 718 | #define FW_CDEV_ISO_CONTEXT_MATCH_TAG3 8 |
| 719 | #define FW_CDEV_ISO_CONTEXT_MATCH_ALL_TAGS 15 |
| 720 | |
| 721 | /** |
| 722 | * struct fw_cdev_start_iso - Start an isochronous transmission or reception |
| 723 | * @cycle: Cycle in which to start I/O. If @cycle is greater than or |
| 724 | * equal to 0, the I/O will start on that cycle. |
| 725 | * @sync: Determines the value to wait for for receive packets that have |
| 726 | * the %FW_CDEV_ISO_SYNC bit set |
| 727 | * @tags: Tag filter bit mask. Only valid for isochronous reception. |
| 728 | * Determines the tag values for which packets will be accepted. |
| 729 | * Use FW_CDEV_ISO_CONTEXT_MATCH_ macros to set @tags. |
| 730 | * @handle: Isochronous context handle within which to transmit or receive |
| 731 | */ |
Kristian Høgsberg | 69cdb72 | 2007-02-16 17:34:41 -0500 | [diff] [blame] | 732 | struct fw_cdev_start_iso { |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 733 | __s32 cycle; |
Kristian Høgsberg | eb0306e | 2007-03-14 17:34:54 -0400 | [diff] [blame] | 734 | __u32 sync; |
| 735 | __u32 tags; |
Kristian Høgsberg | abaa574 | 2007-04-30 15:03:14 -0400 | [diff] [blame] | 736 | __u32 handle; |
| 737 | }; |
| 738 | |
Kristian Høgsberg | 7ada60e | 2007-06-22 00:20:34 +0200 | [diff] [blame] | 739 | /** |
| 740 | * struct fw_cdev_stop_iso - Stop an isochronous transmission or reception |
| 741 | * @handle: Handle of isochronous context to stop |
| 742 | */ |
Kristian Høgsberg | abaa574 | 2007-04-30 15:03:14 -0400 | [diff] [blame] | 743 | struct fw_cdev_stop_iso { |
| 744 | __u32 handle; |
Kristian Høgsberg | 19a15b9 | 2006-12-19 19:58:31 -0500 | [diff] [blame] | 745 | }; |
| 746 | |
Stefan Richter | a64408b | 2007-09-29 10:41:58 +0200 | [diff] [blame] | 747 | /** |
| 748 | * struct fw_cdev_get_cycle_timer - read cycle timer register |
| 749 | * @local_time: system time, in microseconds since the Epoch |
Stefan Richter | abfe5a0 | 2010-02-20 12:13:49 +0100 | [diff] [blame] | 750 | * @cycle_timer: Cycle Time register contents |
Stefan Richter | a64408b | 2007-09-29 10:41:58 +0200 | [diff] [blame] | 751 | * |
| 752 | * The %FW_CDEV_IOC_GET_CYCLE_TIMER ioctl reads the isochronous cycle timer |
Stefan Richter | abfe5a0 | 2010-02-20 12:13:49 +0100 | [diff] [blame] | 753 | * and also the system clock (%CLOCK_REALTIME). This allows to express the |
| 754 | * receive time of an isochronous packet as a system time. |
Stefan Richter | 77258da | 2009-01-07 20:14:53 +0100 | [diff] [blame] | 755 | * |
| 756 | * @cycle_timer consists of 7 bits cycleSeconds, 13 bits cycleCount, and |
Stefan Richter | abfe5a0 | 2010-02-20 12:13:49 +0100 | [diff] [blame] | 757 | * 12 bits cycleOffset, in host byte order. Cf. the Cycle Time register |
| 758 | * per IEEE 1394 or Isochronous Cycle Timer register per OHCI-1394. |
Stefan Richter | e94b6d7 | 2010-02-21 12:48:57 +0100 | [diff] [blame] | 759 | * |
| 760 | * In version 1 and 2 of the ABI, this ioctl returned unreliable (non- |
| 761 | * monotonic) @cycle_timer values on certain controllers. |
Stefan Richter | a64408b | 2007-09-29 10:41:58 +0200 | [diff] [blame] | 762 | */ |
| 763 | struct fw_cdev_get_cycle_timer { |
| 764 | __u64 local_time; |
| 765 | __u32 cycle_timer; |
| 766 | }; |
| 767 | |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 768 | /** |
Stefan Richter | abfe5a0 | 2010-02-20 12:13:49 +0100 | [diff] [blame] | 769 | * struct fw_cdev_get_cycle_timer2 - read cycle timer register |
| 770 | * @tv_sec: system time, seconds |
| 771 | * @tv_nsec: system time, sub-seconds part in nanoseconds |
| 772 | * @clk_id: input parameter, clock from which to get the system time |
| 773 | * @cycle_timer: Cycle Time register contents |
| 774 | * |
| 775 | * The %FW_CDEV_IOC_GET_CYCLE_TIMER2 works like |
| 776 | * %FW_CDEV_IOC_GET_CYCLE_TIMER but lets you choose a clock like with POSIX' |
| 777 | * clock_gettime function. Supported @clk_id values are POSIX' %CLOCK_REALTIME |
| 778 | * and %CLOCK_MONOTONIC and Linux' %CLOCK_MONOTONIC_RAW. |
| 779 | */ |
| 780 | struct fw_cdev_get_cycle_timer2 { |
| 781 | __s64 tv_sec; |
| 782 | __s32 tv_nsec; |
| 783 | __s32 clk_id; |
| 784 | __u32 cycle_timer; |
| 785 | }; |
| 786 | |
| 787 | /** |
Stefan Richter | 1ec3c02 | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 788 | * struct fw_cdev_allocate_iso_resource - (De)allocate a channel or bandwidth |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 789 | * @closure: Passed back to userspace in correponding iso resource events |
Stefan Richter | 1ec3c02 | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 790 | * @channels: Isochronous channels of which one is to be (de)allocated |
| 791 | * @bandwidth: Isochronous bandwidth units to be (de)allocated |
| 792 | * @handle: Handle to the allocation, written by the kernel (only valid in |
| 793 | * case of %FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE ioctls) |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 794 | * |
| 795 | * The %FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE ioctl initiates allocation of an |
| 796 | * isochronous channel and/or of isochronous bandwidth at the isochronous |
| 797 | * resource manager (IRM). Only one of the channels specified in @channels is |
| 798 | * allocated. An %FW_CDEV_EVENT_ISO_RESOURCE_ALLOCATED is sent after |
| 799 | * communication with the IRM, indicating success or failure in the event data. |
| 800 | * The kernel will automatically reallocate the resources after bus resets. |
| 801 | * Should a reallocation fail, an %FW_CDEV_EVENT_ISO_RESOURCE_DEALLOCATED event |
| 802 | * will be sent. The kernel will also automatically deallocate the resources |
| 803 | * when the file descriptor is closed. |
| 804 | * |
Stefan Richter | 1ec3c02 | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 805 | * The %FW_CDEV_IOC_DEALLOCATE_ISO_RESOURCE ioctl can be used to initiate |
| 806 | * deallocation of resources which were allocated as described above. |
| 807 | * An %FW_CDEV_EVENT_ISO_RESOURCE_DEALLOCATED event concludes this operation. |
| 808 | * |
| 809 | * The %FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE_ONCE ioctl is a variant of allocation |
| 810 | * without automatic re- or deallocation. |
| 811 | * An %FW_CDEV_EVENT_ISO_RESOURCE_ALLOCATED event concludes this operation, |
| 812 | * indicating success or failure in its data. |
| 813 | * |
| 814 | * The %FW_CDEV_IOC_DEALLOCATE_ISO_RESOURCE_ONCE ioctl works like |
| 815 | * %FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE_ONCE except that resources are freed |
Stefan Richter | 5d9cb7d | 2009-01-08 23:07:40 +0100 | [diff] [blame] | 816 | * instead of allocated. |
Stefan Richter | 1ec3c02 | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 817 | * An %FW_CDEV_EVENT_ISO_RESOURCE_DEALLOCATED event concludes this operation. |
| 818 | * |
Stefan Richter | ca658b1 | 2010-04-10 12:23:09 +0200 | [diff] [blame] | 819 | * To summarize, %FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE allocates iso resources |
| 820 | * for the lifetime of the fd or @handle. |
Stefan Richter | 1ec3c02 | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 821 | * In contrast, %FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE_ONCE allocates iso resources |
| 822 | * for the duration of a bus generation. |
| 823 | * |
Stefan Richter | 5d9cb7d | 2009-01-08 23:07:40 +0100 | [diff] [blame] | 824 | * @channels is a host-endian bitfield with the least significant bit |
| 825 | * representing channel 0 and the most significant bit representing channel 63: |
| 826 | * 1ULL << c for each channel c that is a candidate for (de)allocation. |
Jay Fenlason, Stefan Richter | b1bda4c | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 827 | * |
| 828 | * @bandwidth is expressed in bandwidth allocation units, i.e. the time to send |
| 829 | * one quadlet of data (payload or header data) at speed S1600. |
| 830 | */ |
| 831 | struct fw_cdev_allocate_iso_resource { |
| 832 | __u64 closure; |
| 833 | __u64 channels; |
| 834 | __u32 bandwidth; |
| 835 | __u32 handle; |
| 836 | }; |
| 837 | |
Stefan Richter | 33580a3 | 2009-01-04 16:23:29 +0100 | [diff] [blame] | 838 | /** |
Jay Fenlason | f8c2287 | 2009-03-05 19:08:40 +0100 | [diff] [blame] | 839 | * struct fw_cdev_send_stream_packet - send an asynchronous stream packet |
Stefan Richter | 18e9b10 | 2009-03-10 21:02:21 +0100 | [diff] [blame] | 840 | * @length: Length of outgoing payload, in bytes |
| 841 | * @tag: Data format tag |
| 842 | * @channel: Isochronous channel to transmit to |
| 843 | * @sy: Synchronization code |
| 844 | * @closure: Passed back to userspace in the response event |
| 845 | * @data: Userspace pointer to payload |
| 846 | * @generation: The bus generation where packet is valid |
| 847 | * @speed: Speed to transmit at |
Jay Fenlason | f8c2287 | 2009-03-05 19:08:40 +0100 | [diff] [blame] | 848 | * |
| 849 | * The %FW_CDEV_IOC_SEND_STREAM_PACKET ioctl sends an asynchronous stream packet |
Stefan Richter | 18e9b10 | 2009-03-10 21:02:21 +0100 | [diff] [blame] | 850 | * to every device which is listening to the specified channel. The kernel |
| 851 | * writes an &fw_cdev_event_response event which indicates success or failure of |
| 852 | * the transmission. |
Jay Fenlason | f8c2287 | 2009-03-05 19:08:40 +0100 | [diff] [blame] | 853 | */ |
| 854 | struct fw_cdev_send_stream_packet { |
Stefan Richter | 18e9b10 | 2009-03-10 21:02:21 +0100 | [diff] [blame] | 855 | __u32 length; |
| 856 | __u32 tag; |
Jay Fenlason | f8c2287 | 2009-03-05 19:08:40 +0100 | [diff] [blame] | 857 | __u32 channel; |
| 858 | __u32 sy; |
Stefan Richter | 18e9b10 | 2009-03-10 21:02:21 +0100 | [diff] [blame] | 859 | __u64 closure; |
Jay Fenlason | f8c2287 | 2009-03-05 19:08:40 +0100 | [diff] [blame] | 860 | __u64 data; |
Stefan Richter | 18e9b10 | 2009-03-10 21:02:21 +0100 | [diff] [blame] | 861 | __u32 generation; |
| 862 | __u32 speed; |
Jay Fenlason | f8c2287 | 2009-03-05 19:08:40 +0100 | [diff] [blame] | 863 | }; |
| 864 | |
Stefan Richter | 850bb6f | 2010-07-16 22:25:14 +0200 | [diff] [blame] | 865 | /** |
| 866 | * struct fw_cdev_send_phy_packet - send a PHY packet |
| 867 | * @closure: Passed back to userspace in the PHY-packet-sent event |
| 868 | * @data: First and second quadlet of the PHY packet |
| 869 | * @generation: The bus generation where packet is valid |
| 870 | * |
| 871 | * The %FW_CDEV_IOC_SEND_PHY_PACKET ioctl sends a PHY packet to all nodes |
| 872 | * on the same card as this device. After transmission, an |
| 873 | * %FW_CDEV_EVENT_PHY_PACKET_SENT event is generated. |
| 874 | * |
| 875 | * The payload @data[] shall be specified in host byte order. Usually, |
| 876 | * @data[1] needs to be the bitwise inverse of @data[0]. VersaPHY packets |
| 877 | * are an exception to this rule. |
| 878 | * |
| 879 | * The ioctl is only permitted on device files which represent a local node. |
| 880 | */ |
| 881 | struct fw_cdev_send_phy_packet { |
| 882 | __u64 closure; |
| 883 | __u32 data[2]; |
| 884 | __u32 generation; |
| 885 | }; |
| 886 | |
Stefan Richter | bf54e14 | 2010-07-16 22:25:51 +0200 | [diff] [blame] | 887 | /** |
| 888 | * struct fw_cdev_receive_phy_packets - start reception of PHY packets |
| 889 | * @closure: Passed back to userspace in phy packet events |
| 890 | * |
| 891 | * This ioctl activates issuing of %FW_CDEV_EVENT_PHY_PACKET_RECEIVED due to |
| 892 | * incoming PHY packets from any node on the same bus as the device. |
| 893 | * |
| 894 | * The ioctl is only permitted on device files which represent a local node. |
| 895 | */ |
| 896 | struct fw_cdev_receive_phy_packets { |
| 897 | __u64 closure; |
| 898 | }; |
| 899 | |
Kristian Høgsberg | 4c5a443 | 2007-05-07 20:33:37 -0400 | [diff] [blame] | 900 | #endif /* _LINUX_FIREWIRE_CDEV_H */ |