mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
88 lines
1.7 KiB
C
88 lines
1.7 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (c) 2012 The Chromium OS Authors.
|
|
*
|
|
* (C) Copyright 2008-2011
|
|
* Graeme Russ, <graeme.russ@gmail.com>
|
|
*
|
|
* (C) Copyright 2002
|
|
* Daniel Engström, Omicron Ceti AB, <daniel@omicron.se>
|
|
*
|
|
* Portions of this file are derived from the Linux kernel source
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
*/
|
|
|
|
#ifndef __X86_CONTROL_REGS_H
|
|
#define __X86_CONTROL_REGS_H
|
|
|
|
/*
|
|
* The memory clobber prevents the GCC from reordering the read/write order
|
|
* of CR0
|
|
*/
|
|
static inline unsigned long read_cr0(void)
|
|
{
|
|
unsigned long val;
|
|
|
|
asm volatile ("movl %%cr0, %0" : "=r" (val) : : "memory");
|
|
return val;
|
|
}
|
|
|
|
static inline void write_cr0(unsigned long val)
|
|
{
|
|
asm volatile ("movl %0, %%cr0" : : "r" (val) : "memory");
|
|
}
|
|
|
|
static inline unsigned long read_cr2(void)
|
|
{
|
|
unsigned long val;
|
|
|
|
asm volatile("mov %%cr2,%0\n\t" : "=r" (val) : : "memory");
|
|
return val;
|
|
}
|
|
|
|
static inline unsigned long read_cr3(void)
|
|
{
|
|
unsigned long val;
|
|
|
|
asm volatile("mov %%cr3,%0\n\t" : "=r" (val) : : "memory");
|
|
return val;
|
|
}
|
|
|
|
static inline unsigned long read_cr4(void)
|
|
{
|
|
unsigned long val;
|
|
|
|
asm volatile("mov %%cr4,%0\n\t" : "=r" (val) : : "memory");
|
|
return val;
|
|
}
|
|
|
|
static inline unsigned long get_debugreg(int regno)
|
|
{
|
|
unsigned long val = 0; /* Damn you, gcc! */
|
|
|
|
switch (regno) {
|
|
case 0:
|
|
asm("mov %%db0, %0" : "=r" (val));
|
|
break;
|
|
case 1:
|
|
asm("mov %%db1, %0" : "=r" (val));
|
|
break;
|
|
case 2:
|
|
asm("mov %%db2, %0" : "=r" (val));
|
|
break;
|
|
case 3:
|
|
asm("mov %%db3, %0" : "=r" (val));
|
|
break;
|
|
case 6:
|
|
asm("mov %%db6, %0" : "=r" (val));
|
|
break;
|
|
case 7:
|
|
asm("mov %%db7, %0" : "=r" (val));
|
|
break;
|
|
default:
|
|
val = 0;
|
|
}
|
|
return val;
|
|
}
|
|
|
|
#endif
|