pciehp_hpc.c 21.7 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

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

53 54
static irqreturn_t pcie_isr(int irq, void *dev_id);
static void start_int_poll_timer(struct controller *ctrl, int sec);
L
Linus Torvalds 已提交
55 56

/* This is the interrupt polling timeout function. */
57
static void int_poll_timeout(unsigned long data)
L
Linus Torvalds 已提交
58
{
59
	struct controller *ctrl = (struct controller *)data;
L
Linus Torvalds 已提交
60 61

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

64
	init_timer(&ctrl->poll_timer);
L
Linus Torvalds 已提交
65
	if (!pciehp_poll_time)
66
		pciehp_poll_time = 2; /* default polling interval is 2 sec */
L
Linus Torvalds 已提交
67

68
	start_int_poll_timer(ctrl, pciehp_poll_time);
L
Linus Torvalds 已提交
69 70 71
}

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

	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 已提交
82 83
}

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

	/* 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)
98 99
		ctrl_err(ctrl, "Cannot get irq %d for the hotplug controller\n",
			 irq);
K
Kenji Kaneshige 已提交
100 101 102 103 104 105 106 107
	return retval;
}

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

111
static int pcie_poll_cmd(struct controller *ctrl)
112
{
113
	struct pci_dev *pdev = ctrl_dev(ctrl);
114
	u16 slot_status;
115
	int timeout = 1000;
116

117 118
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
	if (slot_status & PCI_EXP_SLTSTA_CC) {
119 120
		pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
					   PCI_EXP_SLTSTA_CC);
121
		return 1;
K
Kenji Kaneshige 已提交
122
	}
A
Adrian Bunk 已提交
123
	while (timeout > 0) {
124 125
		msleep(10);
		timeout -= 10;
126 127
		pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
		if (slot_status & PCI_EXP_SLTSTA_CC) {
128 129
			pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
						   PCI_EXP_SLTSTA_CC);
130
			return 1;
K
Kenji Kaneshige 已提交
131
		}
132 133 134 135
	}
	return 0;	/* timeout */
}

136
static void pcie_wait_cmd(struct controller *ctrl, int poll)
137
{
138 139 140 141
	unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
	unsigned long timeout = msecs_to_jiffies(msecs);
	int rc;

142 143 144
	if (poll)
		rc = pcie_poll_cmd(ctrl);
	else
145
		rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout);
146
	if (!rc)
147
		ctrl_dbg(ctrl, "Command not completed in 1000 msec\n");
148 149
}

150 151
/**
 * pcie_write_cmd - Issue controller command
152
 * @ctrl: controller to which the command is issued
153 154 155
 * @cmd:  command value written to slot control register
 * @mask: bitmask of slot control register to be modified
 */
156
static void pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
L
Linus Torvalds 已提交
157
{
158
	struct pci_dev *pdev = ctrl_dev(ctrl);
L
Linus Torvalds 已提交
159
	u16 slot_status;
160
	u16 slot_ctrl;
L
Linus Torvalds 已提交
161

162 163
	mutex_lock(&ctrl->ctrl_lock);

164
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
165
	if (slot_status & PCI_EXP_SLTSTA_CC) {
K
Kenji Kaneshige 已提交
166 167 168 169 170 171
		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.
			 */
172
			ctrl_dbg(ctrl, "CMD_COMPLETED not clear after 1 sec\n");
K
Kenji Kaneshige 已提交
173 174
		} else if (!NO_CMD_CMPL(ctrl)) {
			/*
175
			 * This controller seems to notify of command completed
K
Kenji Kaneshige 已提交
176 177 178
			 * event even though it supports none of power
			 * controller, attention led, power led and EMI.
			 */
179 180
			ctrl_dbg(ctrl, "Unexpected CMD_COMPLETED. Need to "
				 "wait for command completed event.\n");
K
Kenji Kaneshige 已提交
181 182
			ctrl->no_cmd_complete = 0;
		} else {
183 184
			ctrl_dbg(ctrl, "Unexpected CMD_COMPLETED. Maybe "
				 "the controller is broken.\n");
K
Kenji Kaneshige 已提交
185
		}
L
Linus Torvalds 已提交
186 187
	}

