dpc.c 9.1 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 9 10
 * Copyright (C) 2016 Intel Corp.
 */

#include <linux/delay.h>
#include <linux/interrupt.h>
11
#include <linux/init.h>
12
#include <linux/pci.h>
13

14
#include "portdrv.h"
K
Keith Busch 已提交
15
#include "../pci.h"
16
#include "aer/aerdrv.h"
17 18 19

struct dpc_dev {
	struct pcie_device	*dev;
20
	struct work_struct	work;
21
	u16			cap_pos;
22
	bool			rp_extensions;
D
Dongdong Liu 已提交
23
	u32			rp_pio_status;
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
static int dpc_wait_rp_inactive(struct dpc_dev *dpc)
{
	unsigned long timeout = jiffies + HZ;
	struct pci_dev *pdev = dpc->dev->port;
53
	struct device *dev = &dpc->dev->device;
54
	u16 cap = dpc->cap_pos, status;
55

56
	pci_read_config_word(pdev, cap + PCI_EXP_DPC_STATUS, &status);
57 58 59
	while (status & PCI_EXP_DPC_RP_BUSY &&
					!time_after(jiffies, timeout)) {
		msleep(10);
60
		pci_read_config_word(pdev, cap + PCI_EXP_DPC_STATUS, &status);
61 62
	}
	if (status & PCI_EXP_DPC_RP_BUSY) {
63
		dev_warn(dev, "DPC root port still busy\n");
64 65 66 67 68
		return -EBUSY;
	}
	return 0;
}

69
static void dpc_wait_link_inactive(struct dpc_dev *dpc)
70 71
{
	unsigned long timeout = jiffies + HZ;
72 73
	struct pci_dev *pdev = dpc->dev->port;
	struct device *dev = &dpc->dev->device;
74 75 76 77 78 79 80 81 82
	u16 lnk_status;

	pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
	while (lnk_status & PCI_EXP_LNKSTA_DLLLA &&
					!time_after(jiffies, timeout)) {
		msleep(10);
		pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
	}
	if (lnk_status & PCI_EXP_LNKSTA_DLLLA)
83
		dev_warn(dev, "Link state not disabled for DPC event\n");
84 85
}

86
static void dpc_work(struct work_struct *work)
87 88 89 90
{
	struct dpc_dev *dpc = container_of(work, struct dpc_dev, work);
	struct pci_dev *dev, *temp, *pdev = dpc->dev->port;
	struct pci_bus *parent = pdev->subordinate;
91
	u16 cap = dpc->cap_pos, ctl;
92 93 94 95 96

	pci_lock_rescan_remove();
	list_for_each_entry_safe_reverse(dev, temp, &parent->devices,
					 bus_list) {
		pci_dev_get(dev);
K
Keith Busch 已提交
97 98 99 100
		pci_dev_set_disconnected(dev, NULL);
		if (pci_has_subordinate(dev))
			pci_walk_bus(dev->subordinate,
				     pci_dev_set_disconnected, NULL);
101 102 103 104 105
		pci_stop_and_remove_bus_device(dev);
		pci_dev_put(dev);
	}
	pci_unlock_rescan_remove();

106
	dpc_wait_link_inactive(dpc);
107
	if (dpc->rp_extensions && dpc_wait_rp_inactive(dpc))
108
		return;
109
	if (dpc->rp_extensions && dpc->rp_pio_status) {
110 111
		pci_write_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_STATUS,
				       dpc->rp_pio_status);
D
Dongdong Liu 已提交
112 113 114
		dpc->rp_pio_status = 0;
	}

115
	pci_write_config_word(pdev, cap + PCI_EXP_DPC_STATUS,
116
		PCI_EXP_DPC_STATUS_TRIGGER | PCI_EXP_DPC_STATUS_INTERRUPT);
117

118 119
	pci_read_config_word(pdev, cap + PCI_EXP_DPC_CTL, &ctl);
	pci_write_config_word(pdev, cap + PCI_EXP_DPC_CTL,
120
			      ctl | PCI_EXP_DPC_CTL_INT_EN);
121 122
}

