aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/controller/pci-octeontx2-pem.c
blob: 1e14dc0653229d7e7659e8e92dbfd690056c40f8 (plain)
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
// SPDX-License-Identifier: GPL-2.0
/* Marvell OcteonTx2 PCIe host controller
 *
 * Copyright (C) 2019 Marvell International Ltd.
 *
 * 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/bitfield.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/of_address.h>
#include <linux/of_pci.h>
#include <linux/pci-acpi.h>
#include <linux/pci-ecam.h>
#include <linux/platform_device.h>
#include "../pci.h"

#if defined(CONFIG_PCI_HOST_OCTEONTX2_PEM)

/* Bridge config space reads/writes done using
 * these registers.
 */
#define PEM_CFG_WR			0x018
#define PEM_CFG_RD			0x020
#define PEM_IB_MERGE_TIMER_CTL		0x1C0

#define PCIERC_RAS_EINJ_EN		0x348
#define PCIERC_RAS_EINJ_CTL6CMPP0	0x364
#define PCIERC_RAS_EINJ_CTL6CMPV0	0x374
#define PCIERC_RAS_EINJ_CTL6CHGP1	0x388
#define PCIERC_RAS_EINJ_CTL6CHGV1	0x398
#define PCIERC_RAS_EINJ_CTL6PE		0x3A4
#define PCIERC_RASDP_EP_CTL		0x420
#define PCIERC_RASDP_DE_ME		0x440

struct octeontx2_pem_pci {
	u32		ea_entry[3];
	void __iomem	*pem_reg_base;
};

static int octeontx2_pem_bridge_read(struct pci_bus *bus, unsigned int devfn,
				     int where, int size, u32 *val)
{
	struct pci_config_window *cfg = bus->sysdata;
	struct octeontx2_pem_pci *pem_pci;
	u64 read_val;

	if (devfn != 0 || where >= 2048) {
		*val = ~0;
		return PCIBIOS_DEVICE_NOT_FOUND;
	}

	pem_pci = (struct octeontx2_pem_pci *)cfg->priv;

	/*
	 * 32-bit accesses only.  Write the address to the low order
	 * bits of PEM_CFG_RD, then trigger the read by reading back.
	 * The config data lands in the upper 32-bits of PEM_CFG_RD.
	 */
	read_val = where & ~3ull;
	writeq(read_val, pem_pci->pem_reg_base + PEM_CFG_RD);
	read_val = readq(pem_pci->pem_reg_base + PEM_CFG_RD);
	read_val >>= 32;

	/* HW reset value at few config space locations are
	 * garbage, fix them.
	 */
	switch (where & ~3) {
	case 0x00: /* DevID & VenID */
		read_val = 0xA02D177D;
		break;
	case 0x04:
		read_val = 0x00100006;
		break;
	case 0x08:
		read_val = 0x06040100;
		break;
	case 0x0c:
		read_val = 0x00010000;
		break;
	case 0x18:
		read_val = 0x00010100;
		break;
	case 0x40:
		read_val &= 0xffff00ff;
		read_val |= 0x00005000; /* In RC mode, point to EA capability */
		break;
	case 0x5c: /* EA_ENTRY2 */
		read_val = pem_pci->ea_entry[0];
		break;
	case 0x60: /* EA_ENTRY3 */
		read_val = pem_pci->ea_entry[1];
		break;
	case 0x64: /* EA_ENTRY4 */
		read_val = pem_pci->ea_entry[2];
		break;
	case 0x70: /* Express Cap */
		/* HW reset value is '0', set PME interrupt vector to 1 */
		if (!(read_val & (0x1f << 25)))
			read_val |= (1u << 25);
		break;
	default:
		break;
	}
	read_val >>= (8 * (where & 3));
	switch (size) {
	case 1:
		read_val &= 0xff;
		break;
	case 2:
		read_val &= 0xffff;
		break;
	default:
		break;
	}
	*val = read_val;
	return PCIBIOS_SUCCESSFUL;
}

static int octeontx2_pem_config_read(struct pci_bus *bus, unsigned int devfn,
				   int where, int size, u32 *val)
{
	struct pci_config_window *cfg = bus->sysdata;

	if (bus->number < cfg->busr.start ||
	    bus->number > cfg->busr.end)
		return PCIBIOS_DEVICE_NOT_FOUND;

	/*
	 * The first device on the bus is the PEM PCIe bridge.
	 * Special case its config access.
	 */
	if (bus->number == cfg->busr.start)
		return octeontx2_pem_bridge_read(bus, devfn, where, size, val);

	return pci_generic_config_read(bus, devfn, where, size, val);
}

