History log of /seL4-camkes-master/kernel/include/arch/x86/arch/machine/cpu_registers.h
Revision Date Author Comments
# 512a0200 19-Mar-2020 Qian Ge <qian.ge@data61.csiro.au>

replacing all ifndef with pargma once

All the kernel header files now use pargma once rather than the ifndef,
as the pre-processed C files do not change while header files
are protected with pargma once. This will also solve any naming issues
caused by ifndef.


# 79da0792 01-Mar-2020 Gerwin Klein <gerwin.klein@data61.csiro.au>

Convert license tags to SPDX identifiers

This commit also converts our own copyright headers to directly use
SPDX, but leaves all other copyright header intact, only adding the
SPDX ident. As far as possible this commit also merges multiple
Data61 copyright statements/headers into one for consistency.


# 353e2aa3 17-Jan-2018 Adrian Danis <Adrian.Danis@data61.csiro.au>

x86: Define CR4 SMEP/SMAP bits


# f26853b9 17-Jan-2018 Adrian Danis <Adrian.Danis@data61.csiro.au>

x86: Supervisor write protection

Prevents the kernel from writing to read only memory. This shouldn't happen, but catching
such attempts aids debugging and costs nothing to have neabled.


# 157d8577 14-Jan-2018 Adrian Danis <Adrian.Danis@data61.csiro.au>

x86: CR4_PCE bit definition


# 7fbde1bb 14-Jun-2016 Adrian Danis <Adrian.Danis@data61.csiro.au>

SELFOUR-287: 32-bit vt-x implementation

This is an implementation of vt-x for x86 kernels running in
ia32 mode.


# 235a02ec 12-Oct-2016 Adrian Danis <Adrian.Danis@data61.csiro.au>

x86: Use FLAGS_* defines instead of magic numbers


# d1d45681 11-Oct-2016 Adrian Danis <Adrian.Danis@data61.csiro.au>

x86: Define FLAGS bits instead of having magic numbers


# b1e7e073 06-Jun-2016 Adrian Danis <Adrian.Danis@data61.csiro.au>

x86: Move xsetbv to general header

The xsetbv and write_xcr0 wrapper are not 32-bit specific and were
placed in the wrong location originally.


# e667a7e0 01-Jun-2016 Adrian Danis <Adrian.Danis@data61.csiro.au>

x86: Add missing CR4 bit definition


# e74123c3 10-Nov-2015 Adrian Danis <Adrian.Danis@nicta.com.au>

x86: Remove underscores from symbols as they are in violation of the C standard


# 6729ce78 05-Nov-2015 Adrian Danis <Adrian.Danis@nicta.com.au>

x86: Make parts of what have become 32-bit specific headers common

The reason these were not made common to begin with is so that there
was a commit that was just a rename of these files to make any merges
with other branches that might exist easier


# 022287c3 01-Jul-2015 Adrian Danis <Adrian.Danis@nicta.com.au>

x86: Minimal changes to fix previous commit that renamed headers


# 914741ea 27-May-2015 Adrian Danis <Adrian.Danis@nicta.com.au>

x86: Make x86 the name of the architecture instead of IA32

IA32 is 32bit version of the x86 architecture. Whilst only IA32
is supported, much of the code is generic x86. Using a generic
x86 architecture will aid in future 64bit support