blob: 891f81a0400c92cb434dcdbbee95dbfa96c0e213 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PCI Express PCI Hot Plug Driver
3 *
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
8 *
9 * All rights reserved.
10 *
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.
15 *
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.
21 *
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.
25 *
Kristen Accardi8cf4c192005-08-16 15:16:10 -070026 * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *
28 */
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/types.h>
Tim Schmielaude259682006-01-08 01:02:05 -080033#include <linux/signal.h>
34#include <linux/jiffies.h>
35#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/pci.h>
Andrew Morton5d1b8c92005-11-13 16:06:39 -080037#include <linux/interrupt.h>
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -080038#include <linux/time.h>
Andrew Morton5d1b8c92005-11-13 16:06:39 -080039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "../pci.h"
41#include "pciehp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Kenji Kaneshige5d386e12007-03-06 15:02:26 -080043static atomic_t pciehp_num_controllers = ATOMIC_INIT(0);
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045struct 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));
62
63/* offsets to the controller registers based on the above structure layout */
64enum 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),
79};
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -080081static inline int pciehp_readw(struct controller *ctrl, int reg, u16 *value)
82{
83 struct pci_dev *dev = ctrl->pci_dev;
84 return pci_read_config_word(dev, ctrl->cap_base + reg, value);
85}
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -080087static inline int pciehp_readl(struct controller *ctrl, int reg, u32 *value)
88{
89 struct pci_dev *dev = ctrl->pci_dev;
90 return pci_read_config_dword(dev, ctrl->cap_base + reg, value);
91}
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -080093static inline int pciehp_writew(struct controller *ctrl, int reg, u16 value)
94{
95 struct pci_dev *dev = ctrl->pci_dev;
96 return pci_write_config_word(dev, ctrl->cap_base + reg, value);
97}
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -080099static inline int pciehp_writel(struct controller *ctrl, int reg, u32 value)
100{
101 struct pci_dev *dev = ctrl->pci_dev;
102 return pci_write_config_dword(dev, ctrl->cap_base + reg, value);
103}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
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
110
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
119
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
124
125/* Field definitions in Link Capabilities Register */
126#define MAX_LNK_SPEED 0x000F
127#define MAX_LNK_WIDTH 0x03F0
128
129/* Link Width Encoding */
130#define LNK_X1 0x01
131#define LNK_X2 0x02
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700132#define LNK_X4 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#define LNK_X8 0x08
134#define LNK_X12 0x0C
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700135#define LNK_X16 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define LNK_X32 0x20
137
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
144
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 */
156
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
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800167#define EMI_CTRL 0x0800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169/* Attention indicator and Power indicator states */
170#define LED_ON 0x01
171#define LED_BLINK 0x10
172#define LED_OFF 0x11
173
174/* Power Control Command */
175#define POWER_ON 0
176#define POWER_OFF 0x0400
177
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800178/* EMI Status defines */
179#define EMI_DISENGAGED 0
180#define EMI_ENGAGED 1
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/* 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
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800190#define EMI_STATE 0x0080
191#define EMI_STATUS_BIT 7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800193static irqreturn_t pcie_isr(int irq, void *dev_id);
194static void start_int_poll_timer(struct controller *ctrl, int sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196/* This is the interrupt polling timeout function. */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800197static void int_poll_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800199 struct controller *ctrl = (struct controller *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 /* Poll for interrupt events. regs == NULL => polling */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800202 pcie_isr(0, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800204 init_timer(&ctrl->poll_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (!pciehp_poll_time)
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700206 pciehp_poll_time = 2; /* default polling interval is 2 sec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800208 start_int_poll_timer(ctrl, pciehp_poll_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
211/* This function starts the interrupt polling timer. */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800212static void start_int_poll_timer(struct controller *ctrl, int sec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800214 /* Clamp to sane value */
215 if ((sec <= 0) || (sec > 60))
216 sec = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800218 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700224static inline int pciehp_request_irq(struct controller *ctrl)
225{
226 int retval, irq = ctrl->pci_dev->irq;
227
228 /* Install interrupt polling timer. Start with 10 sec delay */
229 if (pciehp_poll_mode) {
230 init_timer(&ctrl->poll_timer);
231 start_int_poll_timer(ctrl, 10);
232 return 0;
233 }
234
235 /* Installs the interrupt handler */
236 retval = request_irq(irq, pcie_isr, IRQF_SHARED, MY_NAME, ctrl);
237 if (retval)
238 err("Cannot get irq %d for the hotplug controller\n", irq);
239 return retval;
240}
241
242static inline void pciehp_free_irq(struct controller *ctrl)
243{
244 if (pciehp_poll_mode)
245 del_timer_sync(&ctrl->poll_timer);
246 else
247 free_irq(ctrl->pci_dev->irq, ctrl);
248}
249
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800250static inline int pcie_wait_cmd(struct controller *ctrl)
251{
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800252 int retval = 0;
253 unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
254 unsigned long timeout = msecs_to_jiffies(msecs);
255 int rc;
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800256
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800257 rc = wait_event_interruptible_timeout(ctrl->queue,
258 !ctrl->cmd_busy, timeout);
259 if (!rc)
260 dbg("Command not completed in 1000 msec\n");
261 else if (rc < 0) {
262 retval = -EINTR;
263 info("Command was interrupted by a signal\n");
264 }
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800265
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800266 return retval;
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800267}
268
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700269/**
270 * pcie_write_cmd - Issue controller command
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700271 * @ctrl: controller to which the command is issued
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700272 * @cmd: command value written to slot control register
273 * @mask: bitmask of slot control register to be modified
274 */
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700275static int pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 int retval = 0;
278 u16 slot_status;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700279 u16 slot_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800281 mutex_lock(&ctrl->ctrl_lock);
282
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800283 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800285 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800286 goto out;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800287 }
288
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700289 if ((slot_status & CMD_COMPLETED) == CMD_COMPLETED ) {
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800290 /* After 1 sec and CMD_COMPLETED still not set, just
291 proceed forward to issue the next command according
292 to spec. Just print out the error message */
293 dbg("%s: CMD_COMPLETED not clear after 1 sec.\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800294 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
296
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700297 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800299 err("%s: Cannot read SLOTCTRL register\n", __func__);
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700300 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700303 slot_ctrl &= ~mask;
Kenji Kaneshigeb7aa1f12008-04-25 14:39:14 -0700304 slot_ctrl |= (cmd & mask);
305 /* Don't enable command completed if caller is changing it. */
306 if (!(mask & CMD_CMPL_INTR_ENABLE))
307 slot_ctrl |= CMD_CMPL_INTR_ENABLE;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700308
309 ctrl->cmd_busy = 1;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700310 smp_mb();
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700311 retval = pciehp_writew(ctrl, SLOTCTRL, slot_ctrl);
312 if (retval)
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800313 err("%s: Cannot write to SLOTCTRL register\n", __func__);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700314
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800315 /*
316 * Wait for command completion.
317 */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700318 if (!retval)
319 retval = pcie_wait_cmd(ctrl);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800320 out:
321 mutex_unlock(&ctrl->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return retval;
323}
324
325static int hpc_check_lnk_status(struct controller *ctrl)
326{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 u16 lnk_status;
328 int retval = 0;
329
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800330 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800332 err("%s: Cannot read LNKSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return retval;
334 }
335
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800336 dbg("%s: lnk_status = %x\n", __func__, lnk_status);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700337 if ( (lnk_status & LNK_TRN) || (lnk_status & LNK_TRN_ERR) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 !(lnk_status & NEG_LINK_WD)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800339 err("%s : Link Training Error occurs \n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 retval = -1;
341 return retval;
342 }
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return retval;
345}
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347static int hpc_get_attention_status(struct slot *slot, u8 *status)
348{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800349 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 u16 slot_ctrl;
351 u8 atten_led_state;
352 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800354 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800356 err("%s: Cannot read SLOTCTRL register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return retval;
358 }
359
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800360 dbg("%s: SLOTCTRL %x, value read %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800361 __func__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 atten_led_state = (slot_ctrl & ATTN_LED_CTRL) >> 6;
364
365 switch (atten_led_state) {
366 case 0:
367 *status = 0xFF; /* Reserved */
368 break;
369 case 1:
370 *status = 1; /* On */
371 break;
372 case 2:
373 *status = 2; /* Blink */
374 break;
375 case 3:
376 *status = 0; /* Off */
377 break;
378 default:
379 *status = 0xFF;
380 break;
381 }
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return 0;
384}
385
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800386static int hpc_get_power_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800388 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 u16 slot_ctrl;
390 u8 pwr_state;
391 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800393 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800395 err("%s: Cannot read SLOTCTRL register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return retval;
397 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800398 dbg("%s: SLOTCTRL %x value read %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800399 __func__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 pwr_state = (slot_ctrl & PWR_CTRL) >> 10;
402
403 switch (pwr_state) {
404 case 0:
405 *status = 1;
406 break;
407 case 1:
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700408 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 break;
410 default:
411 *status = 0xFF;
412 break;
413 }
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return retval;
416}
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418static int hpc_get_latch_status(struct slot *slot, u8 *status)
419{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800420 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 u16 slot_status;
422 int retval = 0;
423
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800424 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800426 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return retval;
428 }
429
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700430 *status = (((slot_status & MRL_STATE) >> 5) == 0) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return 0;
433}
434
435static int hpc_get_adapter_status(struct slot *slot, u8 *status)
436{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800437 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 u16 slot_status;
439 u8 card_state;
440 int retval = 0;
441
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800442 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800444 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return retval;
446 }
447 card_state = (u8)((slot_status & PRSN_STATE) >> 6);
448 *status = (card_state == 1) ? 1 : 0;
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return 0;
451}
452
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800453static int hpc_query_power_fault(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800455 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 u16 slot_status;
457 u8 pwr_fault;
458 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800460 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800462 err("%s: Cannot check for power fault\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return retval;
464 }
465 pwr_fault = (u8)((slot_status & PWR_FAULT_DETECTED) >> 1);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700466
rajesh.shah@intel.com8239def2005-10-31 16:20:13 -0800467 return pwr_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468}
469
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800470static int hpc_get_emi_status(struct slot *slot, u8 *status)
471{
472 struct controller *ctrl = slot->ctrl;
473 u16 slot_status;
474 int retval = 0;
475
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800476 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
477 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800478 err("%s : Cannot check EMI status\n", __func__);
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800479 return retval;
480 }
481 *status = (slot_status & EMI_STATE) >> EMI_STATUS_BIT;
482
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800483 return retval;
484}
485
486static int hpc_toggle_emi(struct slot *slot)
487{
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700488 u16 slot_cmd;
489 u16 cmd_mask;
490 int rc;
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800491
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700492 slot_cmd = EMI_CTRL;
493 cmd_mask = EMI_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700494 rc = pcie_write_cmd(slot->ctrl, slot_cmd, cmd_mask);
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800495 slot->last_emi_toggle = get_seconds();
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700496
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800497 return rc;
498}
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500static int hpc_set_attention_status(struct slot *slot, u8 value)
501{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800502 struct controller *ctrl = slot->ctrl;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700503 u16 slot_cmd;
504 u16 cmd_mask;
505 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700507 cmd_mask = ATTN_LED_CTRL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 switch (value) {
509 case 0 : /* turn off */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700510 slot_cmd = 0x00C0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 break;
512 case 1: /* turn on */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700513 slot_cmd = 0x0040;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 break;
515 case 2: /* turn blink */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700516 slot_cmd = 0x0080;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 break;
518 default:
519 return -1;
520 }
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700521 rc = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800522 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800523 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return rc;
526}
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528static void hpc_set_green_led_on(struct slot *slot)
529{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800530 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700532 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700533
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700534 slot_cmd = 0x0100;
535 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700536 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800537 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800538 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}
540
541static void hpc_set_green_led_off(struct slot *slot)
542{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800543 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700545 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700547 slot_cmd = 0x0300;
548 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700549 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800550 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800551 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554static void hpc_set_green_led_blink(struct slot *slot)
555{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800556 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700558 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700559
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700560 slot_cmd = 0x0200;
561 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700562 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800563 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800564 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567static void hpc_release_ctlr(struct controller *ctrl)
568{
Kenji Kaneshiged84be092008-04-25 14:39:07 -0700569 /* Mask Hot-plug Interrupt Enable */
570 if (pcie_write_cmd(ctrl, 0, HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE))
571 err("%s: Cannot mask hotplut interrupt enable\n", __func__);
572
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700573 /* Free interrupt handler or interrupt polling timer */
574 pciehp_free_irq(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800576 /*
577 * If this is the last controller to be released, destroy the
578 * pciehp work queue
579 */
580 if (atomic_dec_and_test(&pciehp_num_controllers))
581 destroy_workqueue(pciehp_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
584static int hpc_power_on_slot(struct slot * slot)
585{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800586 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700588 u16 cmd_mask;
589 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 int retval = 0;
591
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800592 dbg("%s: slot->hp_slot %x\n", __func__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Rajesh Shah5a49f202005-11-23 15:44:54 -0800594 /* Clear sticky power-fault bit from previous power failures */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800595 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800597 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800598 return retval;
599 }
600 slot_status &= PWR_FAULT_DETECTED;
601 if (slot_status) {
602 retval = pciehp_writew(ctrl, SLOTSTATUS, slot_status);
603 if (retval) {
604 err("%s: Cannot write to SLOTSTATUS register\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800605 __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800606 return retval;
607 }
608 }
609
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700610 slot_cmd = POWER_ON;
611 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800612 /* Enable detection that we turned off at slot power-off time */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700613 if (!pciehp_poll_mode) {
Kenji Kaneshigecff00652008-04-25 14:39:06 -0700614 slot_cmd |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
615 PRSN_DETECT_ENABLE);
616 cmd_mask |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
617 PRSN_DETECT_ENABLE);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700620 retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800623 err("%s: Write %x command failed!\n", __func__, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return -1;
625 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800626 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800627 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return retval;
630}
631
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900632static inline int pcie_mask_bad_dllp(struct controller *ctrl)
633{
634 struct pci_dev *dev = ctrl->pci_dev;
635 int pos;
636 u32 reg;
637
638 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
639 if (!pos)
640 return 0;
641 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
642 if (reg & PCI_ERR_COR_BAD_DLLP)
643 return 0;
644 reg |= PCI_ERR_COR_BAD_DLLP;
645 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
646 return 1;
647}
648
649static inline void pcie_unmask_bad_dllp(struct controller *ctrl)
650{
651 struct pci_dev *dev = ctrl->pci_dev;
652 u32 reg;
653 int pos;
654
655 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
656 if (!pos)
657 return;
658 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
659 if (!(reg & PCI_ERR_COR_BAD_DLLP))
660 return;
661 reg &= ~PCI_ERR_COR_BAD_DLLP;
662 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
663}
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665static int hpc_power_off_slot(struct slot * slot)
666{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800667 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700669 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 int retval = 0;
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900671 int changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800673 dbg("%s: slot->hp_slot %x\n", __func__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900675 /*
676 * Set Bad DLLP Mask bit in Correctable Error Mask
677 * Register. This is the workaround against Bad DLLP error
678 * that sometimes happens during turning power off the slot
679 * which conforms to PCI Express 1.0a spec.
680 */
681 changed = pcie_mask_bad_dllp(ctrl);
682
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700683 slot_cmd = POWER_OFF;
684 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800685 /*
686 * If we get MRL or presence detect interrupts now, the isr
687 * will notice the sticky power-fault bit too and issue power
688 * indicator change commands. This will lead to an endless loop
689 * of command completions, since the power-fault bit remains on
690 * till the slot is powered on again.
691 */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700692 if (!pciehp_poll_mode) {
Kenji Kaneshigecff00652008-04-25 14:39:06 -0700693 slot_cmd &= ~(PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
694 PRSN_DETECT_ENABLE);
695 cmd_mask |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
696 PRSN_DETECT_ENABLE);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700699 retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800701 err("%s: Write command failed!\n", __func__);
Kenji Kaneshigec1ef5cb2008-03-04 13:01:14 -0800702 retval = -1;
703 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800705 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800706 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Kenji Kaneshige8bb7c7a2007-12-20 19:43:56 +0900708 /*
709 * After turning power off, we must wait for at least 1 second
710 * before taking any action that relies on power having been
711 * removed from the slot/adapter.
712 */
713 msleep(1000);
Kenji Kaneshigec1ef5cb2008-03-04 13:01:14 -0800714 out:
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900715 if (changed)
716 pcie_unmask_bad_dllp(ctrl);
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return retval;
719}
720
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800721static irqreturn_t pcie_isr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800723 struct controller *ctrl = (struct controller *)dev_id;
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700724 u16 detected, intr_loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700726 /*
727 * In order to guarantee that all interrupt events are
728 * serviced, we need to re-inspect Slot Status register after
729 * clearing what is presumed to be the last pending interrupt.
730 */
731 intr_loc = 0;
732 do {
733 if (pciehp_readw(ctrl, SLOTSTATUS, &detected)) {
734 err("%s: Cannot read SLOTSTATUS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return IRQ_NONE;
736 }
737
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700738 detected &= (ATTN_BUTTN_PRESSED | PWR_FAULT_DETECTED |
739 MRL_SENS_CHANGED | PRSN_DETECT_CHANGED |
740 CMD_COMPLETED);
741 intr_loc |= detected;
742 if (!intr_loc)
743 return IRQ_NONE;
744 if (pciehp_writew(ctrl, SLOTSTATUS, detected)) {
745 err("%s: Cannot write to SLOTSTATUS\n", __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800746 return IRQ_NONE;
747 }
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700748 } while (detected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700750 dbg("%s: intr_loc %x\n", __FUNCTION__, intr_loc);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700751
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700752 /* Check Command Complete Interrupt Pending */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (intr_loc & CMD_COMPLETED) {
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800754 ctrl->cmd_busy = 0;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700755 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 wake_up_interruptible(&ctrl->queue);
757 }
758
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700759 /* Check MRL Sensor Changed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800760 if (intr_loc & MRL_SENS_CHANGED)
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700761 pciehp_handle_switch_change(0, ctrl);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800762
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700763 /* Check Attention Button Pressed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800764 if (intr_loc & ATTN_BUTTN_PRESSED)
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700765 pciehp_handle_attention_button(0, ctrl);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800766
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700767 /* Check Presence Detect Changed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800768 if (intr_loc & PRSN_DETECT_CHANGED)
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700769 pciehp_handle_presence_change(0, ctrl);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800770
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700771 /* Check Power Fault Detected */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800772 if (intr_loc & PWR_FAULT_DETECTED)
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700773 pciehp_handle_power_fault(0, ctrl);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return IRQ_HANDLED;
776}
777
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700778static int hpc_get_max_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800780 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 enum pcie_link_speed lnk_speed;
782 u32 lnk_cap;
783 int retval = 0;
784
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800785 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800787 err("%s: Cannot read LNKCAP register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return retval;
789 }
790
791 switch (lnk_cap & 0x000F) {
792 case 1:
793 lnk_speed = PCIE_2PT5GB;
794 break;
795 default:
796 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
797 break;
798 }
799
800 *value = lnk_speed;
801 dbg("Max link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return retval;
804}
805
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700806static int hpc_get_max_lnk_width(struct slot *slot,
807 enum pcie_link_width *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800809 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 enum pcie_link_width lnk_wdth;
811 u32 lnk_cap;
812 int retval = 0;
813
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800814 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800816 err("%s: Cannot read LNKCAP register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return retval;
818 }
819
820 switch ((lnk_cap & 0x03F0) >> 4){
821 case 0:
822 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
823 break;
824 case 1:
825 lnk_wdth = PCIE_LNK_X1;
826 break;
827 case 2:
828 lnk_wdth = PCIE_LNK_X2;
829 break;
830 case 4:
831 lnk_wdth = PCIE_LNK_X4;
832 break;
833 case 8:
834 lnk_wdth = PCIE_LNK_X8;
835 break;
836 case 12:
837 lnk_wdth = PCIE_LNK_X12;
838 break;
839 case 16:
840 lnk_wdth = PCIE_LNK_X16;
841 break;
842 case 32:
843 lnk_wdth = PCIE_LNK_X32;
844 break;
845 default:
846 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
847 break;
848 }
849
850 *value = lnk_wdth;
851 dbg("Max link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return retval;
854}
855
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700856static int hpc_get_cur_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800858 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 enum pcie_link_speed lnk_speed = PCI_SPEED_UNKNOWN;
860 int retval = 0;
861 u16 lnk_status;
862
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800863 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800865 err("%s: Cannot read LNKSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 return retval;
867 }
868
869 switch (lnk_status & 0x0F) {
870 case 1:
871 lnk_speed = PCIE_2PT5GB;
872 break;
873 default:
874 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
875 break;
876 }
877
878 *value = lnk_speed;
879 dbg("Current link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return retval;
882}
883
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700884static int hpc_get_cur_lnk_width(struct slot *slot,
885 enum pcie_link_width *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800887 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 enum pcie_link_width lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
889 int retval = 0;
890 u16 lnk_status;
891
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800892 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800894 err("%s: Cannot read LNKSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return retval;
896 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 switch ((lnk_status & 0x03F0) >> 4){
899 case 0:
900 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
901 break;
902 case 1:
903 lnk_wdth = PCIE_LNK_X1;
904 break;
905 case 2:
906 lnk_wdth = PCIE_LNK_X2;
907 break;
908 case 4:
909 lnk_wdth = PCIE_LNK_X4;
910 break;
911 case 8:
912 lnk_wdth = PCIE_LNK_X8;
913 break;
914 case 12:
915 lnk_wdth = PCIE_LNK_X12;
916 break;
917 case 16:
918 lnk_wdth = PCIE_LNK_X16;
919 break;
920 case 32:
921 lnk_wdth = PCIE_LNK_X32;
922 break;
923 default:
924 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
925 break;
926 }
927
928 *value = lnk_wdth;
929 dbg("Current link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return retval;
932}
933
934static struct hpc_ops pciehp_hpc_ops = {
935 .power_on_slot = hpc_power_on_slot,
936 .power_off_slot = hpc_power_off_slot,
937 .set_attention_status = hpc_set_attention_status,
938 .get_power_status = hpc_get_power_status,
939 .get_attention_status = hpc_get_attention_status,
940 .get_latch_status = hpc_get_latch_status,
941 .get_adapter_status = hpc_get_adapter_status,
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800942 .get_emi_status = hpc_get_emi_status,
943 .toggle_emi = hpc_toggle_emi,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 .get_max_bus_speed = hpc_get_max_lnk_speed,
946 .get_cur_bus_speed = hpc_get_cur_lnk_speed,
947 .get_max_lnk_width = hpc_get_max_lnk_width,
948 .get_cur_lnk_width = hpc_get_cur_lnk_width,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 .query_power_fault = hpc_query_power_fault,
951 .green_led_on = hpc_set_green_led_on,
952 .green_led_off = hpc_set_green_led_off,
953 .green_led_blink = hpc_set_green_led_blink,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 .release_ctlr = hpc_release_ctlr,
956 .check_lnk_status = hpc_check_lnk_status,
957};
958
Kristen Accardi783c49f2006-03-03 10:16:05 -0800959#ifdef CONFIG_ACPI
Adrian Bunk4ea3e582008-04-25 14:39:10 -0700960static int pciehp_acpi_get_hp_hw_control_from_firmware(struct pci_dev *dev)
Kristen Accardi783c49f2006-03-03 10:16:05 -0800961{
962 acpi_status status;
963 acpi_handle chandle, handle = DEVICE_ACPI_HANDLE(&(dev->dev));
964 struct pci_dev *pdev = dev;
965 struct pci_bus *parent;
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +0900966 struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL };
Kristen Accardi783c49f2006-03-03 10:16:05 -0800967
968 /*
969 * Per PCI firmware specification, we should run the ACPI _OSC
970 * method to get control of hotplug hardware before using it.
971 * If an _OSC is missing, we look for an OSHP to do the same thing.
972 * To handle different BIOS behavior, we look for _OSC and OSHP
973 * within the scope of the hotplug controller and its parents, upto
974 * the host bridge under which this controller exists.
975 */
976 while (!handle) {
977 /*
978 * This hotplug controller was not listed in the ACPI name
979 * space at all. Try to get acpi handle of parent pci bus.
980 */
981 if (!pdev || !pdev->bus->parent)
982 break;
983 parent = pdev->bus->parent;
984 dbg("Could not find %s in acpi namespace, trying parent\n",
985 pci_name(pdev));
986 if (!parent->self)
987 /* Parent must be a host bridge */
988 handle = acpi_get_pci_rootbridge_handle(
989 pci_domain_nr(parent),
990 parent->number);
991 else
992 handle = DEVICE_ACPI_HANDLE(
993 &(parent->self->dev));
994 pdev = parent->self;
995 }
996
997 while (handle) {
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +0900998 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
999 dbg("Trying to get hotplug control for %s \n",
1000 (char *)string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -08001001 status = pci_osc_control_set(handle,
Kristen Carlson Accardi57d90c02007-08-09 16:09:32 -07001002 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL |
Kristen Accardi783c49f2006-03-03 10:16:05 -08001003 OSC_PCI_EXPRESS_NATIVE_HP_CONTROL);
1004 if (status == AE_NOT_FOUND)
1005 status = acpi_run_oshp(handle);
1006 if (ACPI_SUCCESS(status)) {
1007 dbg("Gained control for hotplug HW for pci %s (%s)\n",
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +09001008 pci_name(dev), (char *)string.pointer);
Kristen Accardi81b26bc2006-04-18 14:36:43 -07001009 kfree(string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -08001010 return 0;
1011 }
1012 if (acpi_root_bridge(handle))
1013 break;
1014 chandle = handle;
1015 status = acpi_get_parent(chandle, &handle);
1016 if (ACPI_FAILURE(status))
1017 break;
1018 }
1019
Kenji Kaneshigea53edac2008-04-29 09:15:04 -07001020 dbg("Cannot get control of hotplug hardware for pci %s\n",
Kristen Accardi783c49f2006-03-03 10:16:05 -08001021 pci_name(dev));
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +09001022
Kristen Accardi81b26bc2006-04-18 14:36:43 -07001023 kfree(string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -08001024 return -1;
1025}
1026#endif
1027
Mark Lordecdde932007-11-21 15:07:55 -08001028static int pcie_init_hardware_part1(struct controller *ctrl,
1029 struct pcie_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 /* Mask Hot-plug Interrupt Enable */
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001032 if (pcie_write_cmd(ctrl, 0, HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE)) {
1033 err("%s: Cannot mask hotplug interrupt enable\n", __func__);
Mark Lordecdde932007-11-21 15:07:55 -08001034 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
Mark Lordecdde932007-11-21 15:07:55 -08001036 return 0;
1037}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Mark Lordecdde932007-11-21 15:07:55 -08001039int pcie_init_hardware_part2(struct controller *ctrl, struct pcie_device *dev)
1040{
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001041 u16 cmd, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Kenji Kaneshige40730d12007-08-09 16:09:38 -07001043 /*
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001044 * We need to clear all events before enabling hotplug interrupt
1045 * notification mechanism in order for hotplug controler to
1046 * generate interrupts.
Kenji Kaneshige40730d12007-08-09 16:09:38 -07001047 */
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001048 if (pciehp_writew(ctrl, SLOTSTATUS, 0x1f)) {
1049 err("%s: Cannot write to SLOTSTATUS register\n", __FUNCTION__);
1050 return -1;
1051 }
1052
1053 cmd = PRSN_DETECT_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001054 if (ATTN_BUTTN(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001055 cmd |= ATTN_BUTTN_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001056 if (POWER_CTRL(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001057 cmd |= PWR_FAULT_DETECT_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001058 if (MRL_SENS(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001059 cmd |= MRL_DETECT_ENABLE;
1060 if (!pciehp_poll_mode)
1061 cmd |= HP_INTR_ENABLE;
1062
1063 mask = PRSN_DETECT_ENABLE | ATTN_BUTTN_ENABLE |
1064 PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE | HP_INTR_ENABLE;
1065
1066 if (pcie_write_cmd(ctrl, cmd, mask)) {
1067 err("%s: Cannot enable software notification\n", __func__);
Mark Lordecdde932007-11-21 15:07:55 -08001068 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001070
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001071 if (pciehp_force)
rajesh.shah@intel.coma3a45ec2005-10-31 16:20:12 -08001072 dbg("Bypassing BIOS check for pciehp use on %s\n",
1073 pci_name(ctrl->pci_dev));
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001074 else if (pciehp_get_hp_hw_control_from_firmware(ctrl->pci_dev))
1075 goto abort_disable_intr;
rajesh.shah@intel.coma8a2be92005-10-31 16:20:07 -08001076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 return 0;
1078
Kenji Kaneshige40730d12007-08-09 16:09:38 -07001079 /* We end up here for the many possible ways to fail this API. */
Jan Beulich9c64f972006-05-09 00:50:31 -07001080abort_disable_intr:
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001081 if (pcie_write_cmd(ctrl, 0, HP_INTR_ENABLE))
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001082 err("%s : disabling interrupts failed\n", __func__);
Mark Lordecdde932007-11-21 15:07:55 -08001083abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 return -1;
1085}
Mark Lord08e7a7d2007-11-28 15:11:46 -08001086
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001087static inline void dbg_ctrl(struct controller *ctrl)
1088{
1089 int i;
1090 u16 reg16;
1091 struct pci_dev *pdev = ctrl->pci_dev;
1092
1093 if (!pciehp_debug)
1094 return;
1095
1096 dbg("Hotplug Controller:\n");
1097 dbg(" Seg/Bus/Dev/Func/IRQ : %s IRQ %d\n", pci_name(pdev), pdev->irq);
1098 dbg(" Vendor ID : 0x%04x\n", pdev->vendor);
1099 dbg(" Device ID : 0x%04x\n", pdev->device);
1100 dbg(" Subsystem ID : 0x%04x\n", pdev->subsystem_device);
1101 dbg(" Subsystem Vendor ID : 0x%04x\n", pdev->subsystem_vendor);
1102 dbg(" PCIe Cap offset : 0x%02x\n", ctrl->cap_base);
1103 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1104 if (!pci_resource_len(pdev, i))
1105 continue;
1106 dbg(" PCI resource [%d] : 0x%llx@0x%llx\n", i,
1107 (unsigned long long)pci_resource_len(pdev, i),
1108 (unsigned long long)pci_resource_start(pdev, i));
1109 }
1110 dbg("Slot Capabilities : 0x%08x\n", ctrl->slot_cap);
1111 dbg(" Physical Slot Number : %d\n", ctrl->first_slot);
1112 dbg(" Attention Button : %3s\n", ATTN_BUTTN(ctrl) ? "yes" : "no");
1113 dbg(" Power Controller : %3s\n", POWER_CTRL(ctrl) ? "yes" : "no");
1114 dbg(" MRL Sensor : %3s\n", MRL_SENS(ctrl) ? "yes" : "no");
1115 dbg(" Attention Indicator : %3s\n", ATTN_LED(ctrl) ? "yes" : "no");
1116 dbg(" Power Indicator : %3s\n", PWR_LED(ctrl) ? "yes" : "no");
1117 dbg(" Hot-Plug Surprise : %3s\n", HP_SUPR_RM(ctrl) ? "yes" : "no");
1118 dbg(" EMI Present : %3s\n", EMI(ctrl) ? "yes" : "no");
1119 pciehp_readw(ctrl, SLOTSTATUS, &reg16);
1120 dbg("Slot Status : 0x%04x\n", reg16);
1121 pciehp_readw(ctrl, SLOTSTATUS, &reg16);
1122 dbg("Slot Control : 0x%04x\n", reg16);
1123}
1124
Mark Lord08e7a7d2007-11-28 15:11:46 -08001125int pcie_init(struct controller *ctrl, struct pcie_device *dev)
1126{
Mark Lord08e7a7d2007-11-28 15:11:46 -08001127 u32 slot_cap;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001128 struct pci_dev *pdev = dev->port;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001129
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001130 ctrl->pci_dev = pdev;
1131 ctrl->cap_base = pci_find_capability(pdev, PCI_CAP_ID_EXP);
1132 if (!ctrl->cap_base) {
1133 err("%s: Cannot find PCI Express capability\n", __func__);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001134 goto abort;
1135 }
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001136 if (pciehp_readl(ctrl, SLOTCAP, &slot_cap)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001137 err("%s: Cannot read SLOTCAP register\n", __func__);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001138 goto abort;
1139 }
Mark Lord08e7a7d2007-11-28 15:11:46 -08001140
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001141 ctrl->slot_cap = slot_cap;
1142 ctrl->first_slot = slot_cap >> 19;
1143 ctrl->slot_device_offset = 0;
1144 ctrl->num_slots = 1;
1145 ctrl->hpc_ops = &pciehp_hpc_ops;
1146 mutex_init(&ctrl->crit_sect);
1147 mutex_init(&ctrl->ctrl_lock);
1148 init_waitqueue_head(&ctrl->queue);
1149 dbg_ctrl(ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001150
1151 info("HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n",
1152 pdev->vendor, pdev->device,
1153 pdev->subsystem_vendor, pdev->subsystem_device);
1154
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001155 if (pcie_init_hardware_part1(ctrl, dev))
Mark Lordecdde932007-11-21 15:07:55 -08001156 goto abort;
1157
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001158 if (pciehp_request_irq(ctrl))
1159 goto abort;
Mark Lordecdde932007-11-21 15:07:55 -08001160
1161 /*
1162 * If this is the first controller to be initialized,
1163 * initialize the pciehp work queue
1164 */
1165 if (atomic_add_return(1, &pciehp_num_controllers) == 1) {
1166 pciehp_wq = create_singlethread_workqueue("pciehpd");
1167 if (!pciehp_wq) {
Mark Lordecdde932007-11-21 15:07:55 -08001168 goto abort_free_irq;
1169 }
1170 }
1171
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001172 if (pcie_init_hardware_part2(ctrl, dev))
1173 goto abort_free_irq;
1174
1175 return 0;
1176
Mark Lordecdde932007-11-21 15:07:55 -08001177abort_free_irq:
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001178 pciehp_free_irq(ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001179abort:
1180 return -1;
1181}