shpchp_hpc.c 28.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * Standard 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 33
 *
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/types.h>
#include <linux/pci.h>
A
Andrew Morton 已提交
34 35
#include <linux/interrupt.h>

L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
#include "shpchp.h"

/* Slot Available Register I field definition */
#define SLOT_33MHZ		0x0000001f
#define SLOT_66MHZ_PCIX		0x00001f00
#define SLOT_100MHZ_PCIX	0x001f0000
#define SLOT_133MHZ_PCIX	0x1f000000

/* Slot Available Register II field definition */
#define SLOT_66MHZ		0x0000001f
#define SLOT_66MHZ_PCIX_266	0x00000f00
#define SLOT_100MHZ_PCIX_266	0x0000f000
#define SLOT_133MHZ_PCIX_266	0x000f0000
#define SLOT_66MHZ_PCIX_533	0x00f00000
#define SLOT_100MHZ_PCIX_533	0x0f000000
#define SLOT_133MHZ_PCIX_533	0xf0000000

/* Slot Configuration */
#define SLOT_NUM		0x0000001F
#define	FIRST_DEV_NUM		0x00001F00
#define PSN			0x07FF0000
#define	UPDOWN			0x20000000
#define	MRLSENSOR		0x40000000
#define ATTN_BUTTON		0x80000000

61 62 63 64 65 66
/*
 * Interrupt Locator Register definitions
 */
#define CMD_INTR_PENDING	(1 << 0)
#define SLOT_INTR_PENDING(i)	(1 << (i + 1))

67 68 69 70 71 72 73 74 75 76 77
/*
 * Controller SERR-INT Register
 */
#define GLOBAL_INTR_MASK	(1 << 0)
#define GLOBAL_SERR_MASK	(1 << 1)
#define COMMAND_INTR_MASK	(1 << 2)
#define ARBITER_SERR_MASK	(1 << 3)
#define COMMAND_DETECTED	(1 << 16)
#define ARBITER_DETECTED	(1 << 17)
#define SERR_INTR_RSVDZ_MASK	0xfffc0000

78 79 80 81 82
/*
 * Logical Slot Register definitions
 */
#define SLOT_REG(i)		(SLOT1 + (4 * i))

83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
#define SLOT_STATE_SHIFT	(0)
#define SLOT_STATE_MASK		(3 << 0)
#define SLOT_STATE_PWRONLY	(1)
#define SLOT_STATE_ENABLED	(2)
#define SLOT_STATE_DISABLED	(3)
#define PWR_LED_STATE_SHIFT	(2)
#define PWR_LED_STATE_MASK	(3 << 2)
#define ATN_LED_STATE_SHIFT	(4)
#define ATN_LED_STATE_MASK	(3 << 4)
#define ATN_LED_STATE_ON	(1)
#define ATN_LED_STATE_BLINK	(2)
#define ATN_LED_STATE_OFF	(3)
#define POWER_FAULT		(1 << 6)
#define ATN_BUTTON		(1 << 7)
#define MRL_SENSOR		(1 << 8)
#define MHZ66_CAP		(1 << 9)
#define PRSNT_SHIFT		(10)
#define PRSNT_MASK		(3 << 10)
#define PCIX_CAP_SHIFT		(12)
#define PCIX_CAP_MASK_PI1	(3 << 12)
#define PCIX_CAP_MASK_PI2	(7 << 12)
#define PRSNT_CHANGE_DETECTED	(1 << 16)
#define ISO_PFAULT_DETECTED	(1 << 17)
#define BUTTON_PRESS_DETECTED	(1 << 18)
#define MRL_CHANGE_DETECTED	(1 << 19)
#define CON_PFAULT_DETECTED	(1 << 20)
#define PRSNT_CHANGE_INTR_MASK	(1 << 24)
#define ISO_PFAULT_INTR_MASK	(1 << 25)
#define BUTTON_PRESS_INTR_MASK	(1 << 26)
#define MRL_CHANGE_INTR_MASK	(1 << 27)
#define CON_PFAULT_INTR_MASK	(1 << 28)
#define MRL_CHANGE_SERR_MASK	(1 << 29)
#define CON_PFAULT_SERR_MASK	(1 << 30)
#define SLOT_REG_RSVDZ_MASK	(1 << 15) | (7 << 21)
L
Linus Torvalds 已提交
117

118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
/*
 * SHPC Command Code definitnions
 *
 *     Slot Operation				00h - 3Fh
 *     Set Bus Segment Speed/Mode A		40h - 47h
 *     Power-Only All Slots			48h
 *     Enable All Slots				49h
 *     Set Bus Segment Speed/Mode B (PI=2)	50h - 5Fh
 *     Reserved Command Codes			60h - BFh
 *     Vendor Specific Commands			C0h - FFh
 */
#define SET_SLOT_PWR		0x01	/* Slot Operation */
#define SET_SLOT_ENABLE		0x02
#define SET_SLOT_DISABLE	0x03
#define SET_PWR_ON		0x04
#define SET_PWR_BLINK		0x08
#define SET_PWR_OFF		0x0c
#define SET_ATTN_ON		0x10
#define SET_ATTN_BLINK		0x20
#define SET_ATTN_OFF		0x30
#define SETA_PCI_33MHZ		0x40	/* Set Bus Segment Speed/Mode A */
L
Linus Torvalds 已提交
139 140 141 142
#define SETA_PCI_66MHZ		0x41
#define SETA_PCIX_66MHZ		0x42
#define SETA_PCIX_100MHZ	0x43
#define SETA_PCIX_133MHZ	0x44
143 144 145 146 147 148
#define SETA_RESERVED1		0x45
#define SETA_RESERVED2		0x46
#define SETA_RESERVED3		0x47
#define SET_PWR_ONLY_ALL	0x48	/* Power-Only All Slots */
#define SET_ENABLE_ALL		0x49	/* Enable All Slots */
#define	SETB_PCI_33MHZ		0x50	/* Set Bus Segment Speed/Mode B */
L
Linus Torvalds 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161
#define SETB_PCI_66MHZ		0x51
#define SETB_PCIX_66MHZ_PM	0x52
#define SETB_PCIX_100MHZ_PM	0x53
#define SETB_PCIX_133MHZ_PM	0x54
#define SETB_PCIX_66MHZ_EM	0x55
#define SETB_PCIX_100MHZ_EM	0x56
#define SETB_PCIX_133MHZ_EM	0x57
#define SETB_PCIX_66MHZ_266	0x58
#define SETB_PCIX_100MHZ_266	0x59
#define SETB_PCIX_133MHZ_266	0x5a
#define SETB_PCIX_66MHZ_533	0x5b
#define SETB_PCIX_100MHZ_533	0x5c
#define SETB_PCIX_133MHZ_533	0x5d
162 163
#define SETB_RESERVED1		0x5e
#define SETB_RESERVED2		0x5f
L
Linus Torvalds 已提交
164

