pciehp_hpc.c 22.4 KB
Newer Older
L
Linus Torvalds 已提交
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
/*
 * 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.
 *
 * 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; either version 2 of the License, or (at
 * your option) any later version.
 *
 * 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
26
 * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
L
Linus Torvalds 已提交
27 28 29 30 31 32
 *
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/types.h>
33 34 35
#include <linux/signal.h>
#include <linux/jiffies.h>
#include <linux/timer.h>
L
Linus Torvalds 已提交
36
#include <linux/pci.h>
A
Andrew Morton 已提交
37
#include <linux/interrupt.h>
38
#include <linux/time.h>
39
#include <linux/slab.h>
A
Andrew Morton 已提交
40

L
Linus Torvalds 已提交
41 42 43
#include "../pci.h"
#include "pciehp.h"

44
static inline struct pci_dev *ctrl_dev(struct controller *ctrl)
45
{
46
	return ctrl->pcie->port;
47
}
L
Linus Torvalds 已提交
48

49 50
static irqreturn_t pcie_isr(int irq, void *dev_id);
static void start_int_poll_timer(struct controller *ctrl, int sec);
L
Linus Torvalds 已提交
51 52

/* This is the interrupt polling timeout function. */
53
static void int_poll_timeout(unsigned long data)
L
Linus Torvalds 已提交
54
{
55
	struct controller *ctrl = (struct controller *)data;
L
Linus Torvalds 已提交
56 57

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

60
	init_timer(&ctrl->poll_timer);
L
Linus Torvalds 已提交
61
	if (!pciehp_poll_time)
62
		pciehp_poll_time = 2; /* default polling interval is 2 sec */
L
Linus Torvalds 已提交
63

64
	start_int_poll_timer(ctrl, pciehp_poll_time);
L
Linus Torvalds 已提交
65 66 67
}

/* This function starts the interrupt polling timer. */
68
static void start_int_poll_timer(struct controller *ctrl, int sec)
L
Linus Torvalds 已提交
69
{
70 71
	/* Clamp to sane value */
	if ((sec <= 0) || (sec > 60))
72
		sec = 2;
73 74 75 76 77

	ctrl->poll_timer.function = &int_poll_timeout;
	ctrl->poll_timer.data = (unsigned long)ctrl;
	ctrl->poll_timer.expires = jiffies + sec * HZ;
	add_timer(&ctrl->poll_timer);
L
Linus Torvalds 已提交
78 79
}

K
Kenji Kaneshige 已提交
80 81
static inline int pciehp_request_irq(struct controller *ctrl)
{
82
	int retval, irq = ctrl->pcie->irq;
K
Kenji Kaneshige 已提交
83 84 85 86 87 88 89 90 91 92 93

	/* Install interrupt polling timer. Start with 10 sec delay */
	if (pciehp_poll_mode) {
		init_timer(&ctrl->poll_timer);
		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)
94 95
		ctrl_err(ctrl, "Cannot get irq %d for the hotplug controller\n",
			 irq);
K
Kenji Kaneshige 已提交
96 97 98 99 100 101 102 103
	return retval;
}

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

107
static int pcie_poll_cmd(struct controller *ctrl, int timeout)
108
{
109
	struct pci_dev *pdev = ctrl_dev(ctrl);
110 111
	u16 slot_status;

112
	while (true) {
113
		pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
114 115 116 117 118 119
		if (slot_status == (u16) ~0) {
			ctrl_info(ctrl, "%s: no response from device\n",
				  __func__);
			return 0;
		}

120
		if (slot_status & PCI_EXP_SLTSTA_CC) {
121 122
			pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
						   PCI_EXP_SLTSTA_CC);
123
			return 1;
K
Kenji Kaneshige 已提交
124
		}
125 126 127 128
		if (timeout < 0)
			break;
		msleep(10);
		timeout -= 10;
129 130 131 132
	}
	return 0;	/* timeout */
}

