pciehp_hpc.c 28.5 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 427 428
static int hpc_get_emi_status(struct slot *slot, u8 *status)
{
	struct controller *ctrl = slot->ctrl;
	u16 slot_status;
429
	int retval;
430

431
	retval = pciehp_readw(ctrl, PCI_EXP_SLTSTA, &slot_status);
432
	if (retval) {
433
		ctrl_err(ctrl, "Cannot check EMI status\n");
434 435
		return retval;
	}
436
	*status = !!(slot_status & PCI_EXP_SLTSTA_EIS);
437 438 439 440 441
	return retval;
}

static int hpc_toggle_emi(struct slot *slot)
{
442 443 444
	u16 slot_cmd;
	u16 cmd_mask;
	int rc;
445

446 447
	slot_cmd = PCI_EXP_SLTCTL_EIC;
	cmd_mask = PCI_EXP_SLTCTL_EIC;
448
	rc = pcie_write_cmd(slot->ctrl, slot_cmd, cmd_mask);
449
	slot->last_emi_toggle = get_seconds();
K
Kenji Kaneshige 已提交
450

451 452 453
	return rc;
}

L
Linus Torvalds 已提交
454 455
static int hpc_set_attention_status(struct slot *slot, u8 value)
{
456
	struct controller *ctrl = slot->ctrl;
457 458 459
	u16 slot_cmd;
	u16 cmd_mask;
	int rc;
L
Linus Torvalds 已提交
460

461
	cmd_mask = PCI_EXP_SLTCTL_AIC;
L
Linus Torvalds 已提交
462 463
	switch (value) {
		case 0 :	/* turn off */
464
			slot_cmd = 0x00C0;
L
Linus Torvalds 已提交
465 466
			break;
		case 1:		/* turn on */
467
			slot_cmd = 0x0040;
L
Linus Torvalds 已提交
468 469
			break;
		case 2:		/* turn blink */
470
			slot_cmd = 0x0080;
L
Linus Torvalds 已提交
471 472 473 474
			break;
		default:
			return -1;
	}
475
	rc = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
476
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
477
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_cmd);
478

L
Linus Torvalds 已提交
479 480 481 482 483
	return rc;
}

static void hpc_set_green_led_on(struct slot *slot)
{
484
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
485
	u16 slot_cmd;
486
	u16 cmd_mask;
487

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

static void hpc_set_green_led_off(struct slot *slot)
{
497
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
498
	u16 slot_cmd;
499
	u16 cmd_mask;
L
Linus Torvalds 已提交
500

501
	slot_cmd = 0x0300;
502
	cmd_mask = PCI_EXP_SLTCTL_PIC;
503
	pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
504
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
505
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_cmd);
L
Linus Torvalds 已提交
506 507 508 509
}

static void hpc_set_green_led_blink(struct slot *slot)
{
510
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
511
	u16 slot_cmd;
512
	u16 cmd_mask;
513

514
	slot_cmd = 0x0200;
515
	cmd_mask = PCI_EXP_SLTCTL_PIC;
516
	pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
517
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
518
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_cmd);
L
Linus Torvalds 已提交
519 520 521 522
}

static int hpc_power_on_slot(struct slot * slot)
{
523
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
524
	u16 slot_cmd;
525 526
	u16 cmd_mask;
	u16 slot_status;
L
Linus Torvalds 已提交
527 528
	int retval = 0;

529
	ctrl_dbg(ctrl, "%s: slot->hp_slot %x\n", __func__, slot->hp_slot);
L
Linus Torvalds 已提交
530

531
	/* Clear sticky power-fault bit from previous power failures */
532
	retval = pciehp_readw(ctrl, PCI_EXP_SLTSTA, &slot_status);
533
	if (retval) {
534 535
		ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
			 __func__);
536 537
		return retval;
	}
538
	slot_status &= PCI_EXP_SLTSTA_PFD;
539
	if (slot_status) {
540
		retval = pciehp_writew(ctrl, PCI_EXP_SLTSTA, slot_status);
541
		if (retval) {
542 543 544
			ctrl_err(ctrl,
				 "%s: Cannot write to SLOTSTATUS register\n",
				 __func__);
545 546 547
			return retval;
		}
	}
L
Linus Torvalds 已提交
548

