pciehp_hpc.c 23.2 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0+
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11
/*
 * PCI Express PCI Hot Plug Driver
 *
 * Copyright (C) 1995,2001 Compaq Computer Corporation
 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
 * Copyright (C) 2001 IBM Corp.
 * Copyright (C) 2003-2004 Intel Corporation
 *
 * All rights reserved.
 *
12
 * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
L
Linus Torvalds 已提交
13 14 15 16 17 18
 *
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/types.h>
19 20 21
#include <linux/signal.h>
#include <linux/jiffies.h>
#include <linux/timer.h>
L
Linus Torvalds 已提交
22
#include <linux/pci.h>
A
Andrew Morton 已提交
23
#include <linux/interrupt.h>
24
#include <linux/time.h>
25
#include <linux/slab.h>
A
Andrew Morton 已提交
26

L
Linus Torvalds 已提交
27 28 29
#include "../pci.h"
#include "pciehp.h"

30
static inline struct pci_dev *ctrl_dev(struct controller *ctrl)
31
{
32
	return ctrl->pcie->port;
33
}
L
Linus Torvalds 已提交
34

35 36
static irqreturn_t pcie_isr(int irq, void *dev_id);
static void start_int_poll_timer(struct controller *ctrl, int sec);
L
Linus Torvalds 已提交
37 38

/* This is the interrupt polling timeout function. */
39
static void int_poll_timeout(struct timer_list *t)
L
Linus Torvalds 已提交
40
{
41
	struct controller *ctrl = from_timer(ctrl, t, poll_timer);
L
Linus Torvalds 已提交
42 43

	/* Poll for interrupt events.  regs == NULL => polling */
44
	pcie_isr(0, ctrl);
L
Linus Torvalds 已提交
45 46

	if (!pciehp_poll_time)
47
		pciehp_poll_time = 2; /* default polling interval is 2 sec */
L
Linus Torvalds 已提交
48

49
	start_int_poll_timer(ctrl, pciehp_poll_time);
L
Linus Torvalds 已提交
50 51 52
}

/* This function starts the interrupt polling timer. */
53
static void start_int_poll_timer(struct controller *ctrl, int sec)
L
Linus Torvalds 已提交
54
{
55 56
	/* Clamp to sane value */
	if ((sec <= 0) || (sec > 60))
57
		sec = 2;
58 59 60

	ctrl->poll_timer.expires = jiffies + sec * HZ;
	add_timer(&ctrl->poll_timer);
L
Linus Torvalds 已提交
61 62
}

K
Kenji Kaneshige 已提交
63 64
static inline int pciehp_request_irq(struct controller *ctrl)
{
65
	int retval, irq = ctrl->pcie->irq;
K
Kenji Kaneshige 已提交
66 67 68

	/* Install interrupt polling timer. Start with 10 sec delay */
	if (pciehp_poll_mode) {
69
		timer_setup(&ctrl->poll_timer, int_poll_timeout, 0);
K
Kenji Kaneshige 已提交
70 71 72 73 74 75 76
		start_int_poll_timer(ctrl, 10);
		return 0;
	}

	/* Installs the interrupt handler */
	retval = request_irq(irq, pcie_isr, IRQF_SHARED, MY_NAME, ctrl);
	if (retval)
77 78
		ctrl_err(ctrl, "Cannot get irq %d for the hotplug controller\n",
			 irq);
K
Kenji Kaneshige 已提交
79 80 81 82 83 84 85 86
	return retval;
}

static inline void pciehp_free_irq(struct controller *ctrl)
{
	if (pciehp_poll_mode)
		del_timer_sync(&ctrl->poll_timer);
	else
87
		free_irq(ctrl->pcie->irq, ctrl);
K
Kenji Kaneshige 已提交
88 89
}

90
static int pcie_poll_cmd(struct controller *ctrl, int timeout)
91
{
92
	struct pci_dev *pdev = ctrl_dev(ctrl);
93 94
	u16 slot_status;

95
	while (true) {
96
		pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
97 98 99 100 101 102
		if (slot_status == (u16) ~0) {
			ctrl_info(ctrl, "%s: no response from device\n",
				  __func__);
			return 0;
		}

103
		if (slot_status & PCI_EXP_SLTSTA_CC) {
104 105
			pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
						   PCI_EXP_SLTSTA_CC);
106
			return 1;
K
Kenji Kaneshige 已提交
107
		}
108 109 110 111
		if (timeout < 0)
			break;
		msleep(10);
		timeout -= 10;
112 113 114 115
	}
	return 0;	/* timeout */
}

