The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/arm/include/cpu.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /* $NetBSD: cpu.h,v 1.2 2001/02/23 21:23:52 reinoud Exp $ */
    2 /* $FreeBSD: releng/8.3/sys/arm/include/cpu.h 158445 2006-05-11 17:29:25Z phk $ */
    3 
    4 #ifndef MACHINE_CPU_H
    5 #define MACHINE_CPU_H
    6 
    7 #include <machine/armreg.h>
    8 
    9 void    cpu_halt(void);
   10 void    swi_vm(void *);
   11 
   12 #ifdef _KERNEL
   13 static __inline uint64_t
   14 get_cyclecount(void)
   15 {
   16         struct bintime bt;
   17 
   18         binuptime(&bt);
   19         return (bt.frac ^ bt.sec);
   20                         
   21 }
   22 #endif
   23 
   24 #define TRAPF_USERMODE(frame)   ((frame->tf_spsr & PSR_MODE) == PSR_USR32_MODE)
   25 
   26 #define TRAPF_PC(tfp)           ((tfp)->tf_pc)
   27 
   28 #define cpu_getstack(td)        ((td)->td_frame->tf_usr_sp)
   29 #define cpu_setstack(td, sp)    ((td)->td_frame->tf_usr_sp = (sp))
   30 #define cpu_spinwait()          /* nothing */
   31 
   32 #define ARM_NVEC                8
   33 #define ARM_VEC_ALL             0xffffffff
   34 
   35 extern vm_offset_t vector_page;
   36 
   37 void    arm_vector_init(vm_offset_t, int);
   38 void    fork_trampoline(void);
   39 void    identify_arm_cpu(void);
   40 void    *initarm(void *, void *);
   41 
   42 extern char btext[];
   43 extern char etext[];
   44 int badaddr_read (void *, size_t, void *);
   45 #endif /* !MACHINE_CPU_H */

Cache object: 37c9e903ab155a367dbda081b9f31d18


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.