549
	slot_cmd = POWER_ON;
550
	cmd_mask = PCI_EXP_SLTCTL_PCC;
551
	/* Enable detection that we turned off at slot power-off time */
552
	if (!pciehp_poll_mode) {
553 554 555 556
		slot_cmd |= (PCI_EXP_SLTCTL_PFDE | PCI_EXP_SLTCTL_MRLSCE |
			     PCI_EXP_SLTCTL_PDCE);
		cmd_mask |= (PCI_EXP_SLTCTL_PFDE | PCI_EXP_SLTCTL_MRLSCE |
			     PCI_EXP_SLTCTL_PDCE);
557
	}
L
Linus Torvalds 已提交
558

559
	retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
L
Linus Torvalds 已提交
560 561

	if (retval) {
562
		ctrl_err(ctrl, "Write %x command failed!\n", slot_cmd);
L
Linus Torvalds 已提交
563 564
		return -1;
	}
565
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
566
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_cmd);
L
Linus Torvalds 已提交
567 568 569 570

	return retval;
}

571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
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 已提交
604 605
static int hpc_power_off_slot(struct slot * slot)
{
606
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
607
	u16 slot_cmd;
608
	u16 cmd_mask;
L
Linus Torvalds 已提交
609
	int retval = 0;
610
	int changed;
L
Linus Torvalds 已提交
611

612
	ctrl_dbg(ctrl, "%s: slot->hp_slot %x\n", __func__, slot->hp_slot);
L
Linus Torvalds 已提交
613

614 615 616 617 618 619 620 621
	/*
	 * 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);

622
	slot_cmd = POWER_OFF;
623
	cmd_mask = PCI_EXP_SLTCTL_PCC;
624 625 626 627 628 629 630
	/*
	 * If we get MRL or presence detect interrupts now, the isr
	 * will notice the sticky power-fault bit too and issue power
	 * indicator change commands. This will lead to an endless loop
	 * of command completions, since the power-fault bit remains on
	 * till the slot is powered on again.
	 */
631
	if (!pciehp_poll_mode) {
632 633 634 635
		slot_cmd &= ~(PCI_EXP_SLTCTL_PFDE | PCI_EXP_SLTCTL_MRLSCE |
			      PCI_EXP_SLTCTL_PDCE);
		cmd_mask |= (PCI_EXP_SLTCTL_PFDE | PCI_EXP_SLTCTL_MRLSCE |
			     PCI_EXP_SLTCTL_PDCE);
636
	}
L
Linus Torvalds 已提交
637

638
	retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
L
Linus Torvalds 已提交
639
	if (retval) {
640
		ctrl_err(ctrl, "Write command failed!\n");
641 642
		retval = -1;
		goto out;
L
Linus Torvalds 已提交
643
	}
644
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
645
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_cmd);
646
 out:
647 648 649
	if (changed)
		pcie_unmask_bad_dllp(ctrl);

L
Linus Torvalds 已提交
650 651 652
	return retval;
}

