dpc.c 10.0 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3
/*
 * PCI Express Downstream Port Containment services driver
4 5
 * Author: Keith Busch <keith.busch@intel.com>
 *
6 7 8
 * Copyright (C) 2016 Intel Corp.
 */

9 10
#define dev_fmt(fmt) "DPC: " fmt

11
#include <linux/aer.h>
12 13
#include <linux/delay.h>
#include <linux/interrupt.h>
14
#include <linux/init.h>
15
#include <linux/pci.h>
16

17
#include "portdrv.h"
K
Keith Busch 已提交
18
#include "../pci.h"
19 20 21

struct dpc_dev {
	struct pcie_device	*dev;
22
	u16			cap_pos;
23
	bool			rp_extensions;
24
	u8			rp_log_size;
D
Dongdong Liu 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
};

static const char * const rp_pio_error_string[] = {
	"Configuration Request received UR Completion",	 /* Bit Position 0  */
	"Configuration Request received CA Completion",	 /* Bit Position 1  */
	"Configuration Request Completion Timeout",	 /* Bit Position 2  */
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	"I/O Request received UR Completion",		 /* Bit Position 8  */
	"I/O Request received CA Completion",		 /* Bit Position 9  */
	"I/O Request Completion Timeout",		 /* Bit Position 10 */
	NULL,
	NULL,
	NULL,
	NULL,
	NULL,
	"Memory Request received UR Completion",	 /* Bit Position 16 */
	"Memory Request received CA Completion",	 /* Bit Position 17 */
	"Memory Request Completion Timeout",		 /* Bit Position 18 */
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
static struct dpc_dev *to_dpc_dev(struct pci_dev *dev)
{
	struct device *device;

	device = pcie_port_find_device(dev, PCIE_PORT_SERVICE_DPC);
	if (!device)
		return NULL;
	return get_service_data(to_pcie_device(device));
}

void pci_save_dpc_state(struct pci_dev *dev)
{
	struct dpc_dev *dpc;
	struct pci_cap_saved_state *save_state;
	u16 *cap;

	if (!pci_is_pcie(dev))
		return;

	dpc = to_dpc_dev(dev);
	if (!dpc)
		return;

	save_state = pci_find_saved_ext_cap(dev, PCI_EXT_CAP_ID_DPC);
	if (!save_state)
		return;

	cap = (u16 *)&save_state->cap.data[0];
	pci_read_config_word(dev, dpc->cap_pos + PCI_EXP_DPC_CTL, cap);
}

void pci_restore_dpc_state(struct pci_dev *dev)
{
	struct dpc_dev *dpc;
	struct pci_cap_saved_state *save_state;
	u16 *cap;

	if (!pci_is_pcie(dev))
		return;

	dpc = to_dpc_dev(dev);
	if (!dpc)
		return;

	save_state = pci_find_saved_ext_cap(dev, PCI_EXT_CAP_ID_DPC);
	if (!save_state)
		return;

	cap = (u16 *)&save_state->cap.data[0];
	pci_write_config_word(dev, dpc->cap_pos + PCI_EXP_DPC_CTL, *cap);
}

101 102 103 104
static int dpc_wait_rp_inactive(struct dpc_dev *dpc)
{
	unsigned long timeout = jiffies + HZ;
	struct pci_dev *pdev = dpc->dev->port;
105
	u16 cap = dpc->cap_pos, status;
106

107
	pci_read_config_word(pdev, cap + PCI_EXP_DPC_STATUS, &status);
108 109 110
	while (status & PCI_EXP_DPC_RP_BUSY &&
					!time_after(jiffies, timeout)) {
		msleep(10);
111
		pci_read_config_word(pdev, cap + PCI_EXP_DPC_STATUS, &status);
112 113
	}
	if (status & PCI_EXP_DPC_RP_BUSY) {
114
		pci_warn(pdev, "root port still busy\n");
115 116 117 118 119
		return -EBUSY;
	}
	return 0;
}

120
static pci_ers_result_t dpc_reset_link(struct pci_dev *pdev)
121
{
122
	struct dpc_dev *dpc;
123
	u16 cap;
124 125 126 127 128

	/*
	 * DPC disables the Link automatically in hardware, so it has
	 * already been reset by the time we get here.
	 */
129
	dpc = to_dpc_dev(pdev);
130 131 132 133 134 135
	cap = dpc->cap_pos;

	/*
	 * Wait until the Link is inactive, then clear DPC Trigger Status
	 * to allow the Port to leave DPC.
	 */
136
	pcie_wait_for_link(pdev, false);
137

138
	if (dpc->rp_extensions && dpc_wait_rp_inactive(dpc))
139
		return PCI_ERS_RESULT_DISCONNECT;
D
Dongdong Liu 已提交
140

141
	pci_write_config_word(pdev, cap + PCI_EXP_DPC_STATUS,
142
			      PCI_EXP_DPC_STATUS_TRIGGER);
143

144 145 146
	if (!pcie_wait_for_link(pdev, true))
		return PCI_ERS_RESULT_DISCONNECT;

147 148 149
	return PCI_ERS_RESULT_RECOVERED;
}

150
static void dpc_process_rp_pio_error(struct dpc_dev *dpc)
D
Dongdong Liu 已提交
151 152
{
	struct pci_dev *pdev = dpc->dev->port;
153 154
	u16 cap = dpc->cap_pos, dpc_status, first_error;
	u32 status, mask, sev, syserr, exc, dw0, dw1, dw2, dw3, log, prefix;
D
Dongdong Liu 已提交
155 156
	int i;

157 158
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_STATUS, &status);
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_MASK, &mask);
159
	pci_err(pdev, "rp_pio_status: %#010x, rp_pio_mask: %#010x\n",
160
		status, mask);
