/*1* This file is subject to the terms and conditions of the GNU General Public2* License. See the file "COPYING" in the main directory of this archive3* for more details.4*5* Copyright (C) 2004-2008 Silicon Graphics, Inc. All rights reserved.6*/78/*9* External Cross Partition (XP) structures and defines.10*/1112#ifndef _DRIVERS_MISC_SGIXP_XP_H13#define _DRIVERS_MISC_SGIXP_XP_H1415#include <linux/mutex.h>1617#if defined CONFIG_X86_UV || defined CONFIG_IA64_SGI_UV18#include <asm/uv/uv.h>19#define is_uv() is_uv_system()20#endif2122#ifndef is_uv23#define is_uv() 024#endif2526#if defined CONFIG_IA6427#include <asm/system.h>28#include <asm/sn/arch.h> /* defines is_shub1() and is_shub2() */29#define is_shub() ia64_platform_is("sn2")30#endif3132#ifndef is_shub133#define is_shub1() 034#endif3536#ifndef is_shub237#define is_shub2() 038#endif3940#ifndef is_shub41#define is_shub() 042#endif4344#ifdef USE_DBUG_ON45#define DBUG_ON(condition) BUG_ON(condition)46#else47#define DBUG_ON(condition)48#endif4950/*51* Define the maximum number of partitions the system can possibly support.52* It is based on the maximum number of hardware partitionable regions. The53* term 'region' in this context refers to the minimum number of nodes that54* can comprise an access protection grouping. The access protection is in55* regards to memory, IPI and IOI.56*57* The maximum number of hardware partitionable regions is equal to the58* maximum number of nodes in the entire system divided by the minimum number59* of nodes that comprise an access protection grouping.60*/61#define XP_MAX_NPARTITIONS_SN2 6462#define XP_MAX_NPARTITIONS_UV 2566364/*65* XPC establishes channel connections between the local partition and any66* other partition that is currently up. Over these channels, kernel-level67* `users' can communicate with their counterparts on the other partitions.68*69* If the need for additional channels arises, one can simply increase70* XPC_MAX_NCHANNELS accordingly. If the day should come where that number71* exceeds the absolute MAXIMUM number of channels possible (eight), then one72* will need to make changes to the XPC code to accommodate for this.73*74* The absolute maximum number of channels possible is limited to eight for75* performance reasons on sn2 hardware. The internal cross partition structures76* require sixteen bytes per channel, and eight allows all of this77* interface-shared info to fit in one 128-byte cacheline.78*/79#define XPC_MEM_CHANNEL 0 /* memory channel number */80#define XPC_NET_CHANNEL 1 /* network channel number */8182#define XPC_MAX_NCHANNELS 2 /* max #of channels allowed */8384#if XPC_MAX_NCHANNELS > 885#error XPC_MAX_NCHANNELS exceeds absolute MAXIMUM possible.86#endif8788/*89* Define macro, XPC_MSG_SIZE(), is provided for the user90* that wants to fit as many msg entries as possible in a given memory size91* (e.g. a memory page).92*/93#define XPC_MSG_MAX_SIZE 12894#define XPC_MSG_HDR_MAX_SIZE 1695#define XPC_MSG_PAYLOAD_MAX_SIZE (XPC_MSG_MAX_SIZE - XPC_MSG_HDR_MAX_SIZE)9697#define XPC_MSG_SIZE(_payload_size) \98ALIGN(XPC_MSG_HDR_MAX_SIZE + (_payload_size), \99is_uv() ? 64 : 128)100101102/*103* Define the return values and values passed to user's callout functions.104* (It is important to add new value codes at the end just preceding105* xpUnknownReason, which must have the highest numerical value.)106*/107enum xp_retval {108xpSuccess = 0,109110xpNotConnected, /* 1: channel is not connected */111xpConnected, /* 2: channel connected (opened) */112xpRETIRED1, /* 3: (formerly xpDisconnected) */113114xpMsgReceived, /* 4: message received */115xpMsgDelivered, /* 5: message delivered and acknowledged */116117xpRETIRED2, /* 6: (formerly xpTransferFailed) */118119xpNoWait, /* 7: operation would require wait */120xpRetry, /* 8: retry operation */121xpTimeout, /* 9: timeout in xpc_allocate_msg_wait() */122xpInterrupted, /* 10: interrupted wait */123124xpUnequalMsgSizes, /* 11: message size disparity between sides */125xpInvalidAddress, /* 12: invalid address */126127xpNoMemory, /* 13: no memory available for XPC structures */128xpLackOfResources, /* 14: insufficient resources for operation */129xpUnregistered, /* 15: channel is not registered */130xpAlreadyRegistered, /* 16: channel is already registered */131132xpPartitionDown, /* 17: remote partition is down */133xpNotLoaded, /* 18: XPC module is not loaded */134xpUnloading, /* 19: this side is unloading XPC module */135136xpBadMagic, /* 20: XPC MAGIC string not found */137138xpReactivating, /* 21: remote partition was reactivated */139140xpUnregistering, /* 22: this side is unregistering channel */141xpOtherUnregistering, /* 23: other side is unregistering channel */142143xpCloneKThread, /* 24: cloning kernel thread */144xpCloneKThreadFailed, /* 25: cloning kernel thread failed */145146xpNoHeartbeat, /* 26: remote partition has no heartbeat */147148xpPioReadError, /* 27: PIO read error */149xpPhysAddrRegFailed, /* 28: registration of phys addr range failed */150151xpRETIRED3, /* 29: (formerly xpBteDirectoryError) */152xpRETIRED4, /* 30: (formerly xpBtePoisonError) */153xpRETIRED5, /* 31: (formerly xpBteWriteError) */154xpRETIRED6, /* 32: (formerly xpBteAccessError) */155xpRETIRED7, /* 33: (formerly xpBtePWriteError) */156xpRETIRED8, /* 34: (formerly xpBtePReadError) */157xpRETIRED9, /* 35: (formerly xpBteTimeOutError) */158xpRETIRED10, /* 36: (formerly xpBteXtalkError) */159xpRETIRED11, /* 37: (formerly xpBteNotAvailable) */160xpRETIRED12, /* 38: (formerly xpBteUnmappedError) */161162xpBadVersion, /* 39: bad version number */163xpVarsNotSet, /* 40: the XPC variables are not set up */164xpNoRsvdPageAddr, /* 41: unable to get rsvd page's phys addr */165xpInvalidPartid, /* 42: invalid partition ID */166xpLocalPartid, /* 43: local partition ID */167168xpOtherGoingDown, /* 44: other side going down, reason unknown */169xpSystemGoingDown, /* 45: system is going down, reason unknown */170xpSystemHalt, /* 46: system is being halted */171xpSystemReboot, /* 47: system is being rebooted */172xpSystemPoweroff, /* 48: system is being powered off */173174xpDisconnecting, /* 49: channel disconnecting (closing) */175176xpOpenCloseError, /* 50: channel open/close protocol error */177178xpDisconnected, /* 51: channel disconnected (closed) */179180xpBteCopyError, /* 52: bte_copy() returned error */181xpSalError, /* 53: sn SAL error */182xpRsvdPageNotSet, /* 54: the reserved page is not set up */183xpPayloadTooBig, /* 55: payload too large for message slot */184185xpUnsupported, /* 56: unsupported functionality or resource */186xpNeedMoreInfo, /* 57: more info is needed by SAL */187188xpGruCopyError, /* 58: gru_copy_gru() returned error */189xpGruSendMqError, /* 59: gru send message queue related error */190191xpBadChannelNumber, /* 60: invalid channel number */192xpBadMsgType, /* 61: invalid message type */193xpBiosError, /* 62: BIOS error */194195xpUnknownReason /* 63: unknown reason - must be last in enum */196};197198/*199* Define the callout function type used by XPC to update the user on200* connection activity and state changes via the user function registered201* by xpc_connect().202*203* Arguments:204*205* reason - reason code.206* partid - partition ID associated with condition.207* ch_number - channel # associated with condition.208* data - pointer to optional data.209* key - pointer to optional user-defined value provided as the "key"210* argument to xpc_connect().211*212* A reason code of xpConnected indicates that a connection has been213* established to the specified partition on the specified channel. The data214* argument indicates the max number of entries allowed in the message queue.215*216* A reason code of xpMsgReceived indicates that a XPC message arrived from217* the specified partition on the specified channel. The data argument218* specifies the address of the message's payload. The user must call219* xpc_received() when finished with the payload.220*221* All other reason codes indicate failure. The data argmument is NULL.222* When a failure reason code is received, one can assume that the channel223* is not connected.224*/225typedef void (*xpc_channel_func) (enum xp_retval reason, short partid,226int ch_number, void *data, void *key);227228/*229* Define the callout function type used by XPC to notify the user of230* messages received and delivered via the user function registered by231* xpc_send_notify().232*233* Arguments:234*235* reason - reason code.236* partid - partition ID associated with condition.237* ch_number - channel # associated with condition.238* key - pointer to optional user-defined value provided as the "key"239* argument to xpc_send_notify().240*241* A reason code of xpMsgDelivered indicates that the message was delivered242* to the intended recipient and that they have acknowledged its receipt by243* calling xpc_received().244*245* All other reason codes indicate failure.246*247* NOTE: The user defined function must be callable by an interrupt handler248* and thus cannot block.249*/250typedef void (*xpc_notify_func) (enum xp_retval reason, short partid,251int ch_number, void *key);252253/*254* The following is a registration entry. There is a global array of these,255* one per channel. It is used to record the connection registration made256* by the users of XPC. As long as a registration entry exists, for any257* partition that comes up, XPC will attempt to establish a connection on258* that channel. Notification that a connection has been made will occur via259* the xpc_channel_func function.260*261* The 'func' field points to the function to call when aynchronous262* notification is required for such events as: a connection established/lost,263* or an incoming message received, or an error condition encountered. A264* non-NULL 'func' field indicates that there is an active registration for265* the channel.266*/267struct xpc_registration {268struct mutex mutex;269xpc_channel_func func; /* function to call */270void *key; /* pointer to user's key */271u16 nentries; /* #of msg entries in local msg queue */272u16 entry_size; /* message queue's message entry size */273u32 assigned_limit; /* limit on #of assigned kthreads */274u32 idle_limit; /* limit on #of idle kthreads */275} ____cacheline_aligned;276277#define XPC_CHANNEL_REGISTERED(_c) (xpc_registrations[_c].func != NULL)278279/* the following are valid xpc_send() or xpc_send_notify() flags */280#define XPC_WAIT 0 /* wait flag */281#define XPC_NOWAIT 1 /* no wait flag */282283struct xpc_interface {284void (*connect) (int);285void (*disconnect) (int);286enum xp_retval (*send) (short, int, u32, void *, u16);287enum xp_retval (*send_notify) (short, int, u32, void *, u16,288xpc_notify_func, void *);289void (*received) (short, int, void *);290enum xp_retval (*partid_to_nasids) (short, void *);291};292293extern struct xpc_interface xpc_interface;294295extern void xpc_set_interface(void (*)(int),296void (*)(int),297enum xp_retval (*)(short, int, u32, void *, u16),298enum xp_retval (*)(short, int, u32, void *, u16,299xpc_notify_func, void *),300void (*)(short, int, void *),301enum xp_retval (*)(short, void *));302extern void xpc_clear_interface(void);303304extern enum xp_retval xpc_connect(int, xpc_channel_func, void *, u16,305u16, u32, u32);306extern void xpc_disconnect(int);307308static inline enum xp_retval309xpc_send(short partid, int ch_number, u32 flags, void *payload,310u16 payload_size)311{312return xpc_interface.send(partid, ch_number, flags, payload,313payload_size);314}315316static inline enum xp_retval317xpc_send_notify(short partid, int ch_number, u32 flags, void *payload,318u16 payload_size, xpc_notify_func func, void *key)319{320return xpc_interface.send_notify(partid, ch_number, flags, payload,321payload_size, func, key);322}323324static inline void325xpc_received(short partid, int ch_number, void *payload)326{327return xpc_interface.received(partid, ch_number, payload);328}329330static inline enum xp_retval331xpc_partid_to_nasids(short partid, void *nasids)332{333return xpc_interface.partid_to_nasids(partid, nasids);334}335336extern short xp_max_npartitions;337extern short xp_partition_id;338extern u8 xp_region_size;339340extern unsigned long (*xp_pa) (void *);341extern unsigned long (*xp_socket_pa) (unsigned long);342extern enum xp_retval (*xp_remote_memcpy) (unsigned long, const unsigned long,343size_t);344extern int (*xp_cpu_to_nasid) (int);345extern enum xp_retval (*xp_expand_memprotect) (unsigned long, unsigned long);346extern enum xp_retval (*xp_restrict_memprotect) (unsigned long, unsigned long);347348extern u64 xp_nofault_PIOR_target;349extern int xp_nofault_PIOR(void *);350extern int xp_error_PIOR(void);351352extern struct device *xp;353extern enum xp_retval xp_init_sn2(void);354extern enum xp_retval xp_init_uv(void);355extern void xp_exit_sn2(void);356extern void xp_exit_uv(void);357358#endif /* _DRIVERS_MISC_SGIXP_XP_H */359360361