Green Wan | 2e5da52 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 1 | // 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 Li | ec34849 | 2021-09-01 15:01:42 +0800 | [diff] [blame] | 9 | #include <cpu_func.h> |
Green Wan | 2e5da52 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 10 | #include <dm.h> |
Zong Li | 5cc6af2 | 2021-07-27 17:06:59 +0800 | [diff] [blame] | 11 | #include <asm/sections.h> |
12 | |||||
Green Wan | 2e5da52 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 13 | int board_init(void) |
14 | { | ||||
Green Wan | 2e5da52 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 15 | /* enable all cache ways */ |
Zong Li | ec34849 | 2021-09-01 15:01:42 +0800 | [diff] [blame] | 16 | enable_caches(); |
17 | |||||
Green Wan | 2e5da52 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 18 | return 0; |
19 | } |