133
static void pcie_wait_cmd(struct controller *ctrl)
134
{
135
	unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
136 137 138
	unsigned long duration = msecs_to_jiffies(msecs);
	unsigned long cmd_timeout = ctrl->cmd_started + duration;
	unsigned long now, timeout;
139 140
	int rc;

141 142 143 144
	/*
	 * If the controller does not generate notifications for command
	 * completions, we never need to wait between writes.
	 */
145
	if (NO_CMD_CMPL(ctrl))
146 147 148 149 150
		return;

	if (!ctrl->cmd_busy)
		return;

151 152 153 154 155 156 157 158 159 160
	/*
	 * 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;

161 162
	if (ctrl->slot_ctrl & PCI_EXP_SLTCTL_HPIE &&
	    ctrl->slot_ctrl & PCI_EXP_SLTCTL_CCIE)
163
		rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout);
164
	else
165
		rc = pcie_poll_cmd(ctrl, jiffies_to_msecs(timeout));
166 167 168 169 170 171 172 173 174

	/*
	 * 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.
	 */
175
	if (!rc)
176
		ctrl_info(ctrl, "Timeout on hotplug command %#06x (issued %u msec ago)\n",
177
			  ctrl->slot_ctrl,
178
			  jiffies_to_msecs(jiffies - ctrl->cmd_started));
179 180
}

181 182
static void pcie_do_write_cmd(struct controller *ctrl, u16 cmd,
			      u16 mask, bool wait)
L
Linus Torvalds 已提交
183
{
184
	struct pci_dev *pdev = ctrl_dev(ctrl);
185
	u16 slot_ctrl;
L
Linus Torvalds 已提交
186

187 188
	mutex_lock(&ctrl->ctrl_lock);

189 190 191
	/*
	 * Always wait for any previous command that might still be in progress
	 */
192 193
	pcie_wait_cmd(ctrl);

194
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
195 196 197 198 199
	if (slot_ctrl == (u16) ~0) {
		ctrl_info(ctrl, "%s: no response from device\n", __func__);
		goto out;
	}

200
	slot_ctrl &= ~mask;
K
Kenji Kaneshige 已提交
201
	slot_ctrl |= (cmd & mask);
202
	ctrl->cmd_busy = 1;
203
	smp_mb();
204
	pcie_capability_write_word(pdev, PCI_EXP_SLTCTL, slot_ctrl);
205
	ctrl->cmd_started = jiffies;
206
	ctrl->slot_ctrl = slot_ctrl;
207

208 209 210 211 212 213 214
	/*
	 * 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);

215
out:
216
	mutex_unlock(&ctrl->ctrl_lock);
L
Linus Torvalds 已提交
217 218
}

219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
/**
 * 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);
}

236
bool pciehp_check_link_active(struct controller *ctrl)
237
{
238
	struct pci_dev *pdev = ctrl_dev(ctrl);
239
	u16 lnk_status;
240
	bool ret;
241

242
	pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
243 244 245 246 247 248
	ret = !!(lnk_status & PCI_EXP_LNKSTA_DLLLA);

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

	return ret;
249 250
}

251
static void __pcie_wait_link_active(struct controller *ctrl, bool active)
252 253 254
{
	int timeout = 1000;

255
	if (pciehp_check_link_active(ctrl) == active)
256 257 258 259
		return;
	while (timeout > 0) {
		msleep(10);
		timeout -= 10;
260
		if (pciehp_check_link_active(ctrl) == active)
261 262
			return;
	}
263 264 265 266 267 268 269 270 271
	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);
}

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
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 已提交
298
int pciehp_check_link_status(struct controller *ctrl)
L
Linus Torvalds 已提交
299
{
300
	struct pci_dev *pdev = ctrl_dev(ctrl);
301
	bool found;
L
Linus Torvalds 已提交
302 303
	u16 lnk_status;

R
Ryan Desfosses 已提交
304 305 306 307 308 309 310 311 312
	/*
	 * 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);
313

314 315 316 317
	/* 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));
318

319
	pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
320
	ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
321 322
	if ((lnk_status & PCI_EXP_LNKSTA_LT) ||
	    !(lnk_status & PCI_EXP_LNKSTA_NLW)) {
323 324
		ctrl_err(ctrl, "link training error: status %#06x\n",
			 lnk_status);
325
		return -1;
L
Linus Torvalds 已提交
326 327
	}

328 329
	pcie_update_link_speed(ctrl->pcie->port->subordinate, lnk_status);

330 331
	if (!found)
		return -1;
332

333
	return 0;
L
Linus Torvalds 已提交
334 335
}

336 337
static int __pciehp_link_set(struct controller *ctrl, bool enable)
{
338
	struct pci_dev *pdev = ctrl_dev(ctrl);
339 340
	u16 lnk_ctrl;

341
	pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &lnk_ctrl);
342 343 344 345 346 347

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

348
	pcie_capability_write_word(pdev, PCI_EXP_LNKCTL, lnk_ctrl);
349
	ctrl_dbg(ctrl, "%s: lnk_ctrl = %x\n", __func__, lnk_ctrl);
350
	return 0;
351 352 353 354 355 356 357
}

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

358
void pciehp_get_attention_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
359
{
360
	struct controller *ctrl = slot->ctrl;
361
	struct pci_dev *pdev = ctrl_dev(ctrl);
L
Linus Torvalds 已提交
362 363
	u16 slot_ctrl;

364
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
K
Kenji Kaneshige 已提交
365 366
	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 已提交
367

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

384
void pciehp_get_power_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
385
{
386
	struct controller *ctrl = slot->ctrl;
387
	struct pci_dev *pdev = ctrl_dev(ctrl);
L
Linus Torvalds 已提交
388 389
	u16 slot_ctrl;

390
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
K
Kenji Kaneshige 已提交
391 392
	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 已提交
393

394 395 396
	switch (slot_ctrl & PCI_EXP_SLTCTL_PCC) {
	case PCI_EXP_SLTCTL_PWR_ON:
		*status = 1;	/* On */
L
Linus Torvalds 已提交
397
		break;
398 399
	case PCI_EXP_SLTCTL_PWR_OFF:
		*status = 0;	/* Off */
L
Linus Torvalds 已提交
400 401 402 403 404 405 406
		break;
	default:
		*status = 0xFF;
		break;
	}
}

