2 * AMD Cryptographic Coprocessor (CCP) driver
4 * Copyright (C) 2013,2016 Advanced Micro Devices, Inc.
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.
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/device.h>
17 #include <linux/pci.h>
18 #include <linux/pci_ids.h>
19 #include <linux/dma-mapping.h>
20 #include <linux/kthread.h>
21 #include <linux/sched.h>
22 #include <linux/interrupt.h>
23 #include <linux/spinlock.h>
24 #include <linux/delay.h>
25 #include <linux/ccp.h>
29 #define MSIX_VECTORS 2
38 struct ccp_msix msix[MSIX_VECTORS];
41 static int ccp_get_msix_irqs(struct ccp_device *ccp)
43 struct ccp_pci *ccp_pci = ccp->dev_specific;
44 struct device *dev = ccp->dev;
45 struct pci_dev *pdev = to_pci_dev(dev);
46 struct msix_entry msix_entry[MSIX_VECTORS];
47 unsigned int name_len = sizeof(ccp_pci->msix[0].name) - 1;
50 for (v = 0; v < ARRAY_SIZE(msix_entry); v++)
51 msix_entry[v].entry = v;
53 ret = pci_enable_msix_range(pdev, msix_entry, 1, v);
57 ccp_pci->msix_count = ret;
58 for (v = 0; v < ccp_pci->msix_count; v++) {
59 /* Set the interrupt names and request the irqs */
60 snprintf(ccp_pci->msix[v].name, name_len, "%s-%u",
62 ccp_pci->msix[v].vector = msix_entry[v].vector;
63 ret = request_irq(ccp_pci->msix[v].vector,
64 ccp->vdata->perform->irqhandler,
65 0, ccp_pci->msix[v].name, dev);
67 dev_notice(dev, "unable to allocate MSI-X IRQ (%d)\n",
77 free_irq(ccp_pci->msix[v].vector, dev);
79 pci_disable_msix(pdev);
81 ccp_pci->msix_count = 0;
86 static int ccp_get_msi_irq(struct ccp_device *ccp)
88 struct device *dev = ccp->dev;
89 struct pci_dev *pdev = to_pci_dev(dev);
92 ret = pci_enable_msi(pdev);
97 ret = request_irq(ccp->irq, ccp->vdata->perform->irqhandler, 0,
100 dev_notice(dev, "unable to allocate MSI IRQ (%d)\n", ret);
107 pci_disable_msi(pdev);
112 static int ccp_get_irqs(struct ccp_device *ccp)
114 struct device *dev = ccp->dev;
117 ret = ccp_get_msix_irqs(ccp);
121 /* Couldn't get MSI-X vectors, try MSI */
122 dev_notice(dev, "could not enable MSI-X (%d), trying MSI\n", ret);
123 ret = ccp_get_msi_irq(ccp);
127 /* Couldn't get MSI interrupt */
128 dev_notice(dev, "could not enable MSI (%d)\n", ret);
133 static void ccp_free_irqs(struct ccp_device *ccp)
135 struct ccp_pci *ccp_pci = ccp->dev_specific;
136 struct device *dev = ccp->dev;
137 struct pci_dev *pdev = to_pci_dev(dev);
139 if (ccp_pci->msix_count) {
140 while (ccp_pci->msix_count--)
141 free_irq(ccp_pci->msix[ccp_pci->msix_count].vector,
143 pci_disable_msix(pdev);
144 } else if (ccp->irq) {
145 free_irq(ccp->irq, dev);
146 pci_disable_msi(pdev);
151 static int ccp_find_mmio_area(struct ccp_device *ccp)
153 struct device *dev = ccp->dev;
154 struct pci_dev *pdev = to_pci_dev(dev);
155 resource_size_t io_len;
156 unsigned long io_flags;
158 io_flags = pci_resource_flags(pdev, ccp->vdata->bar);
159 io_len = pci_resource_len(pdev, ccp->vdata->bar);
160 if ((io_flags & IORESOURCE_MEM) &&
161 (io_len >= (ccp->vdata->offset + 0x800)))
162 return ccp->vdata->bar;
167 static int ccp_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
169 struct ccp_device *ccp;
170 struct ccp_pci *ccp_pci;
171 struct device *dev = &pdev->dev;
176 ccp = ccp_alloc_struct(dev);
180 ccp_pci = devm_kzalloc(dev, sizeof(*ccp_pci), GFP_KERNEL);
184 ccp->dev_specific = ccp_pci;
185 ccp->vdata = (struct ccp_vdata *)id->driver_data;
186 if (!ccp->vdata || !ccp->vdata->version) {
188 dev_err(dev, "missing driver data\n");
191 ccp->get_irq = ccp_get_irqs;
192 ccp->free_irq = ccp_free_irqs;
194 ret = pci_request_regions(pdev, "ccp");
196 dev_err(dev, "pci_request_regions failed (%d)\n", ret);
200 ret = pci_enable_device(pdev);
202 dev_err(dev, "pci_enable_device failed (%d)\n", ret);
206 pci_set_master(pdev);
208 ret = ccp_find_mmio_area(ccp);
214 ccp->io_map = pci_iomap(pdev, bar, 0);
216 dev_err(dev, "pci_iomap failed\n");
219 ccp->io_regs = ccp->io_map + ccp->vdata->offset;
221 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(48));
223 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
225 dev_err(dev, "dma_set_mask_and_coherent failed (%d)\n",
231 dev_set_drvdata(dev, ccp);
233 if (ccp->vdata->setup)
234 ccp->vdata->setup(ccp);
236 ret = ccp->vdata->perform->init(ccp);
240 dev_notice(dev, "enabled\n");
245 pci_iounmap(pdev, ccp->io_map);
248 pci_disable_device(pdev);
251 pci_release_regions(pdev);
254 dev_notice(dev, "initialization failed\n");
258 static void ccp_pci_remove(struct pci_dev *pdev)
260 struct device *dev = &pdev->dev;
261 struct ccp_device *ccp = dev_get_drvdata(dev);
266 ccp->vdata->perform->destroy(ccp);
268 pci_iounmap(pdev, ccp->io_map);
270 pci_disable_device(pdev);
272 pci_release_regions(pdev);
274 dev_notice(dev, "disabled\n");
278 static int ccp_pci_suspend(struct pci_dev *pdev, pm_message_t state)
280 struct device *dev = &pdev->dev;
281 struct ccp_device *ccp = dev_get_drvdata(dev);
285 spin_lock_irqsave(&ccp->cmd_lock, flags);
289 /* Wake all the queue kthreads to prepare for suspend */
290 for (i = 0; i < ccp->cmd_q_count; i++)
291 wake_up_process(ccp->cmd_q[i].kthread);
293 spin_unlock_irqrestore(&ccp->cmd_lock, flags);
295 /* Wait for all queue kthreads to say they're done */
296 while (!ccp_queues_suspended(ccp))
297 wait_event_interruptible(ccp->suspend_queue,
298 ccp_queues_suspended(ccp));
303 static int ccp_pci_resume(struct pci_dev *pdev)
305 struct device *dev = &pdev->dev;
306 struct ccp_device *ccp = dev_get_drvdata(dev);
310 spin_lock_irqsave(&ccp->cmd_lock, flags);
314 /* Wake up all the kthreads */
315 for (i = 0; i < ccp->cmd_q_count; i++) {
316 ccp->cmd_q[i].suspended = 0;
317 wake_up_process(ccp->cmd_q[i].kthread);
320 spin_unlock_irqrestore(&ccp->cmd_lock, flags);
326 static const struct pci_device_id ccp_pci_table[] = {
327 { PCI_VDEVICE(AMD, 0x1537), (kernel_ulong_t)&ccpv3 },
328 { PCI_VDEVICE(AMD, 0x1456), (kernel_ulong_t)&ccpv5a },
329 { PCI_VDEVICE(AMD, 0x1468), (kernel_ulong_t)&ccpv5b },
330 /* Last entry must be zero */
333 MODULE_DEVICE_TABLE(pci, ccp_pci_table);
335 static struct pci_driver ccp_pci_driver = {
337 .id_table = ccp_pci_table,
338 .probe = ccp_pci_probe,
339 .remove = ccp_pci_remove,
341 .suspend = ccp_pci_suspend,
342 .resume = ccp_pci_resume,
346 int ccp_pci_init(void)
348 return pci_register_driver(&ccp_pci_driver);
351 void ccp_pci_exit(void)
353 pci_unregister_driver(&ccp_pci_driver);