pciehp_hpc.c 27.1 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>
A
Andrew Morton 已提交
39

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

K
Kenji Kaneshige 已提交
43 44
static atomic_t pciehp_num_controllers = ATOMIC_INIT(0);

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
static inline int pciehp_readw(struct controller *ctrl, int reg, u16 *value)
{
	struct pci_dev *dev = ctrl->pci_dev;
	return pci_read_config_word(dev, ctrl->cap_base + reg, value);
}

static inline int pciehp_readl(struct controller *ctrl, int reg, u32 *value)
{
	struct pci_dev *dev = ctrl->pci_dev;
	return pci_read_config_dword(dev, ctrl->cap_base + reg, value);
}

static inline int pciehp_writew(struct controller *ctrl, int reg, u16 value)
{
	struct pci_dev *dev = ctrl->pci_dev;
	return pci_write_config_word(dev, ctrl->cap_base + reg, value);
}

static inline int pciehp_writel(struct controller *ctrl, int reg, u32 value)
{
	struct pci_dev *dev = ctrl->pci_dev;
	return pci_write_config_dword(dev, ctrl->cap_base + reg, value);
}
L
Linus Torvalds 已提交
68 69 70

/* Power Control Command */
#define POWER_ON	0
71
#define POWER_OFF	PCI_EXP_SLTCTL_PCC
L
Linus Torvalds 已提交
72

73 74
static irqreturn_t pcie_isr(int irq, void *dev_id);
static void start_int_poll_timer(struct controller *ctrl, int sec);
L
Linus Torvalds 已提交
75 76

/* This is the interrupt polling timeout function. */
77
static void int_poll_timeout(unsigned long data)
L
Linus Torvalds 已提交
78
{
79
	struct controller *ctrl = (struct controller *)data;
L
Linus Torvalds 已提交
80 81

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

84
	init_timer(&ctrl->poll_timer);
L
Linus Torvalds 已提交
85
	if (!pciehp_poll_time)
86
		pciehp_poll_time = 2; /* default polling interval is 2 sec */
L
Linus Torvalds 已提交
87

88
	start_int_poll_timer(ctrl, pciehp_poll_time);
L
Linus Torvalds 已提交
89 90 91
}

/* This function starts the interrupt polling timer. */
92
static void start_int_poll_timer(struct controller *ctrl, int sec)
L
Linus Torvalds 已提交
93
{
94 95 96 97 98 99 100 101
	/* Clamp to sane value */
	if ((sec <= 0) || (sec > 60))
        	sec = 2;

	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 已提交
102 103
}

K
Kenji Kaneshige 已提交
104 105
static inline int pciehp_request_irq(struct controller *ctrl)
{
106
	int retval, irq = ctrl->pcie->irq;
K
Kenji Kaneshige 已提交
107 108 109 110 111 112 113 114 115 116 117

	/* 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)
118 119
		ctrl_err(ctrl, "Cannot get irq %d for the hotplug controller\n",
			 irq);
K
Kenji Kaneshige 已提交
120 121 122 123 124 125 126 127
	return retval;
}

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

131
static int pcie_poll_cmd(struct controller *ctrl)
132 133
{
	u16 slot_status;
134
	int err, timeout = 1000;
135

136 137 138 139
	err = pciehp_readw(ctrl, PCI_EXP_SLTSTA, &slot_status);
	if (!err && (slot_status & PCI_EXP_SLTSTA_CC)) {
		pciehp_writew(ctrl, PCI_EXP_SLTSTA, PCI_EXP_SLTSTA_CC);
		return 1;
K
Kenji Kaneshige 已提交
140
	}
A
Adrian Bunk 已提交
141
	while (timeout > 0) {
142 143
		msleep(10);
		timeout -= 10;
144 145 146 147
		err = pciehp_readw(ctrl, PCI_EXP_SLTSTA, &slot_status);
		if (!err && (slot_status & PCI_EXP_SLTSTA_CC)) {
			pciehp_writew(ctrl, PCI_EXP_SLTSTA, PCI_EXP_SLTSTA_CC);
			return 1;
K
Kenji Kaneshige 已提交
148
		}
149 150 151 152
	}
	return 0;	/* timeout */
}

153
static void pcie_wait_cmd(struct controller *ctrl, int poll)
154
{
155 156 157 158
	unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
	unsigned long timeout = msecs_to_jiffies(msecs);
	int rc;

159 160 161
	if (poll)
		rc = pcie_poll_cmd(ctrl);
	else
162
		rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout);
163
	if (!rc)
164
		ctrl_dbg(ctrl, "Command not completed in 1000 msec\n");
165 166
}

167 168
/**
 * pcie_write_cmd - Issue controller command
169
 * @ctrl: controller to which the command is issued
170 171 172
 * @cmd:  command value written to slot control register
 * @mask: bitmask of slot control register to be modified
 */
