summaryrefslogtreecommitdiff
path: root/arch/arm/mach-apple
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@openbsd.org>2022-01-12 19:55:17 +0100
committerStefan Roese <sr@denx.de>2022-01-13 06:55:46 +0100
commit9a8e3736da25a62449f84aef2b566e2b31ca60fd (patch)
tree3d599b7b9f5d272b83db67a8455146882183edf0 /arch/arm/mach-apple
parentb0e6c73a790815c80092da10269d26125b05a435 (diff)
arm: apple: Use watchdog timer for system reset
Rely on the new watchdog timer driver and the sysreset uclass to reset the system. This gets rid of hard-coded addresses and should work on systems based on the new M1 Pro and M1 Max SoCs as well. Signed-off-by: Mark Kettenis <kettenis@openbsd.org> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Stefan Roese <sr@denx.de> Tested-on: Apple M1 Macbook Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/mach-apple')
-rw-r--r--arch/arm/mach-apple/board.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/arch/arm/mach-apple/board.c b/arch/arm/mach-apple/board.c
index 0bfbc473ec..b7e8d212f1 100644
--- a/arch/arm/mach-apple/board.c
+++ b/arch/arm/mach-apple/board.c
@@ -119,30 +119,6 @@ int dram_init_banksize(void)
return fdtdec_setup_memory_banksize();
}
-#define APPLE_WDT_BASE 0x23d2b0000ULL
-
-#define APPLE_WDT_SYS_CTL_ENABLE BIT(2)
-
-typedef struct apple_wdt {
- u32 reserved0[3];
- u32 chip_ctl;
- u32 sys_tmr;
- u32 sys_cmp;
- u32 reserved1;
- u32 sys_ctl;
-} apple_wdt_t;
-
-void reset_cpu(void)
-{
- apple_wdt_t *wdt = (apple_wdt_t *)APPLE_WDT_BASE;
-
- writel(0, &wdt->sys_cmp);
- writel(APPLE_WDT_SYS_CTL_ENABLE, &wdt->sys_ctl);
-
- while(1)
- wfi();
-}
-
extern long fw_dtb_pointer;
void *board_fdt_blob_setup(int *err)