116
static void pcie_wait_cmd(struct controller *ctrl)
117
{
118
	unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
119 120 121
	unsigned long duration = msecs_to_jiffies(msecs);
	unsigned long cmd_timeout = ctrl->cmd_started + duration;
	unsigned long now, timeout;
122 123
	int rc;

124 125 126 127
	/*
	 * If the controller does not generate notifications for command
	 * completions, we never need to wait between writes.
	 */
128
	if (NO_CMD_CMPL(ctrl))
129 130 131 132 133
		return;

	if (!ctrl->cmd_busy)
		return;

134 135 136 137 138 139 140 141 142 143
	/*
	 * Even if the command has already timed out, we want to call
	 * pcie_poll_cmd() so it can clear PCI_EXP_SLTSTA_CC.
	 */
	now = jiffies;
	if (time_before_eq(cmd_timeout, now))
		timeout = 1;
	else
		timeout = cmd_timeout - now;

144 145
	if (ctrl->slot_ctrl & PCI_EXP_SLTCTL_HPIE &&
	    ctrl->slot_ctrl & PCI_EXP_SLTCTL_CCIE)
146
		rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout);
147
	else
148
		rc = pcie_poll_cmd(ctrl, jiffies_to_msecs(timeout));
149 150 151 152 153 154 155 156 157

	/*
	 * Controllers with errata like Intel CF118 don't generate
	 * completion notifications unless the power/indicator/interlock
	 * control bits are changed.  On such controllers, we'll emit this
	 * timeout message when we wait for completion of commands that
	 * don't change those bits, e.g., commands that merely enable
	 * interrupts.
	 */
158
	if (!rc)
159
		ctrl_info(ctrl, "Timeout on hotplug command %#06x (issued %u msec ago)\n",
160
			  ctrl->slot_ctrl,
161
			  jiffies_to_msecs(jiffies - ctrl->cmd_started));
162 163
}

164 165
static void pcie_do_write_cmd(struct controller *ctrl, u16 cmd,
			      u16 mask, bool wait)
L
Linus Torvalds 已提交
166
{
167
	struct pci_dev *pdev = ctrl_dev(ctrl);
168
	u16 slot_ctrl;
L
Linus Torvalds 已提交
169

170 171
	mutex_lock(&ctrl->ctrl_lock);

172 173 174
	/*
	 * Always wait for any previous command that might still be in progress
	 */
175 176
	pcie_wait_cmd(ctrl);

177
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
178 179 180 181 182
	if (slot_ctrl == (u16) ~0) {
		ctrl_info(ctrl, "%s: no response from device\n", __func__);
		goto out;
	}

183
	slot_ctrl &= ~mask;
K
Kenji Kaneshige 已提交
184
	slot_ctrl |= (cmd & mask);
185
	ctrl->cmd_busy = 1;
186
	smp_mb();
187
	pcie_capability_write_word(pdev, PCI_EXP_SLTCTL, slot_ctrl);
188
	ctrl->cmd_started = jiffies;
189
	ctrl->slot_ctrl = slot_ctrl;
190

191 192 193 194 195 196 197
	/*
	 * Optionally wait for the hardware to be ready for a new command,
	 * indicating completion of the above issued command.
	 */
	if (wait)
		pcie_wait_cmd(ctrl);

198
out:
199
	mutex_unlock(&ctrl->ctrl_lock);
L
Linus Torvalds 已提交
200 201
}

202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
/**
 * pcie_write_cmd - Issue controller command
 * @ctrl: controller to which the command is issued
 * @cmd:  command value written to slot control register
 * @mask: bitmask of slot control register to be modified
 */
static void pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
{
	pcie_do_write_cmd(ctrl, cmd, mask, true);
}

/* Same as above without waiting for the hardware to latch */
static void pcie_write_cmd_nowait(struct controller *ctrl, u16 cmd, u16 mask)
{
	pcie_do_write_cmd(ctrl, cmd, mask, false);
}

219
bool pciehp_check_link_active(struct controller *ctrl)
220
{
221
	struct pci_dev *pdev = ctrl_dev(ctrl);
222
	u16 lnk_status;
223
	bool ret;
224

225
	pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
226 227 228 229 230 231
	ret = !!(lnk_status & PCI_EXP_LNKSTA_DLLLA);

	if (ret)
		ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);

	return ret;
232 233
}

