forked from Mellanox/rshim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rshim_pcie.c
522 lines (425 loc) · 12.6 KB
/
rshim_pcie.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
/*
* rshim_pcie.c - Mellanox RShim PCIe host driver
*
* Copyright 2017 Mellanox Technologies. All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, version 2.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
* NON INFRINGEMENT. See the GNU General Public License for
* more details.
*/
#include <linux/pci.h>
#include <linux/version.h>
#include <linux/sched.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0)
#include <linux/sched/signal.h>
#endif
#include "rshim.h"
/* Disable RSim access. */
static int rshim_disable;
module_param(rshim_disable, int, 0444);
MODULE_PARM_DESC(rshim_disable, "Disable rshim (obsoleted)");
/** Our Vendor/Device IDs. */
#define TILERA_VENDOR_ID 0x15b3
#define BLUEFIELD1_DEVICE_ID 0xc2d2
#define BLUEFIELD2_DEVICE_ID 0xc2d3
/** The offset in BAR2 of the RShim region. */
#define PCI_RSHIM_WINDOW_OFFSET 0x0
/** The size the RShim region. */
#define PCI_RSHIM_WINDOW_SIZE 0x100000
struct rshim_pcie {
/* RShim backend structure. */
struct rshim_backend bd;
struct pci_dev *pci_dev;
/* RShim BAR size. */
uint64_t bar0_size;
/* Address of the RShim registers. */
u8 __iomem *rshim_regs;
/* Keep track of number of 8-byte word writes */
u8 write_count;
};
#ifndef CONFIG_64BIT
/* Wait until the RSH_BYTE_ACC_CTL pending bit is cleared */
static int rshim_byte_acc_pending_wait(struct rshim_pcie *dev)
{
int retry = 0;
u32 read_value;
do {
read_value = readl(dev->rshim_regs +
(RSH_BYTE_ACC_CTL | (RSHIM_CHANNEL << 16)));
if (signal_pending(current))
return -EINTR;
if (++retry > LOCK_RETRY_CNT)
return -ETIMEDOUT;
} while (read_value & RSH_BYTE_ACC_PENDING);
return 0;
}
/* Acquire BAW Interlock */
static int rshim_byte_acc_lock_acquire(struct rshim_pcie *dev)
{
int retry = 0;
u32 read_value;
do {
if (signal_pending(current))
return -EINTR;
if (++retry > LOCK_RETRY_CNT)
return -ETIMEDOUT;
read_value = readl(dev->rshim_regs +
(RSH_BYTE_ACC_INTERLOCK | (RSHIM_CHANNEL << 16)));
} while (!(read_value & 0x1));
return 0;
}
/* Release BAW Interlock */
static void rshim_byte_acc_lock_release(struct rshim_pcie *dev)
{
writel(0, dev->rshim_regs +
(RSH_BYTE_ACC_INTERLOCK | (RSHIM_CHANNEL << 16)));
}
/*
* RShim read/write methods for 32-bit systems
* Mechanism to do an 8-byte access to the Rshim using
* two 4-byte accesses through the Rshim Byte Access Widget.
*/
static int rshim_byte_acc_read(struct rshim_pcie *dev, int addr, u64 *result)
{
int retval;
u32 read_value;
u64 read_result;
/* Wait for RSH_BYTE_ACC_CTL pending bit to be cleared */
retval = rshim_byte_acc_pending_wait(dev);
if (retval)
return retval;
if (dev->pci_dev->device == BLUEFIELD2_DEVICE_ID) {
/* Acquire RSH_BYTE_ACC_INTERLOCK */
retval = rshim_byte_acc_lock_acquire(dev);
if (retval)
return retval;
}
/* Write target address to RSH_BYTE_ACC_ADDR */
writel(addr, dev->rshim_regs +
(RSH_BYTE_ACC_ADDR | (RSHIM_CHANNEL << 16)));
/* Write control and trigger bits to perform read */
writel(RSH_BYTE_ACC_SIZE_4BYTE | RSH_BYTE_ACC_READ_TRIGGER,
dev->rshim_regs + (RSH_BYTE_ACC_CTL | (RSHIM_CHANNEL << 16)));
/* Wait for RSH_BYTE_ACC_CTL pending bit to be cleared */
retval = rshim_byte_acc_pending_wait(dev);
if (retval)
goto exit_read;
/* Read RSH_BYTE_ACC_RDAT to read lower 32-bits of data */
read_value = readl(dev->rshim_regs +
(RSH_BYTE_ACC_RDAT | (RSHIM_CHANNEL << 16)));
read_result = (u64)read_value << 32;
/* Wait for RSH_BYTE_ACC_CTL pending bit to be cleared */
retval = rshim_byte_acc_pending_wait(dev);
if (retval)
goto exit_read;
/* Read RSH_BYTE_ACC_RDAT to read upper 32-bits of data */
read_value = readl(dev->rshim_regs +
(RSH_BYTE_ACC_RDAT | (RSHIM_CHANNEL << 16)));
read_result |= (u64)read_value;
*result = be64_to_cpu(read_result);
exit_read:
/* Release RSH_BYTE_ACC_INTERLOCK */
if (dev->pci_dev->device == BLUEFIELD2_DEVICE_ID)
rshim_byte_acc_lock_release(dev);
return retval;
}
static int rshim_byte_acc_write(struct rshim_pcie *dev, int addr, u64 value)
{
int retval;
/* Wait for RSH_BYTE_ACC_CTL pending bit to be cleared */
retval = rshim_byte_acc_pending_wait(dev);
if (retval)
return retval;
if (dev->pci_dev->device == BLUEFIELD2_DEVICE_ID) {
/* Acquire RSH_BYTE_ACC_INTERLOCK */
retval = rshim_byte_acc_lock_acquire(dev);
if (retval)
return retval;
}
/* Write target address to RSH_BYTE_ACC_ADDR */
writel(addr, dev->rshim_regs +
(RSH_BYTE_ACC_ADDR | (RSHIM_CHANNEL << 16)));
/* Write control bits to RSH_BYTE_ACC_CTL */
writel(RSH_BYTE_ACC_SIZE_4BYTE, dev->rshim_regs +
(RSH_BYTE_ACC_CTL | (RSHIM_CHANNEL << 16)));
/* Write lower 32 bits of data to TRIO_CR_GW_DATA */
writel((u32)(value >> 32), dev->rshim_regs +
(RSH_BYTE_ACC_WDAT | (RSHIM_CHANNEL << 16)));
/* Wait for RSH_BYTE_ACC_CTL pending bit to be cleared */
retval = rshim_byte_acc_pending_wait(dev);
if (retval)
goto exit_write;
/* Write upper 32 bits of data to TRIO_CR_GW_DATA */
writel((u32)(value), dev->rshim_regs +
(RSH_BYTE_ACC_WDAT | (RSHIM_CHANNEL << 16)));
exit_write:
/* Release RSH_BYTE_ACC_INTERLOCK */
if (dev->pci_dev->device == BLUEFIELD2_DEVICE_ID)
rshim_byte_acc_lock_release(dev);
return retval;
}
#endif /* CONFIG_64BIT */
/* RShim read/write routines */
static int rshim_pcie_read(struct rshim_backend *bd, int chan, int addr,
u64 *result)
{
struct rshim_pcie *dev = container_of(bd, struct rshim_pcie, bd);
int retval = 0;
if (!bd->has_rshim || !dev->pci_dev)
return -ENODEV;
dev->write_count = 0;
#ifndef CONFIG_64BIT
retval = rshim_byte_acc_read(dev, RSH_CHANNEL_BASE(chan) + addr,
result);
#else
*result = readq(dev->rshim_regs + (addr | (chan << 16)));
#endif
return retval;
}
static int rshim_pcie_write(struct rshim_backend *bd, int chan, int addr,
u64 value)
{
struct rshim_pcie *dev = container_of(bd, struct rshim_pcie, bd);
u64 result;
int retval = 0;
if (!bd->has_rshim || !dev->pci_dev)
return -ENODEV;
/*
* We cannot stream large numbers of PCIe writes to the RShim's BAR.
* Instead, we must write no more than 15 8-byte words before
* doing a read from another register within the BAR,
* which forces previous writes to drain.
*/
if (dev->pci_dev->device == BLUEFIELD1_DEVICE_ID) {
if (dev->write_count == 15) {
mb();
rshim_pcie_read(bd, RSHIM_CHANNEL, RSH_SCRATCHPAD,
&result);
}
dev->write_count++;
}
#ifndef CONFIG_64BIT
retval = rshim_byte_acc_write(dev, RSH_CHANNEL_BASE(chan) + addr,
value);
#else
writeq(value, dev->rshim_regs + (addr | (chan << 16)));
#endif
return retval;
}
static void rshim_pcie_delete(struct kref *kref)
{
struct rshim_backend *bd;
struct rshim_pcie *dev;
bd = container_of(kref, struct rshim_backend, kref);
dev = container_of(bd, struct rshim_pcie, bd);
rshim_deregister(bd);
if (dev->pci_dev)
dev_set_drvdata(&dev->pci_dev->dev, NULL);
kfree(dev);
}
/* Probe routine */
static int rshim_pcie_probe(struct pci_dev *pci_dev,
const struct pci_device_id *id)
{
struct rshim_pcie *dev;
struct rshim_backend *bd;
char *pcie_dev_name;
int ret, allocfail = 0, max_name_len = 64;
pcie_dev_name = kzalloc(max_name_len, GFP_KERNEL);
if (!pcie_dev_name)
return -ENOMEM;
ret = snprintf(pcie_dev_name, max_name_len, "pcie-%04x:%02x:%02x.%x",
pci_domain_nr(pci_dev->bus),
pci_dev->bus->number, PCI_SLOT(pci_dev->devfn),
PCI_FUNC(pci_dev->devfn));
if (WARN_ON_ONCE(ret >= max_name_len)) {
ret = -EINVAL;
goto error;
}
pr_debug("Probing %s\n", pcie_dev_name);
rshim_lock();
/* Find the backend. */
bd = rshim_find(pcie_dev_name);
if (bd) {
kref_get(&bd->kref);
dev = container_of(bd, struct rshim_pcie, bd);
} else {
/* Get some memory for this device's driver state. */
dev = kzalloc(sizeof(*dev), GFP_KERNEL);
if (dev == NULL) {
ret = -ENOMEM;
rshim_unlock();
goto error;
}
bd = &dev->bd;
bd->dev_name = pcie_dev_name;
bd->read_rshim = rshim_pcie_read;
bd->write_rshim = rshim_pcie_write;
bd->destroy = rshim_pcie_delete;
bd->owner = THIS_MODULE;
dev->write_count = 0;
mutex_init(&bd->mutex);
}
ret = rshim_fifo_alloc(bd);
if (ret) {
rshim_unlock();
dev_err(&pci_dev->dev, "Failed to allocate fifo\n");
ret = -ENOMEM;
goto enable_failed;
}
allocfail |= rshim_fifo_alloc(bd);
if (!bd->read_buf) {
bd->read_buf = kzalloc(READ_BUF_SIZE,
GFP_KERNEL);
}
allocfail |= bd->read_buf == 0;
if (!bd->write_buf) {
bd->write_buf = kzalloc(WRITE_BUF_SIZE,
GFP_KERNEL);
}
allocfail |= bd->write_buf == 0;
if (allocfail) {
rshim_unlock();
dev_err(&pci_dev->dev, "can't allocate buffers");
ret = -ENOMEM;
goto enable_failed;
}
rshim_unlock();
/* Enable the device. */
ret = pci_enable_device(pci_dev);
if (ret) {
dev_err(&pci_dev->dev, "Device enable failed with error %d",
ret);
goto enable_failed;
}
/* Initialize object */
dev->pci_dev = pci_dev;
dev_set_drvdata(&pci_dev->dev, dev);
dev->bar0_size = pci_resource_len(pci_dev, 0);
/* Fail if the BAR is unassigned. */
if (!dev->bar0_size) {
dev_err(&pci_dev->dev, "BAR unassigned, run 'lspci -v'.");
ret = -ENOMEM;
goto rshim_map_failed;
}
/* Map in the RShim registers. */
dev->rshim_regs = ioremap(pci_resource_start(pci_dev, 0) +
PCI_RSHIM_WINDOW_OFFSET,
PCI_RSHIM_WINDOW_SIZE);
if (dev->rshim_regs == NULL) {
dev_err(&pci_dev->dev, "Failed to map RShim registers\n");
ret = -ENOMEM;
goto rshim_map_failed;
}
/* Enable PCI bus mastering. */
pci_set_master(pci_dev);
/*
* Register rshim here since it needs to detect whether other backend
* has already registered or not, which involves reading/writting rshim
* registers and has assumption that the under layer is working.
*/
rshim_lock();
bd->has_rshim = 1;
bd->has_tm = 1;
if (!bd->registered) {
ret = rshim_register(bd);
if (ret) {
rshim_unlock();
goto rshim_map_failed;
} else
pcie_dev_name = NULL;
}
rshim_unlock();
/* Notify that the device is attached */
mutex_lock(&bd->mutex);
ret = rshim_notify(bd, RSH_EVENT_ATTACH, 0);
mutex_unlock(&bd->mutex);
if (ret)
goto rshim_map_failed;
return 0;
rshim_map_failed:
pci_disable_device(pci_dev);
enable_failed:
rshim_lock();
kref_put(&bd->kref, rshim_pcie_delete);
rshim_unlock();
error:
kfree(pcie_dev_name);
return ret;
}
/* Called via pci_unregister_driver() when the module is removed. */
static void rshim_pcie_remove(struct pci_dev *pci_dev)
{
struct rshim_pcie *dev = dev_get_drvdata(&pci_dev->dev);
int flush_wq;
if (!dev)
return;
mutex_lock(&dev->bd.mutex);
/*
* Reset TRIO_PCIE_INTFC_RX_BAR0_ADDR_MASK and TRIO_MAP_RSH_BASE.
* Otherwise, upon host reboot, the two registers will retain previous
* values that don't match the new BAR0 address that is assigned to
* the PCIe ports, causing host MMIO access to RShim to fail.
*/
rshim_pcie_write(&dev->bd, RSHIM_CHANNEL,
RSH_SWINT & 0xFFFF, RSH_INT_VEC0_RTC__SWINT3_MASK);
/* Clear the flags before unmapping rshim registers to avoid race. */
dev->bd.has_rshim = 0;
dev->bd.has_tm = 0;
mutex_unlock(&dev->bd.mutex);
if (dev->rshim_regs)
iounmap(dev->rshim_regs);
rshim_notify(&dev->bd, RSH_EVENT_DETACH, 0);
mutex_lock(&dev->bd.mutex);
flush_wq = !cancel_delayed_work(&dev->bd.work);
if (flush_wq)
flush_workqueue(rshim_wq);
dev->bd.has_cons_work = 0;
kfree(dev->bd.read_buf);
kfree(dev->bd.write_buf);
rshim_fifo_free(&dev->bd);
dev->pci_dev = NULL;
mutex_unlock(&dev->bd.mutex);
rshim_lock();
kref_put(&dev->bd.kref, rshim_pcie_delete);
rshim_unlock();
pci_disable_device(pci_dev);
dev_set_drvdata(&pci_dev->dev, NULL);
}
static struct pci_device_id rshim_pcie_table[] = {
{ PCI_DEVICE(TILERA_VENDOR_ID, BLUEFIELD1_DEVICE_ID), },
{ PCI_DEVICE(TILERA_VENDOR_ID, BLUEFIELD2_DEVICE_ID), },
{ 0, }
};
MODULE_DEVICE_TABLE(pci, rshim_pcie_table);
static struct pci_driver rshim_pcie_driver = {
.name = "rshim_pcie",
.probe = rshim_pcie_probe,
.remove = rshim_pcie_remove,
.id_table = rshim_pcie_table,
};
static int __init rshim_pcie_init(void)
{
int result;
/* Register the driver */
result = pci_register_driver(&rshim_pcie_driver);
if (result)
ERROR("pci_register failed, error number %d", result);
return result;
}
static void __exit rshim_pcie_exit(void)
{
/* Unregister the driver. */
pci_unregister_driver(&rshim_pcie_driver);
}
module_init(rshim_pcie_init);
module_exit(rshim_pcie_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Mellanox Technologies");
MODULE_VERSION("0.8");