summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/xe/xe_huc_types.h
blob: cfbaa5e0dfcac6f678510e3bfa5695027ef1f3c3 (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
/* SPDX-License-Identifier: MIT */
/*
 * Copyright © 2022 Intel Corporation
 */

#ifndef _XE_HUC_TYPES_H_
#define _XE_HUC_TYPES_H_

#include "xe_uc_fw_types.h"

struct xe_bo;

/**
 * struct xe_huc - HuC
 */
struct xe_huc {
	/** @fw: Generic uC firmware management */
	struct xe_uc_fw fw;

	/** @gsc_pkt: bo to store the packet for auth via GSC */
	struct xe_bo *gsc_pkt;
};

#endif