diff options
| author | Allen Martin <amartin@nvidia.com> | 2012-12-19 13:02:36 -0800 | 
|---|---|---|
| committer | Allen Martin <amartin@nvidia.com> | 2012-12-19 13:02:36 -0800 | 
| commit | a098cf41fdb2a6607c675f7fe4f3164617c9367e (patch) | |
| tree | b37acb36f65909e6f74cc537d73efd883a1485a6 /arch/x86/include/asm/control_regs.h | |
| parent | b8a7c467960ffb4d5a5e1eef5f7783fb6f594542 (diff) | |
| parent | 095728803eedfce850a2f85828f79500cb09979e (diff) | |
| download | olio-uboot-2014.01-a098cf41fdb2a6607c675f7fe4f3164617c9367e.tar.xz olio-uboot-2014.01-a098cf41fdb2a6607c675f7fe4f3164617c9367e.zip | |
Merge remote-tracking branch 'u-boot/master' into u-boot-arm-merged
Conflicts:
	README
	arch/arm/cpu/armv7/exynos/clock.c
	board/samsung/universal_c210/universal.c
	drivers/misc/Makefile
	drivers/power/power_fsl.c
	include/configs/mx35pdk.h
	include/configs/mx53loco.h
	include/configs/seaboard.h
Diffstat (limited to 'arch/x86/include/asm/control_regs.h')
| -rw-r--r-- | arch/x86/include/asm/control_regs.h | 105 | 
1 files changed, 105 insertions, 0 deletions
| diff --git a/arch/x86/include/asm/control_regs.h b/arch/x86/include/asm/control_regs.h new file mode 100644 index 000000000..aa8be30ba --- /dev/null +++ b/arch/x86/include/asm/control_regs.h @@ -0,0 +1,105 @@ +/* + * 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 + * + * See file CREDITS for list of people who contributed to this + * project. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of + * the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + */ + +#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 |