Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file is subject to the terms and conditions of the GNU General Public |
| 3 | * License. See the file "COPYING" in the main directory of this archive |
| 4 | * for more details. |
| 5 | * |
Dean Nelson | 45d9ca4 | 2008-04-22 14:46:56 -0500 | [diff] [blame] | 6 | * Copyright (C) 2004-2008 Silicon Graphics, Inc. All rights reserved. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 9 | /* |
| 10 | * External Cross Partition (XP) structures and defines. |
| 11 | */ |
| 12 | |
Dean Nelson | 45d9ca4 | 2008-04-22 14:46:56 -0500 | [diff] [blame] | 13 | #ifndef _DRIVERS_MISC_SGIXP_XP_H |
| 14 | #define _DRIVERS_MISC_SGIXP_XP_H |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 15 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 16 | #include <linux/cache.h> |
| 17 | #include <linux/hardirq.h> |
Jes Sorensen | f9e505a | 2006-01-17 12:52:21 -0500 | [diff] [blame] | 18 | #include <linux/mutex.h> |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 19 | #include <asm/sn/types.h> |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 20 | #ifdef CONFIG_IA64 |
| 21 | #include <asm/sn/arch.h> |
| 22 | #endif |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 23 | |
Dean Nelson | 78ce1bb | 2008-07-29 22:34:03 -0700 | [diff] [blame] | 24 | /* >>> Add this #define to some linux header file some day. */ |
| 25 | #define BYTES_PER_WORD sizeof(void *) |
| 26 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 27 | #ifdef USE_DBUG_ON |
| 28 | #define DBUG_ON(condition) BUG_ON(condition) |
| 29 | #else |
| 30 | #define DBUG_ON(condition) |
| 31 | #endif |
| 32 | |
Dean Nelson | 355c54d | 2008-07-29 22:34:02 -0700 | [diff] [blame] | 33 | #ifndef is_shub1 |
| 34 | #define is_shub1() 0 |
| 35 | #endif |
| 36 | |
| 37 | #ifndef is_shub2 |
| 38 | #define is_shub2() 0 |
| 39 | #endif |
| 40 | |
| 41 | #ifndef is_shub |
| 42 | #define is_shub() (is_shub1() || is_shub2()) |
| 43 | #endif |
| 44 | |
| 45 | #ifndef is_uv |
| 46 | #define is_uv() 0 |
| 47 | #endif |
| 48 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 49 | /* |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 50 | * Define the maximum number of partitions the system can possibly support. |
| 51 | * It is based on the maximum number of hardware partitionable regions. The |
| 52 | * term 'region' in this context refers to the minimum number of nodes that |
| 53 | * can comprise an access protection grouping. The access protection is in |
| 54 | * regards to memory, IPI and IOI. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 55 | * |
| 56 | * The maximum number of hardware partitionable regions is equal to the |
| 57 | * maximum number of nodes in the entire system divided by the minimum number |
| 58 | * of nodes that comprise an access protection grouping. |
| 59 | */ |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 60 | #define XP_MAX_NPARTITIONS_SN2 64 |
| 61 | #define XP_MAX_NPARTITIONS_UV 256 |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 62 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 63 | /* |
| 64 | * Define the number of u64s required to represent all the C-brick nasids |
| 65 | * as a bitmap. The cross-partition kernel modules deal only with |
| 66 | * C-brick nasids, thus the need for bitmaps which don't account for |
| 67 | * odd-numbered (non C-brick) nasids. |
| 68 | */ |
Jack Steiner | 24ee0a6 | 2005-09-12 12:15:43 -0500 | [diff] [blame] | 69 | #define XP_MAX_PHYSNODE_ID (MAX_NUMALINK_NODES / 2) |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 70 | #define XP_NASID_MASK_BYTES ((XP_MAX_PHYSNODE_ID + 7) / 8) |
| 71 | #define XP_NASID_MASK_WORDS ((XP_MAX_PHYSNODE_ID + 63) / 64) |
| 72 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 73 | /* |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 74 | * XPC establishes channel connections between the local partition and any |
| 75 | * other partition that is currently up. Over these channels, kernel-level |
| 76 | * `users' can communicate with their counterparts on the other partitions. |
| 77 | * |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 78 | >>> The following described limitation of a max of eight channels possible |
| 79 | >>> pertains only to ia64-sn2. THIS ISN'T TRUE SINCE I'M PLANNING TO JUST |
| 80 | >>> TIE INTO THE EXISTING MECHANISM ONCE THE CHANNEL MESSAGES ARE RECEIVED. |
| 81 | >>> THE 128-BYTE CACHELINE PERFORMANCE ISSUE IS TIED TO IA64-SN2. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 82 | * |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 83 | * If the need for additional channels arises, one can simply increase |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 84 | * XPC_MAX_NCHANNELS accordingly. If the day should come where that number |
| 85 | * exceeds the absolute MAXIMUM number of channels possible (eight), then one |
| 86 | * will need to make changes to the XPC code to accommodate for this. |
| 87 | * |
| 88 | * The absolute maximum number of channels possible is currently limited to |
| 89 | * eight for performance reasons. The internal cross partition structures |
| 90 | * require sixteen bytes per channel, and eight allows all of this |
| 91 | * interface-shared info to fit in one 128-byte cacheline. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 92 | */ |
| 93 | #define XPC_MEM_CHANNEL 0 /* memory channel number */ |
| 94 | #define XPC_NET_CHANNEL 1 /* network channel number */ |
| 95 | |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 96 | #define XPC_MAX_NCHANNELS 2 /* max #of channels allowed */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 97 | |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 98 | #if XPC_MAX_NCHANNELS > 8 |
| 99 | #error XPC_MAX_NCHANNELS exceeds absolute MAXIMUM possible. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 100 | #endif |
| 101 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 102 | /* |
| 103 | * The format of an XPC message is as follows: |
| 104 | * |
| 105 | * +-------+--------------------------------+ |
| 106 | * | flags |////////////////////////////////| |
| 107 | * +-------+--------------------------------+ |
| 108 | * | message # | |
| 109 | * +----------------------------------------+ |
| 110 | * | payload (user-defined message) | |
| 111 | * | | |
| 112 | * : |
| 113 | * | | |
| 114 | * +----------------------------------------+ |
| 115 | * |
| 116 | * The size of the payload is defined by the user via xpc_connect(). A user- |
| 117 | * defined message resides in the payload area. |
| 118 | * |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 119 | * The size of a message entry (within a message queue) must be a cacheline |
| 120 | * sized multiple in order to facilitate the BTE transfer of messages from one |
| 121 | * message queue to another. A macro, XPC_MSG_SIZE(), is provided for the user |
| 122 | * that wants to fit as many msg entries as possible in a given memory size |
| 123 | * (e.g. a memory page). |
| 124 | */ |
| 125 | struct xpc_msg { |
| 126 | u8 flags; /* FOR XPC INTERNAL USE ONLY */ |
| 127 | u8 reserved[7]; /* FOR XPC INTERNAL USE ONLY */ |
| 128 | s64 number; /* FOR XPC INTERNAL USE ONLY */ |
| 129 | |
| 130 | u64 payload; /* user defined portion of message */ |
| 131 | }; |
| 132 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 133 | #define XPC_MSG_PAYLOAD_OFFSET (u64) (&((struct xpc_msg *)0)->payload) |
| 134 | #define XPC_MSG_SIZE(_payload_size) \ |
| 135 | L1_CACHE_ALIGN(XPC_MSG_PAYLOAD_OFFSET + (_payload_size)) |
| 136 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 137 | /* |
| 138 | * Define the return values and values passed to user's callout functions. |
| 139 | * (It is important to add new value codes at the end just preceding |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 140 | * xpUnknownReason, which must have the highest numerical value.) |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 141 | */ |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 142 | enum xp_retval { |
| 143 | xpSuccess = 0, |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 144 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 145 | xpNotConnected, /* 1: channel is not connected */ |
| 146 | xpConnected, /* 2: channel connected (opened) */ |
| 147 | xpRETIRED1, /* 3: (formerly xpDisconnected) */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 148 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 149 | xpMsgReceived, /* 4: message received */ |
| 150 | xpMsgDelivered, /* 5: message delivered and acknowledged */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 151 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 152 | xpRETIRED2, /* 6: (formerly xpTransferFailed) */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 153 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 154 | xpNoWait, /* 7: operation would require wait */ |
| 155 | xpRetry, /* 8: retry operation */ |
| 156 | xpTimeout, /* 9: timeout in xpc_allocate_msg_wait() */ |
| 157 | xpInterrupted, /* 10: interrupted wait */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 158 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 159 | xpUnequalMsgSizes, /* 11: message size disparity between sides */ |
| 160 | xpInvalidAddress, /* 12: invalid address */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 161 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 162 | xpNoMemory, /* 13: no memory available for XPC structures */ |
| 163 | xpLackOfResources, /* 14: insufficient resources for operation */ |
| 164 | xpUnregistered, /* 15: channel is not registered */ |
| 165 | xpAlreadyRegistered, /* 16: channel is already registered */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 166 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 167 | xpPartitionDown, /* 17: remote partition is down */ |
| 168 | xpNotLoaded, /* 18: XPC module is not loaded */ |
| 169 | xpUnloading, /* 19: this side is unloading XPC module */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 170 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 171 | xpBadMagic, /* 20: XPC MAGIC string not found */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 172 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 173 | xpReactivating, /* 21: remote partition was reactivated */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 174 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 175 | xpUnregistering, /* 22: this side is unregistering channel */ |
| 176 | xpOtherUnregistering, /* 23: other side is unregistering channel */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 177 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 178 | xpCloneKThread, /* 24: cloning kernel thread */ |
| 179 | xpCloneKThreadFailed, /* 25: cloning kernel thread failed */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 180 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 181 | xpNoHeartbeat, /* 26: remote partition has no heartbeat */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 182 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 183 | xpPioReadError, /* 27: PIO read error */ |
| 184 | xpPhysAddrRegFailed, /* 28: registration of phys addr range failed */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 185 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 186 | xpRETIRED3, /* 29: (formerly xpBteDirectoryError) */ |
| 187 | xpRETIRED4, /* 30: (formerly xpBtePoisonError) */ |
| 188 | xpRETIRED5, /* 31: (formerly xpBteWriteError) */ |
| 189 | xpRETIRED6, /* 32: (formerly xpBteAccessError) */ |
| 190 | xpRETIRED7, /* 33: (formerly xpBtePWriteError) */ |
| 191 | xpRETIRED8, /* 34: (formerly xpBtePReadError) */ |
| 192 | xpRETIRED9, /* 35: (formerly xpBteTimeOutError) */ |
| 193 | xpRETIRED10, /* 36: (formerly xpBteXtalkError) */ |
| 194 | xpRETIRED11, /* 37: (formerly xpBteNotAvailable) */ |
| 195 | xpRETIRED12, /* 38: (formerly xpBteUnmappedError) */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 196 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 197 | xpBadVersion, /* 39: bad version number */ |
| 198 | xpVarsNotSet, /* 40: the XPC variables are not set up */ |
| 199 | xpNoRsvdPageAddr, /* 41: unable to get rsvd page's phys addr */ |
| 200 | xpInvalidPartid, /* 42: invalid partition ID */ |
| 201 | xpLocalPartid, /* 43: local partition ID */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 202 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 203 | xpOtherGoingDown, /* 44: other side going down, reason unknown */ |
| 204 | xpSystemGoingDown, /* 45: system is going down, reason unknown */ |
| 205 | xpSystemHalt, /* 46: system is being halted */ |
| 206 | xpSystemReboot, /* 47: system is being rebooted */ |
| 207 | xpSystemPoweroff, /* 48: system is being powered off */ |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 208 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 209 | xpDisconnecting, /* 49: channel disconnecting (closing) */ |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 210 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 211 | xpOpenCloseError, /* 50: channel open/close protocol error */ |
Dean Nelson | e54af72 | 2005-10-25 14:07:43 -0500 | [diff] [blame] | 212 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 213 | xpDisconnected, /* 51: channel disconnected (closed) */ |
Dean Nelson | 246c7e3 | 2005-12-22 14:32:56 -0600 | [diff] [blame] | 214 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 215 | xpBteCopyError, /* 52: bte_copy() returned error */ |
Dean Nelson | da97052 | 2008-07-29 22:34:03 -0700 | [diff] [blame] | 216 | xpSalError, /* 53: sn SAL error */ |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 217 | xpRsvdPageNotSet, /* 54: the reserved page is not set up */ |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame^] | 218 | xpPayloadTooBig, /* 55: payload too large for message slot */ |
Russ Anderson | 64135fa | 2007-08-21 16:45:12 -0500 | [diff] [blame] | 219 | |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame^] | 220 | xpUnsupported, /* 56: unsupported functionality or resource */ |
| 221 | xpUnknownReason /* 57: unknown reason - must be last in enum */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 222 | }; |
| 223 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 224 | /* |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 225 | * Define the callout function type used by XPC to update the user on |
| 226 | * connection activity and state changes via the user function registered |
| 227 | * by xpc_connect(). |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 228 | * |
| 229 | * Arguments: |
| 230 | * |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 231 | * reason - reason code. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 232 | * partid - partition ID associated with condition. |
| 233 | * ch_number - channel # associated with condition. |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 234 | * data - pointer to optional data. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 235 | * key - pointer to optional user-defined value provided as the "key" |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 236 | * argument to xpc_connect(). |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 237 | * |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 238 | * A reason code of xpConnected indicates that a connection has been |
| 239 | * established to the specified partition on the specified channel. The data |
| 240 | * argument indicates the max number of entries allowed in the message queue. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 241 | * |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 242 | * A reason code of xpMsgReceived indicates that a XPC message arrived from |
| 243 | * the specified partition on the specified channel. The data argument |
| 244 | * specifies the address of the message's payload. The user must call |
| 245 | * xpc_received() when finished with the payload. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 246 | * |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 247 | * All other reason codes indicate failure. The data argmument is NULL. |
| 248 | * When a failure reason code is received, one can assume that the channel |
| 249 | * is not connected. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 250 | */ |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 251 | typedef void (*xpc_channel_func) (enum xp_retval reason, short partid, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 252 | int ch_number, void *data, void *key); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 253 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 254 | /* |
| 255 | * Define the callout function type used by XPC to notify the user of |
| 256 | * messages received and delivered via the user function registered by |
| 257 | * xpc_send_notify(). |
| 258 | * |
| 259 | * Arguments: |
| 260 | * |
| 261 | * reason - reason code. |
| 262 | * partid - partition ID associated with condition. |
| 263 | * ch_number - channel # associated with condition. |
| 264 | * key - pointer to optional user-defined value provided as the "key" |
| 265 | * argument to xpc_send_notify(). |
| 266 | * |
| 267 | * A reason code of xpMsgDelivered indicates that the message was delivered |
| 268 | * to the intended recipient and that they have acknowledged its receipt by |
| 269 | * calling xpc_received(). |
| 270 | * |
| 271 | * All other reason codes indicate failure. |
| 272 | */ |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 273 | typedef void (*xpc_notify_func) (enum xp_retval reason, short partid, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 274 | int ch_number, void *key); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 275 | |
| 276 | /* |
| 277 | * The following is a registration entry. There is a global array of these, |
| 278 | * one per channel. It is used to record the connection registration made |
| 279 | * by the users of XPC. As long as a registration entry exists, for any |
| 280 | * partition that comes up, XPC will attempt to establish a connection on |
| 281 | * that channel. Notification that a connection has been made will occur via |
| 282 | * the xpc_channel_func function. |
| 283 | * |
| 284 | * The 'func' field points to the function to call when aynchronous |
| 285 | * notification is required for such events as: a connection established/lost, |
Dean Nelson | e54af72 | 2005-10-25 14:07:43 -0500 | [diff] [blame] | 286 | * or an incoming message received, or an error condition encountered. A |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 287 | * non-NULL 'func' field indicates that there is an active registration for |
| 288 | * the channel. |
| 289 | */ |
| 290 | struct xpc_registration { |
Jes Sorensen | f9e505a | 2006-01-17 12:52:21 -0500 | [diff] [blame] | 291 | struct mutex mutex; |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 292 | xpc_channel_func func; /* function to call */ |
| 293 | void *key; /* pointer to user's key */ |
| 294 | u16 nentries; /* #of msg entries in local msg queue */ |
| 295 | u16 msg_size; /* message queue's message size */ |
| 296 | u32 assigned_limit; /* limit on #of assigned kthreads */ |
| 297 | u32 idle_limit; /* limit on #of idle kthreads */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 298 | } ____cacheline_aligned; |
| 299 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 300 | #define XPC_CHANNEL_REGISTERED(_c) (xpc_registrations[_c].func != NULL) |
| 301 | |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame^] | 302 | /* the following are valid xpc_send() or xpc_send_notify() flags */ |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 303 | #define XPC_WAIT 0 /* wait flag */ |
| 304 | #define XPC_NOWAIT 1 /* no wait flag */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 305 | |
| 306 | struct xpc_interface { |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 307 | void (*connect) (int); |
| 308 | void (*disconnect) (int); |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame^] | 309 | enum xp_retval (*send) (short, int, u32, void *, u16); |
| 310 | enum xp_retval (*send_notify) (short, int, u32, void *, u16, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 311 | xpc_notify_func, void *); |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 312 | void (*received) (short, int, void *); |
| 313 | enum xp_retval (*partid_to_nasids) (short, void *); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 314 | }; |
| 315 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 316 | extern struct xpc_interface xpc_interface; |
| 317 | |
| 318 | extern void xpc_set_interface(void (*)(int), |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 319 | void (*)(int), |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame^] | 320 | enum xp_retval (*)(short, int, u32, void *, u16), |
| 321 | enum xp_retval (*)(short, int, u32, void *, u16, |
| 322 | xpc_notify_func, void *), |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 323 | void (*)(short, int, void *), |
| 324 | enum xp_retval (*)(short, void *)); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 325 | extern void xpc_clear_interface(void); |
| 326 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 327 | extern enum xp_retval xpc_connect(int, xpc_channel_func, void *, u16, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 328 | u16, u32, u32); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 329 | extern void xpc_disconnect(int); |
| 330 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 331 | static inline enum xp_retval |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame^] | 332 | xpc_send(short partid, int ch_number, u32 flags, void *payload, |
| 333 | u16 payload_size) |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 334 | { |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame^] | 335 | return xpc_interface.send(partid, ch_number, flags, payload, |
| 336 | payload_size); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 337 | } |
| 338 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 339 | static inline enum xp_retval |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame^] | 340 | xpc_send_notify(short partid, int ch_number, u32 flags, void *payload, |
| 341 | u16 payload_size, xpc_notify_func func, void *key) |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 342 | { |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame^] | 343 | return xpc_interface.send_notify(partid, ch_number, flags, payload, |
| 344 | payload_size, func, key); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | static inline void |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 348 | xpc_received(short partid, int ch_number, void *payload) |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 349 | { |
| 350 | return xpc_interface.received(partid, ch_number, payload); |
| 351 | } |
| 352 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 353 | static inline enum xp_retval |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 354 | xpc_partid_to_nasids(short partid, void *nasids) |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 355 | { |
| 356 | return xpc_interface.partid_to_nasids(partid, nasids); |
| 357 | } |
| 358 | |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 359 | extern short xp_max_npartitions; |
| 360 | |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 361 | extern enum xp_retval (*xp_remote_memcpy) (void *, const void *, size_t); |
| 362 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 363 | extern u64 xp_nofault_PIOR_target; |
| 364 | extern int xp_nofault_PIOR(void *); |
| 365 | extern int xp_error_PIOR(void); |
| 366 | |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 367 | extern struct device *xp; |
| 368 | extern enum xp_retval xp_init_sn2(void); |
| 369 | extern enum xp_retval xp_init_uv(void); |
| 370 | extern void xp_exit_sn2(void); |
| 371 | extern void xp_exit_uv(void); |
| 372 | |
Dean Nelson | 45d9ca4 | 2008-04-22 14:46:56 -0500 | [diff] [blame] | 373 | #endif /* _DRIVERS_MISC_SGIXP_XP_H */ |