resource_table.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright (c) 2020 STMicroelectronics
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef RESOURCE_TABLE_H__
  7. #define RESOURCE_TABLE_H__
  8. #include <openamp/remoteproc.h>
  9. #include <openamp/virtio.h>
  10. #if (CONFIG_OPENAMP_RSC_TABLE_NUM_RPMSG_BUFF > 0)
  11. #define VDEV_ID 0xFF
  12. #define VRING0_ID 0 /* (master to remote) fixed to 0 for Linux compatibility */
  13. #define VRING1_ID 1 /* (remote to master) fixed to 1 for Linux compatibility */
  14. #define VRING_COUNT 2
  15. #define RPMSG_IPU_C0_FEATURES 1
  16. #define VRING_RX_ADDRESS -1 /* allocated by Master processor */
  17. #define VRING_TX_ADDRESS -1 /* allocated by Master processor */
  18. #define VRING_BUFF_ADDRESS -1 /* allocated by Master processor */
  19. #define VRING_ALIGNMENT 16 /* fixed to match with Linux constraint */
  20. #endif
  21. enum rsc_table_entries {
  22. #if (CONFIG_OPENAMP_RSC_TABLE_NUM_RPMSG_BUFF > 0)
  23. RSC_TABLE_VDEV_ENTRY,
  24. #endif
  25. #if defined(CONFIG_RAM_CONSOLE)
  26. RSC_TABLE_TRACE_ENTRY,
  27. #endif
  28. RSC_TABLE_NUM_ENTRY
  29. };
  30. struct fw_resource_table {
  31. unsigned int ver;
  32. unsigned int num;
  33. unsigned int reserved[2];
  34. unsigned int offset[RSC_TABLE_NUM_ENTRY];
  35. struct fw_rsc_vdev vdev;
  36. struct fw_rsc_vdev_vring vring0;
  37. struct fw_rsc_vdev_vring vring1;
  38. #if defined(CONFIG_RAM_CONSOLE)
  39. /* rpmsg trace entry */
  40. struct fw_rsc_trace cm_trace;
  41. #endif
  42. } METAL_PACKED_END;
  43. void rsc_table_get(void **table_ptr, int *length);
  44. inline struct fw_rsc_vdev *rsc_table_to_vdev(void *rsc_table)
  45. {
  46. return &((struct fw_resource_table *)rsc_table)->vdev;
  47. }
  48. inline struct fw_rsc_vdev_vring *rsc_table_get_vring0(void *rsc_table)
  49. {
  50. return &((struct fw_resource_table *)rsc_table)->vring0;
  51. }
  52. inline struct fw_rsc_vdev_vring *rsc_table_get_vring1(void *rsc_table)
  53. {
  54. return &((struct fw_resource_table *)rsc_table)->vring1;
  55. }
  56. #endif