pciehp_hpc.c 22.0 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 113
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
	if (slot_status & PCI_EXP_SLTSTA_CC) {
114 115
		pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
					   PCI_EXP_SLTSTA_CC);
116
		return 1;
K
Kenji Kaneshige 已提交
117
	}
A
Adrian Bunk 已提交
118
	while (timeout > 0) {
119 120
		msleep(10);
		timeout -= 10;
121 122
		pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
		if (slot_status & PCI_EXP_SLTSTA_CC) {
123 124
			pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
						   PCI_EXP_SLTSTA_CC);
125
			return 1;
K
Kenji Kaneshige 已提交
126
		}
127 128 129 130
	}
	return 0;	/* timeout */
}

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

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

	if (!ctrl->cmd_busy)
		return;

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

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

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

179 180
/**
 * pcie_write_cmd - Issue controller command
181
 * @ctrl: controller to which the command is issued
182 183 184
 * @cmd:  command value written to slot control register
 * @mask: bitmask of slot control register to be modified
 */
185
static void pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
L
Linus Torvalds 已提交
186
{
187
	struct pci_dev *pdev = ctrl_dev(ctrl);
188
	u16 slot_ctrl;
L
Linus Torvalds 已提交
189

190 191
	mutex_lock(&ctrl->ctrl_lock);

192 193 194
	/* Wait for any previous command that might still be in progress */
	pcie_wait_cmd(ctrl);

195
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
196
	slot_ctrl &= ~mask;
K
Kenji Kaneshige 已提交
197
	slot_ctrl |= (cmd & mask);
198
	ctrl->cmd_busy = 1;
199
	smp_mb();
200
	pcie_capability_write_word(pdev, PCI_EXP_SLTCTL, slot_ctrl);
201
	ctrl->cmd_started = jiffies;
202
	ctrl->slot_ctrl = slot_ctrl;
203

204
	mutex_unlock(&ctrl->ctrl_lock);
L
Linus Torvalds 已提交
205 206
}

207
bool pciehp_check_link_active(struct controller *ctrl)
208
{
209
	struct pci_dev *pdev = ctrl_dev(ctrl);
210
	u16 lnk_status;
211
	bool ret;
212

213
	pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
214 215 216 217 218 219
	ret = !!(lnk_status & PCI_EXP_LNKSTA_DLLLA);

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

	return ret;
220 221
}

222
static void __pcie_wait_link_active(struct controller *ctrl, bool active)
223 224 225
{
	int timeout = 1000;

226
	if (pciehp_check_link_active(ctrl) == active)
227 228 229 230
		return;
	while (timeout > 0) {
		msleep(10);
		timeout -= 10;
231
		if (pciehp_check_link_active(ctrl) == active)
232 233
			return;
	}
234 235 236 237 238 239 240 241 242
	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);
}

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
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 已提交
269
int pciehp_check_link_status(struct controller *ctrl)
L
Linus Torvalds 已提交
270
{
271
	struct pci_dev *pdev = ctrl_dev(ctrl);
272
	bool found;
L
Linus Torvalds 已提交
273 274
	u16 lnk_status;

R
Ryan Desfosses 已提交
275 276 277 278 279 280 281 282 283
	/*
	 * 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);
284

285 286 287 288
	/* 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));
289

290
	pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
291
	ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
292 293
	if ((lnk_status & PCI_EXP_LNKSTA_LT) ||
	    !(lnk_status & PCI_EXP_LNKSTA_NLW)) {
R
Ryan Desfosses 已提交
294
		ctrl_err(ctrl, "Link Training Error occurs\n");
295
		return -1;
L
Linus Torvalds 已提交
296 297
	}

298 299
	pcie_update_link_speed(ctrl->pcie->port->subordinate, lnk_status);

300 301
	if (!found)
		return -1;
302

303
	return 0;
L
Linus Torvalds 已提交
304 305
}

306 307
static int __pciehp_link_set(struct controller *ctrl, bool enable)
{
308
	struct pci_dev *pdev = ctrl_dev(ctrl);
309 310
	u16 lnk_ctrl;

311
	pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &lnk_ctrl);
312 313 314 315 316 317

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

318
	pcie_capability_write_word(pdev, PCI_EXP_LNKCTL, lnk_ctrl);
319
	ctrl_dbg(ctrl, "%s: lnk_ctrl = %x\n", __func__, lnk_ctrl);
320
	return 0;
321 322 323 324 325 326 327
}

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

328
void pciehp_get_attention_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
329
{
330
	struct controller *ctrl = slot->ctrl;
331
	struct pci_dev *pdev = ctrl_dev(ctrl);
L
Linus Torvalds 已提交
332 333
	u16 slot_ctrl;

334
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
K
Kenji Kaneshige 已提交
335 336
	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 已提交
337

338 339
	switch (slot_ctrl & PCI_EXP_SLTCTL_AIC) {
	case PCI_EXP_SLTCTL_ATTN_IND_ON:
L
Linus Torvalds 已提交
340 341
		*status = 1;	/* On */
		break;
342
	case PCI_EXP_SLTCTL_ATTN_IND_BLINK:
L
Linus Torvalds 已提交
343 344
		*status = 2;	/* Blink */
		break;
345
	case PCI_EXP_SLTCTL_ATTN_IND_OFF:
L
Linus Torvalds 已提交
346 347 348 349 350 351 352 353
		*status = 0;	/* Off */
		break;
	default:
		*status = 0xFF;
		break;
	}
}

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

