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

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

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

static inline int pciehp_writel(struct controller *ctrl, int reg, u32 value)
{
65
	struct pci_dev *dev = ctrl->pcie->port;
66 67
	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");
}

K
Kenji Kaneshige 已提交
269
int pciehp_check_link_status(struct controller *ctrl)
L
Linus Torvalds 已提交
270 271 272 273
{
	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
		retval = -1;
		return retval;
	}

	return retval;
}

K
Kenji Kaneshige 已提交
308
int pciehp_get_attention_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
309
{
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;
}

K
Kenji Kaneshige 已提交
347
int pciehp_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
		break;
	default:
		*status = 0xFF;
		break;
	}

	return retval;
}

K
Kenji Kaneshige 已提交
379
int pciehp_get_latch_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
380
{
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
	return 0;
}

K
Kenji Kaneshige 已提交
395
int pciehp_get_adapter_status(struct slot *slot, u8 *status)
L
Linus Torvalds 已提交
396
{
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;
}

K
Kenji Kaneshige 已提交
411
int pciehp_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
}

K
Kenji Kaneshige 已提交
425
int pciehp_set_attention_status(struct slot *slot, u8 value)
L
Linus Torvalds 已提交
426
{
427
	struct controller *ctrl = slot->ctrl;
428 429
	u16 slot_cmd;
	u16 cmd_mask;
L
Linus Torvalds 已提交
430

431
	cmd_mask = PCI_EXP_SLTCTL_AIC;
L
Linus Torvalds 已提交
432
	switch (value) {
433 434 435 436 437 438 439 440 441 442 443
	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 已提交
444
	}
445
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
446
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_cmd);
447
	return pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
L
Linus Torvalds 已提交
448 449
}

