pciehp_hpc.c 23.2 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 45
static inline int pciehp_readw(struct controller *ctrl, int reg, u16 *value)
{
46
	struct pci_dev *dev = ctrl->pcie->port;
47
	return pcie_capability_read_word(dev, reg, value);
48 49 50 51
}

static inline int pciehp_readl(struct controller *ctrl, int reg, u32 *value)
{
52
	struct pci_dev *dev = ctrl->pcie->port;
53
	return pcie_capability_read_dword(dev, reg, value);
54 55 56 57
}

static inline int pciehp_writew(struct controller *ctrl, int reg, u16 value)
{
58
	struct pci_dev *dev = ctrl->pcie->port;
59
	return pcie_capability_write_word(dev, reg, value);
60 61 62 63
}

static inline int pciehp_writel(struct controller *ctrl, int reg, u32 value)
{
64
	struct pci_dev *dev = ctrl->pcie->port;
65
	return pcie_capability_write_dword(dev, reg, value);
66
}
L
Linus Torvalds 已提交
67 68 69

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

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

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

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

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

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

/* This function starts the interrupt polling timer. */
91
static void start_int_poll_timer(struct controller *ctrl, int sec)
L
Linus Torvalds 已提交
92
{
93 94 95 96 97 98 99 100
	/* 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 已提交
101 102
}

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

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

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

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

135 136 137 138
	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 已提交
139
	}
A
Adrian Bunk 已提交
140
	while (timeout > 0) {
141 142
		msleep(10);
		timeout -= 10;
143 144 145 146
		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 已提交
147
		}
148 149 150 151
	}
	return 0;	/* timeout */
}

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

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

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

178 179
	mutex_lock(&ctrl->ctrl_lock);

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

187
	if (slot_status & PCI_EXP_SLTSTA_CC) {
K
Kenji Kaneshige 已提交
188 189 190 191 192 193
		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.
			 */
194
			ctrl_dbg(ctrl, "CMD_COMPLETED not clear after 1 sec\n");
K
Kenji Kaneshige 已提交
195 196 197 198 199 200
		} 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.
			 */
201 202
			ctrl_dbg(ctrl, "Unexpected CMD_COMPLETED. Need to "
				 "wait for command completed event.\n");
K
Kenji Kaneshige 已提交
203 204
			ctrl->no_cmd_complete = 0;
		} else {
205 206
			ctrl_dbg(ctrl, "Unexpected CMD_COMPLETED. Maybe "
				 "the controller is broken.\n");
K
Kenji Kaneshige 已提交
207
		}
L
Linus Torvalds 已提交
208 209
	}

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

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

224 225 226
	/*
	 * Wait for command completion.
	 */
227 228 229 230 231 232 233
	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.
		 */
234 235
		if (!(slot_ctrl & PCI_EXP_SLTCTL_HPIE) ||
		    !(slot_ctrl & PCI_EXP_SLTCTL_CCIE))
236
			poll = 1;
237
                pcie_wait_cmd(ctrl, poll);
238
	}
239 240
 out:
	mutex_unlock(&ctrl->ctrl_lock);
L
Linus Torvalds 已提交
241 242 243
	return retval;
}

244
static bool check_link_active(struct controller *ctrl)
245
{
246 247
	bool ret = false;
	u16 lnk_status;
248

249 250 251 252 253 254 255 256 257
	if (pciehp_readw(ctrl, PCI_EXP_LNKSTA, &lnk_status))
		return ret;

	ret = !!(lnk_status & PCI_EXP_LNKSTA_DLLLA);

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

	return ret;
258 259
}

260
static void __pcie_wait_link_active(struct controller *ctrl, bool active)
261 262 263
{
	int timeout = 1000;

264
	if (check_link_active(ctrl) == active)
265 266 267 268
		return;
	while (timeout > 0) {
		msleep(10);
		timeout -= 10;
269
		if (check_link_active(ctrl) == active)
270 271
			return;
	}
272 273 274 275 276 277 278 279 280 281 282 283
	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);
284 285
}