407
void pciehp_get_latch_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
408
{
409
	struct pci_dev *pdev = ctrl_dev(slot->ctrl);
L
Linus Torvalds 已提交
410 411
	u16 slot_status;

412
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
413
	*status = !!(slot_status & PCI_EXP_SLTSTA_MRLSS);
L
Linus Torvalds 已提交
414 415
}

416
void pciehp_get_adapter_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
417
{
418
	struct pci_dev *pdev = ctrl_dev(slot->ctrl);
L
Linus Torvalds 已提交
419 420
	u16 slot_status;

421
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
422
	*status = !!(slot_status & PCI_EXP_SLTSTA_PDS);
L
Linus Torvalds 已提交
423 424
}

K
Kenji Kaneshige 已提交
425
int pciehp_query_power_fault(struct slot *slot)
L
Linus Torvalds 已提交
426
{
427
	struct pci_dev *pdev = ctrl_dev(slot->ctrl);
L
Linus Torvalds 已提交
428 429
	u16 slot_status;

430
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
431
	return !!(slot_status & PCI_EXP_SLTSTA_PFD);
L
Linus Torvalds 已提交
432 433
}

434
void pciehp_set_attention_status(struct slot *slot, u8 value)
L
Linus Torvalds 已提交
435
{
436
	struct controller *ctrl = slot->ctrl;
437
	u16 slot_cmd;
L
Linus Torvalds 已提交
438

439 440 441
	if (!ATTN_LED(ctrl))
		return;

L
Linus Torvalds 已提交
442
	switch (value) {
R
Ryan Desfosses 已提交
443
	case 0:		/* turn off */
444
		slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_OFF;
445 446
		break;
	case 1:		/* turn on */
447
		slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_ON;
448 449
		break;
	case 2:		/* turn blink */
450
		slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_BLINK;
451 452
		break;
	default:
453
		return;
L
Linus Torvalds 已提交
454
	}
455
	pcie_write_cmd_nowait(ctrl, slot_cmd, PCI_EXP_SLTCTL_AIC);
K
Kenji Kaneshige 已提交
456 457
	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 已提交
458 459
}

K
Kenji Kaneshige 已提交
460
void pciehp_green_led_on(struct slot *slot)
L
Linus Torvalds 已提交
461
{
462
	struct controller *ctrl = slot->ctrl;
463

464 465 466
	if (!PWR_LED(ctrl))
		return;

467 468
	pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_ON,
			      PCI_EXP_SLTCTL_PIC);
K
Kenji Kaneshige 已提交
469
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
470 471
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
		 PCI_EXP_SLTCTL_PWR_IND_ON);
L
Linus Torvalds 已提交
472 473
}

K
Kenji Kaneshige 已提交
474
void pciehp_green_led_off(struct slot *slot)
L
Linus Torvalds 已提交
475
{
476
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
477

478 479 480
	if (!PWR_LED(ctrl))
		return;

481 482
	pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_OFF,
			      PCI_EXP_SLTCTL_PIC);