165 166 167
/*
 * SHPC controller command error code
 */
L
Linus Torvalds 已提交
168 169 170 171
#define SWITCH_OPEN		0x1
#define INVALID_CMD		0x2
#define INVALID_SPEED_MODE	0x4

172 173 174
/*
 * For accessing SHPC Working Register Set via PCI Configuration Space
 */
L
Linus Torvalds 已提交
175 176 177 178 179 180 181
#define DWORD_SELECT		0x2
#define DWORD_DATA		0x4

/* Field Offset in Logical Slot Register - byte boundary */
#define SLOT_EVENT_LATCH	0x2
#define SLOT_SERR_INT_MASK	0x3

182 183
static atomic_t shpchp_num_controllers = ATOMIC_INIT(0);

184
static irqreturn_t shpc_isr(int irq, void *dev_id);
185
static void start_int_poll_timer(struct controller *ctrl, int sec);
186
static int hpc_check_cmd_status(struct controller *ctrl);
L
Linus Torvalds 已提交
187

188 189
static inline u8 shpc_readb(struct controller *ctrl, int reg)
{
190
	return readb(ctrl->creg + reg);
191 192 193 194
}

static inline void shpc_writeb(struct controller *ctrl, int reg, u8 val)
{
195
	writeb(val, ctrl->creg + reg);
196 197 198 199
}

static inline u16 shpc_readw(struct controller *ctrl, int reg)
{
200
	return readw(ctrl->creg + reg);
201 202 203 204
}

static inline void shpc_writew(struct controller *ctrl, int reg, u16 val)
{
205
	writew(val, ctrl->creg + reg);
206 207 208 209
}

static inline u32 shpc_readl(struct controller *ctrl, int reg)
{
210
	return readl(ctrl->creg + reg);
211 212 213 214
}

static inline void shpc_writel(struct controller *ctrl, int reg, u32 val)
{
215
	writel(val, ctrl->creg + reg);
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
}

static inline int shpc_indirect_read(struct controller *ctrl, int index,
				     u32 *value)
{
	int rc;
	u32 cap_offset = ctrl->cap_offset;
	struct pci_dev *pdev = ctrl->pci_dev;

	rc = pci_write_config_byte(pdev, cap_offset + DWORD_SELECT, index);
	if (rc)
		return rc;
	return pci_read_config_dword(pdev, cap_offset + DWORD_DATA, value);
}

231 232 233
/*
 * This is the interrupt polling timeout function.
 */
234
static void int_poll_timeout(unsigned long data)
L
Linus Torvalds 已提交
235
{
236
	struct controller *ctrl = (struct controller *)data;
L
Linus Torvalds 已提交
237

238
	/* Poll for interrupt events.  regs == NULL => polling */
239
	shpc_isr(0, ctrl);
L
Linus Torvalds 已提交
240

241
	init_timer(&ctrl->poll_timer);
L
Linus Torvalds 已提交
242
	if (!shpchp_poll_time)
243 244
		shpchp_poll_time = 2; /* default polling interval is 2 sec */

245
	start_int_poll_timer(ctrl, shpchp_poll_time);
L
Linus Torvalds 已提交
246 247
}

248 249 250
/*
 * This function starts the interrupt polling timer.
 */
251
static void start_int_poll_timer(struct controller *ctrl, int sec)
L
Linus Torvalds 已提交
252
{
253 254 255 256
	/* Clamp to sane value */
	if ((sec <= 0) || (sec > 60))
		sec = 2;

257 258 259 260
	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 已提交
261 262
}

263 264 265 266 267 268
static inline int is_ctrl_busy(struct controller *ctrl)
{
	u16 cmd_status = shpc_readw(ctrl, CMD_STATUS);
	return cmd_status & 0x1;
}

269 270 271 272 273 274 275 276
/*
 * Returns 1 if SHPC finishes executing a command within 1 sec,
 * otherwise returns 0.
 */
static inline int shpc_poll_ctrl_busy(struct controller *ctrl)
{
	int i;

277
	if (!is_ctrl_busy(ctrl))
278 279 280 281 282
		return 1;

	/* Check every 0.1 sec for a total of 1 sec */
	for (i = 0; i < 10; i++) {
		msleep(100);
283
		if (!is_ctrl_busy(ctrl))
284 285 286 287 288 289
			return 1;
	}

	return 0;
}

290 291 292
static inline int shpc_wait_cmd(struct controller *ctrl)
{
	int retval = 0;
293 294 295 296 297 298 299
	unsigned long timeout = msecs_to_jiffies(1000);
	int rc;

	if (shpchp_poll_mode)
		rc = shpc_poll_ctrl_busy(ctrl);
	else
		rc = wait_event_interruptible_timeout(ctrl->queue,
300
						!is_ctrl_busy(ctrl), timeout);
301
	if (!rc && is_ctrl_busy(ctrl)) {
302
		retval = -EIO;
303
		ctrl_err(ctrl, "Command not completed in 1000 msec\n");
304 305
	} else if (rc < 0) {
		retval = -EINTR;
306
		ctrl_info(ctrl, "Command was interrupted by a signal\n");
307 308 309 310 311
	}

	return retval;
}