D
Dongdong Liu 已提交
161

162 163 164
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_SEVERITY, &sev);
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_SYSERROR, &syserr);
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_EXCEPTION, &exc);
165
	pci_err(pdev, "RP PIO severity=%#010x, syserror=%#010x, exception=%#010x\n",
166
		sev, syserr, exc);
D
Dongdong Liu 已提交
167 168

	/* Get First Error Pointer */
169
	pci_read_config_word(pdev, cap + PCI_EXP_DPC_STATUS, &dpc_status);
170
	first_error = (dpc_status & 0x1f00) >> 8;
D
Dongdong Liu 已提交
171

172
	for (i = 0; i < ARRAY_SIZE(rp_pio_error_string); i++) {
173
		if ((status & ~mask) & (1 << i))
174
			pci_err(pdev, "[%2d] %s%s\n", i, rp_pio_error_string[i],
175
				first_error == i ? " (First)" : "");
176 177
	}

178
	if (dpc->rp_log_size < 4)
179
		goto clear_status;
180
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_HEADER_LOG,
181
			      &dw0);
182
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_HEADER_LOG + 4,
183
			      &dw1);
184
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_HEADER_LOG + 8,
185
			      &dw2);
186
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_HEADER_LOG + 12,
187
			      &dw3);
188
	pci_err(pdev, "TLP Header: %#010x %#010x %#010x %#010x\n",
189
		dw0, dw1, dw2, dw3);
D
Dongdong Liu 已提交
190

191
	if (dpc->rp_log_size < 5)
192
		goto clear_status;
193
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_IMPSPEC_LOG, &log);
194
	pci_err(pdev, "RP PIO ImpSpec Log %#010x\n", log);
195

196
	for (i = 0; i < dpc->rp_log_size - 5; i++) {
D
Dongdong Liu 已提交
197
		pci_read_config_dword(pdev,
198
			cap + PCI_EXP_DPC_RP_PIO_TLPPREFIX_LOG, &prefix);
199
		pci_err(pdev, "TLP Prefix Header: dw%d, %#010x\n", i, prefix);
200
	}
201 202
 clear_status:
	pci_write_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_STATUS, status);
D
Dongdong Liu 已提交
203 204
}

205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
static int dpc_get_aer_uncorrect_severity(struct pci_dev *dev,
					  struct aer_err_info *info)
{
	int pos = dev->aer_cap;
	u32 status, mask, sev;

	pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
	pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_MASK, &mask);
	status &= ~mask;
	if (!status)
		return 0;

	pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &sev);
	status &= sev;
	if (status)
		info->severity = AER_FATAL;
	else
		info->severity = AER_NONFATAL;

	return 1;
}

227
static irqreturn_t dpc_handler(int irq, void *context)
228
{
229
	struct aer_err_info info;
230
	struct dpc_dev *dpc = context;
231
	struct pci_dev *pdev = dpc->dev->port;
232
	u16 cap = dpc->cap_pos, status, source, reason, ext_reason;
233

234
	pci_read_config_word(pdev, cap + PCI_EXP_DPC_STATUS, &status);
235
	pci_read_config_word(pdev, cap + PCI_EXP_DPC_SOURCE_ID, &source);
236

237
	pci_info(pdev, "containment event, status:%#06x source:%#06x\n",
238
		 status, source);
239

240 241
	reason = (status & PCI_EXP_DPC_STATUS_TRIGGER_RSN) >> 1;
	ext_reason = (status & PCI_EXP_DPC_STATUS_TRIGGER_RSN_EXT) >> 5;
242
	pci_warn(pdev, "%s detected\n",
243 244 245 246 247 248
		 (reason == 0) ? "unmasked uncorrectable error" :
		 (reason == 1) ? "ERR_NONFATAL" :
		 (reason == 2) ? "ERR_FATAL" :
		 (ext_reason == 0) ? "RP PIO error" :
		 (ext_reason == 1) ? "software trigger" :
				     "reserved error");
249

250
	/* show RP PIO error detail information */
251
	if (dpc->rp_extensions && reason == 3 && ext_reason == 0)
252
		dpc_process_rp_pio_error(dpc);
253 254 255
	else if (reason == 0 &&
		 dpc_get_aer_uncorrect_severity(pdev, &info) &&
		 aer_get_device_error_info(pdev, &info)) {
256 257
		aer_print_error(pdev, &info);
		pci_cleanup_aer_uncorrect_error_status(pdev);
258
		pci_aer_clear_fatal_status(pdev);
259
	}
260

261
	/* We configure DPC so it only triggers on ERR_FATAL */
262
	pcie_do_recovery(pdev, pci_channel_io_frozen, PCIE_PORT_SERVICE_DPC);
263 264

	return IRQ_HANDLED;
265 266 267 268 269 270 271 272 273 274 275 276 277
}

