forked from Mirrors/opensbi

Changes are made to support our FPGA evaluation board, it has DDR memory(0xA0000000-0xB0000000). * Adapt the config.mk to match FPGA evaluation board DDR memory address * Since the RISC-V CPU core frequency of FPGA might change, so we use the fixed TIMER frequency to measure the real CPU core frequency. * And the UART baudrate has to set to 57600bps for Nuclei FPGA evaluation board when CPU core frequency is about 8MHz, otherwise the UART input will not work correctly. Signed-off-by: Huaqi Fang <578567190@qq.com> Reviewed-by: Anup Patel <anup.patel@wdc.com>
31 lines
606 B
Makefile
31 lines
606 B
Makefile
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
# Copyright (c) 2020 Nuclei Corporation or its affiliates.
|
|
#
|
|
# Authors:
|
|
# lujun <lujun@nucleisys.com>
|
|
# hqfang <578567190@qq.com>
|
|
#
|
|
|
|
# Compiler flags
|
|
platform-cppflags-y =
|
|
platform-cflags-y =
|
|
platform-asflags-y =
|
|
platform-ldflags-y =
|
|
|
|
# Command for platform specific "make run"
|
|
platform-runcmd = xl_spike \
|
|
$(build_dir)/platform/nuclei/ux600/firmware/fw_payload.elf
|
|
|
|
# Blobs to build
|
|
FW_TEXT_START=0xA0000000
|
|
FW_DYNAMIC=y
|
|
FW_JUMP=y
|
|
|
|
FW_JUMP_ADDR=0xA0200000
|
|
FW_JUMP_FDT_ADDR=0xA8000000
|
|
FW_PAYLOAD=y
|
|
FW_PAYLOAD_OFFSET=0x200000
|
|
FW_PAYLOAD_FDT_ADDR=0xA8000000
|