Lines Matching refs:uc
17 int (*sanitize)(struct intel_uc *uc);
18 void (*init_fw)(struct intel_uc *uc);
19 void (*fini_fw)(struct intel_uc *uc);
20 int (*init)(struct intel_uc *uc);
21 void (*fini)(struct intel_uc *uc);
22 int (*init_hw)(struct intel_uc *uc);
23 void (*fini_hw)(struct intel_uc *uc);
35 void intel_uc_init_early(struct intel_uc *uc);
36 void intel_uc_driver_late_release(struct intel_uc *uc);
37 void intel_uc_driver_remove(struct intel_uc *uc);
38 void intel_uc_init_mmio(struct intel_uc *uc);
39 void intel_uc_reset_prepare(struct intel_uc *uc);
40 void intel_uc_suspend(struct intel_uc *uc);
41 void intel_uc_runtime_suspend(struct intel_uc *uc);
42 int intel_uc_resume(struct intel_uc *uc);
43 int intel_uc_runtime_resume(struct intel_uc *uc);
67 static inline bool intel_uc_##state##_##func(struct intel_uc *uc) \
69 return intel_##func##_is_##required(&uc->x); \
85 static inline _TYPE intel_uc_##_NAME(struct intel_uc *uc) \
87 if (uc->ops->_OPS) \
88 return uc->ops->_OPS(uc); \