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 | |
| 9 | #include <common.h> |
Zong Li | ec34849 | 2021-09-01 15:01:42 +0800 | [diff] [blame] | 10 | #include <cpu_func.h> |
Green Wan | 2e5da52 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 11 | #include <dm.h> |
Zong Li | 5cc6af2 | 2021-07-27 17:06:59 +0800 | [diff] [blame] | 12 | #include <asm/sections.h> |
| 13 | |
| 14 | void *board_fdt_blob_setup(void) |
| 15 | { |
| 16 | if (IS_ENABLED(CONFIG_OF_SEPARATE)) { |
| 17 | if (gd->arch.firmware_fdt_addr) |
| 18 | return (ulong *)gd->arch.firmware_fdt_addr; |
| 19 | else |
| 20 | return (ulong *)&_end; |
| 21 | } |
| 22 | } |
Green Wan | 2e5da52 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 23 | |
| 24 | int board_init(void) |
| 25 | { |
Green Wan | 2e5da52 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 26 | /* enable all cache ways */ |
Zong Li | ec34849 | 2021-09-01 15:01:42 +0800 | [diff] [blame] | 27 | enable_caches(); |
| 28 | |
Green Wan | 2e5da52 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 29 | return 0; |
| 30 | } |