resource_table.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * Copyright (c) 2020 STMicroelectronics
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /*
  7. * In addition to the standard ELF segments, most remote processors would
  8. * also include a special section which we call "the resource table".
  9. *
  10. * The resource table contains system resources that the remote processor
  11. * requires before it should be powered on, such as allocation of physically
  12. * contiguous memory, or iommu mapping of certain on-chip peripherals.
  13. * In addition to system resources, the resource table may also contain
  14. * resource entries that publish the existence of supported features
  15. * or configurations by the remote processor, such as trace buffers and
  16. * supported virtio devices (and their configurations).
  17. * Dependencies:
  18. * to be compliant with Linux kernel OS the resource table must be linked in a
  19. * specific section named ".resource_table".
  20. * Related documentation:
  21. * https://www.kernel.org/doc/Documentation/remoteproc.txt
  22. * https://github.com/OpenAMP/open-amp/wiki/OpenAMP-Life-Cycle-Management
  23. */
  24. #include <zephyr.h>
  25. #include <resource_table.h>
  26. extern char ram_console[];
  27. #define __resource Z_GENERIC_SECTION(.resource_table)
  28. #if (CONFIG_OPENAMP_RSC_TABLE_NUM_RPMSG_BUFF > 0) || defined(CONFIG_RAM_CONSOLE)
  29. static struct fw_resource_table __resource resource_table = {
  30. .ver = 1,
  31. .num = RSC_TABLE_NUM_ENTRY,
  32. .offset = {
  33. #if (CONFIG_OPENAMP_RSC_TABLE_NUM_RPMSG_BUFF > 0)
  34. offsetof(struct fw_resource_table, vdev),
  35. #endif
  36. #if defined(CONFIG_RAM_CONSOLE)
  37. offsetof(struct fw_resource_table, cm_trace),
  38. #endif
  39. },
  40. #if (CONFIG_OPENAMP_RSC_TABLE_NUM_RPMSG_BUFF > 0)
  41. /* Virtio device entry */
  42. .vdev = {
  43. RSC_VDEV, VIRTIO_ID_RPMSG, 0, RPMSG_IPU_C0_FEATURES, 0, 0, 0,
  44. VRING_COUNT, {0, 0},
  45. },
  46. /* Vring rsc entry - part of vdev rsc entry */
  47. .vring0 = {VRING_TX_ADDRESS, VRING_ALIGNMENT,
  48. CONFIG_OPENAMP_RSC_TABLE_NUM_RPMSG_BUFF,
  49. VRING0_ID, 0},
  50. .vring1 = {VRING_RX_ADDRESS, VRING_ALIGNMENT,
  51. CONFIG_OPENAMP_RSC_TABLE_NUM_RPMSG_BUFF,
  52. VRING1_ID, 0},
  53. #endif
  54. #if defined(CONFIG_RAM_CONSOLE)
  55. .cm_trace = {
  56. RSC_TRACE,
  57. (uint32_t)ram_console, CONFIG_RAM_CONSOLE_BUFFER_SIZE + 1, 0,
  58. "Zephyr_log",
  59. },
  60. #endif
  61. };
  62. void rsc_table_get(void **table_ptr, int *length)
  63. {
  64. *table_ptr = (void *)&resource_table;
  65. *length = sizeof(resource_table);
  66. }
  67. #endif