286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
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 已提交
312
int pciehp_check_link_status(struct controller *ctrl)
L
Linus Torvalds 已提交
313 314 315
{
	u16 lnk_status;
	int retval = 0;
316
	bool found = false;
L
Linus Torvalds 已提交
317

318 319 320 321 322
        /*
         * 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.
         */
323
        if (ctrl->link_active_reporting)
324
                pcie_wait_link_active(ctrl);
325
        else
326 327
                msleep(1000);

328 329 330 331
	/* 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));
332

333
	retval = pciehp_readw(ctrl, PCI_EXP_LNKSTA, &lnk_status);
L
Linus Torvalds 已提交
334
	if (retval) {
335
		ctrl_err(ctrl, "Cannot read LNKSTATUS register\n");
L
Linus Torvalds 已提交
336 337 338
		return retval;
	}

339
	ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
340 341
	if ((lnk_status & PCI_EXP_LNKSTA_LT) ||
	    !(lnk_status & PCI_EXP_LNKSTA_NLW)) {
342
		ctrl_err(ctrl, "Link Training Error occurs \n");
L
Linus Torvalds 已提交
343 344 345 346
		retval = -1;
		return retval;
	}

347 348
	pcie_update_link_speed(ctrl->pcie->port->subordinate, lnk_status);

349 350 351
	if (!found && !retval)
		retval = -1;

L
Linus Torvalds 已提交
352 353 354
	return retval;
}

355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
static int __pciehp_link_set(struct controller *ctrl, bool enable)
{
	u16 lnk_ctrl;
	int retval = 0;

	retval = pciehp_readw(ctrl, PCI_EXP_LNKCTL, &lnk_ctrl);
	if (retval) {
		ctrl_err(ctrl, "Cannot read LNKCTRL register\n");
		return retval;
	}

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

	retval = pciehp_writew(ctrl, PCI_EXP_LNKCTL, lnk_ctrl);
	if (retval) {
		ctrl_err(ctrl, "Cannot write LNKCTRL register\n");
		return retval;
	}
	ctrl_dbg(ctrl, "%s: lnk_ctrl = %x\n", __func__, lnk_ctrl);

	return retval;
}

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

K
Kenji Kaneshige 已提交
391
int pciehp_get_attention_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
392
{
393
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
394 395 396 397
	u16 slot_ctrl;
	u8 atten_led_state;
	int retval = 0;

398
	retval = pciehp_readw(ctrl, PCI_EXP_SLTCTL, &slot_ctrl);
L
Linus Torvalds 已提交
399
	if (retval) {
400
		ctrl_err(ctrl, "%s: Cannot read SLOTCTRL register\n", __func__);
L
Linus Torvalds 已提交
401 402 403
		return retval;
	}

K
Kenji Kaneshige 已提交
404 405
	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 已提交
406

407
	atten_led_state = (slot_ctrl & PCI_EXP_SLTCTL_AIC) >> 6;
L
Linus Torvalds 已提交
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429

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

K
Kenji Kaneshige 已提交
430
int pciehp_get_power_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
431
{
432
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
433 434 435 436
	u16 slot_ctrl;
	u8 pwr_state;
	int	retval = 0;

437
	retval = pciehp_readw(ctrl, PCI_EXP_SLTCTL, &slot_ctrl);
L
Linus Torvalds 已提交
438
	if (retval) {
439
		ctrl_err(ctrl, "%s: Cannot read SLOTCTRL register\n", __func__);
L
Linus Torvalds 已提交
440 441
		return retval;
	}
K
Kenji Kaneshige 已提交
442 443
	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 已提交
444

445
	pwr_state = (slot_ctrl & PCI_EXP_SLTCTL_PCC) >> 10;
L
Linus Torvalds 已提交
446 447 448 449 450 451

	switch (pwr_state) {
	case 0:
		*status = 1;
		break;
	case 1:
452
		*status = 0;
L
Linus Torvalds 已提交
453 454 455 456 457 458 459 460 461
		break;
	default:
		*status = 0xFF;
		break;
	}

	return retval;
}

K
Kenji Kaneshige 已提交
462
int pciehp_get_latch_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
463
{
464
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
465
	u16 slot_status;
466
	int retval;
L
Linus Torvalds 已提交
467

468
	retval = pciehp_readw(ctrl, PCI_EXP_SLTSTA, &slot_status);
L
Linus Torvalds 已提交
469
	if (retval) {
470 471
		ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
			 __func__);
L
Linus Torvalds 已提交
472 473
		return retval;
	}
474
	*status = !!(slot_status & PCI_EXP_SLTSTA_MRLSS);
L
Linus Torvalds 已提交
475 476 477
	return 0;
}

K
Kenji Kaneshige 已提交
478
int pciehp_get_adapter_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
479
{
480
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
481
	u16 slot_status;
482
	int retval;
L
Linus Torvalds 已提交
483

484
	retval = pciehp_readw(ctrl, PCI_EXP_SLTSTA, &slot_status);
L
Linus Torvalds 已提交
485
	if (retval) {
486 487
		ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
			 __func__);
L
Linus Torvalds 已提交
488 489
		return retval;
	}
490
	*status = !!(slot_status & PCI_EXP_SLTSTA_PDS);
L
Linus Torvalds 已提交
491 492 493
	return 0;
}

K
Kenji Kaneshige 已提交
494
int pciehp_query_power_fault(struct slot *slot)
L
Linus Torvalds 已提交
495
{
496
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
497
	u16 slot_status;
498
	int retval;
L
Linus Torvalds 已提交
499

500
	retval = pciehp_readw(ctrl, PCI_EXP_SLTSTA, &slot_status);
L
Linus Torvalds 已提交
501
	if (retval) {
502
		ctrl_err(ctrl, "Cannot check for power fault\n");
L
Linus Torvalds 已提交
503 504
		return retval;
	}
505
	return !!(slot_status & PCI_EXP_SLTSTA_PFD);
L
Linus Torvalds 已提交
506 507
}

K
Kenji Kaneshige 已提交
508
int pciehp_set_attention_status(struct slot *slot, u8 value)
L
Linus Torvalds 已提交
509
{
510
	struct controller *ctrl = slot->ctrl;
511 512
	u16 slot_cmd;
	u16 cmd_mask;
L
Linus Torvalds 已提交
513

514
	cmd_mask = PCI_EXP_SLTCTL_AIC;
L
Linus Torvalds 已提交
515
	switch (value) {
516 517 518 519 520 521 522 523 524 525 526
	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:
		return -EINVAL;
L
Linus Torvalds 已提交
527
	}
K
Kenji Kaneshige 已提交
528 529
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
530
	return pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
L
Linus Torvalds 已提交
531 532
}

K
Kenji Kaneshige 已提交
533
void pciehp_green_led_on(struct slot *slot)
L
Linus Torvalds 已提交
534
{
535
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
536
	u16 slot_cmd;
537
	u16 cmd_mask;
538

539
	slot_cmd = 0x0100;
540
	cmd_mask = PCI_EXP_SLTCTL_PIC;
541
	pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
K
Kenji Kaneshige 已提交
542 543
	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 已提交
544 545
}

K
Kenji Kaneshige 已提交
546
void pciehp_green_led_off(struct slot *slot)
L
Linus Torvalds 已提交
547
{
548
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
549
	u16 slot_cmd;
550
	u16 cmd_mask;
L
Linus Torvalds 已提交
551

552
	slot_cmd = 0x0300;
553
	cmd_mask = PCI_EXP_SLTCTL_PIC;
554
	pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
K
Kenji Kaneshige 已提交
555 556
	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 已提交
557 558
}

K
Kenji Kaneshige 已提交
559
void pciehp_green_led_blink(struct slot *slot)
L
Linus Torvalds 已提交
560
{
561
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
562
	u16 slot_cmd;
563
	u16 cmd_mask;
564

565
	slot_cmd = 0x0200;
566
	cmd_mask = PCI_EXP_SLTCTL_PIC;
567
	pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
K
Kenji Kaneshige 已提交
568 569
	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 已提交
570 571
}

K
Kenji Kaneshige 已提交
572
int pciehp_power_on_slot(struct slot * slot)
L
Linus Torvalds 已提交
573
{
574
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
575
	u16 slot_cmd;
576 577
	u16 cmd_mask;
	u16 slot_status;
L
Linus Torvalds 已提交
578 579
	int retval = 0;

580
	/* Clear sticky power-fault bit from previous power failures */
581
	retval = pciehp_readw(ctrl, PCI_EXP_SLTSTA, &slot_status);
582
	if (retval) {
583 584
		ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
			 __func__);
585 586
		return retval;
	}