123
static void dpc_process_rp_pio_error(struct dpc_dev *dpc)
D
Dongdong Liu 已提交
124
{
125
	struct device *dev = &dpc->dev->device;
D
Dongdong Liu 已提交
126
	struct pci_dev *pdev = dpc->dev->port;
127 128
	u16 cap = dpc->cap_pos, dpc_status, first_error;
	u32 status, mask, sev, syserr, exc, dw0, dw1, dw2, dw3, log, prefix;
D
Dongdong Liu 已提交
129 130
	int i;

131 132
	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);
133
	dev_err(dev, "rp_pio_status: %#010x, rp_pio_mask: %#010x\n",
134
		status, mask);
D
Dongdong Liu 已提交
135

136
	dpc->rp_pio_status = status;
137

138 139 140
	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);
141
	dev_err(dev, "RP PIO severity=%#010x, syserror=%#010x, exception=%#010x\n",
142
		sev, syserr, exc);
D
Dongdong Liu 已提交
143 144

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

148
	status &= ~mask;
149 150 151
	for (i = 0; i < ARRAY_SIZE(rp_pio_error_string); i++) {
		if (status & (1 << i))
			dev_err(dev, "[%2d] %s%s\n", i, rp_pio_error_string[i],
152
				first_error == i ? " (First)" : "");
153 154
	}

155
	if (dpc->rp_log_size < 4)
D
Dongdong Liu 已提交
156
		return;
157
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_HEADER_LOG,
158
			      &dw0);
159
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_HEADER_LOG + 4,
160
			      &dw1);
161
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_HEADER_LOG + 8,
162
			      &dw2);
163
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_HEADER_LOG + 12,
164
			      &dw3);
165
	dev_err(dev, "TLP Header: %#010x %#010x %#010x %#010x\n",
166
		dw0, dw1, dw2, dw3);
D
Dongdong Liu 已提交
167

168 169
	if (dpc->rp_log_size < 5)
		return;
170 171
	pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_IMPSPEC_LOG, &log);
	dev_err(dev, "RP PIO ImpSpec Log %#010x\n", log);
172

173
	for (i = 0; i < dpc->rp_log_size - 5; i++) {
D
Dongdong Liu 已提交
174
		pci_read_config_dword(pdev,
175 176
			cap + PCI_EXP_DPC_RP_PIO_TLPPREFIX_LOG, &prefix);
		dev_err(dev, "TLP Prefix Header: dw%d, %#010x\n", i, prefix);
177
	}
D
Dongdong Liu 已提交
178 179
}

