source: rtems-libbsd/freebsd/sys/sys/systm.h @ bae343a

4.1155-freebsd-126-freebsd-12freebsd-9.3
Last change on this file since bae343a was bae343a, checked in by Sebastian Huber <sebastian.huber@…>, on 10/28/13 at 11:04:06

Use compile-time constant for vm_guest

  • Property mode set to 100644
File size: 15.4 KB
Line 
1/*-
2 * Copyright (c) 1982, 1988, 1991, 1993
3 *      The Regents of the University of California.  All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 *    notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 *    notice, this list of conditions and the following disclaimer in the
17 *    documentation and/or other materials provided with the distribution.
18 * 4. Neither the name of the University nor the names of its contributors
19 *    may be used to endorse or promote products derived from this software
20 *    without specific prior written permission.
21 *
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 *      @(#)systm.h     8.7 (Berkeley) 3/29/95
35 * $FreeBSD$
36 */
37
38#ifndef _SYS_SYSTM_H_
39#define _SYS_SYSTM_H_
40
41#include <machine/atomic.h>
42#include <machine/cpufunc.h>
43#include <sys/callout.h>
44#include <sys/cdefs.h>
45#include <sys/queue.h>
46#include <sys/stdint.h>         /* for people using printf mainly */
47
48#ifndef __rtems__
49extern int cold;                /* nonzero if we are doing a cold boot */
50#else /* __rtems__ */
51/* In RTEMS there is no cold boot */
52#define cold 0
53#endif /* __rtems__ */
54extern int rebooting;           /* boot() has been called. */
55extern const char *panicstr;    /* panic message */
56extern char version[];          /* system version */
57extern char copyright[];        /* system copyright */
58extern int kstack_pages;        /* number of kernel stack pages */
59
60extern int nswap;               /* size of swap space */
61
62extern u_long pagesizes[];      /* supported page sizes */
63extern long physmem;            /* physical memory */
64extern long realmem;            /* 'real' memory */
65
66extern char *rootdevnames[2];   /* names of possible root devices */
67
68extern int boothowto;           /* reboot flags, from console subsystem */
69#ifndef __rtems__
70extern int bootverbose;         /* nonzero to print verbose messages */
71#else /* __rtems__ */
72#define bootverbose    0        /* XXX RTEMS doesn't support verbose */
73#endif /* __rtems__ */
74
75
76extern int maxusers;            /* system tune hint */
77extern int ngroups_max;         /* max # of supplemental groups */
78#ifndef __rtems__
79extern int vm_guest;            /* Running as virtual machine guest? */
80#else /* __rtems__ */
81#define vm_guest VM_GUEST_NO
82#endif /* __rtems__ */
83
84/*
85 * Detected virtual machine guest types. The intention is to expand
86 * and/or add to the VM_GUEST_VM type if specific VM functionality is
87 * ever implemented (e.g. vendor-specific paravirtualization features).
88 */
89enum VM_GUEST { VM_GUEST_NO = 0, VM_GUEST_VM, VM_GUEST_XEN };
90
91#ifdef  INVARIANTS              /* The option is always available */
92#define KASSERT(exp,msg) do {                                           \
93        if (__predict_false(!(exp)))                                    \
94                panic msg;                                              \
95} while (0)
96#define VNASSERT(exp, vp, msg) do {                                     \
97        if (__predict_false(!(exp))) {                                  \
98                vn_printf(vp, "VNASSERT failed\n");                     \
99                panic msg;                                              \
100        }                                                               \
101} while (0)
102#else
103#define KASSERT(exp,msg) do { \
104} while (0)
105
106#define VNASSERT(exp, vp, msg) do { \
107} while (0)
108#endif
109
110#ifndef CTASSERT                /* Allow lint to override */
111#define CTASSERT(x)             _CTASSERT(x, __LINE__)
112#define _CTASSERT(x, y)         __CTASSERT(x, y)
113#define __CTASSERT(x, y)        typedef char __assert ## y[(x) ? 1 : -1]
114#endif
115
116/*
117 * Assert that a pointer can be loaded from memory atomically.
118 *
119 * This assertion enforces stronger alignment than necessary.  For example,
120 * on some architectures, atomicity for unaligned loads will depend on
121 * whether or not the load spans multiple cache lines.
122 */
123#define ASSERT_ATOMIC_LOAD_PTR(var, msg)                                \
124        KASSERT(sizeof(var) == sizeof(void *) &&                        \
125            ((uintptr_t)&(var) & (sizeof(void *) - 1)) == 0, msg)
126
127/*
128 * XXX the hints declarations are even more misplaced than most declarations
129 * in this file, since they are needed in one file (per arch) and only used
130 * in two files.
131 * XXX most of these variables should be const.
132 */
133extern int osreldate;
134extern int envmode;
135extern int hintmode;            /* 0 = off. 1 = config, 2 = fallback */
136extern int dynamic_kenv;
137extern struct mtx kenv_lock;
138extern char *kern_envp;
139extern char static_env[];
140extern char static_hints[];     /* by config for now */
141
142extern char **kenvp;
143
144/*
145 * General function declarations.
146 */
147
148struct inpcb;
149struct lock_object;
150struct malloc_type;
151struct mtx;
152struct proc;
153struct socket;
154struct thread;
155struct tty;
156struct ucred;
157struct uio;
158struct _jmp_buf;
159
160#ifndef __rtems__
161int     setjmp(struct _jmp_buf *);
162void    longjmp(struct _jmp_buf *, int) __dead2;
163#endif /* __rtems__ */
164int     dumpstatus(vm_offset_t addr, off_t count);
165int     nullop(void);
166int     eopnotsupp(void);
167int     ureadc(int, struct uio *);
168void    hashdestroy(void *, struct malloc_type *, u_long);
169void    *hashinit(int count, struct malloc_type *type, u_long *hashmark);
170void    *hashinit_flags(int count, struct malloc_type *type,
171    u_long *hashmask, int flags);
172#define HASH_NOWAIT     0x00000001
173#define HASH_WAITOK     0x00000002
174
175void    *phashinit(int count, struct malloc_type *type, u_long *nentries);
176void    g_waitidle(void);
177
178#ifdef RESTARTABLE_PANICS
179void    panic(const char *, ...) __printflike(1, 2);
180#else
181void    panic(const char *, ...) __dead2 __printflike(1, 2);
182#endif
183
184void    cpu_boot(int);
185void    cpu_flush_dcache(void *, size_t);
186void    cpu_rootconf(void);
187void    critical_enter(void);
188void    critical_exit(void);
189void    init_param1(void);
190void    init_param2(long physpages);
191void    init_param3(long kmempages);
192void    tablefull(const char *);
193int     kvprintf(char const *, void (*)(int, void*), void *, int,
194            __va_list) __printflike(1, 0);
195void    log(int, const char *, ...) __printflike(2, 3);
196void    log_console(struct uio *);
197int     printf(const char *, ...) __printflike(1, 2);
198int     snprintf(char *, size_t, const char *, ...) __printflike(3, 4);
199int     sprintf(char *buf, const char *, ...) __printflike(2, 3);
200int     uprintf(const char *, ...) __printflike(1, 2);
201int     vprintf(const char *, __va_list) __printflike(1, 0);
202int     vsnprintf(char *, size_t, const char *, __va_list) __printflike(3, 0);
203int     vsnrprintf(char *, size_t, int, const char *, __va_list) __printflike(4, 0);
204int     vsprintf(char *buf, const char *, __va_list) __printflike(2, 0);
205int     ttyprintf(struct tty *, const char *, ...) __printflike(2, 3);
206int     sscanf(const char *, char const *, ...) __nonnull(1) __nonnull(2);
207int     vsscanf(const char *, char const *, __va_list) __nonnull(1) __nonnull(2);
208long    strtol(const char *, char **, int) __nonnull(1);
209u_long  strtoul(const char *, char **, int) __nonnull(1);
210quad_t  strtoq(const char *, char **, int) __nonnull(1);
211u_quad_t strtouq(const char *, char **, int) __nonnull(1);
212void    tprintf(struct proc *p, int pri, const char *, ...) __printflike(3, 4);
213void    hexdump(const void *ptr, int length, const char *hdr, int flags);
214#define HD_COLUMN_MASK  0xff
215#define HD_DELIM_MASK   0xff00
216#define HD_OMIT_COUNT   (1 << 16)
217#define HD_OMIT_HEX     (1 << 17)
218#define HD_OMIT_CHARS   (1 << 18)
219
220#define ovbcopy(f, t, l) bcopy((f), (t), (l))
221void    bcopy(const void *from, void *to, size_t len) __nonnull(1) __nonnull(2);
222void    bzero(void *buf, size_t len) __nonnull(1);
223
224void    *memcpy(void *to, const void *from, size_t len) __nonnull(1) __nonnull(2);
225void    *memmove(void *dest, const void *src, size_t n) __nonnull(1) __nonnull(2);
226
227int     copystr(const void * __restrict kfaddr, void * __restrict kdaddr,
228            size_t len, size_t * __restrict lencopied)
229            __nonnull(1) __nonnull(2);
230int     copyinstr(const void * __restrict udaddr, void * __restrict kaddr,
231            size_t len, size_t * __restrict lencopied)
232            __nonnull(1) __nonnull(2);
233int     copyin(const void * __restrict udaddr, void * __restrict kaddr,
234            size_t len) __nonnull(1) __nonnull(2);
235int     copyout(const void * __restrict kaddr, void * __restrict udaddr,
236            size_t len) __nonnull(1) __nonnull(2);
237
238int     fubyte(const void *base);
239long    fuword(const void *base);
240int     fuword16(void *base);
241int32_t fuword32(const void *base);
242int64_t fuword64(const void *base);
243int     subyte(void *base, int byte);
244int     suword(void *base, long word);
245int     suword16(void *base, int word);
246int     suword32(void *base, int32_t word);
247int     suword64(void *base, int64_t word);
248uint32_t casuword32(volatile uint32_t *base, uint32_t oldval, uint32_t newval);
249u_long   casuword(volatile u_long *p, u_long oldval, u_long newval);
250
251void    realitexpire(void *);
252
253int     sysbeep(int hertz, int period);
254
255void    hardclock(int usermode, uintfptr_t pc);
256void    hardclock_cpu(int usermode);
257void    softclock(void *);
258void    statclock(int usermode);
259void    profclock(int usermode, uintfptr_t pc);
260
261void    startprofclock(struct proc *);
262void    stopprofclock(struct proc *);
263void    cpu_startprofclock(void);
264void    cpu_stopprofclock(void);
265
266#ifndef __rtems__
267int     cr_cansee(struct ucred *u1, struct ucred *u2);
268int     cr_canseesocket(struct ucred *cred, struct socket *so);
269int     cr_canseeinpcb(struct ucred *cred, struct inpcb *inp);
270#else /* __rtems__ */
271#define cr_cansee(u1, u2) 1
272#define cr_canseesocket(cred, so) 1
273#define cr_canseeinpcb(cred, inp) 1
274#endif /* __rtems__ */
275
276char    *getenv(const char *name);
277void    freeenv(char *env);
278int     getenv_int(const char *name, int *data);
279int     getenv_uint(const char *name, unsigned int *data);
280int     getenv_long(const char *name, long *data);
281int     getenv_ulong(const char *name, unsigned long *data);
282int     getenv_string(const char *name, char *data, int size);
283int     getenv_quad(const char *name, quad_t *data);
284#ifndef __rtems__
285int     setenv(const char *name, const char *value);
286#endif /* __rtems__ */
287int     unsetenv(const char *name);
288int     testenv(const char *name);
289
290typedef uint64_t (cpu_tick_f)(void);
291void set_cputicker(cpu_tick_f *func, uint64_t freq, unsigned var);
292extern cpu_tick_f *cpu_ticks;
293uint64_t cpu_tickrate(void);
294uint64_t cputick2usec(uint64_t tick);
295
296#ifdef APM_FIXUP_CALLTODO
297struct timeval;
298void    adjust_timeout_calltodo(struct timeval *time_change);
299#endif /* APM_FIXUP_CALLTODO */
300
301#include <sys/libkern.h>
302
303/* Initialize the world */
304void    consinit(void);
305void    cpu_initclocks(void);
306void    usrinfoinit(void);
307
308/* Finalize the world */
309void    shutdown_nice(int);
310
311/* Timeouts */
312typedef void timeout_t(void *); /* timeout function type */
313#define CALLOUT_HANDLE_INITIALIZER(handle)      \
314        { NULL }
315
316void    callout_handle_init(struct callout_handle *);
317struct  callout_handle timeout(timeout_t *, void *, int);
318void    untimeout(timeout_t *, void *, struct callout_handle);
319caddr_t kern_timeout_callwheel_alloc(caddr_t v);
320void    kern_timeout_callwheel_init(void);
321
322/* Stubs for obsolete functions that used to be for interrupt management */
323static __inline void            spl0(void)              { return; }
324static __inline intrmask_t      splbio(void)            { return 0; }
325static __inline intrmask_t      splcam(void)            { return 0; }
326static __inline intrmask_t      splclock(void)          { return 0; }
327static __inline intrmask_t      splhigh(void)           { return 0; }
328static __inline intrmask_t      splimp(void)            { return 0; }
329static __inline intrmask_t      splnet(void)            { return 0; }
330static __inline intrmask_t      splsoftcam(void)        { return 0; }
331static __inline intrmask_t      splsoftclock(void)      { return 0; }
332static __inline intrmask_t      splsofttty(void)        { return 0; }
333static __inline intrmask_t      splsoftvm(void)         { return 0; }
334static __inline intrmask_t      splsofttq(void)         { return 0; }
335static __inline intrmask_t      splstatclock(void)      { return 0; }
336static __inline intrmask_t      spltty(void)            { return 0; }
337static __inline intrmask_t      splvm(void)             { return 0; }
338static __inline void            splx(intrmask_t ipl __unused)   { return; }
339
340/*
341 * Common `proc' functions are declared here so that proc.h can be included
342 * less often.
343 */
344int     _sleep(void *chan, struct lock_object *lock, int pri, const char *wmesg,
345            int timo) __nonnull(1);
346#define msleep(chan, mtx, pri, wmesg, timo)                             \
347        _sleep((chan), &(mtx)->lock_object, (pri), (wmesg), (timo))
348#ifndef __rtems__
349int     msleep_spin(void *chan, struct mtx *mtx, const char *wmesg, int timo)
350            __nonnull(1);
351#else /* __rtems__ */
352#define msleep_spin(chan, mtx, wmesg, timo)                             \
353        msleep((chan), (mtx), 0, (wmesg), (timo))
354#endif /* __rtems__ */
355#ifdef __rtems__
356#include <unistd.h>
357#define pause _bsd_pause
358#endif /* __rtems__ */
359int     pause(const char *wmesg, int timo);
360#define tsleep(chan, pri, wmesg, timo)                                  \
361        _sleep((chan), NULL, (pri), (wmesg), (timo))
362void    wakeup(void *chan) __nonnull(1);
363void    wakeup_one(void *chan) __nonnull(1);
364
365/*
366 * Common `struct cdev *' stuff are declared here to avoid #include poisoning
367 */
368
369struct cdev;
370dev_t dev2udev(struct cdev *x);
371const char *devtoname(struct cdev *cdev);
372
373int poll_no_poll(int events);
374
375/* XXX: Should be void nanodelay(u_int nsec); */
376void    DELAY(int usec);
377
378/* Root mount holdback API */
379struct root_hold_token;
380
381struct root_hold_token *root_mount_hold(const char *identifier);
382void root_mount_rel(struct root_hold_token *h);
383void root_mount_wait(void);
384int root_mounted(void);
385
386
387/*
388 * Unit number allocation API. (kern/subr_unit.c)
389 */
390struct unrhdr;
391struct unrhdr *new_unrhdr(int low, int high, struct mtx *mutex);
392void delete_unrhdr(struct unrhdr *uh);
393void clean_unrhdr(struct unrhdr *uh);
394void clean_unrhdrl(struct unrhdr *uh);
395int alloc_unr(struct unrhdr *uh);
396int alloc_unrl(struct unrhdr *uh);
397void free_unr(struct unrhdr *uh, u_int item);
398
399/*
400 * This is about as magic as it gets.  fortune(1) has got similar code
401 * for reversing bits in a word.  Who thinks up this stuff??
402 *
403 * Yes, it does appear to be consistently faster than:
404 * while (i = ffs(m)) {
405 *      m >>= i;
406 *      bits++;
407 * }
408 * and
409 * while (lsb = (m & -m)) {     // This is magic too
410 *      m &= ~lsb;              // or: m ^= lsb
411 *      bits++;
412 * }
413 * Both of these latter forms do some very strange things on gcc-3.1 with
414 * -mcpu=pentiumpro and/or -march=pentiumpro and/or -O or -O2.
415 * There is probably an SSE or MMX popcnt instruction.
416 *
417 * I wonder if this should be in libkern?
418 *
419 * XXX Stop the presses!  Another one:
420 * static __inline u_int32_t
421 * popcnt1(u_int32_t v)
422 * {
423 *      v -= ((v >> 1) & 0x55555555);
424 *      v = (v & 0x33333333) + ((v >> 2) & 0x33333333);
425 *      v = (v + (v >> 4)) & 0x0F0F0F0F;
426 *      return (v * 0x01010101) >> 24;
427 * }
428 * The downside is that it has a multiply.  With a pentium3 with
429 * -mcpu=pentiumpro and -march=pentiumpro then gcc-3.1 will use
430 * an imull, and in that case it is faster.  In most other cases
431 * it appears slightly slower.
432 *
433 * Another variant (also from fortune):
434 * #define BITCOUNT(x) (((BX_(x)+(BX_(x)>>4)) & 0x0F0F0F0F) % 255)
435 * #define  BX_(x)     ((x) - (((x)>>1)&0x77777777)            \
436 *                          - (((x)>>2)&0x33333333)            \
437 *                          - (((x)>>3)&0x11111111))
438 */
439static __inline uint32_t
440bitcount32(uint32_t x)
441{
442
443        x = (x & 0x55555555) + ((x & 0xaaaaaaaa) >> 1);
444        x = (x & 0x33333333) + ((x & 0xcccccccc) >> 2);
445        x = (x + (x >> 4)) & 0x0f0f0f0f;
446        x = (x + (x >> 8));
447        x = (x + (x >> 16)) & 0x000000ff;
448        return (x);
449}
450
451#endif /* !_SYS_SYSTM_H_ */
Note: See TracBrowser for help on using the repository browser.