hc
2024-05-10 37f49e37ab4cb5d0bc4c60eb5c6d4dd57db767bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Access to the shared data page by the vDSO & syscall map
 *
 * Copyright (C) 2004 Benjamin Herrenschmuidt (benh@kernel.crashing.org), IBM Corp.
 */
 
#include <asm/processor.h>
#include <asm/ppc_asm.h>
#include <asm/asm-offsets.h>
#include <asm/unistd.h>
#include <asm/vdso.h>
#include <asm/vdso_datapage.h>
 
   .text
.global    __kernel_datapage_offset;
__kernel_datapage_offset:
   .long    0
 
/*
 * void *__kernel_get_syscall_map(unsigned int *syscall_count) ;
 *
 * returns a pointer to the syscall map. the map is agnostic to the
 * size of "long", unlike kernel bitops, it stores bits from top to
 * bottom so that memory actually contains a linear bitmap
 * check for syscall N by testing bit (0x80000000 >> (N & 0x1f)) of
 * 32 bits int at N >> 5.
 */
V_FUNCTION_BEGIN(__kernel_get_syscall_map)
  .cfi_startproc
   mflr    r12
  .cfi_register lr,r12
   mr    r4,r3
   get_datapage    r3, r0
   mtlr    r12
   addi    r3,r3,CFG_SYSCALL_MAP64
   cmpldi    cr0,r4,0
   crclr    cr0*4+so
   beqlr
   li    r0,NR_syscalls
   stw    r0,0(r4)
   blr
  .cfi_endproc
V_FUNCTION_END(__kernel_get_syscall_map)
 
 
/*
 * void unsigned long  __kernel_get_tbfreq(void);
 *
 * returns the timebase frequency in HZ
 */
V_FUNCTION_BEGIN(__kernel_get_tbfreq)
  .cfi_startproc
   mflr    r12
  .cfi_register lr,r12
   get_datapage    r3, r0
   ld    r3,CFG_TB_TICKS_PER_SEC(r3)
   mtlr    r12
   crclr    cr0*4+so
   blr
  .cfi_endproc
V_FUNCTION_END(__kernel_get_tbfreq)