forked from Mirrors/opensbi

The Kendryte k210 board initial loader does not provide a device tree for the firmware and subsequent payload. Add the k210.dts device tree description file to solve this. This file describes only the SoC core components: CPUs, memory and PLIC. Automatically compile and add this file to the firmware generated using the FW_PAYLOAD_FDT_PATH configuration parameter. Signed-off-by: Damien Le Moal <damien.lemoal@wdc.com>
29 lines
595 B
Makefile
29 lines
595 B
Makefile
#
|
|
# Copyright (c) 2018 Western Digital Corporation or its affiliates.
|
|
#
|
|
# Authors:
|
|
# Damien Le Moal <damien.lemoal@wdc.com>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
|
|
# Compiler flags
|
|
platform-cppflags-y =
|
|
platform-cflags-y =-mabi=lp64 -march=rv64imafdc -mcmodel=medany
|
|
platform-asflags-y =-mabi=lp64 -march=rv64imafdc -mcmodel=medany
|
|
platform-ldflags-y =
|
|
|
|
# Common drivers to enable
|
|
PLATFORM_IRQCHIP_PLIC=y
|
|
PLATFORM_SYS_CLINT=y
|
|
|
|
# Blobs to build
|
|
FW_TEXT_START=0x80000000
|
|
FW_PAYLOAD=y
|
|
FW_PAYLOAD_ALIGN=0x1000
|
|
FW_PAYLOAD_FDT=k210.dtb
|
|
|
|
# External Libraries to include
|
|
PLATFORM_INCLUDE_LIBC=y
|
|
|