/* * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * (C) Copyright 2020 Hewlett Packard Enterprise Development LP * Copyright (c) 2004-2008 Silicon Graphics, Inc. All Rights Reserved. */ /* * Cross Partition (XP) base. * * XP provides a base from which its users can interact * with XPC, yet not be dependent on XPC. * */ #include <linux/module.h> #include <linux/device.h> #include "xp.h" /* define the XP debug device structures to be used with dev_dbg() et al */ static struct device_driver xp_dbg_name = …; static struct device xp_dbg_subname = …; struct device *xp = …; /* max #of partitions possible */ short xp_max_npartitions; EXPORT_SYMBOL_GPL(…); short xp_partition_id; EXPORT_SYMBOL_GPL(…); u8 xp_region_size; EXPORT_SYMBOL_GPL(…); unsigned long (*xp_pa) (void *addr); EXPORT_SYMBOL_GPL(…); unsigned long (*xp_socket_pa) (unsigned long gpa); EXPORT_SYMBOL_GPL(…); enum xp_retval (*xp_remote_memcpy) (unsigned long dst_gpa, const unsigned long src_gpa, size_t len); EXPORT_SYMBOL_GPL(…); int (*xp_cpu_to_nasid) (int cpuid); EXPORT_SYMBOL_GPL(…); enum xp_retval (*xp_expand_memprotect) (unsigned long phys_addr, unsigned long size); EXPORT_SYMBOL_GPL(…); enum xp_retval (*xp_restrict_memprotect) (unsigned long phys_addr, unsigned long size); EXPORT_SYMBOL_GPL(…); /* * xpc_registrations[] keeps track of xpc_connect()'s done by the kernel-level * users of XPC. */ struct xpc_registration xpc_registrations[XPC_MAX_NCHANNELS]; EXPORT_SYMBOL_GPL(…); /* * Initialize the XPC interface to NULL to indicate that XPC isn't loaded. */ struct xpc_interface xpc_interface = …; EXPORT_SYMBOL_GPL(…); /* * XPC calls this when it (the XPC module) has been loaded. */ void xpc_set_interface(void (*connect) (int), void (*disconnect) (int), enum xp_retval (*send) (short, int, u32, void *, u16), enum xp_retval (*send_notify) (short, int, u32, void *, u16, xpc_notify_func, void *), void (*received) (short, int, void *), enum xp_retval (*partid_to_nasids) (short, void *)) { … } EXPORT_SYMBOL_GPL(…); /* * XPC calls this when it (the XPC module) is being unloaded. */ void xpc_clear_interface(void) { … } EXPORT_SYMBOL_GPL(…); /* * Register for automatic establishment of a channel connection whenever * a partition comes up. * * Arguments: * * ch_number - channel # to register for connection. * func - function to call for asynchronous notification of channel * state changes (i.e., connection, disconnection, error) and * the arrival of incoming messages. * key - pointer to optional user-defined value that gets passed back * to the user on any callouts made to func. * payload_size - size in bytes of the XPC message's payload area which * contains a user-defined message. The user should make * this large enough to hold their largest message. * nentries - max #of XPC message entries a message queue can contain. * The actual number, which is determined when a connection * is established and may be less then requested, will be * passed to the user via the xpConnected callout. * assigned_limit - max number of kthreads allowed to be processing * messages (per connection) at any given instant. * idle_limit - max number of kthreads allowed to be idle at any given * instant. */ enum xp_retval xpc_connect(int ch_number, xpc_channel_func func, void *key, u16 payload_size, u16 nentries, u32 assigned_limit, u32 idle_limit) { … } EXPORT_SYMBOL_GPL(…); /* * Remove the registration for automatic connection of the specified channel * when a partition comes up. * * Before returning this xpc_disconnect() will wait for all connections on the * specified channel have been closed/torndown. So the caller can be assured * that they will not be receiving any more callouts from XPC to their * function registered via xpc_connect(). * * Arguments: * * ch_number - channel # to unregister. */ void xpc_disconnect(int ch_number) { … } EXPORT_SYMBOL_GPL(…); static int __init xp_init(void) { … } module_init(…) …; static void __exit xp_exit(void) { … } module_exit(xp_exit); MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …; MODULE_LICENSE(…) …;