188
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
189
	slot_ctrl &= ~mask;
K
Kenji Kaneshige 已提交
190
	slot_ctrl |= (cmd & mask);
191
	ctrl->cmd_busy = 1;
192
	smp_mb();
193
	pcie_capability_write_word(pdev, PCI_EXP_SLTCTL, slot_ctrl);
194

195 196 197
	/*
	 * Wait for command completion.
	 */
198
	if (!ctrl->no_cmd_complete) {
199 200 201 202 203 204
		int poll = 0;
		/*
		 * if hotplug interrupt is not enabled or command
		 * completed interrupt is not enabled, we need to poll
		 * command completed event.
		 */
205 206
		if (!(slot_ctrl & PCI_EXP_SLTCTL_HPIE) ||
		    !(slot_ctrl & PCI_EXP_SLTCTL_CCIE))
207
			poll = 1;
208
                pcie_wait_cmd(ctrl, poll);
209
	}
210
	mutex_unlock(&ctrl->ctrl_lock);
L
Linus Torvalds 已提交
211 212
}

213
static bool check_link_active(struct controller *ctrl)
214
{
215
	struct pci_dev *pdev = ctrl_dev(ctrl);
216
	u16 lnk_status;
217
	bool ret;
218

219
	pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
220 221 222 223 224 225
	ret = !!(lnk_status & PCI_EXP_LNKSTA_DLLLA);

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

	return ret;
226 227
}

228
static void __pcie_wait_link_active(struct controller *ctrl, bool active)
229 230 231
{
	int timeout = 1000;

232
	if (check_link_active(ctrl) == active)
233 234 235 236
		return;
	while (timeout > 0) {
		msleep(10);
		timeout -= 10;
237
		if (check_link_active(ctrl) == active)
238 239
			return;
	}
240 241 242 243 244 245 246 247 248 249 250 251
	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);
}

static void pcie_wait_link_not_active(struct controller *ctrl)
{
	__pcie_wait_link_active(ctrl, false);
252 253
}