L
Linus Torvalds 已提交
312 313
static int shpc_write_cmd(struct slot *slot, u8 t_slot, u8 cmd)
{
314
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
315 316 317 318
	u16 cmd_status;
	int retval = 0;
	u16 temp_word;

319 320
	mutex_lock(&slot->ctrl->cmd_lock);

321
	if (!shpc_poll_ctrl_busy(ctrl)) {
L
Linus Torvalds 已提交
322
		/* After 1 sec and and the controller is still busy */
323
		ctrl_err(ctrl, "Controller is still busy after 1 sec\n");
324 325
		retval = -EBUSY;
		goto out;
L
Linus Torvalds 已提交
326 327 328 329
	}

	++t_slot;
	temp_word =  (t_slot << 8) | (cmd & 0xFF);
330
	ctrl_dbg(ctrl, "%s: t_slot %x cmd %x\n", __func__, t_slot, cmd);
331

L
Linus Torvalds 已提交
332
	/* To make sure the Controller Busy bit is 0 before we send out the
333
	 * command.
L
Linus Torvalds 已提交
334
	 */
335
	shpc_writew(ctrl, CMD, temp_word);
L
Linus Torvalds 已提交
336

337 338 339 340
	/*
	 * Wait for command completion.
	 */
	retval = shpc_wait_cmd(slot->ctrl);
341 342 343 344 345
	if (retval)
		goto out;

	cmd_status = hpc_check_cmd_status(slot->ctrl);
	if (cmd_status) {
346 347 348
		ctrl_err(ctrl,
			 "Failed to issued command 0x%x (error code = %d)\n",
			 cmd, cmd_status);
349 350 351 352
		retval = -EIO;
	}
 out:
	mutex_unlock(&slot->ctrl->cmd_lock);
L
Linus Torvalds 已提交
353 354 355 356 357 358
	return retval;
}

static int hpc_check_cmd_status(struct controller *ctrl)
{
	int retval = 0;
K
Kenji Kaneshige 已提交
359
	u16 cmd_status = shpc_readw(ctrl, CMD_STATUS) & 0x000F;
360

L
Linus Torvalds 已提交
361 362 363 364 365 366
	switch (cmd_status >> 1) {
	case 0:
		retval = 0;
		break;
	case 1:
		retval = SWITCH_OPEN;
367
		ctrl_err(ctrl, "Switch opened!\n");
L
Linus Torvalds 已提交
368 369 370
		break;
	case 2:
		retval = INVALID_CMD;
371
		ctrl_err(ctrl, "Invalid HPC command!\n");
L
Linus Torvalds 已提交
372 373 374
		break;
	case 4:
		retval = INVALID_SPEED_MODE;
375
		ctrl_err(ctrl, "Invalid bus speed/mode!\n");
L
Linus Torvalds 已提交
376 377 378 379 380 381 382 383 384 385 386
		break;
	default:
		retval = cmd_status;
	}

	return retval;
}


static int hpc_get_attention_status(struct slot *slot, u8 *status)
{
387
	struct controller *ctrl = slot->ctrl;
K
Kenji Kaneshige 已提交
388 389
	u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
	u8 state = (slot_reg & ATN_LED_STATE_MASK) >> ATN_LED_STATE_SHIFT;
L
Linus Torvalds 已提交
390

391 392
	switch (state) {
	case ATN_LED_STATE_ON:
L
Linus Torvalds 已提交
393 394
		*status = 1;	/* On */
		break;
395
	case ATN_LED_STATE_BLINK:
L
Linus Torvalds 已提交
396 397
		*status = 2;	/* Blink */
		break;
398
	case ATN_LED_STATE_OFF:
L
Linus Torvalds 已提交
399 400 401
		*status = 0;	/* Off */
		break;
	default:
402
		*status = 0xFF;	/* Reserved */
L
Linus Torvalds 已提交
403 404 405 406 407 408 409 410
		break;
	}

	return 0;
}

static int hpc_get_power_status(struct slot * slot, u8 *status)
{
411
	struct controller *ctrl = slot->ctrl;
K
Kenji Kaneshige 已提交
412 413
	u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
	u8 state = (slot_reg & SLOT_STATE_MASK) >> SLOT_STATE_SHIFT;
L
Linus Torvalds 已提交
414

415 416
	switch (state) {
	case SLOT_STATE_PWRONLY:
L
Linus Torvalds 已提交
417 418
		*status = 2;	/* Powered only */
		break;
419
	case SLOT_STATE_ENABLED:
L
Linus Torvalds 已提交
420 421
		*status = 1;	/* Enabled */
		break;
422
	case SLOT_STATE_DISABLED:
L
Linus Torvalds 已提交
423 424 425
		*status = 0;	/* Disabled */
		break;
	default:
426
		*status = 0xFF;	/* Reserved */
L
Linus Torvalds 已提交
427 428 429
		break;
	}

430
	return 0;
L
Linus Torvalds 已提交
431 432 433 434 435
}


static int hpc_get_latch_status(struct slot *slot, u8 *status)
{
436
	struct controller *ctrl = slot->ctrl;
K
Kenji Kaneshige 已提交
437
	u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
L
Linus Torvalds 已提交
438

439
	*status = !!(slot_reg & MRL_SENSOR);	/* 0 -> close; 1 -> open */
L
Linus Torvalds 已提交
440 441 442 443 444 445

	return 0;
}

static int hpc_get_adapter_status(struct slot *slot, u8 *status)
{
446
	struct controller *ctrl = slot->ctrl;
K
Kenji Kaneshige 已提交
447 448
	u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
	u8 state = (slot_reg & PRSNT_MASK) >> PRSNT_SHIFT;
L
Linus Torvalds 已提交
449

450
	*status = (state != 0x3) ? 1 : 0;
L
Linus Torvalds 已提交
451 452 453 454 455 456

	return 0;
}

static int hpc_get_prog_int(struct slot *slot, u8 *prog_int)
{
457
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
458

459
	*prog_int = shpc_readb(ctrl, PROG_INTERFACE);
L
Linus Torvalds 已提交
460 461 462 463 464 465 466

	return 0;
}

