sp-pci.c 7.0 KB
Newer Older
1
/*
2
 * AMD Secure Processor device driver
3
 *
4
 * Copyright (C) 2013,2018 Advanced Micro Devices, Inc.
5 6
 *
 * Author: Tom Lendacky <thomas.lendacky@amd.com>
7
 * Author: Gary R Hook <gary.hook@amd.com>
8 9 10 11 12 13 14 15
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/module.h>
#include <linux/kernel.h>
16
#include <linux/device.h>
17 18
#include <linux/pci.h>
#include <linux/pci_ids.h>
19
#include <linux/dma-mapping.h>
20 21 22 23 24 25 26 27
#include <linux/kthread.h>
#include <linux/sched.h>
#include <linux/interrupt.h>
#include <linux/spinlock.h>
#include <linux/delay.h>
#include <linux/ccp.h>

#include "ccp-dev.h"
28
#include "psp-dev.h"
29 30 31

#define MSIX_VECTORS			2

32
struct sp_pci {
33
	int msix_count;
34
	struct msix_entry msix_entry[MSIX_VECTORS];
35
};
36
static struct sp_device *sp_dev_master;
37

38
static int sp_get_msix_irqs(struct sp_device *sp)
39
{
40
	struct sp_pci *sp_pci = sp->dev_specific;
41
	struct device *dev = sp->dev;
42
	struct pci_dev *pdev = to_pci_dev(dev);
43 44
	int v, ret;

45 46
	for (v = 0; v < ARRAY_SIZE(sp_pci->msix_entry); v++)
		sp_pci->msix_entry[v].entry = v;
47

48
	ret = pci_enable_msix_range(pdev, sp_pci->msix_entry, 1, v);
49
	if (ret < 0)
50 51
		return ret;

52
	sp_pci->msix_count = ret;
53
	sp->use_tasklet = true;
54

55 56 57
	sp->psp_irq = sp_pci->msix_entry[0].vector;
	sp->ccp_irq = (sp_pci->msix_count > 1) ? sp_pci->msix_entry[1].vector
					       : sp_pci->msix_entry[0].vector;
58 59 60
	return 0;
}

61
static int sp_get_msi_irq(struct sp_device *sp)
62
{
63
	struct device *dev = sp->dev;
64
	struct pci_dev *pdev = to_pci_dev(dev);
65 66 67 68 69 70
	int ret;

	ret = pci_enable_msi(pdev);
	if (ret)
		return ret;

71 72
	sp->ccp_irq = pdev->irq;
	sp->psp_irq = pdev->irq;
73 74 75 76

	return 0;
}

77
static int sp_get_irqs(struct sp_device *sp)
78
{
79
	struct device *dev = sp->dev;
80 81
	int ret;

82
	ret = sp_get_msix_irqs(sp);
83 84 85 86 87
	if (!ret)
		return 0;

	/* Couldn't get MSI-X vectors, try MSI */
	dev_notice(dev, "could not enable MSI-X (%d), trying MSI\n", ret);
88
	ret = sp_get_msi_irq(sp);
89 90 91 92 93 94 95 96 97
	if (!ret)
		return 0;

	/* Couldn't get MSI interrupt */
	dev_notice(dev, "could not enable MSI (%d)\n", ret);

	return ret;
}

98
static void sp_free_irqs(struct sp_device *sp)
99
{
100
	struct sp_pci *sp_pci = sp->dev_specific;
101
	struct device *dev = sp->dev;
102
	struct pci_dev *pdev = to_pci_dev(dev);
103

104
	if (sp_pci->msix_count)
105
		pci_disable_msix(pdev);
106
	else if (sp->psp_irq)
107
		pci_disable_msi(pdev);
108 109 110

	sp->ccp_irq = 0;
	sp->psp_irq = 0;
111 112
}