173
static int pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
L
Linus Torvalds 已提交
174 175 176
{
	int retval = 0;
	u16 slot_status;
177
	u16 slot_ctrl;
L
Linus Torvalds 已提交
178

179 180
	mutex_lock(&ctrl->ctrl_lock);

181
	retval = pciehp_readw(ctrl, PCI_EXP_SLTSTA, &slot_status);
L
Linus Torvalds 已提交
182
	if (retval) {
183 184
		ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
			 __func__);
185
		goto out;
186 187
	}

188
	if (slot_status & PCI_EXP_SLTSTA_CC) {
K
Kenji Kaneshige 已提交
189 190 191 192 193 194
		if (!ctrl->no_cmd_complete) {
			/*
			 * After 1 sec and CMD_COMPLETED still not set, just
			 * proceed forward to issue the next command according
			 * to spec. Just print out the error message.
			 */
195
			ctrl_dbg(ctrl, "CMD_COMPLETED not clear after 1 sec\n");
K
Kenji Kaneshige 已提交
196 197 198 199 200 201
		} else if (!NO_CMD_CMPL(ctrl)) {
			/*
			 * This controller semms to notify of command completed
			 * event even though it supports none of power
			 * controller, attention led, power led and EMI.
			 */
202 203
			ctrl_dbg(ctrl, "Unexpected CMD_COMPLETED. Need to "
				 "wait for command completed event.\n");
K
Kenji Kaneshige 已提交
204 205
			ctrl->no_cmd_complete = 0;
		} else {
206 207
			ctrl_dbg(ctrl, "Unexpected CMD_COMPLETED. Maybe "
				 "the controller is broken.\n");
K
Kenji Kaneshige 已提交
208
		}
L
Linus Torvalds 已提交
209 210
	}

211
	retval = pciehp_readw(ctrl, PCI_EXP_SLTCTL, &slot_ctrl);
L
Linus Torvalds 已提交
212
	if (retval) {
213
		ctrl_err(ctrl, "%s: Cannot read SLOTCTRL register\n", __func__);
214
		goto out;
L
Linus Torvalds 已提交
215 216
	}

217
	slot_ctrl &= ~mask;
K
Kenji Kaneshige 已提交
218
	slot_ctrl |= (cmd & mask);
219
	ctrl->cmd_busy = 1;
220
	smp_mb();
221
	retval = pciehp_writew(ctrl, PCI_EXP_SLTCTL, slot_ctrl);
222
	if (retval)
223
		ctrl_err(ctrl, "Cannot write to SLOTCTRL register\n");
224

225 226 227
	/*
	 * Wait for command completion.
	 */
228 229 230 231 232 233 234
	if (!retval && !ctrl->no_cmd_complete) {
		int poll = 0;
		/*
		 * if hotplug interrupt is not enabled or command
		 * completed interrupt is not enabled, we need to poll
		 * command completed event.
		 */
235 236
		if (!(slot_ctrl & PCI_EXP_SLTCTL_HPIE) ||
		    !(slot_ctrl & PCI_EXP_SLTCTL_CCIE))
237
			poll = 1;
238
                pcie_wait_cmd(ctrl, poll);
239
	}
240 241
 out:
	mutex_unlock(&ctrl->ctrl_lock);
L
Linus Torvalds 已提交
242 243 244
	return retval;
}

245 246 247 248
static inline int check_link_active(struct controller *ctrl)
{
	u16 link_status;

249
	if (pciehp_readw(ctrl, PCI_EXP_LNKSTA, &link_status))
250
		return 0;
251
	return !!(link_status & PCI_EXP_LNKSTA_DLLLA);
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
}

static void pcie_wait_link_active(struct controller *ctrl)
{
	int timeout = 1000;

	if (check_link_active(ctrl))
		return;
	while (timeout > 0) {
		msleep(10);
		timeout -= 10;
		if (check_link_active(ctrl))
			return;
	}
	ctrl_dbg(ctrl, "Data Link Layer Link Active not set in 1000 msec\n");
}

L
Linus Torvalds 已提交
269 270 271 272 273
static int hpc_check_lnk_status(struct controller *ctrl)
{
	u16 lnk_status;
	int retval = 0;

274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
        /*
         * 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){
                /* Wait for Data Link Layer Link Active bit to be set */
                pcie_wait_link_active(ctrl);
                /*
                 * We must wait for 100 ms after the Data Link Layer
                 * Link Active bit reads 1b before initiating a
                 * configuration access to the hot added device.
                 */
                msleep(100);
        } else
                msleep(1000);

291
	retval = pciehp_readw(ctrl, PCI_EXP_LNKSTA, &lnk_status);
L
Linus Torvalds 已提交
292
	if (retval) {
293
		ctrl_err(ctrl, "Cannot read LNKSTATUS register\n");
L
Linus Torvalds 已提交
294 295 296
		return retval;
	}

