x86: Minimal changes to fix previous commit that renamed headers
This commit is contained in:
parent
c597c72fdf
commit
022287c38b
10 changed files with 90 additions and 10 deletions
|
|
@ -8,8 +8,8 @@
|
|||
* @TAG(GD_GPL)
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_MACHINE_H
|
||||
#define __ARCH_MACHINE_H
|
||||
#ifndef __MODE_MACHINE_H
|
||||
#define __MODE_MACHINE_H
|
||||
|
||||
#include <arch/types.h>
|
||||
#include <arch/object/structures.h>
|
||||
|
|
@ -8,8 +8,8 @@
|
|||
* @TAG(GD_GPL)
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_MACHINE_CPU_REGISTERS_H
|
||||
#define __ARCH_MACHINE_CPU_REGISTERS_H
|
||||
#ifndef __MODE_MACHINE_CPU_REGISTERS_H
|
||||
#define __MODE_MACHINE_CPU_REGISTERS_H
|
||||
|
||||
#define CR0_MONITOR_COPROC BIT(1) /* Trap on FPU "WAIT" commands. */
|
||||
#define CR0_EMULATION BIT(2) /* Enable OS emulation of FPU. */
|
||||
|
|
@ -8,8 +8,8 @@
|
|||
* @TAG(GD_GPL)
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_MACHINE_REGISTERSET_H
|
||||
#define __ARCH_MACHINE_REGISTERSET_H
|
||||
#ifndef __MODE_MACHINE_REGISTERSET_H
|
||||
#define __MODE_MACHINE_REGISTERSET_H
|
||||
|
||||
#include <arch/types.h>
|
||||
#include <util.h>
|
||||
|
|
@ -8,8 +8,8 @@
|
|||
* @TAG(GD_GPL)
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_OBJECT_STRUCTURES_H
|
||||
#define __ARCH_OBJECT_STRUCTURES_H
|
||||
#ifndef __MODE_OBJECT_STRUCTURES_H
|
||||
#define __MODE_OBJECT_STRUCTURES_H
|
||||
|
||||
#include <assert.h>
|
||||
#include <config.h>
|
||||
16
include/arch/x86/arch/machine.h
Normal file
16
include/arch/x86/arch/machine.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Copyright 2014, General Dynamics C4 Systems
|
||||
*
|
||||
* This software may be distributed and modified according to the terms of
|
||||
* the GNU General Public License version 2. Note that NO WARRANTY is provided.
|
||||
* See "LICENSE_GPLv2.txt" for details.
|
||||
*
|
||||
* @TAG(GD_GPL)
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_MACHINE_H
|
||||
#define __ARCH_MACHINE_H
|
||||
|
||||
#include <mode/machine.h>
|
||||
|
||||
#endif
|
||||
16
include/arch/x86/arch/machine/cpu_registers.h
Normal file
16
include/arch/x86/arch/machine/cpu_registers.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Copyright 2014, General Dynamics C4 Systems
|
||||
*
|
||||
* This software may be distributed and modified according to the terms of
|
||||
* the GNU General Public License version 2. Note that NO WARRANTY is provided.
|
||||
* See "LICENSE_GPLv2.txt" for details.
|
||||
*
|
||||
* @TAG(GD_GPL)
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_MACHINE_CPU_REGISTERS_H
|
||||
#define __ARCH_MACHINE_CPU_REGISTERS_H
|
||||
|
||||
#include <mode/machine/cpu_registers.h>
|
||||
|
||||
#endif
|
||||
16
include/arch/x86/arch/machine/registerset.h
Normal file
16
include/arch/x86/arch/machine/registerset.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Copyright 2014, General Dynamics C4 Systems
|
||||
*
|
||||
* This software may be distributed and modified according to the terms of
|
||||
* the GNU General Public License version 2. Note that NO WARRANTY is provided.
|
||||
* See "LICENSE_GPLv2.txt" for details.
|
||||
*
|
||||
* @TAG(GD_GPL)
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_MACHINE_REGISTERSET_H
|
||||
#define __ARCH_MACHINE_REGISTERSET_H
|
||||
|
||||
#include <mode/machine/registerset.h>
|
||||
|
||||
#endif
|
||||
16
include/arch/x86/arch/object/structures.h
Normal file
16
include/arch/x86/arch/object/structures.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Copyright 2014, General Dynamics C4 Systems
|
||||
*
|
||||
* This software may be distributed and modified according to the terms of
|
||||
* the GNU General Public License version 2. Note that NO WARRANTY is provided.
|
||||
* See "LICENSE_GPLv2.txt" for details.
|
||||
*
|
||||
* @TAG(GD_GPL)
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_OBJECT_STRUCTURES_H
|
||||
#define __ARCH_OBJECT_STRUCTURES_H
|
||||
|
||||
#include <mode/object/structures.h>
|
||||
|
||||
#endif
|
||||
|
|
@ -8,8 +8,8 @@
|
|||
* @TAG(GD_GPL)
|
||||
*/
|
||||
|
||||
#ifndef __PLAT_MACHINE_HARDWARE_H
|
||||
#define __PLAT_MACHINE_HARDWARE_H
|
||||
#ifndef __PLAT_MODE_MACHINE_HARDWARE_H
|
||||
#define __PLAT_MODE_MACHINE_HARDWARE_H
|
||||
|
||||
#include <config.h>
|
||||
#include <types.h>
|
||||
|
|
|
|||
16
include/plat/pc99/plat/machine/hardware.h
Normal file
16
include/plat/pc99/plat/machine/hardware.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
/*
|
||||
* Copyright 2014, General Dynamics C4 Systems
|
||||
*
|
||||
* This software may be distributed and modified according to the terms of
|
||||
* the GNU General Public License version 2. Note that NO WARRANTY is provided.
|
||||
* See "LICENSE_GPLv2.txt" for details.
|
||||
*
|
||||
* @TAG(GD_GPL)
|
||||
*/
|
||||
|
||||
#ifndef __PLAT_MACHINE_HARDWARE_H
|
||||
#define __PLAT_MACHINE_HARDWARE_H
|
||||
|
||||
#include <plat_mode/machine/hardware.h>
|
||||
|
||||
#endif
|
||||
Loading…
Reference in a new issue