254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
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 已提交
280
int pciehp_check_link_status(struct controller *ctrl)
L
Linus Torvalds 已提交
281
{
282
	struct pci_dev *pdev = ctrl_dev(ctrl);
283
	bool found;
L
Linus Torvalds 已提交
284 285
	u16 lnk_status;

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.
         */
291
        if (ctrl->link_active_reporting)
292
                pcie_wait_link_active(ctrl);
293
        else
294 295
                msleep(1000);

296 297 298 299
	/* 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));
300

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

309 310
	pcie_update_link_speed(ctrl->pcie->port->subordinate, lnk_status);

311 312
	if (!found)
		return -1;
313

314
	return 0;
L
Linus Torvalds 已提交
315 316
}

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

322
	pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &lnk_ctrl);
323 324 325 326 327 328

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

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

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

static int pciehp_link_disable(struct controller *ctrl)
{
	return __pciehp_link_set(ctrl, false);
}

344
void pciehp_get_attention_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
345
{
346
	struct controller *ctrl = slot->ctrl;
347
	struct pci_dev *pdev = ctrl_dev(ctrl);
L
Linus Torvalds 已提交
348 349 350
	u16 slot_ctrl;
	u8 atten_led_state;

351
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
K
Kenji Kaneshige 已提交
352 353
	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 已提交
354

355
	atten_led_state = (slot_ctrl & PCI_EXP_SLTCTL_AIC) >> 6;
L
Linus Torvalds 已提交
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375

	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;
	}
}

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

383
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
K
Kenji Kaneshige 已提交
384 385
	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 已提交
386

387
	pwr_state = (slot_ctrl & PCI_EXP_SLTCTL_PCC) >> 10;
L
Linus Torvalds 已提交
388 389 390 391 392 393

	switch (pwr_state) {
	case 0:
		*status = 1;
		break;
	case 1:
394
		*status = 0;
L
Linus Torvalds 已提交
395 396 397 398 399 400 401
		break;
	default:
		*status = 0xFF;
		break;
	}
}

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

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

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

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

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

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

429
void pciehp_set_attention_status(struct slot *slot, u8 value)
L
Linus Torvalds 已提交
430
{
431
	struct controller *ctrl = slot->ctrl;
432 433
	u16 slot_cmd;
	u16 cmd_mask;
L
Linus Torvalds 已提交
434

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

K
Kenji Kaneshige 已提交
454
void pciehp_green_led_on(struct slot *slot)
L
Linus Torvalds 已提交
455
{
456
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
457
	u16 slot_cmd;
458
	u16 cmd_mask;
459

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

K
Kenji Kaneshige 已提交
467
void pciehp_green_led_off(struct slot *slot)
L
Linus Torvalds 已提交
468
{
469
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
470
	u16 slot_cmd;
471
	u16 cmd_mask;
L
Linus Torvalds 已提交
472

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

K
Kenji Kaneshige 已提交
480
void pciehp_green_led_blink(struct slot *slot)
L
Linus Torvalds 已提交
481
{
482
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
483
	u16 slot_cmd;
484
	u16 cmd_mask;
485

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

K
Kenji Kaneshige 已提交
493
int pciehp_power_on_slot(struct slot * slot)
L
Linus Torvalds 已提交
494
{
495
	struct controller *ctrl = slot->ctrl;
496
	struct pci_dev *pdev = ctrl_dev(ctrl);
L
Linus Torvalds 已提交
497
	u16 slot_cmd;
498 499
	u16 cmd_mask;
	u16 slot_status;
500
	int retval;
L
Linus Torvalds 已提交
501

502
	/* Clear sticky power-fault bit from previous power failures */
503
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
504
	slot_status &= PCI_EXP_SLTSTA_PFD;
505 506
	if (slot_status)
		pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, slot_status);
507
	ctrl->power_fault_detected = 0;
L
Linus Torvalds 已提交
508

509
	slot_cmd = POWER_ON;
510
	cmd_mask = PCI_EXP_SLTCTL_PCC;
511
	pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
K
Kenji Kaneshige 已提交
512 513
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
L
Linus Torvalds 已提交
514

515 516 517 518
	retval = pciehp_link_enable(ctrl);
	if (retval)
		ctrl_err(ctrl, "%s: Can not enable the link!\n", __func__);

L
Linus Torvalds 已提交
519 520 521
	return retval;
}

