Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Scott Branden | 59f56be | 2014-08-11 13:58:24 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2014 Broadcom Corporation. |
Scott Branden | 59f56be | 2014-08-11 13:58:24 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | afb0215 | 2019-12-28 10:45:01 -0700 | [diff] [blame] | 7 | #include <cpu_func.h> |
Scott Branden | 59f56be | 2014-08-11 13:58:24 -0700 | [diff] [blame] | 8 | #include <asm/io.h> |
| 9 | |
| 10 | #define CRU_RESET_OFFSET 0x1803F184 |
| 11 | |
| 12 | void reset_cpu(ulong ignored) |
| 13 | { |
| 14 | /* Reset the cpu by setting software reset request bit */ |
| 15 | writel(0x1, CRU_RESET_OFFSET); |
| 16 | |
| 17 | while (1) |
| 18 | ; /* loop forever till reset */ |
| 19 | } |