static int hpc_get_adapter_speed(struct slot *slot, enum pci_bus_speed *value)
{
	int retval = 0;
467
	struct controller *ctrl = slot->ctrl;
468
	u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
469
	u8 m66_cap  = !!(slot_reg & MHZ66_CAP);
470
	u8 pi, pcix_cap;
L
Linus Torvalds 已提交
471

472 473 474 475 476 477 478 479 480 481 482 483 484 485
	if ((retval = hpc_get_prog_int(slot, &pi)))
		return retval;

	switch (pi) {
	case 1:
		pcix_cap = (slot_reg & PCIX_CAP_MASK_PI1) >> PCIX_CAP_SHIFT;
		break;
	case 2:
		pcix_cap = (slot_reg & PCIX_CAP_MASK_PI2) >> PCIX_CAP_SHIFT;
		break;
	default:
		return -ENODEV;
	}

486 487
	ctrl_dbg(ctrl, "%s: slot_reg = %x, pcix_cap = %x, m66_cap = %x\n",
		 __func__, slot_reg, pcix_cap, m66_cap);
L
Linus Torvalds 已提交
488

489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
	switch (pcix_cap) {
	case 0x0:
		*value = m66_cap ? PCI_SPEED_66MHz : PCI_SPEED_33MHz;
		break;
	case 0x1:
		*value = PCI_SPEED_66MHz_PCIX;
		break;
	case 0x3:
		*value = PCI_SPEED_133MHz_PCIX;
		break;
	case 0x4:
		*value = PCI_SPEED_133MHz_PCIX_266;
		break;
	case 0x5:
		*value = PCI_SPEED_133MHz_PCIX_533;
		break;
	case 0x2:
	default:
		*value = PCI_SPEED_UNKNOWN;
		retval = -ENODEV;
		break;
L
Linus Torvalds 已提交
510 511
	}

512
	ctrl_dbg(ctrl, "Adapter speed = %d\n", *value);
L
Linus Torvalds 已提交
513 514 515 516 517 518
	return retval;
}

static int hpc_get_mode1_ECC_cap(struct slot *slot, u8 *mode)
{
	int retval = 0;
K
Kenji Kaneshige 已提交
519 520 521
	struct controller *ctrl = slot->ctrl;
	u16 sec_bus_status = shpc_readw(ctrl, SEC_BUS_CONFIG);
	u8 pi = shpc_readb(ctrl, PROG_INTERFACE);
L
Linus Torvalds 已提交
522 523

	if (pi == 2) {
524
		*mode = (sec_bus_status & 0x0100) >> 8;
L
Linus Torvalds 已提交
525 526 527 528
	} else {
		retval = -1;
	}

529
	ctrl_dbg(ctrl, "Mode 1 ECC cap = %d\n", *mode);
L
Linus Torvalds 已提交
530 531 532 533 534
	return retval;
}

static int hpc_query_power_fault(struct slot * slot)
{
535
	struct controller *ctrl = slot->ctrl;
K
Kenji Kaneshige 已提交
536
	u32 slot_reg = shpc_readl(ctrl, SLOT_REG(slot->hp_slot));
L
Linus Torvalds 已提交
537 538

	/* Note: Logic 0 => fault */
539
	return !(slot_reg & POWER_FAULT);
L
Linus Torvalds 已提交
540 541 542 543 544 545 546
}

static int hpc_set_attention_status(struct slot *slot, u8 value)
{
	u8 slot_cmd = 0;

	switch (value) {
547
		case 0 :
548
			slot_cmd = SET_ATTN_OFF;	/* OFF */
L
Linus Torvalds 已提交
549 550
			break;
		case 1:
551
			slot_cmd = SET_ATTN_ON;		/* ON */
L
Linus Torvalds 已提交
552 553
			break;
		case 2:
554
			slot_cmd = SET_ATTN_BLINK;	/* BLINK */
L
Linus Torvalds 已提交
555 556 557 558 559
			break;
		default:
			return -1;
	}

560
	return shpc_write_cmd(slot, slot->hp_slot, slot_cmd);
L
Linus Torvalds 已提交
561 562 563 564 565
}


static void hpc_set_green_led_on(struct slot *slot)
{
566
	shpc_write_cmd(slot, slot->hp_slot, SET_PWR_ON);
L
Linus Torvalds 已提交
567 568 569 570
}

static void hpc_set_green_led_off(struct slot *slot)
{
571
	shpc_write_cmd(slot, slot->hp_slot, SET_PWR_OFF);
L
Linus Torvalds 已提交
572 573 574 575
}

static void hpc_set_green_led_blink(struct slot *slot)
{
576
	shpc_write_cmd(slot, slot->hp_slot, SET_PWR_BLINK);
L
Linus Torvalds 已提交
577 578 579 580
}

static void hpc_release_ctlr(struct controller *ctrl)
{
581
	int i;
582
	u32 slot_reg, serr_int;
L
Linus Torvalds 已提交
583

584
	/*
585
	 * Mask event interrupts and SERRs of all slots
586
	 */
587 588 589 590 591 592 593 594 595
	for (i = 0; i < ctrl->num_slots; i++) {
		slot_reg = shpc_readl(ctrl, SLOT_REG(i));
		slot_reg |= (PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
			     BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
			     CON_PFAULT_INTR_MASK   | MRL_CHANGE_SERR_MASK |
			     CON_PFAULT_SERR_MASK);
		slot_reg &= ~SLOT_REG_RSVDZ_MASK;
		shpc_writel(ctrl, SLOT_REG(i), slot_reg);
	}
596 597 598

	cleanup_slots(ctrl);

599
	/*
J
Joe Perches 已提交
600
	 * Mask SERR and System Interrupt generation
601 602 603 604 605 606 607
	 */
	serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
	serr_int |= (GLOBAL_INTR_MASK  | GLOBAL_SERR_MASK |
		     COMMAND_INTR_MASK | ARBITER_SERR_MASK);
	serr_int &= ~SERR_INTR_RSVDZ_MASK;
	shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);

608 609 610 611 612
	if (shpchp_poll_mode)
		del_timer(&ctrl->poll_timer);
	else {
		free_irq(ctrl->pci_dev->irq, ctrl);
		pci_disable_msi(ctrl->pci_dev);
L
Linus Torvalds 已提交
613 614
	}

615 616
	iounmap(ctrl->creg);
	release_mem_region(ctrl->mmio_base, ctrl->mmio_size);
L
Linus Torvalds 已提交
617

618 619 620 621 622 623
	/*
	 * If this is the last controller to be released, destroy the
	 * shpchpd work queue
	 */
	if (atomic_dec_and_test(&shpchp_num_controllers))
		destroy_workqueue(shpchp_wq);
L
Linus Torvalds 已提交
624 625 626 627
}

