diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-04-21 20:17:11 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2019-04-29 15:59:13 +0000 |
commit | d07048a7f932aa779dc64d7c503df121c2a76f0b (patch) | |
tree | 6e05a847a7d2e81c82623c9d7bd9301b9a418940 /src/mainboard/lenovo/z61t | |
parent | 363b77177ea4bb7349dc418e355465b84d8accb5 (diff) | |
download | coreboot-d07048a7f932aa779dc64d7c503df121c2a76f0b.tar.xz |
src/mb: Use system_reset()
Use already defined system_reset() function.
Change-Id: I68ff4cffa2bfab6a15299795c3e1837fc9b85806
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32379
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/mainboard/lenovo/z61t')
-rw-r--r-- | src/mainboard/lenovo/z61t/romstage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/lenovo/z61t/romstage.c b/src/mainboard/lenovo/z61t/romstage.c index 86d94a6c85..0d68faca2c 100644 --- a/src/mainboard/lenovo/z61t/romstage.c +++ b/src/mainboard/lenovo/z61t/romstage.c @@ -19,6 +19,7 @@ #include <stdint.h> #include <arch/io.h> +#include <cf9_reset.h> #include <device/pnp_ops.h> #include <device/pci_ops.h> #include <device/pci_def.h> @@ -196,8 +197,7 @@ void mainboard_romstage_entry(unsigned long bist) if (MCHBAR16(SSKPD) == 0xCAFE) { printk(BIOS_DEBUG, "soft reset detected, rebooting properly\n"); - outb(0x6, 0xcf9); - halt(); + system_reset(); } /* Perform some early chipset initialization required |