aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/uv/bios.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-x86/uv/bios.h')
-rw-r--r--include/asm-x86/uv/bios.h22
1 files changed, 19 insertions, 3 deletions
diff --git a/include/asm-x86/uv/bios.h b/include/asm-x86/uv/bios.h
index f63e46e5337c..3b305d897c84 100644
--- a/include/asm-x86/uv/bios.h
+++ b/include/asm-x86/uv/bios.h
@@ -61,6 +61,16 @@ enum {
61 BIOS_FREQ_BASE_REALTIME_CLOCK = 2 61 BIOS_FREQ_BASE_REALTIME_CLOCK = 2
62}; 62};
63 63
64union partition_info_u {
65 u64 val;
66 struct {
67 u64 hub_version : 8,
68 partition_id : 16,
69 coherence_id : 16,
70 region_size : 24;
71 };
72};
73
64/* 74/*
65 * bios calls have 6 parameters 75 * bios calls have 6 parameters
66 */ 76 */
@@ -68,10 +78,16 @@ extern s64 uv_bios_call(enum uv_bios_cmd, u64, u64, u64, u64, u64);
68extern s64 uv_bios_call_irqsave(enum uv_bios_cmd, u64, u64, u64, u64, u64); 78extern s64 uv_bios_call_irqsave(enum uv_bios_cmd, u64, u64, u64, u64, u64);
69extern s64 uv_bios_call_reentrant(enum uv_bios_cmd, u64, u64, u64, u64, u64); 79extern s64 uv_bios_call_reentrant(enum uv_bios_cmd, u64, u64, u64, u64, u64);
70 80
81extern s64 uv_bios_get_sn_info(int, int *, long *, long *, long *);
82extern s64 uv_bios_freq_base(u64, u64 *);
83
71extern void uv_bios_init(void); 84extern void uv_bios_init(void);
72 85
73extern long 86extern int uv_type;
74x86_bios_freq_base(unsigned long which, unsigned long *ticks_per_second, 87extern long sn_partition_id;
75 unsigned long *drift_info); 88extern long uv_coherency_id;
89extern long uv_region_size;
90#define partition_coherence_id() (uv_coherency_id)
91
76 92
77#endif /* ASM_X86__UV__BIOS_H */ 93#endif /* ASM_X86__UV__BIOS_H */