static irqreturn_t dpc_irq(int irq, void *context)
{
	struct dpc_dev *dpc = (struct dpc_dev *)context;
	struct pci_dev *pdev = dpc->dev->port;
	u16 cap = dpc->cap_pos, status;

	pci_read_config_word(pdev, cap + PCI_EXP_DPC_STATUS, &status);

	if (!(status & PCI_EXP_DPC_STATUS_INTERRUPT) || status == (u16)(~0))
		return IRQ_NONE;

278 279
	pci_write_config_word(pdev, cap + PCI_EXP_DPC_STATUS,
			      PCI_EXP_DPC_STATUS_INTERRUPT);
280
	if (status & PCI_EXP_DPC_STATUS_TRIGGER)
281
		return IRQ_WAKE_THREAD;
282 283 284 285 286 287 288 289
	return IRQ_HANDLED;
}

#define FLAG(x, y) (((x) & (y)) ? '+' : '-')
static int dpc_probe(struct pcie_device *dev)
{
	struct dpc_dev *dpc;
	struct pci_dev *pdev = dev->port;
290
	struct device *device = &dev->device;
291 292 293
	int status;
	u16 ctl, cap;

294 295 296
	if (pcie_aer_get_firmware_first(pdev))
		return -ENOTSUPP;

297
	dpc = devm_kzalloc(device, sizeof(*dpc), GFP_KERNEL);
298 299 300 301 302 303 304
	if (!dpc)
		return -ENOMEM;

	dpc->cap_pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_DPC);
	dpc->dev = dev;
	set_service_data(dev, dpc);

305 306 307
	status = devm_request_threaded_irq(device, dev->irq, dpc_irq,
					   dpc_handler, IRQF_SHARED,
					   "pcie-dpc", dpc);
308
	if (status) {
309
		pci_warn(pdev, "request IRQ%d failed: %d\n", dev->irq,
310
			 status);
311
		return status;
312 313 314 315 316
	}

	pci_read_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CAP, &cap);
	pci_read_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, &ctl);

317
	dpc->rp_extensions = (cap & PCI_EXP_DPC_CAP_RP_EXT);
318 319 320
	if (dpc->rp_extensions) {
		dpc->rp_log_size = (cap & PCI_EXP_DPC_RP_PIO_LOG_SIZE) >> 8;
		if (dpc->rp_log_size < 4 || dpc->rp_log_size > 9) {
321
			pci_err(pdev, "RP PIO log size %u is invalid\n",
322 323 324 325
				dpc->rp_log_size);
			dpc->rp_log_size = 0;
		}
	}
326

327
	ctl = (ctl & 0xfff4) | PCI_EXP_DPC_CTL_EN_FATAL | PCI_EXP_DPC_CTL_INT_EN;
328 329
	pci_write_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, ctl);

330 331 332 333 334
	pci_info(pdev, "error containment capabilities: Int Msg #%d, RPExt%c PoisonedTLP%c SwTrigger%c RP PIO Log %d, DL_ActiveErr%c\n",
		 cap & PCI_EXP_DPC_IRQ, FLAG(cap, PCI_EXP_DPC_CAP_RP_EXT),
		 FLAG(cap, PCI_EXP_DPC_CAP_POISONED_TLP),
		 FLAG(cap, PCI_EXP_DPC_CAP_SW_TRIGGER), dpc->rp_log_size,
		 FLAG(cap, PCI_EXP_DPC_CAP_DL_ACTIVE));
335 336

	pci_add_ext_cap_save_buffer(pdev, PCI_EXT_CAP_ID_DPC, sizeof(u16));
337 338 339 340 341 342 343 344 345 346
	return status;
}

static void dpc_remove(struct pcie_device *dev)
{
	struct dpc_dev *dpc = get_service_data(dev);
	struct pci_dev *pdev = dev->port;
	u16 ctl;

	pci_read_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, &ctl);
347
	ctl &= ~(PCI_EXP_DPC_CTL_EN_FATAL | PCI_EXP_DPC_CTL_INT_EN);
348 349 350 351 352
	pci_write_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, ctl);
}

static struct pcie_port_service_driver dpcdriver = {
	.name		= "dpc",
353
	.port_type	= PCIE_ANY_PORT,
354 355 356
	.service	= PCIE_PORT_SERVICE_DPC,
	.probe		= dpc_probe,
	.remove		= dpc_remove,
357
	.reset_link	= dpc_reset_link,
358 359
};

360
int __init pcie_dpc_init(void)
361 362 363
{
	return pcie_port_service_register(&dpcdriver);
}