297
	ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
298 299
	if ((lnk_status & PCI_EXP_LNKSTA_LT) ||
	    !(lnk_status & PCI_EXP_LNKSTA_NLW)) {
300
		ctrl_err(ctrl, "Link Training Error occurs \n");
L
Linus Torvalds 已提交
301 302 303 304 305 306 307 308 309
		retval = -1;
		return retval;
	}

	return retval;
}

static int hpc_get_attention_status(struct slot *slot, u8 *status)
{
310
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
311 312 313 314
	u16 slot_ctrl;
	u8 atten_led_state;
	int retval = 0;

315
	retval = pciehp_readw(ctrl, PCI_EXP_SLTCTL, &slot_ctrl);
L
Linus Torvalds 已提交
316
	if (retval) {
317
		ctrl_err(ctrl, "%s: Cannot read SLOTCTRL register\n", __func__);
L
Linus Torvalds 已提交
318 319 320
		return retval;
	}

321
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x, value read %x\n",
322
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_ctrl);
L
Linus Torvalds 已提交
323

324
	atten_led_state = (slot_ctrl & PCI_EXP_SLTCTL_AIC) >> 6;
L
Linus Torvalds 已提交
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346

	switch (atten_led_state) {
	case 0:
		*status = 0xFF;	/* Reserved */
		break;
	case 1:
		*status = 1;	/* On */
		break;
	case 2:
		*status = 2;	/* Blink */
		break;
	case 3:
		*status = 0;	/* Off */
		break;
	default:
		*status = 0xFF;
		break;
	}

	return 0;
}

347
static int hpc_get_power_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
348
{
349
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
350 351 352 353
	u16 slot_ctrl;
	u8 pwr_state;
	int	retval = 0;

354
	retval = pciehp_readw(ctrl, PCI_EXP_SLTCTL, &slot_ctrl);
L
Linus Torvalds 已提交
355
	if (retval) {
356
		ctrl_err(ctrl, "%s: Cannot read SLOTCTRL register\n", __func__);
L
Linus Torvalds 已提交
357 358
		return retval;
	}
359
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x value read %x\n",
360
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_ctrl);
L
Linus Torvalds 已提交
361

362
	pwr_state = (slot_ctrl & PCI_EXP_SLTCTL_PCC) >> 10;
L
Linus Torvalds 已提交
363 364 365 366 367 368

	switch (pwr_state) {
	case 0:
		*status = 1;
		break;
	case 1:
369
		*status = 0;
L
Linus Torvalds 已提交
370 371 372 373 374 375 376 377 378 379 380
		break;
	default:
		*status = 0xFF;
		break;
	}

	return retval;
}

static int hpc_get_latch_status(struct slot *slot, u8 *status)
{
381
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
382
	u16 slot_status;
383
	int retval;
L
Linus Torvalds 已提交
384

385
	retval = pciehp_readw(ctrl, PCI_EXP_SLTSTA, &slot_status);
L
Linus Torvalds 已提交
386
	if (retval) {
387 388
		ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
			 __func__);
L
Linus Torvalds 已提交
389 390
		return retval;
	}
391
	*status = !!(slot_status & PCI_EXP_SLTSTA_MRLSS);
L
Linus Torvalds 已提交
392 393 394 395 396
	return 0;
}

static int hpc_get_adapter_status(struct slot *slot, u8 *status)
{
397
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
398
	u16 slot_status;
399
	int retval;
L
Linus Torvalds 已提交
400

401
	retval = pciehp_readw(ctrl, PCI_EXP_SLTSTA, &slot_status);
L
Linus Torvalds 已提交
402
	if (retval) {
403 404
		ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
			 __func__);
L
Linus Torvalds 已提交
405 406
		return retval;
	}
407
	*status = !!(slot_status & PCI_EXP_SLTSTA_PDS);
L
Linus Torvalds 已提交
408 409 410
	return 0;
}

411
static int hpc_query_power_fault(struct slot *slot)
L
Linus Torvalds 已提交
412
{
413
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
414
	u16 slot_status;
415
	int retval;
L
Linus Torvalds 已提交
416

417
	retval = pciehp_readw(ctrl, PCI_EXP_SLTSTA, &slot_status);
L
Linus Torvalds 已提交
418
	if (retval) {
419
		ctrl_err(ctrl, "Cannot check for power fault\n");
L
Linus Torvalds 已提交
420 421
		return retval;
	}
422
	return !!(slot_status & PCI_EXP_SLTSTA_PFD);
L
Linus Torvalds 已提交
423 424 425 426
}

