Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / drivers / pci / hotplug / pciehp_hpc.c
blob0aa943f2e21360d3bfece202687e9dd4c3ac676f
1 /*
2 * PCI Express PCI Hot Plug Driver
4 * Copyright (C) 1995,2001 Compaq Computer Corporation
5 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
6 * Copyright (C) 2001 IBM Corp.
7 * Copyright (C) 2003-2004 Intel Corporation
9 * All rights reserved.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
19 * NON INFRINGEMENT. See the GNU General Public License for more
20 * details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
30 #include <linux/kernel.h>
31 #include <linux/module.h>
32 #include <linux/types.h>
33 #include <linux/signal.h>
34 #include <linux/jiffies.h>
35 #include <linux/timer.h>
36 #include <linux/pci.h>
37 #include <linux/interrupt.h>
38 #include <linux/time.h>
40 #include "../pci.h"
41 #include "pciehp.h"
43 static atomic_t pciehp_num_controllers = ATOMIC_INIT(0);
45 struct ctrl_reg {
46 u8 cap_id;
47 u8 nxt_ptr;
48 u16 cap_reg;
49 u32 dev_cap;
50 u16 dev_ctrl;
51 u16 dev_status;
52 u32 lnk_cap;
53 u16 lnk_ctrl;
54 u16 lnk_status;
55 u32 slot_cap;
56 u16 slot_ctrl;
57 u16 slot_status;
58 u16 root_ctrl;
59 u16 rsvp;
60 u32 root_status;
61 } __attribute__ ((packed));
63 /* offsets to the controller registers based on the above structure layout */
64 enum ctrl_offsets {
65 PCIECAPID = offsetof(struct ctrl_reg, cap_id),
66 NXTCAPPTR = offsetof(struct ctrl_reg, nxt_ptr),
67 CAPREG = offsetof(struct ctrl_reg, cap_reg),
68 DEVCAP = offsetof(struct ctrl_reg, dev_cap),
69 DEVCTRL = offsetof(struct ctrl_reg, dev_ctrl),
70 DEVSTATUS = offsetof(struct ctrl_reg, dev_status),
71 LNKCAP = offsetof(struct ctrl_reg, lnk_cap),
72 LNKCTRL = offsetof(struct ctrl_reg, lnk_ctrl),
73 LNKSTATUS = offsetof(struct ctrl_reg, lnk_status),
74 SLOTCAP = offsetof(struct ctrl_reg, slot_cap),
75 SLOTCTRL = offsetof(struct ctrl_reg, slot_ctrl),
76 SLOTSTATUS = offsetof(struct ctrl_reg, slot_status),
77 ROOTCTRL = offsetof(struct ctrl_reg, root_ctrl),
78 ROOTSTATUS = offsetof(struct ctrl_reg, root_status),
81 static inline int pciehp_readw(struct controller *ctrl, int reg, u16 *value)
83 struct pci_dev *dev = ctrl->pci_dev;
84 return pci_read_config_word(dev, ctrl->cap_base + reg, value);
87 static inline int pciehp_readl(struct controller *ctrl, int reg, u32 *value)
89 struct pci_dev *dev = ctrl->pci_dev;
90 return pci_read_config_dword(dev, ctrl->cap_base + reg, value);
93 static inline int pciehp_writew(struct controller *ctrl, int reg, u16 value)
95 struct pci_dev *dev = ctrl->pci_dev;
96 return pci_write_config_word(dev, ctrl->cap_base + reg, value);
99 static inline int pciehp_writel(struct controller *ctrl, int reg, u32 value)
101 struct pci_dev *dev = ctrl->pci_dev;
102 return pci_write_config_dword(dev, ctrl->cap_base + reg, value);
105 /* Field definitions in PCI Express Capabilities Register */
106 #define CAP_VER 0x000F
107 #define DEV_PORT_TYPE 0x00F0
108 #define SLOT_IMPL 0x0100
109 #define MSG_NUM 0x3E00
111 /* Device or Port Type */
112 #define NAT_ENDPT 0x00
113 #define LEG_ENDPT 0x01
114 #define ROOT_PORT 0x04
115 #define UP_STREAM 0x05
116 #define DN_STREAM 0x06
117 #define PCIE_PCI_BRDG 0x07
118 #define PCI_PCIE_BRDG 0x10
120 /* Field definitions in Device Capabilities Register */
121 #define DATTN_BUTTN_PRSN 0x1000
122 #define DATTN_LED_PRSN 0x2000
123 #define DPWR_LED_PRSN 0x4000
125 /* Field definitions in Link Capabilities Register */
126 #define MAX_LNK_SPEED 0x000F
127 #define MAX_LNK_WIDTH 0x03F0
129 /* Link Width Encoding */
130 #define LNK_X1 0x01
131 #define LNK_X2 0x02
132 #define LNK_X4 0x04
133 #define LNK_X8 0x08
134 #define LNK_X12 0x0C
135 #define LNK_X16 0x10
136 #define LNK_X32 0x20
138 /*Field definitions of Link Status Register */
139 #define LNK_SPEED 0x000F
140 #define NEG_LINK_WD 0x03F0
141 #define LNK_TRN_ERR 0x0400
142 #define LNK_TRN 0x0800
143 #define SLOT_CLK_CONF 0x1000
145 /* Field definitions in Slot Capabilities Register */
146 #define ATTN_BUTTN_PRSN 0x00000001
147 #define PWR_CTRL_PRSN 0x00000002
148 #define MRL_SENS_PRSN 0x00000004
149 #define ATTN_LED_PRSN 0x00000008
150 #define PWR_LED_PRSN 0x00000010
151 #define HP_SUPR_RM_SUP 0x00000020
152 #define HP_CAP 0x00000040
153 #define SLOT_PWR_VALUE 0x000003F8
154 #define SLOT_PWR_LIMIT 0x00000C00
155 #define PSN 0xFFF80000 /* PSN: Physical Slot Number */
157 /* Field definitions in Slot Control Register */
158 #define ATTN_BUTTN_ENABLE 0x0001
159 #define PWR_FAULT_DETECT_ENABLE 0x0002
160 #define MRL_DETECT_ENABLE 0x0004
161 #define PRSN_DETECT_ENABLE 0x0008
162 #define CMD_CMPL_INTR_ENABLE 0x0010
163 #define HP_INTR_ENABLE 0x0020
164 #define ATTN_LED_CTRL 0x00C0
165 #define PWR_LED_CTRL 0x0300
166 #define PWR_CTRL 0x0400
167 #define EMI_CTRL 0x0800
169 /* Attention indicator and Power indicator states */
170 #define LED_ON 0x01
171 #define LED_BLINK 0x10
172 #define LED_OFF 0x11
174 /* Power Control Command */
175 #define POWER_ON 0
176 #define POWER_OFF 0x0400
178 /* EMI Status defines */
179 #define EMI_DISENGAGED 0
180 #define EMI_ENGAGED 1
182 /* Field definitions in Slot Status Register */
183 #define ATTN_BUTTN_PRESSED 0x0001
184 #define PWR_FAULT_DETECTED 0x0002
185 #define MRL_SENS_CHANGED 0x0004
186 #define PRSN_DETECT_CHANGED 0x0008
187 #define CMD_COMPLETED 0x0010
188 #define MRL_STATE 0x0020
189 #define PRSN_STATE 0x0040
190 #define EMI_STATE 0x0080
191 #define EMI_STATUS_BIT 7
193 static irqreturn_t pcie_isr(int irq, void *dev_id);
194 static void start_int_poll_timer(struct controller *ctrl, int sec);
196 /* This is the interrupt polling timeout function. */
197 static void int_poll_timeout(unsigned long data)
199 struct controller *ctrl = (struct controller *)data;
201 /* Poll for interrupt events. regs == NULL => polling */
202 pcie_isr(0, ctrl);
204 init_timer(&ctrl->poll_timer);
205 if (!pciehp_poll_time)
206 pciehp_poll_time = 2; /* default polling interval is 2 sec */
208 start_int_poll_timer(ctrl, pciehp_poll_time);
211 /* This function starts the interrupt polling timer. */
212 static void start_int_poll_timer(struct controller *ctrl, int sec)
214 /* Clamp to sane value */
215 if ((sec <= 0) || (sec > 60))
216 sec = 2;
218 ctrl->poll_timer.function = &int_poll_timeout;
219 ctrl->poll_timer.data = (unsigned long)ctrl;
220 ctrl->poll_timer.expires = jiffies + sec * HZ;
221 add_timer(&ctrl->poll_timer);
224 static inline int pcie_wait_cmd(struct controller *ctrl)
226 int retval = 0;
227 unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
228 unsigned long timeout = msecs_to_jiffies(msecs);
229 int rc;
231 rc = wait_event_interruptible_timeout(ctrl->queue,
232 !ctrl->cmd_busy, timeout);
233 if (!rc)
234 dbg("Command not completed in 1000 msec\n");
235 else if (rc < 0) {
236 retval = -EINTR;
237 info("Command was interrupted by a signal\n");
240 return retval;
244 * pcie_write_cmd - Issue controller command
245 * @slot: slot to which the command is issued
246 * @cmd: command value written to slot control register
247 * @mask: bitmask of slot control register to be modified
249 static int pcie_write_cmd(struct slot *slot, u16 cmd, u16 mask)
251 struct controller *ctrl = slot->ctrl;
252 int retval = 0;
253 u16 slot_status;
254 u16 slot_ctrl;
255 unsigned long flags;
257 mutex_lock(&ctrl->ctrl_lock);
259 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
260 if (retval) {
261 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
262 goto out;
265 if ((slot_status & CMD_COMPLETED) == CMD_COMPLETED ) {
266 /* After 1 sec and CMD_COMPLETED still not set, just
267 proceed forward to issue the next command according
268 to spec. Just print out the error message */
269 dbg("%s: CMD_COMPLETED not clear after 1 sec.\n",
270 __FUNCTION__);
273 spin_lock_irqsave(&ctrl->lock, flags);
274 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
275 if (retval) {
276 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
277 goto out_spin_unlock;
280 slot_ctrl &= ~mask;
281 slot_ctrl |= ((cmd & mask) | CMD_CMPL_INTR_ENABLE);
283 ctrl->cmd_busy = 1;
284 retval = pciehp_writew(ctrl, SLOTCTRL, slot_ctrl);
285 if (retval)
286 err("%s: Cannot write to SLOTCTRL register\n", __FUNCTION__);
288 out_spin_unlock:
289 spin_unlock_irqrestore(&ctrl->lock, flags);
292 * Wait for command completion.
294 if (!retval)
295 retval = pcie_wait_cmd(ctrl);
296 out:
297 mutex_unlock(&ctrl->ctrl_lock);
298 return retval;
301 static int hpc_check_lnk_status(struct controller *ctrl)
303 u16 lnk_status;
304 int retval = 0;
306 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
307 if (retval) {
308 err("%s: Cannot read LNKSTATUS register\n", __FUNCTION__);
309 return retval;
312 dbg("%s: lnk_status = %x\n", __FUNCTION__, lnk_status);
313 if ( (lnk_status & LNK_TRN) || (lnk_status & LNK_TRN_ERR) ||
314 !(lnk_status & NEG_LINK_WD)) {
315 err("%s : Link Training Error occurs \n", __FUNCTION__);
316 retval = -1;
317 return retval;
320 return retval;
323 static int hpc_get_attention_status(struct slot *slot, u8 *status)
325 struct controller *ctrl = slot->ctrl;
326 u16 slot_ctrl;
327 u8 atten_led_state;
328 int retval = 0;
330 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
331 if (retval) {
332 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
333 return retval;
336 dbg("%s: SLOTCTRL %x, value read %x\n",
337 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
339 atten_led_state = (slot_ctrl & ATTN_LED_CTRL) >> 6;
341 switch (atten_led_state) {
342 case 0:
343 *status = 0xFF; /* Reserved */
344 break;
345 case 1:
346 *status = 1; /* On */
347 break;
348 case 2:
349 *status = 2; /* Blink */
350 break;
351 case 3:
352 *status = 0; /* Off */
353 break;
354 default:
355 *status = 0xFF;
356 break;
359 return 0;
362 static int hpc_get_power_status(struct slot *slot, u8 *status)
364 struct controller *ctrl = slot->ctrl;
365 u16 slot_ctrl;
366 u8 pwr_state;
367 int retval = 0;
369 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
370 if (retval) {
371 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
372 return retval;
374 dbg("%s: SLOTCTRL %x value read %x\n",
375 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
377 pwr_state = (slot_ctrl & PWR_CTRL) >> 10;
379 switch (pwr_state) {
380 case 0:
381 *status = 1;
382 break;
383 case 1:
384 *status = 0;
385 break;
386 default:
387 *status = 0xFF;
388 break;
391 return retval;
394 static int hpc_get_latch_status(struct slot *slot, u8 *status)
396 struct controller *ctrl = slot->ctrl;
397 u16 slot_status;
398 int retval = 0;
400 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
401 if (retval) {
402 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
403 return retval;
406 *status = (((slot_status & MRL_STATE) >> 5) == 0) ? 0 : 1;
408 return 0;
411 static int hpc_get_adapter_status(struct slot *slot, u8 *status)
413 struct controller *ctrl = slot->ctrl;
414 u16 slot_status;
415 u8 card_state;
416 int retval = 0;
418 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
419 if (retval) {
420 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
421 return retval;
423 card_state = (u8)((slot_status & PRSN_STATE) >> 6);
424 *status = (card_state == 1) ? 1 : 0;
426 return 0;
429 static int hpc_query_power_fault(struct slot *slot)
431 struct controller *ctrl = slot->ctrl;
432 u16 slot_status;
433 u8 pwr_fault;
434 int retval = 0;
436 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
437 if (retval) {
438 err("%s: Cannot check for power fault\n", __FUNCTION__);
439 return retval;
441 pwr_fault = (u8)((slot_status & PWR_FAULT_DETECTED) >> 1);
443 return pwr_fault;
446 static int hpc_get_emi_status(struct slot *slot, u8 *status)
448 struct controller *ctrl = slot->ctrl;
449 u16 slot_status;
450 int retval = 0;
452 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
453 if (retval) {
454 err("%s : Cannot check EMI status\n", __FUNCTION__);
455 return retval;
457 *status = (slot_status & EMI_STATE) >> EMI_STATUS_BIT;
459 return retval;
462 static int hpc_toggle_emi(struct slot *slot)
464 u16 slot_cmd;
465 u16 cmd_mask;
466 int rc;
468 slot_cmd = EMI_CTRL;
469 cmd_mask = EMI_CTRL;
470 if (!pciehp_poll_mode) {
471 slot_cmd = slot_cmd | HP_INTR_ENABLE;
472 cmd_mask = cmd_mask | HP_INTR_ENABLE;
475 rc = pcie_write_cmd(slot, slot_cmd, cmd_mask);
476 slot->last_emi_toggle = get_seconds();
478 return rc;
481 static int hpc_set_attention_status(struct slot *slot, u8 value)
483 struct controller *ctrl = slot->ctrl;
484 u16 slot_cmd;
485 u16 cmd_mask;
486 int rc;
488 cmd_mask = ATTN_LED_CTRL;
489 switch (value) {
490 case 0 : /* turn off */
491 slot_cmd = 0x00C0;
492 break;
493 case 1: /* turn on */
494 slot_cmd = 0x0040;
495 break;
496 case 2: /* turn blink */
497 slot_cmd = 0x0080;
498 break;
499 default:
500 return -1;
502 if (!pciehp_poll_mode) {
503 slot_cmd = slot_cmd | HP_INTR_ENABLE;
504 cmd_mask = cmd_mask | HP_INTR_ENABLE;
507 rc = pcie_write_cmd(slot, slot_cmd, cmd_mask);
508 dbg("%s: SLOTCTRL %x write cmd %x\n",
509 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
511 return rc;
514 static void hpc_set_green_led_on(struct slot *slot)
516 struct controller *ctrl = slot->ctrl;
517 u16 slot_cmd;
518 u16 cmd_mask;
520 slot_cmd = 0x0100;
521 cmd_mask = PWR_LED_CTRL;
522 if (!pciehp_poll_mode) {
523 slot_cmd = slot_cmd | HP_INTR_ENABLE;
524 cmd_mask = cmd_mask | HP_INTR_ENABLE;
527 pcie_write_cmd(slot, slot_cmd, cmd_mask);
529 dbg("%s: SLOTCTRL %x write cmd %x\n",
530 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
533 static void hpc_set_green_led_off(struct slot *slot)
535 struct controller *ctrl = slot->ctrl;
536 u16 slot_cmd;
537 u16 cmd_mask;
539 slot_cmd = 0x0300;
540 cmd_mask = PWR_LED_CTRL;
541 if (!pciehp_poll_mode) {
542 slot_cmd = slot_cmd | HP_INTR_ENABLE;
543 cmd_mask = cmd_mask | HP_INTR_ENABLE;
546 pcie_write_cmd(slot, slot_cmd, cmd_mask);
547 dbg("%s: SLOTCTRL %x write cmd %x\n",
548 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
551 static void hpc_set_green_led_blink(struct slot *slot)
553 struct controller *ctrl = slot->ctrl;
554 u16 slot_cmd;
555 u16 cmd_mask;
557 slot_cmd = 0x0200;
558 cmd_mask = PWR_LED_CTRL;
559 if (!pciehp_poll_mode) {
560 slot_cmd = slot_cmd | HP_INTR_ENABLE;
561 cmd_mask = cmd_mask | HP_INTR_ENABLE;
564 pcie_write_cmd(slot, slot_cmd, cmd_mask);
566 dbg("%s: SLOTCTRL %x write cmd %x\n",
567 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
570 static void hpc_release_ctlr(struct controller *ctrl)
572 if (pciehp_poll_mode)
573 del_timer(&ctrl->poll_timer);
574 else
575 free_irq(ctrl->pci_dev->irq, ctrl);
578 * If this is the last controller to be released, destroy the
579 * pciehp work queue
581 if (atomic_dec_and_test(&pciehp_num_controllers))
582 destroy_workqueue(pciehp_wq);
585 static int hpc_power_on_slot(struct slot * slot)
587 struct controller *ctrl = slot->ctrl;
588 u16 slot_cmd;
589 u16 cmd_mask;
590 u16 slot_status;
591 int retval = 0;
593 dbg("%s: slot->hp_slot %x\n", __FUNCTION__, slot->hp_slot);
595 /* Clear sticky power-fault bit from previous power failures */
596 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
597 if (retval) {
598 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
599 return retval;
601 slot_status &= PWR_FAULT_DETECTED;
602 if (slot_status) {
603 retval = pciehp_writew(ctrl, SLOTSTATUS, slot_status);
604 if (retval) {
605 err("%s: Cannot write to SLOTSTATUS register\n",
606 __FUNCTION__);
607 return retval;
611 slot_cmd = POWER_ON;
612 cmd_mask = PWR_CTRL;
613 /* Enable detection that we turned off at slot power-off time */
614 if (!pciehp_poll_mode) {
615 slot_cmd = slot_cmd |
616 PWR_FAULT_DETECT_ENABLE |
617 MRL_DETECT_ENABLE |
618 PRSN_DETECT_ENABLE |
619 HP_INTR_ENABLE;
620 cmd_mask = cmd_mask |
621 PWR_FAULT_DETECT_ENABLE |
622 MRL_DETECT_ENABLE |
623 PRSN_DETECT_ENABLE |
624 HP_INTR_ENABLE;
627 retval = pcie_write_cmd(slot, slot_cmd, cmd_mask);
629 if (retval) {
630 err("%s: Write %x command failed!\n", __FUNCTION__, slot_cmd);
631 return -1;
633 dbg("%s: SLOTCTRL %x write cmd %x\n",
634 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
636 return retval;
639 static inline int pcie_mask_bad_dllp(struct controller *ctrl)
641 struct pci_dev *dev = ctrl->pci_dev;
642 int pos;
643 u32 reg;
645 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
646 if (!pos)
647 return 0;
648 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
649 if (reg & PCI_ERR_COR_BAD_DLLP)
650 return 0;
651 reg |= PCI_ERR_COR_BAD_DLLP;
652 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
653 return 1;
656 static inline void pcie_unmask_bad_dllp(struct controller *ctrl)
658 struct pci_dev *dev = ctrl->pci_dev;
659 u32 reg;
660 int pos;
662 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
663 if (!pos)
664 return;
665 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
666 if (!(reg & PCI_ERR_COR_BAD_DLLP))
667 return;
668 reg &= ~PCI_ERR_COR_BAD_DLLP;
669 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
672 static int hpc_power_off_slot(struct slot * slot)
674 struct controller *ctrl = slot->ctrl;
675 u16 slot_cmd;
676 u16 cmd_mask;
677 int retval = 0;
678 int changed;
680 dbg("%s: slot->hp_slot %x\n", __FUNCTION__, slot->hp_slot);
683 * Set Bad DLLP Mask bit in Correctable Error Mask
684 * Register. This is the workaround against Bad DLLP error
685 * that sometimes happens during turning power off the slot
686 * which conforms to PCI Express 1.0a spec.
688 changed = pcie_mask_bad_dllp(ctrl);
690 slot_cmd = POWER_OFF;
691 cmd_mask = PWR_CTRL;
693 * If we get MRL or presence detect interrupts now, the isr
694 * will notice the sticky power-fault bit too and issue power
695 * indicator change commands. This will lead to an endless loop
696 * of command completions, since the power-fault bit remains on
697 * till the slot is powered on again.
699 if (!pciehp_poll_mode) {
700 slot_cmd = (slot_cmd &
701 ~PWR_FAULT_DETECT_ENABLE &
702 ~MRL_DETECT_ENABLE &
703 ~PRSN_DETECT_ENABLE) | HP_INTR_ENABLE;
704 cmd_mask = cmd_mask |
705 PWR_FAULT_DETECT_ENABLE |
706 MRL_DETECT_ENABLE |
707 PRSN_DETECT_ENABLE |
708 HP_INTR_ENABLE;
711 retval = pcie_write_cmd(slot, slot_cmd, cmd_mask);
712 if (retval) {
713 err("%s: Write command failed!\n", __FUNCTION__);
714 <<<<<<< HEAD:drivers/pci/hotplug/pciehp_hpc.c
715 return -1;
716 =======
717 retval = -1;
718 goto out;
719 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/pci/hotplug/pciehp_hpc.c
721 dbg("%s: SLOTCTRL %x write cmd %x\n",
722 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
725 * After turning power off, we must wait for at least 1 second
726 * before taking any action that relies on power having been
727 * removed from the slot/adapter.
729 msleep(1000);
730 <<<<<<< HEAD:drivers/pci/hotplug/pciehp_hpc.c
732 =======
733 out:
734 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/pci/hotplug/pciehp_hpc.c
735 if (changed)
736 pcie_unmask_bad_dllp(ctrl);
738 return retval;
741 static irqreturn_t pcie_isr(int irq, void *dev_id)
743 struct controller *ctrl = (struct controller *)dev_id;
744 u16 slot_status, intr_detect, intr_loc;
745 u16 temp_word;
746 int hp_slot = 0; /* only 1 slot per PCI Express port */
747 int rc = 0;
748 unsigned long flags;
750 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
751 if (rc) {
752 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
753 return IRQ_NONE;
756 intr_detect = (ATTN_BUTTN_PRESSED | PWR_FAULT_DETECTED |
757 MRL_SENS_CHANGED | PRSN_DETECT_CHANGED | CMD_COMPLETED);
759 intr_loc = slot_status & intr_detect;
761 /* Check to see if it was our interrupt */
762 if ( !intr_loc )
763 return IRQ_NONE;
765 dbg("%s: intr_loc %x\n", __FUNCTION__, intr_loc);
766 /* Mask Hot-plug Interrupt Enable */
767 if (!pciehp_poll_mode) {
768 spin_lock_irqsave(&ctrl->lock, flags);
769 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
770 if (rc) {
771 err("%s: Cannot read SLOT_CTRL register\n",
772 __FUNCTION__);
773 spin_unlock_irqrestore(&ctrl->lock, flags);
774 return IRQ_NONE;
777 dbg("%s: pciehp_readw(SLOTCTRL) with value %x\n",
778 __FUNCTION__, temp_word);
779 temp_word = (temp_word & ~HP_INTR_ENABLE &
780 ~CMD_CMPL_INTR_ENABLE) | 0x00;
781 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
782 if (rc) {
783 err("%s: Cannot write to SLOTCTRL register\n",
784 __FUNCTION__);
785 spin_unlock_irqrestore(&ctrl->lock, flags);
786 return IRQ_NONE;
788 spin_unlock_irqrestore(&ctrl->lock, flags);
790 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
791 if (rc) {
792 err("%s: Cannot read SLOT_STATUS register\n",
793 __FUNCTION__);
794 return IRQ_NONE;
796 dbg("%s: pciehp_readw(SLOTSTATUS) with value %x\n",
797 __FUNCTION__, slot_status);
799 /* Clear command complete interrupt caused by this write */
800 temp_word = 0x1f;
801 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
802 if (rc) {
803 err("%s: Cannot write to SLOTSTATUS register\n",
804 __FUNCTION__);
805 return IRQ_NONE;
809 if (intr_loc & CMD_COMPLETED) {
811 * Command Complete Interrupt Pending
813 ctrl->cmd_busy = 0;
814 wake_up_interruptible(&ctrl->queue);
817 if (intr_loc & MRL_SENS_CHANGED)
818 pciehp_handle_switch_change(hp_slot, ctrl);
820 if (intr_loc & ATTN_BUTTN_PRESSED)
821 pciehp_handle_attention_button(hp_slot, ctrl);
823 if (intr_loc & PRSN_DETECT_CHANGED)
824 pciehp_handle_presence_change(hp_slot, ctrl);
826 if (intr_loc & PWR_FAULT_DETECTED)
827 pciehp_handle_power_fault(hp_slot, ctrl);
829 /* Clear all events after serving them */
830 temp_word = 0x1F;
831 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
832 if (rc) {
833 err("%s: Cannot write to SLOTSTATUS register\n", __FUNCTION__);
834 return IRQ_NONE;
836 /* Unmask Hot-plug Interrupt Enable */
837 if (!pciehp_poll_mode) {
838 spin_lock_irqsave(&ctrl->lock, flags);
839 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
840 if (rc) {
841 err("%s: Cannot read SLOTCTRL register\n",
842 __FUNCTION__);
843 spin_unlock_irqrestore(&ctrl->lock, flags);
844 return IRQ_NONE;
847 dbg("%s: Unmask Hot-plug Interrupt Enable\n", __FUNCTION__);
848 temp_word = (temp_word & ~HP_INTR_ENABLE) | HP_INTR_ENABLE;
850 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
851 if (rc) {
852 err("%s: Cannot write to SLOTCTRL register\n",
853 __FUNCTION__);
854 spin_unlock_irqrestore(&ctrl->lock, flags);
855 return IRQ_NONE;
857 spin_unlock_irqrestore(&ctrl->lock, flags);
859 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
860 if (rc) {
861 err("%s: Cannot read SLOT_STATUS register\n",
862 __FUNCTION__);
863 return IRQ_NONE;
866 /* Clear command complete interrupt caused by this write */
867 temp_word = 0x1F;
868 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
869 if (rc) {
870 err("%s: Cannot write to SLOTSTATUS failed\n",
871 __FUNCTION__);
872 return IRQ_NONE;
874 dbg("%s: pciehp_writew(SLOTSTATUS) with value %x\n",
875 __FUNCTION__, temp_word);
878 return IRQ_HANDLED;
881 static int hpc_get_max_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
883 struct controller *ctrl = slot->ctrl;
884 enum pcie_link_speed lnk_speed;
885 u32 lnk_cap;
886 int retval = 0;
888 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
889 if (retval) {
890 err("%s: Cannot read LNKCAP register\n", __FUNCTION__);
891 return retval;
894 switch (lnk_cap & 0x000F) {
895 case 1:
896 lnk_speed = PCIE_2PT5GB;
897 break;
898 default:
899 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
900 break;
903 *value = lnk_speed;
904 dbg("Max link speed = %d\n", lnk_speed);
906 return retval;
909 static int hpc_get_max_lnk_width(struct slot *slot,
910 enum pcie_link_width *value)
912 struct controller *ctrl = slot->ctrl;
913 enum pcie_link_width lnk_wdth;
914 u32 lnk_cap;
915 int retval = 0;
917 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
918 if (retval) {
919 err("%s: Cannot read LNKCAP register\n", __FUNCTION__);
920 return retval;
923 switch ((lnk_cap & 0x03F0) >> 4){
924 case 0:
925 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
926 break;
927 case 1:
928 lnk_wdth = PCIE_LNK_X1;
929 break;
930 case 2:
931 lnk_wdth = PCIE_LNK_X2;
932 break;
933 case 4:
934 lnk_wdth = PCIE_LNK_X4;
935 break;
936 case 8:
937 lnk_wdth = PCIE_LNK_X8;
938 break;
939 case 12:
940 lnk_wdth = PCIE_LNK_X12;
941 break;
942 case 16:
943 lnk_wdth = PCIE_LNK_X16;
944 break;
945 case 32:
946 lnk_wdth = PCIE_LNK_X32;
947 break;
948 default:
949 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
950 break;
953 *value = lnk_wdth;
954 dbg("Max link width = %d\n", lnk_wdth);
956 return retval;
959 static int hpc_get_cur_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
961 struct controller *ctrl = slot->ctrl;
962 enum pcie_link_speed lnk_speed = PCI_SPEED_UNKNOWN;
963 int retval = 0;
964 u16 lnk_status;
966 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
967 if (retval) {
968 err("%s: Cannot read LNKSTATUS register\n", __FUNCTION__);
969 return retval;
972 switch (lnk_status & 0x0F) {
973 case 1:
974 lnk_speed = PCIE_2PT5GB;
975 break;
976 default:
977 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
978 break;
981 *value = lnk_speed;
982 dbg("Current link speed = %d\n", lnk_speed);
984 return retval;
987 static int hpc_get_cur_lnk_width(struct slot *slot,
988 enum pcie_link_width *value)
990 struct controller *ctrl = slot->ctrl;
991 enum pcie_link_width lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
992 int retval = 0;
993 u16 lnk_status;
995 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
996 if (retval) {
997 err("%s: Cannot read LNKSTATUS register\n", __FUNCTION__);
998 return retval;
1001 switch ((lnk_status & 0x03F0) >> 4){
1002 case 0:
1003 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
1004 break;
1005 case 1:
1006 lnk_wdth = PCIE_LNK_X1;
1007 break;
1008 case 2:
1009 lnk_wdth = PCIE_LNK_X2;
1010 break;
1011 case 4:
1012 lnk_wdth = PCIE_LNK_X4;
1013 break;
1014 case 8:
1015 lnk_wdth = PCIE_LNK_X8;
1016 break;
1017 case 12:
1018 lnk_wdth = PCIE_LNK_X12;
1019 break;
1020 case 16:
1021 lnk_wdth = PCIE_LNK_X16;
1022 break;
1023 case 32:
1024 lnk_wdth = PCIE_LNK_X32;
1025 break;
1026 default:
1027 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
1028 break;
1031 *value = lnk_wdth;
1032 dbg("Current link width = %d\n", lnk_wdth);
1034 return retval;
1037 static struct hpc_ops pciehp_hpc_ops = {
1038 .power_on_slot = hpc_power_on_slot,
1039 .power_off_slot = hpc_power_off_slot,
1040 .set_attention_status = hpc_set_attention_status,
1041 .get_power_status = hpc_get_power_status,
1042 .get_attention_status = hpc_get_attention_status,
1043 .get_latch_status = hpc_get_latch_status,
1044 .get_adapter_status = hpc_get_adapter_status,
1045 .get_emi_status = hpc_get_emi_status,
1046 .toggle_emi = hpc_toggle_emi,
1048 .get_max_bus_speed = hpc_get_max_lnk_speed,
1049 .get_cur_bus_speed = hpc_get_cur_lnk_speed,
1050 .get_max_lnk_width = hpc_get_max_lnk_width,
1051 .get_cur_lnk_width = hpc_get_cur_lnk_width,
1053 .query_power_fault = hpc_query_power_fault,
1054 .green_led_on = hpc_set_green_led_on,
1055 .green_led_off = hpc_set_green_led_off,
1056 .green_led_blink = hpc_set_green_led_blink,
1058 .release_ctlr = hpc_release_ctlr,
1059 .check_lnk_status = hpc_check_lnk_status,
1062 #ifdef CONFIG_ACPI
1063 int pciehp_acpi_get_hp_hw_control_from_firmware(struct pci_dev *dev)
1065 acpi_status status;
1066 acpi_handle chandle, handle = DEVICE_ACPI_HANDLE(&(dev->dev));
1067 struct pci_dev *pdev = dev;
1068 struct pci_bus *parent;
1069 struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL };
1072 * Per PCI firmware specification, we should run the ACPI _OSC
1073 * method to get control of hotplug hardware before using it.
1074 * If an _OSC is missing, we look for an OSHP to do the same thing.
1075 * To handle different BIOS behavior, we look for _OSC and OSHP
1076 * within the scope of the hotplug controller and its parents, upto
1077 * the host bridge under which this controller exists.
1079 while (!handle) {
1081 * This hotplug controller was not listed in the ACPI name
1082 * space at all. Try to get acpi handle of parent pci bus.
1084 if (!pdev || !pdev->bus->parent)
1085 break;
1086 parent = pdev->bus->parent;
1087 dbg("Could not find %s in acpi namespace, trying parent\n",
1088 pci_name(pdev));
1089 if (!parent->self)
1090 /* Parent must be a host bridge */
1091 handle = acpi_get_pci_rootbridge_handle(
1092 pci_domain_nr(parent),
1093 parent->number);
1094 else
1095 handle = DEVICE_ACPI_HANDLE(
1096 &(parent->self->dev));
1097 pdev = parent->self;
1100 while (handle) {
1101 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
1102 dbg("Trying to get hotplug control for %s \n",
1103 (char *)string.pointer);
1104 status = pci_osc_control_set(handle,
1105 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL |
1106 OSC_PCI_EXPRESS_NATIVE_HP_CONTROL);
1107 if (status == AE_NOT_FOUND)
1108 status = acpi_run_oshp(handle);
1109 if (ACPI_SUCCESS(status)) {
1110 dbg("Gained control for hotplug HW for pci %s (%s)\n",
1111 pci_name(dev), (char *)string.pointer);
1112 kfree(string.pointer);
1113 return 0;
1115 if (acpi_root_bridge(handle))
1116 break;
1117 chandle = handle;
1118 status = acpi_get_parent(chandle, &handle);
1119 if (ACPI_FAILURE(status))
1120 break;
1123 err("Cannot get control of hotplug hardware for pci %s\n",
1124 pci_name(dev));
1126 kfree(string.pointer);
1127 return -1;
1129 #endif
1131 static int pcie_init_hardware_part1(struct controller *ctrl,
1132 struct pcie_device *dev)
1134 int rc;
1135 u16 temp_word;
1136 u32 slot_cap;
1137 u16 slot_status;
1139 rc = pciehp_readl(ctrl, SLOTCAP, &slot_cap);
1140 if (rc) {
1141 err("%s: Cannot read SLOTCAP register\n", __FUNCTION__);
1142 return -1;
1145 /* Mask Hot-plug Interrupt Enable */
1146 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
1147 if (rc) {
1148 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
1149 return -1;
1152 dbg("%s: SLOTCTRL %x value read %x\n",
1153 __FUNCTION__, ctrl->cap_base + SLOTCTRL, temp_word);
1154 temp_word = (temp_word & ~HP_INTR_ENABLE & ~CMD_CMPL_INTR_ENABLE) |
1155 0x00;
1157 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
1158 if (rc) {
1159 err("%s: Cannot write to SLOTCTRL register\n", __FUNCTION__);
1160 return -1;
1163 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
1164 if (rc) {
1165 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
1166 return -1;
1169 temp_word = 0x1F; /* Clear all events */
1170 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
1171 if (rc) {
1172 err("%s: Cannot write to SLOTSTATUS register\n", __FUNCTION__);
1173 return -1;
1175 return 0;
1178 int pcie_init_hardware_part2(struct controller *ctrl, struct pcie_device *dev)
1180 int rc;
1181 u16 temp_word;
1182 u16 intr_enable = 0;
1183 u32 slot_cap;
1184 u16 slot_status;
1186 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
1187 if (rc) {
1188 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
1189 goto abort;
1192 intr_enable = intr_enable | PRSN_DETECT_ENABLE;
1194 rc = pciehp_readl(ctrl, SLOTCAP, &slot_cap);
1195 if (rc) {
1196 err("%s: Cannot read SLOTCAP register\n", __FUNCTION__);
1197 goto abort;
1200 if (ATTN_BUTTN(slot_cap))
1201 intr_enable = intr_enable | ATTN_BUTTN_ENABLE;
1203 if (POWER_CTRL(slot_cap))
1204 intr_enable = intr_enable | PWR_FAULT_DETECT_ENABLE;
1206 if (MRL_SENS(slot_cap))
1207 intr_enable = intr_enable | MRL_DETECT_ENABLE;
1209 temp_word = (temp_word & ~intr_enable) | intr_enable;
1211 if (pciehp_poll_mode) {
1212 temp_word = (temp_word & ~HP_INTR_ENABLE) | 0x0;
1213 } else {
1214 temp_word = (temp_word & ~HP_INTR_ENABLE) | HP_INTR_ENABLE;
1218 * Unmask Hot-plug Interrupt Enable for the interrupt
1219 * notification mechanism case.
1221 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
1222 if (rc) {
1223 err("%s: Cannot write to SLOTCTRL register\n", __FUNCTION__);
1224 goto abort;
1226 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
1227 if (rc) {
1228 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
1229 goto abort_disable_intr;
1232 temp_word = 0x1F; /* Clear all events */
1233 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
1234 if (rc) {
1235 err("%s: Cannot write to SLOTSTATUS register\n", __FUNCTION__);
1236 goto abort_disable_intr;
1239 if (pciehp_force) {
1240 dbg("Bypassing BIOS check for pciehp use on %s\n",
1241 pci_name(ctrl->pci_dev));
1242 } else {
1243 rc = pciehp_get_hp_hw_control_from_firmware(ctrl->pci_dev);
1244 if (rc)
1245 goto abort_disable_intr;
1248 return 0;
1250 /* We end up here for the many possible ways to fail this API. */
1251 abort_disable_intr:
1252 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
1253 if (!rc) {
1254 temp_word &= ~(intr_enable | HP_INTR_ENABLE);
1255 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
1257 if (rc)
1258 err("%s : disabling interrupts failed\n", __FUNCTION__);
1259 abort:
1260 return -1;
1263 int pcie_init(struct controller *ctrl, struct pcie_device *dev)
1265 int rc;
1266 u16 cap_reg;
1267 u32 slot_cap;
1268 int cap_base;
1269 u16 slot_status, slot_ctrl;
1270 struct pci_dev *pdev;
1272 pdev = dev->port;
1273 ctrl->pci_dev = pdev; /* save pci_dev in context */
1275 dbg("%s: hotplug controller vendor id 0x%x device id 0x%x\n",
1276 __FUNCTION__, pdev->vendor, pdev->device);
1278 cap_base = pci_find_capability(pdev, PCI_CAP_ID_EXP);
1279 if (cap_base == 0) {
1280 dbg("%s: Can't find PCI_CAP_ID_EXP (0x10)\n", __FUNCTION__);
1281 goto abort;
1284 ctrl->cap_base = cap_base;
1286 dbg("%s: pcie_cap_base %x\n", __FUNCTION__, cap_base);
1288 rc = pciehp_readw(ctrl, CAPREG, &cap_reg);
1289 if (rc) {
1290 err("%s: Cannot read CAPREG register\n", __FUNCTION__);
1291 goto abort;
1293 dbg("%s: CAPREG offset %x cap_reg %x\n",
1294 __FUNCTION__, ctrl->cap_base + CAPREG, cap_reg);
1296 if (((cap_reg & SLOT_IMPL) == 0) ||
1297 (((cap_reg & DEV_PORT_TYPE) != 0x0040)
1298 && ((cap_reg & DEV_PORT_TYPE) != 0x0060))) {
1299 dbg("%s : This is not a root port or the port is not "
1300 "connected to a slot\n", __FUNCTION__);
1301 goto abort;
1304 rc = pciehp_readl(ctrl, SLOTCAP, &slot_cap);
1305 if (rc) {
1306 err("%s: Cannot read SLOTCAP register\n", __FUNCTION__);
1307 goto abort;
1309 dbg("%s: SLOTCAP offset %x slot_cap %x\n",
1310 __FUNCTION__, ctrl->cap_base + SLOTCAP, slot_cap);
1312 if (!(slot_cap & HP_CAP)) {
1313 dbg("%s : This slot is not hot-plug capable\n", __FUNCTION__);
1314 goto abort;
1316 /* For debugging purpose */
1317 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
1318 if (rc) {
1319 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
1320 goto abort;
1322 dbg("%s: SLOTSTATUS offset %x slot_status %x\n",
1323 __FUNCTION__, ctrl->cap_base + SLOTSTATUS, slot_status);
1325 rc = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
1326 if (rc) {
1327 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
1328 goto abort;
1330 dbg("%s: SLOTCTRL offset %x slot_ctrl %x\n",
1331 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
1333 for (rc = 0; rc < DEVICE_COUNT_RESOURCE; rc++)
1334 if (pci_resource_len(pdev, rc) > 0)
1335 dbg("pci resource[%d] start=0x%llx(len=0x%llx)\n", rc,
1336 (unsigned long long)pci_resource_start(pdev, rc),
1337 (unsigned long long)pci_resource_len(pdev, rc));
1339 info("HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n",
1340 pdev->vendor, pdev->device,
1341 pdev->subsystem_vendor, pdev->subsystem_device);
1343 mutex_init(&ctrl->crit_sect);
1344 mutex_init(&ctrl->ctrl_lock);
1345 spin_lock_init(&ctrl->lock);
1347 /* setup wait queue */
1348 init_waitqueue_head(&ctrl->queue);
1350 /* return PCI Controller Info */
1351 ctrl->slot_device_offset = 0;
1352 ctrl->num_slots = 1;
1353 ctrl->first_slot = slot_cap >> 19;
1354 ctrl->ctrlcap = slot_cap & 0x0000007f;
1356 rc = pcie_init_hardware_part1(ctrl, dev);
1357 if (rc)
1358 goto abort;
1360 if (pciehp_poll_mode) {
1361 /* Install interrupt polling timer. Start with 10 sec delay */
1362 init_timer(&ctrl->poll_timer);
1363 start_int_poll_timer(ctrl, 10);
1364 } else {
1365 /* Installs the interrupt handler */
1366 rc = request_irq(ctrl->pci_dev->irq, pcie_isr, IRQF_SHARED,
1367 MY_NAME, (void *)ctrl);
1368 dbg("%s: request_irq %d for hpc%d (returns %d)\n",
1369 __FUNCTION__, ctrl->pci_dev->irq,
1370 atomic_read(&pciehp_num_controllers), rc);
1371 if (rc) {
1372 err("Can't get irq %d for the hotplug controller\n",
1373 ctrl->pci_dev->irq);
1374 goto abort;
1377 dbg("pciehp ctrl b:d:f:irq=0x%x:%x:%x:%x\n", pdev->bus->number,
1378 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn), dev->irq);
1381 * If this is the first controller to be initialized,
1382 * initialize the pciehp work queue
1384 if (atomic_add_return(1, &pciehp_num_controllers) == 1) {
1385 pciehp_wq = create_singlethread_workqueue("pciehpd");
1386 if (!pciehp_wq) {
1387 rc = -ENOMEM;
1388 goto abort_free_irq;
1392 rc = pcie_init_hardware_part2(ctrl, dev);
1393 if (rc == 0) {
1394 ctrl->hpc_ops = &pciehp_hpc_ops;
1395 return 0;
1397 abort_free_irq:
1398 if (pciehp_poll_mode)
1399 del_timer_sync(&ctrl->poll_timer);
1400 else
1401 free_irq(ctrl->pci_dev->irq, ctrl);
1402 abort:
1403 return -1;