2 * AMD Cryptographic Coprocessor (CCP) driver
4 * Copyright (C) 2013,2016 Advanced Micro Devices, Inc.
6 * Author: Tom Lendacky <thomas.lendacky@amd.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
16 #include <linux/device.h>
17 #include <linux/pci.h>
18 #include <linux/spinlock.h>
19 #include <linux/mutex.h>
20 #include <linux/list.h>
21 #include <linux/wait.h>
22 #include <linux/dmapool.h>
23 #include <linux/hw_random.h>
24 #include <linux/bitops.h>
26 #define MAX_CCP_NAME_LEN 16
27 #define MAX_DMAPOOL_NAME_LEN 32
29 #define MAX_HW_QUEUES 5
30 #define MAX_CMD_QLEN 100
32 #define TRNG_RETRIES 10
34 #define CACHE_NONE 0x00
35 #define CACHE_WB_NO_ALLOC 0xb7
37 /****** Register Mappings ******/
38 #define Q_MASK_REG 0x000
39 #define TRNG_OUT_REG 0x00c
40 #define IRQ_MASK_REG 0x040
41 #define IRQ_STATUS_REG 0x200
43 #define DEL_CMD_Q_JOB 0x124
44 #define DEL_Q_ACTIVE 0x00000200
45 #define DEL_Q_ID_SHIFT 6
47 #define CMD_REQ0 0x180
48 #define CMD_REQ_INCR 0x04
50 #define CMD_Q_STATUS_BASE 0x210
51 #define CMD_Q_INT_STATUS_BASE 0x214
52 #define CMD_Q_STATUS_INCR 0x20
54 #define CMD_Q_CACHE_BASE 0x228
55 #define CMD_Q_CACHE_INC 0x20
57 #define CMD_Q_ERROR(__qs) ((__qs) & 0x0000003f)
58 #define CMD_Q_DEPTH(__qs) (((__qs) >> 12) & 0x0000000f)
60 /****** REQ0 Related Values ******/
61 #define REQ0_WAIT_FOR_WRITE 0x00000004
62 #define REQ0_INT_ON_COMPLETE 0x00000002
63 #define REQ0_STOP_ON_COMPLETE 0x00000001
65 #define REQ0_CMD_Q_SHIFT 9
66 #define REQ0_JOBID_SHIFT 3
68 /****** REQ1 Related Values ******/
69 #define REQ1_PROTECT_SHIFT 27
70 #define REQ1_ENGINE_SHIFT 23
71 #define REQ1_KEY_KSB_SHIFT 2
73 #define REQ1_EOM 0x00000002
74 #define REQ1_INIT 0x00000001
76 /* AES Related Values */
77 #define REQ1_AES_TYPE_SHIFT 21
78 #define REQ1_AES_MODE_SHIFT 18
79 #define REQ1_AES_ACTION_SHIFT 17
80 #define REQ1_AES_CFB_SIZE_SHIFT 10
82 /* XTS-AES Related Values */
83 #define REQ1_XTS_AES_SIZE_SHIFT 10
85 /* SHA Related Values */
86 #define REQ1_SHA_TYPE_SHIFT 21
88 /* RSA Related Values */
89 #define REQ1_RSA_MOD_SIZE_SHIFT 10
91 /* Pass-Through Related Values */
92 #define REQ1_PT_BW_SHIFT 12
93 #define REQ1_PT_BS_SHIFT 10
95 /* ECC Related Values */
96 #define REQ1_ECC_AFFINE_CONVERT 0x00200000
97 #define REQ1_ECC_FUNCTION_SHIFT 18
99 /****** REQ4 Related Values ******/
100 #define REQ4_KSB_SHIFT 18
101 #define REQ4_MEMTYPE_SHIFT 16
103 /****** REQ6 Related Values ******/
104 #define REQ6_MEMTYPE_SHIFT 16
106 /****** Key Storage Block ******/
109 #define KSB_COUNT (KSB_END - KSB_START + 1)
110 #define CCP_KSB_BITS 256
111 #define CCP_KSB_BYTES 32
113 #define CCP_JOBID_MASK 0x0000003f
115 #define CCP_DMAPOOL_MAX_SIZE 64
116 #define CCP_DMAPOOL_ALIGN BIT(5)
118 #define CCP_REVERSE_BUF_SIZE 64
120 #define CCP_AES_KEY_KSB_COUNT 1
121 #define CCP_AES_CTX_KSB_COUNT 1
123 #define CCP_XTS_AES_KEY_KSB_COUNT 1
124 #define CCP_XTS_AES_CTX_KSB_COUNT 1
126 #define CCP_SHA_KSB_COUNT 1
128 #define CCP_RSA_MAX_WIDTH 4096
130 #define CCP_PASSTHRU_BLOCKSIZE 256
131 #define CCP_PASSTHRU_MASKSIZE 32
132 #define CCP_PASSTHRU_KSB_COUNT 1
134 #define CCP_ECC_MODULUS_BYTES 48 /* 384-bits */
135 #define CCP_ECC_MAX_OPERANDS 6
136 #define CCP_ECC_MAX_OUTPUTS 3
137 #define CCP_ECC_SRC_BUF_SIZE 448
138 #define CCP_ECC_DST_BUF_SIZE 192
139 #define CCP_ECC_OPERAND_SIZE 64
140 #define CCP_ECC_OUTPUT_SIZE 64
141 #define CCP_ECC_RESULT_OFFSET 60
142 #define CCP_ECC_RESULT_SUCCESS 0x0001
146 /* Structure for computation functions that are device-specific */
148 int (*perform_aes
)(struct ccp_op
*);
149 int (*perform_xts_aes
)(struct ccp_op
*);
150 int (*perform_sha
)(struct ccp_op
*);
151 int (*perform_rsa
)(struct ccp_op
*);
152 int (*perform_passthru
)(struct ccp_op
*);
153 int (*perform_ecc
)(struct ccp_op
*);
154 int (*init
)(struct ccp_device
*);
155 void (*destroy
)(struct ccp_device
*);
156 irqreturn_t (*irqhandler
)(int, void *);
159 /* Structure to hold CCP version-specific values */
161 unsigned int version
;
162 struct ccp_actions
*perform
;
165 extern struct ccp_vdata ccpv3
;
170 struct ccp_cmd_queue
{
171 struct ccp_device
*ccp
;
173 /* Queue identifier */
177 struct dma_pool
*dma_pool
;
179 /* Queue reserved KSB regions */
183 /* Queue processing thread */
184 struct task_struct
*kthread
;
186 unsigned int suspended
;
188 /* Number of free command slots available */
189 unsigned int free_slots
;
191 /* Interrupt masks */
195 /* Register addresses for queue */
196 void __iomem
*reg_status
;
197 void __iomem
*reg_int_status
;
199 /* Status values from job */
205 /* Interrupt wait queue */
206 wait_queue_head_t int_queue
;
207 unsigned int int_rcvd
;
208 } ____cacheline_aligned
;
211 struct list_head entry
;
213 struct ccp_vdata
*vdata
;
215 char name
[MAX_CCP_NAME_LEN
];
216 char rngname
[MAX_CCP_NAME_LEN
];
221 * Bus specific device information
224 int (*get_irq
)(struct ccp_device
*ccp
);
225 void (*free_irq
)(struct ccp_device
*ccp
);
229 * I/O area used for device communication. The register mapping
230 * starts at an offset into the mapped bar.
231 * The CMD_REQx registers and the Delete_Cmd_Queue_Job register
232 * need to be protected while a command queue thread is accessing
235 struct mutex req_mutex ____cacheline_aligned
;
236 void __iomem
*io_map
;
237 void __iomem
*io_regs
;
240 * Master lists that all cmds are queued on. Because there can be
241 * more than one CCP command queue that can process a cmd a separate
242 * backlog list is neeeded so that the backlog completion call
243 * completes before the cmd is available for execution.
245 spinlock_t cmd_lock ____cacheline_aligned
;
246 unsigned int cmd_count
;
247 struct list_head cmd
;
248 struct list_head backlog
;
251 * The command queues. These represent the queues available on the
252 * CCP that are available for processing cmds
254 struct ccp_cmd_queue cmd_q
[MAX_HW_QUEUES
];
255 unsigned int cmd_q_count
;
258 * Support for the CCP True RNG
261 unsigned int hwrng_retries
;
264 * A counter used to generate job-ids for cmds submitted to the CCP
266 atomic_t current_id ____cacheline_aligned
;
269 * The CCP uses key storage blocks (KSB) to maintain context for certain
270 * operations. To prevent multiple cmds from using the same KSB range
271 * a command queue reserves a KSB range for the duration of the cmd.
272 * Each queue, will however, reserve 2 KSB blocks for operations that
273 * only require single KSB entries (eg. AES context/iv and key) in order
274 * to avoid allocation contention. This will reserve at most 10 KSB
275 * entries, leaving 40 KSB entries available for dynamic allocation.
277 struct mutex ksb_mutex ____cacheline_aligned
;
278 DECLARE_BITMAP(ksb
, KSB_COUNT
);
279 wait_queue_head_t ksb_queue
;
280 unsigned int ksb_avail
;
281 unsigned int ksb_count
;
284 /* Suspend support */
285 unsigned int suspending
;
286 wait_queue_head_t suspend_queue
;
288 /* DMA caching attribute support */
289 unsigned int axcache
;
293 CCP_MEMTYPE_SYSTEM
= 0,
299 struct ccp_dma_info
{
303 enum dma_data_direction dir
;
306 struct ccp_dm_workarea
{
308 struct dma_pool
*dma_pool
;
312 struct ccp_dma_info dma
;
315 struct ccp_sg_workarea
{
316 struct scatterlist
*sg
;
319 struct scatterlist
*dma_sg
;
320 struct device
*dma_dev
;
321 unsigned int dma_count
;
322 enum dma_data_direction dma_dir
;
324 unsigned int sg_used
;
330 struct ccp_sg_workarea sg_wa
;
331 struct ccp_dm_workarea dm_wa
;
335 enum ccp_memtype type
;
337 struct ccp_dma_info dma
;
343 enum ccp_aes_type type
;
344 enum ccp_aes_mode mode
;
345 enum ccp_aes_action action
;
348 struct ccp_xts_aes_op
{
349 enum ccp_aes_action action
;
350 enum ccp_xts_aes_unit_size unit_size
;
354 enum ccp_sha_type type
;
363 struct ccp_passthru_op
{
364 enum ccp_passthru_bitwise bit_mod
;
365 enum ccp_passthru_byteswap byte_swap
;
369 enum ccp_ecc_function function
;
373 struct ccp_cmd_queue
*cmd_q
;
387 struct ccp_aes_op aes
;
388 struct ccp_xts_aes_op xts
;
389 struct ccp_sha_op sha
;
390 struct ccp_rsa_op rsa
;
391 struct ccp_passthru_op passthru
;
392 struct ccp_ecc_op ecc
;
396 static inline u32
ccp_addr_lo(struct ccp_dma_info
*info
)
398 return lower_32_bits(info
->address
+ info
->offset
);
401 static inline u32
ccp_addr_hi(struct ccp_dma_info
*info
)
403 return upper_32_bits(info
->address
+ info
->offset
) & 0x0000ffff;
406 int ccp_pci_init(void);
407 void ccp_pci_exit(void);
409 int ccp_platform_init(void);
410 void ccp_platform_exit(void);
412 void ccp_add_device(struct ccp_device
*ccp
);
413 void ccp_del_device(struct ccp_device
*ccp
);
415 struct ccp_device
*ccp_alloc_struct(struct device
*dev
);
416 bool ccp_queues_suspended(struct ccp_device
*ccp
);
417 int ccp_cmd_queue_thread(void *data
);
419 int ccp_run_cmd(struct ccp_cmd_queue
*cmd_q
, struct ccp_cmd
*cmd
);