234
static void __pcie_wait_link_active(struct controller *ctrl, bool active)
235 236 237
{
	int timeout = 1000;

238
	if (pciehp_check_link_active(ctrl) == active)
239 240 241 242
		return;
	while (timeout > 0) {
		msleep(10);
		timeout -= 10;
243
		if (pciehp_check_link_active(ctrl) == active)
244 245
			return;
	}
246 247 248 249 250 251 252 253 254
	ctrl_dbg(ctrl, "Data Link Layer Link Active not %s in 1000 msec\n",
			active ? "set" : "cleared");
}

static void pcie_wait_link_active(struct controller *ctrl)
{
	__pcie_wait_link_active(ctrl, true);
}

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
static bool pci_bus_check_dev(struct pci_bus *bus, int devfn)
{
	u32 l;
	int count = 0;
	int delay = 1000, step = 20;
	bool found = false;

	do {
		found = pci_bus_read_dev_vendor_id(bus, devfn, &l, 0);
		count++;

		if (found)
			break;

		msleep(step);
		delay -= step;
	} while (delay > 0);

	if (count > 1 && pciehp_debug)
		printk(KERN_DEBUG "pci %04x:%02x:%02x.%d id reading try %d times with interval %d ms to get %08x\n",
			pci_domain_nr(bus), bus->number, PCI_SLOT(devfn),
			PCI_FUNC(devfn), count, step, l);

	return found;
}

K
Kenji Kaneshige 已提交
281
int pciehp_check_link_status(struct controller *ctrl)
L
Linus Torvalds 已提交
282
{
283
	struct pci_dev *pdev = ctrl_dev(ctrl);
284
	bool found;
L
Linus Torvalds 已提交
285 286
	u16 lnk_status;

R
Ryan Desfosses 已提交
287 288 289 290 291 292 293 294 295
	/*
	 * Data Link Layer Link Active Reporting must be capable for
	 * hot-plug capable downstream port. But old controller might
	 * not implement it. In this case, we wait for 1000 ms.
	*/
	if (ctrl->link_active_reporting)
		pcie_wait_link_active(ctrl);
	else
		msleep(1000);
296

297 298 299 300
	/* wait 100ms before read pci conf, and try in 1s */
	msleep(100);
	found = pci_bus_check_dev(ctrl->pcie->port->subordinate,
					PCI_DEVFN(0, 0));
301

302
	pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
303
	ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
304 305
	if ((lnk_status & PCI_EXP_LNKSTA_LT) ||
	    !(lnk_status & PCI_EXP_LNKSTA_NLW)) {
306 307
		ctrl_err(ctrl, "link training error: status %#06x\n",
			 lnk_status);
308
		return -1;
L
Linus Torvalds 已提交
309 310
	}

311 312
	pcie_update_link_speed(ctrl->pcie->port->subordinate, lnk_status);

313 314
	if (!found)
		return -1;
315

316
	return 0;
L
Linus Torvalds 已提交
317 318
}

319 320
static int __pciehp_link_set(struct controller *ctrl, bool enable)
{
321
	struct pci_dev *pdev = ctrl_dev(ctrl);
322 323
	u16 lnk_ctrl;

324
	pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &lnk_ctrl);
325 326 327 328 329 330

	if (enable)
		lnk_ctrl &= ~PCI_EXP_LNKCTL_LD;
	else
		lnk_ctrl |= PCI_EXP_LNKCTL_LD;

331
	pcie_capability_write_word(pdev, PCI_EXP_LNKCTL, lnk_ctrl);
332
	ctrl_dbg(ctrl, "%s: lnk_ctrl = %x\n", __func__, lnk_ctrl);
333
	return 0;
334 335 336 337 338 339 340
}

static int pciehp_link_enable(struct controller *ctrl)
{
	return __pciehp_link_set(ctrl, true);
}

341 342 343 344 345 346 347 348 349 350 351 352
int pciehp_get_raw_indicator_status(struct hotplug_slot *hotplug_slot,
				    u8 *status)
{
	struct slot *slot = hotplug_slot->private;
	struct pci_dev *pdev = ctrl_dev(slot->ctrl);
	u16 slot_ctrl;

	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
	*status = (slot_ctrl & (PCI_EXP_SLTCTL_AIC | PCI_EXP_SLTCTL_PIC)) >> 6;
	return 0;
}

