blob: a57ce1f10fed9ef94a9e357b2e41e882ecee2d94 [file] [log] [blame]
Green Wan2e5da522021-05-27 06:52:13 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (c) 2020-2021, SiFive Inc
4 *
5 * Authors:
6 * Pragnesh Patel <pragnesh.patel@sifive.com>
7 */
8
Zong Liec348492021-09-01 15:01:42 +08009#include <cpu_func.h>
Green Wan2e5da522021-05-27 06:52:13 -070010#include <dm.h>
Zong Li5cc6af22021-07-27 17:06:59 +080011#include <asm/sections.h>
12
Green Wan2e5da522021-05-27 06:52:13 -070013int board_init(void)
14{
Green Wan2e5da522021-05-27 06:52:13 -070015 /* enable all cache ways */
Zong Liec348492021-09-01 15:01:42 +080016 enable_caches();
17
Green Wan2e5da522021-05-27 06:52:13 -070018 return 0;
19}