allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / asm-powerpc / iseries / hv_lp_event.h
blob6ce2ce1e26909a0bc80bf84c772d6cc5338c4b77
1 /*
2 * Copyright (C) 2001 Mike Corrigan IBM Corporation
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 /* This file contains the class for HV events in the system. */
21 #ifndef _ASM_POWERPC_ISERIES_HV_LP_EVENT_H
22 #define _ASM_POWERPC_ISERIES_HV_LP_EVENT_H
24 #include <asm/types.h>
25 #include <asm/ptrace.h>
26 #include <asm/iseries/hv_types.h>
27 #include <asm/iseries/hv_call_event.h>
30 * HvLpEvent is the structure for Lp Event messages passed between
31 * partitions through PLIC.
34 struct HvLpEvent {
35 u8 flags; /* Event flags x00-x00 */
36 u8 xType; /* Type of message x01-x01 */
37 u16 xSubtype; /* Subtype for event x02-x03 */
38 u8 xSourceLp; /* Source LP x04-x04 */
39 u8 xTargetLp; /* Target LP x05-x05 */
40 u8 xSizeMinus1; /* Size of Derived class - 1 x06-x06 */
41 u8 xRc; /* RC for Ack flows x07-x07 */
42 u16 xSourceInstanceId; /* Source sides instance id x08-x09 */
43 u16 xTargetInstanceId; /* Target sides instance id x0A-x0B */
44 union {
45 u32 xSubtypeData; /* Data usable by the subtype x0C-x0F */
46 u16 xSubtypeDataShort[2]; /* Data as 2 shorts */
47 u8 xSubtypeDataChar[4]; /* Data as 4 chars */
48 } x;
50 u64 xCorrelationToken; /* Unique value for source/type x10-x17 */
53 typedef void (*LpEventHandler)(struct HvLpEvent *);
55 /* Register a handler for an event type - returns 0 on success */
56 extern int HvLpEvent_registerHandler(HvLpEvent_Type eventType,
57 LpEventHandler hdlr);
60 * Unregister a handler for an event type
62 * This call will sleep until the handler being removed is guaranteed to
63 * be no longer executing on any CPU. Do not call with locks held.
65 * returns 0 on success
66 * Unregister will fail if there are any paths open for the type
68 extern int HvLpEvent_unregisterHandler(HvLpEvent_Type eventType);
71 * Open an Lp Event Path for an event type
72 * returns 0 on success
73 * openPath will fail if there is no handler registered for the event type.
74 * The lpIndex specified is the partition index for the target partition
75 * (for VirtualIo, VirtualLan and SessionMgr) other types specify zero)
77 extern int HvLpEvent_openPath(HvLpEvent_Type eventType, HvLpIndex lpIndex);
80 * Close an Lp Event Path for a type and partition
81 * returns 0 on sucess
83 extern int HvLpEvent_closePath(HvLpEvent_Type eventType, HvLpIndex lpIndex);
85 #define HvLpEvent_Type_Hypervisor 0
86 #define HvLpEvent_Type_MachineFac 1
87 #define HvLpEvent_Type_SessionMgr 2
88 #define HvLpEvent_Type_SpdIo 3
89 #define HvLpEvent_Type_VirtualBus 4
90 #define HvLpEvent_Type_PciIo 5
91 #define HvLpEvent_Type_RioIo 6
92 #define HvLpEvent_Type_VirtualLan 7
93 #define HvLpEvent_Type_VirtualIo 8
94 #define HvLpEvent_Type_NumTypes 9
96 #define HvLpEvent_Rc_Good 0
97 #define HvLpEvent_Rc_BufferNotAvailable 1
98 #define HvLpEvent_Rc_Cancelled 2
99 #define HvLpEvent_Rc_GenericError 3
100 #define HvLpEvent_Rc_InvalidAddress 4
101 #define HvLpEvent_Rc_InvalidPartition 5
102 #define HvLpEvent_Rc_InvalidSize 6
103 #define HvLpEvent_Rc_InvalidSubtype 7
104 #define HvLpEvent_Rc_InvalidSubtypeData 8
105 #define HvLpEvent_Rc_InvalidType 9
106 #define HvLpEvent_Rc_PartitionDead 10
107 #define HvLpEvent_Rc_PathClosed 11
108 #define HvLpEvent_Rc_SubtypeError 12
110 #define HvLpEvent_Function_Ack 0
111 #define HvLpEvent_Function_Int 1
113 #define HvLpEvent_AckInd_NoAck 0
114 #define HvLpEvent_AckInd_DoAck 1
116 #define HvLpEvent_AckType_ImmediateAck 0
117 #define HvLpEvent_AckType_DeferredAck 1
119 #define HV_LP_EVENT_INT 0x01
120 #define HV_LP_EVENT_DO_ACK 0x02
121 #define HV_LP_EVENT_DEFERRED_ACK 0x04
122 #define HV_LP_EVENT_VALID 0x80
124 #define HvLpDma_Direction_LocalToRemote 0
125 #define HvLpDma_Direction_RemoteToLocal 1
127 #define HvLpDma_AddressType_TceIndex 0
128 #define HvLpDma_AddressType_RealAddress 1
130 #define HvLpDma_Rc_Good 0
131 #define HvLpDma_Rc_Error 1
132 #define HvLpDma_Rc_PartitionDead 2
133 #define HvLpDma_Rc_PathClosed 3
134 #define HvLpDma_Rc_InvalidAddress 4
135 #define HvLpDma_Rc_InvalidLength 5
137 static inline int hvlpevent_is_valid(struct HvLpEvent *h)
139 return h->flags & HV_LP_EVENT_VALID;
142 static inline void hvlpevent_invalidate(struct HvLpEvent *h)
144 h->flags &= ~ HV_LP_EVENT_VALID;
147 static inline int hvlpevent_is_int(struct HvLpEvent *h)
149 return h->flags & HV_LP_EVENT_INT;
152 static inline int hvlpevent_is_ack(struct HvLpEvent *h)
154 return !hvlpevent_is_int(h);
157 static inline int hvlpevent_need_ack(struct HvLpEvent *h)
159 return h->flags & HV_LP_EVENT_DO_ACK;
162 #endif /* _ASM_POWERPC_ISERIES_HV_LP_EVENT_H */