Dean Nelson | 89eb8eb | 2005-03-23 19:50: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 | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 9 | /* |
| 10 | * Cross Partition Communication (XPC) partition support. |
| 11 | * |
| 12 | * This is the part of XPC that detects the presence/absence of |
| 13 | * other partitions. It provides a heartbeat and monitors the |
| 14 | * heartbeats of other partitions. |
| 15 | * |
| 16 | */ |
| 17 | |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame^] | 18 | #include <linux/device.h> |
| 19 | #include <linux/hardirq.h> |
Dean Nelson | 45d9ca4 | 2008-04-22 14:46:56 -0500 | [diff] [blame] | 20 | #include "xpc.h" |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 21 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 22 | /* XPC is exiting flag */ |
| 23 | int xpc_exiting; |
| 24 | |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 25 | /* this partition's reserved page pointers */ |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 26 | struct xpc_rsvd_page *xpc_rsvd_page; |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 27 | static unsigned long *xpc_part_nasids; |
| 28 | unsigned long *xpc_mach_nasids; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 29 | |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 30 | static int xpc_nasid_mask_nbytes; /* #of bytes in nasid mask */ |
| 31 | int xpc_nasid_mask_nlongs; /* #of longs in nasid mask */ |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 32 | |
Dean Nelson | bc63d38 | 2008-07-29 22:34:04 -0700 | [diff] [blame] | 33 | struct xpc_partition *xpc_partitions; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 34 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 35 | /* |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 36 | * Guarantee that the kmalloc'd memory is cacheline aligned. |
| 37 | */ |
Dean Nelson | 7682a4c | 2006-08-08 15:03:29 -0500 | [diff] [blame] | 38 | void * |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 39 | xpc_kmalloc_cacheline_aligned(size_t size, gfp_t flags, void **base) |
| 40 | { |
| 41 | /* see if kmalloc will give us cachline aligned memory by default */ |
| 42 | *base = kmalloc(size, flags); |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 43 | if (*base == NULL) |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 44 | return NULL; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 45 | |
| 46 | if ((u64)*base == L1_CACHE_ALIGN((u64)*base)) |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 47 | return *base; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 48 | |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 49 | kfree(*base); |
| 50 | |
| 51 | /* nope, we'll have to do it ourselves */ |
| 52 | *base = kmalloc(size + L1_CACHE_BYTES, flags); |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 53 | if (*base == NULL) |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 54 | return NULL; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 55 | |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 56 | return (void *)L1_CACHE_ALIGN((u64)*base); |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 57 | } |
| 58 | |
Jes Sorensen | 7aa6ba4 | 2006-02-17 05:18:43 -0500 | [diff] [blame] | 59 | /* |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 60 | * Given a nasid, get the physical address of the partition's reserved page |
| 61 | * for that nasid. This function returns 0 on any error. |
| 62 | */ |
| 63 | static u64 |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 64 | xpc_get_rsvd_page_pa(int nasid) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 65 | { |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 66 | enum xp_retval ret; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 67 | u64 cookie = 0; |
| 68 | u64 rp_pa = nasid; /* seed with nasid */ |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame^] | 69 | size_t len = 0; |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 70 | u64 buf = buf; |
| 71 | u64 buf_len = 0; |
| 72 | void *buf_base = NULL; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 73 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 74 | while (1) { |
| 75 | |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame^] | 76 | ret = xpc_get_partition_rsvd_page_pa(buf, &cookie, &rp_pa, |
| 77 | &len); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 78 | |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame^] | 79 | dev_dbg(xpc_part, "SAL returned with ret=%d, cookie=0x%016lx, " |
| 80 | "address=0x%016lx, len=0x%016lx\n", ret, |
| 81 | (unsigned long)cookie, (unsigned long)rp_pa, len); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 82 | |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame^] | 83 | if (ret != xpNeedMoreInfo) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 84 | break; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 85 | |
Dean Nelson | ea57f80 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 86 | /* !!! L1_CACHE_ALIGN() is only a sn2-bte_copy requirement */ |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 87 | if (L1_CACHE_ALIGN(len) > buf_len) { |
Jesper Juhl | cbf283c | 2006-04-20 10:11:09 -0700 | [diff] [blame] | 88 | kfree(buf_base); |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 89 | buf_len = L1_CACHE_ALIGN(len); |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 90 | buf = (u64)xpc_kmalloc_cacheline_aligned(buf_len, |
| 91 | GFP_KERNEL, |
| 92 | &buf_base); |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 93 | if (buf_base == NULL) { |
| 94 | dev_err(xpc_part, "unable to kmalloc " |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame^] | 95 | "len=0x%016lx\n", |
| 96 | (unsigned long)buf_len); |
| 97 | ret = xpNoMemory; |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 98 | break; |
| 99 | } |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 102 | ret = xp_remote_memcpy((void *)buf, (void *)rp_pa, buf_len); |
| 103 | if (ret != xpSuccess) { |
| 104 | dev_dbg(xpc_part, "xp_remote_memcpy failed %d\n", ret); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 105 | break; |
| 106 | } |
| 107 | } |
| 108 | |
Jesper Juhl | cbf283c | 2006-04-20 10:11:09 -0700 | [diff] [blame] | 109 | kfree(buf_base); |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 110 | |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame^] | 111 | if (ret != xpSuccess) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 112 | rp_pa = 0; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 113 | |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame^] | 114 | dev_dbg(xpc_part, "reserved page at phys address 0x%016lx\n", |
| 115 | (unsigned long)rp_pa); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 116 | return rp_pa; |
| 117 | } |
| 118 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 119 | /* |
| 120 | * Fill the partition reserved page with the information needed by |
| 121 | * other partitions to discover we are alive and establish initial |
| 122 | * communications. |
| 123 | */ |
| 124 | struct xpc_rsvd_page * |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 125 | xpc_setup_rsvd_page(void) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 126 | { |
| 127 | struct xpc_rsvd_page *rp; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 128 | u64 rp_pa; |
Dean Nelson | 81fe788 | 2008-07-29 22:34:15 -0700 | [diff] [blame] | 129 | unsigned long new_ts_jiffies; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 130 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 131 | /* get the local reserved page's address */ |
| 132 | |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 133 | preempt_disable(); |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame^] | 134 | rp_pa = xpc_get_rsvd_page_pa(xp_cpu_to_nasid(smp_processor_id())); |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 135 | preempt_enable(); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 136 | if (rp_pa == 0) { |
| 137 | dev_err(xpc_part, "SAL failed to locate the reserved page\n"); |
| 138 | return NULL; |
| 139 | } |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 140 | rp = (struct xpc_rsvd_page *)__va(rp_pa); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 141 | |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 142 | if (rp->SAL_version < 3) { |
| 143 | /* SAL_versions < 3 had a SAL_partid defined as a u8 */ |
| 144 | rp->SAL_partid &= 0xff; |
| 145 | } |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame^] | 146 | BUG_ON(rp->SAL_partid != xp_partition_id); |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 147 | |
| 148 | if (rp->SAL_partid < 0 || rp->SAL_partid >= xp_max_npartitions) { |
| 149 | dev_err(xpc_part, "the reserved page's partid of %d is outside " |
| 150 | "supported range (< 0 || >= %d)\n", rp->SAL_partid, |
| 151 | xp_max_npartitions); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 152 | return NULL; |
| 153 | } |
| 154 | |
| 155 | rp->version = XPC_RP_VERSION; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 156 | rp->max_npartitions = xp_max_npartitions; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 157 | |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 158 | /* establish the actual sizes of the nasid masks */ |
| 159 | if (rp->SAL_version == 1) { |
| 160 | /* SAL_version 1 didn't set the nasids_size field */ |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 161 | rp->SAL_nasids_size = 128; |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 162 | } |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 163 | xpc_nasid_mask_nbytes = rp->SAL_nasids_size; |
| 164 | xpc_nasid_mask_nlongs = BITS_TO_LONGS(rp->SAL_nasids_size * |
| 165 | BITS_PER_BYTE); |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 166 | |
| 167 | /* setup the pointers to the various items in the reserved page */ |
| 168 | xpc_part_nasids = XPC_RP_PART_NASIDS(rp); |
| 169 | xpc_mach_nasids = XPC_RP_MACH_NASIDS(rp); |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 170 | |
| 171 | if (xpc_rsvd_page_init(rp) != xpSuccess) |
| 172 | return NULL; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 173 | |
| 174 | /* |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 175 | * Set timestamp of when reserved page was setup by XPC. |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 176 | * This signifies to the remote partition that our reserved |
| 177 | * page is initialized. |
| 178 | */ |
Dean Nelson | 81fe788 | 2008-07-29 22:34:15 -0700 | [diff] [blame] | 179 | new_ts_jiffies = jiffies; |
| 180 | if (new_ts_jiffies == 0 || new_ts_jiffies == rp->ts_jiffies) |
| 181 | new_ts_jiffies++; |
| 182 | rp->ts_jiffies = new_ts_jiffies; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 183 | |
| 184 | return rp; |
| 185 | } |
| 186 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 187 | /* |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 188 | * Get a copy of a portion of the remote partition's rsvd page. |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 189 | * |
| 190 | * remote_rp points to a buffer that is cacheline aligned for BTE copies and |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 191 | * is large enough to contain a copy of their reserved page header and |
| 192 | * part_nasids mask. |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 193 | */ |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 194 | enum xp_retval |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 195 | xpc_get_remote_rp(int nasid, unsigned long *discovered_nasids, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 196 | struct xpc_rsvd_page *remote_rp, u64 *remote_rp_pa) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 197 | { |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 198 | int l; |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 199 | enum xp_retval ret; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 200 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 201 | /* get the reserved page's physical address */ |
| 202 | |
Dean Nelson | 2792902 | 2005-10-25 14:11:53 -0500 | [diff] [blame] | 203 | *remote_rp_pa = xpc_get_rsvd_page_pa(nasid); |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 204 | if (*remote_rp_pa == 0) |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 205 | return xpNoRsvdPageAddr; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 206 | |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 207 | /* pull over the reserved page header and part_nasids mask */ |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 208 | ret = xp_remote_memcpy(remote_rp, (void *)*remote_rp_pa, |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 209 | XPC_RP_HEADER_SIZE + xpc_nasid_mask_nbytes); |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 210 | if (ret != xpSuccess) |
| 211 | return ret; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 212 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 213 | if (discovered_nasids != NULL) { |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 214 | unsigned long *remote_part_nasids = |
| 215 | XPC_RP_PART_NASIDS(remote_rp); |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 216 | |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 217 | for (l = 0; l < xpc_nasid_mask_nlongs; l++) |
| 218 | discovered_nasids[l] |= remote_part_nasids[l]; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Dean Nelson | 81fe788 | 2008-07-29 22:34:15 -0700 | [diff] [blame] | 221 | /* zero timestamp indicates the reserved page has not been setup */ |
| 222 | if (remote_rp->ts_jiffies == 0) |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 223 | return xpRsvdPageNotSet; |
| 224 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 225 | if (XPC_VERSION_MAJOR(remote_rp->version) != |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 226 | XPC_VERSION_MAJOR(XPC_RP_VERSION)) { |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 227 | return xpBadVersion; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 228 | } |
| 229 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 230 | /* check that both remote and local partids are valid for each side */ |
Dean Nelson | aaa3cd6 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 231 | if (remote_rp->SAL_partid < 0 || |
| 232 | remote_rp->SAL_partid >= xp_max_npartitions || |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame^] | 233 | remote_rp->max_npartitions <= xp_partition_id) { |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 234 | return xpInvalidPartid; |
Dean Nelson | aaa3cd6 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 235 | } |
| 236 | |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame^] | 237 | if (remote_rp->SAL_partid == xp_partition_id) |
Dean Nelson | aaa3cd6 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 238 | return xpLocalPartid; |
Dean Nelson | 94bd270 | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 239 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 240 | return xpSuccess; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 241 | } |
| 242 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 243 | /* |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 244 | * See if the other side has responded to a partition deactivate request |
| 245 | * from us. Though we requested the remote partition to deactivate with regard |
| 246 | * to us, we really only need to wait for the other side to disengage from us. |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 247 | */ |
| 248 | int |
| 249 | xpc_partition_disengaged(struct xpc_partition *part) |
| 250 | { |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 251 | short partid = XPC_PARTID(part); |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 252 | int disengaged; |
| 253 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 254 | disengaged = !xpc_partition_engaged(partid); |
| 255 | if (part->disengage_timeout) { |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 256 | if (!disengaged) { |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 257 | if (time_is_after_jiffies(part->disengage_timeout)) { |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 258 | /* timelimit hasn't been reached yet */ |
| 259 | return 0; |
| 260 | } |
| 261 | |
| 262 | /* |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 263 | * Other side hasn't responded to our deactivate |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 264 | * request in a timely fashion, so assume it's dead. |
| 265 | */ |
| 266 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 267 | dev_info(xpc_part, "deactivate request to remote " |
| 268 | "partition %d timed out\n", partid); |
| 269 | xpc_disengage_timedout = 1; |
| 270 | xpc_assume_partition_disengaged(partid); |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 271 | disengaged = 1; |
| 272 | } |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 273 | part->disengage_timeout = 0; |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 274 | |
| 275 | /* cancel the timer function, provided it's not us */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 276 | if (!in_interrupt()) |
| 277 | del_singleshot_timer_sync(&part->disengage_timer); |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 278 | |
| 279 | DBUG_ON(part->act_state != XPC_P_DEACTIVATING && |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 280 | part->act_state != XPC_P_INACTIVE); |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 281 | if (part->act_state != XPC_P_INACTIVE) |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 282 | xpc_wakeup_channel_mgr(part); |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 283 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 284 | xpc_cancel_partition_deactivation_request(part); |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 285 | } |
| 286 | return disengaged; |
| 287 | } |
| 288 | |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 289 | /* |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 290 | * Mark specified partition as active. |
| 291 | */ |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 292 | enum xp_retval |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 293 | xpc_mark_partition_active(struct xpc_partition *part) |
| 294 | { |
| 295 | unsigned long irq_flags; |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 296 | enum xp_retval ret; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 297 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 298 | dev_dbg(xpc_part, "setting partition %d to ACTIVE\n", XPC_PARTID(part)); |
| 299 | |
| 300 | spin_lock_irqsave(&part->act_lock, irq_flags); |
| 301 | if (part->act_state == XPC_P_ACTIVATING) { |
| 302 | part->act_state = XPC_P_ACTIVE; |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 303 | ret = xpSuccess; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 304 | } else { |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 305 | DBUG_ON(part->reason == xpSuccess); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 306 | ret = part->reason; |
| 307 | } |
| 308 | spin_unlock_irqrestore(&part->act_lock, irq_flags); |
| 309 | |
| 310 | return ret; |
| 311 | } |
| 312 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 313 | /* |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 314 | * Start the process of deactivating the specified partition. |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 315 | */ |
| 316 | void |
| 317 | xpc_deactivate_partition(const int line, struct xpc_partition *part, |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 318 | enum xp_retval reason) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 319 | { |
| 320 | unsigned long irq_flags; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 321 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 322 | spin_lock_irqsave(&part->act_lock, irq_flags); |
| 323 | |
| 324 | if (part->act_state == XPC_P_INACTIVE) { |
| 325 | XPC_SET_REASON(part, reason, line); |
| 326 | spin_unlock_irqrestore(&part->act_lock, irq_flags); |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 327 | if (reason == xpReactivating) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 328 | /* we interrupt ourselves to reactivate partition */ |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 329 | xpc_request_partition_reactivation(part); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 330 | } |
| 331 | return; |
| 332 | } |
| 333 | if (part->act_state == XPC_P_DEACTIVATING) { |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 334 | if ((part->reason == xpUnloading && reason != xpUnloading) || |
| 335 | reason == xpReactivating) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 336 | XPC_SET_REASON(part, reason, line); |
| 337 | } |
| 338 | spin_unlock_irqrestore(&part->act_lock, irq_flags); |
| 339 | return; |
| 340 | } |
| 341 | |
| 342 | part->act_state = XPC_P_DEACTIVATING; |
| 343 | XPC_SET_REASON(part, reason, line); |
| 344 | |
| 345 | spin_unlock_irqrestore(&part->act_lock, irq_flags); |
| 346 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 347 | /* ask remote partition to deactivate with regard to us */ |
| 348 | xpc_request_partition_deactivation(part); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 349 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 350 | /* set a timelimit on the disengage phase of the deactivation request */ |
| 351 | part->disengage_timeout = jiffies + (xpc_disengage_timelimit * HZ); |
| 352 | part->disengage_timer.expires = part->disengage_timeout; |
| 353 | add_timer(&part->disengage_timer); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 354 | |
Dean Nelson | e54af72 | 2005-10-25 14:07:43 -0500 | [diff] [blame] | 355 | dev_dbg(xpc_part, "bringing partition %d down, reason = %d\n", |
| 356 | XPC_PARTID(part), reason); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 357 | |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 358 | xpc_partition_going_down(part, reason); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 359 | } |
| 360 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 361 | /* |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 362 | * Mark specified partition as inactive. |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 363 | */ |
| 364 | void |
| 365 | xpc_mark_partition_inactive(struct xpc_partition *part) |
| 366 | { |
| 367 | unsigned long irq_flags; |
| 368 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 369 | dev_dbg(xpc_part, "setting partition %d to INACTIVE\n", |
| 370 | XPC_PARTID(part)); |
| 371 | |
| 372 | spin_lock_irqsave(&part->act_lock, irq_flags); |
| 373 | part->act_state = XPC_P_INACTIVE; |
| 374 | spin_unlock_irqrestore(&part->act_lock, irq_flags); |
| 375 | part->remote_rp_pa = 0; |
| 376 | } |
| 377 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 378 | /* |
| 379 | * SAL has provided a partition and machine mask. The partition mask |
| 380 | * contains a bit for each even nasid in our partition. The machine |
| 381 | * mask contains a bit for each even nasid in the entire machine. |
| 382 | * |
| 383 | * Using those two bit arrays, we can determine which nasids are |
| 384 | * known in the machine. Each should also have a reserved page |
| 385 | * initialized if they are available for partitioning. |
| 386 | */ |
| 387 | void |
| 388 | xpc_discovery(void) |
| 389 | { |
| 390 | void *remote_rp_base; |
| 391 | struct xpc_rsvd_page *remote_rp; |
Dean Nelson | a607c389 | 2005-09-01 14:01:37 -0500 | [diff] [blame] | 392 | u64 remote_rp_pa; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 393 | int region; |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 394 | int region_size; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 395 | int max_regions; |
| 396 | int nasid; |
| 397 | struct xpc_rsvd_page *rp; |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 398 | unsigned long *discovered_nasids; |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 399 | enum xp_retval ret; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 400 | |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 401 | remote_rp = xpc_kmalloc_cacheline_aligned(XPC_RP_HEADER_SIZE + |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 402 | xpc_nasid_mask_nbytes, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 403 | GFP_KERNEL, &remote_rp_base); |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 404 | if (remote_rp == NULL) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 405 | return; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 406 | |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 407 | discovered_nasids = kzalloc(sizeof(long) * xpc_nasid_mask_nlongs, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 408 | GFP_KERNEL); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 409 | if (discovered_nasids == NULL) { |
| 410 | kfree(remote_rp_base); |
| 411 | return; |
| 412 | } |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 413 | |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 414 | rp = (struct xpc_rsvd_page *)xpc_rsvd_page; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 415 | |
| 416 | /* |
| 417 | * The term 'region' in this context refers to the minimum number of |
| 418 | * nodes that can comprise an access protection grouping. The access |
| 419 | * protection is in regards to memory, IOI and IPI. |
| 420 | */ |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 421 | max_regions = 64; |
Dean Nelson | 261f3b4 | 2008-07-29 22:34:16 -0700 | [diff] [blame^] | 422 | region_size = xp_region_size; |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 423 | |
| 424 | switch (region_size) { |
| 425 | case 128: |
| 426 | max_regions *= 2; |
| 427 | case 64: |
| 428 | max_regions *= 2; |
| 429 | case 32: |
| 430 | max_regions *= 2; |
| 431 | region_size = 16; |
| 432 | DBUG_ON(!is_shub2()); |
| 433 | } |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 434 | |
| 435 | for (region = 0; region < max_regions; region++) { |
| 436 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 437 | if (xpc_exiting) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 438 | break; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 439 | |
| 440 | dev_dbg(xpc_part, "searching region %d\n", region); |
| 441 | |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 442 | for (nasid = (region * region_size * 2); |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 443 | nasid < ((region + 1) * region_size * 2); nasid += 2) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 444 | |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 445 | if (xpc_exiting) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 446 | break; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 447 | |
| 448 | dev_dbg(xpc_part, "checking nasid %d\n", nasid); |
| 449 | |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 450 | if (test_bit(nasid / 2, xpc_part_nasids)) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 451 | dev_dbg(xpc_part, "PROM indicates Nasid %d is " |
| 452 | "part of the local partition; skipping " |
| 453 | "region\n", nasid); |
| 454 | break; |
| 455 | } |
| 456 | |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 457 | if (!(test_bit(nasid / 2, xpc_mach_nasids))) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 458 | dev_dbg(xpc_part, "PROM indicates Nasid %d was " |
| 459 | "not on Numa-Link network at reset\n", |
| 460 | nasid); |
| 461 | continue; |
| 462 | } |
| 463 | |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 464 | if (test_bit(nasid / 2, discovered_nasids)) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 465 | dev_dbg(xpc_part, "Nasid %d is part of a " |
| 466 | "partition which was previously " |
| 467 | "discovered\n", nasid); |
| 468 | continue; |
| 469 | } |
| 470 | |
Dean Nelson | 33ba3c7 | 2008-07-29 22:34:07 -0700 | [diff] [blame] | 471 | /* pull over the rsvd page header & part_nasids mask */ |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 472 | |
| 473 | ret = xpc_get_remote_rp(nasid, discovered_nasids, |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 474 | remote_rp, &remote_rp_pa); |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 475 | if (ret != xpSuccess) { |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 476 | dev_dbg(xpc_part, "unable to get reserved page " |
| 477 | "from nasid %d, reason=%d\n", nasid, |
| 478 | ret); |
| 479 | |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 480 | if (ret == xpLocalPartid) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 481 | break; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 482 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 483 | continue; |
| 484 | } |
| 485 | |
Dean Nelson | a47d5da | 2008-07-29 22:34:09 -0700 | [diff] [blame] | 486 | xpc_request_partition_activation(remote_rp, |
| 487 | remote_rp_pa, nasid); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 488 | } |
| 489 | } |
| 490 | |
| 491 | kfree(discovered_nasids); |
| 492 | kfree(remote_rp_base); |
| 493 | } |
| 494 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 495 | /* |
| 496 | * Given a partid, get the nasids owned by that partition from the |
Dean Nelson | 3a7d555 | 2005-04-04 13:14:00 -0700 | [diff] [blame] | 497 | * remote partition's reserved page. |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 498 | */ |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 499 | enum xp_retval |
Dean Nelson | 64d032b | 2008-05-12 14:02:03 -0700 | [diff] [blame] | 500 | xpc_initiate_partid_to_nasids(short partid, void *nasid_mask) |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 501 | { |
| 502 | struct xpc_partition *part; |
| 503 | u64 part_nasid_pa; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 504 | |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 505 | part = &xpc_partitions[partid]; |
Dean Nelson | 2c2b94f | 2008-04-22 14:50:17 -0500 | [diff] [blame] | 506 | if (part->remote_rp_pa == 0) |
Dean Nelson | 65c17b8 | 2008-05-12 14:02:02 -0700 | [diff] [blame] | 507 | return xpPartitionDown; |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 508 | |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 509 | memset(nasid_mask, 0, xpc_nasid_mask_nbytes); |
Dean Nelson | 4b38fcd | 2005-10-25 14:09:51 -0500 | [diff] [blame] | 510 | |
Dean Nelson | 4a3ad2d | 2008-04-22 14:48:01 -0500 | [diff] [blame] | 511 | part_nasid_pa = (u64)XPC_RP_PART_NASIDS(part->remote_rp_pa); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 512 | |
Dean Nelson | 908787d | 2008-07-29 22:34:05 -0700 | [diff] [blame] | 513 | return xp_remote_memcpy(nasid_mask, (void *)part_nasid_pa, |
Dean Nelson | 04de741 | 2008-07-29 22:34:14 -0700 | [diff] [blame] | 514 | xpc_nasid_mask_nbytes); |
Dean Nelson | 89eb8eb | 2005-03-23 19:50:00 -0700 | [diff] [blame] | 515 | } |