static int hpc_set_attention_status(struct slot *slot, u8 value)
{
427
	struct controller *ctrl = slot->ctrl;
428 429 430
	u16 slot_cmd;
	u16 cmd_mask;
	int rc;
L
Linus Torvalds 已提交
431

432
	cmd_mask = PCI_EXP_SLTCTL_AIC;
L
Linus Torvalds 已提交
433 434
	switch (value) {
		case 0 :	/* turn off */
435
			slot_cmd = 0x00C0;
L
Linus Torvalds 已提交
436 437
			break;
		case 1:		/* turn on */
438
			slot_cmd = 0x0040;
L
Linus Torvalds 已提交
439 440
			break;
		case 2:		/* turn blink */
441
			slot_cmd = 0x0080;
L
Linus Torvalds 已提交
442 443 444 445
			break;
		default:
			return -1;
	}
446
	rc = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
447
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
448
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_cmd);
449

L
Linus Torvalds 已提交
450 451 452 453 454
	return rc;
}

static void hpc_set_green_led_on(struct slot *slot)
{
455
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
456
	u16 slot_cmd;
457
	u16 cmd_mask;
458

459
	slot_cmd = 0x0100;
460
	cmd_mask = PCI_EXP_SLTCTL_PIC;
461
	pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
462
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
463
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_cmd);
L
Linus Torvalds 已提交
464 465 466 467
}

static void hpc_set_green_led_off(struct slot *slot)
{
468
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
469
	u16 slot_cmd;
470
	u16 cmd_mask;
L
Linus Torvalds 已提交
471

472
	slot_cmd = 0x0300;
473
	cmd_mask = PCI_EXP_SLTCTL_PIC;
474
	pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
475
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
476
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_cmd);
L
Linus Torvalds 已提交
477 478 479 480
}

static void hpc_set_green_led_blink(struct slot *slot)
{
481
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
482
	u16 slot_cmd;
483
	u16 cmd_mask;
484

485
	slot_cmd = 0x0200;
486
	cmd_mask = PCI_EXP_SLTCTL_PIC;
487
	pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
488
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
489
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_cmd);
L
Linus Torvalds 已提交
490 491 492 493
}

static int hpc_power_on_slot(struct slot * slot)
{
494
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
495
	u16 slot_cmd;
496 497
	u16 cmd_mask;
	u16 slot_status;
L
Linus Torvalds 已提交
498 499
	int retval = 0;

500
	/* Clear sticky power-fault bit from previous power failures */
501
	retval = pciehp_readw(ctrl, PCI_EXP_SLTSTA, &slot_status);
502
	if (retval) {
503 504
		ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
			 __func__);
505 506
		return retval;
	}
507
	slot_status &= PCI_EXP_SLTSTA_PFD;
508
	if (slot_status) {
509
		retval = pciehp_writew(ctrl, PCI_EXP_SLTSTA, slot_status);
510
		if (retval) {
511 512 513
			ctrl_err(ctrl,
				 "%s: Cannot write to SLOTSTATUS register\n",
				 __func__);
514 515 516
			return retval;
		}
	}
L
Linus Torvalds 已提交
517

518
	slot_cmd = POWER_ON;
519
	cmd_mask = PCI_EXP_SLTCTL_PCC;
520
	if (!pciehp_poll_mode) {
521 522 523
		/* Enable power fault detection turned off at power off time */
		slot_cmd |= PCI_EXP_SLTCTL_PFDE;
		cmd_mask |= PCI_EXP_SLTCTL_PFDE;
524
	}
L
Linus Torvalds 已提交
525

526
	retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
L
Linus Torvalds 已提交
527
	if (retval) {
528
		ctrl_err(ctrl, "Write %x command failed!\n", slot_cmd);
529
		return retval;
L
Linus Torvalds 已提交
530
	}
531
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
532
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_cmd);
L
Linus Torvalds 已提交
533

534
	ctrl->power_fault_detected = 0;
L
Linus Torvalds 已提交
535 536 537
	return retval;
}

538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570
static inline int pcie_mask_bad_dllp(struct controller *ctrl)
{
	struct pci_dev *dev = ctrl->pci_dev;
	int pos;
	u32 reg;

	pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
	if (!pos)
		return 0;
	pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
	if (reg & PCI_ERR_COR_BAD_DLLP)
		return 0;
	reg |= PCI_ERR_COR_BAD_DLLP;
	pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
	return 1;
}

static inline void pcie_unmask_bad_dllp(struct controller *ctrl)
{
	struct pci_dev *dev = ctrl->pci_dev;
	u32 reg;
	int pos;

	pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
	if (!pos)
		return;
	pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
	if (!(reg & PCI_ERR_COR_BAD_DLLP))
		return;
	reg &= ~PCI_ERR_COR_BAD_DLLP;
	pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
}