522
void pciehp_power_off_slot(struct slot * slot)
L
Linus Torvalds 已提交
523
{
524
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
525
	u16 slot_cmd;
526
	u16 cmd_mask;
527

528 529 530 531 532 533 534 535
	/* Disable the link at first */
	pciehp_link_disable(ctrl);
	/* wait the link is down */
	if (ctrl->link_active_reporting)
		pcie_wait_link_not_active(ctrl);
	else
		msleep(1000);

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

543
static irqreturn_t pcie_isr(int irq, void *dev_id)
L
Linus Torvalds 已提交
544
{
545
	struct controller *ctrl = (struct controller *)dev_id;
546
	struct pci_dev *pdev = ctrl_dev(ctrl);
547
	struct slot *slot = ctrl->slot;
548
	u16 detected, intr_loc;
L
Linus Torvalds 已提交
549

550 551 552 553 554 555 556
	/*
	 * 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 {
557
		pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &detected);
L
Linus Torvalds 已提交
558

559 560 561
		detected &= (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
			     PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
			     PCI_EXP_SLTSTA_CC);
562
		detected &= ~intr_loc;
563 564
		intr_loc |= detected;
		if (!intr_loc)
L
Linus Torvalds 已提交
565
			return IRQ_NONE;
566 567 568
		if (detected)
			pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
						   intr_loc);
569
	} while (detected);
570

571
	ctrl_dbg(ctrl, "%s: intr_loc %x\n", __func__, intr_loc);
572

573
	/* Check Command Complete Interrupt Pending */
574
	if (intr_loc & PCI_EXP_SLTSTA_CC) {
575
		ctrl->cmd_busy = 0;
576
		smp_mb();
577
		wake_up(&ctrl->queue);
L
Linus Torvalds 已提交
578 579
	}

580
	if (!(intr_loc & ~PCI_EXP_SLTSTA_CC))
581 582
		return IRQ_HANDLED;

583
	/* Check MRL Sensor Changed */
584
	if (intr_loc & PCI_EXP_SLTSTA_MRLSC)
585
		pciehp_handle_switch_change(slot);
586

587
	/* Check Attention Button Pressed */
588
	if (intr_loc & PCI_EXP_SLTSTA_ABP)
589
		pciehp_handle_attention_button(slot);
590

591
	/* Check Presence Detect Changed */
592
	if (intr_loc & PCI_EXP_SLTSTA_PDC)
593
		pciehp_handle_presence_change(slot);
594

595
	/* Check Power Fault Detected */
596 597
	if ((intr_loc & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) {
		ctrl->power_fault_detected = 1;
598
		pciehp_handle_power_fault(slot);
599
	}
L
Linus Torvalds 已提交
600 601 602
	return IRQ_HANDLED;
}

603
void pcie_enable_notification(struct controller *ctrl)
M
Mark Lord 已提交
604
{
605
	u16 cmd, mask;
L
Linus Torvalds 已提交
606

607 608 609 610 611 612 613 614 615 616
	/*
	 * 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.
	 */
617
	cmd = PCI_EXP_SLTCTL_PDCE;
618
	if (ATTN_BUTTN(ctrl))
619
		cmd |= PCI_EXP_SLTCTL_ABPE;
620
	if (MRL_SENS(ctrl))
621
		cmd |= PCI_EXP_SLTCTL_MRLSCE;
622
	if (!pciehp_poll_mode)
623
		cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
624

625 626 627
	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);
628

629
	pcie_write_cmd(ctrl, cmd, mask);
630 631 632 633 634
}

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

636 637
	mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
		PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
638 639
		PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
		PCI_EXP_SLTCTL_DLLSCE);
640
	pcie_write_cmd(ctrl, 0, mask);
641 642
}

643 644 645 646 647 648 649 650 651
/*
 * pciehp has a 1:1 bus:slot relationship so we ultimately want a secondary
 * bus reset of the bridge, but if the slot supports surprise removal we need
 * to disable presence detection around the bus reset and clear any spurious
 * events after.
 */
int pciehp_reset_slot(struct slot *slot, int probe)
{
	struct controller *ctrl = slot->ctrl;
652
	struct pci_dev *pdev = ctrl_dev(ctrl);
653 654 655 656 657 658 659 660 661 662 663 664 665

	if (probe)
		return 0;

	if (HP_SUPR_RM(ctrl)) {
		pcie_write_cmd(ctrl, 0, PCI_EXP_SLTCTL_PDCE);
		if (pciehp_poll_mode)
			del_timer_sync(&ctrl->poll_timer);
	}

	pci_reset_bridge_secondary_bus(ctrl->pcie->port);

	if (HP_SUPR_RM(ctrl)) {
666 667
		pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
					   PCI_EXP_SLTSTA_PDC);
668 669 670 671 672 673 674 675
		pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PDCE, PCI_EXP_SLTCTL_PDCE);
		if (pciehp_poll_mode)
			int_poll_timeout(ctrl->poll_timer.data);
	}

	return 0;
}

676
int pcie_init_notification(struct controller *ctrl)
677 678 679
{
	if (pciehp_request_irq(ctrl))
		return -1;
680
	pcie_enable_notification(ctrl);
681
	ctrl->notification_enabled = 1;
682 683 684 685 686
	return 0;
}

