mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-05-03 16:22:55 +03:00
66d97267c7
This excludes all headers in /usr/include/dev because that directory is bonkers huge (18M). We can add these on an as-needed basis.
67 lines
2.3 KiB
C
Vendored
67 lines
2.3 KiB
C
Vendored
/* $OpenBSD: cpu_full.h,v 1.3 2018/06/22 13:21:14 bluhm Exp $ */
|
|
/*
|
|
* Copyright (c) 2018 Philip Guenther <guenther@openbsd.org>
|
|
* Copyright (c) 2018 Hans-Joerg Hoexer <hshoexer@genua.de>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#ifndef _MACHINE_CPU_FULL_H_
|
|
#define _MACHINE_CPU_FULL_H_
|
|
|
|
#include <sys/param.h> /* offsetof, PAGE_SIZE */
|
|
#include <machine/segments.h>
|
|
#include <machine/tss.h>
|
|
|
|
struct cpu_info_full {
|
|
/* page mapped kRO in u-k */
|
|
union {
|
|
struct {
|
|
struct i386tss uu_tss;
|
|
struct i386tss uu_nmi_tss;
|
|
union descriptor uu_gdt[NGDT];
|
|
} u_tssgdt;
|
|
char u_align[PAGE_SIZE];
|
|
} cif_TSS_RO;
|
|
#define cif_tss cif_TSS_RO.u_tssgdt.uu_tss
|
|
#define cif_nmi_tss cif_TSS_RO.u_tssgdt.uu_nmi_tss
|
|
#define cif_gdt cif_TSS_RO.u_tssgdt.uu_gdt
|
|
|
|
/* start of page mapped kRW in u-k */
|
|
uint32_t cif_tramp_stack[(PAGE_SIZE / 4
|
|
- offsetof(struct cpu_info, ci_PAGEALIGN)) / sizeof(uint32_t)];
|
|
uint32_t cif_nmi_stack[(3 * PAGE_SIZE / 4) / sizeof(uint32_t)];
|
|
|
|
/*
|
|
* Beginning of this hangs over into the kRW page; rest is
|
|
* unmapped in u-k
|
|
*/
|
|
struct cpu_info cif_cpu;
|
|
} __aligned(PAGE_SIZE);
|
|
|
|
/* tss, align shim, and gdt must fit in a page */
|
|
CTASSERT(_ALIGN(2 * sizeof(struct i386tss)) +
|
|
sizeof(struct segment_descriptor) * NGDT < PAGE_SIZE);
|
|
|
|
/* verify expected alignment */
|
|
CTASSERT(offsetof(struct cpu_info_full, cif_cpu.ci_PAGEALIGN) % PAGE_SIZE == 0);
|
|
|
|
/* verify total size is multiple of page size */
|
|
CTASSERT(sizeof(struct cpu_info_full) % PAGE_SIZE == 0);
|
|
|
|
extern struct cpu_info_full cpu_info_full_primary;
|
|
|
|
/* Now make sure the cpu_info_primary macro is correct */
|
|
CTASSERT(&cpu_info_primary - &cpu_info_full_primary.cif_cpu == 0);
|
|
|
|
#endif /* _MACHINE_CPU_FULL_H_ */ |