K
Kenji Kaneshige 已提交
483
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
484 485
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
		 PCI_EXP_SLTCTL_PWR_IND_OFF);
L
Linus Torvalds 已提交
486 487
}

K
Kenji Kaneshige 已提交
488
void pciehp_green_led_blink(struct slot *slot)
L
Linus Torvalds 已提交
489
{
490
	struct controller *ctrl = slot->ctrl;
491

492 493 494
	if (!PWR_LED(ctrl))
		return;

495 496
	pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_BLINK,
			      PCI_EXP_SLTCTL_PIC);
K
Kenji Kaneshige 已提交
497
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
498 499
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
		 PCI_EXP_SLTCTL_PWR_IND_BLINK);
L
Linus Torvalds 已提交
500 501
}

R
Ryan Desfosses 已提交
502
int pciehp_power_on_slot(struct slot *slot)
L
Linus Torvalds 已提交
503
{
504
	struct controller *ctrl = slot->ctrl;
505
	struct pci_dev *pdev = ctrl_dev(ctrl);
506
	u16 slot_status;
507
	int retval;
L
Linus Torvalds 已提交
508

509
	/* Clear sticky power-fault bit from previous power failures */
510
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
511 512 513
	if (slot_status & PCI_EXP_SLTSTA_PFD)
		pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
					   PCI_EXP_SLTSTA_PFD);
514
	ctrl->power_fault_detected = 0;
L
Linus Torvalds 已提交
515

516
	pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_ON, PCI_EXP_SLTCTL_PCC);
K
Kenji Kaneshige 已提交
517
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
518 519
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
		 PCI_EXP_SLTCTL_PWR_ON);
L
Linus Torvalds 已提交
520

521 522 523 524
	retval = pciehp_link_enable(ctrl);
	if (retval)
		ctrl_err(ctrl, "%s: Can not enable the link!\n", __func__);

L
Linus Torvalds 已提交
525 526 527
	return retval;
}

R
Ryan Desfosses 已提交
528
void pciehp_power_off_slot(struct slot *slot)
L
Linus Torvalds 已提交
529
{
530
	struct controller *ctrl = slot->ctrl;
531

532
	pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_OFF, PCI_EXP_SLTCTL_PCC);
K
Kenji Kaneshige 已提交
533
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
534 535
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
		 PCI_EXP_SLTCTL_PWR_OFF);
L
Linus Torvalds 已提交
536 537
}

538
static irqreturn_t pcie_isr(int irq, void *dev_id)
L
Linus Torvalds 已提交
539
{
540
	struct controller *ctrl = (struct controller *)dev_id;
541
	struct pci_dev *pdev = ctrl_dev(ctrl);
542 543
	struct pci_bus *subordinate = pdev->subordinate;
	struct pci_dev *dev;
544
	struct slot *slot = ctrl->slot;
545
	u16 status, events;
546
	u8 present;
547
	bool link;
L
Linus Torvalds 已提交
548

549 550 551 552
	/* Interrupts cannot originate from a controller that's asleep */
	if (pdev->current_state == PCI_D3cold)
		return IRQ_NONE;

553 554 555 556 557
	/*
	 * In order 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.
	 */
558
	events = 0;
559
	do {
560 561
		pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &status);
		if (status == (u16) ~0) {
562 563
			ctrl_info(ctrl, "%s: no response from device\n",
				  __func__);
564
			return IRQ_NONE;
565
		}
L
Linus Torvalds 已提交
566

567 568 569 570 571 572 573 574 575 576
		/*
		 * Slot Status contains plain status bits as well as event
		 * notification bits; right now we only want the event bits.
		 */
		status &= (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
			   PCI_EXP_SLTSTA_PDC | PCI_EXP_SLTSTA_CC |
			   PCI_EXP_SLTSTA_DLLSC);
		status &= ~events;
		events |= status;
		if (!events)
L
Linus Torvalds 已提交
577
			return IRQ_NONE;
578
		if (status)
579
			pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
580 581
						   events);
	} while (status);
582

583
	ctrl_dbg(ctrl, "pending interrupts %#06x from Slot Status\n", events);
584

585
	/* Check Command Complete Interrupt Pending */
