blob: 6e208a060a585d2926a97fad210f5acac7baa24d [file] [log] [blame]
Thomas Gleixner6b1baef2019-05-29 16:57:55 -07001// SPDX-License-Identifier: GPL-2.0-only
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +05302/**
3 * Host side test driver to test endpoint functionality
4 *
5 * Copyright (C) 2017 Texas Instruments
6 * Author: Kishon Vijay Abraham I <kishon@ti.com>
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +05307 */
8
9#include <linux/crc32.h>
10#include <linux/delay.h>
11#include <linux/fs.h>
12#include <linux/io.h>
13#include <linux/interrupt.h>
14#include <linux/irq.h>
15#include <linux/miscdevice.h>
16#include <linux/module.h>
17#include <linux/mutex.h>
18#include <linux/random.h>
19#include <linux/slab.h>
20#include <linux/pci.h>
21#include <linux/pci_ids.h>
22
23#include <linux/pci_regs.h>
24
25#include <uapi/linux/pcitest.h>
26
Gustavo Pimentele8817de2018-07-19 10:32:17 +020027#define DRV_MODULE_NAME "pci-endpoint-test"
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +053028
Gustavo Pimentele0332712018-07-19 10:32:20 +020029#define IRQ_TYPE_UNDEFINED -1
Gustavo Pimentele8817de2018-07-19 10:32:17 +020030#define IRQ_TYPE_LEGACY 0
31#define IRQ_TYPE_MSI 1
Gustavo Pimentelc2e00e32018-07-19 10:32:19 +020032#define IRQ_TYPE_MSIX 2
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +053033
Gustavo Pimentele8817de2018-07-19 10:32:17 +020034#define PCI_ENDPOINT_TEST_MAGIC 0x0
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +053035
Gustavo Pimentele8817de2018-07-19 10:32:17 +020036#define PCI_ENDPOINT_TEST_COMMAND 0x4
37#define COMMAND_RAISE_LEGACY_IRQ BIT(0)
38#define COMMAND_RAISE_MSI_IRQ BIT(1)
Gustavo Pimentelc2e00e32018-07-19 10:32:19 +020039#define COMMAND_RAISE_MSIX_IRQ BIT(2)
Gustavo Pimentele8817de2018-07-19 10:32:17 +020040#define COMMAND_READ BIT(3)
41#define COMMAND_WRITE BIT(4)
42#define COMMAND_COPY BIT(5)
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +053043
Gustavo Pimentele8817de2018-07-19 10:32:17 +020044#define PCI_ENDPOINT_TEST_STATUS 0x8
45#define STATUS_READ_SUCCESS BIT(0)
46#define STATUS_READ_FAIL BIT(1)
47#define STATUS_WRITE_SUCCESS BIT(2)
48#define STATUS_WRITE_FAIL BIT(3)
49#define STATUS_COPY_SUCCESS BIT(4)
50#define STATUS_COPY_FAIL BIT(5)
51#define STATUS_IRQ_RAISED BIT(6)
52#define STATUS_SRC_ADDR_INVALID BIT(7)
53#define STATUS_DST_ADDR_INVALID BIT(8)
54
55#define PCI_ENDPOINT_TEST_LOWER_SRC_ADDR 0x0c
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +053056#define PCI_ENDPOINT_TEST_UPPER_SRC_ADDR 0x10
57
58#define PCI_ENDPOINT_TEST_LOWER_DST_ADDR 0x14
59#define PCI_ENDPOINT_TEST_UPPER_DST_ADDR 0x18
60
Gustavo Pimentele8817de2018-07-19 10:32:17 +020061#define PCI_ENDPOINT_TEST_SIZE 0x1c
62#define PCI_ENDPOINT_TEST_CHECKSUM 0x20
63
64#define PCI_ENDPOINT_TEST_IRQ_TYPE 0x24
65#define PCI_ENDPOINT_TEST_IRQ_NUMBER 0x28
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +053066
Kishon Vijay Abraham I5bb04b12019-03-25 15:09:46 +053067#define PCI_DEVICE_ID_TI_AM654 0xb00c
68
69#define is_am654_pci_dev(pdev) \
70 ((pdev)->device == PCI_DEVICE_ID_TI_AM654)
71
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +053072static DEFINE_IDA(pci_endpoint_test_ida);
73
74#define to_endpoint_test(priv) container_of((priv), struct pci_endpoint_test, \
75 miscdev)
Kishon Vijay Abraham I0c8a5f92017-08-18 20:28:09 +053076
77static bool no_msi;
78module_param(no_msi, bool, 0444);
79MODULE_PARM_DESC(no_msi, "Disable MSI interrupt in pci_endpoint_test");
80
Gustavo Pimentel9133e392018-07-19 10:32:18 +020081static int irq_type = IRQ_TYPE_MSI;
82module_param(irq_type, int, 0444);
Gustavo Pimentelc2e00e32018-07-19 10:32:19 +020083MODULE_PARM_DESC(irq_type, "IRQ mode selection in pci_endpoint_test (0 - Legacy, 1 - MSI, 2 - MSI-X)");
Gustavo Pimentel9133e392018-07-19 10:32:18 +020084
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +053085enum pci_barno {
86 BAR_0,
87 BAR_1,
88 BAR_2,
89 BAR_3,
90 BAR_4,
91 BAR_5,
92};
93
94struct pci_endpoint_test {
95 struct pci_dev *pdev;
96 void __iomem *base;
97 void __iomem *bar[6];
98 struct completion irq_raised;
99 int last_irq;
Kishon Vijay Abraham Ib7636e82017-10-11 14:14:38 +0530100 int num_irqs;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530101 /* mutex to protect the ioctls */
102 struct mutex mutex;
103 struct miscdevice miscdev;
Kishon Vijay Abraham I834b90512017-08-18 20:28:05 +0530104 enum pci_barno test_reg_bar;
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530105 size_t alignment;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530106};
107
Kishon Vijay Abraham I834b90512017-08-18 20:28:05 +0530108struct pci_endpoint_test_data {
109 enum pci_barno test_reg_bar;
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530110 size_t alignment;
Gustavo Pimentel9133e392018-07-19 10:32:18 +0200111 int irq_type;
Kishon Vijay Abraham I834b90512017-08-18 20:28:05 +0530112};
113
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530114static inline u32 pci_endpoint_test_readl(struct pci_endpoint_test *test,
115 u32 offset)
116{
117 return readl(test->base + offset);
118}
119
120static inline void pci_endpoint_test_writel(struct pci_endpoint_test *test,
121 u32 offset, u32 value)
122{
123 writel(value, test->base + offset);
124}
125
126static inline u32 pci_endpoint_test_bar_readl(struct pci_endpoint_test *test,
127 int bar, int offset)
128{
129 return readl(test->bar[bar] + offset);
130}
131
132static inline void pci_endpoint_test_bar_writel(struct pci_endpoint_test *test,
133 int bar, u32 offset, u32 value)
134{
135 writel(value, test->bar[bar] + offset);
136}
137
138static irqreturn_t pci_endpoint_test_irqhandler(int irq, void *dev_id)
139{
140 struct pci_endpoint_test *test = dev_id;
141 u32 reg;
142
143 reg = pci_endpoint_test_readl(test, PCI_ENDPOINT_TEST_STATUS);
144 if (reg & STATUS_IRQ_RAISED) {
145 test->last_irq = irq;
146 complete(&test->irq_raised);
147 reg &= ~STATUS_IRQ_RAISED;
148 }
149 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_STATUS,
150 reg);
151
152 return IRQ_HANDLED;
153}
154
Gustavo Pimentele0332712018-07-19 10:32:20 +0200155static void pci_endpoint_test_free_irq_vectors(struct pci_endpoint_test *test)
156{
157 struct pci_dev *pdev = test->pdev;
158
159 pci_free_irq_vectors(pdev);
160}
161
162static bool pci_endpoint_test_alloc_irq_vectors(struct pci_endpoint_test *test,
163 int type)
164{
165 int irq = -1;
166 struct pci_dev *pdev = test->pdev;
167 struct device *dev = &pdev->dev;
168 bool res = true;
169
170 switch (type) {
171 case IRQ_TYPE_LEGACY:
172 irq = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_LEGACY);
173 if (irq < 0)
174 dev_err(dev, "Failed to get Legacy interrupt\n");
175 break;
176 case IRQ_TYPE_MSI:
177 irq = pci_alloc_irq_vectors(pdev, 1, 32, PCI_IRQ_MSI);
178 if (irq < 0)
179 dev_err(dev, "Failed to get MSI interrupts\n");
180 break;
181 case IRQ_TYPE_MSIX:
182 irq = pci_alloc_irq_vectors(pdev, 1, 2048, PCI_IRQ_MSIX);
183 if (irq < 0)
184 dev_err(dev, "Failed to get MSI-X interrupts\n");
185 break;
186 default:
187 dev_err(dev, "Invalid IRQ type selected\n");
188 }
189
190 if (irq < 0) {
191 irq = 0;
192 res = false;
193 }
194 test->num_irqs = irq;
195
196 return res;
197}
198
199static void pci_endpoint_test_release_irq(struct pci_endpoint_test *test)
200{
201 int i;
202 struct pci_dev *pdev = test->pdev;
203 struct device *dev = &pdev->dev;
204
205 for (i = 0; i < test->num_irqs; i++)
206 devm_free_irq(dev, pci_irq_vector(pdev, i), test);
207
208 test->num_irqs = 0;
209}
210
211static bool pci_endpoint_test_request_irq(struct pci_endpoint_test *test)
212{
213 int i;
214 int err;
215 struct pci_dev *pdev = test->pdev;
216 struct device *dev = &pdev->dev;
217
218 for (i = 0; i < test->num_irqs; i++) {
219 err = devm_request_irq(dev, pci_irq_vector(pdev, i),
220 pci_endpoint_test_irqhandler,
221 IRQF_SHARED, DRV_MODULE_NAME, test);
222 if (err)
223 goto fail;
224 }
225
226 return true;
227
228fail:
229 switch (irq_type) {
230 case IRQ_TYPE_LEGACY:
231 dev_err(dev, "Failed to request IRQ %d for Legacy\n",
232 pci_irq_vector(pdev, i));
233 break;
234 case IRQ_TYPE_MSI:
235 dev_err(dev, "Failed to request IRQ %d for MSI %d\n",
236 pci_irq_vector(pdev, i),
237 i + 1);
238 break;
239 case IRQ_TYPE_MSIX:
240 dev_err(dev, "Failed to request IRQ %d for MSI-X %d\n",
241 pci_irq_vector(pdev, i),
242 i + 1);
243 break;
244 }
245
246 return false;
247}
248
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530249static bool pci_endpoint_test_bar(struct pci_endpoint_test *test,
250 enum pci_barno barno)
251{
252 int j;
253 u32 val;
254 int size;
Kishon Vijay Abraham Icda370e2017-08-18 20:28:08 +0530255 struct pci_dev *pdev = test->pdev;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530256
257 if (!test->bar[barno])
258 return false;
259
Kishon Vijay Abraham Icda370e2017-08-18 20:28:08 +0530260 size = pci_resource_len(pdev, barno);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530261
Kishon Vijay Abraham I834b90512017-08-18 20:28:05 +0530262 if (barno == test->test_reg_bar)
263 size = 0x4;
264
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530265 for (j = 0; j < size; j += 4)
266 pci_endpoint_test_bar_writel(test, barno, j, 0xA0A0A0A0);
267
268 for (j = 0; j < size; j += 4) {
269 val = pci_endpoint_test_bar_readl(test, barno, j);
270 if (val != 0xA0A0A0A0)
271 return false;
272 }
273
274 return true;
275}
276
277static bool pci_endpoint_test_legacy_irq(struct pci_endpoint_test *test)
278{
279 u32 val;
280
Gustavo Pimentele8817de2018-07-19 10:32:17 +0200281 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_TYPE,
282 IRQ_TYPE_LEGACY);
283 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_NUMBER, 0);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530284 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_COMMAND,
285 COMMAND_RAISE_LEGACY_IRQ);
286 val = wait_for_completion_timeout(&test->irq_raised,
287 msecs_to_jiffies(1000));
288 if (!val)
289 return false;
290
291 return true;
292}
293
294static bool pci_endpoint_test_msi_irq(struct pci_endpoint_test *test,
Gustavo Pimentelc2e00e32018-07-19 10:32:19 +0200295 u16 msi_num, bool msix)
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530296{
297 u32 val;
298 struct pci_dev *pdev = test->pdev;
299
Gustavo Pimentele8817de2018-07-19 10:32:17 +0200300 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_TYPE,
Gustavo Pimentelc2e00e32018-07-19 10:32:19 +0200301 msix == false ? IRQ_TYPE_MSI :
302 IRQ_TYPE_MSIX);
Gustavo Pimentele8817de2018-07-19 10:32:17 +0200303 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_NUMBER, msi_num);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530304 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_COMMAND,
Gustavo Pimentelc2e00e32018-07-19 10:32:19 +0200305 msix == false ? COMMAND_RAISE_MSI_IRQ :
306 COMMAND_RAISE_MSIX_IRQ);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530307 val = wait_for_completion_timeout(&test->irq_raised,
308 msecs_to_jiffies(1000));
309 if (!val)
310 return false;
311
Gustavo Pimentelecc57ef2018-05-14 18:27:48 +0100312 if (pci_irq_vector(pdev, msi_num - 1) == test->last_irq)
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530313 return true;
314
315 return false;
316}
317
318static bool pci_endpoint_test_copy(struct pci_endpoint_test *test, size_t size)
319{
320 bool ret = false;
321 void *src_addr;
322 void *dst_addr;
323 dma_addr_t src_phys_addr;
324 dma_addr_t dst_phys_addr;
325 struct pci_dev *pdev = test->pdev;
326 struct device *dev = &pdev->dev;
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530327 void *orig_src_addr;
328 dma_addr_t orig_src_phys_addr;
329 void *orig_dst_addr;
330 dma_addr_t orig_dst_phys_addr;
331 size_t offset;
332 size_t alignment = test->alignment;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530333 u32 src_crc32;
334 u32 dst_crc32;
335
Dan Carpenter343dc692017-09-30 11:15:52 +0300336 if (size > SIZE_MAX - alignment)
337 goto err;
338
Gustavo Pimentele0332712018-07-19 10:32:20 +0200339 if (irq_type < IRQ_TYPE_LEGACY || irq_type > IRQ_TYPE_MSIX) {
340 dev_err(dev, "Invalid IRQ type option\n");
341 goto err;
342 }
343
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530344 orig_src_addr = dma_alloc_coherent(dev, size + alignment,
345 &orig_src_phys_addr, GFP_KERNEL);
346 if (!orig_src_addr) {
Gustavo Pimentel0e52ea62018-05-14 17:56:23 +0100347 dev_err(dev, "Failed to allocate source buffer\n");
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530348 ret = false;
349 goto err;
350 }
351
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530352 if (alignment && !IS_ALIGNED(orig_src_phys_addr, alignment)) {
353 src_phys_addr = PTR_ALIGN(orig_src_phys_addr, alignment);
354 offset = src_phys_addr - orig_src_phys_addr;
355 src_addr = orig_src_addr + offset;
356 } else {
357 src_phys_addr = orig_src_phys_addr;
358 src_addr = orig_src_addr;
359 }
360
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530361 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_LOWER_SRC_ADDR,
362 lower_32_bits(src_phys_addr));
363
364 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_UPPER_SRC_ADDR,
365 upper_32_bits(src_phys_addr));
366
367 get_random_bytes(src_addr, size);
368 src_crc32 = crc32_le(~0, src_addr, size);
369
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530370 orig_dst_addr = dma_alloc_coherent(dev, size + alignment,
371 &orig_dst_phys_addr, GFP_KERNEL);
372 if (!orig_dst_addr) {
Gustavo Pimentel0e52ea62018-05-14 17:56:23 +0100373 dev_err(dev, "Failed to allocate destination address\n");
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530374 ret = false;
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530375 goto err_orig_src_addr;
376 }
377
378 if (alignment && !IS_ALIGNED(orig_dst_phys_addr, alignment)) {
379 dst_phys_addr = PTR_ALIGN(orig_dst_phys_addr, alignment);
380 offset = dst_phys_addr - orig_dst_phys_addr;
381 dst_addr = orig_dst_addr + offset;
382 } else {
383 dst_phys_addr = orig_dst_phys_addr;
384 dst_addr = orig_dst_addr;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530385 }
386
387 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_LOWER_DST_ADDR,
388 lower_32_bits(dst_phys_addr));
389 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_UPPER_DST_ADDR,
390 upper_32_bits(dst_phys_addr));
391
392 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_SIZE,
393 size);
394
Gustavo Pimentel9133e392018-07-19 10:32:18 +0200395 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_TYPE, irq_type);
Gustavo Pimentele8817de2018-07-19 10:32:17 +0200396 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_NUMBER, 1);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530397 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_COMMAND,
Gustavo Pimentele8817de2018-07-19 10:32:17 +0200398 COMMAND_COPY);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530399
400 wait_for_completion(&test->irq_raised);
401
402 dst_crc32 = crc32_le(~0, dst_addr, size);
403 if (dst_crc32 == src_crc32)
404 ret = true;
405
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530406 dma_free_coherent(dev, size + alignment, orig_dst_addr,
407 orig_dst_phys_addr);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530408
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530409err_orig_src_addr:
410 dma_free_coherent(dev, size + alignment, orig_src_addr,
411 orig_src_phys_addr);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530412
413err:
414 return ret;
415}
416
417static bool pci_endpoint_test_write(struct pci_endpoint_test *test, size_t size)
418{
419 bool ret = false;
420 u32 reg;
421 void *addr;
422 dma_addr_t phys_addr;
423 struct pci_dev *pdev = test->pdev;
424 struct device *dev = &pdev->dev;
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530425 void *orig_addr;
426 dma_addr_t orig_phys_addr;
427 size_t offset;
428 size_t alignment = test->alignment;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530429 u32 crc32;
430
Dan Carpenter343dc692017-09-30 11:15:52 +0300431 if (size > SIZE_MAX - alignment)
432 goto err;
433
Gustavo Pimentele0332712018-07-19 10:32:20 +0200434 if (irq_type < IRQ_TYPE_LEGACY || irq_type > IRQ_TYPE_MSIX) {
435 dev_err(dev, "Invalid IRQ type option\n");
436 goto err;
437 }
438
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530439 orig_addr = dma_alloc_coherent(dev, size + alignment, &orig_phys_addr,
440 GFP_KERNEL);
441 if (!orig_addr) {
Gustavo Pimentel0e52ea62018-05-14 17:56:23 +0100442 dev_err(dev, "Failed to allocate address\n");
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530443 ret = false;
444 goto err;
445 }
446
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530447 if (alignment && !IS_ALIGNED(orig_phys_addr, alignment)) {
448 phys_addr = PTR_ALIGN(orig_phys_addr, alignment);
449 offset = phys_addr - orig_phys_addr;
450 addr = orig_addr + offset;
451 } else {
452 phys_addr = orig_phys_addr;
453 addr = orig_addr;
454 }
455
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530456 get_random_bytes(addr, size);
457
458 crc32 = crc32_le(~0, addr, size);
459 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_CHECKSUM,
460 crc32);
461
462 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_LOWER_SRC_ADDR,
463 lower_32_bits(phys_addr));
464 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_UPPER_SRC_ADDR,
465 upper_32_bits(phys_addr));
466
467 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_SIZE, size);
468
Gustavo Pimentel9133e392018-07-19 10:32:18 +0200469 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_TYPE, irq_type);
Gustavo Pimentele8817de2018-07-19 10:32:17 +0200470 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_NUMBER, 1);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530471 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_COMMAND,
Gustavo Pimentele8817de2018-07-19 10:32:17 +0200472 COMMAND_READ);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530473
474 wait_for_completion(&test->irq_raised);
475
476 reg = pci_endpoint_test_readl(test, PCI_ENDPOINT_TEST_STATUS);
477 if (reg & STATUS_READ_SUCCESS)
478 ret = true;
479
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530480 dma_free_coherent(dev, size + alignment, orig_addr, orig_phys_addr);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530481
482err:
483 return ret;
484}
485
486static bool pci_endpoint_test_read(struct pci_endpoint_test *test, size_t size)
487{
488 bool ret = false;
489 void *addr;
490 dma_addr_t phys_addr;
491 struct pci_dev *pdev = test->pdev;
492 struct device *dev = &pdev->dev;
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530493 void *orig_addr;
494 dma_addr_t orig_phys_addr;
495 size_t offset;
496 size_t alignment = test->alignment;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530497 u32 crc32;
498
Dan Carpenter343dc692017-09-30 11:15:52 +0300499 if (size > SIZE_MAX - alignment)
500 goto err;
501
Gustavo Pimentele0332712018-07-19 10:32:20 +0200502 if (irq_type < IRQ_TYPE_LEGACY || irq_type > IRQ_TYPE_MSIX) {
503 dev_err(dev, "Invalid IRQ type option\n");
504 goto err;
505 }
506
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530507 orig_addr = dma_alloc_coherent(dev, size + alignment, &orig_phys_addr,
508 GFP_KERNEL);
509 if (!orig_addr) {
Gustavo Pimentel0e52ea62018-05-14 17:56:23 +0100510 dev_err(dev, "Failed to allocate destination address\n");
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530511 ret = false;
512 goto err;
513 }
514
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530515 if (alignment && !IS_ALIGNED(orig_phys_addr, alignment)) {
516 phys_addr = PTR_ALIGN(orig_phys_addr, alignment);
517 offset = phys_addr - orig_phys_addr;
518 addr = orig_addr + offset;
519 } else {
520 phys_addr = orig_phys_addr;
521 addr = orig_addr;
522 }
523
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530524 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_LOWER_DST_ADDR,
525 lower_32_bits(phys_addr));
526 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_UPPER_DST_ADDR,
527 upper_32_bits(phys_addr));
528
529 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_SIZE, size);
530
Gustavo Pimentel9133e392018-07-19 10:32:18 +0200531 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_TYPE, irq_type);
Gustavo Pimentele8817de2018-07-19 10:32:17 +0200532 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_IRQ_NUMBER, 1);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530533 pci_endpoint_test_writel(test, PCI_ENDPOINT_TEST_COMMAND,
Gustavo Pimentele8817de2018-07-19 10:32:17 +0200534 COMMAND_WRITE);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530535
536 wait_for_completion(&test->irq_raised);
537
538 crc32 = crc32_le(~0, addr, size);
539 if (crc32 == pci_endpoint_test_readl(test, PCI_ENDPOINT_TEST_CHECKSUM))
540 ret = true;
541
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530542 dma_free_coherent(dev, size + alignment, orig_addr, orig_phys_addr);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530543err:
544 return ret;
545}
546
Gustavo Pimentele0332712018-07-19 10:32:20 +0200547static bool pci_endpoint_test_set_irq(struct pci_endpoint_test *test,
548 int req_irq_type)
549{
550 struct pci_dev *pdev = test->pdev;
551 struct device *dev = &pdev->dev;
552
553 if (req_irq_type < IRQ_TYPE_LEGACY || req_irq_type > IRQ_TYPE_MSIX) {
554 dev_err(dev, "Invalid IRQ type option\n");
555 return false;
556 }
557
558 if (irq_type == req_irq_type)
559 return true;
560
561 pci_endpoint_test_release_irq(test);
562 pci_endpoint_test_free_irq_vectors(test);
563
564 if (!pci_endpoint_test_alloc_irq_vectors(test, req_irq_type))
565 goto err;
566
567 if (!pci_endpoint_test_request_irq(test))
568 goto err;
569
570 irq_type = req_irq_type;
571 return true;
572
573err:
574 pci_endpoint_test_free_irq_vectors(test);
575 irq_type = IRQ_TYPE_UNDEFINED;
576 return false;
577}
578
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530579static long pci_endpoint_test_ioctl(struct file *file, unsigned int cmd,
580 unsigned long arg)
581{
582 int ret = -EINVAL;
583 enum pci_barno bar;
584 struct pci_endpoint_test *test = to_endpoint_test(file->private_data);
Kishon Vijay Abraham I5bb04b12019-03-25 15:09:46 +0530585 struct pci_dev *pdev = test->pdev;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530586
587 mutex_lock(&test->mutex);
588 switch (cmd) {
589 case PCITEST_BAR:
590 bar = arg;
591 if (bar < 0 || bar > 5)
592 goto ret;
Kishon Vijay Abraham I5bb04b12019-03-25 15:09:46 +0530593 if (is_am654_pci_dev(pdev) && bar == BAR_0)
594 goto ret;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530595 ret = pci_endpoint_test_bar(test, bar);
596 break;
597 case PCITEST_LEGACY_IRQ:
598 ret = pci_endpoint_test_legacy_irq(test);
599 break;
600 case PCITEST_MSI:
Gustavo Pimentelc2e00e32018-07-19 10:32:19 +0200601 case PCITEST_MSIX:
602 ret = pci_endpoint_test_msi_irq(test, arg, cmd == PCITEST_MSIX);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530603 break;
604 case PCITEST_WRITE:
605 ret = pci_endpoint_test_write(test, arg);
606 break;
607 case PCITEST_READ:
608 ret = pci_endpoint_test_read(test, arg);
609 break;
610 case PCITEST_COPY:
611 ret = pci_endpoint_test_copy(test, arg);
612 break;
Gustavo Pimentele0332712018-07-19 10:32:20 +0200613 case PCITEST_SET_IRQTYPE:
614 ret = pci_endpoint_test_set_irq(test, arg);
615 break;
616 case PCITEST_GET_IRQTYPE:
617 ret = irq_type;
618 break;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530619 }
620
621ret:
622 mutex_unlock(&test->mutex);
623 return ret;
624}
625
626static const struct file_operations pci_endpoint_test_fops = {
627 .owner = THIS_MODULE,
628 .unlocked_ioctl = pci_endpoint_test_ioctl,
629};
630
631static int pci_endpoint_test_probe(struct pci_dev *pdev,
632 const struct pci_device_id *ent)
633{
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530634 int err;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530635 int id;
636 char name[20];
637 enum pci_barno bar;
638 void __iomem *base;
639 struct device *dev = &pdev->dev;
640 struct pci_endpoint_test *test;
Kishon Vijay Abraham I834b90512017-08-18 20:28:05 +0530641 struct pci_endpoint_test_data *data;
642 enum pci_barno test_reg_bar = BAR_0;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530643 struct miscdevice *misc_device;
644
645 if (pci_is_bridge(pdev))
646 return -ENODEV;
647
648 test = devm_kzalloc(dev, sizeof(*test), GFP_KERNEL);
649 if (!test)
650 return -ENOMEM;
651
Kishon Vijay Abraham I834b90512017-08-18 20:28:05 +0530652 test->test_reg_bar = 0;
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530653 test->alignment = 0;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530654 test->pdev = pdev;
Kishon Vijay Abraham I834b90512017-08-18 20:28:05 +0530655
Gustavo Pimentel9133e392018-07-19 10:32:18 +0200656 if (no_msi)
657 irq_type = IRQ_TYPE_LEGACY;
658
Kishon Vijay Abraham I834b90512017-08-18 20:28:05 +0530659 data = (struct pci_endpoint_test_data *)ent->driver_data;
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530660 if (data) {
Kishon Vijay Abraham I834b90512017-08-18 20:28:05 +0530661 test_reg_bar = data->test_reg_bar;
Kishon Vijay Abraham I8f220662019-03-25 15:09:47 +0530662 test->test_reg_bar = test_reg_bar;
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530663 test->alignment = data->alignment;
Gustavo Pimentel9133e392018-07-19 10:32:18 +0200664 irq_type = data->irq_type;
Kishon Vijay Abraham I13107c62017-08-18 20:28:06 +0530665 }
Kishon Vijay Abraham I834b90512017-08-18 20:28:05 +0530666
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530667 init_completion(&test->irq_raised);
668 mutex_init(&test->mutex);
669
670 err = pci_enable_device(pdev);
671 if (err) {
672 dev_err(dev, "Cannot enable PCI device\n");
673 return err;
674 }
675
676 err = pci_request_regions(pdev, DRV_MODULE_NAME);
677 if (err) {
678 dev_err(dev, "Cannot obtain PCI resources\n");
679 goto err_disable_pdev;
680 }
681
682 pci_set_master(pdev);
683
Gustavo Pimentele0332712018-07-19 10:32:20 +0200684 if (!pci_endpoint_test_alloc_irq_vectors(test, irq_type))
685 goto err_disable_irq;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530686
Gustavo Pimentele0332712018-07-19 10:32:20 +0200687 if (!pci_endpoint_test_request_irq(test))
688 goto err_disable_irq;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530689
690 for (bar = BAR_0; bar <= BAR_5; bar++) {
Niklas Cassel16b17ca2018-03-28 13:50:17 +0200691 if (pci_resource_flags(pdev, bar) & IORESOURCE_MEM) {
692 base = pci_ioremap_bar(pdev, bar);
693 if (!base) {
Gustavo Pimentel0e52ea62018-05-14 17:56:23 +0100694 dev_err(dev, "Failed to read BAR%d\n", bar);
Niklas Cassel16b17ca2018-03-28 13:50:17 +0200695 WARN_ON(bar == test_reg_bar);
696 }
697 test->bar[bar] = base;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530698 }
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530699 }
700
Kishon Vijay Abraham I834b90512017-08-18 20:28:05 +0530701 test->base = test->bar[test_reg_bar];
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530702 if (!test->base) {
Kishon Vijay Abraham I80068c92017-10-11 14:14:36 +0530703 err = -ENOMEM;
Kishon Vijay Abraham I834b90512017-08-18 20:28:05 +0530704 dev_err(dev, "Cannot perform PCI test without BAR%d\n",
705 test_reg_bar);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530706 goto err_iounmap;
707 }
708
709 pci_set_drvdata(pdev, test);
710
711 id = ida_simple_get(&pci_endpoint_test_ida, 0, 0, GFP_KERNEL);
712 if (id < 0) {
Kishon Vijay Abraham I80068c92017-10-11 14:14:36 +0530713 err = id;
Gustavo Pimentel0e52ea62018-05-14 17:56:23 +0100714 dev_err(dev, "Unable to get id\n");
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530715 goto err_iounmap;
716 }
717
718 snprintf(name, sizeof(name), DRV_MODULE_NAME ".%d", id);
719 misc_device = &test->miscdev;
720 misc_device->minor = MISC_DYNAMIC_MINOR;
Kishon Vijay Abraham I139838f2017-10-11 14:14:37 +0530721 misc_device->name = kstrdup(name, GFP_KERNEL);
722 if (!misc_device->name) {
723 err = -ENOMEM;
724 goto err_ida_remove;
725 }
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530726 misc_device->fops = &pci_endpoint_test_fops,
727
728 err = misc_register(misc_device);
729 if (err) {
Gustavo Pimentel0e52ea62018-05-14 17:56:23 +0100730 dev_err(dev, "Failed to register device\n");
Kishon Vijay Abraham I139838f2017-10-11 14:14:37 +0530731 goto err_kfree_name;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530732 }
733
734 return 0;
735
Kishon Vijay Abraham I139838f2017-10-11 14:14:37 +0530736err_kfree_name:
737 kfree(misc_device->name);
738
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530739err_ida_remove:
740 ida_simple_remove(&pci_endpoint_test_ida, id);
741
742err_iounmap:
743 for (bar = BAR_0; bar <= BAR_5; bar++) {
744 if (test->bar[bar])
745 pci_iounmap(pdev, test->bar[bar]);
746 }
Gustavo Pimentele0332712018-07-19 10:32:20 +0200747 pci_endpoint_test_release_irq(test);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530748
Gustavo Pimentele0332712018-07-19 10:32:20 +0200749err_disable_irq:
750 pci_endpoint_test_free_irq_vectors(test);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530751 pci_release_regions(pdev);
752
753err_disable_pdev:
754 pci_disable_device(pdev);
755
756 return err;
757}
758
759static void pci_endpoint_test_remove(struct pci_dev *pdev)
760{
761 int id;
762 enum pci_barno bar;
763 struct pci_endpoint_test *test = pci_get_drvdata(pdev);
764 struct miscdevice *misc_device = &test->miscdev;
765
766 if (sscanf(misc_device->name, DRV_MODULE_NAME ".%d", &id) != 1)
767 return;
Dan Carpentera2db2662017-09-30 11:16:51 +0300768 if (id < 0)
769 return;
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530770
771 misc_deregister(&test->miscdev);
Kishon Vijay Abraham I139838f2017-10-11 14:14:37 +0530772 kfree(misc_device->name);
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530773 ida_simple_remove(&pci_endpoint_test_ida, id);
774 for (bar = BAR_0; bar <= BAR_5; bar++) {
775 if (test->bar[bar])
776 pci_iounmap(pdev, test->bar[bar]);
777 }
Gustavo Pimentele0332712018-07-19 10:32:20 +0200778
779 pci_endpoint_test_release_irq(test);
780 pci_endpoint_test_free_irq_vectors(test);
781
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530782 pci_release_regions(pdev);
783 pci_disable_device(pdev);
784}
785
Kishon Vijay Abraham I5bb04b12019-03-25 15:09:46 +0530786static const struct pci_endpoint_test_data am654_data = {
787 .test_reg_bar = BAR_2,
788 .alignment = SZ_64K,
789 .irq_type = IRQ_TYPE_MSI,
790};
791
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530792static const struct pci_device_id pci_endpoint_test_tbl[] = {
793 { PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_DRA74x) },
794 { PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_DRA72x) },
Xiaowei Bao85cef372019-02-21 11:16:20 +0800795 { PCI_DEVICE(PCI_VENDOR_ID_FREESCALE, 0x81c0) },
Gustavo Pimentel1f418f42019-06-04 15:29:25 +0200796 { PCI_DEVICE_DATA(SYNOPSYS, EDDA, NULL) },
Kishon Vijay Abraham I5bb04b12019-03-25 15:09:46 +0530797 { PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_AM654),
798 .driver_data = (kernel_ulong_t)&am654_data
799 },
Kishon Vijay Abraham I2c156ac2017-03-27 15:15:14 +0530800 { }
801};
802MODULE_DEVICE_TABLE(pci, pci_endpoint_test_tbl);
803
804static struct pci_driver pci_endpoint_test_driver = {
805 .name = DRV_MODULE_NAME,
806 .id_table = pci_endpoint_test_tbl,
807 .probe = pci_endpoint_test_probe,
808 .remove = pci_endpoint_test_remove,
809};
810module_pci_driver(pci_endpoint_test_driver);
811
812MODULE_DESCRIPTION("PCI ENDPOINT TEST HOST DRIVER");
813MODULE_AUTHOR("Kishon Vijay Abraham I <kishon@ti.com>");
814MODULE_LICENSE("GPL v2");