Minkyu Kang | 008a351 | 2011-01-24 15:22:23 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2010 Samsung Electronics. |
| 3 | * Minkyu Kang <mk7.kang@samsung.com> |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Minkyu Kang | 008a351 | 2011-01-24 15:22:23 +0900 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <asm/io.h> |
Rajeshwari Shinde | 7ee68fe | 2012-11-29 20:29:35 +0000 | [diff] [blame] | 10 | #include <asm/system.h> |
| 11 | |
Minkyu Kang | 008a351 | 2011-01-24 15:22:23 +0900 | [diff] [blame] | 12 | void reset_cpu(ulong addr) |
| 13 | { |
| 14 | writel(0x1, samsung_get_base_swreset()); |
| 15 | } |
Ćukasz Majewski | d7957d1 | 2012-08-07 03:24:03 +0000 | [diff] [blame] | 16 | |
| 17 | #ifndef CONFIG_SYS_DCACHE_OFF |
| 18 | void enable_caches(void) |
| 19 | { |
| 20 | /* Enable D-cache. I-cache is already enabled in start.S */ |
| 21 | dcache_enable(); |
| 22 | } |
| 23 | #endif |