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 | |
Jes Sorensen | f9e505a | 2006-01-17 12:52:21 -0500 | [diff] [blame] | 16 | #include <linux/mutex.h> |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 17 | |
Dean Nelson | 1c00400 | 2009-02-09 10:25:20 -0600 | [diff] [blame] | 18 | #if defined CONFIG_X86_UV || defined CONFIG_IA64_SGI_UV |
Ingo Molnar | 5b22127 | 2009-01-21 11:30:07 +0100 | [diff] [blame] | 19 | #include <asm/uv/uv.h> |
Dean Nelson | 1c00400 | 2009-02-09 10:25:20 -0600 | [diff] [blame] | 20 | #define is_uv() is_uv_system() |
| 21 | #endif |
Ingo Molnar | 5b22127 | 2009-01-21 11:30:07 +0100 | [diff] [blame] | 22 | |
Dean Nelson | 1c00400 | 2009-02-09 10:25:20 -0600 | [diff] [blame] | 23 | #ifndef is_uv |
| 24 | #define is_uv() 0 |
| 25 | #endif |
| 26 | |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -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 | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 33 | /* |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 34 | * Define the maximum number of partitions the system can possibly support. |
| 35 | * It is based on the maximum number of hardware partitionable regions. The |
| 36 | * term 'region' in this context refers to the minimum number of nodes that |
| 37 | * can comprise an access protection grouping. The access protection is in |
| 38 | * regards to memory, IPI and IOI. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 39 | * |
| 40 | * The maximum number of hardware partitionable regions is equal to the |
| 41 | * maximum number of nodes in the entire system divided by the minimum number |
| 42 | * of nodes that comprise an access protection grouping. |
| 43 | */ |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 44 | #define XP_MAX_NPARTITIONS_SN2 64 |
| 45 | #define XP_MAX_NPARTITIONS_UV 256 |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 46 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 47 | /* |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 48 | * XPC establishes channel connections between the local partition and any |
| 49 | * other partition that is currently up. Over these channels, kernel-level |
| 50 | * `users' can communicate with their counterparts on the other partitions. |
| 51 | * |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 52 | * If the need for additional channels arises, one can simply increase |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 53 | * XPC_MAX_NCHANNELS accordingly. If the day should come where that number |
| 54 | * exceeds the absolute MAXIMUM number of channels possible (eight), then one |
| 55 | * will need to make changes to the XPC code to accommodate for this. |
| 56 | * |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 57 | * The absolute maximum number of channels possible is limited to eight for |
| 58 | * performance reasons on sn2 hardware. The internal cross partition structures |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 59 | * require sixteen bytes per channel, and eight allows all of this |
| 60 | * interface-shared info to fit in one 128-byte cacheline. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 61 | */ |
| 62 | #define XPC_MEM_CHANNEL 0 /* memory channel number */ |
| 63 | #define XPC_NET_CHANNEL 1 /* network channel number */ |
| 64 | |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 65 | #define XPC_MAX_NCHANNELS 2 /* max #of channels allowed */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 66 | |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 67 | #if XPC_MAX_NCHANNELS > 8 |
| 68 | #error XPC_MAX_NCHANNELS exceeds absolute MAXIMUM possible. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 69 | #endif |
| 70 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 71 | /* |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 72 | * Define macro, XPC_MSG_SIZE(), is provided for the user |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 73 | * that wants to fit as many msg entries as possible in a given memory size |
| 74 | * (e.g. a memory page). |
| 75 | */ |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 76 | #define XPC_MSG_MAX_SIZE 128 |
| 77 | #define XPC_MSG_HDR_MAX_SIZE 16 |
| 78 | #define XPC_MSG_PAYLOAD_MAX_SIZE (XPC_MSG_MAX_SIZE - XPC_MSG_HDR_MAX_SIZE) |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 79 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 80 | #define XPC_MSG_SIZE(_payload_size) \ |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 81 | ALIGN(XPC_MSG_HDR_MAX_SIZE + (_payload_size), \ |
| 82 | is_uv() ? 64 : 128) |
| 83 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 84 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 85 | /* |
| 86 | * Define the return values and values passed to user's callout functions. |
| 87 | * (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] | 88 | * xpUnknownReason, which must have the highest numerical value.) |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 89 | */ |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 90 | enum xp_retval { |
| 91 | xpSuccess = 0, |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 92 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 93 | xpNotConnected, /* 1: channel is not connected */ |
| 94 | xpConnected, /* 2: channel connected (opened) */ |
| 95 | xpRETIRED1, /* 3: (formerly xpDisconnected) */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 96 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 97 | xpMsgReceived, /* 4: message received */ |
| 98 | xpMsgDelivered, /* 5: message delivered and acknowledged */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 99 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 100 | xpRETIRED2, /* 6: (formerly xpTransferFailed) */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 101 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 102 | xpNoWait, /* 7: operation would require wait */ |
| 103 | xpRetry, /* 8: retry operation */ |
| 104 | xpTimeout, /* 9: timeout in xpc_allocate_msg_wait() */ |
| 105 | xpInterrupted, /* 10: interrupted wait */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 106 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 107 | xpUnequalMsgSizes, /* 11: message size disparity between sides */ |
| 108 | xpInvalidAddress, /* 12: invalid address */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 109 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 110 | xpNoMemory, /* 13: no memory available for XPC structures */ |
| 111 | xpLackOfResources, /* 14: insufficient resources for operation */ |
| 112 | xpUnregistered, /* 15: channel is not registered */ |
| 113 | xpAlreadyRegistered, /* 16: channel is already registered */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 114 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 115 | xpPartitionDown, /* 17: remote partition is down */ |
| 116 | xpNotLoaded, /* 18: XPC module is not loaded */ |
| 117 | xpUnloading, /* 19: this side is unloading XPC module */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 118 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 119 | xpBadMagic, /* 20: XPC MAGIC string not found */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 120 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 121 | xpReactivating, /* 21: remote partition was reactivated */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 122 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 123 | xpUnregistering, /* 22: this side is unregistering channel */ |
| 124 | xpOtherUnregistering, /* 23: other side is unregistering channel */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 125 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 126 | xpCloneKThread, /* 24: cloning kernel thread */ |
| 127 | xpCloneKThreadFailed, /* 25: cloning kernel thread failed */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 128 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 129 | xpNoHeartbeat, /* 26: remote partition has no heartbeat */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 130 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 131 | xpPioReadError, /* 27: PIO read error */ |
| 132 | xpPhysAddrRegFailed, /* 28: registration of phys addr range failed */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 133 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 134 | xpRETIRED3, /* 29: (formerly xpBteDirectoryError) */ |
| 135 | xpRETIRED4, /* 30: (formerly xpBtePoisonError) */ |
| 136 | xpRETIRED5, /* 31: (formerly xpBteWriteError) */ |
| 137 | xpRETIRED6, /* 32: (formerly xpBteAccessError) */ |
| 138 | xpRETIRED7, /* 33: (formerly xpBtePWriteError) */ |
| 139 | xpRETIRED8, /* 34: (formerly xpBtePReadError) */ |
| 140 | xpRETIRED9, /* 35: (formerly xpBteTimeOutError) */ |
| 141 | xpRETIRED10, /* 36: (formerly xpBteXtalkError) */ |
| 142 | xpRETIRED11, /* 37: (formerly xpBteNotAvailable) */ |
| 143 | xpRETIRED12, /* 38: (formerly xpBteUnmappedError) */ |
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 | xpBadVersion, /* 39: bad version number */ |
| 146 | xpVarsNotSet, /* 40: the XPC variables are not set up */ |
| 147 | xpNoRsvdPageAddr, /* 41: unable to get rsvd page's phys addr */ |
| 148 | xpInvalidPartid, /* 42: invalid partition ID */ |
| 149 | xpLocalPartid, /* 43: local partition ID */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 150 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 151 | xpOtherGoingDown, /* 44: other side going down, reason unknown */ |
| 152 | xpSystemGoingDown, /* 45: system is going down, reason unknown */ |
| 153 | xpSystemHalt, /* 46: system is being halted */ |
| 154 | xpSystemReboot, /* 47: system is being rebooted */ |
| 155 | xpSystemPoweroff, /* 48: system is being powered off */ |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 156 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 157 | xpDisconnecting, /* 49: channel disconnecting (closing) */ |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 158 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 159 | xpOpenCloseError, /* 50: channel open/close protocol error */ |
Dean Nelson | e54af72 | 2005-10-25 14:07:43 -0500 | [diff] [blame] | 160 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 161 | xpDisconnected, /* 51: channel disconnected (closed) */ |
Dean Nelson | 246c7e3 | 2005-12-22 14:32:56 -0600 | [diff] [blame] | 162 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 163 | xpBteCopyError, /* 52: bte_copy() returned error */ |
Dean Nelson | da97052 | 2008-07-29 22:34:03 -0700 | [diff] [blame] | 164 | xpSalError, /* 53: sn SAL error */ |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 165 | xpRsvdPageNotSet, /* 54: the reserved page is not set up */ |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 166 | xpPayloadTooBig, /* 55: payload too large for message slot */ |
Russ Anderson | 64135fa | 2007-08-21 16:45:12 -0500 | [diff] [blame] | 167 | |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 168 | xpUnsupported, /* 56: unsupported functionality or resource */ |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 169 | xpNeedMoreInfo, /* 57: more info is needed by SAL */ |
| 170 | |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 171 | xpGruCopyError, /* 58: gru_copy_gru() returned error */ |
Dean Nelson | 5b8669d | 2008-07-29 22:34:18 -0700 | [diff] [blame] | 172 | xpGruSendMqError, /* 59: gru send message queue related error */ |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 173 | |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 174 | xpBadChannelNumber, /* 60: invalid channel number */ |
Dean Nelson | 6c1c325 | 2008-11-05 17:27:22 -0600 | [diff] [blame] | 175 | xpBadMsgType, /* 61: invalid message type */ |
| 176 | xpBiosError, /* 62: BIOS error */ |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 177 | |
Dean Nelson | 6c1c325 | 2008-11-05 17:27:22 -0600 | [diff] [blame] | 178 | xpUnknownReason /* 63: unknown reason - must be last in enum */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 179 | }; |
| 180 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 181 | /* |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 182 | * Define the callout function type used by XPC to update the user on |
| 183 | * connection activity and state changes via the user function registered |
| 184 | * by xpc_connect(). |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 185 | * |
| 186 | * Arguments: |
| 187 | * |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 188 | * reason - reason code. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 189 | * partid - partition ID associated with condition. |
| 190 | * ch_number - channel # associated with condition. |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 191 | * data - pointer to optional data. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 192 | * key - pointer to optional user-defined value provided as the "key" |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 193 | * argument to xpc_connect(). |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 194 | * |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 195 | * A reason code of xpConnected indicates that a connection has been |
| 196 | * established to the specified partition on the specified channel. The data |
| 197 | * argument indicates the max number of entries allowed in the message queue. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 198 | * |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 199 | * A reason code of xpMsgReceived indicates that a XPC message arrived from |
| 200 | * the specified partition on the specified channel. The data argument |
| 201 | * specifies the address of the message's payload. The user must call |
| 202 | * xpc_received() when finished with the payload. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 203 | * |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 204 | * All other reason codes indicate failure. The data argmument is NULL. |
| 205 | * When a failure reason code is received, one can assume that the channel |
| 206 | * is not connected. |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 207 | */ |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 208 | typedef void (*xpc_channel_func) (enum xp_retval reason, short partid, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 209 | int ch_number, void *data, void *key); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 210 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 211 | /* |
| 212 | * Define the callout function type used by XPC to notify the user of |
| 213 | * messages received and delivered via the user function registered by |
| 214 | * xpc_send_notify(). |
| 215 | * |
| 216 | * Arguments: |
| 217 | * |
| 218 | * reason - reason code. |
| 219 | * partid - partition ID associated with condition. |
| 220 | * ch_number - channel # associated with condition. |
| 221 | * key - pointer to optional user-defined value provided as the "key" |
| 222 | * argument to xpc_send_notify(). |
| 223 | * |
| 224 | * A reason code of xpMsgDelivered indicates that the message was delivered |
| 225 | * to the intended recipient and that they have acknowledged its receipt by |
| 226 | * calling xpc_received(). |
| 227 | * |
| 228 | * All other reason codes indicate failure. |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 229 | * |
| 230 | * NOTE: The user defined function must be callable by an interrupt handler |
| 231 | * and thus cannot block. |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 232 | */ |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 233 | typedef void (*xpc_notify_func) (enum xp_retval reason, short partid, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 234 | int ch_number, void *key); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 235 | |
| 236 | /* |
| 237 | * The following is a registration entry. There is a global array of these, |
| 238 | * one per channel. It is used to record the connection registration made |
| 239 | * by the users of XPC. As long as a registration entry exists, for any |
| 240 | * partition that comes up, XPC will attempt to establish a connection on |
| 241 | * that channel. Notification that a connection has been made will occur via |
| 242 | * the xpc_channel_func function. |
| 243 | * |
| 244 | * The 'func' field points to the function to call when aynchronous |
| 245 | * notification is required for such events as: a connection established/lost, |
Dean Nelson | e54af72 | 2005-10-25 14:07:43 -0500 | [diff] [blame] | 246 | * or an incoming message received, or an error condition encountered. A |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 247 | * non-NULL 'func' field indicates that there is an active registration for |
| 248 | * the channel. |
| 249 | */ |
| 250 | struct xpc_registration { |
Jes Sorensen | f9e505a | 2006-01-17 12:52:21 -0500 | [diff] [blame] | 251 | struct mutex mutex; |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 252 | xpc_channel_func func; /* function to call */ |
| 253 | void *key; /* pointer to user's key */ |
| 254 | u16 nentries; /* #of msg entries in local msg queue */ |
Dean Nelson | bd3e64c | 2008-07-29 22:34:19 -0700 | [diff] [blame] | 255 | u16 entry_size; /* message queue's message entry size */ |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 256 | u32 assigned_limit; /* limit on #of assigned kthreads */ |
| 257 | u32 idle_limit; /* limit on #of idle kthreads */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 258 | } ____cacheline_aligned; |
| 259 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 260 | #define XPC_CHANNEL_REGISTERED(_c) (xpc_registrations[_c].func != NULL) |
| 261 | |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 262 | /* the following are valid xpc_send() or xpc_send_notify() flags */ |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 263 | #define XPC_WAIT 0 /* wait flag */ |
| 264 | #define XPC_NOWAIT 1 /* no wait flag */ |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 265 | |
| 266 | struct xpc_interface { |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 267 | void (*connect) (int); |
| 268 | void (*disconnect) (int); |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 269 | enum xp_retval (*send) (short, int, u32, void *, u16); |
| 270 | enum xp_retval (*send_notify) (short, int, u32, void *, u16, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 271 | xpc_notify_func, void *); |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 272 | void (*received) (short, int, void *); |
| 273 | enum xp_retval (*partid_to_nasids) (short, void *); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 274 | }; |
| 275 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 276 | extern struct xpc_interface xpc_interface; |
| 277 | |
| 278 | extern void xpc_set_interface(void (*)(int), |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 279 | void (*)(int), |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 280 | enum xp_retval (*)(short, int, u32, void *, u16), |
| 281 | enum xp_retval (*)(short, int, u32, void *, u16, |
| 282 | xpc_notify_func, void *), |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 283 | void (*)(short, int, void *), |
| 284 | enum xp_retval (*)(short, void *)); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 285 | extern void xpc_clear_interface(void); |
| 286 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 287 | extern enum xp_retval xpc_connect(int, xpc_channel_func, void *, u16, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 288 | u16, u32, u32); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 289 | extern void xpc_disconnect(int); |
| 290 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 291 | static inline enum xp_retval |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 292 | xpc_send(short partid, int ch_number, u32 flags, void *payload, |
| 293 | u16 payload_size) |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 294 | { |
Kees Cook | 234041d | 2017-04-04 22:07:10 -0700 | [diff] [blame] | 295 | if (!xpc_interface.send) |
| 296 | return xpNotLoaded; |
| 297 | |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 298 | return xpc_interface.send(partid, ch_number, flags, payload, |
| 299 | payload_size); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 300 | } |
| 301 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 302 | static inline enum xp_retval |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 303 | xpc_send_notify(short partid, int ch_number, u32 flags, void *payload, |
| 304 | u16 payload_size, xpc_notify_func func, void *key) |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 305 | { |
Kees Cook | 234041d | 2017-04-04 22:07:10 -0700 | [diff] [blame] | 306 | if (!xpc_interface.send_notify) |
| 307 | return xpNotLoaded; |
| 308 | |
Dean Nelson | 97bf1aa | 2008-07-29 22:34:08 -0700 | [diff] [blame] | 309 | return xpc_interface.send_notify(partid, ch_number, flags, payload, |
| 310 | payload_size, func, key); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | static inline void |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 314 | xpc_received(short partid, int ch_number, void *payload) |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 315 | { |
Kees Cook | 234041d | 2017-04-04 22:07:10 -0700 | [diff] [blame] | 316 | if (xpc_interface.received) |
| 317 | xpc_interface.received(partid, ch_number, payload); |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 318 | } |
| 319 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 320 | static inline enum xp_retval |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 321 | xpc_partid_to_nasids(short partid, void *nasids) |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 322 | { |
Kees Cook | 234041d | 2017-04-04 22:07:10 -0700 | [diff] [blame] | 323 | if (!xpc_interface.partid_to_nasids) |
| 324 | return xpNotLoaded; |
| 325 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 326 | return xpc_interface.partid_to_nasids(partid, nasids); |
| 327 | } |
| 328 | |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 329 | extern short xp_max_npartitions; |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 330 | extern short xp_partition_id; |
| 331 | extern u8 xp_region_size; |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 332 | |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 333 | extern unsigned long (*xp_pa) (void *); |
Robin Holt | 6821289 | 2009-12-15 16:47:53 -0800 | [diff] [blame] | 334 | extern unsigned long (*xp_socket_pa) (unsigned long); |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 335 | extern enum xp_retval (*xp_remote_memcpy) (unsigned long, const unsigned long, |
| 336 | size_t); |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 337 | extern int (*xp_cpu_to_nasid) (int); |
Dean Nelson | 6c1c325 | 2008-11-05 17:27:22 -0600 | [diff] [blame] | 338 | extern enum xp_retval (*xp_expand_memprotect) (unsigned long, unsigned long); |
| 339 | extern enum xp_retval (*xp_restrict_memprotect) (unsigned long, unsigned long); |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 340 | |
Dean Nelson | b0d82bd | 2005-03-23 19:46:00 -0700 | [diff] [blame] | 341 | extern u64 xp_nofault_PIOR_target; |
| 342 | extern int xp_nofault_PIOR(void *); |
| 343 | extern int xp_error_PIOR(void); |
| 344 | |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 345 | extern struct device *xp; |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 346 | extern enum xp_retval xp_init_uv(void); |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 347 | extern void xp_exit_uv(void); |
| 348 | |
Dean Nelson | 45d9ca4 | 2008-04-22 14:46:56 -0500 | [diff] [blame] | 349 | #endif /* _DRIVERS_MISC_SGIXP_XP_H */ |