cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

q6core.h (327B)


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