static void pcie_shutdown_notification(struct controller *ctrl)
{
687 688 689 690 691
	if (ctrl->notification_enabled) {
		pcie_disable_notification(ctrl);
		pciehp_free_irq(ctrl);
		ctrl->notification_enabled = 0;
	}
692 693 694 695 696 697 698 699 700 701
}

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

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

702
	slot->wq = alloc_workqueue("pciehp-%u", 0, 0, PSN(ctrl));
703 704 705
	if (!slot->wq)
		goto abort;

706 707 708
	slot->ctrl = ctrl;
	mutex_init(&slot->lock);
	INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
709
	ctrl->slot = slot;
L
Linus Torvalds 已提交
710
	return 0;
711 712 713
abort:
	kfree(slot);
	return -ENOMEM;
L
Linus Torvalds 已提交
714
}
715

716 717
static void pcie_cleanup_slot(struct controller *ctrl)
{
718
	struct slot *slot = ctrl->slot;
719
	cancel_delayed_work(&slot->work);
720
	destroy_workqueue(slot->wq);
721 722 723
	kfree(slot);
}

K
Kenji Kaneshige 已提交
724
static inline void dbg_ctrl(struct controller *ctrl)
725
{
K
Kenji Kaneshige 已提交
726 727
	int i;
	u16 reg16;
728
	struct pci_dev *pdev = ctrl->pcie->port;
729

K
Kenji Kaneshige 已提交
730 731
	if (!pciehp_debug)
		return;
732

733 734 735 736 737 738 739 740 741
	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 已提交
742 743
	ctrl_info(ctrl, "  PCIe Cap offset      : 0x%02x\n",
		  pci_pcie_cap(pdev));
K
Kenji Kaneshige 已提交
744 745 746
	for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
		if (!pci_resource_len(pdev, i))
			continue;
747 748
		ctrl_info(ctrl, "  PCI resource [%d]     : %pR\n",
			  i, &pdev->resource[i]);
749
	}
750
	ctrl_info(ctrl, "Slot Capabilities      : 0x%08x\n", ctrl->slot_cap);
751
	ctrl_info(ctrl, "  Physical Slot Number : %d\n", PSN(ctrl));
752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
	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");
768
	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &reg16);
769
	ctrl_info(ctrl, "Slot Status            : 0x%04x\n", reg16);
770
	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &reg16);
771
	ctrl_info(ctrl, "Slot Control           : 0x%04x\n", reg16);
K
Kenji Kaneshige 已提交
772
}
773

774
struct controller *pcie_init(struct pcie_device *dev)
K
Kenji Kaneshige 已提交
775
{
776
	struct controller *ctrl;
777
	u32 slot_cap, link_cap;
K
Kenji Kaneshige 已提交
778
	struct pci_dev *pdev = dev->port;
779

780 781
	ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
	if (!ctrl) {
782
		dev_err(&dev->device, "%s: Out of memory\n", __func__);
783 784
		goto abort;
	}
785
	ctrl->pcie = dev;
786
	pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &slot_cap);
K
Kenji Kaneshige 已提交
787
	ctrl->slot_cap = slot_cap;
788 789
	mutex_init(&ctrl->ctrl_lock);
	init_waitqueue_head(&ctrl->queue);
K
Kenji Kaneshige 已提交
790
	dbg_ctrl(ctrl);
K
Kenji Kaneshige 已提交
791 792 793 794 795 796 797 798 799
	/*
	 * 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;
800

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

808
	/* Clear all remaining event bits in Slot Status register */
809
	pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, 0x1f);
810

811
	/* Disable software notification */
812
	pcie_disable_notification(ctrl);
M
Mark Lord 已提交
813

814 815 816
	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);
817 818 819

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

821 822 823 824
	return ctrl;

abort_ctrl:
	kfree(ctrl);
825
abort:
826 827 828
	return NULL;
}

K
Kenji Kaneshige 已提交
829
void pciehp_release_ctrl(struct controller *ctrl)
830 831 832 833
{
	pcie_shutdown_notification(ctrl);
	pcie_cleanup_slot(ctrl);
	kfree(ctrl);
834
}