L
Linus Torvalds 已提交
571 572
static int hpc_power_off_slot(struct slot * slot)
{
573
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
574
	u16 slot_cmd;
575
	u16 cmd_mask;
L
Linus Torvalds 已提交
576
	int retval = 0;
577
	int changed;
L
Linus Torvalds 已提交
578

579 580 581 582 583 584 585 586
	/*
	 * Set Bad DLLP Mask bit in Correctable Error Mask
	 * Register. This is the workaround against Bad DLLP error
	 * that sometimes happens during turning power off the slot
	 * which conforms to PCI Express 1.0a spec.
	 */
	changed = pcie_mask_bad_dllp(ctrl);

587
	slot_cmd = POWER_OFF;
588
	cmd_mask = PCI_EXP_SLTCTL_PCC;
589
	if (!pciehp_poll_mode) {
590 591 592
		/* Disable power fault detection */
		slot_cmd &= ~PCI_EXP_SLTCTL_PFDE;
		cmd_mask |= PCI_EXP_SLTCTL_PFDE;
593
	}
L
Linus Torvalds 已提交
594

595
	retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
L
Linus Torvalds 已提交
596
	if (retval) {
597
		ctrl_err(ctrl, "Write command failed!\n");
598 599
		retval = -1;
		goto out;
L
Linus Torvalds 已提交
600
	}
601
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
602
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_cmd);
603
 out:
604 605 606
	if (changed)
		pcie_unmask_bad_dllp(ctrl);

L
Linus Torvalds 已提交
607 608 609
	return retval;
}