K
Kenji Kaneshige 已提交
450
void pciehp_green_led_on(struct slot *slot)
L
Linus Torvalds 已提交
451
{
452
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
453
	u16 slot_cmd;
454
	u16 cmd_mask;
455

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

K
Kenji Kaneshige 已提交
463
void pciehp_green_led_off(struct slot *slot)
L
Linus Torvalds 已提交
464
{
465
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
466
	u16 slot_cmd;
467
	u16 cmd_mask;
L
Linus Torvalds 已提交
468

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

K
Kenji Kaneshige 已提交
476
void pciehp_green_led_blink(struct slot *slot)
L
Linus Torvalds 已提交
477
{
478
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
479
	u16 slot_cmd;
480
	u16 cmd_mask;
481

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

K
Kenji Kaneshige 已提交
489
int pciehp_power_on_slot(struct slot * slot)
L
Linus Torvalds 已提交
490
{
491
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
492
	u16 slot_cmd;
493 494
	u16 cmd_mask;
	u16 slot_status;
L
Linus Torvalds 已提交
495 496
	int retval = 0;

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

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

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

531
	ctrl->power_fault_detected = 0;
L
Linus Torvalds 已提交
532 533 534
	return retval;
}

K
Kenji Kaneshige 已提交
535
int pciehp_power_off_slot(struct slot * slot)
L
Linus Torvalds 已提交
536
{
537
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
538
	u16 slot_cmd;
539
	u16 cmd_mask;
540
	int retval;
541

542
	slot_cmd = POWER_OFF;
543
	cmd_mask = PCI_EXP_SLTCTL_PCC;
544
	if (!pciehp_poll_mode) {
545 546 547
		/* Disable power fault detection */
		slot_cmd &= ~PCI_EXP_SLTCTL_PFDE;
		cmd_mask |= PCI_EXP_SLTCTL_PFDE;
548
	}
L
Linus Torvalds 已提交
549

550
	retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
L
Linus Torvalds 已提交
551
	if (retval) {
552
		ctrl_err(ctrl, "Write command failed!\n");
553
		return retval;
L
Linus Torvalds 已提交
554
	}
555
	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
556
		 __func__, ctrl->cap_base + PCI_EXP_SLTCTL, slot_cmd);
557
	return 0;
L
Linus Torvalds 已提交
558 559
}

560
static irqreturn_t pcie_isr(int irq, void *dev_id)
L
Linus Torvalds 已提交
561
{
562
	struct controller *ctrl = (struct controller *)dev_id;
563
	struct slot *slot = ctrl->slot;
564
	u16 detected, intr_loc;
L
Linus Torvalds 已提交
565

566 567 568 569 570 571 572
	/*
	 * 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 {
573
		if (pciehp_readw(ctrl, PCI_EXP_SLTSTA, &detected)) {
574 575
			ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS\n",
				 __func__);
L
Linus Torvalds 已提交
576 577 578
			return IRQ_NONE;
		}

579 580 581
		detected &= (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
			     PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
			     PCI_EXP_SLTSTA_CC);
582
		detected &= ~intr_loc;
583 584
		intr_loc |= detected;
		if (!intr_loc)
L
Linus Torvalds 已提交
585
			return IRQ_NONE;
586
		if (detected && pciehp_writew(ctrl, PCI_EXP_SLTSTA, intr_loc)) {
587 588
			ctrl_err(ctrl, "%s: Cannot write to SLOTSTATUS\n",
				 __func__);
L
Linus Torvalds 已提交
589 590
			return IRQ_NONE;
		}
591
	} while (detected);
592

593
	ctrl_dbg(ctrl, "%s: intr_loc %x\n", __func__, intr_loc);
594

595
	/* Check Command Complete Interrupt Pending */
596
	if (intr_loc & PCI_EXP_SLTSTA_CC) {
597
		ctrl->cmd_busy = 0;
598
		smp_mb();
599
		wake_up(&ctrl->queue);
L
Linus Torvalds 已提交
600 601
	}

602
	if (!(intr_loc & ~PCI_EXP_SLTSTA_CC))
603 604
		return IRQ_HANDLED;

605
	/* Check MRL Sensor Changed */
606
	if (intr_loc & PCI_EXP_SLTSTA_MRLSC)
607
		pciehp_handle_switch_change(slot);
608

609
	/* Check Attention Button Pressed */
610
	if (intr_loc & PCI_EXP_SLTSTA_ABP)
611
		pciehp_handle_attention_button(slot);
612

613
	/* Check Presence Detect Changed */
614
	if (intr_loc & PCI_EXP_SLTSTA_PDC)
615
		pciehp_handle_presence_change(slot);
616

617
	/* Check Power Fault Detected */
618 619
	if ((intr_loc & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) {
		ctrl->power_fault_detected = 1;
620
		pciehp_handle_power_fault(slot);
621
	}
L
Linus Torvalds 已提交
622 623 624
	return IRQ_HANDLED;
}

K
Kenji Kaneshige 已提交
625
int pciehp_get_max_link_speed(struct slot *slot, enum pci_bus_speed *value)
L
Linus Torvalds 已提交
626
{
627
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
628 629 630 631
	enum pcie_link_speed lnk_speed;
	u32	lnk_cap;
	int retval = 0;

632
	retval = pciehp_readl(ctrl, PCI_EXP_LNKCAP, &lnk_cap);
L
Linus Torvalds 已提交
633
	if (retval) {
634
		ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
L
Linus Torvalds 已提交
635 636 637 638 639
		return retval;
	}

	switch (lnk_cap & 0x000F) {
	case 1:
640 641 642 643
		lnk_speed = PCIE_2_5GB;
		break;
	case 2:
		lnk_speed = PCIE_5_0GB;
L
Linus Torvalds 已提交
644 645 646 647 648 649 650
		break;
	default:
		lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
		break;
	}

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

L
Linus Torvalds 已提交
653 654 655
	return retval;
}

K
Kenji Kaneshige 已提交
656
int pciehp_get_max_lnk_width(struct slot *slot,
657
				 enum pcie_link_width *value)
L
Linus Torvalds 已提交
658
{
659
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
660 661 662 663
	enum pcie_link_width lnk_wdth;
	u32	lnk_cap;
	int retval = 0;

664
	retval = pciehp_readl(ctrl, PCI_EXP_LNKCAP, &lnk_cap);
L
Linus Torvalds 已提交
665
	if (retval) {
666
		ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
L
Linus Torvalds 已提交
667 668 669
		return retval;
	}

670
	switch ((lnk_cap & PCI_EXP_LNKSTA_NLW) >> 4){
L
Linus Torvalds 已提交
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
	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;
701
	ctrl_dbg(ctrl, "Max link width = %d\n", lnk_wdth);
K
Kenji Kaneshige 已提交
702

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

K
Kenji Kaneshige 已提交
706
int pciehp_get_cur_link_speed(struct slot *slot, enum pci_bus_speed *value)
L
Linus Torvalds 已提交
707
{
708
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
709 710 711 712
	enum pcie_link_speed lnk_speed = PCI_SPEED_UNKNOWN;
	int retval = 0;
	u16 lnk_status;

713
	retval = pciehp_readw(ctrl, PCI_EXP_LNKSTA, &lnk_status);
L
Linus Torvalds 已提交
714
	if (retval) {
715 716
		ctrl_err(ctrl, "%s: Cannot read LNKSTATUS register\n",
			 __func__);
L
Linus Torvalds 已提交
717 718 719
		return retval;
	}

720
	switch (lnk_status & PCI_EXP_LNKSTA_CLS) {
L
Linus Torvalds 已提交
721
	case 1:
722 723 724 725
		lnk_speed = PCIE_2_5GB;
		break;
	case 2:
		lnk_speed = PCIE_5_0GB;
L
Linus Torvalds 已提交
726 727 728 729 730 731 732
		break;
	default:
		lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
		break;
	}

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

L
Linus Torvalds 已提交
735 736 737
	return retval;
}

K
Kenji Kaneshige 已提交
738
int pciehp_get_cur_lnk_width(struct slot *slot,
739
				 enum pcie_link_width *value)
L
Linus Torvalds 已提交
740
{
741
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
742 743 744 745
	enum pcie_link_width lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
	int retval = 0;
	u16 lnk_status;

746
	retval = pciehp_readw(ctrl, PCI_EXP_LNKSTA, &lnk_status);
L
Linus Torvalds 已提交
747
	if (retval) {
748 749
		ctrl_err(ctrl, "%s: Cannot read LNKSTATUS register\n",
			 __func__);
L
Linus Torvalds 已提交
750 751
		return retval;
	}
752

753
	switch ((lnk_status & PCI_EXP_LNKSTA_NLW) >> 4){
L
Linus Torvalds 已提交
754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783
	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;
784
	ctrl_dbg(ctrl, "Current link width = %d\n", lnk_wdth);
K
Kenji Kaneshige 已提交
785

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

789
int pcie_enable_notification(struct controller *ctrl)
M
Mark Lord 已提交
790
{
791
	u16 cmd, mask;
L
Linus Torvalds 已提交
792

793
	cmd = PCI_EXP_SLTCTL_PDCE;
794
	if (ATTN_BUTTN(ctrl))
795
		cmd |= PCI_EXP_SLTCTL_ABPE;
796
	if (POWER_CTRL(ctrl))
797
		cmd |= PCI_EXP_SLTCTL_PFDE;
798
	if (MRL_SENS(ctrl))
799
		cmd |= PCI_EXP_SLTCTL_MRLSCE;
800
	if (!pciehp_poll_mode)
801
		cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
802

803 804 805
	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);
806 807

	if (pcie_write_cmd(ctrl, cmd, mask)) {
808
		ctrl_err(ctrl, "Cannot enable software notification\n");
809
		return -1;
L
Linus Torvalds 已提交
810
	}
811 812 813 814 815 816
	return 0;
}

static void pcie_disable_notification(struct controller *ctrl)
{
	u16 mask;
817 818
	mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
		PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
819 820
		PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
		PCI_EXP_SLTCTL_DLLSCE);
821
	if (pcie_write_cmd(ctrl, 0, mask))
822
		ctrl_warn(ctrl, "Cannot disable software notification\n");
823 824
}

825
int pcie_init_notification(struct controller *ctrl)
826 827 828 829 830 831 832
{
	if (pciehp_request_irq(ctrl))
		return -1;
	if (pcie_enable_notification(ctrl)) {
		pciehp_free_irq(ctrl);
		return -1;
	}
833
	ctrl->notification_enabled = 1;
834 835 836 837 838
	return 0;
}

static void pcie_shutdown_notification(struct controller *ctrl)
{
839 840 841 842 843
	if (ctrl->notification_enabled) {
		pcie_disable_notification(ctrl);
		pciehp_free_irq(ctrl);
		ctrl->notification_enabled = 0;
	}
844 845 846 847 848 849 850 851 852 853 854 855 856
}

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

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

	slot->ctrl = ctrl;
	mutex_init(&slot->lock);
	INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
857
	ctrl->slot = slot;
L
Linus Torvalds 已提交
858 859
	return 0;
}
860

861 862
static void pcie_cleanup_slot(struct controller *ctrl)
{
863
	struct slot *slot = ctrl->slot;
864 865 866 867 868 869
	cancel_delayed_work(&slot->work);
	flush_scheduled_work();
	flush_workqueue(pciehp_wq);
	kfree(slot);
}

K
Kenji Kaneshige 已提交
870
static inline void dbg_ctrl(struct controller *ctrl)
871
{
K
Kenji Kaneshige 已提交
872 873
	int i;
	u16 reg16;
874
	struct pci_dev *pdev = ctrl->pcie->port;
875

K
Kenji Kaneshige 已提交
876 877
	if (!pciehp_debug)
		return;
878

879 880 881 882 883 884 885 886 887 888
	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 已提交
889 890 891
	for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
		if (!pci_resource_len(pdev, i))
			continue;
892 893 894
		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));
895
	}
896
	ctrl_info(ctrl, "Slot Capabilities      : 0x%08x\n", ctrl->slot_cap);
897
	ctrl_info(ctrl, "  Physical Slot Number : %d\n", PSN(ctrl));
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
	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");
914
	pciehp_readw(ctrl, PCI_EXP_SLTSTA, &reg16);
915
	ctrl_info(ctrl, "Slot Status            : 0x%04x\n", reg16);
916
	pciehp_readw(ctrl, PCI_EXP_SLTCTL, &reg16);
917
	ctrl_info(ctrl, "Slot Control           : 0x%04x\n", reg16);
K
Kenji Kaneshige 已提交
918
}
919

920
struct controller *pcie_init(struct pcie_device *dev)
K
Kenji Kaneshige 已提交
921
{
922
	struct controller *ctrl;
923
	u32 slot_cap, link_cap;
K
Kenji Kaneshige 已提交
924
	struct pci_dev *pdev = dev->port;
925

926 927
	ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
	if (!ctrl) {
928
		dev_err(&dev->device, "%s: Out of memory\n", __func__);
929 930
		goto abort;
	}
931
	ctrl->pcie = dev;
K
Kenji Kaneshige 已提交
932 933
	ctrl->cap_base = pci_find_capability(pdev, PCI_CAP_ID_EXP);
	if (!ctrl->cap_base) {
934
		ctrl_err(ctrl, "Cannot find PCI Express capability\n");
935
		goto abort_ctrl;
936
	}
937
	if (pciehp_readl(ctrl, PCI_EXP_SLTCAP, &slot_cap)) {
938
		ctrl_err(ctrl, "Cannot read SLOTCAP register\n");
939
		goto abort_ctrl;
940 941
	}

K
Kenji Kaneshige 已提交
942
	ctrl->slot_cap = slot_cap;
943 944
	mutex_init(&ctrl->ctrl_lock);
	init_waitqueue_head(&ctrl->queue);
K
Kenji Kaneshige 已提交
945
	dbg_ctrl(ctrl);
K
Kenji Kaneshige 已提交
946 947 948 949 950 951 952 953 954
	/*
	 * 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;
955

956
        /* Check if Data Link Layer Link Active Reporting is implemented */
957
        if (pciehp_readl(ctrl, PCI_EXP_LNKCAP, &link_cap)) {
958 959 960
                ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
                goto abort_ctrl;
        }
961
        if (link_cap & PCI_EXP_LNKCAP_DLLLARC) {
962 963 964 965
                ctrl_dbg(ctrl, "Link Active Reporting supported\n");
                ctrl->link_active_reporting = 1;
        }

966
	/* Clear all remaining event bits in Slot Status register */
967
	if (pciehp_writew(ctrl, PCI_EXP_SLTSTA, 0x1f))
968
		goto abort_ctrl;
969

970 971
	/* Disable sotfware notification */
	pcie_disable_notification(ctrl);
M
Mark Lord 已提交
972 973 974 975 976 977 978

	/*
	 * 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");
979 980
		if (!pciehp_wq)
			goto abort_ctrl;
M
Mark Lord 已提交
981 982
	}

983 984 985
	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);
986 987 988

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

990 991 992 993
	return ctrl;

abort_ctrl:
	kfree(ctrl);
994
abort:
995 996 997
	return NULL;
}

K
Kenji Kaneshige 已提交
998
void pciehp_release_ctrl(struct controller *ctrl)
999 1000 1001 1002 1003 1004 1005 1006 1007 1008
{
	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);
1009
}