diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-ppc64/iSeries/vio.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'include/asm-ppc64/iSeries/vio.h')
-rw-r--r-- | include/asm-ppc64/iSeries/vio.h | 129 |
1 files changed, 129 insertions, 0 deletions
diff --git a/include/asm-ppc64/iSeries/vio.h b/include/asm-ppc64/iSeries/vio.h new file mode 100644 index 000000000000..3e5766a849d6 --- /dev/null +++ b/include/asm-ppc64/iSeries/vio.h | |||
@@ -0,0 +1,129 @@ | |||
1 | /* -*- linux-c -*- | ||
2 | * drivers/char/vio.h | ||
3 | * | ||
4 | * iSeries Virtual I/O Message Path header | ||
5 | * | ||
6 | * Authors: Dave Boutcher <boutcher@us.ibm.com> | ||
7 | * Ryan Arnold <ryanarn@us.ibm.com> | ||
8 | * Colin Devilbiss <devilbis@us.ibm.com> | ||
9 | * | ||
10 | * (C) Copyright 2000 IBM Corporation | ||
11 | * | ||
12 | * This header file is used by the iSeries virtual I/O device | ||
13 | * drivers. It defines the interfaces to the common functions | ||
14 | * (implemented in drivers/char/viopath.h) as well as defining | ||
15 | * common functions and structures. Currently (at the time I | ||
16 | * wrote this comment) the iSeries virtual I/O device drivers | ||
17 | * that use this are | ||
18 | * drivers/block/viodasd.c | ||
19 | * drivers/char/viocons.c | ||
20 | * drivers/char/viotape.c | ||
21 | * drivers/cdrom/viocd.c | ||
22 | * | ||
23 | * The iSeries virtual ethernet support (veth.c) uses a whole | ||
24 | * different set of functions. | ||
25 | * | ||
26 | * This program is free software; you can redistribute it and/or | ||
27 | * modify it under the terms of the GNU General Public License as | ||
28 | * published by the Free Software Foundation; either version 2 of the | ||
29 | * License, or (at your option) anyu later version. | ||
30 | * | ||
31 | * This program is distributed in the hope that it will be useful, but | ||
32 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
33 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
34 | * General Public License for more details. | ||
35 | * | ||
36 | * You should have received a copy of the GNU General Public License | ||
37 | * along with this program; if not, write to the Free Software Foundation, | ||
38 | * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
39 | * | ||
40 | */ | ||
41 | #ifndef _ISERIES_VIO_H | ||
42 | #define _ISERIES_VIO_H | ||
43 | |||
44 | #include <asm/iSeries/HvTypes.h> | ||
45 | #include <asm/iSeries/HvLpEvent.h> | ||
46 | |||
47 | /* iSeries virtual I/O events use the subtype field in | ||
48 | * HvLpEvent to figure out what kind of vio event is coming | ||
49 | * in. We use a table to route these, and this defines | ||
50 | * the maximum number of distinct subtypes | ||
51 | */ | ||
52 | #define VIO_MAX_SUBTYPES 8 | ||
53 | |||
54 | /* Each subtype can register a handler to process their events. | ||
55 | * The handler must have this interface. | ||
56 | */ | ||
57 | typedef void (vio_event_handler_t) (struct HvLpEvent * event); | ||
58 | |||
59 | int viopath_open(HvLpIndex remoteLp, int subtype, int numReq); | ||
60 | int viopath_close(HvLpIndex remoteLp, int subtype, int numReq); | ||
61 | int vio_setHandler(int subtype, vio_event_handler_t * beh); | ||
62 | int vio_clearHandler(int subtype); | ||
63 | int viopath_isactive(HvLpIndex lp); | ||
64 | HvLpInstanceId viopath_sourceinst(HvLpIndex lp); | ||
65 | HvLpInstanceId viopath_targetinst(HvLpIndex lp); | ||
66 | void vio_set_hostlp(void); | ||
67 | void *vio_get_event_buffer(int subtype); | ||
68 | void vio_free_event_buffer(int subtype, void *buffer); | ||
69 | |||
70 | extern HvLpIndex viopath_hostLp; | ||
71 | extern HvLpIndex viopath_ourLp; | ||
72 | |||
73 | #define VIOCHAR_MAX_DATA 200 | ||
74 | |||
75 | #define VIOMAJOR_SUBTYPE_MASK 0xff00 | ||
76 | #define VIOMINOR_SUBTYPE_MASK 0x00ff | ||
77 | #define VIOMAJOR_SUBTYPE_SHIFT 8 | ||
78 | |||
79 | #define VIOVERSION 0x0101 | ||
80 | |||
81 | /* | ||
82 | * This is the general structure for VIO errors; each module should have | ||
83 | * a table of them, and each table should be terminated by an entry of | ||
84 | * { 0, 0, NULL }. Then, to find a specific error message, a module | ||
85 | * should pass its local table and the return code. | ||
86 | */ | ||
87 | struct vio_error_entry { | ||
88 | u16 rc; | ||
89 | int errno; | ||
90 | const char *msg; | ||
91 | }; | ||
92 | const struct vio_error_entry *vio_lookup_rc(const struct vio_error_entry | ||
93 | *local_table, u16 rc); | ||
94 | |||
95 | enum viosubtypes { | ||
96 | viomajorsubtype_monitor = 0x0100, | ||
97 | viomajorsubtype_blockio = 0x0200, | ||
98 | viomajorsubtype_chario = 0x0300, | ||
99 | viomajorsubtype_config = 0x0400, | ||
100 | viomajorsubtype_cdio = 0x0500, | ||
101 | viomajorsubtype_tape = 0x0600, | ||
102 | viomajorsubtype_scsi = 0x0700 | ||
103 | }; | ||
104 | |||
105 | |||
106 | enum vioconfigsubtype { | ||
107 | vioconfigget = 0x0001, | ||
108 | }; | ||
109 | |||
110 | enum viorc { | ||
111 | viorc_good = 0x0000, | ||
112 | viorc_noConnection = 0x0001, | ||
113 | viorc_noReceiver = 0x0002, | ||
114 | viorc_noBufferAvailable = 0x0003, | ||
115 | viorc_invalidMessageType = 0x0004, | ||
116 | viorc_invalidRange = 0x0201, | ||
117 | viorc_invalidToken = 0x0202, | ||
118 | viorc_DMAError = 0x0203, | ||
119 | viorc_useError = 0x0204, | ||
120 | viorc_releaseError = 0x0205, | ||
121 | viorc_invalidDisk = 0x0206, | ||
122 | viorc_openRejected = 0x0301 | ||
123 | }; | ||
124 | |||
125 | struct device; | ||
126 | |||
127 | extern struct device *iSeries_vio_dev; | ||
128 | |||
129 | #endif /* _ISERIES_VIO_H */ | ||