587
	slot_status &= PCI_EXP_SLTSTA_PFD;
588
	if (slot_status) {
589
		retval = pciehp_writew(ctrl, PCI_EXP_SLTSTA, slot_status);
590
		if (retval) {
591 592 593
			ctrl_err(ctrl,
				 "%s: Cannot write to SLOTSTATUS register\n",
				 __func__);
594 595 596
			return retval;
		}
	}
597
	ctrl->power_fault_detected = 0;
L
Linus Torvalds 已提交
598

599
	slot_cmd = POWER_ON;
600
	cmd_mask = PCI_EXP_SLTCTL_PCC;
601
	retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
L
Linus Torvalds 已提交
602
	if (retval) {
603
		ctrl_err(ctrl, "Write %x command failed!\n", slot_cmd);
604
		return retval;
L
Linus Torvalds 已提交
605
	}
K
Kenji Kaneshige 已提交
606 607
	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 已提交
608

609 610 611 612
	retval = pciehp_link_enable(ctrl);
	if (retval)
		ctrl_err(ctrl, "%s: Can not enable the link!\n", __func__);

L
Linus Torvalds 已提交
613 614 615
	return retval;
}

K
Kenji Kaneshige 已提交
616
int pciehp_power_off_slot(struct slot * slot)
L
Linus Torvalds 已提交
617
{
618
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
619
	u16 slot_cmd;
620
	u16 cmd_mask;
621
	int retval;
622

623 624 625 626 627 628 629 630
	/* 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);

631
	slot_cmd = POWER_OFF;
632
	cmd_mask = PCI_EXP_SLTCTL_PCC;
633
	retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
L
Linus Torvalds 已提交
634
	if (retval) {
635
		ctrl_err(ctrl, "Write command failed!\n");
636
		return retval;
L
Linus Torvalds 已提交
637
	}
K
Kenji Kaneshige 已提交
638 639
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
640
	return 0;
L
Linus Torvalds 已提交
641 642
}

643
static irqreturn_t pcie_isr(int irq, void *dev_id)
L
Linus Torvalds 已提交
644
{
645
	struct controller *ctrl = (struct controller *)dev_id;
646
	struct slot *slot = ctrl->slot;
647
	u16 detected, intr_loc;
L
Linus Torvalds 已提交
648

649 650 651 652 653 654 655
	/*
	 * 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 {
656
		if (pciehp_readw(ctrl, PCI_EXP_SLTSTA, &detected)) {
657 658
			ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS\n",
				 __func__);
L
Linus Torvalds 已提交
659 660 661
			return IRQ_NONE;
		}

662 663 664
		detected &= (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
			     PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
			     PCI_EXP_SLTSTA_CC);
665
		detected &= ~intr_loc;
666 667
		intr_loc |= detected;
		if (!intr_loc)
L
Linus Torvalds 已提交
668
			return IRQ_NONE;
669
		if (detected && pciehp_writew(ctrl, PCI_EXP_SLTSTA, intr_loc)) {
670 671
			ctrl_err(ctrl, "%s: Cannot write to SLOTSTATUS\n",
				 __func__);
L
Linus Torvalds 已提交
672 673
			return IRQ_NONE;
		}
674
	} while (detected);
675

676
	ctrl_dbg(ctrl, "%s: intr_loc %x\n", __func__, intr_loc);
677

678
	/* Check Command Complete Interrupt Pending */
679
	if (intr_loc & PCI_EXP_SLTSTA_CC) {
680
		ctrl->cmd_busy = 0;
681
		smp_mb();
682
		wake_up(&ctrl->queue);
L
Linus Torvalds 已提交
683 684
	}

685
	if (!(intr_loc & ~PCI_EXP_SLTSTA_CC))
686 687
		return IRQ_HANDLED;

688
	/* Check MRL Sensor Changed */
689
	if (intr_loc & PCI_EXP_SLTSTA_MRLSC)
690
		pciehp_handle_switch_change(slot);
691

692
	/* Check Attention Button Pressed */
693
	if (intr_loc & PCI_EXP_SLTSTA_ABP)
694
		pciehp_handle_attention_button(slot);
695

696
	/* Check Presence Detect Changed */
697
	if (intr_loc & PCI_EXP_SLTSTA_PDC)
698
		pciehp_handle_presence_change(slot);
699

700
	/* Check Power Fault Detected */
701 702
	if ((intr_loc & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) {
		ctrl->power_fault_detected = 1;
703
		pciehp_handle_power_fault(slot);
704
	}
L
Linus Torvalds 已提交
705 706 707
	return IRQ_HANDLED;
}

708
int pcie_enable_notification(struct controller *ctrl)
M
Mark Lord 已提交
709
{
710
	u16 cmd, mask;
L
Linus Torvalds 已提交
711

712 713 714 715 716 717 718 719 720 721
	/*
	 * 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.
	 */
722
	cmd = PCI_EXP_SLTCTL_PDCE;
723
	if (ATTN_BUTTN(ctrl))
724
		cmd |= PCI_EXP_SLTCTL_ABPE;
725
	if (MRL_SENS(ctrl))
726
		cmd |= PCI_EXP_SLTCTL_MRLSCE;
727
	if (!pciehp_poll_mode)
728
		cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
729

730 731 732
	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);
733 734

	if (pcie_write_cmd(ctrl, cmd, mask)) {
735
		ctrl_err(ctrl, "Cannot enable software notification\n");
736
		return -1;
L
Linus Torvalds 已提交
737
	}
738 739 740 741 742 743
	return 0;
}