586
	if (events & PCI_EXP_SLTSTA_CC) {
587
		ctrl->cmd_busy = 0;
588
		smp_mb();
589
		wake_up(&ctrl->queue);
L
Linus Torvalds 已提交
590 591
	}

592 593 594 595
	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",
596
					 events, pci_name(dev));
597 598 599 600 601
				return IRQ_HANDLED;
			}
		}
	}

602
	if (!(events & ~PCI_EXP_SLTSTA_CC))
603 604
		return IRQ_HANDLED;

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

612
	/* Check Presence Detect Changed */
613
	if (events & PCI_EXP_SLTSTA_PDC) {
614 615 616 617 618 619
		pciehp_get_adapter_status(slot, &present);
		ctrl_info(ctrl, "Card %spresent on Slot(%s)\n",
			  present ? "" : "not ", slot_name(slot));
		pciehp_queue_interrupt_event(slot, present ? INT_PRESENCE_ON :
					     INT_PRESENCE_OFF);
	}
620

621
	/* Check Power Fault Detected */
622
	if ((events & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) {
623
		ctrl->power_fault_detected = 1;
624 625
		ctrl_err(ctrl, "Power fault on slot %s\n", slot_name(slot));
		pciehp_queue_interrupt_event(slot, INT_POWER_FAULT);
626
	}
627

628
	if (events & PCI_EXP_SLTSTA_DLLSC) {
629 630 631 632 633 634
		link = pciehp_check_link_active(ctrl);
		ctrl_info(ctrl, "slot(%s): Link %s event\n",
			  slot_name(slot), link ? "Up" : "Down");
		pciehp_queue_interrupt_event(slot, link ? INT_LINK_UP :
					     INT_LINK_DOWN);
	}
635

L
Linus Torvalds 已提交
636 637 638
	return IRQ_HANDLED;
}

639
void pcie_enable_notification(struct controller *ctrl)
M
Mark Lord 已提交
640
{
641
	u16 cmd, mask;
L
Linus Torvalds 已提交
642

643 644 645 646 647 648 649 650 651 652
	/*
	 * 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.
	 */
653 654 655 656 657 658 659

	/*
	 * 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;
660
	if (ATTN_BUTTN(ctrl))
661
		cmd |= PCI_EXP_SLTCTL_ABPE;
662 663
	else
		cmd |= PCI_EXP_SLTCTL_PDCE;
664
	if (!pciehp_poll_mode)
665
		cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
666

667
	mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
668
		PCI_EXP_SLTCTL_PFDE |
669 670
		PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
		PCI_EXP_SLTCTL_DLLSCE);
671

672
	pcie_write_cmd_nowait(ctrl, cmd, mask);
673 674
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, cmd);
675 676 677 678 679
}

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

681 682
	mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
		PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
683 684
		PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
		PCI_EXP_SLTCTL_DLLSCE);
685
	pcie_write_cmd(ctrl, 0, mask);
686 687
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, 0);
688 689
}

690 691
/*
 * pciehp has a 1:1 bus:slot relationship so we ultimately want a secondary
692 693 694 695
 * 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
696 697 698 699 700
 * events after.
 */
int pciehp_reset_slot(struct slot *slot, int probe)
{
	struct controller *ctrl = slot->ctrl;
701
	struct pci_dev *pdev = ctrl_dev(ctrl);
702
	u16 stat_mask = 0, ctrl_mask = 0;
703 704 705 706

	if (probe)
		return 0;

707
	if (!ATTN_BUTTN(ctrl)) {
708 709
		ctrl_mask |= PCI_EXP_SLTCTL_PDCE;
		stat_mask |= PCI_EXP_SLTSTA_PDC;
710
	}
711 712 713 714
	ctrl_mask |= PCI_EXP_SLTCTL_DLLSCE;
	stat_mask |= PCI_EXP_SLTSTA_DLLSC;

	pcie_write_cmd(ctrl, 0, ctrl_mask);
715 716
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, 0);
717 718
	if (pciehp_poll_mode)
		del_timer_sync(&ctrl->poll_timer);
719 720 721

	pci_reset_bridge_secondary_bus(ctrl->pcie->port);

722
	pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, stat_mask);
723
	pcie_write_cmd_nowait(ctrl, ctrl_mask, ctrl_mask);
724 725
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, ctrl_mask);
726 727
	if (pciehp_poll_mode)
		int_poll_timeout(ctrl->poll_timer.data);
