blob: 2e501f73c3b6fd28093f6027db3c0214ac35710d [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)
206 pciehp_poll_time = 2; /* reset timer to poll in 2 secs if user doesn't specify at module installation*/
207
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 Kaneshige44ef4ce2006-12-21 17:01:09 -0800224static inline int pcie_wait_cmd(struct controller *ctrl)
225{
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800226 int retval = 0;
227 unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
228 unsigned long timeout = msecs_to_jiffies(msecs);
229 int rc;
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800230
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800231 rc = wait_event_interruptible_timeout(ctrl->queue,
232 !ctrl->cmd_busy, timeout);
233 if (!rc)
234 dbg("Command not completed in 1000 msec\n");
235 else if (rc < 0) {
236 retval = -EINTR;
237 info("Command was interrupted by a signal\n");
238 }
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800239
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800240 return retval;
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800241}
242
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700243/**
244 * pcie_write_cmd - Issue controller command
245 * @slot: slot to which the command is issued
246 * @cmd: command value written to slot control register
247 * @mask: bitmask of slot control register to be modified
248 */
249static int pcie_write_cmd(struct slot *slot, u16 cmd, u16 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800251 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 int retval = 0;
253 u16 slot_status;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700254 u16 slot_ctrl;
255 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800257 mutex_lock(&ctrl->ctrl_lock);
258
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800259 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800261 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800262 goto out;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800263 }
264
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700265 if ((slot_status & CMD_COMPLETED) == CMD_COMPLETED ) {
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800266 /* After 1 sec and CMD_COMPLETED still not set, just
267 proceed forward to issue the next command according
268 to spec. Just print out the error message */
269 dbg("%s: CMD_COMPLETED not clear after 1 sec.\n",
270 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700273 spin_lock_irqsave(&ctrl->lock, flags);
274 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (retval) {
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700276 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
277 goto out_spin_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700280 slot_ctrl &= ~mask;
281 slot_ctrl |= ((cmd & mask) | CMD_CMPL_INTR_ENABLE);
282
283 ctrl->cmd_busy = 1;
284 retval = pciehp_writew(ctrl, SLOTCTRL, slot_ctrl);
285 if (retval)
286 err("%s: Cannot write to SLOTCTRL register\n", __FUNCTION__);
287
288 out_spin_unlock:
289 spin_unlock_irqrestore(&ctrl->lock, flags);
290
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800291 /*
292 * Wait for command completion.
293 */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700294 if (!retval)
295 retval = pcie_wait_cmd(ctrl);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800296 out:
297 mutex_unlock(&ctrl->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return retval;
299}
300
301static int hpc_check_lnk_status(struct controller *ctrl)
302{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 u16 lnk_status;
304 int retval = 0;
305
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800306 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800308 err("%s: Cannot read LNKSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return retval;
310 }
311
312 dbg("%s: lnk_status = %x\n", __FUNCTION__, lnk_status);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700313 if ( (lnk_status & LNK_TRN) || (lnk_status & LNK_TRN_ERR) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 !(lnk_status & NEG_LINK_WD)) {
315 err("%s : Link Training Error occurs \n", __FUNCTION__);
316 retval = -1;
317 return retval;
318 }
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return retval;
321}
322
323
324static int hpc_get_attention_status(struct slot *slot, u8 *status)
325{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800326 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 u16 slot_ctrl;
328 u8 atten_led_state;
329 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800331 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800333 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return retval;
335 }
336
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800337 dbg("%s: SLOTCTRL %x, value read %x\n",
338 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 atten_led_state = (slot_ctrl & ATTN_LED_CTRL) >> 6;
341
342 switch (atten_led_state) {
343 case 0:
344 *status = 0xFF; /* Reserved */
345 break;
346 case 1:
347 *status = 1; /* On */
348 break;
349 case 2:
350 *status = 2; /* Blink */
351 break;
352 case 3:
353 *status = 0; /* Off */
354 break;
355 default:
356 *status = 0xFF;
357 break;
358 }
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return 0;
361}
362
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800363static int hpc_get_power_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800365 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 u16 slot_ctrl;
367 u8 pwr_state;
368 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800370 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800372 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return retval;
374 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800375 dbg("%s: SLOTCTRL %x value read %x\n",
376 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 pwr_state = (slot_ctrl & PWR_CTRL) >> 10;
379
380 switch (pwr_state) {
381 case 0:
382 *status = 1;
383 break;
384 case 1:
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700385 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 break;
387 default:
388 *status = 0xFF;
389 break;
390 }
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return retval;
393}
394
395
396static int hpc_get_latch_status(struct slot *slot, u8 *status)
397{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800398 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 u16 slot_status;
400 int retval = 0;
401
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800402 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800404 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return retval;
406 }
407
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700408 *status = (((slot_status & MRL_STATE) >> 5) == 0) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return 0;
411}
412
413static int hpc_get_adapter_status(struct slot *slot, u8 *status)
414{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800415 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 u16 slot_status;
417 u8 card_state;
418 int retval = 0;
419
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800420 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800422 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return retval;
424 }
425 card_state = (u8)((slot_status & PRSN_STATE) >> 6);
426 *status = (card_state == 1) ? 1 : 0;
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return 0;
429}
430
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800431static int hpc_query_power_fault(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800433 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 u16 slot_status;
435 u8 pwr_fault;
436 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800438 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800440 err("%s: Cannot check for power fault\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return retval;
442 }
443 pwr_fault = (u8)((slot_status & PWR_FAULT_DETECTED) >> 1);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700444
rajesh.shah@intel.com8239def2005-10-31 16:20:13 -0800445 return pwr_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800448static int hpc_get_emi_status(struct slot *slot, u8 *status)
449{
450 struct controller *ctrl = slot->ctrl;
451 u16 slot_status;
452 int retval = 0;
453
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800454 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
455 if (retval) {
456 err("%s : Cannot check EMI status\n", __FUNCTION__);
457 return retval;
458 }
459 *status = (slot_status & EMI_STATE) >> EMI_STATUS_BIT;
460
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800461 return retval;
462}
463
464static int hpc_toggle_emi(struct slot *slot)
465{
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700466 u16 slot_cmd;
467 u16 cmd_mask;
468 int rc;
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800469
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700470 slot_cmd = EMI_CTRL;
471 cmd_mask = EMI_CTRL;
472 if (!pciehp_poll_mode) {
473 slot_cmd = slot_cmd | HP_INTR_ENABLE;
474 cmd_mask = cmd_mask | HP_INTR_ENABLE;
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800475 }
476
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700477 rc = pcie_write_cmd(slot, slot_cmd, cmd_mask);
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800478 slot->last_emi_toggle = get_seconds();
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700479
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800480 return rc;
481}
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483static int hpc_set_attention_status(struct slot *slot, u8 value)
484{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800485 struct controller *ctrl = slot->ctrl;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700486 u16 slot_cmd;
487 u16 cmd_mask;
488 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700490 cmd_mask = ATTN_LED_CTRL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 switch (value) {
492 case 0 : /* turn off */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700493 slot_cmd = 0x00C0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 break;
495 case 1: /* turn on */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700496 slot_cmd = 0x0040;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 break;
498 case 2: /* turn blink */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700499 slot_cmd = 0x0080;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 break;
501 default:
502 return -1;
503 }
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700504 if (!pciehp_poll_mode) {
505 slot_cmd = slot_cmd | HP_INTR_ENABLE;
506 cmd_mask = cmd_mask | HP_INTR_ENABLE;
507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700509 rc = pcie_write_cmd(slot, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800510 dbg("%s: SLOTCTRL %x write cmd %x\n",
511 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return rc;
514}
515
516
517static void hpc_set_green_led_on(struct slot *slot)
518{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800519 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700521 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700522
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700523 slot_cmd = 0x0100;
524 cmd_mask = PWR_LED_CTRL;
525 if (!pciehp_poll_mode) {
526 slot_cmd = slot_cmd | HP_INTR_ENABLE;
527 cmd_mask = cmd_mask | HP_INTR_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700530 pcie_write_cmd(slot, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800532 dbg("%s: SLOTCTRL %x write cmd %x\n",
533 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536static void hpc_set_green_led_off(struct slot *slot)
537{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800538 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700540 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700542 slot_cmd = 0x0300;
543 cmd_mask = PWR_LED_CTRL;
544 if (!pciehp_poll_mode) {
545 slot_cmd = slot_cmd | HP_INTR_ENABLE;
546 cmd_mask = cmd_mask | HP_INTR_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700549 pcie_write_cmd(slot, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800550 dbg("%s: SLOTCTRL %x write cmd %x\n",
551 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554static void hpc_set_green_led_blink(struct slot *slot)
555{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800556 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700558 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700559
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700560 slot_cmd = 0x0200;
561 cmd_mask = PWR_LED_CTRL;
562 if (!pciehp_poll_mode) {
563 slot_cmd = slot_cmd | HP_INTR_ENABLE;
564 cmd_mask = cmd_mask | HP_INTR_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700567 pcie_write_cmd(slot, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800569 dbg("%s: SLOTCTRL %x write cmd %x\n",
570 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573static void hpc_release_ctlr(struct controller *ctrl)
574{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800575 if (pciehp_poll_mode)
576 del_timer(&ctrl->poll_timer);
577 else
578 free_irq(ctrl->pci_dev->irq, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800580 /*
581 * If this is the last controller to be released, destroy the
582 * pciehp work queue
583 */
584 if (atomic_dec_and_test(&pciehp_num_controllers))
585 destroy_workqueue(pciehp_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
588static int hpc_power_on_slot(struct slot * slot)
589{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800590 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700592 u16 cmd_mask;
593 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 int retval = 0;
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 dbg("%s: slot->hp_slot %x\n", __FUNCTION__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Rajesh Shah5a49f202005-11-23 15:44:54 -0800598 /* Clear sticky power-fault bit from previous power failures */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800599 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800601 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
602 return retval;
603 }
604 slot_status &= PWR_FAULT_DETECTED;
605 if (slot_status) {
606 retval = pciehp_writew(ctrl, SLOTSTATUS, slot_status);
607 if (retval) {
608 err("%s: Cannot write to SLOTSTATUS register\n",
609 __FUNCTION__);
610 return retval;
611 }
612 }
613
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700614 slot_cmd = POWER_ON;
615 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800616 /* Enable detection that we turned off at slot power-off time */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700617 if (!pciehp_poll_mode) {
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800618 slot_cmd = slot_cmd |
619 PWR_FAULT_DETECT_ENABLE |
620 MRL_DETECT_ENABLE |
621 PRSN_DETECT_ENABLE |
622 HP_INTR_ENABLE;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700623 cmd_mask = cmd_mask |
624 PWR_FAULT_DETECT_ENABLE |
625 MRL_DETECT_ENABLE |
626 PRSN_DETECT_ENABLE |
627 HP_INTR_ENABLE;
628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700630 retval = pcie_write_cmd(slot, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632 if (retval) {
633 err("%s: Write %x command failed!\n", __FUNCTION__, slot_cmd);
634 return -1;
635 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800636 dbg("%s: SLOTCTRL %x write cmd %x\n",
637 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return retval;
640}
641
642static int hpc_power_off_slot(struct slot * slot)
643{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800644 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700646 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 int retval = 0;
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 dbg("%s: slot->hp_slot %x\n", __FUNCTION__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700651 slot_cmd = POWER_OFF;
652 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800653 /*
654 * If we get MRL or presence detect interrupts now, the isr
655 * will notice the sticky power-fault bit too and issue power
656 * indicator change commands. This will lead to an endless loop
657 * of command completions, since the power-fault bit remains on
658 * till the slot is powered on again.
659 */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700660 if (!pciehp_poll_mode) {
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800661 slot_cmd = (slot_cmd &
662 ~PWR_FAULT_DETECT_ENABLE &
663 ~MRL_DETECT_ENABLE &
664 ~PRSN_DETECT_ENABLE) | HP_INTR_ENABLE;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700665 cmd_mask = cmd_mask |
666 PWR_FAULT_DETECT_ENABLE |
667 MRL_DETECT_ENABLE |
668 PRSN_DETECT_ENABLE |
669 HP_INTR_ENABLE;
670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700672 retval = pcie_write_cmd(slot, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (retval) {
674 err("%s: Write command failed!\n", __FUNCTION__);
675 return -1;
676 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800677 dbg("%s: SLOTCTRL %x write cmd %x\n",
678 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return retval;
681}
682
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800683static irqreturn_t pcie_isr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800685 struct controller *ctrl = (struct controller *)dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 u16 slot_status, intr_detect, intr_loc;
687 u16 temp_word;
688 int hp_slot = 0; /* only 1 slot per PCI Express port */
689 int rc = 0;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700690 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800692 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800694 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return IRQ_NONE;
696 }
697
698 intr_detect = ( ATTN_BUTTN_PRESSED | PWR_FAULT_DETECTED | MRL_SENS_CHANGED |
699 PRSN_DETECT_CHANGED | CMD_COMPLETED );
700
701 intr_loc = slot_status & intr_detect;
702
703 /* Check to see if it was our interrupt */
704 if ( !intr_loc )
705 return IRQ_NONE;
706
707 dbg("%s: intr_loc %x\n", __FUNCTION__, intr_loc);
708 /* Mask Hot-plug Interrupt Enable */
709 if (!pciehp_poll_mode) {
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700710 spin_lock_irqsave(&ctrl->lock, flags);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800711 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800713 err("%s: Cannot read SLOT_CTRL register\n",
714 __FUNCTION__);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700715 spin_unlock_irqrestore(&ctrl->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return IRQ_NONE;
717 }
718
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800719 dbg("%s: pciehp_readw(SLOTCTRL) with value %x\n",
720 __FUNCTION__, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 temp_word = (temp_word & ~HP_INTR_ENABLE & ~CMD_CMPL_INTR_ENABLE) | 0x00;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800722 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
723 if (rc) {
724 err("%s: Cannot write to SLOTCTRL register\n",
725 __FUNCTION__);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700726 spin_unlock_irqrestore(&ctrl->lock, flags);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800727 return IRQ_NONE;
728 }
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700729 spin_unlock_irqrestore(&ctrl->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800731 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800733 err("%s: Cannot read SLOT_STATUS register\n",
734 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return IRQ_NONE;
736 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800737 dbg("%s: pciehp_readw(SLOTSTATUS) with value %x\n",
738 __FUNCTION__, slot_status);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 /* Clear command complete interrupt caused by this write */
741 temp_word = 0x1f;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800742 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800744 err("%s: Cannot write to SLOTSTATUS register\n",
745 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return IRQ_NONE;
747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (intr_loc & CMD_COMPLETED) {
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700751 /*
752 * Command Complete Interrupt Pending
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 */
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800754 ctrl->cmd_busy = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 wake_up_interruptible(&ctrl->queue);
756 }
757
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800758 if (intr_loc & MRL_SENS_CHANGED)
759 pciehp_handle_switch_change(hp_slot, ctrl);
760
761 if (intr_loc & ATTN_BUTTN_PRESSED)
762 pciehp_handle_attention_button(hp_slot, ctrl);
763
764 if (intr_loc & PRSN_DETECT_CHANGED)
765 pciehp_handle_presence_change(hp_slot, ctrl);
766
767 if (intr_loc & PWR_FAULT_DETECTED)
768 pciehp_handle_power_fault(hp_slot, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 /* Clear all events after serving them */
771 temp_word = 0x1F;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800772 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800774 err("%s: Cannot write to SLOTSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return IRQ_NONE;
776 }
777 /* Unmask Hot-plug Interrupt Enable */
778 if (!pciehp_poll_mode) {
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700779 spin_lock_irqsave(&ctrl->lock, flags);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800780 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800782 err("%s: Cannot read SLOTCTRL register\n",
783 __FUNCTION__);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700784 spin_unlock_irqrestore(&ctrl->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return IRQ_NONE;
786 }
787
788 dbg("%s: Unmask Hot-plug Interrupt Enable\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 temp_word = (temp_word & ~HP_INTR_ENABLE) | HP_INTR_ENABLE;
790
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800791 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800793 err("%s: Cannot write to SLOTCTRL register\n",
794 __FUNCTION__);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700795 spin_unlock_irqrestore(&ctrl->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 return IRQ_NONE;
797 }
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700798 spin_unlock_irqrestore(&ctrl->lock, flags);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800799
800 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800802 err("%s: Cannot read SLOT_STATUS register\n",
803 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return IRQ_NONE;
805 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 /* Clear command complete interrupt caused by this write */
808 temp_word = 0x1F;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800809 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800811 err("%s: Cannot write to SLOTSTATUS failed\n",
812 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return IRQ_NONE;
814 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800815 dbg("%s: pciehp_writew(SLOTSTATUS) with value %x\n",
816 __FUNCTION__, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return IRQ_HANDLED;
820}
821
822static int hpc_get_max_lnk_speed (struct slot *slot, enum pci_bus_speed *value)
823{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800824 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 enum pcie_link_speed lnk_speed;
826 u32 lnk_cap;
827 int retval = 0;
828
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800829 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800831 err("%s: Cannot read LNKCAP register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return retval;
833 }
834
835 switch (lnk_cap & 0x000F) {
836 case 1:
837 lnk_speed = PCIE_2PT5GB;
838 break;
839 default:
840 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
841 break;
842 }
843
844 *value = lnk_speed;
845 dbg("Max link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return retval;
848}
849
850static int hpc_get_max_lnk_width (struct slot *slot, enum pcie_link_width *value)
851{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800852 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 enum pcie_link_width lnk_wdth;
854 u32 lnk_cap;
855 int retval = 0;
856
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800857 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800859 err("%s: Cannot read LNKCAP register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return retval;
861 }
862
863 switch ((lnk_cap & 0x03F0) >> 4){
864 case 0:
865 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
866 break;
867 case 1:
868 lnk_wdth = PCIE_LNK_X1;
869 break;
870 case 2:
871 lnk_wdth = PCIE_LNK_X2;
872 break;
873 case 4:
874 lnk_wdth = PCIE_LNK_X4;
875 break;
876 case 8:
877 lnk_wdth = PCIE_LNK_X8;
878 break;
879 case 12:
880 lnk_wdth = PCIE_LNK_X12;
881 break;
882 case 16:
883 lnk_wdth = PCIE_LNK_X16;
884 break;
885 case 32:
886 lnk_wdth = PCIE_LNK_X32;
887 break;
888 default:
889 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
890 break;
891 }
892
893 *value = lnk_wdth;
894 dbg("Max link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return retval;
897}
898
899static int hpc_get_cur_lnk_speed (struct slot *slot, enum pci_bus_speed *value)
900{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800901 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 enum pcie_link_speed lnk_speed = PCI_SPEED_UNKNOWN;
903 int retval = 0;
904 u16 lnk_status;
905
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800906 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800908 err("%s: Cannot read LNKSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return retval;
910 }
911
912 switch (lnk_status & 0x0F) {
913 case 1:
914 lnk_speed = PCIE_2PT5GB;
915 break;
916 default:
917 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
918 break;
919 }
920
921 *value = lnk_speed;
922 dbg("Current link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return retval;
925}
926
927static int hpc_get_cur_lnk_width (struct slot *slot, enum pcie_link_width *value)
928{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800929 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 enum pcie_link_width lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
931 int retval = 0;
932 u16 lnk_status;
933
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800934 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800936 err("%s: Cannot read LNKSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 return retval;
938 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 switch ((lnk_status & 0x03F0) >> 4){
941 case 0:
942 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
943 break;
944 case 1:
945 lnk_wdth = PCIE_LNK_X1;
946 break;
947 case 2:
948 lnk_wdth = PCIE_LNK_X2;
949 break;
950 case 4:
951 lnk_wdth = PCIE_LNK_X4;
952 break;
953 case 8:
954 lnk_wdth = PCIE_LNK_X8;
955 break;
956 case 12:
957 lnk_wdth = PCIE_LNK_X12;
958 break;
959 case 16:
960 lnk_wdth = PCIE_LNK_X16;
961 break;
962 case 32:
963 lnk_wdth = PCIE_LNK_X32;
964 break;
965 default:
966 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
967 break;
968 }
969
970 *value = lnk_wdth;
971 dbg("Current link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 return retval;
974}
975
976static struct hpc_ops pciehp_hpc_ops = {
977 .power_on_slot = hpc_power_on_slot,
978 .power_off_slot = hpc_power_off_slot,
979 .set_attention_status = hpc_set_attention_status,
980 .get_power_status = hpc_get_power_status,
981 .get_attention_status = hpc_get_attention_status,
982 .get_latch_status = hpc_get_latch_status,
983 .get_adapter_status = hpc_get_adapter_status,
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800984 .get_emi_status = hpc_get_emi_status,
985 .toggle_emi = hpc_toggle_emi,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 .get_max_bus_speed = hpc_get_max_lnk_speed,
988 .get_cur_bus_speed = hpc_get_cur_lnk_speed,
989 .get_max_lnk_width = hpc_get_max_lnk_width,
990 .get_cur_lnk_width = hpc_get_cur_lnk_width,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 .query_power_fault = hpc_query_power_fault,
993 .green_led_on = hpc_set_green_led_on,
994 .green_led_off = hpc_set_green_led_off,
995 .green_led_blink = hpc_set_green_led_blink,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 .release_ctlr = hpc_release_ctlr,
998 .check_lnk_status = hpc_check_lnk_status,
999};
1000
Kristen Accardi783c49f2006-03-03 10:16:05 -08001001#ifdef CONFIG_ACPI
1002int pciehp_acpi_get_hp_hw_control_from_firmware(struct pci_dev *dev)
1003{
1004 acpi_status status;
1005 acpi_handle chandle, handle = DEVICE_ACPI_HANDLE(&(dev->dev));
1006 struct pci_dev *pdev = dev;
1007 struct pci_bus *parent;
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +09001008 struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL };
Kristen Accardi783c49f2006-03-03 10:16:05 -08001009
1010 /*
1011 * Per PCI firmware specification, we should run the ACPI _OSC
1012 * method to get control of hotplug hardware before using it.
1013 * If an _OSC is missing, we look for an OSHP to do the same thing.
1014 * To handle different BIOS behavior, we look for _OSC and OSHP
1015 * within the scope of the hotplug controller and its parents, upto
1016 * the host bridge under which this controller exists.
1017 */
1018 while (!handle) {
1019 /*
1020 * This hotplug controller was not listed in the ACPI name
1021 * space at all. Try to get acpi handle of parent pci bus.
1022 */
1023 if (!pdev || !pdev->bus->parent)
1024 break;
1025 parent = pdev->bus->parent;
1026 dbg("Could not find %s in acpi namespace, trying parent\n",
1027 pci_name(pdev));
1028 if (!parent->self)
1029 /* Parent must be a host bridge */
1030 handle = acpi_get_pci_rootbridge_handle(
1031 pci_domain_nr(parent),
1032 parent->number);
1033 else
1034 handle = DEVICE_ACPI_HANDLE(
1035 &(parent->self->dev));
1036 pdev = parent->self;
1037 }
1038
1039 while (handle) {
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +09001040 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
1041 dbg("Trying to get hotplug control for %s \n",
1042 (char *)string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -08001043 status = pci_osc_control_set(handle,
Kristen Carlson Accardi57d90c02007-08-09 16:09:32 -07001044 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL |
Kristen Accardi783c49f2006-03-03 10:16:05 -08001045 OSC_PCI_EXPRESS_NATIVE_HP_CONTROL);
1046 if (status == AE_NOT_FOUND)
1047 status = acpi_run_oshp(handle);
1048 if (ACPI_SUCCESS(status)) {
1049 dbg("Gained control for hotplug HW for pci %s (%s)\n",
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +09001050 pci_name(dev), (char *)string.pointer);
Kristen Accardi81b26bc2006-04-18 14:36:43 -07001051 kfree(string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -08001052 return 0;
1053 }
1054 if (acpi_root_bridge(handle))
1055 break;
1056 chandle = handle;
1057 status = acpi_get_parent(chandle, &handle);
1058 if (ACPI_FAILURE(status))
1059 break;
1060 }
1061
1062 err("Cannot get control of hotplug hardware for pci %s\n",
1063 pci_name(dev));
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +09001064
Kristen Accardi81b26bc2006-04-18 14:36:43 -07001065 kfree(string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -08001066 return -1;
1067}
1068#endif
1069
1070
1071
rajesh.shah@intel.comed6cbcf2005-10-31 16:20:09 -08001072int pcie_init(struct controller * ctrl, struct pcie_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 u16 temp_word;
1076 u16 cap_reg;
1077 u16 intr_enable = 0;
1078 u32 slot_cap;
Kenji Kaneshige75e13172006-12-21 17:01:08 -08001079 int cap_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 u16 slot_status, slot_ctrl;
1081 struct pci_dev *pdev;
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 pdev = dev->port;
Kenji Kaneshige48fe3912006-12-21 17:01:04 -08001084 ctrl->pci_dev = pdev; /* save pci_dev in context */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
rajesh.shah@intel.com1a9ed1b2005-10-31 16:20:10 -08001086 dbg("%s: hotplug controller vendor id 0x%x device id 0x%x\n",
1087 __FUNCTION__, pdev->vendor, pdev->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 if ((cap_base = pci_find_capability(pdev, PCI_CAP_ID_EXP)) == 0) {
1090 dbg("%s: Can't find PCI_CAP_ID_EXP (0x10)\n", __FUNCTION__);
1091 goto abort_free_ctlr;
1092 }
1093
Dely Sy8b245e42005-05-06 17:19:09 -07001094 ctrl->cap_base = cap_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Kenji Kaneshige75e13172006-12-21 17:01:08 -08001096 dbg("%s: pcie_cap_base %x\n", __FUNCTION__, cap_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001098 rc = pciehp_readw(ctrl, CAPREG, &cap_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001100 err("%s: Cannot read CAPREG register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 goto abort_free_ctlr;
1102 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001103 dbg("%s: CAPREG offset %x cap_reg %x\n",
1104 __FUNCTION__, ctrl->cap_base + CAPREG, cap_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Dely Sy8b245e42005-05-06 17:19:09 -07001106 if (((cap_reg & SLOT_IMPL) == 0) || (((cap_reg & DEV_PORT_TYPE) != 0x0040)
1107 && ((cap_reg & DEV_PORT_TYPE) != 0x0060))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 dbg("%s : This is not a root port or the port is not connected to a slot\n", __FUNCTION__);
1109 goto abort_free_ctlr;
1110 }
1111
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001112 rc = pciehp_readl(ctrl, SLOTCAP, &slot_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001114 err("%s: Cannot read SLOTCAP register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 goto abort_free_ctlr;
1116 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001117 dbg("%s: SLOTCAP offset %x slot_cap %x\n",
1118 __FUNCTION__, ctrl->cap_base + SLOTCAP, slot_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120 if (!(slot_cap & HP_CAP)) {
1121 dbg("%s : This slot is not hot-plug capable\n", __FUNCTION__);
1122 goto abort_free_ctlr;
1123 }
1124 /* For debugging purpose */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001125 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001127 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 goto abort_free_ctlr;
1129 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001130 dbg("%s: SLOTSTATUS offset %x slot_status %x\n",
1131 __FUNCTION__, ctrl->cap_base + SLOTSTATUS, slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001133 rc = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001135 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 goto abort_free_ctlr;
1137 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001138 dbg("%s: SLOTCTRL offset %x slot_ctrl %x\n",
1139 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 for ( rc = 0; rc < DEVICE_COUNT_RESOURCE; rc++)
1142 if (pci_resource_len(pdev, rc) > 0)
Greg Kroah-Hartman1396a8c2006-06-12 15:14:29 -07001143 dbg("pci resource[%d] start=0x%llx(len=0x%llx)\n", rc,
1144 (unsigned long long)pci_resource_start(pdev, rc),
1145 (unsigned long long)pci_resource_len(pdev, rc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001147 info("HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n", pdev->vendor, pdev->device,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 pdev->subsystem_vendor, pdev->subsystem_device);
1149
Ingo Molnar6aa4cdd2006-01-13 16:02:15 +01001150 mutex_init(&ctrl->crit_sect);
Kenji Kaneshigedd5619c2006-09-22 10:17:29 -07001151 mutex_init(&ctrl->ctrl_lock);
Kenji Kaneshigef4778362007-05-31 09:43:34 -07001152 spin_lock_init(&ctrl->lock);
Kenji Kaneshigedd5619c2006-09-22 10:17:29 -07001153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 /* setup wait queue */
1155 init_waitqueue_head(&ctrl->queue);
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 /* return PCI Controller Info */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -08001158 ctrl->slot_device_offset = 0;
1159 ctrl->num_slots = 1;
1160 ctrl->first_slot = slot_cap >> 19;
1161 ctrl->ctrlcap = slot_cap & 0x0000007f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 /* Mask Hot-plug Interrupt Enable */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001164 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001166 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 goto abort_free_ctlr;
1168 }
1169
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001170 dbg("%s: SLOTCTRL %x value read %x\n",
1171 __FUNCTION__, ctrl->cap_base + SLOTCTRL, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 temp_word = (temp_word & ~HP_INTR_ENABLE & ~CMD_CMPL_INTR_ENABLE) | 0x00;
1173
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001174 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001176 err("%s: Cannot write to SLOTCTRL register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 goto abort_free_ctlr;
1178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001180 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001182 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 goto abort_free_ctlr;
1184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 temp_word = 0x1F; /* Clear all events */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001187 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001189 err("%s: Cannot write to SLOTSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 goto abort_free_ctlr;
1191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Kenji Kaneshige48fe3912006-12-21 17:01:04 -08001193 if (pciehp_poll_mode) {
1194 /* Install interrupt polling timer. Start with 10 sec delay */
1195 init_timer(&ctrl->poll_timer);
1196 start_int_poll_timer(ctrl, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 } else {
1198 /* Installs the interrupt handler */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -08001199 rc = request_irq(ctrl->pci_dev->irq, pcie_isr, IRQF_SHARED,
1200 MY_NAME, (void *)ctrl);
1201 dbg("%s: request_irq %d for hpc%d (returns %d)\n",
Kenji Kaneshige5d386e12007-03-06 15:02:26 -08001202 __FUNCTION__, ctrl->pci_dev->irq,
1203 atomic_read(&pciehp_num_controllers), rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 if (rc) {
Kenji Kaneshige48fe3912006-12-21 17:01:04 -08001205 err("Can't get irq %d for the hotplug controller\n",
1206 ctrl->pci_dev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 goto abort_free_ctlr;
1208 }
1209 }
rajesh.shah@intel.com1a9ed1b2005-10-31 16:20:10 -08001210 dbg("pciehp ctrl b:d:f:irq=0x%x:%x:%x:%x\n", pdev->bus->number,
1211 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn), dev->irq);
1212
Kenji Kaneshige5d386e12007-03-06 15:02:26 -08001213 /*
1214 * If this is the first controller to be initialized,
1215 * initialize the pciehp work queue
1216 */
1217 if (atomic_add_return(1, &pciehp_num_controllers) == 1) {
1218 pciehp_wq = create_singlethread_workqueue("pciehpd");
1219 if (!pciehp_wq) {
1220 rc = -ENOMEM;
1221 goto abort_free_irq;
1222 }
1223 }
1224
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001225 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001227 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
Jan Beulich9c64f972006-05-09 00:50:31 -07001228 goto abort_free_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 intr_enable = intr_enable | PRSN_DETECT_ENABLE;
1232
1233 if (ATTN_BUTTN(slot_cap))
1234 intr_enable = intr_enable | ATTN_BUTTN_ENABLE;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 if (POWER_CTRL(slot_cap))
1237 intr_enable = intr_enable | PWR_FAULT_DETECT_ENABLE;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 if (MRL_SENS(slot_cap))
1240 intr_enable = intr_enable | MRL_DETECT_ENABLE;
1241
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001242 temp_word = (temp_word & ~intr_enable) | intr_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 if (pciehp_poll_mode) {
1245 temp_word = (temp_word & ~HP_INTR_ENABLE) | 0x0;
1246 } else {
1247 temp_word = (temp_word & ~HP_INTR_ENABLE) | HP_INTR_ENABLE;
1248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
1250 /* Unmask Hot-plug Interrupt Enable for the interrupt notification mechanism case */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001251 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001253 err("%s: Cannot write to SLOTCTRL register\n", __FUNCTION__);
Jan Beulich9c64f972006-05-09 00:50:31 -07001254 goto abort_free_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001256 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001258 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
Jan Beulich9c64f972006-05-09 00:50:31 -07001259 goto abort_disable_intr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 temp_word = 0x1F; /* Clear all events */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001263 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001265 err("%s: Cannot write to SLOTSTATUS register\n", __FUNCTION__);
Jan Beulich9c64f972006-05-09 00:50:31 -07001266 goto abort_disable_intr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001268
rajesh.shah@intel.coma3a45ec2005-10-31 16:20:12 -08001269 if (pciehp_force) {
1270 dbg("Bypassing BIOS check for pciehp use on %s\n",
1271 pci_name(ctrl->pci_dev));
1272 } else {
Rajesh Shah6560aa52005-11-07 13:37:36 -08001273 rc = pciehp_get_hp_hw_control_from_firmware(ctrl->pci_dev);
rajesh.shah@intel.coma3a45ec2005-10-31 16:20:12 -08001274 if (rc)
Jan Beulich9c64f972006-05-09 00:50:31 -07001275 goto abort_disable_intr;
rajesh.shah@intel.coma3a45ec2005-10-31 16:20:12 -08001276 }
rajesh.shah@intel.coma8a2be92005-10-31 16:20:07 -08001277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 ctrl->hpc_ops = &pciehp_hpc_ops;
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 return 0;
1281
1282 /* We end up here for the many possible ways to fail this API. */
Jan Beulich9c64f972006-05-09 00:50:31 -07001283abort_disable_intr:
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001284 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
Jan Beulich9c64f972006-05-09 00:50:31 -07001285 if (!rc) {
1286 temp_word &= ~(intr_enable | HP_INTR_ENABLE);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001287 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
Jan Beulich9c64f972006-05-09 00:50:31 -07001288 }
1289 if (rc)
1290 err("%s : disabling interrupts failed\n", __FUNCTION__);
1291
1292abort_free_irq:
1293 if (pciehp_poll_mode)
Kenji Kaneshige48fe3912006-12-21 17:01:04 -08001294 del_timer_sync(&ctrl->poll_timer);
Jan Beulich9c64f972006-05-09 00:50:31 -07001295 else
Kenji Kaneshige48fe3912006-12-21 17:01:04 -08001296 free_irq(ctrl->pci_dev->irq, ctrl);
Jan Beulich9c64f972006-05-09 00:50:31 -07001297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298abort_free_ctlr:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 return -1;
1300}