static void pcie_disable_notification(struct controller *ctrl)
{
	u16 mask;
744 745
	mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
		PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
746 747
		PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
		PCI_EXP_SLTCTL_DLLSCE);
748
	if (pcie_write_cmd(ctrl, 0, mask))
749
		ctrl_warn(ctrl, "Cannot disable software notification\n");
750 751
}

752
int pcie_init_notification(struct controller *ctrl)
753 754 755 756 757 758 759
{
	if (pciehp_request_irq(ctrl))
		return -1;
	if (pcie_enable_notification(ctrl)) {
		pciehp_free_irq(ctrl);
		return -1;
	}
760
	ctrl->notification_enabled = 1;
761 762 763 764 765
	return 0;
}

static void pcie_shutdown_notification(struct controller *ctrl)
{
766 767 768 769 770
	if (ctrl->notification_enabled) {
		pcie_disable_notification(ctrl);
		pciehp_free_irq(ctrl);
		ctrl->notification_enabled = 0;
	}
771 772 773 774 775 776 777 778 779 780
}

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

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

781
	slot->wq = alloc_workqueue("pciehp-%u", 0, 0, PSN(ctrl));
782 783 784
	if (!slot->wq)
		goto abort;

785 786 787
	slot->ctrl = ctrl;
	mutex_init(&slot->lock);
	INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