/*
 * Some of the w1c_bits below also include read-only or non-writable
 * reserved bits, this makes the code simpler and is OK as the bits
 * are not affected by writing zeros to them.
 */
static u32 octeontx2_pem_bridge_w1c_bits(u64 where_aligned)
{
	u32 w1c_bits = 0;

	switch (where_aligned) {
	case 0x04: /* Command/Status */
	case 0x1c: /* Base and I/O Limit/Secondary Status */
		w1c_bits = 0xff000000;
		break;
	case 0x44: /* Power Management Control and Status */
		w1c_bits = 0xfffffe00;
		break;
	case 0x78: /* Device Control/Device Status */
	case 0x80: /* Link Control/Link Status */
	case 0x88: /* Slot Control/Slot Status */
	case 0x90: /* Root Status */
	case 0xa0: /* Link Control 2 Registers/Link Status 2 */
		w1c_bits = 0xffff0000;
		break;
	case 0x104: /* Uncorrectable Error Status */
	case 0x110: /* Correctable Error Status */
	case 0x130: /* Error Status */
	case 0x180: /* Lane error status */
		w1c_bits = 0xffffffff;
		break;
	default:
		break;
	}
	return w1c_bits;
}

/* Some bits must be written to one so they appear to be read-only. */
static u32 octeontx2_pem_bridge_w1_bits(u64 where_aligned)
{
	u32 w1_bits;

	switch (where_aligned) {
	case 0x1c: /* I/O Base / I/O Limit, Secondary Status */
		/* Force 32-bit I/O addressing. */
		w1_bits = 0x0101;
		break;
	case 0x24: /* Prefetchable Memory Base / Prefetchable Memory Limit */
		/* Force 64-bit addressing */
		w1_bits = 0x00010001;
		break;
	default:
		w1_bits = 0;
		break;
	}
	return w1_bits;
}

static int octeontx2_pem_bridge_write(struct pci_bus *bus, unsigned int devfn,
				    int where, int size, u32 val)
{
	struct pci_config_window *cfg = bus->sysdata;
	struct octeontx2_pem_pci *pem_pci;
	u64 where_aligned = where & ~3ull;
	u64 write_val, read_val;
	u32 mask = 0;


	if (devfn != 0 || where >= 2048)
		return PCIBIOS_DEVICE_NOT_FOUND;

	pem_pci = (struct octeontx2_pem_pci *)cfg->priv;

	/*
	 * 32-bit accesses only.  If the write is for a size smaller
	 * than 32-bits, we must first read the 32-bit value and merge
	 * in the desired bits and then write the whole 32-bits back
	 * out.
	 */
	switch (size) {
	case 1:
		writeq(where_aligned, pem_pci->pem_reg_base + PEM_CFG_RD);
		read_val = readq(pem_pci->pem_reg_base + PEM_CFG_RD);
		read_val >>= 32;
		mask = ~(0xff << (8 * (where & 3)));
		read_val &= mask;
		val = (val & 0xff) << (8 * (where & 3));
		val |= (u32)read_val;
		break;
	case 2:
		writeq(where_aligned, pem_pci->pem_reg_base + PEM_CFG_RD);
		read_val = readq(pem_pci->pem_reg_base + PEM_CFG_RD);
		read_val >>= 32;
		mask = ~(0xffff << (8 * (where & 3)));
		read_val &= mask;
		val = (val & 0xffff) << (8 * (where & 3));
		val |= (u32)read_val;
		break;
	default:
		break;
	}

	/*
	 * By expanding the write width to 32 bits, we may
	 * inadvertently hit some W1C bits that were not intended to
	 * be written.  Calculate the mask that must be applied to the
	 * data to be written to avoid these cases.
	 */
	if (mask) {
		u32 w1c_bits = octeontx2_pem_bridge_w1c_bits(where);

		if (w1c_bits) {
			mask &= w1c_bits;
			val &= ~mask;
		}
	}

	/*
	 * Some bits must be read-only with value of one.  Since the
	 * access method allows these to be cleared if a zero is
	 * written, force them to one before writing.
	 */
	val |= octeontx2_pem_bridge_w1_bits(where_aligned);

	/*
	 * Low order bits are the config address, the high order 32
	 * bits are the data to be written.
	 */
	write_val = (((u64)val) << 32) | where_aligned;
	writeq(write_val, pem_pci->pem_reg_base + PEM_CFG_WR);
	return PCIBIOS_SUCCESSFUL;
}