353
void pciehp_get_attention_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
354
{
355
	struct controller *ctrl = slot->ctrl;
356
	struct pci_dev *pdev = ctrl_dev(ctrl);
L
Linus Torvalds 已提交
357 358
	u16 slot_ctrl;

359
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
K
Kenji Kaneshige 已提交
360 361
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x, value read %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
L
Linus Torvalds 已提交
362

363 364
	switch (slot_ctrl & PCI_EXP_SLTCTL_AIC) {
	case PCI_EXP_SLTCTL_ATTN_IND_ON:
L
Linus Torvalds 已提交
365 366
		*status = 1;	/* On */
		break;
367
	case PCI_EXP_SLTCTL_ATTN_IND_BLINK:
L
Linus Torvalds 已提交
368 369
		*status = 2;	/* Blink */
		break;
370
	case PCI_EXP_SLTCTL_ATTN_IND_OFF:
L
Linus Torvalds 已提交
371 372 373 374 375 376 377 378
		*status = 0;	/* Off */
		break;
	default:
		*status = 0xFF;
		break;
	}
}

379
void pciehp_get_power_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
380
{
381
	struct controller *ctrl = slot->ctrl;
382
	struct pci_dev *pdev = ctrl_dev(ctrl);
L
Linus Torvalds 已提交
383 384
	u16 slot_ctrl;

385
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
K
Kenji Kaneshige 已提交
386 387
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x value read %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
L
Linus Torvalds 已提交
388

389 390 391
	switch (slot_ctrl & PCI_EXP_SLTCTL_PCC) {
	case PCI_EXP_SLTCTL_PWR_ON:
		*status = 1;	/* On */
L
Linus Torvalds 已提交
392
		break;
393 394
	case PCI_EXP_SLTCTL_PWR_OFF:
		*status = 0;	/* Off */
L
Linus Torvalds 已提交
395 396 397 398 399 400 401
		break;
	default:
		*status = 0xFF;
		break;
	}
}

402
void pciehp_get_latch_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
403
{
404
	struct pci_dev *pdev = ctrl_dev(slot->ctrl);
L
Linus Torvalds 已提交
405 406
	u16 slot_status;

407
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
408
	*status = !!(slot_status & PCI_EXP_SLTSTA_MRLSS);
L
Linus Torvalds 已提交
409 410
}

411
void pciehp_get_adapter_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
412
{
413
	struct pci_dev *pdev = ctrl_dev(slot->ctrl);
L
Linus Torvalds 已提交
414 415
	u16 slot_status;

416
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
417
	*status = !!(slot_status & PCI_EXP_SLTSTA_PDS);
L
Linus Torvalds 已提交
418 419
}

K
Kenji Kaneshige 已提交
420
int pciehp_query_power_fault(struct slot *slot)
L
Linus Torvalds 已提交
421
{
422
	struct pci_dev *pdev = ctrl_dev(slot->ctrl);
L
Linus Torvalds 已提交
423 424
	u16 slot_status;

425
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
426
	return !!(slot_status & PCI_EXP_SLTSTA_PFD);
L
Linus Torvalds 已提交
427 428
}

429 430 431 432 433 434 435 436 437 438 439
int pciehp_set_raw_indicator_status(struct hotplug_slot *hotplug_slot,
				    u8 status)
{
	struct slot *slot = hotplug_slot->private;
	struct controller *ctrl = slot->ctrl;

	pcie_write_cmd_nowait(ctrl, status << 6,
			      PCI_EXP_SLTCTL_AIC | PCI_EXP_SLTCTL_PIC);
	return 0;
}

440
void pciehp_set_attention_status(struct slot *slot, u8 value)
L
Linus Torvalds 已提交
441
{
442
	struct controller *ctrl = slot->ctrl;
443
	u16 slot_cmd;
L
Linus Torvalds 已提交
444

445 446 447
	if (!ATTN_LED(ctrl))
		return;

L
Linus Torvalds 已提交
448
	switch (value) {
R
Ryan Desfosses 已提交
449
	case 0:		/* turn off */
450
		slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_OFF;
451 452
		break;
	case 1:		/* turn on */
453
		slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_ON;
454 455
		break;
	case 2:		/* turn blink */
456
		slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_BLINK;
457 458
		break;
	default:
459
		return;
L
Linus Torvalds 已提交
460
	}
461
	pcie_write_cmd_nowait(ctrl, slot_cmd, PCI_EXP_SLTCTL_AIC);
K
Kenji Kaneshige 已提交
462 463
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
L
Linus Torvalds 已提交
464 465
}

