summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/xe/xe_uc_types.h
blob: 9924e4484866356f7c726e5f0377c9160b2a3913 (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
27
28
/* SPDX-License-Identifier: MIT */
/*
 * Copyright © 2022 Intel Corporation
 */

#ifndef _XE_UC_TYPES_H_
#define _XE_UC_TYPES_H_

#include "xe_gsc_types.h"
#include "xe_guc_types.h"
#include "xe_huc_types.h"
#include "xe_wopcm_types.h"

/**
 * struct xe_uc - XE micro controllers
 */
struct xe_uc {
	/** @guc: Graphics micro controller */
	struct xe_guc guc;
	/** @huc: HuC */
	struct xe_huc huc;
	/** @gsc: Graphics Security Controller */
	struct xe_gsc gsc;
	/** @wopcm: WOPCM */
	struct xe_wopcm wopcm;
};

#endif