Linux Audio

Check our new training course

Open-source upstreaming

Need help get the support for your hardware in upstream Linux?
Loading...
v6.13.7
 1/* SPDX-License-Identifier: MIT */
 2/*
 3 * Copyright © 2022 Intel Corporation
 4 */
 5
 6#ifndef _XE_GUC_ADS_H_
 7#define _XE_GUC_ADS_H_
 8
 9struct xe_guc_ads;
10
11int xe_guc_ads_init(struct xe_guc_ads *ads);
12int xe_guc_ads_init_post_hwconfig(struct xe_guc_ads *ads);
13void xe_guc_ads_populate(struct xe_guc_ads *ads);
14void xe_guc_ads_populate_minimal(struct xe_guc_ads *ads);
15void xe_guc_ads_populate_post_load(struct xe_guc_ads *ads);
16int xe_guc_ads_scheduler_policy_toggle_reset(struct xe_guc_ads *ads);
17
18#endif
v6.9.4
 1/* SPDX-License-Identifier: MIT */
 2/*
 3 * Copyright © 2022 Intel Corporation
 4 */
 5
 6#ifndef _XE_GUC_ADS_H_
 7#define _XE_GUC_ADS_H_
 8
 9#include "xe_guc_ads_types.h"
10
11int xe_guc_ads_init(struct xe_guc_ads *ads);
12int xe_guc_ads_init_post_hwconfig(struct xe_guc_ads *ads);
13void xe_guc_ads_populate(struct xe_guc_ads *ads);
14void xe_guc_ads_populate_minimal(struct xe_guc_ads *ads);
15void xe_guc_ads_populate_post_load(struct xe_guc_ads *ads);
 
16
17#endif