2 * Copyright (c) 2003 Hidetoshi Shimokawa
3 * Copyright (c) 1998-2002 Katsushi Kobayashi and Hidetoshi Shimokawa
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the acknowledgement as bellow:
17 * This product includes software developed by K. Kobayashi and H. Shimokawa
19 * 4. The name of the author may not be used to endorse or promote products
20 * derived from this software without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
26 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
27 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
30 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
34 * $FreeBSD: src/sys/dev/firewire/firewire.h,v 1.21 2007/04/24 12:15:05 simokawa Exp $
42 #include <sys/ioccom.h>
66 struct fw_asybindreq
{
76 #define MAXREC(x) (2 << (x))
77 #define FWPMAX_S400 (2048 + 20) /* MAXREC plus space for control data */
78 #define FWMAXQUEUE 128
80 #define FWLOCALBUS 0xffc0
82 #define FWTCODE_WREQQ 0
83 #define FWTCODE_WREQB 1
84 #define FWTCODE_WRES 2
85 #define FWTCODE_RREQQ 4
86 #define FWTCODE_RREQB 5
87 #define FWTCODE_RRESQ 6
88 #define FWTCODE_RRESB 7
89 #define FWTCODE_CYCS 8
90 #define FWTCODE_LREQ 9
91 #define FWTCODE_STREAM 0xa
92 #define FWTCODE_LRES 0xb
93 #define FWTCODE_PHY 0xe
100 #define FWRCODE_COMPLETE 0
101 #define FWRCODE_ER_CONFL 4
102 #define FWRCODE_ER_DATA 5
103 #define FWRCODE_ER_TYPE 6
104 #define FWRCODE_ER_ADDR 7
114 #define FWSPD_S1600 4
115 #define FWSPD_S3200 5
117 #define FWP_TL_VALID (1 << 7)
127 #if BYTE_ORDER == BIG_ENDIAN
128 #define BIT4x2(x,y) uint8_t x:4, y:4
129 #define BIT16x2(x,y) uint32_t x:16, y:16
131 #define BIT4x2(x,y) uint8_t y:4, x:4
132 #define BIT16x2(x,y) uint32_t y:16, x:16
136 #if BYTE_ORDER == BIG_ENDIAN
137 #define COMMON_HDR(a,b,c,d) uint32_t a:16,b:8,c:4,d:4
138 #define COMMON_RES(a,b,c,d) uint32_t a:16,b:4,c:4,d:8
140 #define COMMON_HDR(a,b,c,d) uint32_t d:4,c:4,b:8,a:16
141 #define COMMON_RES(a,b,c,d) uint32_t d:8,c:4,b:4,a:16
148 COMMON_HDR(, , tcode
, );
151 COMMON_HDR(len
, chtag
, tcode
, sy
);
155 COMMON_HDR(dst
, tlrt
, tcode
, pri
);
159 COMMON_HDR(dst
, tlrt
, tcode
, pri
);
160 BIT16x2(src
, dest_hi
);
164 COMMON_HDR(dst
, tlrt
, tcode
, pri
);
165 COMMON_RES(src
, rtcode
, , );
169 COMMON_HDR(dst
, tlrt
, tcode
, pri
);
170 BIT16x2(src
, dest_hi
);
172 BIT16x2(len
, extcode
);
175 COMMON_HDR(dst
, tlrt
, tcode
, pri
);
176 BIT16x2(src
, dest_hi
);
181 COMMON_HDR(dst
, tlrt
, tcode
, pri
);
182 BIT16x2(src
, dest_hi
);
187 COMMON_HDR(dst
, tlrt
, tcode
, pri
);
188 COMMON_RES(src
, rtcode
, , );
193 COMMON_HDR(dst
, tlrt
, tcode
, pri
);
194 BIT16x2(src
, dest_hi
);
196 BIT16x2(len
, extcode
);
200 COMMON_HDR(dst
, tlrt
, tcode
, pri
);
201 BIT16x2(src
, dest_hi
);
203 BIT16x2(len
, extcode
);
207 COMMON_HDR(dst
, tlrt
, tcode
, pri
);
208 COMMON_RES(src
, rtcode
, , );
210 BIT16x2(len
, extcode
);
214 COMMON_HDR(dst
, tlrt
, tcode
, pri
);
215 COMMON_RES(src
, rtcode
, , );
217 BIT16x2(len
, extcode
);
224 * Response code (rtcode)
226 /* The node has successfully completed the command. */
228 /* A resource conflict was detected. The request may be retried. */
229 #define RESP_CONFLICT_ERROR 4
230 /* Hardware error, data is unavailable. */
231 #define RESP_DATA_ERROR 5
232 /* A field in the request packet header was set to an unsupported or incorrect
233 * value, or an invalid transaction was attempted (e.g., a write to a read-only
235 #define RESP_TYPE_ERROR 6
236 /* The destination offset field in the request was set to an address not
237 * accessible in the destination node. */
238 #define RESP_ADDRESS_ERROR 7
241 * Extended transaction code (extcode)
243 #define EXTCODE_MASK_SWAP 1
244 #define EXTCODE_CMP_SWAP 2
245 #define EXTCODE_FETCH_ADD 3
246 #define EXTCODE_LITTLE_ADD 4
247 #define EXTCODE_BOUNDED_ADD 5
248 #define EXTCODE_WRAP_ADD 6
253 #define FW_EUI64_BYTE(eui, x) \
255 ((eui)->hi >> (8*(3-(x)))): \
256 ((eui)->lo >> (8*(7-(x)))) \
258 #define FW_EUI64_EQUAL(x, y) \
259 ((x).hi == (y).hi && (x).lo == (y).lo)
265 #define FWASREQNODE 0
268 #define FWASREQSTREAM 3
284 #define FW_MAX_DEVLST 70
285 struct fw_devlstreq
{
288 struct fw_devinfo dev
[FW_MAX_DEVLST
];
292 * Defined in IEEE 1394a-2000
295 #define FW_SELF_ID_PORT_CONNECTED_TO_CHILD 3
296 #define FW_SELF_ID_PORT_CONNECTED_TO_PARENT 2
297 #define FW_SELF_ID_PORT_NOT_CONNECTED 1
298 #define FW_SELF_ID_PORT_NOT_EXISTS 0
300 #define FW_SELF_ID_PAGE0 0
301 #define FW_SELF_ID_PAGE1 1
303 #if BYTE_ORDER == BIG_ENDIAN
357 uint32_t more_packets
:1,
373 uint32_t more_packets
:1,
407 struct fw_topology_map
{
411 uint32_t self_id_count
:16,
413 union fw_self_id self_id
[4*64];
416 struct fw_speed_map
{
420 uint8_t speed
[64][64];
430 * FireWire specific system requests.
432 #define FW_SSTBUF _IOWR('S', 86, struct fw_isobufreq)
433 #define FW_GSTBUF _IOWR('S', 87, struct fw_isobufreq)
434 #define FW_SRSTREAM _IOWR('S', 88, struct fw_isochreq)
435 #define FW_GRSTREAM _IOWR('S', 89, struct fw_isochreq)
436 #define FW_STSTREAM _IOWR('S', 90, struct fw_isochreq)
437 #define FW_GTSTREAM _IOWR('S', 91, struct fw_isochreq)
439 #define FW_ASYREQ _IOWR('S', 92, struct fw_asyreq)
440 #define FW_IBUSRST _IOR('S', 1, unsigned int)
441 #define FW_GDEVLST _IOWR('S', 2, struct fw_devlstreq)
442 #define FW_SBINDADDR _IOWR('S', 3, struct fw_asybindreq)
443 #define FW_CBINDADDR _IOWR('S', 4, struct fw_asybindreq)
444 #define FW_GTPMAP _IOR('S', 5, struct fw_topology_map)
445 #define FW_GCROM _IOWR('S', 7, struct fw_crom_buf)
447 #define FW_SDEUI64 _IOW('S', 20, struct fw_eui64)
448 #define FW_GDEUI64 _IOR('S', 21, struct fw_eui64)
450 #define FWOHCI_RDREG _IOWR('S', 80, struct fw_reg_req_t)
451 #define FWOHCI_WRREG _IOWR('S', 81, struct fw_reg_req_t)
452 #define FWOHCI_RDPHYREG _IOWR('S', 82, struct fw_reg_req_t)
453 #define FWOHCI_WRPHYREG _IOWR('S', 83, struct fw_reg_req_t)
455 #define DUMPDMA _IOWR('S', 82, uint32_t)
459 #define FWMAXNDMA 0x100 /* 8 bits DMA channel id. in device No. */
462 #if defined(__DragonFly__) || __FreeBSD_version < 500000
463 #define dev2unit(x) ((minor(x) & 0xff) | (minor(x) >> 8))
464 #define unit2minor(x) (((x) & 0xff) | (((x) << 8) & ~0xffff))
467 #define MAKEMINOR(f, u, s) \
468 ((f) | (((u) & 0xff) << 8) | (s & 0xff))
469 #define DEV2UNIT(x) ((dev2unit(x) & 0xff00) >> 8)
470 #define DEV2SUB(x) (dev2unit(x) & 0xff)
472 #define FWMEM_FLAG 0x10000
473 #define DEV_FWMEM(x) (dev2unit(x) & FWMEM_FLAG)
474 #endif /* __HAIKU__ */
477 #define EX_NOINPUT 66
479 #endif /* __HAIKU__*/