blob: f13ac0c63757db3494caa1d578dd83b3c162782d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Stephen Warrenefad6cf2012-08-05 16:07:21 +00002/*
3 * (C) Copyright 2012 Stephen Warren
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
Stephen Warrenefad6cf2012-08-05 16:07:21 +00007 */
8
9#include <common.h>
Simon Glass9a3b4ce2019-12-28 10:45:01 -070010#include <cpu_func.h>
Stephen Warrenefad6cf2012-08-05 16:07:21 +000011#include <asm/io.h>
Matthias Brugger8e3361c2019-11-19 16:01:03 +010012#include <asm/arch/base.h>
Stephen Warrenefad6cf2012-08-05 16:07:21 +000013#include <asm/arch/wdog.h>
Alexander Graf6b0ee502016-11-02 10:36:18 +010014#include <efi_loader.h>
Stephen Warrenefad6cf2012-08-05 16:07:21 +000015
16#define RESET_TIMEOUT 10
17
Alexander Graf6b0ee502016-11-02 10:36:18 +010018/*
19 * The Raspberry Pi firmware uses the RSTS register to know which partiton
20 * to boot from. The partiton value is spread into bits 0, 2, 4, 6, 8, 10.
21 * Partiton 63 is a special partition used by the firmware to indicate halt.
22 */
23#define BCM2835_WDOG_RSTS_RASPBERRYPI_HALT 0x555
24
Paolo Pisati45a6d232017-02-10 17:28:05 +010025/* max ticks timeout */
26#define BCM2835_WDOG_MAX_TIMEOUT 0x000fffff
27
Paolo Pisati45a6d232017-02-10 17:28:05 +010028void hw_watchdog_disable(void) {}
Paolo Pisati45a6d232017-02-10 17:28:05 +010029
Matthias Brugger8e3361c2019-11-19 16:01:03 +010030__efi_runtime_data struct bcm2835_wdog_regs *wdog_regs;
Alexander Graf6b0ee502016-11-02 10:36:18 +010031
Matthias Brugger8e3361c2019-11-19 16:01:03 +010032static void __efi_runtime
33__reset_cpu(struct bcm2835_wdog_regs *wdog_regs, ulong ticks)
Stephen Warrenefad6cf2012-08-05 16:07:21 +000034{
Paolo Pisati45a6d232017-02-10 17:28:05 +010035 uint32_t rstc, timeout;
36
37 if (ticks == 0) {
38 hw_watchdog_disable();
39 timeout = RESET_TIMEOUT;
40 } else
41 timeout = ticks & BCM2835_WDOG_MAX_TIMEOUT;
Stephen Warrenefad6cf2012-08-05 16:07:21 +000042
Alexander Graf6b0ee502016-11-02 10:36:18 +010043 rstc = readl(&wdog_regs->rstc);
Stephen Warrenefad6cf2012-08-05 16:07:21 +000044 rstc &= ~BCM2835_WDOG_RSTC_WRCFG_MASK;
45 rstc |= BCM2835_WDOG_RSTC_WRCFG_FULL_RESET;
46
Paolo Pisati45a6d232017-02-10 17:28:05 +010047 writel(BCM2835_WDOG_PASSWORD | timeout, &wdog_regs->wdog);
Alexander Graf6b0ee502016-11-02 10:36:18 +010048 writel(BCM2835_WDOG_PASSWORD | rstc, &wdog_regs->rstc);
Stephen Warrenefad6cf2012-08-05 16:07:21 +000049}
Alexander Graf6b0ee502016-11-02 10:36:18 +010050
Harald Seiler35b65dd2020-12-15 16:47:52 +010051void reset_cpu(void)
Matthias Brugger8e3361c2019-11-19 16:01:03 +010052{
53 struct bcm2835_wdog_regs *regs =
54 (struct bcm2835_wdog_regs *)BCM2835_WDOG_PHYSADDR;
55
56 __reset_cpu(regs, 0);
57}
58
Alexander Graf6b0ee502016-11-02 10:36:18 +010059#ifdef CONFIG_EFI_LOADER
60
61void __efi_runtime EFIAPI efi_reset_system(
62 enum efi_reset_type reset_type,
63 efi_status_t reset_status,
64 unsigned long data_size, void *reset_data)
65{
66 u32 val;
67
Alexander Grafe4679482018-06-10 21:51:02 +020068 if (reset_type == EFI_RESET_COLD ||
69 reset_type == EFI_RESET_WARM ||
70 reset_type == EFI_RESET_PLATFORM_SPECIFIC) {
Matthias Brugger8e3361c2019-11-19 16:01:03 +010071 __reset_cpu(wdog_regs, 0);
Alexander Grafe4679482018-06-10 21:51:02 +020072 } else if (reset_type == EFI_RESET_SHUTDOWN) {
Alexander Graf6b0ee502016-11-02 10:36:18 +010073 /*
74 * We set the watchdog hard reset bit here to distinguish this reset
75 * from the normal (full) reset. bootcode.bin will not reboot after a
76 * hard reset.
77 */
78 val = readl(&wdog_regs->rsts);
79 val |= BCM2835_WDOG_PASSWORD;
80 val |= BCM2835_WDOG_RSTS_RASPBERRYPI_HALT;
81 writel(val, &wdog_regs->rsts);
Matthias Brugger8e3361c2019-11-19 16:01:03 +010082 __reset_cpu(wdog_regs, 0);
Alexander Graf6b0ee502016-11-02 10:36:18 +010083 }
84
85 while (1) { }
86}
87
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +010088efi_status_t efi_reset_system_init(void)
Alexander Graf6b0ee502016-11-02 10:36:18 +010089{
Matthias Brugger8e3361c2019-11-19 16:01:03 +010090 wdog_regs = (struct bcm2835_wdog_regs *)BCM2835_WDOG_PHYSADDR;
Heinrich Schuchardt22c793e2018-03-03 15:28:59 +010091 return efi_add_runtime_mmio(&wdog_regs, sizeof(*wdog_regs));
Alexander Graf6b0ee502016-11-02 10:36:18 +010092}
93
94#endif