/* USER CODE BEGIN Header */ /* ****************************************************************************** * @attention * * Copyright (c) 2024 STMicroelectronics. * All rights reserved. * * This software is licensed under terms that can be found in the LICENSE file * in the root directory of this software component. * If no LICENSE file comes with this software, it is provided AS-IS. * ****************************************************************************** */ /* This file populates resource table for BM remote * for use by the Linux Master */ /* USER CODE END Header */ #ifndef RSC_TABLE_H_ #define RSC_TABLE_H_ #include "openamp/open_amp.h" #include "openamp_conf.h" /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ /* USER CODE END Includes */ /* Exported types ------------------------------------------------------------*/ /* USER CODE BEGIN ET */ /* Resource table for the given remote */ struct shared_resource_table { unsigned int version; unsigned int num; unsigned int reserved[2]; unsigned int offset[NUM_RESOURCE_ENTRIES]; /* text carveout entry */ /* rpmsg vdev entry */ struct fw_rsc_vdev vdev; struct fw_rsc_vdev_vring vring0; struct fw_rsc_vdev_vring vring1; struct fw_rsc_trace cm_trace; }; /* USER CODE END ET */ /* Exported constants --------------------------------------------------------*/ /* USER CODE BEGIN EC */ /* USER CODE END EC */ /* Private defines -----------------------------------------------------------*/ /* USER CODE BEGIN Private defines */ /* USER CODE END Private defines */ /* Exported macro ------------------------------------------------------------*/ /* USER CODE BEGIN EM */ /* USER CODE END EM */ /* Exported functions prototypes ---------------------------------------------*/ /* USER CODE BEGIN EFP */ /* USER CODE END EFP */ void resource_table_init(int RPMsgRole, void **table_ptr, int *length); #endif /* RSC_TABLE_H_ */