aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/xe/xe_uc_debugfs.c
blob: 0a39ec5a6e9991ec7e00d87906390a9e8beac840 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
/*
 * Copyright © 2022 Intel Corporation
 */

#include <drm/drm_debugfs.h>

#include "xe_gt.h"
#include "xe_guc_debugfs.h"
#include "xe_huc_debugfs.h"
#include "xe_macros.h"
#include "xe_uc_debugfs.h"

void xe_uc_debugfs_register(struct xe_uc *uc, struct dentry *parent)
{
	struct dentry *root;

	root = debugfs_create_dir("uc", parent);
	if (IS_ERR(root)) {
		XE_WARN_ON("Create UC directory failed");
		return;
	}

	xe_guc_debugfs_register(&uc->guc, root);
	xe_huc_debugfs_register(&uc->huc, root);
}