K
Kenji Kaneshige 已提交
466
void pciehp_green_led_on(struct slot *slot)
L
Linus Torvalds 已提交
467
{
468
	struct controller *ctrl = slot->ctrl;
469

470 471 472
	if (!PWR_LED(ctrl))
		return;

473 474
	pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_ON,
			      PCI_EXP_SLTCTL_PIC);
K
Kenji Kaneshige 已提交
475
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
476 477
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
		 PCI_EXP_SLTCTL_PWR_IND_ON);
L
Linus Torvalds 已提交
478 479
}

K
Kenji Kaneshige 已提交
480
void pciehp_green_led_off(struct slot *slot)
L
Linus Torvalds 已提交
481
{
482
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
483

484 485 486
	if (!PWR_LED(ctrl))
		return;

487 488
	pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_OFF,
			      PCI_EXP_SLTCTL_PIC);
K
Kenji Kaneshige 已提交
489
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
490 491
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
		 PCI_EXP_SLTCTL_PWR_IND_OFF);
L
Linus Torvalds 已提交
492 493
}

K
Kenji Kaneshige 已提交
494
void pciehp_green_led_blink(struct slot *slot)
L
Linus Torvalds 已提交
495
{
496
	struct controller *ctrl = slot->ctrl;
497

498 499 500
	if (!PWR_LED(ctrl))
		return;

501 502
	pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_BLINK,
			      PCI_EXP_SLTCTL_PIC);
K
Kenji Kaneshige 已提交
503
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
504 505
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
		 PCI_EXP_SLTCTL_PWR_IND_BLINK);
L
Linus Torvalds 已提交
506 507
}

R
Ryan Desfosses 已提交
508
int pciehp_power_on_slot(struct slot *slot)
L
Linus Torvalds 已提交
509
{
510
	struct controller *ctrl = slot->ctrl;
511
	struct pci_dev *pdev = ctrl_dev(ctrl);
512
	u16 slot_status;
513
	int retval;
L
Linus Torvalds 已提交
514

515
	/* Clear sticky power-fault bit from previous power failures */
516
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
517 518 519
	if (slot_status & PCI_EXP_SLTSTA_PFD)
		pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
					   PCI_EXP_SLTSTA_PFD);
520
	ctrl->power_fault_detected = 0;
L
Linus Torvalds 已提交
521

522
	pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_ON, PCI_EXP_SLTCTL_PCC);
K
Kenji Kaneshige 已提交
523
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
524 525
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
		 PCI_EXP_SLTCTL_PWR_ON);
L
Linus Torvalds 已提交
526

527 528 529 530
	retval = pciehp_link_enable(ctrl);
	if (retval)
		ctrl_err(ctrl, "%s: Can not enable the link!\n", __func__);

L
Linus Torvalds 已提交
531 532 533
	return retval;
}

R
Ryan Desfosses 已提交
534
void pciehp_power_off_slot(struct slot *slot)
L
Linus Torvalds 已提交
535
{
536
	struct controller *ctrl = slot->ctrl;
537

538
	pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_OFF, PCI_EXP_SLTCTL_PCC);
K
Kenji Kaneshige 已提交
539
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
540 541
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
		 PCI_EXP_SLTCTL_PWR_OFF);
L
Linus Torvalds 已提交
542 543
}

544
static irqreturn_t pciehp_isr(int irq, void *dev_id)
L
Linus Torvalds 已提交
545
{
546
	struct controller *ctrl = (struct controller *)dev_id;
547
	struct pci_dev *pdev = ctrl_dev(ctrl);
548 549
	struct pci_bus *subordinate = pdev->subordinate;
	struct pci_dev *dev;
550
	struct slot *slot = ctrl->slot;
551
	u16 status, events;
552
	u8 present;
553
	bool link;
L
Linus Torvalds 已提交
554

555 556 557 558
	/* Interrupts cannot originate from a controller that's asleep */
	if (pdev->current_state == PCI_D3cold)
		return IRQ_NONE;

559 560 561 562 563 564
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &status);
	if (status == (u16) ~0) {
		ctrl_info(ctrl, "%s: no response from device\n", __func__);
		return IRQ_NONE;
	}

565
	/*
566 567
	 * Slot Status contains plain status bits as well as event
	 * notification bits; right now we only want the event bits.
568
	 */
569
	events = status & (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
570 571
			   PCI_EXP_SLTSTA_PDC | PCI_EXP_SLTSTA_CC |
			   PCI_EXP_SLTSTA_DLLSC);
