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> | ||||
7 | #include <dm.h> | ||||
8 | #include <wdt.h> | ||||
9 | #include <dm/uclass-internal.h> | ||||
10 | |||||
Ryder Lee | cbd2fba | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 11 | int arch_cpu_init(void) |
12 | { | ||||
13 | icache_enable(); | ||||
14 | |||||
15 | return 0; | ||||
16 | } | ||||
17 | |||||
18 | void enable_caches(void) | ||||
19 | { | ||||
20 | /* Enable D-cache. I-cache is already enabled in start.S */ | ||||
21 | dcache_enable(); | ||||
22 | } |