static void octeontx2_be_workaround_init(struct pci_bus *bus)
{
	u32 val;

	/* Ensure that PCIERC_RASDP_DE_ME.ERR_MODE is set to 0 */
	octeontx2_pem_bridge_read(bus, 0x00,
				  PCIERC_RASDP_DE_ME, 4, &val);
	octeontx2_pem_bridge_write(bus, 0x00,
				   PCIERC_RASDP_DE_ME, 4, val & ~BIT(0));

	/* Disable parity error correction */
	octeontx2_pem_bridge_read(bus, 0x00,
				  PCIERC_RASDP_EP_CTL, 4, &val);
	octeontx2_pem_bridge_write(bus, 0x00,
				   PCIERC_RASDP_EP_CTL, 4, val | BIT(0));

	/* Enable RAS to change header
	 * PCIERC_RAS_EINJ_EN.EINJ0_EN.set(0);
	 * PCIERC_RAS_EINJ_EN.EINJ1_EN.set(0);
	 * PCIERC_RAS_EINJ_EN.EINJ2_EN.set(0);
	 * PCIERC_RAS_EINJ_EN.EINJ3_EN.set(0);
	 * PCIERC_RAS_EINJ_EN.EINJ4_EN.set(0);
	 * PCIERC_RAS_EINJ_EN.EINJ5_EN.set(0);
	 * PCIERC_RAS_EINJ_EN.EINJ6_EN.set(1);
	 */
	octeontx2_pem_bridge_write(bus, 0x00,
				   PCIERC_RAS_EINJ_EN, 4, BIT(6));

	/* Set up error injection count to 1 and
	 * set type to TLP and INV_CNTRL must be 0.
	 */
	octeontx2_pem_bridge_write(bus, 0x00,
				   PCIERC_RAS_EINJ_CTL6PE, 4, 1);

	/* Set up compare point to compare Fmt/Type field in TLP Header word 0
	 * Where bits[31:0] = tlp_dw[7:0], tlp_dw[15:18],
	 * tlp_dw[23:16], tlp_dw[31:24].
	 *
	 * PCIERC_RAS_EINJ_CTL6CMPP0.EINJ6_COM_PT_H0.set(32'hfe00_0000);
	 */
	octeontx2_pem_bridge_write(bus, 0x00,
				   PCIERC_RAS_EINJ_CTL6CMPP0, 4, 0xFE000000);

	/* Set up the value to compare against,
	 * look for Fmt/Type to indicate CfgRd/CfWr - both type 0 or 1.
	 * Where bits[31:0] = tlp_dw[7:0], tlp_dw[15:18],
	 * tlp_dw[23:16], tlp_dw[31:24]
	 */
	octeontx2_pem_bridge_write(bus, 0x00,
				   PCIERC_RAS_EINJ_CTL6CMPV0, 4, 0x44000000);

	/* Set up the bit position in TLP Header word 1 to replace
	 * (LBE is bits 7:4, FBE is bits 3:0).
	 *
	 * Where bits[31:0] = tlp_dw[7:0], tlp_dw[15:18],
	 * tlp_dw[23:16], tlp_dw[31:24].
	 */
	octeontx2_pem_bridge_write(bus, 0x00,
				   PCIERC_RAS_EINJ_CTL6CHGP1, 4, 0xFF);
}

static void octeontx2_be_workaround(struct pci_bus *bus, int where,
				    int size, u32 val)
{
	struct pci_host_bridge *rc;
	u32 reg, be = 0;

	rc = pci_find_host_bridge(bus);

	/* Setup RAS to inject one error */
	octeontx2_be_workaround_init(rc->bus);

	/* Get byte-enable to inject into TLP */
	where &= 0x03;
	switch (size) {
	case 1:
		be = 1 << where;
		break;
	case 2:
		be = 3 << where;
		break;
	case 4:
		be = 0xF;
	}

	/* Set up the value you'd like to use for FBE (Cfg ops must have LBE==0)
	 * Where bits[31:0] = tlp_dw[7:0], tlp_dw[15:18],
	 * tlp_dw[23:16], tlp_dw[31:24].
	 */
	octeontx2_pem_bridge_write(rc->bus, 0x00,
				   PCIERC_RAS_EINJ_CTL6CHGV1, 4, be);

	/* To be absolutely sure that the ECAM access does not get to
	 * the MAC prior to the PCIERC register updates that are setting
	 * up for that ECAM access, SW should read back one of the
	 * registers it wrote before launching the ECAM access.
	 */
	octeontx2_pem_bridge_read(rc->bus, 0x00,
				  PCIERC_RAS_EINJ_CTL6CHGV1, 4, &reg);
}

