blob: 882fd429ac2ef44494da9787cd0fff1b23db9f34 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/****************************************************************************
2 ******* *******
3 ******* P A C K E T H E A D E R F I L E
4 ******* *******
5 ****************************************************************************
6
7 Author : Ian Nandhra / Jeremy Rolls
8 Date :
9
10 *
11 * (C) 1990 - 2000 Specialix International Ltd., Byfleet, Surrey, UK.
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26
27 Version : 0.01
28
29
30 Mods
31 ----------------------------------------------------------------------------
32 Date By Description
33 ----------------------------------------------------------------------------
34
35 ***************************************************************************/
36
37#ifndef _pkt_h
38#define _pkt_h 1
39
40
41#ifdef SCCS_LABELS
42#ifndef lint
43/* static char *_rio_pkt_h_sccs = "@(#)pkt.h 1.8"; */
44#endif
45#endif
46
47#define MAX_TTL 0xf
48#define PKT_CMD_BIT ((ushort) 0x080)
49#define PKT_CMD_DATA ((ushort) 0x080)
50
51#define PKT_ACK ((ushort) 0x040)
52
53#define PKT_TGL ((ushort) 0x020)
54
55#define PKT_LEN_MASK ((ushort) 0x07f)
56
57#define DATA_WNDW ((ushort) 0x10)
58#define PKT_TTL_MASK ((ushort) 0x0f)
59
60#define PKT_MAX_DATA_LEN 72
61
62#define PKT_LENGTH sizeof(struct PKT)
63#define SYNC_PKT_LENGTH (PKT_LENGTH + 4)
64
65#define CONTROL_PKT_LEN_MASK PKT_LEN_MASK
66#define CONTROL_PKT_CMD_BIT PKT_CMD_BIT
67#define CONTROL_PKT_ACK (PKT_ACK << 8)
68#define CONTROL_PKT_TGL (PKT_TGL << 8)
69#define CONTROL_PKT_TTL_MASK (PKT_TTL_MASK << 8)
70#define CONTROL_DATA_WNDW (DATA_WNDW << 8)
71
Andrew Morton8d8706e2006-01-11 12:17:49 -080072struct PKT {
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#ifdef INKERNEL
Andrew Morton8d8706e2006-01-11 12:17:49 -080074 BYTE dest_unit; /* Destination Unit Id */
75 BYTE dest_port; /* Destination POrt */
76 BYTE src_unit; /* Source Unit Id */
77 BYTE src_port; /* Source POrt */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#else
Andrew Morton8d8706e2006-01-11 12:17:49 -080079 union {
80 ushort destination; /* Complete destination */
81 struct {
82 unsigned char unit; /* Destination unit */
83 unsigned char port; /* Destination port */
84 } s1;
85 } u1;
86 union {
87 ushort source; /* Complete source */
88 struct {
89 unsigned char unit; /* Source unit */
90 unsigned char port; /* Source port */
91 } s2;
92 } u2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#endif
94#ifdef INKERNEL
Andrew Morton8d8706e2006-01-11 12:17:49 -080095 BYTE len;
96 BYTE control;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#else
Andrew Morton8d8706e2006-01-11 12:17:49 -080098 union {
99 ushort control;
100 struct {
101 unsigned char len;
102 unsigned char control;
103 } s3;
104 } u3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#endif
Andrew Morton8d8706e2006-01-11 12:17:49 -0800106 BYTE data[PKT_MAX_DATA_LEN];
107 /* Actual data :-) */
108 WORD csum; /* C-SUM */
109};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#endif
111
112/*********** end of file ***********/