Introduce macros to define initialization routines for OpenAMP resource table entries. This will allow to extend the default OpenAMP resource table with vendor-specific data structures. Signed-off-by: Iuliana Prodan <iuliana.prodan@nxp.com>
122 lines
2.9 KiB
C
122 lines
2.9 KiB
C
/*
|
|
* Copyright (c) 2020 STMicroelectronics
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef RESOURCE_TABLE_H__
|
|
#define RESOURCE_TABLE_H__
|
|
|
|
#include <openamp/remoteproc.h>
|
|
#include <openamp/virtio.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if (CONFIG_OPENAMP_RSC_TABLE_NUM_RPMSG_BUFF > 0)
|
|
|
|
#define VDEV_ID 0xFF
|
|
#define VRING0_ID CONFIG_OPENAMP_RSC_TABLE_IPM_RX_ID /* (host to remote) */
|
|
#define VRING1_ID CONFIG_OPENAMP_RSC_TABLE_IPM_TX_ID /* (remote to host) */
|
|
|
|
#define VRING_COUNT 2
|
|
#define RPMSG_IPU_C0_FEATURES 1
|
|
|
|
#define VRING_RX_ADDRESS -1 /* allocated by Master processor */
|
|
#define VRING_TX_ADDRESS -1 /* allocated by Master processor */
|
|
#define VRING_BUFF_ADDRESS -1 /* allocated by Master processor */
|
|
#define VRING_ALIGNMENT 16 /* fixed to match with Linux constraint */
|
|
|
|
#endif
|
|
|
|
enum rsc_table_entries {
|
|
#if (CONFIG_OPENAMP_RSC_TABLE_NUM_RPMSG_BUFF > 0)
|
|
RSC_TABLE_VDEV_ENTRY,
|
|
#endif
|
|
#if defined(CONFIG_RAM_CONSOLE)
|
|
RSC_TABLE_TRACE_ENTRY,
|
|
#endif
|
|
RSC_TABLE_NUM_ENTRY
|
|
};
|
|
|
|
struct fw_resource_table {
|
|
struct resource_table hdr;
|
|
uint32_t offset[RSC_TABLE_NUM_ENTRY];
|
|
|
|
#if (CONFIG_OPENAMP_RSC_TABLE_NUM_RPMSG_BUFF > 0)
|
|
struct fw_rsc_vdev vdev;
|
|
struct fw_rsc_vdev_vring vring0;
|
|
struct fw_rsc_vdev_vring vring1;
|
|
#endif
|
|
|
|
#if defined(CONFIG_RAM_CONSOLE)
|
|
/* rpmsg trace entry */
|
|
struct fw_rsc_trace cm_trace;
|
|
#endif
|
|
} METAL_PACKED_END;
|
|
|
|
#if (CONFIG_OPENAMP_RSC_TABLE_NUM_RPMSG_BUFF > 0)
|
|
#define VDEV_OFFSET offsetof(struct fw_resource_table, vdev),
|
|
#else
|
|
#define VDEV_OFFSET
|
|
#endif
|
|
|
|
#if defined(CONFIG_RAM_CONSOLE)
|
|
#define CM_TRACE_OFFSET offsetof(struct fw_resource_table, cm_trace),
|
|
#else
|
|
#define CM_TRACE_OFFSET
|
|
#endif
|
|
|
|
#define VDEV_ENTRY_HELPER(x) \
|
|
.vdev = {RSC_VDEV, VIRTIO_ID_RPMSG, 0, RPMSG_IPU_C0_FEATURES, 0, 0, 0, \
|
|
VRING_COUNT, {0, 0},}, \
|
|
.vring0 = {VRING_TX_ADDRESS, VRING_ALIGNMENT, x, VRING0_ID, 0}, \
|
|
.vring1 = {VRING_RX_ADDRESS, VRING_ALIGNMENT, x, VRING1_ID, 0},
|
|
|
|
#if (CONFIG_OPENAMP_RSC_TABLE_NUM_RPMSG_BUFF > 0)
|
|
#define VDEV_ENTRY \
|
|
VDEV_ENTRY_HELPER(CONFIG_OPENAMP_RSC_TABLE_NUM_RPMSG_BUFF)
|
|
#else
|
|
#define VDEV_ENTRY
|
|
#endif
|
|
|
|
#if defined(CONFIG_RAM_CONSOLE)
|
|
#define CM_TRACE_ENTRY \
|
|
.cm_trace = { \
|
|
RSC_TRACE, \
|
|
(uint32_t)ram_console_buf, CONFIG_RAM_CONSOLE_BUFFER_SIZE, 0,\
|
|
"Zephyr_log", \
|
|
},
|
|
#else
|
|
#define CM_TRACE_ENTRY
|
|
#endif
|
|
|
|
#define RESOURCE_TABLE_INIT \
|
|
{ \
|
|
.hdr = { \
|
|
.ver = 1, \
|
|
.num = RSC_TABLE_NUM_ENTRY, \
|
|
}, \
|
|
.offset = { \
|
|
VDEV_OFFSET \
|
|
CM_TRACE_OFFSET \
|
|
}, \
|
|
VDEV_ENTRY \
|
|
CM_TRACE_ENTRY \
|
|
}
|
|
|
|
void rsc_table_get(void **table_ptr, int *length);
|
|
|
|
#if (CONFIG_OPENAMP_RSC_TABLE_NUM_RPMSG_BUFF > 0)
|
|
struct fw_rsc_vdev *rsc_table_to_vdev(void *rsc_table);
|
|
struct fw_rsc_vdev_vring *rsc_table_get_vring0(void *rsc_table);
|
|
struct fw_rsc_vdev_vring *rsc_table_get_vring1(void *rsc_table);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|