Ryder Lee | cbd2fba | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * Copyright (C) 2018 MediaTek Inc. |
| 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 9edefc2 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 7 | #include <cpu_func.h> |
Ryder Lee | cbd2fba | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 8 | #include <dm.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 9 | #include <init.h> |
Ryder Lee | cbd2fba | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 10 | #include <wdt.h> |
| 11 | #include <dm/uclass-internal.h> |
| 12 | |
Ryder Lee | cbd2fba | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 13 | int arch_cpu_init(void) |
| 14 | { |
| 15 | icache_enable(); |
| 16 | |
| 17 | return 0; |
| 18 | } |
| 19 | |
| 20 | void enable_caches(void) |
| 21 | { |
| 22 | /* Enable D-cache. I-cache is already enabled in start.S */ |
| 23 | dcache_enable(); |
| 24 | } |