From ead056bc206f6b7ee6dc98766678b64635ea20b8 Mon Sep 17 00:00:00 2001 From: Graeme Russ Date: Sun, 7 Dec 2008 10:29:03 +1100 Subject: Added MMCR reset functionality Reset function specific to AMD SC520 microcontroller - Is more of a 'hard reset' that the triple fault. Requires CONFIG_SYS_RESET_SC520 to be defined in config I would have liked to add this to a new file (cpu/i386/sc520/reset.c) but ld requires that a object file in a library arhive MUST contain at least one function which does not override a weak function (and is called from outside the object file) in order for that object file to be extracted from the archive. This would be the only function on the new file, and hence, will never get linked in. Signed-off-by: Graeme Russ --- cpu/i386/sc520.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'cpu/i386') diff --git a/cpu/i386/sc520.c b/cpu/i386/sc520.c index cb6bc03bc..50bd8ef5d 100644 --- a/cpu/i386/sc520.c +++ b/cpu/i386/sc520.c @@ -507,4 +507,14 @@ u8 ssi_rx_byte(void) return read_mmcr_byte(SC520_SSIRCV); } +#ifdef CONFIG_SYS_RESET_SC520 +void reset_cpu(ulong addr) +{ + printf("Resetting using SC520 MMCR\n"); + /* Write a '1' to the SYS_RST of the RESCFG MMCR */ + write_mmcr_word(SC520_RESCFG, 0x0001); + + /* NOTREACHED */ +} +#endif #endif /* CONFIG_SC520 */ -- cgit v1.2.3