ipa_mhi_proxy.h 953 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2018, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef __IMP_H_
  6. #define __IMP_H_
  7. #ifdef CONFIG_IPA3_MHI_PROXY
  8. #include "ipa_qmi_service.h"
  9. void imp_handle_modem_ready(void);
  10. struct ipa_mhi_alloc_channel_resp_msg_v01 *imp_handle_allocate_channel_req(
  11. struct ipa_mhi_alloc_channel_req_msg_v01 *req);
  12. struct ipa_mhi_clk_vote_resp_msg_v01 *imp_handle_vote_req(bool vote);
  13. void imp_handle_modem_shutdown(void);
  14. #else /* CONFIG_IPA3_MHI_PROXY */
  15. static inline void imp_handle_modem_ready(void)
  16. {
  17. }
  18. static inline struct ipa_mhi_alloc_channel_resp_msg_v01
  19. *imp_handle_allocate_channel_req(
  20. struct ipa_mhi_alloc_channel_req_msg_v01 *req)
  21. {
  22. return NULL;
  23. }
  24. static inline struct ipa_mhi_clk_vote_resp_msg_v01
  25. *imp_handle_vote_req(bool vote)
  26. {
  27. return NULL;
  28. }
  29. static inline void imp_handle_modem_shutdown(void)
  30. {
  31. }
  32. #endif /* CONFIG_IPA3_MHI_PROXY */
  33. #endif /* __IMP_H_ */