diff options
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/include/asm/uv/uv_hub.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/x86/include/asm/uv/uv_hub.h b/arch/x86/include/asm/uv/uv_hub.h index d1414af98559..0cc955f16aec 100644 --- a/arch/x86/include/asm/uv/uv_hub.h +++ b/arch/x86/include/asm/uv/uv_hub.h | |||
@@ -232,6 +232,19 @@ static inline unsigned long uv_gpa(void *v) | |||
232 | return uv_soc_phys_ram_to_gpa(__pa(v)); | 232 | return uv_soc_phys_ram_to_gpa(__pa(v)); |
233 | } | 233 | } |
234 | 234 | ||
235 | /* UV global physical address --> socket phys RAM */ | ||
236 | static inline unsigned long uv_gpa_to_soc_phys_ram(unsigned long gpa) | ||
237 | { | ||
238 | unsigned long paddr = gpa & uv_hub_info->gpa_mask; | ||
239 | unsigned long remap_base = uv_hub_info->lowmem_remap_base; | ||
240 | unsigned long remap_top = uv_hub_info->lowmem_remap_top; | ||
241 | |||
242 | if (paddr >= remap_base && paddr < remap_base + remap_top) | ||
243 | paddr -= remap_base; | ||
244 | return paddr; | ||
245 | } | ||
246 | |||
247 | |||
235 | /* gnode -> pnode */ | 248 | /* gnode -> pnode */ |
236 | static inline unsigned long uv_gpa_to_gnode(unsigned long gpa) | 249 | static inline unsigned long uv_gpa_to_gnode(unsigned long gpa) |
237 | { | 250 | { |