728 729 730 731

	return 0;
}

732
int pcie_init_notification(struct controller *ctrl)
733 734 735
{
	if (pciehp_request_irq(ctrl))
		return -1;
736
	pcie_enable_notification(ctrl);
737
	ctrl->notification_enabled = 1;
738 739 740 741 742
	return 0;
}

static void pcie_shutdown_notification(struct controller *ctrl)
{
743 744 745 746 747
	if (ctrl->notification_enabled) {
		pcie_disable_notification(ctrl);
		pciehp_free_irq(ctrl);
		ctrl->notification_enabled = 0;
	}
748 749 750 751 752 753 754 755 756 757
}

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

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

758
	slot->wq = alloc_workqueue("pciehp-%u", 0, 0, PSN(ctrl));
759 760 761
	if (!slot->wq)
		goto abort;

762 763
	slot->ctrl = ctrl;
	mutex_init(&slot->lock);
764
	mutex_init(&slot->hotplug_lock);
765
	INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
766
	ctrl->slot = slot;
L
Linus Torvalds 已提交
767
	return 0;
768 769 770
abort:
	kfree(slot);
	return -ENOMEM;
L
Linus Torvalds 已提交
771
}
772

773 774
static void pcie_cleanup_slot(struct controller *ctrl)
{
775
	struct slot *slot = ctrl->slot;
776
	cancel_delayed_work(&slot->work);
777
	destroy_workqueue(slot->wq);
778 779 780
	kfree(slot);
}

K
Kenji Kaneshige 已提交
781
static inline void dbg_ctrl(struct controller *ctrl)
782
{
783
	struct pci_dev *pdev = ctrl->pcie->port;
784
	u16 reg16;
785

K
Kenji Kaneshige 已提交
786 787
	if (!pciehp_debug)
		return;
788

789
	ctrl_info(ctrl, "Slot Capabilities      : 0x%08x\n", ctrl->slot_cap);
790
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &reg16);
791
	ctrl_info(ctrl, "Slot Status            : 0x%04x\n", reg16);
792
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &reg16);
793
	ctrl_info(ctrl, "Slot Control           : 0x%04x\n", reg16);
K
Kenji Kaneshige 已提交
794
}
795

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

798
struct controller *pcie_init(struct pcie_device *dev)
K
Kenji Kaneshige 已提交
799
{
800
	struct controller *ctrl;
801
	u32 slot_cap, link_cap;
K
Kenji Kaneshige 已提交
802
	struct pci_dev *pdev = dev->port;
803

804 805
	ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
	if (!ctrl) {
806
		dev_err(&dev->device, "%s: Out of memory\n", __func__);
807 808
		goto abort;
	}
809
	ctrl->pcie = dev;
810
	pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &slot_cap);
K
Kenji Kaneshige 已提交
811
	ctrl->slot_cap = slot_cap;
812 813
	mutex_init(&ctrl->ctrl_lock);
	init_waitqueue_head(&ctrl->queue);
K
Kenji Kaneshige 已提交
814
	dbg_ctrl(ctrl);
815

R
Ryan Desfosses 已提交
816 817
	/* Check if Data Link Layer Link Active Reporting is implemented */
	pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &link_cap);
818
	if (link_cap & PCI_EXP_LNKCAP_DLLLARC)
R
Ryan Desfosses 已提交
819
		ctrl->link_active_reporting = 1;
820

821
	/* Clear all remaining event bits in Slot Status register */
822 823 824
	pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
		PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
		PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
825
		PCI_EXP_SLTSTA_CC | PCI_EXP_SLTSTA_DLLSC);
826

827
	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",
828 829 830 831
		(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),
832 833 834 835
		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),
836 837 838
		FLAG(slot_cap, PCI_EXP_SLTCAP_EIP),
		FLAG(slot_cap, PCI_EXP_SLTCAP_NCCS),
		FLAG(link_cap, PCI_EXP_LNKCAP_DLLLARC));
839 840 841

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

843 844 845 846
	return ctrl;

abort_ctrl:
	kfree(ctrl);
847
abort:
848 849 850
	return NULL;
}

K
Kenji Kaneshige 已提交
851
void pciehp_release_ctrl(struct controller *ctrl)
852 853 854 855
{
	pcie_shutdown_notification(ctrl);
	pcie_cleanup_slot(ctrl);
	kfree(ctrl);
856
}