Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/drivers/crypto/ccp/sev-dev.h
29519 views
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
/*
3
* AMD Platform Security Processor (PSP) interface driver
4
*
5
* Copyright (C) 2017-2019 Advanced Micro Devices, Inc.
6
*
7
* Author: Brijesh Singh <[email protected]>
8
*/
9
10
#ifndef __SEV_DEV_H__
11
#define __SEV_DEV_H__
12
13
#include <linux/device.h>
14
#include <linux/spinlock.h>
15
#include <linux/mutex.h>
16
#include <linux/list.h>
17
#include <linux/wait.h>
18
#include <linux/dmapool.h>
19
#include <linux/hw_random.h>
20
#include <linux/bitops.h>
21
#include <linux/interrupt.h>
22
#include <linux/irqreturn.h>
23
#include <linux/dmaengine.h>
24
#include <linux/psp-sev.h>
25
#include <linux/miscdevice.h>
26
#include <linux/capability.h>
27
28
#define SEV_CMDRESP_CMD GENMASK(26, 16)
29
#define SEV_CMD_COMPLETE BIT(1)
30
#define SEV_CMDRESP_IOC BIT(0)
31
32
struct sev_misc_dev {
33
struct kref refcount;
34
struct miscdevice misc;
35
};
36
37
struct sev_device {
38
struct device *dev;
39
struct psp_device *psp;
40
41
void __iomem *io_regs;
42
43
struct sev_vdata *vdata;
44
45
unsigned int int_rcvd;
46
wait_queue_head_t int_queue;
47
struct sev_misc_dev *misc;
48
49
u8 api_major;
50
u8 api_minor;
51
u8 build;
52
53
void *cmd_buf;
54
void *cmd_buf_backup;
55
bool cmd_buf_active;
56
bool cmd_buf_backup_active;
57
58
bool snp_initialized;
59
60
struct sev_user_data_status sev_plat_status;
61
62
struct sev_user_data_snp_status snp_plat_status;
63
struct snp_feature_info snp_feat_info_0;
64
};
65
66
int sev_dev_init(struct psp_device *psp);
67
void sev_dev_destroy(struct psp_device *psp);
68
69
void sev_pci_init(void);
70
void sev_pci_exit(void);
71
72
struct page *snp_alloc_hv_fixed_pages(unsigned int num_2mb_pages);
73
void snp_free_hv_fixed_pages(struct page *page);
74
75
#endif /* __SEV_DEV_H */
76
77