610
static irqreturn_t pcie_isr(int irq, void *dev_id)
L
Linus Torvalds 已提交
611
{
612
	struct controller *ctrl = (struct controller *)dev_id;
613
	struct slot *slot = ctrl->slot;
614
	u16 detected, intr_loc;
L
Linus Torvalds 已提交
615

616 617 618 619 620 621 622
	/*
	 * 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 {
623
		if (pciehp_readw(ctrl, PCI_EXP_SLTSTA, &detected)) {
624 625
			ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS\n",
				 __func__);
L
Linus Torvalds 已提交
626 627 628
			return IRQ_NONE;
		}

629 630 631
		detected &= (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
			     PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
			     PCI_EXP_SLTSTA_CC);
632
		detected &= ~intr_loc;
633 634
		intr_loc |= detected;
		if (!intr_loc)
L
Linus Torvalds 已提交
635
			return IRQ_NONE;
636
		if (detected && pciehp_writew(ctrl, PCI_EXP_SLTSTA, intr_loc)) {
637 638
			ctrl_err(ctrl, "%s: Cannot write to SLOTSTATUS\n",
				 __func__);
L
Linus Torvalds 已提交
639 640
			return IRQ_NONE;
		}
641
	} while (detected);
642

643
	ctrl_dbg(ctrl, "%s: intr_loc %x\n", __func__, intr_loc);
644

645
	/* Check Command Complete Interrupt Pending */
646
	if (intr_loc & PCI_EXP_SLTSTA_CC) {
647
		ctrl->cmd_busy = 0;
648
		smp_mb();
649
		wake_up(&ctrl->queue);
L
Linus Torvalds 已提交
650 651
	}

652
	if (!(intr_loc & ~PCI_EXP_SLTSTA_CC))
653 654
		return IRQ_HANDLED;

655
	/* Check MRL Sensor Changed */
656
	if (intr_loc & PCI_EXP_SLTSTA_MRLSC)
657
		pciehp_handle_switch_change(slot);
658

659
	/* Check Attention Button Pressed */
660
	if (intr_loc & PCI_EXP_SLTSTA_ABP)
661
		pciehp_handle_attention_button(slot);
662

663
	/* Check Presence Detect Changed */
664
	if (intr_loc & PCI_EXP_SLTSTA_PDC)
665
		pciehp_handle_presence_change(slot);
666

667
	/* Check Power Fault Detected */
668 669
	if ((intr_loc & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) {
		ctrl->power_fault_detected = 1;
670
		pciehp_handle_power_fault(slot);
671
	}
L
Linus Torvalds 已提交
672 673 674
	return IRQ_HANDLED;
}

675
static int hpc_get_max_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
L
Linus Torvalds 已提交
676
{
677
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
678 679 680 681
	enum pcie_link_speed lnk_speed;
	u32	lnk_cap;
	int retval = 0;

682
	retval = pciehp_readl(ctrl, PCI_EXP_LNKCAP, &lnk_cap);
L
Linus Torvalds 已提交
683
	if (retval) {
684
		ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
L
Linus Torvalds 已提交
685 686 687 688 689
		return retval;
	}

	switch (lnk_cap & 0x000F) {
	case 1:
690 691 692 693
		lnk_speed = PCIE_2_5GB;
		break;
	case 2:
		lnk_speed = PCIE_5_0GB;
L
Linus Torvalds 已提交
694 695 696 697 698 699 700
		break;
	default:
		lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
		break;
	}

	*value = lnk_speed;
701
	ctrl_dbg(ctrl, "Max link speed = %d\n", lnk_speed);
K
Kenji Kaneshige 已提交
702

L
Linus Torvalds 已提交
703 704 705
	return retval;
}

706 707
static int hpc_get_max_lnk_width(struct slot *slot,
				 enum pcie_link_width *value)
L
Linus Torvalds 已提交
708
{
709
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
710 711 712 713
	enum pcie_link_width lnk_wdth;
	u32	lnk_cap;
	int retval = 0;

714
	retval = pciehp_readl(ctrl, PCI_EXP_LNKCAP, &lnk_cap);
L
Linus Torvalds 已提交
715
	if (retval) {
716
		ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
L
Linus Torvalds 已提交
717 718 719
		return retval;
	}

720
	switch ((lnk_cap & PCI_EXP_LNKSTA_NLW) >> 4){
L
Linus Torvalds 已提交
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750
	case 0:
		lnk_wdth = PCIE_LNK_WIDTH_RESRV;
		break;
	case 1:
		lnk_wdth = PCIE_LNK_X1;
		break;
	case 2:
		lnk_wdth = PCIE_LNK_X2;
		break;
	case 4:
		lnk_wdth = PCIE_LNK_X4;
		break;
	case 8:
		lnk_wdth = PCIE_LNK_X8;
		break;
	case 12:
		lnk_wdth = PCIE_LNK_X12;
		break;
	case 16:
		lnk_wdth = PCIE_LNK_X16;
		break;
	case 32:
		lnk_wdth = PCIE_LNK_X32;
		break;
	default:
		lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
		break;
	}

	*value = lnk_wdth;
751
	ctrl_dbg(ctrl, "Max link width = %d\n", lnk_wdth);
K
Kenji Kaneshige 已提交
752

L
Linus Torvalds 已提交
753 754 755
	return retval;
}

756
static int hpc_get_cur_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
L
Linus Torvalds 已提交
757
{
758
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
759 760 761 762
	enum pcie_link_speed lnk_speed = PCI_SPEED_UNKNOWN;
	int retval = 0;
	u16 lnk_status;

763
	retval = pciehp_readw(ctrl, PCI_EXP_LNKSTA, &lnk_status);
L
Linus Torvalds 已提交
764
	if (retval) {
765 766
		ctrl_err(ctrl, "%s: Cannot read LNKSTATUS register\n",
			 __func__);
L
Linus Torvalds 已提交
767 768 769
		return retval;
	}

770
	switch (lnk_status & PCI_EXP_LNKSTA_CLS) {
L
Linus Torvalds 已提交
771
	case 1:
772 773 774 775
		lnk_speed = PCIE_2_5GB;
		break;
	case 2:
		lnk_speed = PCIE_5_0GB;
L
Linus Torvalds 已提交
776 777 778 779 780 781 782
		break;
	default:
		lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
		break;
	}

	*value = lnk_speed;
783
	ctrl_dbg(ctrl, "Current link speed = %d\n", lnk_speed);
K
Kenji Kaneshige 已提交
784

L
Linus Torvalds 已提交
785 786 787
	return retval;
}

788 789
static int hpc_get_cur_lnk_width(struct slot *slot,
				 enum pcie_link_width *value)
L
Linus Torvalds 已提交
790
{
791
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
792 793 794 795
	enum pcie_link_width lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
	int retval = 0;
	u16 lnk_status;

796
	retval = pciehp_readw(ctrl, PCI_EXP_LNKSTA, &lnk_status);
L
Linus Torvalds 已提交
797
	if (retval) {
798 799
		ctrl_err(ctrl, "%s: Cannot read LNKSTATUS register\n",
			 __func__);
L
Linus Torvalds 已提交
800 801
		return retval;
	}
802

803
	switch ((lnk_status & PCI_EXP_LNKSTA_NLW) >> 4){
L
Linus Torvalds 已提交
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833
	case 0:
		lnk_wdth = PCIE_LNK_WIDTH_RESRV;
		break;
	case 1:
		lnk_wdth = PCIE_LNK_X1;
		break;
	case 2:
		lnk_wdth = PCIE_LNK_X2;
		break;
	case 4:
		lnk_wdth = PCIE_LNK_X4;
		break;
	case 8:
		lnk_wdth = PCIE_LNK_X8;
		break;
	case 12:
		lnk_wdth = PCIE_LNK_X12;
		break;
	case 16:
		lnk_wdth = PCIE_LNK_X16;
		break;
	case 32:
		lnk_wdth = PCIE_LNK_X32;
		break;
	default:
		lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
		break;
	}

	*value = lnk_wdth;
834
	ctrl_dbg(ctrl, "Current link width = %d\n", lnk_wdth);
K
Kenji Kaneshige 已提交
835

L
Linus Torvalds 已提交
836 837 838
	return retval;
}

839
static void pcie_release_ctrl(struct controller *ctrl);
L
Linus Torvalds 已提交
840 841 842 843 844 845 846 847 848 849 850 851 852
static struct hpc_ops pciehp_hpc_ops = {
	.power_on_slot			= hpc_power_on_slot,
	.power_off_slot			= hpc_power_off_slot,
	.set_attention_status		= hpc_set_attention_status,
	.get_power_status		= hpc_get_power_status,
	.get_attention_status		= hpc_get_attention_status,
	.get_latch_status		= hpc_get_latch_status,
	.get_adapter_status		= hpc_get_adapter_status,

	.get_max_bus_speed		= hpc_get_max_lnk_speed,
	.get_cur_bus_speed		= hpc_get_cur_lnk_speed,
	.get_max_lnk_width		= hpc_get_max_lnk_width,
	.get_cur_lnk_width		= hpc_get_cur_lnk_width,
853

L
Linus Torvalds 已提交
854 855 856 857
	.query_power_fault		= hpc_query_power_fault,
	.green_led_on			= hpc_set_green_led_on,
	.green_led_off			= hpc_set_green_led_off,
	.green_led_blink		= hpc_set_green_led_blink,
858

859
	.release_ctlr			= pcie_release_ctrl,
L
Linus Torvalds 已提交
860 861 862
	.check_lnk_status		= hpc_check_lnk_status,
};

863
int pcie_enable_notification(struct controller *ctrl)
M
Mark Lord 已提交
864
{
865
	u16 cmd, mask;
L
Linus Torvalds 已提交
866

867
	cmd = PCI_EXP_SLTCTL_PDCE;
868
	if (ATTN_BUTTN(ctrl))
869
		cmd |= PCI_EXP_SLTCTL_ABPE;
870
	if (POWER_CTRL(ctrl))
871
		cmd |= PCI_EXP_SLTCTL_PFDE;
872
	if (MRL_SENS(ctrl))
873
		cmd |= PCI_EXP_SLTCTL_MRLSCE;
874
	if (!pciehp_poll_mode)
875
		cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
876

877 878 879
	mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
		PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
		PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE);
880 881

	if (pcie_write_cmd(ctrl, cmd, mask)) {
882
		ctrl_err(ctrl, "Cannot enable software notification\n");
883
		return -1;
L
Linus Torvalds 已提交
884
	}
885 886 887 888 889 890
	return 0;
}

