sci_misc_rpc.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * Copyright (C) 2016 Freescale Semiconductor, Inc.
  3. * Copyright 2017-2019 NXP
  4. *
  5. * SPDX-License-Identifier: BSD-3-Clause
  6. */
  7. /*!
  8. * Header file for the MISC RPC implementation.
  9. *
  10. * @addtogroup MISC_SVC
  11. * @{
  12. */
  13. #ifndef SC_MISC_RPC_H
  14. #define SC_MISC_RPC_H
  15. /* Includes */
  16. /* Defines */
  17. /*!
  18. * @name Defines for RPC MISC function calls
  19. */
  20. /*@{*/
  21. #define MISC_FUNC_UNKNOWN 0 /* Unknown function */
  22. #define MISC_FUNC_SET_CONTROL 1U /* Index for misc_set_control() RPC call */
  23. #define MISC_FUNC_GET_CONTROL 2U /* Index for misc_get_control() RPC call */
  24. #define MISC_FUNC_SET_MAX_DMA_GROUP 4U /* Index for misc_set_max_dma_group() RPC call */
  25. #define MISC_FUNC_SET_DMA_GROUP 5U /* Index for misc_set_dma_group() RPC call */
  26. #define MISC_FUNC_SECO_IMAGE_LOAD 8U /* Index for misc_seco_image_load() RPC call */
  27. #define MISC_FUNC_SECO_AUTHENTICATE 9U /* Index for misc_seco_authenticate() RPC call */
  28. #define MISC_FUNC_SECO_FUSE_WRITE 20U /* Index for misc_seco_fuse_write() RPC call */
  29. #define MISC_FUNC_SECO_ENABLE_DEBUG 21U /* Index for misc_seco_enable_debug() RPC call */
  30. #define MISC_FUNC_SECO_FORWARD_LIFECYCLE 22U /* Index for misc_seco_forward_lifecycle() RPC call */
  31. #define MISC_FUNC_SECO_RETURN_LIFECYCLE 23U /* Index for misc_seco_return_lifecycle() RPC call */
  32. #define MISC_FUNC_SECO_BUILD_INFO 24U /* Index for misc_seco_build_info() RPC call */
  33. #define MISC_FUNC_SECO_CHIP_INFO 25U /* Index for misc_seco_chip_info() RPC call */
  34. #define MISC_FUNC_DEBUG_OUT 10U /* Index for misc_debug_out() RPC call */
  35. #define MISC_FUNC_WAVEFORM_CAPTURE 6U /* Index for misc_waveform_capture() RPC call */
  36. #define MISC_FUNC_BUILD_INFO 15U /* Index for misc_build_info() RPC call */
  37. #define MISC_FUNC_UNIQUE_ID 19U /* Index for misc_unique_id() RPC call */
  38. #define MISC_FUNC_SET_ARI 3U /* Index for misc_set_ari() RPC call */
  39. #define MISC_FUNC_BOOT_STATUS 7U /* Index for misc_boot_status() RPC call */
  40. #define MISC_FUNC_BOOT_DONE 14U /* Index for misc_boot_done() RPC call */
  41. #define MISC_FUNC_OTP_FUSE_READ 11U /* Index for misc_otp_fuse_read() RPC call */
  42. #define MISC_FUNC_OTP_FUSE_WRITE 17U /* Index for misc_otp_fuse_write() RPC call */
  43. #define MISC_FUNC_SET_TEMP 12U /* Index for misc_set_temp() RPC call */
  44. #define MISC_FUNC_GET_TEMP 13U /* Index for misc_get_temp() RPC call */
  45. #define MISC_FUNC_GET_BOOT_DEV 16U /* Index for misc_get_boot_dev() RPC call */
  46. #define MISC_FUNC_GET_BUTTON_STATUS 18U /* Index for misc_get_button_status() RPC call */
  47. /*@}*/
  48. /* Types */
  49. /* Functions */
  50. /*!
  51. * This function dispatches an incoming MISC RPC request.
  52. *
  53. * @param[in] caller_pt caller partition
  54. * @param[in] msg pointer to RPC message
  55. */
  56. void misc_dispatch(sc_rm_pt_t caller_pt, sc_rpc_msg_t *msg);
  57. /*!
  58. * This function translates and dispatches an MISC RPC request.
  59. *
  60. * @param[in] ipc IPC handle
  61. * @param[in] msg pointer to RPC message
  62. */
  63. void misc_xlate(sc_ipc_t ipc, sc_rpc_msg_t *msg);
  64. #endif /* SC_MISC_RPC_H */
  65. /**@}*/