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 430
	u16 slot_cmd;
	u16 cmd_mask;
	int rc;
L
Linus Torvalds 已提交
431

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

596
	ctrl_dbg(ctrl, "%s: intr_loc %x\n", __func__, intr_loc);
597

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

605
	if (!(intr_loc & ~PCI_EXP_SLTSTA_CC))
606 607
		return IRQ_HANDLED;

608
	/* Check MRL Sensor Changed */
609
	if (intr_loc & PCI_EXP_SLTSTA_MRLSC)
610
		pciehp_handle_switch_change(slot);
611

612
	/* Check Attention Button Pressed */
613
	if (intr_loc & PCI_EXP_SLTSTA_ABP)
614
		pciehp_handle_attention_button(slot);
615

616
	/* Check Presence Detect Changed */
617
	if (intr_loc & PCI_EXP_SLTSTA_PDC)
618
		pciehp_handle_presence_change(slot);
619

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

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

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

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

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

L
Linus Torvalds 已提交
656 657 658
	return retval;
}

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

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

673
	switch ((lnk_cap & PCI_EXP_LNKSTA_NLW) >> 4){
L
Linus Torvalds 已提交
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 701 702 703
	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;
704
	ctrl_dbg(ctrl, "Max link width = %d\n", lnk_wdth);
K
Kenji Kaneshige 已提交
705

L
Linus Torvalds 已提交
706 707 708
	return retval;
}

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

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

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

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

L
Linus Torvalds 已提交
738 739 740
	return retval;
}

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

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

756
	switch ((lnk_status & PCI_EXP_LNKSTA_NLW) >> 4){
L
Linus Torvalds 已提交
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 784 785 786
	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;
787
	ctrl_dbg(ctrl, "Current link width = %d\n", lnk_wdth);
K
Kenji Kaneshige 已提交
788

L
Linus Torvalds 已提交
789 790 791
	return retval;
}

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

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

806 807 808
	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);
809 810

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

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

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

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

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);
860
	ctrl->slot = slot;
L
Linus Torvalds 已提交
861 862
	return 0;
}
863

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

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

K
Kenji Kaneshige 已提交
879 880
	if (!pciehp_debug)
		return;
881

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

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

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

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

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

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

973 974
	/* Disable sotfware notification */
	pcie_disable_notification(ctrl);
M
Mark Lord 已提交
975 976 977 978 979 980 981

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

986 987 988
	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);
989 990 991

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

993 994 995 996
	return ctrl;

abort_ctrl:
	kfree(ctrl);
997
abort:
998 999 1000
	return NULL;
}

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