Symbol: uv_systab
arch/x86/include/asm/uv/bios.h
127
extern struct uv_systab *uv_systab;
arch/x86/kernel/apic/x2apic_uv_x.c
1323
struct uv_systab *st;
arch/x86/kernel/apic/x2apic_uv_x.c
1327
st = uv_systab;
arch/x86/kernel/apic/x2apic_uv_x.c
272
static unsigned long __init early_find_archtype(struct uv_systab *st)
arch/x86/kernel/apic/x2apic_uv_x.c
306
struct uv_systab *st;
arch/x86/kernel/apic/x2apic_uv_x.c
314
st = early_memremap_ro(uvst_physaddr, sizeof(struct uv_systab));
arch/x86/kernel/apic/x2apic_uv_x.c
322
early_memunmap(st, sizeof(struct uv_systab));
arch/x86/kernel/apic/x2apic_uv_x.c
327
early_memunmap(st, sizeof(struct uv_systab));
arch/x86/platform/uv/bios_uv.c
21
struct uv_systab *uv_systab;
arch/x86/platform/uv/bios_uv.c
244
uv_systab = NULL;
arch/x86/platform/uv/bios_uv.c
249
uv_systab = ioremap(uv_systab_phys_addr, sizeof(struct uv_systab));
arch/x86/platform/uv/bios_uv.c
250
if (!uv_systab || strncmp(uv_systab->signature, UV_SYSTAB_SIG, 4)) {
arch/x86/platform/uv/bios_uv.c
252
iounmap(uv_systab);
arch/x86/platform/uv/bios_uv.c
257
if (uv_systab->revision >= UV_SYSTAB_VERSION_UV4) {
arch/x86/platform/uv/bios_uv.c
258
int size = uv_systab->size;
arch/x86/platform/uv/bios_uv.c
26
struct uv_systab *tab = uv_systab;
arch/x86/platform/uv/bios_uv.c
260
iounmap(uv_systab);
arch/x86/platform/uv/bios_uv.c
261
uv_systab = ioremap(uv_systab_phys_addr, size);
arch/x86/platform/uv/bios_uv.c
262
if (!uv_systab) {
arch/x86/platform/uv/bios_uv.c
267
pr_info("UV: UVsystab: Revision:%x\n", uv_systab->revision);