diff options
| -rw-r--r-- | drivers/misc/sgi-xp/xp.h | 7 | ||||
| -rw-r--r-- | drivers/misc/sgi-xp/xp_main.c | 7 | ||||
| -rw-r--r-- | drivers/misc/sgi-xp/xp_sn2.c | 34 | ||||
| -rw-r--r-- | drivers/misc/sgi-xp/xp_uv.c | 66 | ||||
| -rw-r--r-- | drivers/misc/sgi-xp/xpc_sn2.c | 15 |
5 files changed, 117 insertions, 12 deletions
diff --git a/drivers/misc/sgi-xp/xp.h b/drivers/misc/sgi-xp/xp.h index 859a5281c61b..974ffe3817b6 100644 --- a/drivers/misc/sgi-xp/xp.h +++ b/drivers/misc/sgi-xp/xp.h | |||
| @@ -190,9 +190,10 @@ enum xp_retval { | |||
| 190 | xpGruSendMqError, /* 59: gru send message queue related error */ | 190 | xpGruSendMqError, /* 59: gru send message queue related error */ |
| 191 | 191 | ||
| 192 | xpBadChannelNumber, /* 60: invalid channel number */ | 192 | xpBadChannelNumber, /* 60: invalid channel number */ |
| 193 | xpBadMsgType, /* 60: invalid message type */ | 193 | xpBadMsgType, /* 61: invalid message type */ |
| 194 | xpBiosError, /* 62: BIOS error */ | ||
| 194 | 195 | ||
| 195 | xpUnknownReason /* 61: unknown reason - must be last in enum */ | 196 | xpUnknownReason /* 63: unknown reason - must be last in enum */ |
| 196 | }; | 197 | }; |
| 197 | 198 | ||
| 198 | /* | 199 | /* |
| @@ -341,6 +342,8 @@ extern unsigned long (*xp_pa) (void *); | |||
| 341 | extern enum xp_retval (*xp_remote_memcpy) (unsigned long, const unsigned long, | 342 | extern enum xp_retval (*xp_remote_memcpy) (unsigned long, const unsigned long, |
| 342 | size_t); | 343 | size_t); |
| 343 | extern int (*xp_cpu_to_nasid) (int); | 344 | extern int (*xp_cpu_to_nasid) (int); |
| 345 | extern enum xp_retval (*xp_expand_memprotect) (unsigned long, unsigned long); | ||
| 346 | extern enum xp_retval (*xp_restrict_memprotect) (unsigned long, unsigned long); | ||
| 344 | 347 | ||
| 345 | extern u64 xp_nofault_PIOR_target; | 348 | extern u64 xp_nofault_PIOR_target; |
| 346 | extern int xp_nofault_PIOR(void *); | 349 | extern int xp_nofault_PIOR(void *); |
diff --git a/drivers/misc/sgi-xp/xp_main.c b/drivers/misc/sgi-xp/xp_main.c index 66a1d19e08ad..9a2e77172d94 100644 --- a/drivers/misc/sgi-xp/xp_main.c +++ b/drivers/misc/sgi-xp/xp_main.c | |||
| @@ -51,6 +51,13 @@ EXPORT_SYMBOL_GPL(xp_remote_memcpy); | |||
| 51 | int (*xp_cpu_to_nasid) (int cpuid); | 51 | int (*xp_cpu_to_nasid) (int cpuid); |
| 52 | EXPORT_SYMBOL_GPL(xp_cpu_to_nasid); | 52 | EXPORT_SYMBOL_GPL(xp_cpu_to_nasid); |
| 53 | 53 | ||
| 54 | enum xp_retval (*xp_expand_memprotect) (unsigned long phys_addr, | ||
| 55 | unsigned long size); | ||
| 56 | EXPORT_SYMBOL_GPL(xp_expand_memprotect); | ||
| 57 | enum xp_retval (*xp_restrict_memprotect) (unsigned long phys_addr, | ||
| 58 | unsigned long size); | ||
| 59 | EXPORT_SYMBOL_GPL(xp_restrict_memprotect); | ||
| 60 | |||
| 54 | /* | 61 | /* |
| 55 | * xpc_registrations[] keeps track of xpc_connect()'s done by the kernel-level | 62 | * xpc_registrations[] keeps track of xpc_connect()'s done by the kernel-level |
| 56 | * users of XPC. | 63 | * users of XPC. |
diff --git a/drivers/misc/sgi-xp/xp_sn2.c b/drivers/misc/sgi-xp/xp_sn2.c index 1440134caf31..fb3ec9d735a9 100644 --- a/drivers/misc/sgi-xp/xp_sn2.c +++ b/drivers/misc/sgi-xp/xp_sn2.c | |||
| @@ -120,6 +120,38 @@ xp_cpu_to_nasid_sn2(int cpuid) | |||
| 120 | return cpuid_to_nasid(cpuid); | 120 | return cpuid_to_nasid(cpuid); |
| 121 | } | 121 | } |
| 122 | 122 | ||
| 123 | static enum xp_retval | ||
| 124 | xp_expand_memprotect_sn2(unsigned long phys_addr, unsigned long size) | ||
| 125 | { | ||
| 126 | u64 nasid_array = 0; | ||
| 127 | int ret; | ||
| 128 | |||
| 129 | ret = sn_change_memprotect(phys_addr, size, SN_MEMPROT_ACCESS_CLASS_1, | ||
| 130 | &nasid_array); | ||
| 131 | if (ret != 0) { | ||
| 132 | dev_err(xp, "sn_change_memprotect(,, " | ||
| 133 | "SN_MEMPROT_ACCESS_CLASS_1,) failed ret=%d\n", ret); | ||
| 134 | return xpSalError; | ||
| 135 | } | ||
| 136 | return xpSuccess; | ||
| 137 | } | ||
| 138 | |||
| 139 | static enum xp_retval | ||
| 140 | xp_restrict_memprotect_sn2(unsigned long phys_addr, unsigned long size) | ||
| 141 | { | ||
| 142 | u64 nasid_array = 0; | ||
| 143 | int ret; | ||
| 144 | |||
| 145 | ret = sn_change_memprotect(phys_addr, size, SN_MEMPROT_ACCESS_CLASS_0, | ||
| 146 | &nasid_array); | ||
| 147 | if (ret != 0) { | ||
| 148 | dev_err(xp, "sn_change_memprotect(,, " | ||
| 149 | "SN_MEMPROT_ACCESS_CLASS_0,) failed ret=%d\n", ret); | ||
| 150 | return xpSalError; | ||
| 151 | } | ||
| 152 | return xpSuccess; | ||
| 153 | } | ||
| 154 | |||
| 123 | enum xp_retval | 155 | enum xp_retval |
| 124 | xp_init_sn2(void) | 156 | xp_init_sn2(void) |
| 125 | { | 157 | { |
| @@ -132,6 +164,8 @@ xp_init_sn2(void) | |||
| 132 | xp_pa = xp_pa_sn2; | 164 | xp_pa = xp_pa_sn2; |
| 133 | xp_remote_memcpy = xp_remote_memcpy_sn2; | 165 | xp_remote_memcpy = xp_remote_memcpy_sn2; |
| 134 | xp_cpu_to_nasid = xp_cpu_to_nasid_sn2; | 166 | xp_cpu_to_nasid = xp_cpu_to_nasid_sn2; |
| 167 | xp_expand_memprotect = xp_expand_memprotect_sn2; | ||
| 168 | xp_restrict_memprotect = xp_restrict_memprotect_sn2; | ||
| 135 | 169 | ||
| 136 | return xp_register_nofault_code_sn2(); | 170 | return xp_register_nofault_code_sn2(); |
| 137 | } | 171 | } |
diff --git a/drivers/misc/sgi-xp/xp_uv.c b/drivers/misc/sgi-xp/xp_uv.c index d9f7ce2510bc..c1bfec2b173c 100644 --- a/drivers/misc/sgi-xp/xp_uv.c +++ b/drivers/misc/sgi-xp/xp_uv.c | |||
| @@ -15,6 +15,11 @@ | |||
| 15 | 15 | ||
| 16 | #include <linux/device.h> | 16 | #include <linux/device.h> |
| 17 | #include <asm/uv/uv_hub.h> | 17 | #include <asm/uv/uv_hub.h> |
| 18 | #if defined CONFIG_X86_64 | ||
| 19 | #include <asm/uv/bios.h> | ||
| 20 | #elif defined CONFIG_IA64_GENERIC || defined CONFIG_IA64_SGI_UV | ||
| 21 | #include <asm/sn/sn_sal.h> | ||
| 22 | #endif | ||
| 18 | #include "../sgi-gru/grukservices.h" | 23 | #include "../sgi-gru/grukservices.h" |
| 19 | #include "xp.h" | 24 | #include "xp.h" |
| 20 | 25 | ||
| @@ -49,6 +54,65 @@ xp_cpu_to_nasid_uv(int cpuid) | |||
| 49 | return UV_PNODE_TO_NASID(uv_cpu_to_pnode(cpuid)); | 54 | return UV_PNODE_TO_NASID(uv_cpu_to_pnode(cpuid)); |
| 50 | } | 55 | } |
| 51 | 56 | ||
| 57 | static enum xp_retval | ||
| 58 | xp_expand_memprotect_uv(unsigned long phys_addr, unsigned long size) | ||
| 59 | { | ||
| 60 | int ret; | ||
| 61 | |||
| 62 | #if defined CONFIG_X86_64 | ||
| 63 | ret = uv_bios_change_memprotect(phys_addr, size, UV_MEMPROT_ALLOW_RW); | ||
| 64 | if (ret != BIOS_STATUS_SUCCESS) { | ||
| 65 | dev_err(xp, "uv_bios_change_memprotect(,, " | ||
| 66 | "UV_MEMPROT_ALLOW_RW) failed, ret=%d\n", ret); | ||
| 67 | return xpBiosError; | ||
| 68 | } | ||
| 69 | |||
| 70 | #elif defined CONFIG_IA64_GENERIC || defined CONFIG_IA64_SGI_UV | ||
| 71 | u64 nasid_array; | ||
| 72 | |||
| 73 | ret = sn_change_memprotect(phys_addr, size, SN_MEMPROT_ACCESS_CLASS_1, | ||
| 74 | &nasid_array); | ||
| 75 | if (ret != 0) { | ||
| 76 | dev_err(xp, "sn_change_memprotect(,, " | ||
| 77 | "SN_MEMPROT_ACCESS_CLASS_1,) failed ret=%d\n", ret); | ||
| 78 | return xpSalError; | ||
| 79 | } | ||
| 80 | #else | ||
| 81 | #error not a supported configuration | ||
| 82 | #endif | ||
| 83 | return xpSuccess; | ||
| 84 | } | ||
| 85 | |||
| 86 | static enum xp_retval | ||
| 87 | xp_restrict_memprotect_uv(unsigned long phys_addr, unsigned long size) | ||
| 88 | { | ||
| 89 | int ret; | ||
| 90 | |||
| 91 | #if defined CONFIG_X86_64 | ||
| 92 | ret = uv_bios_change_memprotect(phys_addr, size, | ||
| 93 | UV_MEMPROT_RESTRICT_ACCESS); | ||
| 94 | if (ret != BIOS_STATUS_SUCCESS) { | ||
| 95 | dev_err(xp, "uv_bios_change_memprotect(,, " | ||
| 96 | "UV_MEMPROT_RESTRICT_ACCESS) failed, ret=%d\n", ret); | ||
| 97 | return xpBiosError; | ||
| 98 | } | ||
| 99 | |||
| 100 | #elif defined CONFIG_IA64_GENERIC || defined CONFIG_IA64_SGI_UV | ||
| 101 | u64 nasid_array; | ||
| 102 | |||
| 103 | ret = sn_change_memprotect(phys_addr, size, SN_MEMPROT_ACCESS_CLASS_0, | ||
| 104 | &nasid_array); | ||
| 105 | if (ret != 0) { | ||
| 106 | dev_err(xp, "sn_change_memprotect(,, " | ||
| 107 | "SN_MEMPROT_ACCESS_CLASS_0,) failed ret=%d\n", ret); | ||
| 108 | return xpSalError; | ||
| 109 | } | ||
| 110 | #else | ||
| 111 | #error not a supported configuration | ||
| 112 | #endif | ||
| 113 | return xpSuccess; | ||
| 114 | } | ||
| 115 | |||
| 52 | enum xp_retval | 116 | enum xp_retval |
| 53 | xp_init_uv(void) | 117 | xp_init_uv(void) |
| 54 | { | 118 | { |
| @@ -61,6 +125,8 @@ xp_init_uv(void) | |||
| 61 | xp_pa = xp_pa_uv; | 125 | xp_pa = xp_pa_uv; |
| 62 | xp_remote_memcpy = xp_remote_memcpy_uv; | 126 | xp_remote_memcpy = xp_remote_memcpy_uv; |
| 63 | xp_cpu_to_nasid = xp_cpu_to_nasid_uv; | 127 | xp_cpu_to_nasid = xp_cpu_to_nasid_uv; |
| 128 | xp_expand_memprotect = xp_expand_memprotect_uv; | ||
| 129 | xp_restrict_memprotect = xp_restrict_memprotect_uv; | ||
| 64 | 130 | ||
| 65 | return xpSuccess; | 131 | return xpSuccess; |
| 66 | } | 132 | } |
diff --git a/drivers/misc/sgi-xp/xpc_sn2.c b/drivers/misc/sgi-xp/xpc_sn2.c index b4882ccf6344..73b7fb8de47a 100644 --- a/drivers/misc/sgi-xp/xpc_sn2.c +++ b/drivers/misc/sgi-xp/xpc_sn2.c | |||
| @@ -553,22 +553,17 @@ static u64 xpc_prot_vec_sn2[MAX_NUMNODES]; | |||
| 553 | static enum xp_retval | 553 | static enum xp_retval |
| 554 | xpc_allow_amo_ops_sn2(struct amo *amos_page) | 554 | xpc_allow_amo_ops_sn2(struct amo *amos_page) |
| 555 | { | 555 | { |
| 556 | u64 nasid_array = 0; | 556 | enum xp_retval ret = xpSuccess; |
| 557 | int ret; | ||
| 558 | 557 | ||
| 559 | /* | 558 | /* |
| 560 | * On SHUB 1.1, we cannot call sn_change_memprotect() since the BIST | 559 | * On SHUB 1.1, we cannot call sn_change_memprotect() since the BIST |
| 561 | * collides with memory operations. On those systems we call | 560 | * collides with memory operations. On those systems we call |
| 562 | * xpc_allow_amo_ops_shub_wars_1_1_sn2() instead. | 561 | * xpc_allow_amo_ops_shub_wars_1_1_sn2() instead. |
| 563 | */ | 562 | */ |
| 564 | if (!enable_shub_wars_1_1()) { | 563 | if (!enable_shub_wars_1_1()) |
| 565 | ret = sn_change_memprotect(ia64_tpa((u64)amos_page), PAGE_SIZE, | 564 | ret = xp_expand_memprotect(ia64_tpa((u64)amos_page), PAGE_SIZE); |
| 566 | SN_MEMPROT_ACCESS_CLASS_1, | 565 | |
| 567 | &nasid_array); | 566 | return ret; |
| 568 | if (ret != 0) | ||
| 569 | return xpSalError; | ||
| 570 | } | ||
| 571 | return xpSuccess; | ||
| 572 | } | 567 | } |
| 573 | 568 | ||
| 574 | /* | 569 | /* |