572 573 574 575 576 577 578 579

	/*
	 * If we've already reported a power fault, don't report it again
	 * until we've done something to handle it.
	 */
	if (ctrl->power_fault_detected)
		events &= ~PCI_EXP_SLTSTA_PFD;

580 581
	if (!events)
		return IRQ_NONE;
582

583 584 585 586
	/* Capture link status before clearing interrupts */
	if (events & PCI_EXP_SLTSTA_DLLSC)
		link = pciehp_check_link_active(ctrl);

587
	pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, events);
588
	ctrl_dbg(ctrl, "pending interrupts %#06x from Slot Status\n", events);
589

590
	/* Check Command Complete Interrupt Pending */
591
	if (events & PCI_EXP_SLTSTA_CC) {
592
		ctrl->cmd_busy = 0;
593
		smp_mb();
594
		wake_up(&ctrl->queue);
L
Linus Torvalds 已提交
595 596
	}

597 598 599 600
	if (subordinate) {
		list_for_each_entry(dev, &subordinate->devices, bus_list) {
			if (dev->ignore_hotplug) {
				ctrl_dbg(ctrl, "ignoring hotplug event %#06x (%s requested no hotplug)\n",
601
					 events, pci_name(dev));
602 603 604 605 606
				return IRQ_HANDLED;
			}
		}
	}

607
	/* Check Attention Button Pressed */
608
	if (events & PCI_EXP_SLTSTA_ABP) {
609
		ctrl_info(ctrl, "Slot(%s): Attention button pressed\n",
610 611 612
			  slot_name(slot));
		pciehp_queue_interrupt_event(slot, INT_BUTTON_PRESS);
	}
613

614 615 616 617 618 619 620 621 622 623 624 625
	/*
	 * Check Link Status Changed at higher precedence than Presence
	 * Detect Changed.  The PDS value may be set to "card present" from
	 * out-of-band detection, which may be in conflict with a Link Down
	 * and cause the wrong event to queue.
	 */
	if (events & PCI_EXP_SLTSTA_DLLSC) {
		ctrl_info(ctrl, "Slot(%s): Link %s\n", slot_name(slot),
			  link ? "Up" : "Down");
		pciehp_queue_interrupt_event(slot, link ? INT_LINK_UP :
					     INT_LINK_DOWN);
	} else if (events & PCI_EXP_SLTSTA_PDC) {
626
		present = !!(status & PCI_EXP_SLTSTA_PDS);
627 628
		ctrl_info(ctrl, "Slot(%s): Card %spresent\n", slot_name(slot),
			  present ? "" : "not ");
629 630 631
		pciehp_queue_interrupt_event(slot, present ? INT_PRESENCE_ON :
					     INT_PRESENCE_OFF);
	}
632

633
	/* Check Power Fault Detected */
634
	if ((events & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) {
635
		ctrl->power_fault_detected = 1;
636
		ctrl_err(ctrl, "Slot(%s): Power fault\n", slot_name(slot));
637
		pciehp_queue_interrupt_event(slot, INT_POWER_FAULT);
638
	}
639

L
Linus Torvalds 已提交
640 641 642
	return IRQ_HANDLED;
}

643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661
static irqreturn_t pcie_isr(int irq, void *dev_id)
{
	irqreturn_t rc, handled = IRQ_NONE;

	/*
	 * To guarantee that all interrupt events are serviced, we need to
	 * re-inspect Slot Status register after clearing what is presumed
	 * to be the last pending interrupt.
	 */
	do {
		rc = pciehp_isr(irq, dev_id);
		if (rc == IRQ_HANDLED)
			handled = IRQ_HANDLED;
	} while (rc == IRQ_HANDLED);

	/* Return IRQ_HANDLED if we handled one or more events */
	return handled;
}

662
void pcie_enable_notification(struct controller *ctrl)
M
Mark Lord 已提交
663
{
664
	u16 cmd, mask;
L
Linus Torvalds 已提交
665

666 667 668 669 670 671 672 673 674 675
	/*
	 * TBD: Power fault detected software notification support.
	 *
	 * Power fault detected software notification is not enabled
	 * now, because it caused power fault detected interrupt storm
	 * on some machines. On those machines, power fault detected
	 * bit in the slot status register was set again immediately
	 * when it is cleared in the interrupt service routine, and
	 * next power fault detected interrupt was notified again.
	 */
676 677 678 679 680 681 682

	/*
	 * Always enable link events: thus link-up and link-down shall
	 * always be treated as hotplug and unplug respectively. Enable
	 * presence detect only if Attention Button is not present.
	 */
	cmd = PCI_EXP_SLTCTL_DLLSCE;
683
	if (ATTN_BUTTN(ctrl))
684
		cmd |= PCI_EXP_SLTCTL_ABPE;
685 686
	else
		cmd |= PCI_EXP_SLTCTL_PDCE;
687
	if (!pciehp_poll_mode)
688
		cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
689

690
	mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
691
		PCI_EXP_SLTCTL_PFDE |
692 693
		PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
		PCI_EXP_SLTCTL_DLLSCE);