360
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
K
Kenji Kaneshige 已提交
361 362
	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 已提交
363

364 365 366
	switch (slot_ctrl & PCI_EXP_SLTCTL_PCC) {
	case PCI_EXP_SLTCTL_PWR_ON:
		*status = 1;	/* On */
L
Linus Torvalds 已提交
367
		break;
368 369
	case PCI_EXP_SLTCTL_PWR_OFF:
		*status = 0;	/* Off */
L
Linus Torvalds 已提交
370 371 372 373 374 375 376
		break;
	default:
		*status = 0xFF;
		break;
	}
}

377
void pciehp_get_latch_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
378
{
379
	struct pci_dev *pdev = ctrl_dev(slot->ctrl);
L
Linus Torvalds 已提交
380 381
	u16 slot_status;

382
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
383
	*status = !!(slot_status & PCI_EXP_SLTSTA_MRLSS);
L
Linus Torvalds 已提交
384 385
}

386
void pciehp_get_adapter_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
387
{
388
	struct pci_dev *pdev = ctrl_dev(slot->ctrl);
L
Linus Torvalds 已提交
389 390
	u16 slot_status;

391
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
392
	*status = !!(slot_status & PCI_EXP_SLTSTA_PDS);
L
Linus Torvalds 已提交
393 394
}

K
Kenji Kaneshige 已提交
395
int pciehp_query_power_fault(struct slot *slot)
L
Linus Torvalds 已提交
396
{
397
	struct pci_dev *pdev = ctrl_dev(slot->ctrl);
L
Linus Torvalds 已提交
398 399
	u16 slot_status;

400
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
401
	return !!(slot_status & PCI_EXP_SLTSTA_PFD);
L
Linus Torvalds 已提交
402 403
}

404
void pciehp_set_attention_status(struct slot *slot, u8 value)
L
Linus Torvalds 已提交
405
{
406
	struct controller *ctrl = slot->ctrl;
407
	u16 slot_cmd;
L
Linus Torvalds 已提交
408

409 410 411
	if (!ATTN_LED(ctrl))
		return;

L
Linus Torvalds 已提交
412
	switch (value) {
R
Ryan Desfosses 已提交
413
	case 0:		/* turn off */
414
		slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_OFF;
415 416
		break;
	case 1:		/* turn on */
417
		slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_ON;
418 419
		break;
	case 2:		/* turn blink */
420
		slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_BLINK;
421 422
		break;
	default:
423
		return;
L
Linus Torvalds 已提交
424
	}
K
Kenji Kaneshige 已提交
425 426
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
427
	pcie_write_cmd(ctrl, slot_cmd, PCI_EXP_SLTCTL_AIC);
L
Linus Torvalds 已提交
428 429
}