180 181 182 183
static irqreturn_t dpc_irq(int irq, void *context)
{
	struct dpc_dev *dpc = (struct dpc_dev *)context;
	struct pci_dev *pdev = dpc->dev->port;
184
	struct device *dev = &dpc->dev->device;
185
	u16 cap = dpc->cap_pos, ctl, status, source, reason, ext_reason;
186

187
	pci_read_config_word(pdev, cap + PCI_EXP_DPC_CTL, &ctl);
188 189 190

	if (!(ctl & PCI_EXP_DPC_CTL_INT_EN) || ctl == (u16)(~0))
		return IRQ_NONE;
191

192
	pci_read_config_word(pdev, cap + PCI_EXP_DPC_STATUS, &status);
193 194 195 196 197

	if (!(status & PCI_EXP_DPC_STATUS_INTERRUPT))
		return IRQ_NONE;

	if (!(status & PCI_EXP_DPC_STATUS_TRIGGER)) {
198
		pci_write_config_word(pdev, cap + PCI_EXP_DPC_STATUS,
199 200 201 202
				      PCI_EXP_DPC_STATUS_INTERRUPT);
		return IRQ_HANDLED;
	}

203
	pci_write_config_word(pdev, cap + PCI_EXP_DPC_CTL,
204 205
			      ctl & ~PCI_EXP_DPC_CTL_INT_EN);

206
	pci_read_config_word(pdev, cap + PCI_EXP_DPC_SOURCE_ID,
207 208
			     &source);

209
	dev_info(dev, "DPC containment event, status:%#06x source:%#06x\n",
210 211
		status, source);

212 213
	reason = (status & PCI_EXP_DPC_STATUS_TRIGGER_RSN) >> 1;
	ext_reason = (status & PCI_EXP_DPC_STATUS_TRIGGER_RSN_EXT) >> 5;
214 215 216 217 218 219 220 221 222

	dev_warn(dev, "DPC %s detected, remove downstream devices\n",
		 (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");
	/* show RP PIO error detail information */
223
	if (dpc->rp_extensions && reason == 3 && ext_reason == 0)
224 225 226 227
		dpc_process_rp_pio_error(dpc);

	schedule_work(&dpc->work);

228 229 230 231 232 233 234 235
	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;
236
	struct device *device = &dev->device;
237 238 239
	int status;
	u16 ctl, cap;

240 241 242
	if (pcie_aer_get_firmware_first(pdev))
		return -ENOTSUPP;

243
	dpc = devm_kzalloc(device, sizeof(*dpc), GFP_KERNEL);
244 245 246 247 248
	if (!dpc)
		return -ENOMEM;

	dpc->cap_pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_DPC);
	dpc->dev = dev;
249
	INIT_WORK(&dpc->work, dpc_work);
250 251
	set_service_data(dev, dpc);

252
	status = devm_request_irq(device, dev->irq, dpc_irq, IRQF_SHARED,
253
				  "pcie-dpc", dpc);
254
	if (status) {
255
		dev_warn(device, "request IRQ%d failed: %d\n", dev->irq,
256
			 status);
257
		return status;
258 259 260 261 262
	}

	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);

263
	dpc->rp_extensions = (cap & PCI_EXP_DPC_CAP_RP_EXT);
264 265 266 267 268 269 270 271
	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) {
			dev_err(device, "RP PIO log size %u is invalid\n",
				dpc->rp_log_size);
			dpc->rp_log_size = 0;
		}
	}
272

273
	ctl = (ctl & 0xfff4) | PCI_EXP_DPC_CTL_EN_NONFATAL | PCI_EXP_DPC_CTL_INT_EN;
274 275
	pci_write_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, ctl);

276
	dev_info(device, "DPC error containment capabilities: Int Msg #%d, RPExt%c PoisonedTLP%c SwTrigger%c RP PIO Log %d, DL_ActiveErr%c\n",
277
		cap & PCI_EXP_DPC_IRQ, FLAG(cap, PCI_EXP_DPC_CAP_RP_EXT),
278
		FLAG(cap, PCI_EXP_DPC_CAP_POISONED_TLP),
279
		FLAG(cap, PCI_EXP_DPC_CAP_SW_TRIGGER), dpc->rp_log_size,
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
		FLAG(cap, PCI_EXP_DPC_CAP_DL_ACTIVE));
	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);
	ctl &= ~(PCI_EXP_DPC_CTL_EN_NONFATAL | PCI_EXP_DPC_CTL_INT_EN);
	pci_write_config_word(pdev, dpc->cap_pos + PCI_EXP_DPC_CTL, ctl);
}

static struct pcie_port_service_driver dpcdriver = {
	.name		= "dpc",
297
	.port_type	= PCIE_ANY_PORT,
298 299 300 301 302 303 304 305 306
	.service	= PCIE_PORT_SERVICE_DPC,
	.probe		= dpc_probe,
	.remove		= dpc_remove,
};

static int __init dpc_service_init(void)
{
	return pcie_port_service_register(&dpcdriver);
}
307
device_initcall(dpc_service_init);