2 * Access to the shared data page by the vDSO & syscall map
4 * Copyright (C) 2004 Benjamin Herrenschmuidt (benh@kernel.crashing.org), IBM Corp.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/config.h>
13 #include <asm/processor.h>
14 #include <asm/ppc_asm.h>
15 #include <asm/asm-offsets.h>
16 #include <asm/unistd.h>
20 V_FUNCTION_BEGIN(__get_datapage)
22 /* We don't want that exposed or overridable as we want other objects
23 * to be able to bl directly to here
25 .protected __get_datapage
26 .hidden __get_datapage
32 .global __kernel_datapage_offset;
33 __kernel_datapage_offset:
42 V_FUNCTION_END(__get_datapage)
45 * void *__kernel_get_syscall_map(unsigned int *syscall_count) ;
47 * returns a pointer to the syscall map. the map is agnostic to the
48 * size of "long", unlike kernel bitops, it stores bits from top to
49 * bottom so that memory actually contains a linear bitmap
50 * check for syscall N by testing bit (0x80000000 >> (N & 0x1f)) of
51 * 32 bits int at N >> 5.
53 V_FUNCTION_BEGIN(__kernel_get_syscall_map)
58 bl __get_datapage@local
60 addi r3,r3,CFG_SYSCALL_MAP32
68 V_FUNCTION_END(__kernel_get_syscall_map)
71 * void unsigned long long __kernel_get_tbfreq(void);
73 * returns the timebase frequency in HZ
75 V_FUNCTION_BEGIN(__kernel_get_tbfreq)
79 bl __get_datapage@local
80 lwz r4,(CFG_TB_TICKS_PER_SEC + 4)(r3)
81 lwz r3,CFG_TB_TICKS_PER_SEC(r3)
86 V_FUNCTION_END(__kernel_get_tbfreq)