Lines Matching refs:uc
19 int (*sanitize)(struct intel_uc *uc);
20 void (*init_fw)(struct intel_uc *uc);
21 void (*fini_fw)(struct intel_uc *uc);
22 int (*init)(struct intel_uc *uc);
23 void (*fini)(struct intel_uc *uc);
24 int (*init_hw)(struct intel_uc *uc);
25 void (*fini_hw)(struct intel_uc *uc);
39 void intel_uc_init_early(struct intel_uc *uc);
40 void intel_uc_init_late(struct intel_uc *uc);
41 void intel_uc_driver_late_release(struct intel_uc *uc);
42 void intel_uc_driver_remove(struct intel_uc *uc);
43 void intel_uc_init_mmio(struct intel_uc *uc);
44 void intel_uc_reset_prepare(struct intel_uc *uc);
45 void intel_uc_reset(struct intel_uc *uc, intel_engine_mask_t stalled);
46 void intel_uc_reset_finish(struct intel_uc *uc);
47 void intel_uc_cancel_requests(struct intel_uc *uc);
48 void intel_uc_suspend(struct intel_uc *uc);
49 void intel_uc_runtime_suspend(struct intel_uc *uc);
50 int intel_uc_resume(struct intel_uc *uc);
51 int intel_uc_runtime_resume(struct intel_uc *uc);
75 static inline bool intel_uc_##state##_##func(struct intel_uc *uc) \
77 return intel_##func##_is_##required(&uc->x); \
94 static inline int intel_uc_wait_for_idle(struct intel_uc *uc, long timeout) in intel_uc_wait_for_idle() argument
96 return intel_guc_wait_for_idle(&uc->guc, timeout); in intel_uc_wait_for_idle()
100 static inline _TYPE intel_uc_##_NAME(struct intel_uc *uc) \
102 if (uc->ops->_OPS) \
103 return uc->ops->_OPS(uc); \