q6core.h 327 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __Q6CORE_H__
  3. #define __Q6CORE_H__
  4. struct q6core_svc_api_info {
  5. uint32_t service_id;
  6. uint32_t api_version;
  7. uint32_t api_branch_version;
  8. };
  9. bool q6core_is_adsp_ready(void);
  10. int q6core_get_svc_api_info(int svc_id, struct q6core_svc_api_info *ainfo);
  11. #endif /* __Q6CORE_H__ */