u-boot/board/thead/th1520_lpi4a/board.c
Yixun Lan 5f3a7fdb72 riscv: t-head: licheepi4a: initial support added
Add support for Sipeed's Lichee Pi 4A board which based on T-HEAD's
TH1520 SoC, only minimal device tree and serial console are enabled,
so it's capable of chain booting from T-HEAD's vendor u-boot.

Reviewed-by: Wei Fu <wefu@redhat.com>
Signed-off-by: Yixun Lan <dlan@gentoo.org>
2023-07-12 13:21:41 +08:00

15 lines
197 B
C

// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (c) 2023, Yixun Lan <dlan@gentoo.org>
*
*/
#include <common.h>
#include <cpu_func.h>
int board_init(void)
{
enable_caches();
return 0;
}