788
	ctrl->slot = slot;
L
Linus Torvalds 已提交
789
	return 0;
790 791 792
abort:
	kfree(slot);
	return -ENOMEM;
L
Linus Torvalds 已提交
793
}
794

795 796
static void pcie_cleanup_slot(struct controller *ctrl)
{
797
	struct slot *slot = ctrl->slot;
798
	cancel_delayed_work(&slot->work);
799
	destroy_workqueue(slot->wq);
800 801 802
	kfree(slot);
}

K
Kenji Kaneshige 已提交
803
static inline void dbg_ctrl(struct controller *ctrl)
804
{
K
Kenji Kaneshige 已提交
805 806
	int i;
	u16 reg16;
807
	struct pci_dev *pdev = ctrl->pcie->port;
808

K
Kenji Kaneshige 已提交
809 810
	if (!pciehp_debug)
		return;
811

812 813 814 815 816 817 818 819 820
	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 已提交
821 822
	ctrl_info(ctrl, "  PCIe Cap offset      : 0x%02x\n",
		  pci_pcie_cap(pdev));
K
Kenji Kaneshige 已提交
823 824 825
	for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
		if (!pci_resource_len(pdev, i))
			continue;
826 827
		ctrl_info(ctrl, "  PCI resource [%d]     : %pR\n",
			  i, &pdev->resource[i]);
828
	}
