Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -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 | * |
| 6 | * Copyright (c) 2008 Silicon Graphics, Inc. All Rights Reserved. |
| 7 | */ |
| 8 | |
| 9 | /* |
| 10 | * Cross Partition Communication (XPC) uv-based functions. |
| 11 | * |
| 12 | * Architecture specific implementation of common functions. |
| 13 | * |
| 14 | */ |
| 15 | |
| 16 | #include <linux/kernel.h> |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 17 | #include <asm/uv/uv_hub.h> |
| 18 | #include "../sgi-gru/grukservices.h" |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 19 | #include "xpc.h" |
| 20 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 21 | static DECLARE_BITMAP(xpc_heartbeating_to_mask_uv, XP_MAX_NPARTITIONS_UV); |
| 22 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 23 | static void *xpc_activate_mq; |
| 24 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 25 | static void |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 26 | xpc_send_local_activate_IRQ_uv(struct xpc_partition *part) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 27 | { |
| 28 | /* |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 29 | * !!! Make our side think that the remote parition sent an activate |
| 30 | * !!! message our way. Also do what the activate IRQ handler would |
| 31 | * !!! do had one really been sent. |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 32 | */ |
| 33 | } |
| 34 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 35 | static enum xp_retval |
| 36 | xpc_rsvd_page_init_uv(struct xpc_rsvd_page *rp) |
| 37 | { |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 38 | /* !!! need to have established xpc_activate_mq earlier */ |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 39 | rp->sn.activate_mq_gpa = uv_gpa(xpc_activate_mq); |
| 40 | return xpSuccess; |
| 41 | } |
| 42 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 43 | static void |
| 44 | xpc_increment_heartbeat_uv(void) |
| 45 | { |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 46 | /* !!! send heartbeat msg to xpc_heartbeating_to_mask partids */ |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | static void |
| 50 | xpc_heartbeat_init_uv(void) |
| 51 | { |
| 52 | bitmap_zero(xpc_heartbeating_to_mask_uv, XP_MAX_NPARTITIONS_UV); |
| 53 | xpc_heartbeating_to_mask = &xpc_heartbeating_to_mask_uv[0]; |
| 54 | } |
| 55 | |
| 56 | static void |
| 57 | xpc_heartbeat_exit_uv(void) |
| 58 | { |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 59 | /* !!! send heartbeat_offline msg to xpc_heartbeating_to_mask partids */ |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | static void |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 63 | xpc_request_partition_activation_uv(struct xpc_rsvd_page *remote_rp, |
Dean Nelson | a812dcc | 2008-07-29 22:34:16 -0700 | [diff] [blame] | 64 | unsigned long remote_rp_pa, int nasid) |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 65 | { |
| 66 | short partid = remote_rp->SAL_partid; |
| 67 | struct xpc_partition *part = &xpc_partitions[partid]; |
| 68 | |
| 69 | /* |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 70 | * !!! Setup part structure with the bits of info we can glean from the rp: |
| 71 | * !!! part->remote_rp_pa = remote_rp_pa; |
| 72 | * !!! part->sn.uv.activate_mq_gpa = remote_rp->sn.activate_mq_gpa; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 73 | */ |
| 74 | |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 75 | xpc_send_local_activate_IRQ_uv(part); |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 76 | } |
| 77 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 78 | static void |
| 79 | xpc_request_partition_reactivation_uv(struct xpc_partition *part) |
| 80 | { |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 81 | xpc_send_local_activate_IRQ_uv(part); |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 82 | } |
| 83 | |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 84 | /* |
| 85 | * Setup the infrastructure necessary to support XPartition Communication |
| 86 | * between the specified remote partition and the local one. |
| 87 | */ |
| 88 | static enum xp_retval |
| 89 | xpc_setup_infrastructure_uv(struct xpc_partition *part) |
| 90 | { |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 91 | /* !!! this function needs fleshing out */ |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 92 | return xpUnsupported; |
| 93 | } |
| 94 | |
| 95 | /* |
| 96 | * Teardown the infrastructure necessary to support XPartition Communication |
| 97 | * between the specified remote partition and the local one. |
| 98 | */ |
| 99 | static void |
| 100 | xpc_teardown_infrastructure_uv(struct xpc_partition *part) |
| 101 | { |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 102 | /* !!! this function needs fleshing out */ |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 103 | return; |
| 104 | } |
| 105 | |
| 106 | static enum xp_retval |
| 107 | xpc_make_first_contact_uv(struct xpc_partition *part) |
| 108 | { |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 109 | /* !!! this function needs fleshing out */ |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 110 | return xpUnsupported; |
| 111 | } |
| 112 | |
| 113 | static u64 |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 114 | xpc_get_chctl_all_flags_uv(struct xpc_partition *part) |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 115 | { |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 116 | /* !!! this function needs fleshing out */ |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 117 | return 0UL; |
| 118 | } |
| 119 | |
| 120 | static struct xpc_msg * |
| 121 | xpc_get_deliverable_msg_uv(struct xpc_channel *ch) |
| 122 | { |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 123 | /* !!! this function needs fleshing out */ |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 124 | return NULL; |
| 125 | } |
| 126 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 127 | void |
| 128 | xpc_init_uv(void) |
| 129 | { |
| 130 | xpc_rsvd_page_init = xpc_rsvd_page_init_uv; |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 131 | xpc_increment_heartbeat = xpc_increment_heartbeat_uv; |
| 132 | xpc_heartbeat_init = xpc_heartbeat_init_uv; |
| 133 | xpc_heartbeat_exit = xpc_heartbeat_exit_uv; |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 134 | xpc_request_partition_activation = xpc_request_partition_activation_uv; |
| 135 | xpc_request_partition_reactivation = |
| 136 | xpc_request_partition_reactivation_uv; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 137 | xpc_setup_infrastructure = xpc_setup_infrastructure_uv; |
| 138 | xpc_teardown_infrastructure = xpc_teardown_infrastructure_uv; |
| 139 | xpc_make_first_contact = xpc_make_first_contact_uv; |
Dean Nelson | 7fb5e59 | 2008-07-29 22:34:10 -0700 | [diff] [blame] | 140 | xpc_get_chctl_all_flags = xpc_get_chctl_all_flags_uv; |
Dean Nelson | e17d416 | 2008-07-29 22:34:06 -0700 | [diff] [blame] | 141 | xpc_get_deliverable_msg = xpc_get_deliverable_msg_uv; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | void |
| 145 | xpc_exit_uv(void) |
| 146 | { |
| 147 | } |