694

695
	pcie_write_cmd_nowait(ctrl, cmd, mask);
696 697
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, cmd);
698 699 700 701 702
}

static void pcie_disable_notification(struct controller *ctrl)
{
	u16 mask;
703

704 705
	mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
		PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
706 707
		PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
		PCI_EXP_SLTCTL_DLLSCE);
708
	pcie_write_cmd(ctrl, 0, mask);
709 710
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, 0);
711 712
}

713 714
/*
 * pciehp has a 1:1 bus:slot relationship so we ultimately want a secondary
715 716 717 718
 * bus reset of the bridge, but at the same time we want to ensure that it is
 * not seen as a hot-unplug, followed by the hot-plug of the device. Thus,
 * disable link state notification and presence detection change notification
 * momentarily, if we see that they could interfere. Also, clear any spurious
719 720 721 722 723
 * events after.
 */
int pciehp_reset_slot(struct slot *slot, int probe)
{
	struct controller *ctrl = slot->ctrl;
724
	struct pci_dev *pdev = ctrl_dev(ctrl);
725
	u16 stat_mask = 0, ctrl_mask = 0;
726 727 728 729

	if (probe)
		return 0;

730
	if (!ATTN_BUTTN(ctrl)) {
731 732
		ctrl_mask |= PCI_EXP_SLTCTL_PDCE;
		stat_mask |= PCI_EXP_SLTSTA_PDC;
733
	}
734 735 736 737
	ctrl_mask |= PCI_EXP_SLTCTL_DLLSCE;
	stat_mask |= PCI_EXP_SLTSTA_DLLSC;

	pcie_write_cmd(ctrl, 0, ctrl_mask);
738 739
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, 0);
740 741
	if (pciehp_poll_mode)
		del_timer_sync(&ctrl->poll_timer);
742 743 744

	pci_reset_bridge_secondary_bus(ctrl->pcie->port);

745
	pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, stat_mask);
746
	pcie_write_cmd_nowait(ctrl, ctrl_mask, ctrl_mask);
747 748
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, ctrl_mask);
749
	if (pciehp_poll_mode)
750
		int_poll_timeout(&ctrl->poll_timer);
751 752 753
	return 0;
}

754
int pcie_init_notification(struct controller *ctrl)
755 756 757
{
	if (pciehp_request_irq(ctrl))
		return -1;
758
	pcie_enable_notification(ctrl);
759
	ctrl->notification_enabled = 1;
760 761 762 763 764
	return 0;
}

static void pcie_shutdown_notification(struct controller *ctrl)
{
765 766 767 768 769
	if (ctrl->notification_enabled) {
		pcie_disable_notification(ctrl);
		pciehp_free_irq(ctrl);
		ctrl->notification_enabled = 0;
	}
770 771 772 773 774 775 776 777 778 779
}

static int pcie_init_slot(struct controller *ctrl)
{
	struct slot *slot;

	slot = kzalloc(sizeof(*slot), GFP_KERNEL);
	if (!slot)
		return -ENOMEM;

780
	slot->wq = alloc_ordered_workqueue("pciehp-%u", 0, PSN(ctrl));
781 782 783
	if (!slot->wq)
		goto abort;

784 785
	slot->ctrl = ctrl;
	mutex_init(&slot->lock);
786
	mutex_init(&slot->hotplug_lock);
787
	INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
788
	ctrl->slot = slot;
L
Linus Torvalds 已提交
789
	return 0;
790 791 792
abort:
	kfree(slot);
	return -ENOMEM;
L
Linus Torvalds 已提交
793
}
794

795 796
static void pcie_cleanup_slot(struct controller *ctrl)
{
797
	struct slot *slot = ctrl->slot;
798
	cancel_delayed_work(&slot->work);
799
	destroy_workqueue(slot->wq);
800 801 802
	kfree(slot);
}