static void pcie_disable_notification(struct controller *ctrl)
{
	u16 mask;
891 892 893
	mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
		PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
		PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE);
894
	if (pcie_write_cmd(ctrl, 0, mask))
895
		ctrl_warn(ctrl, "Cannot disable software notification\n");
896 897
}

898
int pcie_init_notification(struct controller *ctrl)
899 900 901 902 903 904 905
{
	if (pciehp_request_irq(ctrl))
		return -1;
	if (pcie_enable_notification(ctrl)) {
		pciehp_free_irq(ctrl);
		return -1;
	}
906
	ctrl->notification_enabled = 1;
907 908 909 910 911
	return 0;
}

static void pcie_shutdown_notification(struct controller *ctrl)
{
912 913 914 915 916
	if (ctrl->notification_enabled) {
		pcie_disable_notification(ctrl);
		pciehp_free_irq(ctrl);
		ctrl->notification_enabled = 0;
	}
917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
}

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

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

	slot->ctrl = ctrl;
	slot->hpc_ops = ctrl->hpc_ops;
	slot->number = ctrl->first_slot;
	mutex_init(&slot->lock);
	INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
932
	ctrl->slot = slot;
L
Linus Torvalds 已提交
933 934
	return 0;
}
935

936 937
static void pcie_cleanup_slot(struct controller *ctrl)
{
938
	struct slot *slot = ctrl->slot;
939 940 941 942 943 944
	cancel_delayed_work(&slot->work);
	flush_scheduled_work();
	flush_workqueue(pciehp_wq);
	kfree(slot);
}

K
Kenji Kaneshige 已提交
945
static inline void dbg_ctrl(struct controller *ctrl)
946
{
K
Kenji Kaneshige 已提交
947 948 949
	int i;
	u16 reg16;
	struct pci_dev *pdev = ctrl->pci_dev;
950

K
Kenji Kaneshige 已提交
951 952
	if (!pciehp_debug)
		return;
953

954 955 956 957 958 959 960 961 962 963
	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);
	ctrl_info(ctrl, "  PCIe Cap offset      : 0x%02x\n", ctrl->cap_base);
K
Kenji Kaneshige 已提交
964 965 966
	for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
		if (!pci_resource_len(pdev, i))
			continue;
967 968 969
		ctrl_info(ctrl, "  PCI resource [%d]     : 0x%llx@0x%llx\n",
			  i, (unsigned long long)pci_resource_len(pdev, i),
			  (unsigned long long)pci_resource_start(pdev, i));
970
	}
