Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Stephen Warren | efad6cf | 2012-08-05 16:07:21 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2012 Stephen Warren |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
Stephen Warren | efad6cf | 2012-08-05 16:07:21 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <asm/io.h> |
| 11 | #include <asm/arch/wdog.h> |
Alexander Graf | 6b0ee50 | 2016-11-02 10:36:18 +0100 | [diff] [blame] | 12 | #include <efi_loader.h> |
Stephen Warren | efad6cf | 2012-08-05 16:07:21 +0000 | [diff] [blame] | 13 | |
| 14 | #define RESET_TIMEOUT 10 |
| 15 | |
Alexander Graf | 6b0ee50 | 2016-11-02 10:36:18 +0100 | [diff] [blame] | 16 | /* |
| 17 | * The Raspberry Pi firmware uses the RSTS register to know which partiton |
| 18 | * to boot from. The partiton value is spread into bits 0, 2, 4, 6, 8, 10. |
| 19 | * Partiton 63 is a special partition used by the firmware to indicate halt. |
| 20 | */ |
| 21 | #define BCM2835_WDOG_RSTS_RASPBERRYPI_HALT 0x555 |
| 22 | |
Paolo Pisati | 45a6d23 | 2017-02-10 17:28:05 +0100 | [diff] [blame] | 23 | /* max ticks timeout */ |
| 24 | #define BCM2835_WDOG_MAX_TIMEOUT 0x000fffff |
| 25 | |
Paolo Pisati | 45a6d23 | 2017-02-10 17:28:05 +0100 | [diff] [blame] | 26 | void hw_watchdog_disable(void) {} |
Paolo Pisati | 45a6d23 | 2017-02-10 17:28:05 +0100 | [diff] [blame] | 27 | |
Alexander Graf | 6b0ee50 | 2016-11-02 10:36:18 +0100 | [diff] [blame] | 28 | __efi_runtime_data struct bcm2835_wdog_regs *wdog_regs = |
| 29 | (struct bcm2835_wdog_regs *)BCM2835_WDOG_PHYSADDR; |
| 30 | |
Paolo Pisati | 45a6d23 | 2017-02-10 17:28:05 +0100 | [diff] [blame] | 31 | void __efi_runtime reset_cpu(ulong ticks) |
Stephen Warren | efad6cf | 2012-08-05 16:07:21 +0000 | [diff] [blame] | 32 | { |
Paolo Pisati | 45a6d23 | 2017-02-10 17:28:05 +0100 | [diff] [blame] | 33 | uint32_t rstc, timeout; |
| 34 | |
| 35 | if (ticks == 0) { |
| 36 | hw_watchdog_disable(); |
| 37 | timeout = RESET_TIMEOUT; |
| 38 | } else |
| 39 | timeout = ticks & BCM2835_WDOG_MAX_TIMEOUT; |
Stephen Warren | efad6cf | 2012-08-05 16:07:21 +0000 | [diff] [blame] | 40 | |
Alexander Graf | 6b0ee50 | 2016-11-02 10:36:18 +0100 | [diff] [blame] | 41 | rstc = readl(&wdog_regs->rstc); |
Stephen Warren | efad6cf | 2012-08-05 16:07:21 +0000 | [diff] [blame] | 42 | rstc &= ~BCM2835_WDOG_RSTC_WRCFG_MASK; |
| 43 | rstc |= BCM2835_WDOG_RSTC_WRCFG_FULL_RESET; |
| 44 | |
Paolo Pisati | 45a6d23 | 2017-02-10 17:28:05 +0100 | [diff] [blame] | 45 | writel(BCM2835_WDOG_PASSWORD | timeout, &wdog_regs->wdog); |
Alexander Graf | 6b0ee50 | 2016-11-02 10:36:18 +0100 | [diff] [blame] | 46 | writel(BCM2835_WDOG_PASSWORD | rstc, &wdog_regs->rstc); |
Stephen Warren | efad6cf | 2012-08-05 16:07:21 +0000 | [diff] [blame] | 47 | } |
Alexander Graf | 6b0ee50 | 2016-11-02 10:36:18 +0100 | [diff] [blame] | 48 | |
| 49 | #ifdef CONFIG_EFI_LOADER |
| 50 | |
| 51 | void __efi_runtime EFIAPI efi_reset_system( |
| 52 | enum efi_reset_type reset_type, |
| 53 | efi_status_t reset_status, |
| 54 | unsigned long data_size, void *reset_data) |
| 55 | { |
| 56 | u32 val; |
| 57 | |
Alexander Graf | e467948 | 2018-06-10 21:51:02 +0200 | [diff] [blame] | 58 | if (reset_type == EFI_RESET_COLD || |
| 59 | reset_type == EFI_RESET_WARM || |
| 60 | reset_type == EFI_RESET_PLATFORM_SPECIFIC) { |
Alexander Graf | 6b0ee50 | 2016-11-02 10:36:18 +0100 | [diff] [blame] | 61 | reset_cpu(0); |
Alexander Graf | e467948 | 2018-06-10 21:51:02 +0200 | [diff] [blame] | 62 | } else if (reset_type == EFI_RESET_SHUTDOWN) { |
Alexander Graf | 6b0ee50 | 2016-11-02 10:36:18 +0100 | [diff] [blame] | 63 | /* |
| 64 | * We set the watchdog hard reset bit here to distinguish this reset |
| 65 | * from the normal (full) reset. bootcode.bin will not reboot after a |
| 66 | * hard reset. |
| 67 | */ |
| 68 | val = readl(&wdog_regs->rsts); |
| 69 | val |= BCM2835_WDOG_PASSWORD; |
| 70 | val |= BCM2835_WDOG_RSTS_RASPBERRYPI_HALT; |
| 71 | writel(val, &wdog_regs->rsts); |
| 72 | reset_cpu(0); |
Alexander Graf | 6b0ee50 | 2016-11-02 10:36:18 +0100 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | while (1) { } |
| 76 | } |
| 77 | |
Heinrich Schuchardt | 22c793e | 2018-03-03 15:28:59 +0100 | [diff] [blame] | 78 | efi_status_t efi_reset_system_init(void) |
Alexander Graf | 6b0ee50 | 2016-11-02 10:36:18 +0100 | [diff] [blame] | 79 | { |
Heinrich Schuchardt | 22c793e | 2018-03-03 15:28:59 +0100 | [diff] [blame] | 80 | return efi_add_runtime_mmio(&wdog_regs, sizeof(*wdog_regs)); |
Alexander Graf | 6b0ee50 | 2016-11-02 10:36:18 +0100 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | #endif |