2 * AMD Cryptographic Coprocessor (CCP) driver
4 * Copyright (C) 2014 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.
13 #include <linux/module.h>
14 #include <linux/kernel.h>
15 #include <linux/device.h>
16 #include <linux/platform_device.h>
17 #include <linux/ioport.h>
18 #include <linux/dma-mapping.h>
19 #include <linux/kthread.h>
20 #include <linux/sched.h>
21 #include <linux/interrupt.h>
22 #include <linux/spinlock.h>
23 #include <linux/delay.h>
24 #include <linux/ccp.h>
26 #include <linux/of_address.h>
27 #include <linux/acpi.h>
35 static int ccp_get_irq(struct ccp_device
*ccp
)
37 struct device
*dev
= ccp
->dev
;
38 struct platform_device
*pdev
= container_of(dev
,
39 struct platform_device
, dev
);
42 ret
= platform_get_irq(pdev
, 0);
47 ret
= request_irq(ccp
->irq
, ccp_irq_handler
, 0, "ccp", dev
);
49 dev_notice(dev
, "unable to allocate IRQ (%d)\n", ret
);
56 static int ccp_get_irqs(struct ccp_device
*ccp
)
58 struct device
*dev
= ccp
->dev
;
61 ret
= ccp_get_irq(ccp
);
65 /* Couldn't get an interrupt */
66 dev_notice(dev
, "could not enable interrupts (%d)\n", ret
);
71 static void ccp_free_irqs(struct ccp_device
*ccp
)
73 struct device
*dev
= ccp
->dev
;
75 free_irq(ccp
->irq
, dev
);
78 static struct resource
*ccp_find_mmio_area(struct ccp_device
*ccp
)
80 struct device
*dev
= ccp
->dev
;
81 struct platform_device
*pdev
= container_of(dev
,
82 struct platform_device
, dev
);
85 ior
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
86 if (ior
&& (resource_size(ior
) >= 0x800))
92 static int ccp_platform_probe(struct platform_device
*pdev
)
94 struct ccp_device
*ccp
;
95 struct ccp_platform
*ccp_platform
;
96 struct device
*dev
= &pdev
->dev
;
97 enum dev_dma_attr attr
;
102 ccp
= ccp_alloc_struct(dev
);
106 ccp_platform
= devm_kzalloc(dev
, sizeof(*ccp_platform
), GFP_KERNEL
);
110 ccp
->dev_specific
= ccp_platform
;
111 ccp
->get_irq
= ccp_get_irqs
;
112 ccp
->free_irq
= ccp_free_irqs
;
114 ior
= ccp_find_mmio_area(ccp
);
115 ccp
->io_map
= devm_ioremap_resource(dev
, ior
);
116 if (IS_ERR(ccp
->io_map
)) {
117 ret
= PTR_ERR(ccp
->io_map
);
120 ccp
->io_regs
= ccp
->io_map
;
122 attr
= device_get_dma_attr(dev
);
123 if (attr
== DEV_DMA_NOT_SUPPORTED
) {
124 dev_err(dev
, "DMA is not supported");
128 ccp_platform
->coherent
= (attr
== DEV_DMA_COHERENT
);
129 if (ccp_platform
->coherent
)
130 ccp
->axcache
= CACHE_WB_NO_ALLOC
;
132 ccp
->axcache
= CACHE_NONE
;
134 ret
= dma_set_mask_and_coherent(dev
, DMA_BIT_MASK(48));
136 dev_err(dev
, "dma_set_mask_and_coherent failed (%d)\n", ret
);
140 dev_set_drvdata(dev
, ccp
);
146 dev_notice(dev
, "enabled\n");
151 dev_notice(dev
, "initialization failed\n");
155 static int ccp_platform_remove(struct platform_device
*pdev
)
157 struct device
*dev
= &pdev
->dev
;
158 struct ccp_device
*ccp
= dev_get_drvdata(dev
);
162 dev_notice(dev
, "disabled\n");
168 static int ccp_platform_suspend(struct platform_device
*pdev
,
171 struct device
*dev
= &pdev
->dev
;
172 struct ccp_device
*ccp
= dev_get_drvdata(dev
);
176 spin_lock_irqsave(&ccp
->cmd_lock
, flags
);
180 /* Wake all the queue kthreads to prepare for suspend */
181 for (i
= 0; i
< ccp
->cmd_q_count
; i
++)
182 wake_up_process(ccp
->cmd_q
[i
].kthread
);
184 spin_unlock_irqrestore(&ccp
->cmd_lock
, flags
);
186 /* Wait for all queue kthreads to say they're done */
187 while (!ccp_queues_suspended(ccp
))
188 wait_event_interruptible(ccp
->suspend_queue
,
189 ccp_queues_suspended(ccp
));
194 static int ccp_platform_resume(struct platform_device
*pdev
)
196 struct device
*dev
= &pdev
->dev
;
197 struct ccp_device
*ccp
= dev_get_drvdata(dev
);
201 spin_lock_irqsave(&ccp
->cmd_lock
, flags
);
205 /* Wake up all the kthreads */
206 for (i
= 0; i
< ccp
->cmd_q_count
; i
++) {
207 ccp
->cmd_q
[i
].suspended
= 0;
208 wake_up_process(ccp
->cmd_q
[i
].kthread
);
211 spin_unlock_irqrestore(&ccp
->cmd_lock
, flags
);
218 static const struct acpi_device_id ccp_acpi_match
[] = {
222 MODULE_DEVICE_TABLE(acpi
, ccp_acpi_match
);
226 static const struct of_device_id ccp_of_match
[] = {
227 { .compatible
= "amd,ccp-seattle-v1a" },
230 MODULE_DEVICE_TABLE(of
, ccp_of_match
);
233 static struct platform_driver ccp_platform_driver
= {
237 .acpi_match_table
= ccp_acpi_match
,
240 .of_match_table
= ccp_of_match
,
243 .probe
= ccp_platform_probe
,
244 .remove
= ccp_platform_remove
,
246 .suspend
= ccp_platform_suspend
,
247 .resume
= ccp_platform_resume
,
251 int ccp_platform_init(void)
253 return platform_driver_register(&ccp_platform_driver
);
256 void ccp_platform_exit(void)
258 platform_driver_unregister(&ccp_platform_driver
);