K
Kenji Kaneshige 已提交
803
static inline void dbg_ctrl(struct controller *ctrl)
804
{
805
	struct pci_dev *pdev = ctrl->pcie->port;
806
	u16 reg16;
807

K
Kenji Kaneshige 已提交
808 809
	if (!pciehp_debug)
		return;
810

811
	ctrl_info(ctrl, "Slot Capabilities      : 0x%08x\n", ctrl->slot_cap);
812
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &reg16);
813
	ctrl_info(ctrl, "Slot Status            : 0x%04x\n", reg16);
814
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &reg16);
815
	ctrl_info(ctrl, "Slot Control           : 0x%04x\n", reg16);
K
Kenji Kaneshige 已提交
816
}
817

R
Ryan Desfosses 已提交
818
#define FLAG(x, y)	(((x) & (y)) ? '+' : '-')
819

820
struct controller *pcie_init(struct pcie_device *dev)
K
Kenji Kaneshige 已提交
821
{
822
	struct controller *ctrl;
823
	u32 slot_cap, link_cap;
K
Kenji Kaneshige 已提交
824
	struct pci_dev *pdev = dev->port;
825

826
	ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
827
	if (!ctrl)
828
		goto abort;
829

830
	ctrl->pcie = dev;
831
	pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &slot_cap);
832 833 834 835

	if (pdev->hotplug_user_indicators)
		slot_cap &= ~(PCI_EXP_SLTCAP_AIP | PCI_EXP_SLTCAP_PIP);

836 837 838 839 840 841 842
	/*
	 * We assume no Thunderbolt controllers support Command Complete events,
	 * but some controllers falsely claim they do.
	 */
	if (pdev->is_thunderbolt)
		slot_cap |= PCI_EXP_SLTCAP_NCCS;

K
Kenji Kaneshige 已提交
843
	ctrl->slot_cap = slot_cap;
844 845
	mutex_init(&ctrl->ctrl_lock);
	init_waitqueue_head(&ctrl->queue);
K
Kenji Kaneshige 已提交
846
	dbg_ctrl(ctrl);
847

R
Ryan Desfosses 已提交
848 849
	/* Check if Data Link Layer Link Active Reporting is implemented */
	pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &link_cap);
850
	if (link_cap & PCI_EXP_LNKCAP_DLLLARC)
R
Ryan Desfosses 已提交
851
		ctrl->link_active_reporting = 1;
852

853 854 855 856 857 858
	/*
	 * Clear all remaining event bits in Slot Status register except
	 * Presence Detect Changed. We want to make sure possible
	 * hotplug event is triggered when the interrupt is unmasked so
	 * that we don't lose that event.
	 */
859 860
	pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
		PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
861 862
		PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_CC |
		PCI_EXP_SLTSTA_DLLSC);
863

864
	ctrl_info(ctrl, "Slot #%d AttnBtn%c PwrCtrl%c MRL%c AttnInd%c PwrInd%c HotPlug%c Surprise%c Interlock%c NoCompl%c LLActRep%c\n",
865 866 867 868
		(slot_cap & PCI_EXP_SLTCAP_PSN) >> 19,
		FLAG(slot_cap, PCI_EXP_SLTCAP_ABP),
		FLAG(slot_cap, PCI_EXP_SLTCAP_PCP),
		FLAG(slot_cap, PCI_EXP_SLTCAP_MRLSP),
869 870 871 872
		FLAG(slot_cap, PCI_EXP_SLTCAP_AIP),
		FLAG(slot_cap, PCI_EXP_SLTCAP_PIP),
		FLAG(slot_cap, PCI_EXP_SLTCAP_HPC),
		FLAG(slot_cap, PCI_EXP_SLTCAP_HPS),
873 874 875
		FLAG(slot_cap, PCI_EXP_SLTCAP_EIP),
		FLAG(slot_cap, PCI_EXP_SLTCAP_NCCS),
		FLAG(link_cap, PCI_EXP_LNKCAP_DLLLARC));
876 877 878

	if (pcie_init_slot(ctrl))
		goto abort_ctrl;
K
Kenji Kaneshige 已提交
879

880 881 882 883
	return ctrl;

abort_ctrl:
	kfree(ctrl);
884
abort:
885 886 887
	return NULL;
}

K
Kenji Kaneshige 已提交
888
void pciehp_release_ctrl(struct controller *ctrl)
889 890 891 892
{
	pcie_shutdown_notification(ctrl);
	pcie_cleanup_slot(ctrl);
	kfree(ctrl);
893
}