diff options
author | Nico Huber <nico.h@gmx.de> | 2018-10-11 22:54:25 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2018-10-31 15:29:42 +0000 |
commit | 718c6faff4acf7a7716a1747fbfecdac462ef2c9 (patch) | |
tree | 7519bc51b016761d4c068a9e71ab908d5e32a011 /src/include/reset.h | |
parent | 30cf14ff3fdd9fbbaa3ffb841359c2ee1a0bfcad (diff) |
reset: Finalize move to new API
Move soft_reset() to `southbridge/amd/common/` it's only used for
amdfam10 now.
Drop hard_reset() for good.
Change-Id: Ifdc5791160653c5578007f6c1b96015efe2b3e1e
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/29059
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/include/reset.h')
-rw-r--r-- | src/include/reset.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/include/reset.h b/src/include/reset.h index 3eec193c84..5b5e1d30cc 100644 --- a/src/include/reset.h +++ b/src/include/reset.h @@ -39,14 +39,4 @@ __noreturn void board_reset(void); */ void do_board_reset(void); -/* Full board reset. Resets SoC and most/all board components (e.g. DRAM). */ -__noreturn void hard_reset(void); -/* Board reset. Resets SoC some board components (e.g. TPM but not DRAM). */ -__noreturn void soft_reset(void); - -/* Reset implementations. Implement these in SoC or mainboard code. Implement - at least hard_reset() if possible, others fall back to it if necessary. */ -void do_hard_reset(void); -void do_soft_reset(void); - #endif |