nuttx/boards/risc-v/mpfs/icicle/scripts/Make.defs

77 lines
2.5 KiB
Plaintext
Raw Normal View History

############################################################################
# boards/risc-v/mpfs/icicle/scripts/Make.defs
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
# ASF licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
############################################################################
include $(TOPDIR)/.config
include $(TOPDIR)/tools/Config.mk
include $(TOPDIR)/tools/mpfs/Config.mk
include $(TOPDIR)/arch/risc-v/src/common/Toolchain.defs
LDMEMORY =
ifeq ($(CONFIG_MPFS_BOOTLOADER),y)
ifeq ($(CONFIG_MPFS_OPENSBI),y)
LDSCRIPT = ld-envm-opensbi.script
else
LDSCRIPT = ld-envm.script
endif
else ifeq ($(CONFIG_BUILD_PROTECTED),y)
LDMEMORY = memory.ld
LDSCRIPT = kernel-space.ld
else ifeq ($(CONFIG_BUILD_KERNEL),y)
LDSCRIPT = ld-kernel.script
else
ifeq ($(CONFIG_MPFS_IHC_CLIENT),y)
ifeq ($(CONFIG_MPFS_IHC_RPMSG_CH2),y)
LDSCRIPT = ld-ihc-ch2.script
else
LDSCRIPT = ld-ihc.script
endif
risc-v/mpfs: introduce IHC driver This provides an example of Asymmetric Multiprocessing (AMP). The master from Linux sends pings that this NuttX echoes back. The system uses RPMsg from OpenAMP. The Inter-Hart Communication module is present in the vendor's software stack with the tag "2021.11". The software is present on github at the polarfire-soc project. The following conditions must be met: 1. FPGA programmed with 2021.11 software 2. HSS (Vendor bootloader) with 2021.11 software 3. U-boot and Linux kernel from 2011.11 software Currently the IHC works as a slave only on the hart number 4. On the NuttX side, this patch uses rptun that incorporates rpmsg and virtio. If it used only rpmsg and virtio, the future maintenance would likely be much heavier. Using rptun also simplifies many things. Upon success, the master side from Linux may issue an example test: root@icicle-kit-es-amp:/opt/microchip/amp/rpmsg-pingpong# ./rpmsg-pingpong However, the rpmsg-pingpong.c (compiled on target with gcc), may need to be modified as seen below to match the device id: - char *rpmsg_dev="virtio0.rpmsg-amp-demo-channel.-1.0"; + char *rpmsg_dev="virtio0.rpmsg-amp-demo-channel.-1.1024"; This work uses a separate linker script. Due to a bug yet unknown to date, a small NuttX, when loaded by the vendor HSS bootloader, will cause the Linux kernel to hang at boot. Thus, the binary size is increased with a section 'filler_area' whose only purpose is to increase the image size so that the Linux kernel will boot up. Signed-off-by: Eero Nurkkala <eero.nurkkala@offcode.fi>
2022-05-03 06:33:16 +02:00
else
LDSCRIPT = ld.script
endif
endif
ifneq ($(LDMEMORY),)
ARCHSCRIPT += $(BOARD_DIR)$(DELIM)scripts$(DELIM)$(LDMEMORY)
endif
ARCHSCRIPT += $(BOARD_DIR)$(DELIM)scripts$(DELIM)$(LDSCRIPT)
CFLAGS = $(ARCHCFLAGS) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS) -pipe
CPICFLAGS = $(ARCHPICFLAGS) $(CFLAGS)
CXXFLAGS = $(ARCHCXXFLAGS) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(ARCHXXINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS) -pipe
CXXPICFLAGS = $(ARCHPICFLAGS) $(CXXFLAGS)
CPPFLAGS = $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRAFLAGS)
AFLAGS += $(CFLAGS) -D__ASSEMBLY__
# Loadable module definitions
CMODULEFLAGS = $(CFLAGS)
LDMODULEFLAGS = -r -e module_initialize
LDMODULEFLAGS += -T $(call CONVERT_PATH,$(TOPDIR)/libs/libc/modlib/gnu-elf.ld)
# ELF module definitions
CELFFLAGS = $(CFLAGS)
CXXELFFLAGS = $(CXXFLAGS)
LDELFFLAGS = -r -e main
LDELFFLAGS += -T $(call CONVERT_PATH,$(TOPDIR)/binfmt/libelf/gnu-elf.ld)