653
static irqreturn_t pcie_isr(int irq, void *dev_id)
L
Linus Torvalds 已提交
654
{
655
	struct controller *ctrl = (struct controller *)dev_id;
656
	u16 detected, intr_loc;
657
	struct slot *p_slot;
L
Linus Torvalds 已提交
658

659 660 661 662 663 664 665
	/*
	 * 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 {
666
		if (pciehp_readw(ctrl, PCI_EXP_SLTSTA, &detected)) {
667 668
			ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS\n",
				 __func__);
L
Linus Torvalds 已提交
669 670 671
			return IRQ_NONE;
		}

672 673 674
		detected &= (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
			     PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
			     PCI_EXP_SLTSTA_CC);
675 676
		intr_loc |= detected;
		if (!intr_loc)
L
Linus Torvalds 已提交
677
			return IRQ_NONE;
678
		if (detected && pciehp_writew(ctrl, PCI_EXP_SLTSTA, detected)) {
679 680
			ctrl_err(ctrl, "%s: Cannot write to SLOTSTATUS\n",
				 __func__);
L
Linus Torvalds 已提交
681 682
			return IRQ_NONE;
		}
683
	} while (detected);
684

685
	ctrl_dbg(ctrl, "%s: intr_loc %x\n", __func__, intr_loc);
686

687
	/* Check Command Complete Interrupt Pending */
688
	if (intr_loc & PCI_EXP_SLTSTA_CC) {
689
		ctrl->cmd_busy = 0;
690
		smp_mb();
691
		wake_up(&ctrl->queue);
L
Linus Torvalds 已提交
692 693
	}

694
	if (!(intr_loc & ~PCI_EXP_SLTSTA_CC))
695 696 697 698
		return IRQ_HANDLED;

	p_slot = pciehp_find_slot(ctrl, ctrl->slot_device_offset);

699
	/* Check MRL Sensor Changed */
700
	if (intr_loc & PCI_EXP_SLTSTA_MRLSC)
701
		pciehp_handle_switch_change(p_slot);
702

703
	/* Check Attention Button Pressed */
704
	if (intr_loc & PCI_EXP_SLTSTA_ABP)
705
		pciehp_handle_attention_button(p_slot);
706

707
	/* Check Presence Detect Changed */
708
	if (intr_loc & PCI_EXP_SLTSTA_PDC)
709
		pciehp_handle_presence_change(p_slot);
710

711
	/* Check Power Fault Detected */
712
	if (intr_loc & PCI_EXP_SLTSTA_PFD)
713
		pciehp_handle_power_fault(p_slot);
714

L
Linus Torvalds 已提交
715 716 717
	return IRQ_HANDLED;
}

718
static int hpc_get_max_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
L
Linus Torvalds 已提交
719
{
720
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
721 722 723 724
	enum pcie_link_speed lnk_speed;
	u32	lnk_cap;
	int retval = 0;

725
	retval = pciehp_readl(ctrl, PCI_EXP_LNKCAP, &lnk_cap);
L
Linus Torvalds 已提交
726
	if (retval) {
727
		ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
L
Linus Torvalds 已提交
728 729 730 731 732 733 734 735 736 737 738 739 740
		return retval;
	}

	switch (lnk_cap & 0x000F) {
	case 1:
		lnk_speed = PCIE_2PT5GB;
		break;
	default:
		lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
		break;
	}

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

L
Linus Torvalds 已提交
743 744 745
	return retval;
}

746 747
static int hpc_get_max_lnk_width(struct slot *slot,
				 enum pcie_link_width *value)
