]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/asm-x86_64/vsyscall.h
Clean up mostly unused IOSPACE macros
[mirror_ubuntu-artful-kernel.git] / include / asm-x86_64 / vsyscall.h
CommitLineData
1da177e4
LT
1#ifndef _ASM_X86_64_VSYSCALL_H_
2#define _ASM_X86_64_VSYSCALL_H_
3
1da177e4
LT
4enum vsyscall_num {
5 __NR_vgettimeofday,
6 __NR_vtime,
c08c8205 7 __NR_vgetcpu,
1da177e4
LT
8};
9
10#define VSYSCALL_START (-10UL << 20)
11#define VSYSCALL_SIZE 1024
12#define VSYSCALL_END (-2UL << 20)
103efcd9 13#define VSYSCALL_MAPPED_PAGES 1
1da177e4
LT
14#define VSYSCALL_ADDR(vsyscall_nr) (VSYSCALL_START+VSYSCALL_SIZE*(vsyscall_nr))
15
16#ifdef __KERNEL__
75da736f 17#include <linux/seqlock.h>
1da177e4 18
c08c8205 19#define __section_vgetcpu_mode __attribute__ ((unused, __section__ (".vgetcpu_mode"), aligned(16)))
1da177e4 20#define __section_jiffies __attribute__ ((unused, __section__ (".jiffies"), aligned(16)))
1da177e4 21
7460ed28
JS
22/* Definitions for CONFIG_GENERIC_TIME definitions */
23#define __section_vsyscall_gtod_data __attribute__ \
24 ((unused, __section__ (".vsyscall_gtod_data"),aligned(16)))
25#define __vsyscall_fn __attribute__ ((unused,__section__(".vsyscall_fn")))
1da177e4 26
c08c8205
VP
27#define VGETCPU_RDTSCP 1
28#define VGETCPU_LSL 2
29
77a75333
SH
30#define hpet_readl(a) readl((const void __iomem *)fix_to_virt(FIX_HPET_BASE) + a)
31#define hpet_writel(d,a) writel(d, (void __iomem *)fix_to_virt(FIX_HPET_BASE) + a)
1da177e4 32
c08c8205 33extern int __vgetcpu_mode;
1da177e4 34extern volatile unsigned long __jiffies;
1da177e4
LT
35
36/* kernel space (writeable) */
c08c8205 37extern int vgetcpu_mode;
1da177e4 38extern struct timezone sys_tz;
7460ed28 39extern struct vsyscall_gtod_data_t vsyscall_gtod_data;
1da177e4
LT
40
41#endif /* __KERNEL__ */
42
43#endif /* _ASM_X86_64_VSYSCALL_H_ */