K
Kenji Kaneshige 已提交
430
void pciehp_green_led_on(struct slot *slot)
L
Linus Torvalds 已提交
431
{
432
	struct controller *ctrl = slot->ctrl;
433

434 435 436
	if (!PWR_LED(ctrl))
		return;

437
	pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_IND_ON, PCI_EXP_SLTCTL_PIC);
K
Kenji Kaneshige 已提交
438
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
439 440
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
		 PCI_EXP_SLTCTL_PWR_IND_ON);
L
Linus Torvalds 已提交
441 442
}

K
Kenji Kaneshige 已提交
443
void pciehp_green_led_off(struct slot *slot)
L
Linus Torvalds 已提交
444
{
445
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
446

447 448 449
	if (!PWR_LED(ctrl))
		return;

450
	pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_IND_OFF, PCI_EXP_SLTCTL_PIC);
K
Kenji Kaneshige 已提交
451
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
452 453
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
		 PCI_EXP_SLTCTL_PWR_IND_OFF);
L
Linus Torvalds 已提交
454 455
}

K
Kenji Kaneshige 已提交
456
void pciehp_green_led_blink(struct slot *slot)
L
Linus Torvalds 已提交
457
{
458
	struct controller *ctrl = slot->ctrl;
459

460 461 462
	if (!PWR_LED(ctrl))
		return;

463
	pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_IND_BLINK, PCI_EXP_SLTCTL_PIC);
K
Kenji Kaneshige 已提交
464
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
465 466
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
		 PCI_EXP_SLTCTL_PWR_IND_BLINK);
L
Linus Torvalds 已提交
467 468
}

R
Ryan Desfosses 已提交
469
int pciehp_power_on_slot(struct slot *slot)
L
Linus Torvalds 已提交
470
{
471
	struct controller *ctrl = slot->ctrl;
472
	struct pci_dev *pdev = ctrl_dev(ctrl);
473
	u16 slot_status;
474
	int retval;
L
Linus Torvalds 已提交
475

476
	/* Clear sticky power-fault bit from previous power failures */
477
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
478 479 480
	if (slot_status & PCI_EXP_SLTSTA_PFD)
		pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
					   PCI_EXP_SLTSTA_PFD);
481
	ctrl->power_fault_detected = 0;
L
Linus Torvalds 已提交
482

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

488 489 490 491
	retval = pciehp_link_enable(ctrl);
	if (retval)
		ctrl_err(ctrl, "%s: Can not enable the link!\n", __func__);

L
Linus Torvalds 已提交
492 493 494
	return retval;
}

R
Ryan Desfosses 已提交
495
void pciehp_power_off_slot(struct slot *slot)
L
Linus Torvalds 已提交
496
{
497
	struct controller *ctrl = slot->ctrl;
498

499
	pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_OFF, PCI_EXP_SLTCTL_PCC);
K
Kenji Kaneshige 已提交
500
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
501 502
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
		 PCI_EXP_SLTCTL_PWR_OFF);
L
Linus Torvalds 已提交
503 504
}

505
static irqreturn_t pcie_isr(int irq, void *dev_id)
L
Linus Torvalds 已提交
506
{
507
	struct controller *ctrl = (struct controller *)dev_id;
508
	struct pci_dev *pdev = ctrl_dev(ctrl);
509
	struct slot *slot = ctrl->slot;
510
	u16 detected, intr_loc;
L
Linus Torvalds 已提交
511

512 513 514 515 516 517 518
	/*
	 * 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.
	 */
	intr_loc = 0;
	do {
519
		pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &detected);
L
Linus Torvalds 已提交
520

521 522
		detected &= (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
			     PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
523
			     PCI_EXP_SLTSTA_CC | PCI_EXP_SLTSTA_DLLSC);
524
		detected &= ~intr_loc;
525 526
		intr_loc |= detected;
		if (!intr_loc)
L
Linus Torvalds 已提交
527
			return IRQ_NONE;
528 529 530
		if (detected)
			pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
						   intr_loc);