L
Linus Torvalds 已提交
748
{
749
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
750 751 752 753
	enum pcie_link_width lnk_wdth;
	u32	lnk_cap;
	int retval = 0;

754
	retval = pciehp_readl(ctrl, PCI_EXP_LNKCAP, &lnk_cap);
L
Linus Torvalds 已提交
755
	if (retval) {
756
		ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
L
Linus Torvalds 已提交
757 758 759
		return retval;
	}

760
	switch ((lnk_cap & PCI_EXP_LNKSTA_NLW) >> 4){
L
Linus Torvalds 已提交
761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790
	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;
791
	ctrl_dbg(ctrl, "Max link width = %d\n", lnk_wdth);
K
Kenji Kaneshige 已提交
792

L
Linus Torvalds 已提交
793 794 795
	return retval;
}

796
static int hpc_get_cur_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
L
Linus Torvalds 已提交
797
{
798
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
799 800 801 802
	enum pcie_link_speed lnk_speed = PCI_SPEED_UNKNOWN;
	int retval = 0;
	u16 lnk_status;

803
	retval = pciehp_readw(ctrl, PCI_EXP_LNKSTA, &lnk_status);
L
Linus Torvalds 已提交
804
	if (retval) {
805 806
		ctrl_err(ctrl, "%s: Cannot read LNKSTATUS register\n",
			 __func__);
L
Linus Torvalds 已提交
807 808 809
		return retval;
	}

810
	switch (lnk_status & PCI_EXP_LNKSTA_CLS) {
L
Linus Torvalds 已提交
811 812 813 814 815 816 817 818 819
	case 1:
		lnk_speed = PCIE_2PT5GB;
		break;
	default:
		lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
		break;
	}

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

L
Linus Torvalds 已提交
822 823 824
	return retval;
}

825 826
static int hpc_get_cur_lnk_width(struct slot *slot,
				 enum pcie_link_width *value)
L
Linus Torvalds 已提交
827
{
828
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
829 830 831 832
	enum pcie_link_width lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
	int retval = 0;
	u16 lnk_status;

833
	retval = pciehp_readw(ctrl, PCI_EXP_LNKSTA, &lnk_status);
L
Linus Torvalds 已提交
834
	if (retval) {
835 836
		ctrl_err(ctrl, "%s: Cannot read LNKSTATUS register\n",
			 __func__);
L
Linus Torvalds 已提交
837 838
		return retval;
	}
839

840
	switch ((lnk_status & PCI_EXP_LNKSTA_NLW) >> 4){
L
Linus Torvalds 已提交
841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
	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;
871
	ctrl_dbg(ctrl, "Current link width = %d\n", lnk_wdth);
K
Kenji Kaneshige 已提交
872

L
Linus Torvalds 已提交
873 874 875
	return retval;
}

876
static void pcie_release_ctrl(struct controller *ctrl);
L
Linus Torvalds 已提交
877 878 879 880 881 882 883 884
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,
885 886
	.get_emi_status			= hpc_get_emi_status,
	.toggle_emi			= hpc_toggle_emi,
L
Linus Torvalds 已提交
887 888 889 890 891

	.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,
892

L
Linus Torvalds 已提交
893 894 895 896
	.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,
897

898
	.release_ctlr			= pcie_release_ctrl,
L
Linus Torvalds 已提交
899 900 901
	.check_lnk_status		= hpc_check_lnk_status,
};

902
int pcie_enable_notification(struct controller *ctrl)
M
Mark Lord 已提交
903
{
904
	u16 cmd, mask;
L
Linus Torvalds 已提交
905

906
	cmd = PCI_EXP_SLTCTL_PDCE;
907
	if (ATTN_BUTTN(ctrl))
908
		cmd |= PCI_EXP_SLTCTL_ABPE;
909
	if (POWER_CTRL(ctrl))
910
		cmd |= PCI_EXP_SLTCTL_PFDE;
911
	if (MRL_SENS(ctrl))
912
		cmd |= PCI_EXP_SLTCTL_MRLSCE;
913
	if (!pciehp_poll_mode)
914
		cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
915

916 917 918
	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);
919 920

	if (pcie_write_cmd(ctrl, cmd, mask)) {
921
		ctrl_err(ctrl, "Cannot enable software notification\n");
922
		return -1;
L
Linus Torvalds 已提交
923
	}
924 925 926 927 928 929
	return 0;
}

static void pcie_disable_notification(struct controller *ctrl)
{
	u16 mask;
930 931 932
	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);
933
	if (pcie_write_cmd(ctrl, 0, mask))
934
		ctrl_warn(ctrl, "Cannot disable software notification\n");
935 936
}

937
int pcie_init_notification(struct controller *ctrl)
938 939 940 941 942 943 944
{
	if (pciehp_request_irq(ctrl))
		return -1;
	if (pcie_enable_notification(ctrl)) {
		pciehp_free_irq(ctrl);
		return -1;
	}
945
	ctrl->notification_enabled = 1;
946 947 948 949 950
	return 0;
}

static void pcie_shutdown_notification(struct controller *ctrl)
{
951 952 953 954 955
	if (ctrl->notification_enabled) {
		pcie_disable_notification(ctrl);
		pciehp_free_irq(ctrl);
		ctrl->notification_enabled = 0;
	}
956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974
}

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

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

	slot->hp_slot = 0;
	slot->ctrl = ctrl;
	slot->bus = ctrl->pci_dev->subordinate->number;
	slot->device = ctrl->slot_device_offset + slot->hp_slot;
	slot->hpc_ops = ctrl->hpc_ops;
	slot->number = ctrl->first_slot;
	mutex_init(&slot->lock);
	INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
	list_add(&slot->slot_list, &ctrl->slot_list);
L
Linus Torvalds 已提交
975 976
	return 0;
}
977

978 979 980 981 982 983 984 985 986 987 988
static void pcie_cleanup_slot(struct controller *ctrl)
{
	struct slot *slot;
	slot = list_first_entry(&ctrl->slot_list, struct slot, slot_list);
	list_del(&slot->slot_list);
	cancel_delayed_work(&slot->work);
	flush_scheduled_work();
	flush_workqueue(pciehp_wq);
	kfree(slot);
}

