blob: 5a5c08f12af2f0d1430d48054bf06f69f271852c [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{
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +0900226 int retval, irq = ctrl->pcie->irq;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700227
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
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +0900247 free_irq(ctrl->pcie->irq, ctrl);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700248}
249
Kenji Kaneshige563f1192008-06-20 12:05:52 +0900250static int pcie_poll_cmd(struct controller *ctrl)
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900251{
252 u16 slot_status;
253 int timeout = 1000;
254
Kenji Kaneshige820943b2008-06-20 12:04:33 +0900255 if (!pciehp_readw(ctrl, SLOTSTATUS, &slot_status)) {
256 if (slot_status & CMD_COMPLETED) {
257 pciehp_writew(ctrl, SLOTSTATUS, CMD_COMPLETED);
258 return 1;
259 }
260 }
Adrian Bunka5827f42008-08-28 01:05:26 +0300261 while (timeout > 0) {
Kenji Kaneshige66618ba2008-06-20 12:05:12 +0900262 msleep(10);
263 timeout -= 10;
Kenji Kaneshige820943b2008-06-20 12:04:33 +0900264 if (!pciehp_readw(ctrl, SLOTSTATUS, &slot_status)) {
265 if (slot_status & CMD_COMPLETED) {
266 pciehp_writew(ctrl, SLOTSTATUS, CMD_COMPLETED);
267 return 1;
268 }
269 }
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900270 }
271 return 0; /* timeout */
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900272}
273
Kenji Kaneshige563f1192008-06-20 12:05:52 +0900274static void pcie_wait_cmd(struct controller *ctrl, int poll)
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800275{
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800276 unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
277 unsigned long timeout = msecs_to_jiffies(msecs);
278 int rc;
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800279
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900280 if (poll)
281 rc = pcie_poll_cmd(ctrl);
282 else
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900283 rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout);
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800284 if (!rc)
285 dbg("Command not completed in 1000 msec\n");
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800286}
287
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700288/**
289 * pcie_write_cmd - Issue controller command
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700290 * @ctrl: controller to which the command is issued
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700291 * @cmd: command value written to slot control register
292 * @mask: bitmask of slot control register to be modified
293 */
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700294static int pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 int retval = 0;
297 u16 slot_status;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700298 u16 slot_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800300 mutex_lock(&ctrl->ctrl_lock);
301
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800302 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800304 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800305 goto out;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800306 }
307
Kenji Kaneshige58086392008-05-27 19:04:30 +0900308 if (slot_status & CMD_COMPLETED) {
309 if (!ctrl->no_cmd_complete) {
310 /*
311 * After 1 sec and CMD_COMPLETED still not set, just
312 * proceed forward to issue the next command according
313 * to spec. Just print out the error message.
314 */
315 dbg("%s: CMD_COMPLETED not clear after 1 sec.\n",
316 __func__);
317 } else if (!NO_CMD_CMPL(ctrl)) {
318 /*
319 * This controller semms to notify of command completed
320 * event even though it supports none of power
321 * controller, attention led, power led and EMI.
322 */
323 dbg("%s: Unexpected CMD_COMPLETED. Need to wait for "
324 "command completed event.\n", __func__);
325 ctrl->no_cmd_complete = 0;
326 } else {
327 dbg("%s: Unexpected CMD_COMPLETED. Maybe the "
328 "controller is broken.\n", __func__);
329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700332 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800334 err("%s: Cannot read SLOTCTRL register\n", __func__);
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700335 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700338 slot_ctrl &= ~mask;
Kenji Kaneshigeb7aa1f12008-04-25 14:39:14 -0700339 slot_ctrl |= (cmd & mask);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700340 ctrl->cmd_busy = 1;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700341 smp_mb();
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700342 retval = pciehp_writew(ctrl, SLOTCTRL, slot_ctrl);
343 if (retval)
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800344 err("%s: Cannot write to SLOTCTRL register\n", __func__);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700345
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800346 /*
347 * Wait for command completion.
348 */
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900349 if (!retval && !ctrl->no_cmd_complete) {
350 int poll = 0;
351 /*
352 * if hotplug interrupt is not enabled or command
353 * completed interrupt is not enabled, we need to poll
354 * command completed event.
355 */
356 if (!(slot_ctrl & HP_INTR_ENABLE) ||
357 !(slot_ctrl & CMD_CMPL_INTR_ENABLE))
358 poll = 1;
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900359 pcie_wait_cmd(ctrl, poll);
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900360 }
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800361 out:
362 mutex_unlock(&ctrl->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return retval;
364}
365
366static int hpc_check_lnk_status(struct controller *ctrl)
367{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 u16 lnk_status;
369 int retval = 0;
370
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800371 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800373 err("%s: Cannot read LNKSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return retval;
375 }
376
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800377 dbg("%s: lnk_status = %x\n", __func__, lnk_status);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700378 if ( (lnk_status & LNK_TRN) || (lnk_status & LNK_TRN_ERR) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 !(lnk_status & NEG_LINK_WD)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800380 err("%s : Link Training Error occurs \n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 retval = -1;
382 return retval;
383 }
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return retval;
386}
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388static int hpc_get_attention_status(struct slot *slot, u8 *status)
389{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800390 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 u16 slot_ctrl;
392 u8 atten_led_state;
393 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800395 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800397 err("%s: Cannot read SLOTCTRL register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return retval;
399 }
400
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800401 dbg("%s: SLOTCTRL %x, value read %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800402 __func__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 atten_led_state = (slot_ctrl & ATTN_LED_CTRL) >> 6;
405
406 switch (atten_led_state) {
407 case 0:
408 *status = 0xFF; /* Reserved */
409 break;
410 case 1:
411 *status = 1; /* On */
412 break;
413 case 2:
414 *status = 2; /* Blink */
415 break;
416 case 3:
417 *status = 0; /* Off */
418 break;
419 default:
420 *status = 0xFF;
421 break;
422 }
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return 0;
425}
426
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800427static int hpc_get_power_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800429 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 u16 slot_ctrl;
431 u8 pwr_state;
432 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800434 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800436 err("%s: Cannot read SLOTCTRL register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return retval;
438 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800439 dbg("%s: SLOTCTRL %x value read %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800440 __func__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 pwr_state = (slot_ctrl & PWR_CTRL) >> 10;
443
444 switch (pwr_state) {
445 case 0:
446 *status = 1;
447 break;
448 case 1:
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700449 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 break;
451 default:
452 *status = 0xFF;
453 break;
454 }
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return retval;
457}
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459static int hpc_get_latch_status(struct slot *slot, u8 *status)
460{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800461 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 u16 slot_status;
463 int retval = 0;
464
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800465 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800467 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return retval;
469 }
470
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700471 *status = (((slot_status & MRL_STATE) >> 5) == 0) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return 0;
474}
475
476static int hpc_get_adapter_status(struct slot *slot, u8 *status)
477{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800478 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 u16 slot_status;
480 u8 card_state;
481 int retval = 0;
482
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800483 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800485 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return retval;
487 }
488 card_state = (u8)((slot_status & PRSN_STATE) >> 6);
489 *status = (card_state == 1) ? 1 : 0;
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return 0;
492}
493
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800494static int hpc_query_power_fault(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800496 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 u16 slot_status;
498 u8 pwr_fault;
499 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800501 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800503 err("%s: Cannot check for power fault\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return retval;
505 }
506 pwr_fault = (u8)((slot_status & PWR_FAULT_DETECTED) >> 1);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700507
rajesh.shah@intel.com8239def2005-10-31 16:20:13 -0800508 return pwr_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800511static int hpc_get_emi_status(struct slot *slot, u8 *status)
512{
513 struct controller *ctrl = slot->ctrl;
514 u16 slot_status;
515 int retval = 0;
516
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800517 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
518 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800519 err("%s : Cannot check EMI status\n", __func__);
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800520 return retval;
521 }
522 *status = (slot_status & EMI_STATE) >> EMI_STATUS_BIT;
523
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800524 return retval;
525}
526
527static int hpc_toggle_emi(struct slot *slot)
528{
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700529 u16 slot_cmd;
530 u16 cmd_mask;
531 int rc;
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800532
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700533 slot_cmd = EMI_CTRL;
534 cmd_mask = EMI_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700535 rc = pcie_write_cmd(slot->ctrl, slot_cmd, cmd_mask);
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800536 slot->last_emi_toggle = get_seconds();
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700537
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800538 return rc;
539}
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541static int hpc_set_attention_status(struct slot *slot, u8 value)
542{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800543 struct controller *ctrl = slot->ctrl;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700544 u16 slot_cmd;
545 u16 cmd_mask;
546 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700548 cmd_mask = ATTN_LED_CTRL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 switch (value) {
550 case 0 : /* turn off */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700551 slot_cmd = 0x00C0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 break;
553 case 1: /* turn on */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700554 slot_cmd = 0x0040;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 break;
556 case 2: /* turn blink */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700557 slot_cmd = 0x0080;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 break;
559 default:
560 return -1;
561 }
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700562 rc = 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);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return rc;
567}
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569static void hpc_set_green_led_on(struct slot *slot)
570{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800571 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700573 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700574
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700575 slot_cmd = 0x0100;
576 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700577 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800578 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800579 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
582static void hpc_set_green_led_off(struct slot *slot)
583{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800584 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700586 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700588 slot_cmd = 0x0300;
589 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700590 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800591 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800592 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
595static void hpc_set_green_led_blink(struct slot *slot)
596{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800597 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700599 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700600
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700601 slot_cmd = 0x0200;
602 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700603 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800604 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800605 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608static int hpc_power_on_slot(struct slot * slot)
609{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800610 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700612 u16 cmd_mask;
613 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 int retval = 0;
615
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800616 dbg("%s: slot->hp_slot %x\n", __func__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Rajesh Shah5a49f202005-11-23 15:44:54 -0800618 /* Clear sticky power-fault bit from previous power failures */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800619 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800621 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800622 return retval;
623 }
624 slot_status &= PWR_FAULT_DETECTED;
625 if (slot_status) {
626 retval = pciehp_writew(ctrl, SLOTSTATUS, slot_status);
627 if (retval) {
628 err("%s: Cannot write to SLOTSTATUS register\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800629 __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800630 return retval;
631 }
632 }
633
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700634 slot_cmd = POWER_ON;
635 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800636 /* Enable detection that we turned off at slot power-off time */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700637 if (!pciehp_poll_mode) {
Kenji Kaneshigecff00652008-04-25 14:39:06 -0700638 slot_cmd |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
639 PRSN_DETECT_ENABLE);
640 cmd_mask |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
641 PRSN_DETECT_ENABLE);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700644 retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800647 err("%s: Write %x command failed!\n", __func__, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return -1;
649 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800650 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800651 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return retval;
654}
655
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900656static inline int pcie_mask_bad_dllp(struct controller *ctrl)
657{
658 struct pci_dev *dev = ctrl->pci_dev;
659 int pos;
660 u32 reg;
661
662 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
663 if (!pos)
664 return 0;
665 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
666 if (reg & PCI_ERR_COR_BAD_DLLP)
667 return 0;
668 reg |= PCI_ERR_COR_BAD_DLLP;
669 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
670 return 1;
671}
672
673static inline void pcie_unmask_bad_dllp(struct controller *ctrl)
674{
675 struct pci_dev *dev = ctrl->pci_dev;
676 u32 reg;
677 int pos;
678
679 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
680 if (!pos)
681 return;
682 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
683 if (!(reg & PCI_ERR_COR_BAD_DLLP))
684 return;
685 reg &= ~PCI_ERR_COR_BAD_DLLP;
686 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
687}
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689static int hpc_power_off_slot(struct slot * slot)
690{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800691 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700693 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 int retval = 0;
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900695 int changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800697 dbg("%s: slot->hp_slot %x\n", __func__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900699 /*
700 * Set Bad DLLP Mask bit in Correctable Error Mask
701 * Register. This is the workaround against Bad DLLP error
702 * that sometimes happens during turning power off the slot
703 * which conforms to PCI Express 1.0a spec.
704 */
705 changed = pcie_mask_bad_dllp(ctrl);
706
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700707 slot_cmd = POWER_OFF;
708 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800709 /*
710 * If we get MRL or presence detect interrupts now, the isr
711 * will notice the sticky power-fault bit too and issue power
712 * indicator change commands. This will lead to an endless loop
713 * of command completions, since the power-fault bit remains on
714 * till the slot is powered on again.
715 */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700716 if (!pciehp_poll_mode) {
Kenji Kaneshigecff00652008-04-25 14:39:06 -0700717 slot_cmd &= ~(PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
718 PRSN_DETECT_ENABLE);
719 cmd_mask |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
720 PRSN_DETECT_ENABLE);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700723 retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800725 err("%s: Write command failed!\n", __func__);
Kenji Kaneshigec1ef5cb2008-03-04 13:01:14 -0800726 retval = -1;
727 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800729 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800730 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Kenji Kaneshigec1ef5cb2008-03-04 13:01:14 -0800731 out:
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900732 if (changed)
733 pcie_unmask_bad_dllp(ctrl);
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return retval;
736}
737
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800738static irqreturn_t pcie_isr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800740 struct controller *ctrl = (struct controller *)dev_id;
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700741 u16 detected, intr_loc;
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900742 struct slot *p_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700744 /*
745 * In order to guarantee that all interrupt events are
746 * serviced, we need to re-inspect Slot Status register after
747 * clearing what is presumed to be the last pending interrupt.
748 */
749 intr_loc = 0;
750 do {
751 if (pciehp_readw(ctrl, SLOTSTATUS, &detected)) {
752 err("%s: Cannot read SLOTSTATUS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 return IRQ_NONE;
754 }
755
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700756 detected &= (ATTN_BUTTN_PRESSED | PWR_FAULT_DETECTED |
757 MRL_SENS_CHANGED | PRSN_DETECT_CHANGED |
758 CMD_COMPLETED);
759 intr_loc |= detected;
760 if (!intr_loc)
761 return IRQ_NONE;
Kenji Kaneshige6a3f0842008-06-02 09:22:34 -0700762 if (detected && pciehp_writew(ctrl, SLOTSTATUS, detected)) {
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700763 err("%s: Cannot write to SLOTSTATUS\n", __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800764 return IRQ_NONE;
765 }
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700766 } while (detected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700768 dbg("%s: intr_loc %x\n", __FUNCTION__, intr_loc);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700769
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700770 /* Check Command Complete Interrupt Pending */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (intr_loc & CMD_COMPLETED) {
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800772 ctrl->cmd_busy = 0;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700773 smp_mb();
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900774 wake_up(&ctrl->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900777 if (!(intr_loc & ~CMD_COMPLETED))
778 return IRQ_HANDLED;
779
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900780 p_slot = pciehp_find_slot(ctrl, ctrl->slot_device_offset);
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900781
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700782 /* Check MRL Sensor Changed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800783 if (intr_loc & MRL_SENS_CHANGED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900784 pciehp_handle_switch_change(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800785
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700786 /* Check Attention Button Pressed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800787 if (intr_loc & ATTN_BUTTN_PRESSED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900788 pciehp_handle_attention_button(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800789
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700790 /* Check Presence Detect Changed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800791 if (intr_loc & PRSN_DETECT_CHANGED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900792 pciehp_handle_presence_change(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800793
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700794 /* Check Power Fault Detected */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800795 if (intr_loc & PWR_FAULT_DETECTED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900796 pciehp_handle_power_fault(p_slot);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return IRQ_HANDLED;
799}
800
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700801static int hpc_get_max_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800803 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 enum pcie_link_speed lnk_speed;
805 u32 lnk_cap;
806 int retval = 0;
807
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800808 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800810 err("%s: Cannot read LNKCAP register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return retval;
812 }
813
814 switch (lnk_cap & 0x000F) {
815 case 1:
816 lnk_speed = PCIE_2PT5GB;
817 break;
818 default:
819 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
820 break;
821 }
822
823 *value = lnk_speed;
824 dbg("Max link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return retval;
827}
828
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700829static int hpc_get_max_lnk_width(struct slot *slot,
830 enum pcie_link_width *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800832 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 enum pcie_link_width lnk_wdth;
834 u32 lnk_cap;
835 int retval = 0;
836
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800837 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800839 err("%s: Cannot read LNKCAP register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 return retval;
841 }
842
843 switch ((lnk_cap & 0x03F0) >> 4){
844 case 0:
845 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
846 break;
847 case 1:
848 lnk_wdth = PCIE_LNK_X1;
849 break;
850 case 2:
851 lnk_wdth = PCIE_LNK_X2;
852 break;
853 case 4:
854 lnk_wdth = PCIE_LNK_X4;
855 break;
856 case 8:
857 lnk_wdth = PCIE_LNK_X8;
858 break;
859 case 12:
860 lnk_wdth = PCIE_LNK_X12;
861 break;
862 case 16:
863 lnk_wdth = PCIE_LNK_X16;
864 break;
865 case 32:
866 lnk_wdth = PCIE_LNK_X32;
867 break;
868 default:
869 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
870 break;
871 }
872
873 *value = lnk_wdth;
874 dbg("Max link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return retval;
877}
878
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700879static int hpc_get_cur_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800881 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 enum pcie_link_speed lnk_speed = PCI_SPEED_UNKNOWN;
883 int retval = 0;
884 u16 lnk_status;
885
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800886 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800888 err("%s: Cannot read LNKSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return retval;
890 }
891
892 switch (lnk_status & 0x0F) {
893 case 1:
894 lnk_speed = PCIE_2PT5GB;
895 break;
896 default:
897 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
898 break;
899 }
900
901 *value = lnk_speed;
902 dbg("Current link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 return retval;
905}
906
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700907static int hpc_get_cur_lnk_width(struct slot *slot,
908 enum pcie_link_width *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800910 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 enum pcie_link_width lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
912 int retval = 0;
913 u16 lnk_status;
914
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800915 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800917 err("%s: Cannot read LNKSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return retval;
919 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 switch ((lnk_status & 0x03F0) >> 4){
922 case 0:
923 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
924 break;
925 case 1:
926 lnk_wdth = PCIE_LNK_X1;
927 break;
928 case 2:
929 lnk_wdth = PCIE_LNK_X2;
930 break;
931 case 4:
932 lnk_wdth = PCIE_LNK_X4;
933 break;
934 case 8:
935 lnk_wdth = PCIE_LNK_X8;
936 break;
937 case 12:
938 lnk_wdth = PCIE_LNK_X12;
939 break;
940 case 16:
941 lnk_wdth = PCIE_LNK_X16;
942 break;
943 case 32:
944 lnk_wdth = PCIE_LNK_X32;
945 break;
946 default:
947 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
948 break;
949 }
950
951 *value = lnk_wdth;
952 dbg("Current link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return retval;
955}
956
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900957static void pcie_release_ctrl(struct controller *ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958static struct hpc_ops pciehp_hpc_ops = {
959 .power_on_slot = hpc_power_on_slot,
960 .power_off_slot = hpc_power_off_slot,
961 .set_attention_status = hpc_set_attention_status,
962 .get_power_status = hpc_get_power_status,
963 .get_attention_status = hpc_get_attention_status,
964 .get_latch_status = hpc_get_latch_status,
965 .get_adapter_status = hpc_get_adapter_status,
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800966 .get_emi_status = hpc_get_emi_status,
967 .toggle_emi = hpc_toggle_emi,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 .get_max_bus_speed = hpc_get_max_lnk_speed,
970 .get_cur_bus_speed = hpc_get_cur_lnk_speed,
971 .get_max_lnk_width = hpc_get_max_lnk_width,
972 .get_cur_lnk_width = hpc_get_cur_lnk_width,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 .query_power_fault = hpc_query_power_fault,
975 .green_led_on = hpc_set_green_led_on,
976 .green_led_off = hpc_set_green_led_off,
977 .green_led_blink = hpc_set_green_led_blink,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700978
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900979 .release_ctlr = pcie_release_ctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 .check_lnk_status = hpc_check_lnk_status,
981};
982
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900983int pcie_enable_notification(struct controller *ctrl)
Mark Lordecdde932007-11-21 15:07:55 -0800984{
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700985 u16 cmd, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700987 cmd = PRSN_DETECT_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -0700988 if (ATTN_BUTTN(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700989 cmd |= ATTN_BUTTN_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -0700990 if (POWER_CTRL(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700991 cmd |= PWR_FAULT_DETECT_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -0700992 if (MRL_SENS(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700993 cmd |= MRL_DETECT_ENABLE;
994 if (!pciehp_poll_mode)
Kenji Kaneshige3aa50c42008-06-26 20:07:33 +0900995 cmd |= HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700996
Kenji Kaneshige3aa50c42008-06-26 20:07:33 +0900997 mask = PRSN_DETECT_ENABLE | ATTN_BUTTN_ENABLE | MRL_DETECT_ENABLE |
998 PWR_FAULT_DETECT_ENABLE | HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700999
1000 if (pcie_write_cmd(ctrl, cmd, mask)) {
1001 err("%s: Cannot enable software notification\n", __func__);
Kenji Kaneshige125c39f2008-05-28 14:57:30 +09001002 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
Mark Lord08e7a7d2007-11-28 15:11:46 -08001006
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001007static void pcie_disable_notification(struct controller *ctrl)
1008{
1009 u16 mask;
1010 mask = PRSN_DETECT_ENABLE | ATTN_BUTTN_ENABLE | MRL_DETECT_ENABLE |
1011 PWR_FAULT_DETECT_ENABLE | HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE;
1012 if (pcie_write_cmd(ctrl, 0, mask))
1013 warn("%s: Cannot disable software notification\n", __func__);
1014}
1015
1016static int pcie_init_notification(struct controller *ctrl)
1017{
1018 if (pciehp_request_irq(ctrl))
1019 return -1;
1020 if (pcie_enable_notification(ctrl)) {
1021 pciehp_free_irq(ctrl);
1022 return -1;
1023 }
1024 return 0;
1025}
1026
1027static void pcie_shutdown_notification(struct controller *ctrl)
1028{
1029 pcie_disable_notification(ctrl);
1030 pciehp_free_irq(ctrl);
1031}
1032
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001033static int pcie_init_slot(struct controller *ctrl)
1034{
1035 struct slot *slot;
1036
1037 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
1038 if (!slot)
1039 return -ENOMEM;
1040
1041 slot->hp_slot = 0;
1042 slot->ctrl = ctrl;
1043 slot->bus = ctrl->pci_dev->subordinate->number;
1044 slot->device = ctrl->slot_device_offset + slot->hp_slot;
1045 slot->hpc_ops = ctrl->hpc_ops;
1046 slot->number = ctrl->first_slot;
Alex Chiang167e7822008-08-21 15:13:29 -06001047 snprintf(slot->name, SLOT_NAME_SIZE, "%d", slot->number);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001048 mutex_init(&slot->lock);
1049 INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
1050 list_add(&slot->slot_list, &ctrl->slot_list);
1051 return 0;
1052}
1053
1054static void pcie_cleanup_slot(struct controller *ctrl)
1055{
1056 struct slot *slot;
1057 slot = list_first_entry(&ctrl->slot_list, struct slot, slot_list);
1058 list_del(&slot->slot_list);
1059 cancel_delayed_work(&slot->work);
1060 flush_scheduled_work();
1061 flush_workqueue(pciehp_wq);
1062 kfree(slot);
1063}
1064
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001065static inline void dbg_ctrl(struct controller *ctrl)
1066{
1067 int i;
1068 u16 reg16;
1069 struct pci_dev *pdev = ctrl->pci_dev;
1070
1071 if (!pciehp_debug)
1072 return;
1073
1074 dbg("Hotplug Controller:\n");
1075 dbg(" Seg/Bus/Dev/Func/IRQ : %s IRQ %d\n", pci_name(pdev), pdev->irq);
1076 dbg(" Vendor ID : 0x%04x\n", pdev->vendor);
1077 dbg(" Device ID : 0x%04x\n", pdev->device);
1078 dbg(" Subsystem ID : 0x%04x\n", pdev->subsystem_device);
1079 dbg(" Subsystem Vendor ID : 0x%04x\n", pdev->subsystem_vendor);
1080 dbg(" PCIe Cap offset : 0x%02x\n", ctrl->cap_base);
1081 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1082 if (!pci_resource_len(pdev, i))
1083 continue;
1084 dbg(" PCI resource [%d] : 0x%llx@0x%llx\n", i,
1085 (unsigned long long)pci_resource_len(pdev, i),
1086 (unsigned long long)pci_resource_start(pdev, i));
1087 }
1088 dbg("Slot Capabilities : 0x%08x\n", ctrl->slot_cap);
1089 dbg(" Physical Slot Number : %d\n", ctrl->first_slot);
1090 dbg(" Attention Button : %3s\n", ATTN_BUTTN(ctrl) ? "yes" : "no");
1091 dbg(" Power Controller : %3s\n", POWER_CTRL(ctrl) ? "yes" : "no");
1092 dbg(" MRL Sensor : %3s\n", MRL_SENS(ctrl) ? "yes" : "no");
1093 dbg(" Attention Indicator : %3s\n", ATTN_LED(ctrl) ? "yes" : "no");
1094 dbg(" Power Indicator : %3s\n", PWR_LED(ctrl) ? "yes" : "no");
1095 dbg(" Hot-Plug Surprise : %3s\n", HP_SUPR_RM(ctrl) ? "yes" : "no");
1096 dbg(" EMI Present : %3s\n", EMI(ctrl) ? "yes" : "no");
Jesse Barnes56adc592008-07-24 16:43:43 -07001097 dbg(" Command Completed : %3s\n", NO_CMD_CMPL(ctrl)? "no" : "yes");
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001098 pciehp_readw(ctrl, SLOTSTATUS, &reg16);
1099 dbg("Slot Status : 0x%04x\n", reg16);
Kenji Kaneshiged8b23e82008-06-02 09:07:46 -07001100 pciehp_readw(ctrl, SLOTCTRL, &reg16);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001101 dbg("Slot Control : 0x%04x\n", reg16);
1102}
1103
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001104struct controller *pcie_init(struct pcie_device *dev)
Mark Lord08e7a7d2007-11-28 15:11:46 -08001105{
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001106 struct controller *ctrl;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001107 u32 slot_cap;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001108 struct pci_dev *pdev = dev->port;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001109
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001110 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
1111 if (!ctrl) {
1112 err("%s : out of memory\n", __func__);
1113 goto abort;
1114 }
1115 INIT_LIST_HEAD(&ctrl->slot_list);
1116
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +09001117 ctrl->pcie = dev;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001118 ctrl->pci_dev = pdev;
1119 ctrl->cap_base = pci_find_capability(pdev, PCI_CAP_ID_EXP);
1120 if (!ctrl->cap_base) {
1121 err("%s: Cannot find PCI Express capability\n", __func__);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001122 goto abort;
1123 }
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001124 if (pciehp_readl(ctrl, SLOTCAP, &slot_cap)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001125 err("%s: Cannot read SLOTCAP register\n", __func__);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001126 goto abort;
1127 }
Mark Lord08e7a7d2007-11-28 15:11:46 -08001128
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001129 ctrl->slot_cap = slot_cap;
1130 ctrl->first_slot = slot_cap >> 19;
1131 ctrl->slot_device_offset = 0;
1132 ctrl->num_slots = 1;
1133 ctrl->hpc_ops = &pciehp_hpc_ops;
1134 mutex_init(&ctrl->crit_sect);
1135 mutex_init(&ctrl->ctrl_lock);
1136 init_waitqueue_head(&ctrl->queue);
1137 dbg_ctrl(ctrl);
Kenji Kaneshige58086392008-05-27 19:04:30 +09001138 /*
1139 * Controller doesn't notify of command completion if the "No
1140 * Command Completed Support" bit is set in Slot Capability
1141 * register or the controller supports none of power
1142 * controller, attention led, power led and EMI.
1143 */
1144 if (NO_CMD_CMPL(ctrl) ||
1145 !(POWER_CTRL(ctrl) | ATTN_LED(ctrl) | PWR_LED(ctrl) | EMI(ctrl)))
1146 ctrl->no_cmd_complete = 1;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001147
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001148 /* Clear all remaining event bits in Slot Status register */
1149 if (pciehp_writew(ctrl, SLOTSTATUS, 0x1f))
1150 goto abort_ctrl;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001151
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001152 /* Disable sotfware notification */
1153 pcie_disable_notification(ctrl);
Mark Lordecdde932007-11-21 15:07:55 -08001154
1155 /*
1156 * If this is the first controller to be initialized,
1157 * initialize the pciehp work queue
1158 */
1159 if (atomic_add_return(1, &pciehp_num_controllers) == 1) {
1160 pciehp_wq = create_singlethread_workqueue("pciehpd");
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001161 if (!pciehp_wq)
1162 goto abort_ctrl;
Mark Lordecdde932007-11-21 15:07:55 -08001163 }
1164
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001165 info("HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n",
1166 pdev->vendor, pdev->device,
1167 pdev->subsystem_vendor, pdev->subsystem_device);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001168
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001169 if (pcie_init_slot(ctrl))
1170 goto abort_ctrl;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001171
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001172 if (pcie_init_notification(ctrl))
1173 goto abort_slot;
1174
1175 return ctrl;
1176
1177abort_slot:
1178 pcie_cleanup_slot(ctrl);
1179abort_ctrl:
1180 kfree(ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001181abort:
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001182 return NULL;
1183}
1184
1185void pcie_release_ctrl(struct controller *ctrl)
1186{
1187 pcie_shutdown_notification(ctrl);
1188 pcie_cleanup_slot(ctrl);
1189 /*
1190 * If this is the last controller to be released, destroy the
1191 * pciehp work queue
1192 */
1193 if (atomic_dec_and_test(&pciehp_num_controllers))
1194 destroy_workqueue(pciehp_wq);
1195 kfree(ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001196}