Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
07db5bd
Breadcrumbs
linux
/
drivers
/
gpu
/
drm
/
i915
/
pxp
/
intel_pxp_cmd_interface_43.h
Blame
Blame
Latest commit
History
History
26 lines (20 loc) · 642 Bytes
Breadcrumbs
linux
/
drivers
/
gpu
/
drm
/
i915
/
pxp
/
intel_pxp_cmd_interface_43.h
Top
File metadata and controls
Code
Blame
26 lines (20 loc) · 642 Bytes
Raw
/* SPDX-License-Identifier: MIT */ /* * Copyright(c) 2022, Intel Corporation. All rights reserved. */ #ifndef __INTEL_PXP_FW_INTERFACE_43_H__ #define __INTEL_PXP_FW_INTERFACE_43_H__ #include <linux/types.h> #include "intel_pxp_cmd_interface_cmn.h" /* PXP-Cmd-Op definitions */ #define PXP43_CMDID_START_HUC_AUTH 0x0000003A /* PXP-Input-Packet: HUC-Authentication */ struct pxp43_start_huc_auth_in { struct pxp_cmd_header header; __le64 huc_base_address; } __packed; /* PXP-Output-Packet: HUC-Authentication */ struct pxp43_start_huc_auth_out { struct pxp_cmd_header header; } __packed; #endif /* __INTEL_PXP_FW_INTERFACE_43_H__ */
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
You can’t perform that action at this time.