static int hpc_power_on_slot(struct slot * slot)
{
628
	int retval;
L
Linus Torvalds 已提交
629

630
	retval = shpc_write_cmd(slot, slot->hp_slot, SET_SLOT_PWR);
K
Kenji Kaneshige 已提交
631
	if (retval)
632
		ctrl_err(slot->ctrl, "%s: Write command failed!\n", __func__);
L
Linus Torvalds 已提交
633

K
Kenji Kaneshige 已提交
634
	return retval;
L
Linus Torvalds 已提交
635 636 637 638
}

static int hpc_slot_enable(struct slot * slot)
{
639
	int retval;
L
Linus Torvalds 已提交
640

641 642 643
	/* Slot - Enable, Power Indicator - Blink, Attention Indicator - Off */
	retval = shpc_write_cmd(slot, slot->hp_slot,
			SET_SLOT_ENABLE | SET_PWR_BLINK | SET_ATTN_OFF);
K
Kenji Kaneshige 已提交
644
	if (retval)
645
		ctrl_err(slot->ctrl, "%s: Write command failed!\n", __func__);
L
Linus Torvalds 已提交
646

K
Kenji Kaneshige 已提交
647
	return retval;
L
Linus Torvalds 已提交
648 649 650 651
}

static int hpc_slot_disable(struct slot * slot)
{
652
	int retval;
L
Linus Torvalds 已提交
653

654 655 656
	/* Slot - Disable, Power Indicator - Off, Attention Indicator - On */
	retval = shpc_write_cmd(slot, slot->hp_slot,
			SET_SLOT_DISABLE | SET_PWR_OFF | SET_ATTN_ON);
K
Kenji Kaneshige 已提交
657
	if (retval)
658
		ctrl_err(slot->ctrl, "%s: Write command failed!\n", __func__);
L
Linus Torvalds 已提交
659

K
Kenji Kaneshige 已提交
660
	return retval;
L
Linus Torvalds 已提交
661 662 663 664
}

static int hpc_set_bus_speed_mode(struct slot * slot, enum pci_bus_speed value)
{
665
	int retval;
666
	struct controller *ctrl = slot->ctrl;
667
	u8 pi, cmd;
L
Linus Torvalds 已提交
668

669
	pi = shpc_readb(ctrl, PROG_INTERFACE);
670 671
	if ((pi == 1) && (value > PCI_SPEED_133MHz_PCIX))
		return -EINVAL;
L
Linus Torvalds 已提交
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 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
	switch (value) {
	case PCI_SPEED_33MHz:
		cmd = SETA_PCI_33MHZ;
		break;
	case PCI_SPEED_66MHz:
		cmd = SETA_PCI_66MHZ;
		break;
	case PCI_SPEED_66MHz_PCIX:
		cmd = SETA_PCIX_66MHZ;
		break;
	case PCI_SPEED_100MHz_PCIX:
		cmd = SETA_PCIX_100MHZ;
		break;
	case PCI_SPEED_133MHz_PCIX:
		cmd = SETA_PCIX_133MHZ;
		break;
	case PCI_SPEED_66MHz_PCIX_ECC:
		cmd = SETB_PCIX_66MHZ_EM;
		break;
	case PCI_SPEED_100MHz_PCIX_ECC:
		cmd = SETB_PCIX_100MHZ_EM;
		break;
	case PCI_SPEED_133MHz_PCIX_ECC:
		cmd = SETB_PCIX_133MHZ_EM;
		break;
	case PCI_SPEED_66MHz_PCIX_266:
		cmd = SETB_PCIX_66MHZ_266;
		break;
	case PCI_SPEED_100MHz_PCIX_266:
		cmd = SETB_PCIX_100MHZ_266;
		break;
	case PCI_SPEED_133MHz_PCIX_266:
		cmd = SETB_PCIX_133MHZ_266;
		break;
	case PCI_SPEED_66MHz_PCIX_533:
		cmd = SETB_PCIX_66MHZ_533;
		break;
	case PCI_SPEED_100MHz_PCIX_533:
		cmd = SETB_PCIX_100MHZ_533;
		break;
	case PCI_SPEED_133MHz_PCIX_533:
		cmd = SETB_PCIX_133MHZ_533;
		break;
	default:
		return -EINVAL;
L
Linus Torvalds 已提交
718
	}
719 720 721

	retval = shpc_write_cmd(slot, 0, cmd);
	if (retval)
722
		ctrl_err(ctrl, "%s: Write command failed!\n", __func__);
L
Linus Torvalds 已提交
723 724 725 726

	return retval;
}

727
static irqreturn_t shpc_isr(int irq, void *dev_id)
L
Linus Torvalds 已提交
728
{
729 730
	struct controller *ctrl = (struct controller *)dev_id;
	u32 serr_int, slot_reg, intr_loc, intr_loc2;
L
Linus Torvalds 已提交
731 732 733
	int hp_slot;

	/* Check to see if it was our interrupt */
734
	intr_loc = shpc_readl(ctrl, INTR_LOC);
L
Linus Torvalds 已提交
735 736
	if (!intr_loc)
		return IRQ_NONE;
737

738
	ctrl_dbg(ctrl, "%s: intr_loc = %x\n", __func__, intr_loc);
L
Linus Torvalds 已提交
739 740

	if(!shpchp_poll_mode) {
741 742 743 744 745 746 747 748
		/*
		 * Mask Global Interrupt Mask - see implementation
		 * note on p. 139 of SHPC spec rev 1.0
		 */
		serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
		serr_int |= GLOBAL_INTR_MASK;
		serr_int &= ~SERR_INTR_RSVDZ_MASK;
		shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
L
Linus Torvalds 已提交
749

750
		intr_loc2 = shpc_readl(ctrl, INTR_LOC);
751
		ctrl_dbg(ctrl, "%s: intr_loc2 = %x\n", __func__, intr_loc2);
L
Linus Torvalds 已提交
752 753
	}

754
	if (intr_loc & CMD_INTR_PENDING) {
755 756
		/*
		 * Command Complete Interrupt Pending
757
		 * RO only - clear by writing 1 to the Command Completion
L
Linus Torvalds 已提交
758 759
		 * Detect bit in Controller SERR-INT register
		 */
760 761 762 763
		serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
		serr_int &= ~SERR_INTR_RSVDZ_MASK;
		shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);

L
Linus Torvalds 已提交
764 765 766
		wake_up_interruptible(&ctrl->queue);
	}

767
	if (!(intr_loc & ~CMD_INTR_PENDING))
768
		goto out;
L
Linus Torvalds 已提交
769

