platform.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * Copyright (c) 2019 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef MIPI_SYST_PLATFORM_INCLUDED
  7. #define MIPI_SYST_PLATFORM_INCLUDED
  8. #include <logging/log_output.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. #if defined(CONFIG_MIPI_SYST_STP)
  13. /*
  14. * Structure generating STP protocol data
  15. */
  16. struct stp_writer_data {
  17. mipi_syst_u8 byteDone;
  18. mipi_syst_u8 current;
  19. mipi_syst_u16 master;
  20. mipi_syst_u16 channel;
  21. mipi_syst_u64 recordCount;
  22. mipi_syst_u64 timestamp;
  23. };
  24. #endif
  25. #if defined(MIPI_SYST_PCFG_ENABLE_PLATFORM_STATE_DATA)
  26. /*
  27. * Platform specific SyS-T global state extension
  28. */
  29. struct mipi_syst_platform_state {
  30. #if defined(CONFIG_MIPI_SYST_STP)
  31. struct stp_writer_data *stpWriter;
  32. #endif
  33. void (*write_d8)(struct mipi_syst_handle *systh, mipi_syst_u8 v);
  34. void (*write_d16)(struct mipi_syst_handle *systh, mipi_syst_u16 v);
  35. void (*write_d32)(struct mipi_syst_handle *systh, mipi_syst_u32 v);
  36. #if defined(MIPI_SYST_PCFG_ENABLE_64BIT_IO)
  37. void (*write_d64)(struct mipi_syst_handle *systh, mipi_syst_u64 v);
  38. #endif
  39. void (*write_d32ts)(struct mipi_syst_handle *systh, mipi_syst_u32 v);
  40. void (*write_d32mts)(struct mipi_syst_handle *systh, mipi_syst_u32 v);
  41. void (*write_d64mts)(struct mipi_syst_handle *systh, mipi_syst_u64 v);
  42. void (*write_flag)(struct mipi_syst_handle *systh);
  43. };
  44. /*
  45. * Platform specific SyS-T handle state extension
  46. */
  47. struct mipi_syst_platform_handle {
  48. mipi_syst_u32 flag;
  49. #if defined(CONFIG_MIPI_SYST_STP)
  50. mipi_syst_u32 master;
  51. mipi_syst_u32 channel;
  52. #endif
  53. struct log_output *log_output;
  54. };
  55. /*
  56. * IO output routine mapping
  57. * Call the function pointers in the global state
  58. */
  59. #define MIPI_SYST_OUTPUT_D8(syst_handle, data) \
  60. ((syst_handle)->systh_header-> \
  61. systh_platform.write_d8((syst_handle), (data)))
  62. #define MIPI_SYST_OUTPUT_D16(syst_handle, data) \
  63. ((syst_handle)->systh_header-> \
  64. systh_platform.write_d16((syst_handle), (data)))
  65. #define MIPI_SYST_OUTPUT_D32(syst_handle, data) \
  66. ((syst_handle)->systh_header-> \
  67. systh_platform.write_d32((syst_handle), (data)))
  68. #if defined(MIPI_SYST_PCFG_ENABLE_64BIT_IO)
  69. #define MIPI_SYST_OUTPUT_D64(syst_handle, data) \
  70. ((syst_handle)->systh_header-> \
  71. systh_platform.write_d64((syst_handle), (data)))
  72. #endif
  73. #define MIPI_SYST_OUTPUT_D32TS(syst_handle, data) \
  74. ((syst_handle)->systh_header-> \
  75. systh_platform.write_d32ts((syst_handle), (data)))
  76. #define MIPI_SYST_OUTPUT_D32MTS(syst_handle, data) \
  77. ((syst_handle)->systh_header-> \
  78. systh_platform.write_d32mts((syst_handle), (data)))
  79. #define MIPI_SYST_OUTPUT_D64MTS(syst_handle, data) \
  80. ((syst_handle)->systh_header-> \
  81. systh_platform.write_d64mts((syst_handle), (data)))
  82. #define MIPI_SYST_OUTPUT_FLAG(syst_handle) \
  83. ((syst_handle)->systh_header-> \
  84. systh_platform.write_flag((syst_handle)))
  85. #else
  86. #define MIPI_SYST_OUTPUT_D8(syst_handle, data)
  87. #define MIPI_SYST_OUTPUT_D16(syst_handle, data)
  88. #define MIPI_SYST_OUTPUT_D32(syst_handle, data)
  89. #if defined(MIPI_SYST_PCFG_ENABLE_64BIT_IO)
  90. #define MIPI_SYST_OUTPUT_D64(syst_handle, data)
  91. #endif
  92. #define MIPI_SYST_OUTPUT_D32TS(syst_handle, data)
  93. #define MIPI_SYST_OUTPUT_FLAG(syst_handle)
  94. #endif
  95. #if defined(MIPI_SYST_PCFG_ENABLE_HEAP_MEMORY)
  96. #define MIPI_SYST_HEAP_MALLOC(s)
  97. #define MIPI_SYST_HEAP_FREE(p)
  98. #endif
  99. #if defined(MIPI_SYST_PCFG_ENABLE_TIMESTAMP)
  100. #define MIPI_SYST_PLATFORM_CLOCK() mipi_syst_get_epoch()
  101. #define MIPI_SYST_PLATFORM_FREQ() CONFIG_SYS_CLOCK_TICKS_PER_SEC
  102. mipi_syst_u64 mipi_syst_get_epoch(void);
  103. #endif
  104. #ifdef __cplusplus
  105. }
  106. #endif
  107. #endif