af0bde8bca
Rpmsg VirtIO is a virtio transport implementation for Rpmsg, and it's different to the rptun framework. rpmsg_virtio.c implements the rpmsg virtio transport layer by itself to avoid use the remoteproc implementation in OpenAMP to save code size, so it can be treated as a lightweight version of rptun. Therefore, rpmsg_virtio.c only support the communication feature and do not support contoll the life cycle of the remote core. But benefit by it's small footprint, it can be used in the chips with small flash. Signed-off-by: Yongrong Wang <wangyongrong@xiaomi.com> Signed-off-by: Bowen Wang <wangbowen6@xiaomi.com>
40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
############################################################################
|
|
# drivers/rpmsg/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.
|
|
#
|
|
############################################################################
|
|
|
|
# Don't build anything if there is no RPMSG support
|
|
|
|
ifeq ($(CONFIG_RPMSG),y)
|
|
|
|
CSRCS += rpmsg.c
|
|
|
|
ifeq ($(CONFIG_RPMSG_PING),y)
|
|
CSRCS += rpmsg_ping.c
|
|
endif
|
|
|
|
ifeq ($(CONFIG_RPMSG_VIRTIO),y)
|
|
CSRCS += rpmsg_virtio.c
|
|
CFLAGS += ${INCDIR_PREFIX}$(TOPDIR)$(DELIM)openamp$(DELIM)open-amp$(DELIM)lib
|
|
endif
|
|
|
|
DEPPATH += --dep-path rpmsg
|
|
VPATH += :rpmsg
|
|
|
|
endif
|