770
	for (hp_slot = 0; hp_slot < ctrl->num_slots; hp_slot++) {
771 772 773 774 775
		/* To find out which slot has interrupt pending */
		if (!(intr_loc & SLOT_INTR_PENDING(hp_slot)))
			continue;

		slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
776 777
		ctrl_dbg(ctrl, "Slot %x with intr, slot register = %x\n",
			 hp_slot, slot_reg);
778 779

		if (slot_reg & MRL_CHANGE_DETECTED)
780
			shpchp_handle_switch_change(hp_slot, ctrl);
781 782

		if (slot_reg & BUTTON_PRESS_DETECTED)
783
			shpchp_handle_attention_button(hp_slot, ctrl);
784 785

		if (slot_reg & PRSNT_CHANGE_DETECTED)
786
			shpchp_handle_presence_change(hp_slot, ctrl);
787 788

		if (slot_reg & (ISO_PFAULT_DETECTED | CON_PFAULT_DETECTED))
789
			shpchp_handle_power_fault(hp_slot, ctrl);
790 791 792 793

		/* Clear all slot events */
		slot_reg &= ~SLOT_REG_RSVDZ_MASK;
		shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
L
Linus Torvalds 已提交
794
	}
795
 out:
L
Linus Torvalds 已提交
796 797
	if (!shpchp_poll_mode) {
		/* Unmask Global Interrupt Mask */
798 799 800
		serr_int = shpc_readl(ctrl, SERR_INTR_ENABLE);
		serr_int &= ~(GLOBAL_INTR_MASK | SERR_INTR_RSVDZ_MASK);
		shpc_writel(ctrl, SERR_INTR_ENABLE, serr_int);
L
Linus Torvalds 已提交
801
	}
802

L
Linus Torvalds 已提交
803 804 805 806 807
	return IRQ_HANDLED;
}

static int hpc_get_max_bus_speed (struct slot *slot, enum pci_bus_speed *value)
{
808
	int retval = 0;
809
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
810
	enum pci_bus_speed bus_speed = PCI_SPEED_UNKNOWN;
811 812 813
	u8 pi = shpc_readb(ctrl, PROG_INTERFACE);
	u32 slot_avail1 = shpc_readl(ctrl, SLOT_AVAIL1);
	u32 slot_avail2 = shpc_readl(ctrl, SLOT_AVAIL2);
L
Linus Torvalds 已提交
814 815

	if (pi == 2) {
816
		if (slot_avail2 & SLOT_133MHZ_PCIX_533)
817
			bus_speed = PCI_SPEED_133MHz_PCIX_533;
818
		else if (slot_avail2 & SLOT_100MHZ_PCIX_533)
819
			bus_speed = PCI_SPEED_100MHz_PCIX_533;
820
		else if (slot_avail2 & SLOT_66MHZ_PCIX_533)
821
			bus_speed = PCI_SPEED_66MHz_PCIX_533;
822
		else if (slot_avail2 & SLOT_133MHZ_PCIX_266)
823
			bus_speed = PCI_SPEED_133MHz_PCIX_266;
824
		else if (slot_avail2 & SLOT_100MHZ_PCIX_266)
825
			bus_speed = PCI_SPEED_100MHz_PCIX_266;
826
		else if (slot_avail2 & SLOT_66MHZ_PCIX_266)
827 828 829 830
			bus_speed = PCI_SPEED_66MHz_PCIX_266;
	}

	if (bus_speed == PCI_SPEED_UNKNOWN) {
831
		if (slot_avail1 & SLOT_133MHZ_PCIX)
832
			bus_speed = PCI_SPEED_133MHz_PCIX;
833
		else if (slot_avail1 & SLOT_100MHZ_PCIX)
834
			bus_speed = PCI_SPEED_100MHz_PCIX;
835
		else if (slot_avail1 & SLOT_66MHZ_PCIX)
836
			bus_speed = PCI_SPEED_66MHz_PCIX;
837
		else if (slot_avail2 & SLOT_66MHZ)
838
			bus_speed = PCI_SPEED_66MHz;
839
		else if (slot_avail1 & SLOT_33MHZ)
840 841 842
			bus_speed = PCI_SPEED_33MHz;
		else
			retval = -ENODEV;
L
Linus Torvalds 已提交
843 844 845
	}

	*value = bus_speed;
846
	ctrl_dbg(ctrl, "Max bus speed = %d\n", bus_speed);
K
Kenji Kaneshige 已提交
847

L
Linus Torvalds 已提交
848 849 850 851 852
	return retval;
}

static int hpc_get_cur_bus_speed (struct slot *slot, enum pci_bus_speed *value)
{
853
	int retval = 0;
854
	struct controller *ctrl = slot->ctrl;
L
Linus Torvalds 已提交
855
	enum pci_bus_speed bus_speed = PCI_SPEED_UNKNOWN;
856 857
	u16 sec_bus_reg = shpc_readw(ctrl, SEC_BUS_CONFIG);
	u8 pi = shpc_readb(ctrl, PROG_INTERFACE);
858
	u8 speed_mode = (pi == 2) ? (sec_bus_reg & 0xF) : (sec_bus_reg & 0x7);
L
Linus Torvalds 已提交
859

860 861 862
	if ((pi == 1) && (speed_mode > 4)) {
		*value = PCI_SPEED_UNKNOWN;
		return -ENODEV;
L
Linus Torvalds 已提交
863 864
	}

865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911
	switch (speed_mode) {
	case 0x0:
		*value = PCI_SPEED_33MHz;
		break;
	case 0x1:
		*value = PCI_SPEED_66MHz;
		break;
	case 0x2:
		*value = PCI_SPEED_66MHz_PCIX;
		break;
	case 0x3:
		*value = PCI_SPEED_100MHz_PCIX;
		break;
	case 0x4:
		*value = PCI_SPEED_133MHz_PCIX;
		break;
	case 0x5:
		*value = PCI_SPEED_66MHz_PCIX_ECC;
		break;
	case 0x6:
		*value = PCI_SPEED_100MHz_PCIX_ECC;
		break;
	case 0x7:
		*value = PCI_SPEED_133MHz_PCIX_ECC;
		break;
	case 0x8:
		*value = PCI_SPEED_66MHz_PCIX_266;
		break;
	case 0x9:
		*value = PCI_SPEED_100MHz_PCIX_266;
		break;
	case 0xa:
		*value = PCI_SPEED_133MHz_PCIX_266;
		break;
	case 0xb:
		*value = PCI_SPEED_66MHz_PCIX_533;
		break;
	case 0xc:
		*value = PCI_SPEED_100MHz_PCIX_533;
		break;
	case 0xd:
		*value = PCI_SPEED_133MHz_PCIX_533;
		break;
	default:
		*value = PCI_SPEED_UNKNOWN;
		retval = -ENODEV;
		break;
L
Linus Torvalds 已提交
912 913
	}

914
	ctrl_dbg(ctrl, "Current bus speed = %d\n", bus_speed);
L
Linus Torvalds 已提交
915 916 917 918 919 920 921
	return retval;
}

