blob: eb631af9473865d4929c6b19cec4617f6bb4213e [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 Kaneshige6592e022008-05-27 19:05:26 +0900250static inline int pcie_poll_cmd(struct controller *ctrl)
251{
252 u16 slot_status;
253 int timeout = 1000;
254
255 if (!pciehp_readw(ctrl, SLOTSTATUS, &slot_status))
256 if (slot_status & CMD_COMPLETED)
257 goto completed;
258 for (timeout = 1000; timeout > 0; timeout -= 100) {
259 msleep(100);
260 if (!pciehp_readw(ctrl, SLOTSTATUS, &slot_status))
261 if (slot_status & CMD_COMPLETED)
262 goto completed;
263 }
264 return 0; /* timeout */
265
266completed:
267 pciehp_writew(ctrl, SLOTSTATUS, CMD_COMPLETED);
268 return timeout;
269}
270
271static inline int pcie_wait_cmd(struct controller *ctrl, int poll)
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800272{
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800273 int retval = 0;
274 unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
275 unsigned long timeout = msecs_to_jiffies(msecs);
276 int rc;
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800277
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900278 if (poll)
279 rc = pcie_poll_cmd(ctrl);
280 else
281 rc = wait_event_interruptible_timeout(ctrl->queue,
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800282 !ctrl->cmd_busy, timeout);
283 if (!rc)
284 dbg("Command not completed in 1000 msec\n");
285 else if (rc < 0) {
286 retval = -EINTR;
287 info("Command was interrupted by a signal\n");
288 }
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800289
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800290 return retval;
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800291}
292
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700293/**
294 * pcie_write_cmd - Issue controller command
Kenji Kaneshigec27fb882008-04-25 14:39:05 -0700295 * @ctrl: controller to which the command is issued
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700296 * @cmd: command value written to slot control register
297 * @mask: bitmask of slot control register to be modified
298 */
Kenji Kaneshigec27fb882008-04-25 14:39:05 -0700299static int pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 int retval = 0;
302 u16 slot_status;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700303 u16 slot_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800305 mutex_lock(&ctrl->ctrl_lock);
306
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800307 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800309 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800310 goto out;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800311 }
312
Kenji Kaneshige58086392008-05-27 19:04:30 +0900313 if (slot_status & CMD_COMPLETED) {
314 if (!ctrl->no_cmd_complete) {
315 /*
316 * After 1 sec and CMD_COMPLETED still not set, just
317 * proceed forward to issue the next command according
318 * to spec. Just print out the error message.
319 */
320 dbg("%s: CMD_COMPLETED not clear after 1 sec.\n",
321 __func__);
322 } else if (!NO_CMD_CMPL(ctrl)) {
323 /*
324 * This controller semms to notify of command completed
325 * event even though it supports none of power
326 * controller, attention led, power led and EMI.
327 */
328 dbg("%s: Unexpected CMD_COMPLETED. Need to wait for "
329 "command completed event.\n", __func__);
330 ctrl->no_cmd_complete = 0;
331 } else {
332 dbg("%s: Unexpected CMD_COMPLETED. Maybe the "
333 "controller is broken.\n", __func__);
334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700337 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800339 err("%s: Cannot read SLOTCTRL register\n", __func__);
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700340 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700343 slot_ctrl &= ~mask;
Kenji Kaneshigeb7aa1f12008-04-25 14:39:14 -0700344 slot_ctrl |= (cmd & mask);
345 /* Don't enable command completed if caller is changing it. */
346 if (!(mask & CMD_CMPL_INTR_ENABLE))
347 slot_ctrl |= CMD_CMPL_INTR_ENABLE;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700348
349 ctrl->cmd_busy = 1;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700350 smp_mb();
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700351 retval = pciehp_writew(ctrl, SLOTCTRL, slot_ctrl);
352 if (retval)
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800353 err("%s: Cannot write to SLOTCTRL register\n", __func__);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700354
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800355 /*
356 * Wait for command completion.
357 */
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900358 if (!retval && !ctrl->no_cmd_complete) {
359 int poll = 0;
360 /*
361 * if hotplug interrupt is not enabled or command
362 * completed interrupt is not enabled, we need to poll
363 * command completed event.
364 */
365 if (!(slot_ctrl & HP_INTR_ENABLE) ||
366 !(slot_ctrl & CMD_CMPL_INTR_ENABLE))
367 poll = 1;
368 retval = pcie_wait_cmd(ctrl, poll);
369 }
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800370 out:
371 mutex_unlock(&ctrl->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return retval;
373}
374
375static int hpc_check_lnk_status(struct controller *ctrl)
376{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 u16 lnk_status;
378 int retval = 0;
379
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800380 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800382 err("%s: Cannot read LNKSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return retval;
384 }
385
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800386 dbg("%s: lnk_status = %x\n", __func__, lnk_status);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700387 if ( (lnk_status & LNK_TRN) || (lnk_status & LNK_TRN_ERR) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 !(lnk_status & NEG_LINK_WD)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800389 err("%s : Link Training Error occurs \n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 retval = -1;
391 return retval;
392 }
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return retval;
395}
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397static int hpc_get_attention_status(struct slot *slot, u8 *status)
398{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800399 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 u16 slot_ctrl;
401 u8 atten_led_state;
402 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800404 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800406 err("%s: Cannot read SLOTCTRL register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 return retval;
408 }
409
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800410 dbg("%s: SLOTCTRL %x, value read %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800411 __func__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 atten_led_state = (slot_ctrl & ATTN_LED_CTRL) >> 6;
414
415 switch (atten_led_state) {
416 case 0:
417 *status = 0xFF; /* Reserved */
418 break;
419 case 1:
420 *status = 1; /* On */
421 break;
422 case 2:
423 *status = 2; /* Blink */
424 break;
425 case 3:
426 *status = 0; /* Off */
427 break;
428 default:
429 *status = 0xFF;
430 break;
431 }
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return 0;
434}
435
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800436static int hpc_get_power_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800438 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 u16 slot_ctrl;
440 u8 pwr_state;
441 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800443 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800445 err("%s: Cannot read SLOTCTRL register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return retval;
447 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800448 dbg("%s: SLOTCTRL %x value read %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800449 __func__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 pwr_state = (slot_ctrl & PWR_CTRL) >> 10;
452
453 switch (pwr_state) {
454 case 0:
455 *status = 1;
456 break;
457 case 1:
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700458 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 break;
460 default:
461 *status = 0xFF;
462 break;
463 }
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return retval;
466}
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468static int hpc_get_latch_status(struct slot *slot, u8 *status)
469{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800470 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 u16 slot_status;
472 int retval = 0;
473
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800474 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800476 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return retval;
478 }
479
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700480 *status = (((slot_status & MRL_STATE) >> 5) == 0) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 return 0;
483}
484
485static int hpc_get_adapter_status(struct slot *slot, u8 *status)
486{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800487 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 u16 slot_status;
489 u8 card_state;
490 int retval = 0;
491
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800492 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800494 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return retval;
496 }
497 card_state = (u8)((slot_status & PRSN_STATE) >> 6);
498 *status = (card_state == 1) ? 1 : 0;
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return 0;
501}
502
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800503static int hpc_query_power_fault(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800505 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 u16 slot_status;
507 u8 pwr_fault;
508 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800510 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800512 err("%s: Cannot check for power fault\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return retval;
514 }
515 pwr_fault = (u8)((slot_status & PWR_FAULT_DETECTED) >> 1);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700516
rajesh.shah@intel.com8239def2005-10-31 16:20:13 -0800517 return pwr_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800520static int hpc_get_emi_status(struct slot *slot, u8 *status)
521{
522 struct controller *ctrl = slot->ctrl;
523 u16 slot_status;
524 int retval = 0;
525
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800526 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
527 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800528 err("%s : Cannot check EMI status\n", __func__);
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800529 return retval;
530 }
531 *status = (slot_status & EMI_STATE) >> EMI_STATUS_BIT;
532
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800533 return retval;
534}
535
536static int hpc_toggle_emi(struct slot *slot)
537{
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700538 u16 slot_cmd;
539 u16 cmd_mask;
540 int rc;
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800541
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700542 slot_cmd = EMI_CTRL;
543 cmd_mask = EMI_CTRL;
Kenji Kaneshigec27fb882008-04-25 14:39:05 -0700544 rc = pcie_write_cmd(slot->ctrl, slot_cmd, cmd_mask);
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800545 slot->last_emi_toggle = get_seconds();
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700546
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800547 return rc;
548}
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550static int hpc_set_attention_status(struct slot *slot, u8 value)
551{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800552 struct controller *ctrl = slot->ctrl;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700553 u16 slot_cmd;
554 u16 cmd_mask;
555 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700557 cmd_mask = ATTN_LED_CTRL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 switch (value) {
559 case 0 : /* turn off */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700560 slot_cmd = 0x00C0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 break;
562 case 1: /* turn on */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700563 slot_cmd = 0x0040;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 break;
565 case 2: /* turn blink */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700566 slot_cmd = 0x0080;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 break;
568 default:
569 return -1;
570 }
Kenji Kaneshigec27fb882008-04-25 14:39:05 -0700571 rc = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800572 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800573 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return rc;
576}
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578static void hpc_set_green_led_on(struct slot *slot)
579{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800580 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700582 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700583
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700584 slot_cmd = 0x0100;
585 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb882008-04-25 14:39:05 -0700586 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800587 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800588 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
591static void hpc_set_green_led_off(struct slot *slot)
592{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800593 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700595 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700597 slot_cmd = 0x0300;
598 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb882008-04-25 14:39:05 -0700599 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800600 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800601 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602}
603
604static void hpc_set_green_led_blink(struct slot *slot)
605{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800606 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700608 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700609
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700610 slot_cmd = 0x0200;
611 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb882008-04-25 14:39:05 -0700612 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800613 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800614 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617static void hpc_release_ctlr(struct controller *ctrl)
618{
Kenji Kaneshiged84be092008-04-25 14:39:07 -0700619 /* Mask Hot-plug Interrupt Enable */
620 if (pcie_write_cmd(ctrl, 0, HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE))
621 err("%s: Cannot mask hotplut interrupt enable\n", __func__);
622
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700623 /* Free interrupt handler or interrupt polling timer */
624 pciehp_free_irq(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800626 /*
627 * If this is the last controller to be released, destroy the
628 * pciehp work queue
629 */
630 if (atomic_dec_and_test(&pciehp_num_controllers))
631 destroy_workqueue(pciehp_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
634static int hpc_power_on_slot(struct slot * slot)
635{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800636 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700638 u16 cmd_mask;
639 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 int retval = 0;
641
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800642 dbg("%s: slot->hp_slot %x\n", __func__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Rajesh Shah5a49f202005-11-23 15:44:54 -0800644 /* Clear sticky power-fault bit from previous power failures */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800645 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800647 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800648 return retval;
649 }
650 slot_status &= PWR_FAULT_DETECTED;
651 if (slot_status) {
652 retval = pciehp_writew(ctrl, SLOTSTATUS, slot_status);
653 if (retval) {
654 err("%s: Cannot write to SLOTSTATUS register\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800655 __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800656 return retval;
657 }
658 }
659
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700660 slot_cmd = POWER_ON;
661 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800662 /* Enable detection that we turned off at slot power-off time */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700663 if (!pciehp_poll_mode) {
Kenji Kaneshigecff00652008-04-25 14:39:06 -0700664 slot_cmd |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
665 PRSN_DETECT_ENABLE);
666 cmd_mask |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
667 PRSN_DETECT_ENABLE);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Kenji Kaneshigec27fb882008-04-25 14:39:05 -0700670 retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800673 err("%s: Write %x command failed!\n", __func__, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return -1;
675 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800676 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800677 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return retval;
680}
681
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900682static inline int pcie_mask_bad_dllp(struct controller *ctrl)
683{
684 struct pci_dev *dev = ctrl->pci_dev;
685 int pos;
686 u32 reg;
687
688 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
689 if (!pos)
690 return 0;
691 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
692 if (reg & PCI_ERR_COR_BAD_DLLP)
693 return 0;
694 reg |= PCI_ERR_COR_BAD_DLLP;
695 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
696 return 1;
697}
698
699static inline void pcie_unmask_bad_dllp(struct controller *ctrl)
700{
701 struct pci_dev *dev = ctrl->pci_dev;
702 u32 reg;
703 int pos;
704
705 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
706 if (!pos)
707 return;
708 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
709 if (!(reg & PCI_ERR_COR_BAD_DLLP))
710 return;
711 reg &= ~PCI_ERR_COR_BAD_DLLP;
712 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
713}
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715static int hpc_power_off_slot(struct slot * slot)
716{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800717 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700719 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 int retval = 0;
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900721 int changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800723 dbg("%s: slot->hp_slot %x\n", __func__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900725 /*
726 * Set Bad DLLP Mask bit in Correctable Error Mask
727 * Register. This is the workaround against Bad DLLP error
728 * that sometimes happens during turning power off the slot
729 * which conforms to PCI Express 1.0a spec.
730 */
731 changed = pcie_mask_bad_dllp(ctrl);
732
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700733 slot_cmd = POWER_OFF;
734 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800735 /*
736 * If we get MRL or presence detect interrupts now, the isr
737 * will notice the sticky power-fault bit too and issue power
738 * indicator change commands. This will lead to an endless loop
739 * of command completions, since the power-fault bit remains on
740 * till the slot is powered on again.
741 */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700742 if (!pciehp_poll_mode) {
Kenji Kaneshigecff00652008-04-25 14:39:06 -0700743 slot_cmd &= ~(PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
744 PRSN_DETECT_ENABLE);
745 cmd_mask |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
746 PRSN_DETECT_ENABLE);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Kenji Kaneshigec27fb882008-04-25 14:39:05 -0700749 retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800751 err("%s: Write command failed!\n", __func__);
Kenji Kaneshigec1ef5cb2008-03-04 13:01:14 -0800752 retval = -1;
753 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800755 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800756 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Kenji Kaneshige8bb7c7a2007-12-20 19:43:56 +0900758 /*
759 * After turning power off, we must wait for at least 1 second
760 * before taking any action that relies on power having been
761 * removed from the slot/adapter.
762 */
763 msleep(1000);
Kenji Kaneshigec1ef5cb2008-03-04 13:01:14 -0800764 out:
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900765 if (changed)
766 pcie_unmask_bad_dllp(ctrl);
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return retval;
769}
770
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800771static irqreturn_t pcie_isr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800773 struct controller *ctrl = (struct controller *)dev_id;
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700774 u16 detected, intr_loc;
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900775 struct slot *p_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700777 /*
778 * In order to guarantee that all interrupt events are
779 * serviced, we need to re-inspect Slot Status register after
780 * clearing what is presumed to be the last pending interrupt.
781 */
782 intr_loc = 0;
783 do {
784 if (pciehp_readw(ctrl, SLOTSTATUS, &detected)) {
785 err("%s: Cannot read SLOTSTATUS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return IRQ_NONE;
787 }
788
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700789 detected &= (ATTN_BUTTN_PRESSED | PWR_FAULT_DETECTED |
790 MRL_SENS_CHANGED | PRSN_DETECT_CHANGED |
791 CMD_COMPLETED);
792 intr_loc |= detected;
793 if (!intr_loc)
794 return IRQ_NONE;
795 if (pciehp_writew(ctrl, SLOTSTATUS, detected)) {
796 err("%s: Cannot write to SLOTSTATUS\n", __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800797 return IRQ_NONE;
798 }
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700799 } while (detected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700801 dbg("%s: intr_loc %x\n", __FUNCTION__, intr_loc);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700802
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700803 /* Check Command Complete Interrupt Pending */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (intr_loc & CMD_COMPLETED) {
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800805 ctrl->cmd_busy = 0;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700806 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 wake_up_interruptible(&ctrl->queue);
808 }
809
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900810 if (!(intr_loc & ~CMD_COMPLETED))
811 return IRQ_HANDLED;
812
813 /*
814 * Return without handling events if this handler routine is
815 * called before controller initialization is done. This may
816 * happen if hotplug event or another interrupt that shares
817 * the IRQ with pciehp arrives before slot initialization is
818 * done after interrupt handler is registered.
819 *
820 * FIXME - Need more structural fixes. We need to be ready to
821 * handle the event before installing interrupt handler.
822 */
823 p_slot = pciehp_find_slot(ctrl, ctrl->slot_device_offset);
824 if (!p_slot || !p_slot->hpc_ops)
825 return IRQ_HANDLED;
826
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700827 /* Check MRL Sensor Changed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800828 if (intr_loc & MRL_SENS_CHANGED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900829 pciehp_handle_switch_change(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800830
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700831 /* Check Attention Button Pressed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800832 if (intr_loc & ATTN_BUTTN_PRESSED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900833 pciehp_handle_attention_button(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800834
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700835 /* Check Presence Detect Changed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800836 if (intr_loc & PRSN_DETECT_CHANGED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900837 pciehp_handle_presence_change(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800838
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700839 /* Check Power Fault Detected */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800840 if (intr_loc & PWR_FAULT_DETECTED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900841 pciehp_handle_power_fault(p_slot);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return IRQ_HANDLED;
844}
845
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700846static int hpc_get_max_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800848 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 enum pcie_link_speed lnk_speed;
850 u32 lnk_cap;
851 int retval = 0;
852
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800853 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800855 err("%s: Cannot read LNKCAP register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return retval;
857 }
858
859 switch (lnk_cap & 0x000F) {
860 case 1:
861 lnk_speed = PCIE_2PT5GB;
862 break;
863 default:
864 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
865 break;
866 }
867
868 *value = lnk_speed;
869 dbg("Max link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return retval;
872}
873
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700874static int hpc_get_max_lnk_width(struct slot *slot,
875 enum pcie_link_width *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800877 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 enum pcie_link_width lnk_wdth;
879 u32 lnk_cap;
880 int retval = 0;
881
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800882 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800884 err("%s: Cannot read LNKCAP register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return retval;
886 }
887
888 switch ((lnk_cap & 0x03F0) >> 4){
889 case 0:
890 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
891 break;
892 case 1:
893 lnk_wdth = PCIE_LNK_X1;
894 break;
895 case 2:
896 lnk_wdth = PCIE_LNK_X2;
897 break;
898 case 4:
899 lnk_wdth = PCIE_LNK_X4;
900 break;
901 case 8:
902 lnk_wdth = PCIE_LNK_X8;
903 break;
904 case 12:
905 lnk_wdth = PCIE_LNK_X12;
906 break;
907 case 16:
908 lnk_wdth = PCIE_LNK_X16;
909 break;
910 case 32:
911 lnk_wdth = PCIE_LNK_X32;
912 break;
913 default:
914 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
915 break;
916 }
917
918 *value = lnk_wdth;
919 dbg("Max link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700920
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return retval;
922}
923
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700924static int hpc_get_cur_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800926 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 enum pcie_link_speed lnk_speed = PCI_SPEED_UNKNOWN;
928 int retval = 0;
929 u16 lnk_status;
930
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800931 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800933 err("%s: Cannot read LNKSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 return retval;
935 }
936
937 switch (lnk_status & 0x0F) {
938 case 1:
939 lnk_speed = PCIE_2PT5GB;
940 break;
941 default:
942 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
943 break;
944 }
945
946 *value = lnk_speed;
947 dbg("Current link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 return retval;
950}
951
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700952static int hpc_get_cur_lnk_width(struct slot *slot,
953 enum pcie_link_width *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800955 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 enum pcie_link_width lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
957 int retval = 0;
958 u16 lnk_status;
959
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800960 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800962 err("%s: Cannot read LNKSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return retval;
964 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 switch ((lnk_status & 0x03F0) >> 4){
967 case 0:
968 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
969 break;
970 case 1:
971 lnk_wdth = PCIE_LNK_X1;
972 break;
973 case 2:
974 lnk_wdth = PCIE_LNK_X2;
975 break;
976 case 4:
977 lnk_wdth = PCIE_LNK_X4;
978 break;
979 case 8:
980 lnk_wdth = PCIE_LNK_X8;
981 break;
982 case 12:
983 lnk_wdth = PCIE_LNK_X12;
984 break;
985 case 16:
986 lnk_wdth = PCIE_LNK_X16;
987 break;
988 case 32:
989 lnk_wdth = PCIE_LNK_X32;
990 break;
991 default:
992 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
993 break;
994 }
995
996 *value = lnk_wdth;
997 dbg("Current link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return retval;
1000}
1001
1002static struct hpc_ops pciehp_hpc_ops = {
1003 .power_on_slot = hpc_power_on_slot,
1004 .power_off_slot = hpc_power_off_slot,
1005 .set_attention_status = hpc_set_attention_status,
1006 .get_power_status = hpc_get_power_status,
1007 .get_attention_status = hpc_get_attention_status,
1008 .get_latch_status = hpc_get_latch_status,
1009 .get_adapter_status = hpc_get_adapter_status,
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -08001010 .get_emi_status = hpc_get_emi_status,
1011 .toggle_emi = hpc_toggle_emi,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 .get_max_bus_speed = hpc_get_max_lnk_speed,
1014 .get_cur_bus_speed = hpc_get_cur_lnk_speed,
1015 .get_max_lnk_width = hpc_get_max_lnk_width,
1016 .get_cur_lnk_width = hpc_get_cur_lnk_width,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 .query_power_fault = hpc_query_power_fault,
1019 .green_led_on = hpc_set_green_led_on,
1020 .green_led_off = hpc_set_green_led_off,
1021 .green_led_blink = hpc_set_green_led_blink,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 .release_ctlr = hpc_release_ctlr,
1024 .check_lnk_status = hpc_check_lnk_status,
1025};
1026
Kristen Accardi783c49f2006-03-03 10:16:05 -08001027#ifdef CONFIG_ACPI
Adrian Bunk4ea3e582008-04-25 14:39:10 -07001028static int pciehp_acpi_get_hp_hw_control_from_firmware(struct pci_dev *dev)
Kristen Accardi783c49f2006-03-03 10:16:05 -08001029{
1030 acpi_status status;
1031 acpi_handle chandle, handle = DEVICE_ACPI_HANDLE(&(dev->dev));
1032 struct pci_dev *pdev = dev;
1033 struct pci_bus *parent;
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +09001034 struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL };
Kristen Accardi783c49f2006-03-03 10:16:05 -08001035
1036 /*
1037 * Per PCI firmware specification, we should run the ACPI _OSC
1038 * method to get control of hotplug hardware before using it.
1039 * If an _OSC is missing, we look for an OSHP to do the same thing.
1040 * To handle different BIOS behavior, we look for _OSC and OSHP
1041 * within the scope of the hotplug controller and its parents, upto
1042 * the host bridge under which this controller exists.
1043 */
1044 while (!handle) {
1045 /*
1046 * This hotplug controller was not listed in the ACPI name
1047 * space at all. Try to get acpi handle of parent pci bus.
1048 */
1049 if (!pdev || !pdev->bus->parent)
1050 break;
1051 parent = pdev->bus->parent;
1052 dbg("Could not find %s in acpi namespace, trying parent\n",
1053 pci_name(pdev));
1054 if (!parent->self)
1055 /* Parent must be a host bridge */
1056 handle = acpi_get_pci_rootbridge_handle(
1057 pci_domain_nr(parent),
1058 parent->number);
1059 else
1060 handle = DEVICE_ACPI_HANDLE(
1061 &(parent->self->dev));
1062 pdev = parent->self;
1063 }
1064
1065 while (handle) {
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +09001066 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
1067 dbg("Trying to get hotplug control for %s \n",
1068 (char *)string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -08001069 status = pci_osc_control_set(handle,
Kristen Carlson Accardi57d90c02007-08-09 16:09:32 -07001070 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL |
Kristen Accardi783c49f2006-03-03 10:16:05 -08001071 OSC_PCI_EXPRESS_NATIVE_HP_CONTROL);
1072 if (status == AE_NOT_FOUND)
1073 status = acpi_run_oshp(handle);
1074 if (ACPI_SUCCESS(status)) {
1075 dbg("Gained control for hotplug HW for pci %s (%s)\n",
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +09001076 pci_name(dev), (char *)string.pointer);
Kristen Accardi81b26bc2006-04-18 14:36:43 -07001077 kfree(string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -08001078 return 0;
1079 }
1080 if (acpi_root_bridge(handle))
1081 break;
1082 chandle = handle;
1083 status = acpi_get_parent(chandle, &handle);
1084 if (ACPI_FAILURE(status))
1085 break;
1086 }
1087
Kenji Kaneshigea53edac2008-04-29 09:15:04 -07001088 dbg("Cannot get control of hotplug hardware for pci %s\n",
Kristen Accardi783c49f2006-03-03 10:16:05 -08001089 pci_name(dev));
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +09001090
Kristen Accardi81b26bc2006-04-18 14:36:43 -07001091 kfree(string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -08001092 return -1;
1093}
1094#endif
1095
Mark Lordecdde932007-11-21 15:07:55 -08001096static int pcie_init_hardware_part1(struct controller *ctrl,
1097 struct pcie_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +09001099 /* Clear all remaining event bits in Slot Status register */
1100 if (pciehp_writew(ctrl, SLOTSTATUS, 0x1f)) {
1101 err("%s: Cannot write to SLOTSTATUS register\n", __func__);
1102 return -1;
1103 }
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 /* Mask Hot-plug Interrupt Enable */
Kenji Kaneshigec27fb882008-04-25 14:39:05 -07001106 if (pcie_write_cmd(ctrl, 0, HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE)) {
1107 err("%s: Cannot mask hotplug interrupt enable\n", __func__);
Mark Lordecdde932007-11-21 15:07:55 -08001108 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
Mark Lordecdde932007-11-21 15:07:55 -08001110 return 0;
1111}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Mark Lordecdde932007-11-21 15:07:55 -08001113int pcie_init_hardware_part2(struct controller *ctrl, struct pcie_device *dev)
1114{
Kenji Kaneshigec27fb882008-04-25 14:39:05 -07001115 u16 cmd, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Kenji Kaneshigec27fb882008-04-25 14:39:05 -07001117 cmd = PRSN_DETECT_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001118 if (ATTN_BUTTN(ctrl))
Kenji Kaneshigec27fb882008-04-25 14:39:05 -07001119 cmd |= ATTN_BUTTN_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001120 if (POWER_CTRL(ctrl))
Kenji Kaneshigec27fb882008-04-25 14:39:05 -07001121 cmd |= PWR_FAULT_DETECT_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001122 if (MRL_SENS(ctrl))
Kenji Kaneshigec27fb882008-04-25 14:39:05 -07001123 cmd |= MRL_DETECT_ENABLE;
1124 if (!pciehp_poll_mode)
1125 cmd |= HP_INTR_ENABLE;
1126
1127 mask = PRSN_DETECT_ENABLE | ATTN_BUTTN_ENABLE |
1128 PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE | HP_INTR_ENABLE;
1129
1130 if (pcie_write_cmd(ctrl, cmd, mask)) {
1131 err("%s: Cannot enable software notification\n", __func__);
Mark Lordecdde932007-11-21 15:07:55 -08001132 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001134
Kenji Kaneshigec27fb882008-04-25 14:39:05 -07001135 if (pciehp_force)
rajesh.shah@intel.coma3a45ec2005-10-31 16:20:12 -08001136 dbg("Bypassing BIOS check for pciehp use on %s\n",
1137 pci_name(ctrl->pci_dev));
Kenji Kaneshigec27fb882008-04-25 14:39:05 -07001138 else if (pciehp_get_hp_hw_control_from_firmware(ctrl->pci_dev))
1139 goto abort_disable_intr;
rajesh.shah@intel.coma8a2be92005-10-31 16:20:07 -08001140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 return 0;
1142
Kenji Kaneshige40730d12007-08-09 16:09:38 -07001143 /* We end up here for the many possible ways to fail this API. */
Jan Beulich9c64f972006-05-09 00:50:31 -07001144abort_disable_intr:
Kenji Kaneshigec27fb882008-04-25 14:39:05 -07001145 if (pcie_write_cmd(ctrl, 0, HP_INTR_ENABLE))
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001146 err("%s : disabling interrupts failed\n", __func__);
Mark Lordecdde932007-11-21 15:07:55 -08001147abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 return -1;
1149}
Mark Lord08e7a7d2007-11-28 15:11:46 -08001150
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001151static inline void dbg_ctrl(struct controller *ctrl)
1152{
1153 int i;
1154 u16 reg16;
1155 struct pci_dev *pdev = ctrl->pci_dev;
1156
1157 if (!pciehp_debug)
1158 return;
1159
1160 dbg("Hotplug Controller:\n");
1161 dbg(" Seg/Bus/Dev/Func/IRQ : %s IRQ %d\n", pci_name(pdev), pdev->irq);
1162 dbg(" Vendor ID : 0x%04x\n", pdev->vendor);
1163 dbg(" Device ID : 0x%04x\n", pdev->device);
1164 dbg(" Subsystem ID : 0x%04x\n", pdev->subsystem_device);
1165 dbg(" Subsystem Vendor ID : 0x%04x\n", pdev->subsystem_vendor);
1166 dbg(" PCIe Cap offset : 0x%02x\n", ctrl->cap_base);
1167 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1168 if (!pci_resource_len(pdev, i))
1169 continue;
1170 dbg(" PCI resource [%d] : 0x%llx@0x%llx\n", i,
1171 (unsigned long long)pci_resource_len(pdev, i),
1172 (unsigned long long)pci_resource_start(pdev, i));
1173 }
1174 dbg("Slot Capabilities : 0x%08x\n", ctrl->slot_cap);
1175 dbg(" Physical Slot Number : %d\n", ctrl->first_slot);
1176 dbg(" Attention Button : %3s\n", ATTN_BUTTN(ctrl) ? "yes" : "no");
1177 dbg(" Power Controller : %3s\n", POWER_CTRL(ctrl) ? "yes" : "no");
1178 dbg(" MRL Sensor : %3s\n", MRL_SENS(ctrl) ? "yes" : "no");
1179 dbg(" Attention Indicator : %3s\n", ATTN_LED(ctrl) ? "yes" : "no");
1180 dbg(" Power Indicator : %3s\n", PWR_LED(ctrl) ? "yes" : "no");
1181 dbg(" Hot-Plug Surprise : %3s\n", HP_SUPR_RM(ctrl) ? "yes" : "no");
1182 dbg(" EMI Present : %3s\n", EMI(ctrl) ? "yes" : "no");
Kenji Kaneshige58086392008-05-27 19:04:30 +09001183 dbg(" Comamnd Completed : %3s\n", NO_CMD_CMPL(ctrl)? "no" : "yes");
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001184 pciehp_readw(ctrl, SLOTSTATUS, &reg16);
1185 dbg("Slot Status : 0x%04x\n", reg16);
1186 pciehp_readw(ctrl, SLOTSTATUS, &reg16);
1187 dbg("Slot Control : 0x%04x\n", reg16);
1188}
1189
Mark Lord08e7a7d2007-11-28 15:11:46 -08001190int pcie_init(struct controller *ctrl, struct pcie_device *dev)
1191{
Mark Lord08e7a7d2007-11-28 15:11:46 -08001192 u32 slot_cap;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001193 struct pci_dev *pdev = dev->port;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001194
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001195 ctrl->pci_dev = pdev;
1196 ctrl->cap_base = pci_find_capability(pdev, PCI_CAP_ID_EXP);
1197 if (!ctrl->cap_base) {
1198 err("%s: Cannot find PCI Express capability\n", __func__);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001199 goto abort;
1200 }
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001201 if (pciehp_readl(ctrl, SLOTCAP, &slot_cap)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001202 err("%s: Cannot read SLOTCAP register\n", __func__);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001203 goto abort;
1204 }
Mark Lord08e7a7d2007-11-28 15:11:46 -08001205
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001206 ctrl->slot_cap = slot_cap;
1207 ctrl->first_slot = slot_cap >> 19;
1208 ctrl->slot_device_offset = 0;
1209 ctrl->num_slots = 1;
1210 ctrl->hpc_ops = &pciehp_hpc_ops;
1211 mutex_init(&ctrl->crit_sect);
1212 mutex_init(&ctrl->ctrl_lock);
1213 init_waitqueue_head(&ctrl->queue);
1214 dbg_ctrl(ctrl);
Kenji Kaneshige58086392008-05-27 19:04:30 +09001215 /*
1216 * Controller doesn't notify of command completion if the "No
1217 * Command Completed Support" bit is set in Slot Capability
1218 * register or the controller supports none of power
1219 * controller, attention led, power led and EMI.
1220 */
1221 if (NO_CMD_CMPL(ctrl) ||
1222 !(POWER_CTRL(ctrl) | ATTN_LED(ctrl) | PWR_LED(ctrl) | EMI(ctrl)))
1223 ctrl->no_cmd_complete = 1;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001224
1225 info("HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n",
1226 pdev->vendor, pdev->device,
1227 pdev->subsystem_vendor, pdev->subsystem_device);
1228
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001229 if (pcie_init_hardware_part1(ctrl, dev))
Mark Lordecdde932007-11-21 15:07:55 -08001230 goto abort;
1231
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001232 if (pciehp_request_irq(ctrl))
1233 goto abort;
Mark Lordecdde932007-11-21 15:07:55 -08001234
1235 /*
1236 * If this is the first controller to be initialized,
1237 * initialize the pciehp work queue
1238 */
1239 if (atomic_add_return(1, &pciehp_num_controllers) == 1) {
1240 pciehp_wq = create_singlethread_workqueue("pciehpd");
1241 if (!pciehp_wq) {
Mark Lordecdde932007-11-21 15:07:55 -08001242 goto abort_free_irq;
1243 }
1244 }
1245
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001246 if (pcie_init_hardware_part2(ctrl, dev))
1247 goto abort_free_irq;
1248
1249 return 0;
1250
Mark Lordecdde932007-11-21 15:07:55 -08001251abort_free_irq:
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001252 pciehp_free_irq(ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001253abort:
1254 return -1;
1255}