aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGary R Hook <gary.hook@amd.com>2016-07-26 20:09:20 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2016-08-09 06:47:05 -0400
commitfba8855cb2403707b0639bdff0d34149699f14a2 (patch)
tree412a2b3649c7a61ce38233ae2ba7bb456e290b8a
parentfa242e80c7fb581eddbe636186020786f2e117da (diff)
crypto: ccp - Abstract PCI info for the CCP
Device-specific values for the BAR and offset should be found in the version data structure. Signed-off-by: Gary R Hook <gary.hook@amd.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r--drivers/crypto/ccp/ccp-dev-v3.c3
-rw-r--r--drivers/crypto/ccp/ccp-dev.h3
-rw-r--r--drivers/crypto/ccp/ccp-pci.c15
3 files changed, 13 insertions, 8 deletions
diff --git a/drivers/crypto/ccp/ccp-dev-v3.c b/drivers/crypto/ccp/ccp-dev-v3.c
index d7a710347967..2f7f3c51a6c8 100644
--- a/drivers/crypto/ccp/ccp-dev-v3.c
+++ b/drivers/crypto/ccp/ccp-dev-v3.c
@@ -4,6 +4,7 @@
4 * Copyright (C) 2013,2016 Advanced Micro Devices, Inc. 4 * Copyright (C) 2013,2016 Advanced Micro Devices, Inc.
5 * 5 *
6 * Author: Tom Lendacky <thomas.lendacky@amd.com> 6 * Author: Tom Lendacky <thomas.lendacky@amd.com>
7 * Author: Gary R Hook <gary.hook@amd.com>
7 * 8 *
8 * This program is free software; you can redistribute it and/or modify 9 * 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 * it under the terms of the GNU General Public License version 2 as
@@ -541,4 +542,6 @@ static const struct ccp_actions ccp3_actions = {
541struct ccp_vdata ccpv3 = { 542struct ccp_vdata ccpv3 = {
542 .version = CCP_VERSION(3, 0), 543 .version = CCP_VERSION(3, 0),
543 .perform = &ccp3_actions, 544 .perform = &ccp3_actions,
545 .bar = 2,
546 .offset = 0x20000,
544}; 547};
diff --git a/drivers/crypto/ccp/ccp-dev.h b/drivers/crypto/ccp/ccp-dev.h
index 5fbee638c9ba..8824e41677c6 100644
--- a/drivers/crypto/ccp/ccp-dev.h
+++ b/drivers/crypto/ccp/ccp-dev.h
@@ -4,6 +4,7 @@
4 * Copyright (C) 2013,2016 Advanced Micro Devices, Inc. 4 * Copyright (C) 2013,2016 Advanced Micro Devices, Inc.
5 * 5 *
6 * Author: Tom Lendacky <thomas.lendacky@amd.com> 6 * Author: Tom Lendacky <thomas.lendacky@amd.com>
7 * Author: Gary R Hook <gary.hook@amd.com>
7 * 8 *
8 * This program is free software; you can redistribute it and/or modify 9 * 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 * it under the terms of the GNU General Public License version 2 as
@@ -163,6 +164,8 @@ struct ccp_actions {
163struct ccp_vdata { 164struct ccp_vdata {
164 unsigned int version; 165 unsigned int version;
165 const struct ccp_actions *perform; 166 const struct ccp_actions *perform;
167 const unsigned int bar;
168 const unsigned int offset;
166}; 169};
167 170
168extern struct ccp_vdata ccpv3; 171extern struct ccp_vdata ccpv3;
diff --git a/drivers/crypto/ccp/ccp-pci.c b/drivers/crypto/ccp/ccp-pci.c
index 0bf262e36b6b..072bcedef386 100644
--- a/drivers/crypto/ccp/ccp-pci.c
+++ b/drivers/crypto/ccp/ccp-pci.c
@@ -4,6 +4,7 @@
4 * Copyright (C) 2013,2016 Advanced Micro Devices, Inc. 4 * Copyright (C) 2013,2016 Advanced Micro Devices, Inc.
5 * 5 *
6 * Author: Tom Lendacky <thomas.lendacky@amd.com> 6 * Author: Tom Lendacky <thomas.lendacky@amd.com>
7 * Author: Gary R Hook <gary.hook@amd.com>
7 * 8 *
8 * This program is free software; you can redistribute it and/or modify 9 * 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 * it under the terms of the GNU General Public License version 2 as
@@ -25,9 +26,6 @@
25 26
26#include "ccp-dev.h" 27#include "ccp-dev.h"
27 28
28#define IO_BAR 2
29#define IO_OFFSET 0x20000
30
31#define MSIX_VECTORS 2 29#define MSIX_VECTORS 2
32 30
33struct ccp_msix { 31struct ccp_msix {
@@ -156,10 +154,11 @@ static int ccp_find_mmio_area(struct ccp_device *ccp)
156 resource_size_t io_len; 154 resource_size_t io_len;
157 unsigned long io_flags; 155 unsigned long io_flags;
158 156
159 io_flags = pci_resource_flags(pdev, IO_BAR); 157 io_flags = pci_resource_flags(pdev, ccp->vdata->bar);
160 io_len = pci_resource_len(pdev, IO_BAR); 158 io_len = pci_resource_len(pdev, ccp->vdata->bar);
161 if ((io_flags & IORESOURCE_MEM) && (io_len >= (IO_OFFSET + 0x800))) 159 if ((io_flags & IORESOURCE_MEM) &&
162 return IO_BAR; 160 (io_len >= (ccp->vdata->offset + 0x800)))
161 return ccp->vdata->bar;
163 162
164 return -EIO; 163 return -EIO;
165} 164}
@@ -216,7 +215,7 @@ static int ccp_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
216 dev_err(dev, "pci_iomap failed\n"); 215 dev_err(dev, "pci_iomap failed\n");
217 goto e_device; 216 goto e_device;
218 } 217 }
219 ccp->io_regs = ccp->io_map + IO_OFFSET; 218 ccp->io_regs = ccp->io_map + ccp->vdata->offset;
220 219
221 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(48)); 220 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(48));
222 if (ret) { 221 if (ret) {