829
	ctrl_info(ctrl, "Slot Capabilities      : 0x%08x\n", ctrl->slot_cap);
830
	ctrl_info(ctrl, "  Physical Slot Number : %d\n", PSN(ctrl));
831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
	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");
847
	pciehp_readw(ctrl, PCI_EXP_SLTSTA, &reg16);
848
	ctrl_info(ctrl, "Slot Status            : 0x%04x\n", reg16);
849
	pciehp_readw(ctrl, PCI_EXP_SLTCTL, &reg16);
850
	ctrl_info(ctrl, "Slot Control           : 0x%04x\n", reg16);
K
Kenji Kaneshige 已提交
851
}
852

853
struct controller *pcie_init(struct pcie_device *dev)
K
Kenji Kaneshige 已提交
854
{
855
	struct controller *ctrl;
856
	u32 slot_cap, link_cap;
K
Kenji Kaneshige 已提交
857
	struct pci_dev *pdev = dev->port;
858

859 860
	ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
	if (!ctrl) {
861
		dev_err(&dev->device, "%s: Out of memory\n", __func__);
862 863
		goto abort;
	}
864
	ctrl->pcie = dev;
865
	if (pciehp_readl(ctrl, PCI_EXP_SLTCAP, &slot_cap)) {
866
		ctrl_err(ctrl, "Cannot read SLOTCAP register\n");
867
		goto abort_ctrl;
868 869
	}

K
Kenji Kaneshige 已提交
870
	ctrl->slot_cap = slot_cap;
871 872
	mutex_init(&ctrl->ctrl_lock);
	init_waitqueue_head(&ctrl->queue);
K
Kenji Kaneshige 已提交
873
	dbg_ctrl(ctrl);
K
Kenji Kaneshige 已提交
874 875 876 877 878 879 880 881 882
	/*
	 * 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;
883

884
        /* Check if Data Link Layer Link Active Reporting is implemented */
885
        if (pciehp_readl(ctrl, PCI_EXP_LNKCAP, &link_cap)) {
886 887 888
                ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
                goto abort_ctrl;
        }
889
        if (link_cap & PCI_EXP_LNKCAP_DLLLARC) {
890 891 892 893
                ctrl_dbg(ctrl, "Link Active Reporting supported\n");
                ctrl->link_active_reporting = 1;
        }

894
	/* Clear all remaining event bits in Slot Status register */
895
	if (pciehp_writew(ctrl, PCI_EXP_SLTSTA, 0x1f))
896
		goto abort_ctrl;
897

898 899
	/* Disable sotfware notification */
	pcie_disable_notification(ctrl);
M
Mark Lord 已提交
900

901 902 903
	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);
904 905 906

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

908 909 910 911
	return ctrl;

abort_ctrl:
	kfree(ctrl);
912
abort:
913 914 915
	return NULL;
}

K
Kenji Kaneshige 已提交
916
void pciehp_release_ctrl(struct controller *ctrl)
917 918 919 920
{
	pcie_shutdown_notification(ctrl);
	pcie_cleanup_slot(ctrl);
	kfree(ctrl);
921
}