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