Lines Matching refs:uc
20 struct intel_uc *uc = m->private; in uc_usage_show() local
24 str_yes_no(intel_uc_supports_guc(uc)), in uc_usage_show()
25 str_yes_no(intel_uc_wants_guc(uc)), in uc_usage_show()
26 str_yes_no(intel_uc_uses_guc(uc))); in uc_usage_show()
28 str_yes_no(intel_uc_supports_huc(uc)), in uc_usage_show()
29 str_yes_no(intel_uc_wants_huc(uc)), in uc_usage_show()
30 str_yes_no(intel_uc_uses_huc(uc))); in uc_usage_show()
32 str_yes_no(intel_uc_supports_guc_submission(uc)), in uc_usage_show()
33 str_yes_no(intel_uc_wants_guc_submission(uc)), in uc_usage_show()
34 str_yes_no(intel_uc_uses_guc_submission(uc))); in uc_usage_show()
40 void intel_uc_debugfs_register(struct intel_uc *uc, struct dentry *gt_root) in intel_uc_debugfs_register() argument
51 if (!intel_uc_supports_guc(uc)) in intel_uc_debugfs_register()
58 uc->guc.dbgfs_node = root; in intel_uc_debugfs_register()
60 intel_gt_debugfs_register_files(root, files, ARRAY_SIZE(files), uc); in intel_uc_debugfs_register()
62 intel_gsc_uc_debugfs_register(&uc->gsc, root); in intel_uc_debugfs_register()
63 intel_guc_debugfs_register(&uc->guc, root); in intel_uc_debugfs_register()
64 intel_huc_debugfs_register(&uc->huc, root); in intel_uc_debugfs_register()