K
Kenji Kaneshige 已提交
989
static inline void dbg_ctrl(struct controller *ctrl)
990
{
K
Kenji Kaneshige 已提交
991 992 993
	int i;
	u16 reg16;
	struct pci_dev *pdev = ctrl->pci_dev;
994

K
Kenji Kaneshige 已提交
995 996
	if (!pciehp_debug)
		return;
997

998 999 1000 1001 1002 1003 1004 1005 1006 1007
	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 已提交
1008 1009 1010
	for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
		if (!pci_resource_len(pdev, i))
			continue;
1011 1012 1013
		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));
1014
	}
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
	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");
1033
	pciehp_readw(ctrl, PCI_EXP_SLTSTA, &reg16);
1034
	ctrl_info(ctrl, "Slot Status            : 0x%04x\n", reg16);
1035
	pciehp_readw(ctrl, PCI_EXP_SLTCTL, &reg16);
1036
	ctrl_info(ctrl, "Slot Control           : 0x%04x\n", reg16);
K
Kenji Kaneshige 已提交
1037
}
1038

1039
struct controller *pcie_init(struct pcie_device *dev)
K
Kenji Kaneshige 已提交
1040
{
1041
	struct controller *ctrl;
1042
	u32 slot_cap, link_cap;
K
Kenji Kaneshige 已提交
1043
	struct pci_dev *pdev = dev->port;
1044

1045 1046
	ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
	if (!ctrl) {
1047
		dev_err(&dev->device, "%s: Out of memory\n", __func__);
1048 1049 1050 1051
		goto abort;
	}
	INIT_LIST_HEAD(&ctrl->slot_list);

1052
	ctrl->pcie = dev;
K
Kenji Kaneshige 已提交
1053 1054 1055
	ctrl->pci_dev = pdev;
	ctrl->cap_base = pci_find_capability(pdev, PCI_CAP_ID_EXP);
	if (!ctrl->cap_base) {
1056
		ctrl_err(ctrl, "Cannot find PCI Express capability\n");
1057
		goto abort_ctrl;
1058
	}
1059
	if (pciehp_readl(ctrl, PCI_EXP_SLTCAP, &slot_cap)) {
1060
		ctrl_err(ctrl, "Cannot read SLOTCAP register\n");
1061
		goto abort_ctrl;
1062 1063
	}

K
Kenji Kaneshige 已提交
1064 1065 1066 1067 1068
	ctrl->slot_cap = slot_cap;
	ctrl->first_slot = slot_cap >> 19;
	ctrl->slot_device_offset = 0;
	ctrl->num_slots = 1;
	ctrl->hpc_ops = &pciehp_hpc_ops;
1069 1070 1071
	mutex_init(&ctrl->crit_sect);
	mutex_init(&ctrl->ctrl_lock);
	init_waitqueue_head(&ctrl->queue);
K
Kenji Kaneshige 已提交
1072
	dbg_ctrl(ctrl);
K
Kenji Kaneshige 已提交
1073 1074 1075 1076 1077 1078 1079 1080 1081
	/*
	 * 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;
1082

1083
        /* Check if Data Link Layer Link Active Reporting is implemented */
1084
        if (pciehp_readl(ctrl, PCI_EXP_LNKCAP, &link_cap)) {
1085 1086 1087
                ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
                goto abort_ctrl;
        }
1088
        if (link_cap & PCI_EXP_LNKCAP_DLLLARC) {
1089 1090 1091 1092
                ctrl_dbg(ctrl, "Link Active Reporting supported\n");
                ctrl->link_active_reporting = 1;
        }

1093
	/* Clear all remaining event bits in Slot Status register */
1094
	if (pciehp_writew(ctrl, PCI_EXP_SLTSTA, 0x1f))
1095
		goto abort_ctrl;
1096

1097 1098
	/* Disable sotfware notification */
	pcie_disable_notification(ctrl);
M
Mark Lord 已提交
1099 1100 1101 1102 1103 1104 1105

	/*
	 * 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");
1106 1107
		if (!pciehp_wq)
			goto abort_ctrl;
M
Mark Lord 已提交
1108 1109
	}

1110 1111 1112
	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);
1113 1114 1115

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

1117 1118 1119 1120
	return ctrl;

abort_ctrl:
	kfree(ctrl);
1121
abort:
1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
	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);
1136
}