113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
static bool sp_pci_is_master(struct sp_device *sp)
{
	struct device *dev_cur, *dev_new;
	struct pci_dev *pdev_cur, *pdev_new;

	dev_new = sp->dev;
	dev_cur = sp_dev_master->dev;

	pdev_new = to_pci_dev(dev_new);
	pdev_cur = to_pci_dev(dev_cur);

	if (pdev_new->bus->number < pdev_cur->bus->number)
		return true;

	if (PCI_SLOT(pdev_new->devfn) < PCI_SLOT(pdev_cur->devfn))
		return true;

	if (PCI_FUNC(pdev_new->devfn) < PCI_FUNC(pdev_cur->devfn))
		return true;

	return false;
}

static void psp_set_master(struct sp_device *sp)
{
	if (!sp_dev_master) {
		sp_dev_master = sp;
		return;
	}

	if (sp_pci_is_master(sp))
		sp_dev_master = sp;
}

static struct sp_device *psp_get_master(void)
{
	return sp_dev_master;
}

152
static int sp_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
153
{
154
	struct sp_device *sp;
155
	struct sp_pci *sp_pci;
156
	struct device *dev = &pdev->dev;
157 158
	void __iomem * const *iomap_table;
	int bar_mask;
159 160 161
	int ret;

	ret = -ENOMEM;
162 163
	sp = sp_alloc_struct(dev);
	if (!sp)
164 165
		goto e_err;

166 167
	sp_pci = devm_kzalloc(dev, sizeof(*sp_pci), GFP_KERNEL);
	if (!sp_pci)
168 169
		goto e_err;

170
	sp->dev_specific = sp_pci;
171 172
	sp->dev_vdata = (struct sp_dev_vdata *)id->driver_data;
	if (!sp->dev_vdata) {
173 174 175 176
		ret = -ENODEV;
		dev_err(dev, "missing driver data\n");
		goto e_err;
	}
177

178
	ret = pcim_enable_device(pdev);
179
	if (ret) {
180
		dev_err(dev, "pcim_enable_device failed (%d)\n", ret);
181
		goto e_err;
182 183
	}

184 185
	bar_mask = pci_select_bars(pdev, IORESOURCE_MEM);
	ret = pcim_iomap_regions(pdev, bar_mask, "ccp");
186
	if (ret) {
187 188
		dev_err(dev, "pcim_iomap_regions failed (%d)\n", ret);
		goto e_err;
189 190
	}

191 192 193 194 195 196
	iomap_table = pcim_iomap_table(pdev);
	if (!iomap_table) {
		dev_err(dev, "pcim_iomap_table failed\n");
		ret = -ENOMEM;
		goto e_err;
	}
197

198 199
	sp->io_map = iomap_table[sp->dev_vdata->bar];
	if (!sp->io_map) {
200 201 202
		dev_err(dev, "ioremap failed\n");
		ret = -ENOMEM;
		goto e_err;
203
	}
204

205
	ret = sp_get_irqs(sp);
206 207 208
	if (ret)
		goto e_err;

209
	pci_set_master(pdev);
210 211
	sp->set_psp_master_device = psp_set_master;
	sp->get_psp_master_device = psp_get_master;
212

213 214 215
	ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(48));
	if (ret) {
		ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
216
		if (ret) {
217
			dev_err(dev, "dma_set_mask_and_coherent failed (%d)\n",
218
				ret);
219
			goto e_err;
220 221 222
		}
	}

223
	dev_set_drvdata(dev, sp);
224

225
	ret = sp_init(sp);
226
	if (ret)
227
		goto e_err;
228 229 230 231 232 233 234 235

	return 0;

e_err:
	dev_notice(dev, "initialization failed\n");
	return ret;
}

236
static void sp_pci_remove(struct pci_dev *pdev)
237 238
{
	struct device *dev = &pdev->dev;
239
	struct sp_device *sp = dev_get_drvdata(dev);
240

241
	if (!sp)
242 243
		return;

244
	sp_destroy(sp);
245

246
	sp_free_irqs(sp);
247 248 249
}