static struct hpc_ops shpchp_hpc_ops = {
	.power_on_slot			= hpc_power_on_slot,
	.slot_enable			= hpc_slot_enable,
	.slot_disable			= hpc_slot_disable,
922
	.set_bus_speed_mode		= hpc_set_bus_speed_mode,
L
Linus Torvalds 已提交
923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938
	.set_attention_status	= hpc_set_attention_status,
	.get_power_status		= hpc_get_power_status,
	.get_attention_status	= hpc_get_attention_status,
	.get_latch_status		= hpc_get_latch_status,
	.get_adapter_status		= hpc_get_adapter_status,

	.get_max_bus_speed		= hpc_get_max_bus_speed,
	.get_cur_bus_speed		= hpc_get_cur_bus_speed,
	.get_adapter_speed		= hpc_get_adapter_speed,
	.get_mode1_ECC_cap		= hpc_get_mode1_ECC_cap,
	.get_prog_int			= hpc_get_prog_int,

	.query_power_fault		= hpc_query_power_fault,
	.green_led_on			= hpc_set_green_led_on,
	.green_led_off			= hpc_set_green_led_off,
	.green_led_blink		= hpc_set_green_led_blink,
939

L
Linus Torvalds 已提交
940 941 942
	.release_ctlr			= hpc_release_ctlr,
};

943
int shpc_init(struct controller *ctrl, struct pci_dev *pdev)
L
Linus Torvalds 已提交
944
{
945
	int rc = -1, num_slots = 0;
L
Linus Torvalds 已提交
946
	u8 hp_slot;
947
	u32 shpc_base_offset;
948
	u32 tempdword, slot_reg, slot_config;
L
Linus Torvalds 已提交
949 950
	u8 i;

951
	ctrl->pci_dev = pdev;  /* pci_dev of the P2P bridge */
952
	ctrl_dbg(ctrl, "Hotplug Controller:\n");
953

954 955
	if ((pdev->vendor == PCI_VENDOR_ID_AMD) || (pdev->device ==
				PCI_DEVICE_ID_AMD_GOLAM_7450)) {
956 957 958
		/* amd shpc driver doesn't use Base Offset; assume 0 */
		ctrl->mmio_base = pci_resource_start(pdev, 0);
		ctrl->mmio_size = pci_resource_len(pdev, 0);
L
Linus Torvalds 已提交
959
	} else {
960 961
		ctrl->cap_offset = pci_find_capability(pdev, PCI_CAP_ID_SHPC);
		if (!ctrl->cap_offset) {
962
			ctrl_err(ctrl, "Cannot find PCI capability\n");
963
			goto abort;
L
Linus Torvalds 已提交
964
		}
965
		ctrl_dbg(ctrl, " cap_offset = %x\n", ctrl->cap_offset);
966

967
		rc = shpc_indirect_read(ctrl, 0, &shpc_base_offset);
L
Linus Torvalds 已提交
968
		if (rc) {
969
			ctrl_err(ctrl, "Cannot read base_offset\n");
970
			goto abort;
L
Linus Torvalds 已提交
971
		}
972

973
		rc = shpc_indirect_read(ctrl, 3, &tempdword);
L
Linus Torvalds 已提交
974
		if (rc) {
975
			ctrl_err(ctrl, "Cannot read slot config\n");
976
			goto abort;
L
Linus Torvalds 已提交
977
		}
978
		num_slots = tempdword & SLOT_NUM;
979
		ctrl_dbg(ctrl, " num_slots (indirect) %x\n", num_slots);
L
Linus Torvalds 已提交
980

981
		for (i = 0; i < 9 + num_slots; i++) {
982
			rc = shpc_indirect_read(ctrl, i, &tempdword);
L
Linus Torvalds 已提交
983
			if (rc) {
984 985
				ctrl_err(ctrl,
					 "Cannot read creg (index = %d)\n", i);
986
				goto abort;
L
Linus Torvalds 已提交
987
			}
988
			ctrl_dbg(ctrl, " offset %d: value %x\n", i, tempdword);
L
Linus Torvalds 已提交
989
		}
990 991 992 993

		ctrl->mmio_base =
			pci_resource_start(pdev, 0) + shpc_base_offset;
		ctrl->mmio_size = 0x24 + 0x4 * num_slots;
L
Linus Torvalds 已提交
994 995
	}

996 997 998
	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);
999

1000 1001
	rc = pci_enable_device(pdev);
	if (rc) {
1002
		ctrl_err(ctrl, "pci_enable_device failed\n");
1003
		goto abort;
1004
	}
L
Linus Torvalds 已提交
1005

1006
	if (!request_mem_region(ctrl->mmio_base, ctrl->mmio_size, MY_NAME)) {
1007
		ctrl_err(ctrl, "Cannot reserve MMIO region\n");
1008
		rc = -1;
1009
		goto abort;
L
Linus Torvalds 已提交
1010 1011
	}

1012 1013
	ctrl->creg = ioremap(ctrl->mmio_base, ctrl->mmio_size);
	if (!ctrl->creg) {
1014 1015
		ctrl_err(ctrl, "Cannot remap MMIO region %lx @ %lx\n",
			 ctrl->mmio_size, ctrl->mmio_base);
1016
		release_mem_region(ctrl->mmio_base, ctrl->mmio_size);
1017
		rc = -1;
1018
		goto abort;
L
Linus Torvalds 已提交
1019
	}
1020
	ctrl_dbg(ctrl, "ctrl->creg %p\n", ctrl->creg);
L
Linus Torvalds 已提交
1021