531
	} while (detected);
532

533
	ctrl_dbg(ctrl, "%s: intr_loc %x\n", __func__, intr_loc);
534

535
	/* Check Command Complete Interrupt Pending */
536
	if (intr_loc & PCI_EXP_SLTSTA_CC) {
537
		ctrl->cmd_busy = 0;
538
		smp_mb();
539
		wake_up(&ctrl->queue);
L
Linus Torvalds 已提交
540 541
	}

542
	if (!(intr_loc & ~PCI_EXP_SLTSTA_CC))
543 544
		return IRQ_HANDLED;

545
	/* Check MRL Sensor Changed */
546
	if (intr_loc & PCI_EXP_SLTSTA_MRLSC)
547
		pciehp_handle_switch_change(slot);
548

549
	/* Check Attention Button Pressed */
550
	if (intr_loc & PCI_EXP_SLTSTA_ABP)
551
		pciehp_handle_attention_button(slot);
552

553
	/* Check Presence Detect Changed */
554
	if (intr_loc & PCI_EXP_SLTSTA_PDC)
555
		pciehp_handle_presence_change(slot);
556

557
	/* Check Power Fault Detected */
558 559
	if ((intr_loc & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) {
		ctrl->power_fault_detected = 1;
560
		pciehp_handle_power_fault(slot);
561
	}
562 563 564 565

	if (intr_loc & PCI_EXP_SLTSTA_DLLSC)
		pciehp_handle_linkstate_change(slot);

L
Linus Torvalds 已提交
566 567 568
	return IRQ_HANDLED;
}

569
void pcie_enable_notification(struct controller *ctrl)
M
Mark Lord 已提交
570
{
571
	u16 cmd, mask;
L
Linus Torvalds 已提交
572

573 574 575 576 577 578 579 580 581 582
	/*
	 * 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.
	 */
583 584 585 586 587 588 589

	/*
	 * 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;
590
	if (ATTN_BUTTN(ctrl))
591
		cmd |= PCI_EXP_SLTCTL_ABPE;
592 593
	else
		cmd |= PCI_EXP_SLTCTL_PDCE;
594
	if (MRL_SENS(ctrl))
595
		cmd |= PCI_EXP_SLTCTL_MRLSCE;
596
	if (!pciehp_poll_mode)
597
		cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
598

599 600
	mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
		PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
601 602
		PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
		PCI_EXP_SLTCTL_DLLSCE);
603

604
	pcie_write_cmd(ctrl, cmd, mask);
605 606 607 608 609
}

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

611 612
	mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
		PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
613 614
		PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
		PCI_EXP_SLTCTL_DLLSCE);
615
	pcie_write_cmd(ctrl, 0, mask);
616 617
}

618 619
/*
 * pciehp has a 1:1 bus:slot relationship so we ultimately want a secondary
620 621 622 623
 * 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
624 625 626 627 628
 * events after.
 */
int pciehp_reset_slot(struct slot *slot, int probe)
{
	struct controller *ctrl = slot->ctrl;
629
	struct pci_dev *pdev = ctrl_dev(ctrl);
630
	u16 stat_mask = 0, ctrl_mask = 0;
631 632 633 634

	if (probe)
		return 0;

635
	if (!ATTN_BUTTN(ctrl)) {
636 637
		ctrl_mask |= PCI_EXP_SLTCTL_PDCE;
		stat_mask |= PCI_EXP_SLTSTA_PDC;
638
	}
639 640 641 642 643 644
	ctrl_mask |= PCI_EXP_SLTCTL_DLLSCE;
	stat_mask |= PCI_EXP_SLTSTA_DLLSC;

	pcie_write_cmd(ctrl, 0, ctrl_mask);
	if (pciehp_poll_mode)
		del_timer_sync(&ctrl->poll_timer);
645 646 647

	pci_reset_bridge_secondary_bus(ctrl->pcie->port);

648 649 650 651
	pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, stat_mask);
	pcie_write_cmd(ctrl, ctrl_mask, ctrl_mask);
	if (pciehp_poll_mode)
		int_poll_timeout(ctrl->poll_timer.data);
652 653 654 655

	return 0;
}

