Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: GPL-2.0-only */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3)  * AMD Platform Security Processor (PSP) interface driver
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5)  * Copyright (C) 2017-2019 Advanced Micro Devices, Inc.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7)  * Author: Brijesh Singh <brijesh.singh@amd.com>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) #ifndef __PSP_DEV_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) #define __PSP_DEV_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) #include <linux/device.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) #include <linux/list.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) #include <linux/bits.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) #include <linux/interrupt.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) #include "sp-dev.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) #define PSP_CMDRESP_RESP		BIT(31)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) #define PSP_CMDRESP_ERR_MASK		0xffff
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) #define MAX_PSP_NAME_LEN		16
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) extern struct psp_device *psp_master;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) typedef void (*psp_irq_handler_t)(int, void *, unsigned int);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) struct psp_device {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) 	struct list_head entry;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) 	struct psp_vdata *vdata;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33) 	char name[MAX_PSP_NAME_LEN];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 34) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 35) 	struct device *dev;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 36) 	struct sp_device *sp;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 37) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 38) 	void __iomem *io_regs;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 39) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 40) 	psp_irq_handler_t sev_irq_handler;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 41) 	void *sev_irq_data;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 42) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 43) 	psp_irq_handler_t tee_irq_handler;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 44) 	void *tee_irq_data;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 45) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 46) 	void *sev_data;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 47) 	void *tee_data;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 48) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 49) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 50) void psp_set_sev_irq_handler(struct psp_device *psp, psp_irq_handler_t handler,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 51) 			     void *data);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 52) void psp_clear_sev_irq_handler(struct psp_device *psp);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 53) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 54) void psp_set_tee_irq_handler(struct psp_device *psp, psp_irq_handler_t handler,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 55) 			     void *data);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 56) void psp_clear_tee_irq_handler(struct psp_device *psp);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 57) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 58) struct psp_device *psp_get_master_device(void);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 59) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 60) #endif /* __PSP_DEV_H */