aboutsummaryrefslogtreecommitdiffstats
path: root/board_enable.c
diff options
context:
space:
mode:
authorThomas Heijligen <thomas.heijligen@secunet.com>2022-03-16 09:19:19 +0100
committerNico Huber <nico.h@gmx.de>2022-04-13 11:25:35 +0000
commit4bd41e6bb5b96d7f71bebc03be93c7f7b433569e (patch)
tree1985d3d76aeb336bea700abb267d12910185686b /board_enable.c
parent82604bd738ce34f37a1e0c679930ae27fa10ffc0 (diff)
downloadflashrom-4bd41e6bb5b96d7f71bebc03be93c7f7b433569e.tar.gz
flashrom-4bd41e6bb5b96d7f71bebc03be93c7f7b433569e.tar.bz2
flashrom-4bd41e6bb5b96d7f71bebc03be93c7f7b433569e.zip
hwaccess_x86_msr: rename msr function to msr_xxx
This eliminates the need to redefine the rdmsr and wrmsr symbols, resulting in more understandable code. The common prefix clarify the relation between the functions. Change-Id: Ie5ad54d198312578e0a1ee719eec67b37d2bf6a4 Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/62851 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'board_enable.c')
-rw-r--r--board_enable.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/board_enable.c b/board_enable.c
index 9e4ab93c..d7408064 100644
--- a/board_enable.c
+++ b/board_enable.c
@@ -1310,10 +1310,10 @@ static int board_artecgroup_dbe6x(void)
unsigned long boot_loc;
/* Geode only has a single core */
- if (setup_cpu_msr(0))
+ if (msr_setup(0))
return -1;
- msr = rdmsr(DBE6x_MSR_DIVIL_BALL_OPTS);
+ msr = msr_read(DBE6x_MSR_DIVIL_BALL_OPTS);
if ((msr.lo & (DBE6x_BOOT_OP_LATCHED)) ==
(DBE6x_BOOT_LOC_FWHUB << DBE6x_BOOT_OP_LATCHED_SHIFT))
@@ -1325,9 +1325,9 @@ static int board_artecgroup_dbe6x(void)
msr.lo |= ((boot_loc << DBE6x_PRI_BOOT_LOC_SHIFT) |
(boot_loc << DBE6x_SEC_BOOT_LOC_SHIFT));
- wrmsr(DBE6x_MSR_DIVIL_BALL_OPTS, msr);
+ msr_write(DBE6x_MSR_DIVIL_BALL_OPTS, msr);
- cleanup_cpu_msr();
+ msr_cleanup();
return 0;
}