971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988
	ctrl_info(ctrl, "Slot Capabilities      : 0x%08x\n", ctrl->slot_cap);
	ctrl_info(ctrl, "  Physical Slot Number : %d\n", ctrl->first_slot);
	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");
989
	pciehp_readw(ctrl, PCI_EXP_SLTSTA, &reg16);
990
	ctrl_info(ctrl, "Slot Status            : 0x%04x\n", reg16);
991
	pciehp_readw(ctrl, PCI_EXP_SLTCTL, &reg16);
992
	ctrl_info(ctrl, "Slot Control           : 0x%04x\n", reg16);
K
Kenji Kaneshige 已提交
993
}
994

995
struct controller *pcie_init(struct pcie_device *dev)
K
Kenji Kaneshige 已提交
996
{
997
	struct controller *ctrl;
998
	u32 slot_cap, link_cap;
K
Kenji Kaneshige 已提交
999
	struct pci_dev *pdev = dev->port;
1000

1001 1002
	ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
	if (!ctrl) {
1003
		dev_err(&dev->device, "%s: Out of memory\n", __func__);
1004 1005
		goto abort;
	}
1006
	ctrl->pcie = dev;
K
Kenji Kaneshige 已提交
1007 1008 1009
	ctrl->pci_dev = pdev;
	ctrl->cap_base = pci_find_capability(pdev, PCI_CAP_ID_EXP);
	if (!ctrl->cap_base) {
1010
		ctrl_err(ctrl, "Cannot find PCI Express capability\n");
1011
		goto abort_ctrl;
1012
	}
1013
	if (pciehp_readl(ctrl, PCI_EXP_SLTCAP, &slot_cap)) {
1014
		ctrl_err(ctrl, "Cannot read SLOTCAP register\n");
1015
		goto abort_ctrl;
1016 1017
	}

K
Kenji Kaneshige 已提交
1018 1019 1020
	ctrl->slot_cap = slot_cap;
	ctrl->first_slot = slot_cap >> 19;
	ctrl->hpc_ops = &pciehp_hpc_ops;
1021 1022 1023
	mutex_init(&ctrl->crit_sect);
	mutex_init(&ctrl->ctrl_lock);
	init_waitqueue_head(&ctrl->queue);
K
Kenji Kaneshige 已提交
1024
	dbg_ctrl(ctrl);
K
Kenji Kaneshige 已提交
1025 1026 1027 1028 1029 1030 1031 1032 1033
	/*
	 * Controller doesn't notify of command completion if the "No
	 * Command Completed Support" bit is set in Slot Capability
	 * register or the controller supports none of power
	 * controller, attention led, power led and EMI.
	 */
	if (NO_CMD_CMPL(ctrl) ||
	    !(POWER_CTRL(ctrl) | ATTN_LED(ctrl) | PWR_LED(ctrl) | EMI(ctrl)))
	    ctrl->no_cmd_complete = 1;
1034

1035
        /* Check if Data Link Layer Link Active Reporting is implemented */
1036
        if (pciehp_readl(ctrl, PCI_EXP_LNKCAP, &link_cap)) {
1037 1038 1039
                ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
                goto abort_ctrl;
        }
1040
        if (link_cap & PCI_EXP_LNKCAP_DLLLARC) {
1041 1042 1043 1044
                ctrl_dbg(ctrl, "Link Active Reporting supported\n");
                ctrl->link_active_reporting = 1;
        }

1045
	/* Clear all remaining event bits in Slot Status register */
1046
	if (pciehp_writew(ctrl, PCI_EXP_SLTSTA, 0x1f))
1047
		goto abort_ctrl;
1048

1049 1050
	/* Disable sotfware notification */
	pcie_disable_notification(ctrl);
M
Mark Lord 已提交
1051 1052 1053 1054 1055 1056 1057

	/*
	 * If this is the first controller to be initialized,
	 * initialize the pciehp work queue
	 */
	if (atomic_add_return(1, &pciehp_num_controllers) == 1) {
		pciehp_wq = create_singlethread_workqueue("pciehpd");
1058 1059
		if (!pciehp_wq)
			goto abort_ctrl;
M
Mark Lord 已提交
1060 1061
	}

1062 1063 1064
	ctrl_info(ctrl, "HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n",
		  pdev->vendor, pdev->device, pdev->subsystem_vendor,
		  pdev->subsystem_device);
1065 1066 1067

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

1069 1070 1071 1072
	return ctrl;

abort_ctrl:
	kfree(ctrl);
1073
abort:
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
	return NULL;
}

void pcie_release_ctrl(struct controller *ctrl)
{
	pcie_shutdown_notification(ctrl);
	pcie_cleanup_slot(ctrl);
	/*
	 * If this is the last controller to be released, destroy the
	 * pciehp work queue
	 */
	if (atomic_dec_and_test(&pciehp_num_controllers))
		destroy_workqueue(pciehp_wq);
	kfree(ctrl);
1088
}