656
int pcie_init_notification(struct controller *ctrl)
657 658 659
{
	if (pciehp_request_irq(ctrl))
		return -1;
660
	pcie_enable_notification(ctrl);
661
	ctrl->notification_enabled = 1;
662 663 664 665 666
	return 0;
}

static void pcie_shutdown_notification(struct controller *ctrl)
{
667 668 669 670 671
	if (ctrl->notification_enabled) {
		pcie_disable_notification(ctrl);
		pciehp_free_irq(ctrl);
		ctrl->notification_enabled = 0;
	}
672 673 674 675 676 677 678 679 680 681
}

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

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

682
	slot->wq = alloc_workqueue("pciehp-%u", 0, 0, PSN(ctrl));
683 684 685
	if (!slot->wq)
		goto abort;

686 687
	slot->ctrl = ctrl;
	mutex_init(&slot->lock);
688
	mutex_init(&slot->hotplug_lock);
689
	INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
690
	ctrl->slot = slot;
L
Linus Torvalds 已提交
691
	return 0;
692 693 694
abort:
	kfree(slot);
	return -ENOMEM;
L
Linus Torvalds 已提交
695
}
696

697 698
static void pcie_cleanup_slot(struct controller *ctrl)
{
699
	struct slot *slot = ctrl->slot;
700
	cancel_delayed_work(&slot->work);
701
	destroy_workqueue(slot->wq);
702 703 704
	kfree(slot);
}

K
Kenji Kaneshige 已提交
705
static inline void dbg_ctrl(struct controller *ctrl)
706
{
K
Kenji Kaneshige 已提交
707 708
	int i;
	u16 reg16;
709
	struct pci_dev *pdev = ctrl->pcie->port;
710

K
Kenji Kaneshige 已提交
711 712
	if (!pciehp_debug)
		return;
713

714 715 716 717 718 719 720 721 722
	ctrl_info(ctrl, "Hotplug Controller:\n");
	ctrl_info(ctrl, "  Seg/Bus/Dev/Func/IRQ : %s IRQ %d\n",
		  pci_name(pdev), pdev->irq);
	ctrl_info(ctrl, "  Vendor ID            : 0x%04x\n", pdev->vendor);
	ctrl_info(ctrl, "  Device ID            : 0x%04x\n", pdev->device);
	ctrl_info(ctrl, "  Subsystem ID         : 0x%04x\n",
		  pdev->subsystem_device);
	ctrl_info(ctrl, "  Subsystem Vendor ID  : 0x%04x\n",
		  pdev->subsystem_vendor);
K
Kenji Kaneshige 已提交
723 724
	ctrl_info(ctrl, "  PCIe Cap offset      : 0x%02x\n",
		  pci_pcie_cap(pdev));
K
Kenji Kaneshige 已提交
725 726 727
	for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
		if (!pci_resource_len(pdev, i))
			continue;
728 729
		ctrl_info(ctrl, "  PCI resource [%d]     : %pR\n",
			  i, &pdev->resource[i]);
730
	}
731
	ctrl_info(ctrl, "Slot Capabilities      : 0x%08x\n", ctrl->slot_cap);
732
	ctrl_info(ctrl, "  Physical Slot Number : %d\n", PSN(ctrl));
733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748
	ctrl_info(ctrl, "  Attention Button     : %3s\n",
		  ATTN_BUTTN(ctrl) ? "yes" : "no");
	ctrl_info(ctrl, "  Power Controller     : %3s\n",
		  POWER_CTRL(ctrl) ? "yes" : "no");
	ctrl_info(ctrl, "  MRL Sensor           : %3s\n",
		  MRL_SENS(ctrl)   ? "yes" : "no");
	ctrl_info(ctrl, "  Attention Indicator  : %3s\n",
		  ATTN_LED(ctrl)   ? "yes" : "no");
	ctrl_info(ctrl, "  Power Indicator      : %3s\n",
		  PWR_LED(ctrl)    ? "yes" : "no");
	ctrl_info(ctrl, "  Hot-Plug Surprise    : %3s\n",
		  HP_SUPR_RM(ctrl) ? "yes" : "no");
	ctrl_info(ctrl, "  EMI Present          : %3s\n",
		  EMI(ctrl)        ? "yes" : "no");
	ctrl_info(ctrl, "  Command Completed    : %3s\n",
		  NO_CMD_CMPL(ctrl) ? "no" : "yes");
