blob: f796e36d7ec372ade5336e21df33d5beeb2a6a6b [file] [log] [blame]
Tom Lendacky63b94502013-11-12 11:46:16 -06001/*
2 * AMD Cryptographic Coprocessor (CCP) driver
3 *
Gary R Hook3f19ce22016-03-01 13:48:54 -06004 * Copyright (C) 2013,2016 Advanced Micro Devices, Inc.
Tom Lendacky63b94502013-11-12 11:46:16 -06005 *
6 * Author: Tom Lendacky <thomas.lendacky@amd.com>
Gary R Hook956ee212016-07-26 19:09:40 -05007 * Author: Gary R Hook <gary.hook@amd.com>
Tom Lendacky63b94502013-11-12 11:46:16 -06008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/kthread.h>
17#include <linux/sched.h>
18#include <linux/interrupt.h>
19#include <linux/spinlock.h>
Mike Galbraith7587c402016-04-05 15:03:21 +020020#include <linux/spinlock_types.h>
Gary R Hook553d2372016-03-01 13:49:04 -060021#include <linux/types.h>
Tom Lendacky63b94502013-11-12 11:46:16 -060022#include <linux/mutex.h>
23#include <linux/delay.h>
24#include <linux/hw_random.h>
25#include <linux/cpu.h>
Tom Lendackyc4f4b322014-06-05 10:17:57 -050026#ifdef CONFIG_X86
Tom Lendacky63b94502013-11-12 11:46:16 -060027#include <asm/cpu_device_id.h>
Tom Lendackyc4f4b322014-06-05 10:17:57 -050028#endif
Tom Lendacky63b94502013-11-12 11:46:16 -060029#include <linux/ccp.h>
30
31#include "ccp-dev.h"
32
33MODULE_AUTHOR("Tom Lendacky <thomas.lendacky@amd.com>");
34MODULE_LICENSE("GPL");
35MODULE_VERSION("1.0.0");
36MODULE_DESCRIPTION("AMD Cryptographic Coprocessor driver");
37
Tom Lendacky530abd82014-01-24 16:18:14 -060038struct ccp_tasklet_data {
39 struct completion completion;
40 struct ccp_cmd *cmd;
41};
42
Gary R Hook81422ba2016-09-28 11:53:56 -050043/* Human-readable error strings */
44char *ccp_error_codes[] = {
45 "",
46 "ERR 01: ILLEGAL_ENGINE",
47 "ERR 02: ILLEGAL_KEY_ID",
48 "ERR 03: ILLEGAL_FUNCTION_TYPE",
49 "ERR 04: ILLEGAL_FUNCTION_MODE",
50 "ERR 05: ILLEGAL_FUNCTION_ENCRYPT",
51 "ERR 06: ILLEGAL_FUNCTION_SIZE",
52 "ERR 07: Zlib_MISSING_INIT_EOM",
53 "ERR 08: ILLEGAL_FUNCTION_RSVD",
54 "ERR 09: ILLEGAL_BUFFER_LENGTH",
55 "ERR 10: VLSB_FAULT",
56 "ERR 11: ILLEGAL_MEM_ADDR",
57 "ERR 12: ILLEGAL_MEM_SEL",
58 "ERR 13: ILLEGAL_CONTEXT_ID",
59 "ERR 14: ILLEGAL_KEY_ADDR",
60 "ERR 15: 0xF Reserved",
61 "ERR 16: Zlib_ILLEGAL_MULTI_QUEUE",
62 "ERR 17: Zlib_ILLEGAL_JOBID_CHANGE",
63 "ERR 18: CMD_TIMEOUT",
64 "ERR 19: IDMA0_AXI_SLVERR",
65 "ERR 20: IDMA0_AXI_DECERR",
66 "ERR 21: 0x15 Reserved",
67 "ERR 22: IDMA1_AXI_SLAVE_FAULT",
68 "ERR 23: IDMA1_AIXI_DECERR",
69 "ERR 24: 0x18 Reserved",
70 "ERR 25: ZLIBVHB_AXI_SLVERR",
71 "ERR 26: ZLIBVHB_AXI_DECERR",
72 "ERR 27: 0x1B Reserved",
73 "ERR 27: ZLIB_UNEXPECTED_EOM",
74 "ERR 27: ZLIB_EXTRA_DATA",
75 "ERR 30: ZLIB_BTYPE",
76 "ERR 31: ZLIB_UNDEFINED_SYMBOL",
77 "ERR 32: ZLIB_UNDEFINED_DISTANCE_S",
78 "ERR 33: ZLIB_CODE_LENGTH_SYMBOL",
79 "ERR 34: ZLIB _VHB_ILLEGAL_FETCH",
80 "ERR 35: ZLIB_UNCOMPRESSED_LEN",
81 "ERR 36: ZLIB_LIMIT_REACHED",
82 "ERR 37: ZLIB_CHECKSUM_MISMATCH0",
83 "ERR 38: ODMA0_AXI_SLVERR",
84 "ERR 39: ODMA0_AXI_DECERR",
85 "ERR 40: 0x28 Reserved",
86 "ERR 41: ODMA1_AXI_SLVERR",
87 "ERR 42: ODMA1_AXI_DECERR",
88 "ERR 43: LSB_PARITY_ERR",
89};
90
91void ccp_log_error(struct ccp_device *d, int e)
92{
93 dev_err(d->dev, "CCP error: %s (0x%x)\n", ccp_error_codes[e], e);
94}
95
Gary R Hook553d2372016-03-01 13:49:04 -060096/* List of CCPs, CCP count, read-write access lock, and access functions
97 *
98 * Lock structure: get ccp_unit_lock for reading whenever we need to
99 * examine the CCP list. While holding it for reading we can acquire
100 * the RR lock to update the round-robin next-CCP pointer. The unit lock
101 * must be acquired before the RR lock.
102 *
103 * If the unit-lock is acquired for writing, we have total control over
104 * the list, so there's no value in getting the RR lock.
105 */
106static DEFINE_RWLOCK(ccp_unit_lock);
107static LIST_HEAD(ccp_units);
108
109/* Round-robin counter */
Gary R Hook03a6f292016-03-16 09:02:26 -0500110static DEFINE_SPINLOCK(ccp_rr_lock);
Gary R Hook553d2372016-03-01 13:49:04 -0600111static struct ccp_device *ccp_rr;
112
113/* Ever-increasing value to produce unique unit numbers */
114static atomic_t ccp_unit_ordinal;
Wei Yongjundabc7902016-08-12 00:00:09 +0000115static unsigned int ccp_increment_unit_ordinal(void)
Tom Lendacky63b94502013-11-12 11:46:16 -0600116{
Gary R Hook553d2372016-03-01 13:49:04 -0600117 return atomic_inc_return(&ccp_unit_ordinal);
Tom Lendacky63b94502013-11-12 11:46:16 -0600118}
119
Gary R Hookea0375a2016-03-01 13:49:25 -0600120/**
121 * ccp_add_device - add a CCP device to the list
122 *
123 * @ccp: ccp_device struct pointer
124 *
Gary R Hook553d2372016-03-01 13:49:04 -0600125 * Put this CCP on the unit list, which makes it available
126 * for use.
Gary R Hookea0375a2016-03-01 13:49:25 -0600127 *
128 * Returns zero if a CCP device is present, -ENODEV otherwise.
Gary R Hook553d2372016-03-01 13:49:04 -0600129 */
Gary R Hookea0375a2016-03-01 13:49:25 -0600130void ccp_add_device(struct ccp_device *ccp)
Tom Lendacky63b94502013-11-12 11:46:16 -0600131{
Gary R Hook553d2372016-03-01 13:49:04 -0600132 unsigned long flags;
133
134 write_lock_irqsave(&ccp_unit_lock, flags);
135 list_add_tail(&ccp->entry, &ccp_units);
136 if (!ccp_rr)
137 /* We already have the list lock (we're first) so this
138 * pointer can't change on us. Set its initial value.
139 */
140 ccp_rr = ccp;
141 write_unlock_irqrestore(&ccp_unit_lock, flags);
Tom Lendacky63b94502013-11-12 11:46:16 -0600142}
143
Gary R Hookea0375a2016-03-01 13:49:25 -0600144/**
145 * ccp_del_device - remove a CCP device from the list
146 *
147 * @ccp: ccp_device struct pointer
148 *
149 * Remove this unit from the list of devices. If the next device
Gary R Hook553d2372016-03-01 13:49:04 -0600150 * up for use is this one, adjust the pointer. If this is the last
151 * device, NULL the pointer.
152 */
Gary R Hookea0375a2016-03-01 13:49:25 -0600153void ccp_del_device(struct ccp_device *ccp)
Tom Lendacky63b94502013-11-12 11:46:16 -0600154{
Gary R Hook553d2372016-03-01 13:49:04 -0600155 unsigned long flags;
156
157 write_lock_irqsave(&ccp_unit_lock, flags);
158 if (ccp_rr == ccp) {
159 /* ccp_unit_lock is read/write; any read access
160 * will be suspended while we make changes to the
161 * list and RR pointer.
162 */
163 if (list_is_last(&ccp_rr->entry, &ccp_units))
164 ccp_rr = list_first_entry(&ccp_units, struct ccp_device,
165 entry);
166 else
167 ccp_rr = list_next_entry(ccp_rr, entry);
168 }
169 list_del(&ccp->entry);
170 if (list_empty(&ccp_units))
171 ccp_rr = NULL;
172 write_unlock_irqrestore(&ccp_unit_lock, flags);
173}
174
Gary R Hook084935b2016-07-26 19:10:31 -0500175
176
177int ccp_register_rng(struct ccp_device *ccp)
178{
179 int ret = 0;
180
181 dev_dbg(ccp->dev, "Registering RNG...\n");
182 /* Register an RNG */
183 ccp->hwrng.name = ccp->rngname;
184 ccp->hwrng.read = ccp_trng_read;
185 ret = hwrng_register(&ccp->hwrng);
186 if (ret)
187 dev_err(ccp->dev, "error registering hwrng (%d)\n", ret);
188
189 return ret;
190}
191
192void ccp_unregister_rng(struct ccp_device *ccp)
193{
194 if (ccp->hwrng.name)
195 hwrng_unregister(&ccp->hwrng);
196}
197
Gary R Hook553d2372016-03-01 13:49:04 -0600198static struct ccp_device *ccp_get_device(void)
199{
200 unsigned long flags;
201 struct ccp_device *dp = NULL;
202
203 /* We round-robin through the unit list.
204 * The (ccp_rr) pointer refers to the next unit to use.
205 */
206 read_lock_irqsave(&ccp_unit_lock, flags);
207 if (!list_empty(&ccp_units)) {
Gary R Hook03a6f292016-03-16 09:02:26 -0500208 spin_lock(&ccp_rr_lock);
Gary R Hook553d2372016-03-01 13:49:04 -0600209 dp = ccp_rr;
210 if (list_is_last(&ccp_rr->entry, &ccp_units))
211 ccp_rr = list_first_entry(&ccp_units, struct ccp_device,
212 entry);
213 else
214 ccp_rr = list_next_entry(ccp_rr, entry);
Gary R Hook03a6f292016-03-16 09:02:26 -0500215 spin_unlock(&ccp_rr_lock);
Gary R Hook553d2372016-03-01 13:49:04 -0600216 }
217 read_unlock_irqrestore(&ccp_unit_lock, flags);
218
219 return dp;
Tom Lendacky63b94502013-11-12 11:46:16 -0600220}
221
222/**
Tom Lendackyc9f21cb2014-09-05 10:31:09 -0500223 * ccp_present - check if a CCP device is present
224 *
225 * Returns zero if a CCP device is present, -ENODEV otherwise.
226 */
227int ccp_present(void)
228{
Gary R Hook553d2372016-03-01 13:49:04 -0600229 unsigned long flags;
230 int ret;
Tom Lendackyc9f21cb2014-09-05 10:31:09 -0500231
Gary R Hook553d2372016-03-01 13:49:04 -0600232 read_lock_irqsave(&ccp_unit_lock, flags);
233 ret = list_empty(&ccp_units);
234 read_unlock_irqrestore(&ccp_unit_lock, flags);
235
236 return ret ? -ENODEV : 0;
Tom Lendackyc9f21cb2014-09-05 10:31:09 -0500237}
238EXPORT_SYMBOL_GPL(ccp_present);
239
240/**
Gary R Hookc7019c42016-03-01 13:49:15 -0600241 * ccp_version - get the version of the CCP device
242 *
243 * Returns the version from the first unit on the list;
244 * otherwise a zero if no CCP device is present
245 */
246unsigned int ccp_version(void)
247{
248 struct ccp_device *dp;
249 unsigned long flags;
250 int ret = 0;
251
252 read_lock_irqsave(&ccp_unit_lock, flags);
253 if (!list_empty(&ccp_units)) {
254 dp = list_first_entry(&ccp_units, struct ccp_device, entry);
255 ret = dp->vdata->version;
256 }
257 read_unlock_irqrestore(&ccp_unit_lock, flags);
258
259 return ret;
260}
261EXPORT_SYMBOL_GPL(ccp_version);
262
263/**
Tom Lendacky63b94502013-11-12 11:46:16 -0600264 * ccp_enqueue_cmd - queue an operation for processing by the CCP
265 *
266 * @cmd: ccp_cmd struct to be processed
267 *
268 * Queue a cmd to be processed by the CCP. If queueing the cmd
269 * would exceed the defined length of the cmd queue the cmd will
270 * only be queued if the CCP_CMD_MAY_BACKLOG flag is set and will
271 * result in a return code of -EBUSY.
272 *
273 * The callback routine specified in the ccp_cmd struct will be
274 * called to notify the caller of completion (if the cmd was not
275 * backlogged) or advancement out of the backlog. If the cmd has
276 * advanced out of the backlog the "err" value of the callback
277 * will be -EINPROGRESS. Any other "err" value during callback is
278 * the result of the operation.
279 *
280 * The cmd has been successfully queued if:
281 * the return code is -EINPROGRESS or
282 * the return code is -EBUSY and CCP_CMD_MAY_BACKLOG flag is set
283 */
284int ccp_enqueue_cmd(struct ccp_cmd *cmd)
285{
Gary R Hookb1ef9da2017-03-10 12:28:18 -0600286 struct ccp_device *ccp;
Tom Lendacky63b94502013-11-12 11:46:16 -0600287 unsigned long flags;
288 unsigned int i;
289 int ret;
290
Gary R Hookb1ef9da2017-03-10 12:28:18 -0600291 /* Some commands might need to be sent to a specific device */
292 ccp = cmd->ccp ? cmd->ccp : ccp_get_device();
293
Tom Lendacky63b94502013-11-12 11:46:16 -0600294 if (!ccp)
295 return -ENODEV;
296
297 /* Caller must supply a callback routine */
298 if (!cmd->callback)
299 return -EINVAL;
300
301 cmd->ccp = ccp;
302
303 spin_lock_irqsave(&ccp->cmd_lock, flags);
304
305 i = ccp->cmd_q_count;
306
307 if (ccp->cmd_count >= MAX_CMD_QLEN) {
308 ret = -EBUSY;
309 if (cmd->flags & CCP_CMD_MAY_BACKLOG)
310 list_add_tail(&cmd->entry, &ccp->backlog);
311 } else {
312 ret = -EINPROGRESS;
313 ccp->cmd_count++;
314 list_add_tail(&cmd->entry, &ccp->cmd);
315
316 /* Find an idle queue */
317 if (!ccp->suspending) {
318 for (i = 0; i < ccp->cmd_q_count; i++) {
319 if (ccp->cmd_q[i].active)
320 continue;
321
322 break;
323 }
324 }
325 }
326
327 spin_unlock_irqrestore(&ccp->cmd_lock, flags);
328
329 /* If we found an idle queue, wake it up */
330 if (i < ccp->cmd_q_count)
331 wake_up_process(ccp->cmd_q[i].kthread);
332
333 return ret;
334}
335EXPORT_SYMBOL_GPL(ccp_enqueue_cmd);
336
337static void ccp_do_cmd_backlog(struct work_struct *work)
338{
339 struct ccp_cmd *cmd = container_of(work, struct ccp_cmd, work);
340 struct ccp_device *ccp = cmd->ccp;
341 unsigned long flags;
342 unsigned int i;
343
344 cmd->callback(cmd->data, -EINPROGRESS);
345
346 spin_lock_irqsave(&ccp->cmd_lock, flags);
347
348 ccp->cmd_count++;
349 list_add_tail(&cmd->entry, &ccp->cmd);
350
351 /* Find an idle queue */
352 for (i = 0; i < ccp->cmd_q_count; i++) {
353 if (ccp->cmd_q[i].active)
354 continue;
355
356 break;
357 }
358
359 spin_unlock_irqrestore(&ccp->cmd_lock, flags);
360
361 /* If we found an idle queue, wake it up */
362 if (i < ccp->cmd_q_count)
363 wake_up_process(ccp->cmd_q[i].kthread);
364}
365
366static struct ccp_cmd *ccp_dequeue_cmd(struct ccp_cmd_queue *cmd_q)
367{
368 struct ccp_device *ccp = cmd_q->ccp;
369 struct ccp_cmd *cmd = NULL;
370 struct ccp_cmd *backlog = NULL;
371 unsigned long flags;
372
373 spin_lock_irqsave(&ccp->cmd_lock, flags);
374
375 cmd_q->active = 0;
376
377 if (ccp->suspending) {
378 cmd_q->suspended = 1;
379
380 spin_unlock_irqrestore(&ccp->cmd_lock, flags);
381 wake_up_interruptible(&ccp->suspend_queue);
382
383 return NULL;
384 }
385
386 if (ccp->cmd_count) {
387 cmd_q->active = 1;
388
389 cmd = list_first_entry(&ccp->cmd, struct ccp_cmd, entry);
390 list_del(&cmd->entry);
391
392 ccp->cmd_count--;
393 }
394
395 if (!list_empty(&ccp->backlog)) {
396 backlog = list_first_entry(&ccp->backlog, struct ccp_cmd,
397 entry);
398 list_del(&backlog->entry);
399 }
400
401 spin_unlock_irqrestore(&ccp->cmd_lock, flags);
402
403 if (backlog) {
404 INIT_WORK(&backlog->work, ccp_do_cmd_backlog);
405 schedule_work(&backlog->work);
406 }
407
408 return cmd;
409}
410
Tom Lendacky530abd82014-01-24 16:18:14 -0600411static void ccp_do_cmd_complete(unsigned long data)
Tom Lendacky63b94502013-11-12 11:46:16 -0600412{
Tom Lendacky530abd82014-01-24 16:18:14 -0600413 struct ccp_tasklet_data *tdata = (struct ccp_tasklet_data *)data;
414 struct ccp_cmd *cmd = tdata->cmd;
Tom Lendacky63b94502013-11-12 11:46:16 -0600415
416 cmd->callback(cmd->data, cmd->ret);
Tom Lendacky530abd82014-01-24 16:18:14 -0600417 complete(&tdata->completion);
Tom Lendacky63b94502013-11-12 11:46:16 -0600418}
419
Gary R Hookea0375a2016-03-01 13:49:25 -0600420/**
421 * ccp_cmd_queue_thread - create a kernel thread to manage a CCP queue
422 *
423 * @data: thread-specific data
424 */
425int ccp_cmd_queue_thread(void *data)
Tom Lendacky63b94502013-11-12 11:46:16 -0600426{
427 struct ccp_cmd_queue *cmd_q = (struct ccp_cmd_queue *)data;
428 struct ccp_cmd *cmd;
Tom Lendacky530abd82014-01-24 16:18:14 -0600429 struct ccp_tasklet_data tdata;
430 struct tasklet_struct tasklet;
431
432 tasklet_init(&tasklet, ccp_do_cmd_complete, (unsigned long)&tdata);
Tom Lendacky63b94502013-11-12 11:46:16 -0600433
434 set_current_state(TASK_INTERRUPTIBLE);
435 while (!kthread_should_stop()) {
436 schedule();
437
438 set_current_state(TASK_INTERRUPTIBLE);
439
440 cmd = ccp_dequeue_cmd(cmd_q);
441 if (!cmd)
442 continue;
443
444 __set_current_state(TASK_RUNNING);
445
446 /* Execute the command */
447 cmd->ret = ccp_run_cmd(cmd_q, cmd);
448
449 /* Schedule the completion callback */
Tom Lendacky530abd82014-01-24 16:18:14 -0600450 tdata.cmd = cmd;
451 init_completion(&tdata.completion);
452 tasklet_schedule(&tasklet);
453 wait_for_completion(&tdata.completion);
Tom Lendacky63b94502013-11-12 11:46:16 -0600454 }
455
456 __set_current_state(TASK_RUNNING);
457
458 return 0;
459}
460
Tom Lendacky63b94502013-11-12 11:46:16 -0600461/**
462 * ccp_alloc_struct - allocate and initialize the ccp_device struct
463 *
464 * @dev: device struct of the CCP
465 */
466struct ccp_device *ccp_alloc_struct(struct device *dev)
467{
468 struct ccp_device *ccp;
469
Tom Lendackybe03a3a2015-02-03 13:07:23 -0600470 ccp = devm_kzalloc(dev, sizeof(*ccp), GFP_KERNEL);
Tom Lendacky8db88462015-02-03 13:07:05 -0600471 if (!ccp)
Tom Lendacky63b94502013-11-12 11:46:16 -0600472 return NULL;
Tom Lendacky63b94502013-11-12 11:46:16 -0600473 ccp->dev = dev;
474
475 INIT_LIST_HEAD(&ccp->cmd);
476 INIT_LIST_HEAD(&ccp->backlog);
477
478 spin_lock_init(&ccp->cmd_lock);
479 mutex_init(&ccp->req_mutex);
Gary R Hook956ee212016-07-26 19:09:40 -0500480 mutex_init(&ccp->sb_mutex);
481 ccp->sb_count = KSB_COUNT;
482 ccp->sb_start = 0;
Tom Lendacky63b94502013-11-12 11:46:16 -0600483
Gary R Hook553d2372016-03-01 13:49:04 -0600484 ccp->ord = ccp_increment_unit_ordinal();
485 snprintf(ccp->name, MAX_CCP_NAME_LEN, "ccp-%u", ccp->ord);
486 snprintf(ccp->rngname, MAX_CCP_NAME_LEN, "ccp-%u-rng", ccp->ord);
487
Tom Lendacky63b94502013-11-12 11:46:16 -0600488 return ccp;
489}
490
Gary R Hook8256e682016-07-26 19:10:02 -0500491int ccp_trng_read(struct hwrng *rng, void *data, size_t max, bool wait)
492{
493 struct ccp_device *ccp = container_of(rng, struct ccp_device, hwrng);
494 u32 trng_value;
495 int len = min_t(int, sizeof(trng_value), max);
496
497 /* Locking is provided by the caller so we can update device
498 * hwrng-related fields safely
499 */
500 trng_value = ioread32(ccp->io_regs + TRNG_OUT_REG);
501 if (!trng_value) {
502 /* Zero is returned if not data is available or if a
503 * bad-entropy error is present. Assume an error if
504 * we exceed TRNG_RETRIES reads of zero.
505 */
506 if (ccp->hwrng_retries++ > TRNG_RETRIES)
507 return -EIO;
508
509 return 0;
510 }
511
512 /* Reset the counter and save the rng value */
513 ccp->hwrng_retries = 0;
514 memcpy(data, &trng_value, len);
515
516 return len;
517}
518
Tom Lendacky63b94502013-11-12 11:46:16 -0600519#ifdef CONFIG_PM
520bool ccp_queues_suspended(struct ccp_device *ccp)
521{
522 unsigned int suspended = 0;
523 unsigned long flags;
524 unsigned int i;
525
526 spin_lock_irqsave(&ccp->cmd_lock, flags);
527
528 for (i = 0; i < ccp->cmd_q_count; i++)
529 if (ccp->cmd_q[i].suspended)
530 suspended++;
531
532 spin_unlock_irqrestore(&ccp->cmd_lock, flags);
533
534 return ccp->cmd_q_count == suspended;
535}
536#endif
537
Tom Lendacky63b94502013-11-12 11:46:16 -0600538static int __init ccp_mod_init(void)
539{
Tom Lendackyc4f4b322014-06-05 10:17:57 -0500540#ifdef CONFIG_X86
Tom Lendackydb34cf92014-01-06 13:34:29 -0600541 int ret;
Tom Lendacky63b94502013-11-12 11:46:16 -0600542
Gary R Hook3f19ce22016-03-01 13:48:54 -0600543 ret = ccp_pci_init();
544 if (ret)
545 return ret;
546
547 /* Don't leave the driver loaded if init failed */
Gary R Hook553d2372016-03-01 13:49:04 -0600548 if (ccp_present() != 0) {
Gary R Hook3f19ce22016-03-01 13:48:54 -0600549 ccp_pci_exit();
Tom Lendacky63b94502013-11-12 11:46:16 -0600550 return -ENODEV;
Fengguang Wud1dd2062013-12-09 20:08:19 +0800551 }
Gary R Hook3f19ce22016-03-01 13:48:54 -0600552
553 return 0;
Tom Lendackyc4f4b322014-06-05 10:17:57 -0500554#endif
555
556#ifdef CONFIG_ARM64
557 int ret;
558
559 ret = ccp_platform_init();
560 if (ret)
561 return ret;
562
563 /* Don't leave the driver loaded if init failed */
Gary R Hook553d2372016-03-01 13:49:04 -0600564 if (ccp_present() != 0) {
Tom Lendackyc4f4b322014-06-05 10:17:57 -0500565 ccp_platform_exit();
566 return -ENODEV;
567 }
568
569 return 0;
570#endif
Tom Lendacky63b94502013-11-12 11:46:16 -0600571
572 return -ENODEV;
573}
574
575static void __exit ccp_mod_exit(void)
576{
Tom Lendackyc4f4b322014-06-05 10:17:57 -0500577#ifdef CONFIG_X86
Gary R Hook3f19ce22016-03-01 13:48:54 -0600578 ccp_pci_exit();
Tom Lendackyc4f4b322014-06-05 10:17:57 -0500579#endif
580
581#ifdef CONFIG_ARM64
582 ccp_platform_exit();
583#endif
Tom Lendacky63b94502013-11-12 11:46:16 -0600584}
585
586module_init(ccp_mod_init);
587module_exit(ccp_mod_exit);