1022
	mutex_init(&ctrl->crit_sect);
1023 1024
	mutex_init(&ctrl->cmd_lock);

L
Linus Torvalds 已提交
1025 1026 1027
	/* Setup wait queue */
	init_waitqueue_head(&ctrl->queue);

1028 1029
	ctrl->hpc_ops = &shpchp_hpc_ops;

L
Linus Torvalds 已提交
1030
	/* Return PCI Controller Info */
1031
	slot_config = shpc_readl(ctrl, SLOT_CONFIG);
1032 1033 1034 1035
	ctrl->slot_device_offset = (slot_config & FIRST_DEV_NUM) >> 8;
	ctrl->num_slots = slot_config & SLOT_NUM;
	ctrl->first_slot = (slot_config & PSN) >> 16;
	ctrl->slot_num_inc = ((slot_config & UPDOWN) >> 29) ? 1 : -1;
L
Linus Torvalds 已提交
1036 1037

	/* Mask Global Interrupt Mask & Command Complete Interrupt Mask */
1038
	tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
1039
	ctrl_dbg(ctrl, "SERR_INTR_ENABLE = %x\n", tempdword);
1040 1041 1042
	tempdword |= (GLOBAL_INTR_MASK  | GLOBAL_SERR_MASK |
		      COMMAND_INTR_MASK | ARBITER_SERR_MASK);
	tempdword &= ~SERR_INTR_RSVDZ_MASK;
1043 1044
	shpc_writel(ctrl, SERR_INTR_ENABLE, tempdword);
	tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
1045
	ctrl_dbg(ctrl, "SERR_INTR_ENABLE = %x\n", tempdword);
L
Linus Torvalds 已提交
1046 1047 1048 1049

	/* Mask the MRL sensor SERR Mask of individual slot in
	 * Slot SERR-INT Mask & clear all the existing event if any
	 */
1050
	for (hp_slot = 0; hp_slot < ctrl->num_slots; hp_slot++) {
1051
		slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
1052 1053
		ctrl_dbg(ctrl, "Default Logical Slot Register %d value %x\n",
			 hp_slot, slot_reg);
1054 1055 1056 1057 1058 1059
		slot_reg |= (PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
			     BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
			     CON_PFAULT_INTR_MASK   | MRL_CHANGE_SERR_MASK |
			     CON_PFAULT_SERR_MASK);
		slot_reg &= ~SLOT_REG_RSVDZ_MASK;
		shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
L
Linus Torvalds 已提交
1060
	}
1061

1062 1063 1064 1065
	if (shpchp_poll_mode) {
		/* Install interrupt polling timer. Start with 10 sec delay */
		init_timer(&ctrl->poll_timer);
		start_int_poll_timer(ctrl, 10);
L
Linus Torvalds 已提交
1066 1067 1068 1069
	} else {
		/* Installs the interrupt handler */
		rc = pci_enable_msi(pdev);
		if (rc) {
1070 1071 1072 1073
			ctrl_info(ctrl,
				  "Can't get msi for the hotplug controller\n");
			ctrl_info(ctrl,
				  "Use INTx for the hotplug controller\n");
1074
		}
1075

1076 1077
		rc = request_irq(ctrl->pci_dev->irq, shpc_isr, IRQF_SHARED,
				 MY_NAME, (void *)ctrl);
1078 1079
		ctrl_dbg(ctrl, "request_irq %d for hpc%d (returns %d)\n",
			 ctrl->pci_dev->irq,
1080
		    atomic_read(&shpchp_num_controllers), rc);
L
Linus Torvalds 已提交
1081
		if (rc) {
1082 1083
			ctrl_err(ctrl, "Can't get irq %d for the hotplug "
				 "controller\n", ctrl->pci_dev->irq);
1084
			goto abort_iounmap;
L
Linus Torvalds 已提交
1085 1086
		}
	}
1087
	ctrl_dbg(ctrl, "HPC at %s irq=%x\n", pci_name(pdev), pdev->irq);
L
Linus Torvalds 已提交
1088

1089 1090 1091 1092 1093 1094
	/*
	 * If this is the first controller to be initialized,
	 * initialize the shpchpd work queue
	 */
	if (atomic_add_return(1, &shpchp_num_controllers) == 1) {
		shpchp_wq = create_singlethread_workqueue("shpchpd");
1095 1096
		if (!shpchp_wq) {
			rc = -ENOMEM;
1097
			goto abort_iounmap;
1098
		}
1099 1100
	}

1101 1102 1103
	/*
	 * Unmask all event interrupts of all slots
	 */
1104
	for (hp_slot = 0; hp_slot < ctrl->num_slots; hp_slot++) {
1105
		slot_reg = shpc_readl(ctrl, SLOT_REG(hp_slot));
1106 1107
		ctrl_dbg(ctrl, "Default Logical Slot Register %d value %x\n",
			 hp_slot, slot_reg);
1108 1109 1110 1111
		slot_reg &= ~(PRSNT_CHANGE_INTR_MASK | ISO_PFAULT_INTR_MASK |
			      BUTTON_PRESS_INTR_MASK | MRL_CHANGE_INTR_MASK |
			      CON_PFAULT_INTR_MASK | SLOT_REG_RSVDZ_MASK);
		shpc_writel(ctrl, SLOT_REG(hp_slot), slot_reg);
L
Linus Torvalds 已提交
1112 1113 1114
	}
	if (!shpchp_poll_mode) {
		/* Unmask all general input interrupts and SERR */
1115
		tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
1116 1117
		tempdword &= ~(GLOBAL_INTR_MASK | COMMAND_INTR_MASK |
			       SERR_INTR_RSVDZ_MASK);
1118 1119
		shpc_writel(ctrl, SERR_INTR_ENABLE, tempdword);
		tempdword = shpc_readl(ctrl, SERR_INTR_ENABLE);
1120
		ctrl_dbg(ctrl, "SERR_INTR_ENABLE = %x\n", tempdword);
L
Linus Torvalds 已提交
1121 1122 1123 1124 1125
	}

	return 0;

	/* We end up here for the many possible ways to fail this API.  */
1126 1127
abort_iounmap:
	iounmap(ctrl->creg);
L
Linus Torvalds 已提交
1128
abort:
1129
	return rc;
L
Linus Torvalds 已提交
1130
}