static int octeontx2_pem_config_write(struct pci_bus *bus, unsigned int devfn,
				    int where, int size, u32 val)
{
	struct pci_config_window *cfg = bus->sysdata;

	if (bus->number < cfg->busr.start ||
	    bus->number > cfg->busr.end)
		return PCIBIOS_DEVICE_NOT_FOUND;
	/*
	 * The first device on the bus is the PEM PCIe bridge.
	 * Special case its config access.
	 */
	if (bus->number == cfg->busr.start)
		return octeontx2_pem_bridge_write(bus, devfn, where, size, val);

	octeontx2_be_workaround(bus, where, size, val);

	return pci_generic_config_write(bus, devfn, where, size, val);
}

static int octeontx2_pem_init(struct device *dev, struct pci_config_window *cfg,
			    struct resource *res_pem)
{
	struct octeontx2_pem_pci *pem_pci;
	resource_size_t bar4_start;
	u64 val;

	pem_pci = devm_kzalloc(dev, sizeof(*pem_pci), GFP_KERNEL);
	if (!pem_pci)
		return -ENOMEM;

	pem_pci->pem_reg_base = devm_ioremap(dev, res_pem->start, 0x10000);
	if (!pem_pci->pem_reg_base)
		return -ENOMEM;

	/* As per HW Errata 34726, an issue exists whereby inbound write
	 * merging may cause undefined operation. Hence disabling it.
	 *
	 * Need to revisit this for future silicon passes and versions.
	 */
	val = readq(pem_pci->pem_reg_base + PEM_IB_MERGE_TIMER_CTL);
	val |= BIT_ULL(10);
	writeq(val, pem_pci->pem_reg_base + PEM_IB_MERGE_TIMER_CTL);

	/*
	 * The MSI-X BAR for the PEM and AER interrupts is located at
	 * a fixed offset from the PEM register base.  Generate a
	 * fragment of the synthesized Enhanced Allocation capability
	 * structure here for the BAR.
	 */
	bar4_start = res_pem->start + 0xf00000000;
	pem_pci->ea_entry[0] = (u32)bar4_start | 2;
	pem_pci->ea_entry[1] = (u32)(res_pem->end - bar4_start) & ~3u;
	pem_pci->ea_entry[2] = (u32)(bar4_start >> 32);

	cfg->priv = pem_pci;
	return 0;
}

static int octeontx2_pem_platform_init(struct pci_config_window *cfg)
{
	struct device *dev = cfg->parent;
	struct platform_device *pdev;
	struct resource *res_pem;

	if (!dev->of_node)
		return -EINVAL;

	pdev = to_platform_device(dev);

	/*
	 * The second register range is the PEM bridge to the PCIe
	 * bus.  It has a different config access method than those
	 * devices behind the bridge.
	 */
	res_pem = platform_get_resource(pdev, IORESOURCE_MEM, 1);
	if (!res_pem) {
		dev_err(dev, "missing \"reg[1]\"property\n");
		return -EINVAL;
	}

	return octeontx2_pem_init(dev, cfg, res_pem);
}

static struct pci_ecam_ops pci_octeontx2_pem_ops = {
	.bus_shift	= 20,
	.init		= octeontx2_pem_platform_init,
	.pci_ops	= {
		.map_bus	= pci_ecam_map_bus,
		.read		= octeontx2_pem_config_read,
		.write		= octeontx2_pem_config_write,
	}
};

static const struct of_device_id octeontx2_pem_of_match[] = {
	{ .compatible = "marvell,pci-host-octeontx2-pem" },
	{ },
};

static int octeontx2_pem_probe(struct platform_device *pdev)
{
	return pci_host_common_probe(pdev, &pci_octeontx2_pem_ops);
}

static struct platform_driver octeontx2_pem_driver = {
	.driver = {
		.name = KBUILD_MODNAME,
		.of_match_table = octeontx2_pem_of_match,
		.suppress_bind_attrs = true,
	},
	.probe = octeontx2_pem_probe,
};
builtin_platform_driver(octeontx2_pem_driver);

#endif