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