749
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &reg16);
750
	ctrl_info(ctrl, "Slot Status            : 0x%04x\n", reg16);
751
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &reg16);
752
	ctrl_info(ctrl, "Slot Control           : 0x%04x\n", reg16);
K
Kenji Kaneshige 已提交
753
}
754

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

757
struct controller *pcie_init(struct pcie_device *dev)
K
Kenji Kaneshige 已提交
758
{
759
	struct controller *ctrl;
760
	u32 slot_cap, link_cap;
K
Kenji Kaneshige 已提交
761
	struct pci_dev *pdev = dev->port;
762

763 764
	ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
	if (!ctrl) {
765
		dev_err(&dev->device, "%s: Out of memory\n", __func__);
766 767
		goto abort;
	}
768
	ctrl->pcie = dev;
769
	pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &slot_cap);
K
Kenji Kaneshige 已提交
770
	ctrl->slot_cap = slot_cap;
771 772
	mutex_init(&ctrl->ctrl_lock);
	init_waitqueue_head(&ctrl->queue);
K
Kenji Kaneshige 已提交
773
	dbg_ctrl(ctrl);
774

K
Kenji Kaneshige 已提交
775 776
	/*
	 * Controller doesn't notify of command completion if the "No
777 778 779
	 * Command Completed Support" bit is set in Slot Capabilities.
	 * If set, it means the controller can accept hotplug commands
	 * with no delay between them.
K
Kenji Kaneshige 已提交
780
	 */
781
	if (NO_CMD_CMPL(ctrl))
R
Ryan Desfosses 已提交
782 783 784 785 786 787 788 789
		ctrl->no_cmd_complete = 1;

	/* Check if Data Link Layer Link Active Reporting is implemented */
	pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &link_cap);
	if (link_cap & PCI_EXP_LNKCAP_DLLLARC) {
		ctrl_dbg(ctrl, "Link Active Reporting supported\n");
		ctrl->link_active_reporting = 1;
	}
790

791
	/* Clear all remaining event bits in Slot Status register */
792 793 794 795
	pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
		PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
		PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
		PCI_EXP_SLTSTA_CC);
796

797
	/* Disable software notification */
798
	pcie_disable_notification(ctrl);
M
Mark Lord 已提交
799

800 801 802 803 804 805 806 807 808 809
	ctrl_info(ctrl, "Slot #%d AttnBtn%c AttnInd%c PwrInd%c PwrCtrl%c MRL%c Interlock%c NoCompl%c LLActRep%c\n",
		(slot_cap & PCI_EXP_SLTCAP_PSN) >> 19,
		FLAG(slot_cap, PCI_EXP_SLTCAP_ABP),
		FLAG(slot_cap, PCI_EXP_SLTCAP_AIP),
		FLAG(slot_cap, PCI_EXP_SLTCAP_PIP),
		FLAG(slot_cap, PCI_EXP_SLTCAP_PCP),
		FLAG(slot_cap, PCI_EXP_SLTCAP_MRLSP),
		FLAG(slot_cap, PCI_EXP_SLTCAP_EIP),
		FLAG(slot_cap, PCI_EXP_SLTCAP_NCCS),
		FLAG(link_cap, PCI_EXP_LNKCAP_DLLLARC));
810 811 812

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

814 815 816 817
	return ctrl;

abort_ctrl:
	kfree(ctrl);
818
abort:
819 820 821
	return NULL;
}

K
Kenji Kaneshige 已提交
822
void pciehp_release_ctrl(struct controller *ctrl)
823 824 825 826
{
	pcie_shutdown_notification(ctrl);
	pcie_cleanup_slot(ctrl);
	kfree(ctrl);
827
}