Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[oweals/u-boot.git] / arch / arm / mach-mediatek / cpu.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2018 MediaTek Inc.
4  */
5
6 #include <common.h>
7 #include <cpu_func.h>
8 #include <dm.h>
9 #include <init.h>
10 #include <wdt.h>
11 #include <dm/uclass-internal.h>
12
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 }