#ifdef CONFIG_PM
250
static int sp_pci_suspend(struct pci_dev *pdev, pm_message_t state)
251 252
{
	struct device *dev = &pdev->dev;
253
	struct sp_device *sp = dev_get_drvdata(dev);
254

255
	return sp_suspend(sp, state);
256 257
}

258
static int sp_pci_resume(struct pci_dev *pdev)
259 260
{
	struct device *dev = &pdev->dev;
261
	struct sp_device *sp = dev_get_drvdata(dev);
262

263
	return sp_resume(sp);
264 265 266
}
#endif

267
#ifdef CONFIG_CRYPTO_DEV_SP_PSP
268
static const struct psp_vdata pspv1 = {
269 270 271 272 273 274
	.cmdresp_reg		= 0x10580,
	.cmdbuff_addr_lo_reg	= 0x105e0,
	.cmdbuff_addr_hi_reg	= 0x105e4,
	.feature_reg		= 0x105fc,
	.inten_reg		= 0x10610,
	.intsts_reg		= 0x10614,
275
};
276 277 278 279 280 281 282 283 284

static const struct psp_vdata pspv2 = {
	.cmdresp_reg		= 0x10980,
	.cmdbuff_addr_lo_reg	= 0x109e0,
	.cmdbuff_addr_hi_reg	= 0x109e4,
	.feature_reg		= 0x109fc,
	.inten_reg		= 0x10690,
	.intsts_reg		= 0x10694,
};
285 286
#endif

287
static const struct sp_dev_vdata dev_vdata[] = {
288
	{	/* 0 */
289 290 291 292 293
		.bar = 2,
#ifdef CONFIG_CRYPTO_DEV_SP_CCP
		.ccp_vdata = &ccpv3,
#endif
	},
294
	{	/* 1 */
295 296 297
		.bar = 2,
#ifdef CONFIG_CRYPTO_DEV_SP_CCP
		.ccp_vdata = &ccpv5a,
298 299
#endif
#ifdef CONFIG_CRYPTO_DEV_SP_PSP
300
		.psp_vdata = &pspv1,
301 302
#endif
	},
303
	{	/* 2 */
304 305 306
		.bar = 2,
#ifdef CONFIG_CRYPTO_DEV_SP_CCP
		.ccp_vdata = &ccpv5b,
307 308 309 310 311 312 313 314 315
#endif
	},
	{	/* 3 */
		.bar = 2,
#ifdef CONFIG_CRYPTO_DEV_SP_CCP
		.ccp_vdata = &ccpv5a,
#endif
#ifdef CONFIG_CRYPTO_DEV_SP_PSP
		.psp_vdata = &pspv2,
316 317 318
#endif
	},
};
319
static const struct pci_device_id sp_pci_table[] = {
320 321 322
	{ PCI_VDEVICE(AMD, 0x1537), (kernel_ulong_t)&dev_vdata[0] },
	{ PCI_VDEVICE(AMD, 0x1456), (kernel_ulong_t)&dev_vdata[1] },
	{ PCI_VDEVICE(AMD, 0x1468), (kernel_ulong_t)&dev_vdata[2] },
323
	{ PCI_VDEVICE(AMD, 0x1486), (kernel_ulong_t)&dev_vdata[3] },
324 325 326
	/* Last entry must be zero */
	{ 0, }
};
327
MODULE_DEVICE_TABLE(pci, sp_pci_table);
328

329
static struct pci_driver sp_pci_driver = {
330
	.name = "ccp",
331 332 333
	.id_table = sp_pci_table,
	.probe = sp_pci_probe,
	.remove = sp_pci_remove,
334
#ifdef CONFIG_PM
335 336
	.suspend = sp_pci_suspend,
	.resume = sp_pci_resume,
337 338 339
#endif
};

340
int sp_pci_init(void)
341
{
342
	return pci_register_driver(&sp_pci_driver);
343 344
}

345
void sp_pci_exit(void)
346
{
347
	pci_unregister_driver(&sp_pci_driver);
348
}