blob: 698975a6a21c712b46654cba06b71b641612a143 [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 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323static int hpc_get_attention_status(struct slot *slot, u8 *status)
324{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800325 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 u16 slot_ctrl;
327 u8 atten_led_state;
328 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800330 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800332 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return retval;
334 }
335
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800336 dbg("%s: SLOTCTRL %x, value read %x\n",
337 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 atten_led_state = (slot_ctrl & ATTN_LED_CTRL) >> 6;
340
341 switch (atten_led_state) {
342 case 0:
343 *status = 0xFF; /* Reserved */
344 break;
345 case 1:
346 *status = 1; /* On */
347 break;
348 case 2:
349 *status = 2; /* Blink */
350 break;
351 case 3:
352 *status = 0; /* Off */
353 break;
354 default:
355 *status = 0xFF;
356 break;
357 }
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return 0;
360}
361
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800362static int hpc_get_power_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800364 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 u16 slot_ctrl;
366 u8 pwr_state;
367 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800369 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800371 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return retval;
373 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800374 dbg("%s: SLOTCTRL %x value read %x\n",
375 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 pwr_state = (slot_ctrl & PWR_CTRL) >> 10;
378
379 switch (pwr_state) {
380 case 0:
381 *status = 1;
382 break;
383 case 1:
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700384 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 break;
386 default:
387 *status = 0xFF;
388 break;
389 }
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return retval;
392}
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394static int hpc_get_latch_status(struct slot *slot, u8 *status)
395{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800396 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 u16 slot_status;
398 int retval = 0;
399
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800400 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800402 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return retval;
404 }
405
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700406 *status = (((slot_status & MRL_STATE) >> 5) == 0) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return 0;
409}
410
411static int hpc_get_adapter_status(struct slot *slot, u8 *status)
412{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800413 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 u16 slot_status;
415 u8 card_state;
416 int retval = 0;
417
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800418 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800420 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return retval;
422 }
423 card_state = (u8)((slot_status & PRSN_STATE) >> 6);
424 *status = (card_state == 1) ? 1 : 0;
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return 0;
427}
428
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800429static int hpc_query_power_fault(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800431 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 u16 slot_status;
433 u8 pwr_fault;
434 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800436 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800438 err("%s: Cannot check for power fault\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return retval;
440 }
441 pwr_fault = (u8)((slot_status & PWR_FAULT_DETECTED) >> 1);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700442
rajesh.shah@intel.com8239def2005-10-31 16:20:13 -0800443 return pwr_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800446static int hpc_get_emi_status(struct slot *slot, u8 *status)
447{
448 struct controller *ctrl = slot->ctrl;
449 u16 slot_status;
450 int retval = 0;
451
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800452 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
453 if (retval) {
454 err("%s : Cannot check EMI status\n", __FUNCTION__);
455 return retval;
456 }
457 *status = (slot_status & EMI_STATE) >> EMI_STATUS_BIT;
458
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800459 return retval;
460}
461
462static int hpc_toggle_emi(struct slot *slot)
463{
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700464 u16 slot_cmd;
465 u16 cmd_mask;
466 int rc;
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800467
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700468 slot_cmd = EMI_CTRL;
469 cmd_mask = EMI_CTRL;
470 if (!pciehp_poll_mode) {
471 slot_cmd = slot_cmd | HP_INTR_ENABLE;
472 cmd_mask = cmd_mask | HP_INTR_ENABLE;
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800473 }
474
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700475 rc = pcie_write_cmd(slot, slot_cmd, cmd_mask);
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800476 slot->last_emi_toggle = get_seconds();
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700477
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800478 return rc;
479}
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481static int hpc_set_attention_status(struct slot *slot, u8 value)
482{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800483 struct controller *ctrl = slot->ctrl;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700484 u16 slot_cmd;
485 u16 cmd_mask;
486 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700488 cmd_mask = ATTN_LED_CTRL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 switch (value) {
490 case 0 : /* turn off */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700491 slot_cmd = 0x00C0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 break;
493 case 1: /* turn on */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700494 slot_cmd = 0x0040;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 break;
496 case 2: /* turn blink */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700497 slot_cmd = 0x0080;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 break;
499 default:
500 return -1;
501 }
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700502 if (!pciehp_poll_mode) {
503 slot_cmd = slot_cmd | HP_INTR_ENABLE;
504 cmd_mask = cmd_mask | HP_INTR_ENABLE;
505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700507 rc = pcie_write_cmd(slot, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800508 dbg("%s: SLOTCTRL %x write cmd %x\n",
509 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return rc;
512}
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514static void hpc_set_green_led_on(struct slot *slot)
515{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800516 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700518 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700519
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700520 slot_cmd = 0x0100;
521 cmd_mask = PWR_LED_CTRL;
522 if (!pciehp_poll_mode) {
523 slot_cmd = slot_cmd | HP_INTR_ENABLE;
524 cmd_mask = cmd_mask | HP_INTR_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700527 pcie_write_cmd(slot, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800529 dbg("%s: SLOTCTRL %x write cmd %x\n",
530 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
533static void hpc_set_green_led_off(struct slot *slot)
534{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800535 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700537 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700539 slot_cmd = 0x0300;
540 cmd_mask = PWR_LED_CTRL;
541 if (!pciehp_poll_mode) {
542 slot_cmd = slot_cmd | HP_INTR_ENABLE;
543 cmd_mask = cmd_mask | HP_INTR_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700546 pcie_write_cmd(slot, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800547 dbg("%s: SLOTCTRL %x write cmd %x\n",
548 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
551static void hpc_set_green_led_blink(struct slot *slot)
552{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800553 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700555 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700556
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700557 slot_cmd = 0x0200;
558 cmd_mask = PWR_LED_CTRL;
559 if (!pciehp_poll_mode) {
560 slot_cmd = slot_cmd | HP_INTR_ENABLE;
561 cmd_mask = cmd_mask | HP_INTR_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700564 pcie_write_cmd(slot, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800566 dbg("%s: SLOTCTRL %x write cmd %x\n",
567 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570static void hpc_release_ctlr(struct controller *ctrl)
571{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800572 if (pciehp_poll_mode)
573 del_timer(&ctrl->poll_timer);
574 else
575 free_irq(ctrl->pci_dev->irq, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800577 /*
578 * If this is the last controller to be released, destroy the
579 * pciehp work queue
580 */
581 if (atomic_dec_and_test(&pciehp_num_controllers))
582 destroy_workqueue(pciehp_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
585static int hpc_power_on_slot(struct slot * slot)
586{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800587 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700589 u16 cmd_mask;
590 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 int retval = 0;
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 dbg("%s: slot->hp_slot %x\n", __FUNCTION__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Rajesh Shah5a49f202005-11-23 15:44:54 -0800595 /* Clear sticky power-fault bit from previous power failures */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800596 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800598 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
599 return retval;
600 }
601 slot_status &= PWR_FAULT_DETECTED;
602 if (slot_status) {
603 retval = pciehp_writew(ctrl, SLOTSTATUS, slot_status);
604 if (retval) {
605 err("%s: Cannot write to SLOTSTATUS register\n",
606 __FUNCTION__);
607 return retval;
608 }
609 }
610
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700611 slot_cmd = POWER_ON;
612 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800613 /* Enable detection that we turned off at slot power-off time */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700614 if (!pciehp_poll_mode) {
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800615 slot_cmd = slot_cmd |
616 PWR_FAULT_DETECT_ENABLE |
617 MRL_DETECT_ENABLE |
618 PRSN_DETECT_ENABLE |
619 HP_INTR_ENABLE;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700620 cmd_mask = cmd_mask |
621 PWR_FAULT_DETECT_ENABLE |
622 MRL_DETECT_ENABLE |
623 PRSN_DETECT_ENABLE |
624 HP_INTR_ENABLE;
625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700627 retval = pcie_write_cmd(slot, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 if (retval) {
630 err("%s: Write %x command failed!\n", __FUNCTION__, slot_cmd);
631 return -1;
632 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800633 dbg("%s: SLOTCTRL %x write cmd %x\n",
634 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 return retval;
637}
638
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900639static inline int pcie_mask_bad_dllp(struct controller *ctrl)
640{
641 struct pci_dev *dev = ctrl->pci_dev;
642 int pos;
643 u32 reg;
644
645 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
646 if (!pos)
647 return 0;
648 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
649 if (reg & PCI_ERR_COR_BAD_DLLP)
650 return 0;
651 reg |= PCI_ERR_COR_BAD_DLLP;
652 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
653 return 1;
654}
655
656static inline void pcie_unmask_bad_dllp(struct controller *ctrl)
657{
658 struct pci_dev *dev = ctrl->pci_dev;
659 u32 reg;
660 int pos;
661
662 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
663 if (!pos)
664 return;
665 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
666 if (!(reg & PCI_ERR_COR_BAD_DLLP))
667 return;
668 reg &= ~PCI_ERR_COR_BAD_DLLP;
669 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
670}
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672static int hpc_power_off_slot(struct slot * slot)
673{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800674 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700676 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 int retval = 0;
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900678 int changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 dbg("%s: slot->hp_slot %x\n", __FUNCTION__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900682 /*
683 * Set Bad DLLP Mask bit in Correctable Error Mask
684 * Register. This is the workaround against Bad DLLP error
685 * that sometimes happens during turning power off the slot
686 * which conforms to PCI Express 1.0a spec.
687 */
688 changed = pcie_mask_bad_dllp(ctrl);
689
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700690 slot_cmd = POWER_OFF;
691 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800692 /*
693 * If we get MRL or presence detect interrupts now, the isr
694 * will notice the sticky power-fault bit too and issue power
695 * indicator change commands. This will lead to an endless loop
696 * of command completions, since the power-fault bit remains on
697 * till the slot is powered on again.
698 */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700699 if (!pciehp_poll_mode) {
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800700 slot_cmd = (slot_cmd &
701 ~PWR_FAULT_DETECT_ENABLE &
702 ~MRL_DETECT_ENABLE &
703 ~PRSN_DETECT_ENABLE) | HP_INTR_ENABLE;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700704 cmd_mask = cmd_mask |
705 PWR_FAULT_DETECT_ENABLE |
706 MRL_DETECT_ENABLE |
707 PRSN_DETECT_ENABLE |
708 HP_INTR_ENABLE;
709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700711 retval = pcie_write_cmd(slot, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 if (retval) {
713 err("%s: Write command failed!\n", __FUNCTION__);
Kenji Kaneshigec1ef5cb2008-03-04 13:01:14 -0800714 retval = -1;
715 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800717 dbg("%s: SLOTCTRL %x write cmd %x\n",
718 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Kenji Kaneshige8bb7c7a2007-12-20 19:43:56 +0900720 /*
721 * After turning power off, we must wait for at least 1 second
722 * before taking any action that relies on power having been
723 * removed from the slot/adapter.
724 */
725 msleep(1000);
Kenji Kaneshigec1ef5cb2008-03-04 13:01:14 -0800726 out:
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900727 if (changed)
728 pcie_unmask_bad_dllp(ctrl);
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return retval;
731}
732
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800733static irqreturn_t pcie_isr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800735 struct controller *ctrl = (struct controller *)dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 u16 slot_status, intr_detect, intr_loc;
737 u16 temp_word;
738 int hp_slot = 0; /* only 1 slot per PCI Express port */
739 int rc = 0;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700740 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800742 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800744 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return IRQ_NONE;
746 }
747
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700748 intr_detect = (ATTN_BUTTN_PRESSED | PWR_FAULT_DETECTED |
749 MRL_SENS_CHANGED | PRSN_DETECT_CHANGED | CMD_COMPLETED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 intr_loc = slot_status & intr_detect;
752
753 /* Check to see if it was our interrupt */
754 if ( !intr_loc )
755 return IRQ_NONE;
756
757 dbg("%s: intr_loc %x\n", __FUNCTION__, intr_loc);
758 /* Mask Hot-plug Interrupt Enable */
759 if (!pciehp_poll_mode) {
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700760 spin_lock_irqsave(&ctrl->lock, flags);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800761 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800763 err("%s: Cannot read SLOT_CTRL register\n",
764 __FUNCTION__);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700765 spin_unlock_irqrestore(&ctrl->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return IRQ_NONE;
767 }
768
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800769 dbg("%s: pciehp_readw(SLOTCTRL) with value %x\n",
770 __FUNCTION__, temp_word);
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700771 temp_word = (temp_word & ~HP_INTR_ENABLE &
772 ~CMD_CMPL_INTR_ENABLE) | 0x00;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800773 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
774 if (rc) {
775 err("%s: Cannot write to SLOTCTRL register\n",
776 __FUNCTION__);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700777 spin_unlock_irqrestore(&ctrl->lock, flags);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800778 return IRQ_NONE;
779 }
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700780 spin_unlock_irqrestore(&ctrl->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800782 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800784 err("%s: Cannot read SLOT_STATUS register\n",
785 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return IRQ_NONE;
787 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800788 dbg("%s: pciehp_readw(SLOTSTATUS) with value %x\n",
789 __FUNCTION__, slot_status);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 /* Clear command complete interrupt caused by this write */
792 temp_word = 0x1f;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800793 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800795 err("%s: Cannot write to SLOTSTATUS register\n",
796 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return IRQ_NONE;
798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (intr_loc & CMD_COMPLETED) {
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700802 /*
803 * Command Complete Interrupt Pending
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 */
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800805 ctrl->cmd_busy = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 wake_up_interruptible(&ctrl->queue);
807 }
808
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800809 if (intr_loc & MRL_SENS_CHANGED)
810 pciehp_handle_switch_change(hp_slot, ctrl);
811
812 if (intr_loc & ATTN_BUTTN_PRESSED)
813 pciehp_handle_attention_button(hp_slot, ctrl);
814
815 if (intr_loc & PRSN_DETECT_CHANGED)
816 pciehp_handle_presence_change(hp_slot, ctrl);
817
818 if (intr_loc & PWR_FAULT_DETECTED)
819 pciehp_handle_power_fault(hp_slot, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 /* Clear all events after serving them */
822 temp_word = 0x1F;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800823 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800825 err("%s: Cannot write to SLOTSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return IRQ_NONE;
827 }
828 /* Unmask Hot-plug Interrupt Enable */
829 if (!pciehp_poll_mode) {
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700830 spin_lock_irqsave(&ctrl->lock, flags);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800831 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800833 err("%s: Cannot read SLOTCTRL register\n",
834 __FUNCTION__);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700835 spin_unlock_irqrestore(&ctrl->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return IRQ_NONE;
837 }
838
839 dbg("%s: Unmask Hot-plug Interrupt Enable\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 temp_word = (temp_word & ~HP_INTR_ENABLE) | HP_INTR_ENABLE;
841
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800842 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800844 err("%s: Cannot write to SLOTCTRL register\n",
845 __FUNCTION__);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700846 spin_unlock_irqrestore(&ctrl->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return IRQ_NONE;
848 }
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700849 spin_unlock_irqrestore(&ctrl->lock, flags);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800850
851 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800853 err("%s: Cannot read SLOT_STATUS register\n",
854 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return IRQ_NONE;
856 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 /* Clear command complete interrupt caused by this write */
859 temp_word = 0x1F;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800860 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800862 err("%s: Cannot write to SLOTSTATUS failed\n",
863 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 return IRQ_NONE;
865 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800866 dbg("%s: pciehp_writew(SLOTSTATUS) with value %x\n",
867 __FUNCTION__, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return IRQ_HANDLED;
871}
872
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700873static int hpc_get_max_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800875 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 enum pcie_link_speed lnk_speed;
877 u32 lnk_cap;
878 int retval = 0;
879
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800880 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800882 err("%s: Cannot read LNKCAP register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return retval;
884 }
885
886 switch (lnk_cap & 0x000F) {
887 case 1:
888 lnk_speed = PCIE_2PT5GB;
889 break;
890 default:
891 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
892 break;
893 }
894
895 *value = lnk_speed;
896 dbg("Max link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return retval;
899}
900
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700901static int hpc_get_max_lnk_width(struct slot *slot,
902 enum pcie_link_width *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800904 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 enum pcie_link_width lnk_wdth;
906 u32 lnk_cap;
907 int retval = 0;
908
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800909 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800911 err("%s: Cannot read LNKCAP register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 return retval;
913 }
914
915 switch ((lnk_cap & 0x03F0) >> 4){
916 case 0:
917 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
918 break;
919 case 1:
920 lnk_wdth = PCIE_LNK_X1;
921 break;
922 case 2:
923 lnk_wdth = PCIE_LNK_X2;
924 break;
925 case 4:
926 lnk_wdth = PCIE_LNK_X4;
927 break;
928 case 8:
929 lnk_wdth = PCIE_LNK_X8;
930 break;
931 case 12:
932 lnk_wdth = PCIE_LNK_X12;
933 break;
934 case 16:
935 lnk_wdth = PCIE_LNK_X16;
936 break;
937 case 32:
938 lnk_wdth = PCIE_LNK_X32;
939 break;
940 default:
941 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
942 break;
943 }
944
945 *value = lnk_wdth;
946 dbg("Max link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return retval;
949}
950
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700951static int hpc_get_cur_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800953 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 enum pcie_link_speed lnk_speed = PCI_SPEED_UNKNOWN;
955 int retval = 0;
956 u16 lnk_status;
957
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800958 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800960 err("%s: Cannot read LNKSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return retval;
962 }
963
964 switch (lnk_status & 0x0F) {
965 case 1:
966 lnk_speed = PCIE_2PT5GB;
967 break;
968 default:
969 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
970 break;
971 }
972
973 *value = lnk_speed;
974 dbg("Current link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 return retval;
977}
978
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700979static int hpc_get_cur_lnk_width(struct slot *slot,
980 enum pcie_link_width *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800982 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 enum pcie_link_width lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
984 int retval = 0;
985 u16 lnk_status;
986
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800987 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (retval) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800989 err("%s: Cannot read LNKSTATUS register\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 return retval;
991 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 switch ((lnk_status & 0x03F0) >> 4){
994 case 0:
995 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
996 break;
997 case 1:
998 lnk_wdth = PCIE_LNK_X1;
999 break;
1000 case 2:
1001 lnk_wdth = PCIE_LNK_X2;
1002 break;
1003 case 4:
1004 lnk_wdth = PCIE_LNK_X4;
1005 break;
1006 case 8:
1007 lnk_wdth = PCIE_LNK_X8;
1008 break;
1009 case 12:
1010 lnk_wdth = PCIE_LNK_X12;
1011 break;
1012 case 16:
1013 lnk_wdth = PCIE_LNK_X16;
1014 break;
1015 case 32:
1016 lnk_wdth = PCIE_LNK_X32;
1017 break;
1018 default:
1019 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
1020 break;
1021 }
1022
1023 *value = lnk_wdth;
1024 dbg("Current link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -07001025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return retval;
1027}
1028
1029static struct hpc_ops pciehp_hpc_ops = {
1030 .power_on_slot = hpc_power_on_slot,
1031 .power_off_slot = hpc_power_off_slot,
1032 .set_attention_status = hpc_set_attention_status,
1033 .get_power_status = hpc_get_power_status,
1034 .get_attention_status = hpc_get_attention_status,
1035 .get_latch_status = hpc_get_latch_status,
1036 .get_adapter_status = hpc_get_adapter_status,
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -08001037 .get_emi_status = hpc_get_emi_status,
1038 .toggle_emi = hpc_toggle_emi,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040 .get_max_bus_speed = hpc_get_max_lnk_speed,
1041 .get_cur_bus_speed = hpc_get_cur_lnk_speed,
1042 .get_max_lnk_width = hpc_get_max_lnk_width,
1043 .get_cur_lnk_width = hpc_get_cur_lnk_width,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 .query_power_fault = hpc_query_power_fault,
1046 .green_led_on = hpc_set_green_led_on,
1047 .green_led_off = hpc_set_green_led_off,
1048 .green_led_blink = hpc_set_green_led_blink,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 .release_ctlr = hpc_release_ctlr,
1051 .check_lnk_status = hpc_check_lnk_status,
1052};
1053
Kristen Accardi783c49f2006-03-03 10:16:05 -08001054#ifdef CONFIG_ACPI
1055int pciehp_acpi_get_hp_hw_control_from_firmware(struct pci_dev *dev)
1056{
1057 acpi_status status;
1058 acpi_handle chandle, handle = DEVICE_ACPI_HANDLE(&(dev->dev));
1059 struct pci_dev *pdev = dev;
1060 struct pci_bus *parent;
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +09001061 struct acpi_buffer string = { ACPI_ALLOCATE_BUFFER, NULL };
Kristen Accardi783c49f2006-03-03 10:16:05 -08001062
1063 /*
1064 * Per PCI firmware specification, we should run the ACPI _OSC
1065 * method to get control of hotplug hardware before using it.
1066 * If an _OSC is missing, we look for an OSHP to do the same thing.
1067 * To handle different BIOS behavior, we look for _OSC and OSHP
1068 * within the scope of the hotplug controller and its parents, upto
1069 * the host bridge under which this controller exists.
1070 */
1071 while (!handle) {
1072 /*
1073 * This hotplug controller was not listed in the ACPI name
1074 * space at all. Try to get acpi handle of parent pci bus.
1075 */
1076 if (!pdev || !pdev->bus->parent)
1077 break;
1078 parent = pdev->bus->parent;
1079 dbg("Could not find %s in acpi namespace, trying parent\n",
1080 pci_name(pdev));
1081 if (!parent->self)
1082 /* Parent must be a host bridge */
1083 handle = acpi_get_pci_rootbridge_handle(
1084 pci_domain_nr(parent),
1085 parent->number);
1086 else
1087 handle = DEVICE_ACPI_HANDLE(
1088 &(parent->self->dev));
1089 pdev = parent->self;
1090 }
1091
1092 while (handle) {
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +09001093 acpi_get_name(handle, ACPI_FULL_PATHNAME, &string);
1094 dbg("Trying to get hotplug control for %s \n",
1095 (char *)string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -08001096 status = pci_osc_control_set(handle,
Kristen Carlson Accardi57d90c02007-08-09 16:09:32 -07001097 OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL |
Kristen Accardi783c49f2006-03-03 10:16:05 -08001098 OSC_PCI_EXPRESS_NATIVE_HP_CONTROL);
1099 if (status == AE_NOT_FOUND)
1100 status = acpi_run_oshp(handle);
1101 if (ACPI_SUCCESS(status)) {
1102 dbg("Gained control for hotplug HW for pci %s (%s)\n",
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +09001103 pci_name(dev), (char *)string.pointer);
Kristen Accardi81b26bc2006-04-18 14:36:43 -07001104 kfree(string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -08001105 return 0;
1106 }
1107 if (acpi_root_bridge(handle))
1108 break;
1109 chandle = handle;
1110 status = acpi_get_parent(chandle, &handle);
1111 if (ACPI_FAILURE(status))
1112 break;
1113 }
1114
1115 err("Cannot get control of hotplug hardware for pci %s\n",
1116 pci_name(dev));
MUNEDA Takahirob2e6e3b2006-03-17 09:18:39 +09001117
Kristen Accardi81b26bc2006-04-18 14:36:43 -07001118 kfree(string.pointer);
Kristen Accardi783c49f2006-03-03 10:16:05 -08001119 return -1;
1120}
1121#endif
1122
Mark Lordecdde932007-11-21 15:07:55 -08001123static int pcie_init_hardware_part1(struct controller *ctrl,
1124 struct pcie_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 u16 temp_word;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 u32 slot_cap;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001129 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001131 rc = pciehp_readl(ctrl, SLOTCAP, &slot_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001133 err("%s: Cannot read SLOTCAP register\n", __FUNCTION__);
Mark Lordecdde932007-11-21 15:07:55 -08001134 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 /* Mask Hot-plug Interrupt Enable */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001138 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001140 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
Mark Lordecdde932007-11-21 15:07:55 -08001141 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
1143
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001144 dbg("%s: SLOTCTRL %x value read %x\n",
1145 __FUNCTION__, ctrl->cap_base + SLOTCTRL, temp_word);
Kenji Kaneshige40730d12007-08-09 16:09:38 -07001146 temp_word = (temp_word & ~HP_INTR_ENABLE & ~CMD_CMPL_INTR_ENABLE) |
1147 0x00;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001149 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001151 err("%s: Cannot write to SLOTCTRL register\n", __FUNCTION__);
Mark Lordecdde932007-11-21 15:07:55 -08001152 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001155 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001157 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
Mark Lordecdde932007-11-21 15:07:55 -08001158 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 temp_word = 0x1F; /* Clear all events */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001162 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001164 err("%s: Cannot write to SLOTSTATUS register\n", __FUNCTION__);
Mark Lordecdde932007-11-21 15:07:55 -08001165 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 }
Mark Lordecdde932007-11-21 15:07:55 -08001167 return 0;
1168}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Mark Lordecdde932007-11-21 15:07:55 -08001170int pcie_init_hardware_part2(struct controller *ctrl, struct pcie_device *dev)
1171{
1172 int rc;
1173 u16 temp_word;
1174 u16 intr_enable = 0;
1175 u32 slot_cap;
1176 u16 slot_status;
Kenji Kaneshige5d386e12007-03-06 15:02:26 -08001177
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001178 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001180 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
Mark Lordecdde932007-11-21 15:07:55 -08001181 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
1184 intr_enable = intr_enable | PRSN_DETECT_ENABLE;
1185
Mark Lordecdde932007-11-21 15:07:55 -08001186 rc = pciehp_readl(ctrl, SLOTCAP, &slot_cap);
1187 if (rc) {
1188 err("%s: Cannot read SLOTCAP register\n", __FUNCTION__);
1189 goto abort;
1190 }
1191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (ATTN_BUTTN(slot_cap))
1193 intr_enable = intr_enable | ATTN_BUTTN_ENABLE;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 if (POWER_CTRL(slot_cap))
1196 intr_enable = intr_enable | PWR_FAULT_DETECT_ENABLE;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 if (MRL_SENS(slot_cap))
1199 intr_enable = intr_enable | MRL_DETECT_ENABLE;
1200
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001201 temp_word = (temp_word & ~intr_enable) | intr_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 if (pciehp_poll_mode) {
1204 temp_word = (temp_word & ~HP_INTR_ENABLE) | 0x0;
1205 } else {
1206 temp_word = (temp_word & ~HP_INTR_ENABLE) | HP_INTR_ENABLE;
1207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Kenji Kaneshige40730d12007-08-09 16:09:38 -07001209 /*
1210 * Unmask Hot-plug Interrupt Enable for the interrupt
1211 * notification mechanism case.
1212 */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001213 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001215 err("%s: Cannot write to SLOTCTRL register\n", __FUNCTION__);
Mark Lordecdde932007-11-21 15:07:55 -08001216 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001218 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001220 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
Jan Beulich9c64f972006-05-09 00:50:31 -07001221 goto abort_disable_intr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 temp_word = 0x1F; /* Clear all events */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001225 rc = pciehp_writew(ctrl, SLOTSTATUS, temp_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (rc) {
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001227 err("%s: Cannot write to SLOTSTATUS register\n", __FUNCTION__);
Jan Beulich9c64f972006-05-09 00:50:31 -07001228 goto abort_disable_intr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001230
rajesh.shah@intel.coma3a45ec2005-10-31 16:20:12 -08001231 if (pciehp_force) {
1232 dbg("Bypassing BIOS check for pciehp use on %s\n",
1233 pci_name(ctrl->pci_dev));
1234 } else {
Rajesh Shah6560aa52005-11-07 13:37:36 -08001235 rc = pciehp_get_hp_hw_control_from_firmware(ctrl->pci_dev);
rajesh.shah@intel.coma3a45ec2005-10-31 16:20:12 -08001236 if (rc)
Jan Beulich9c64f972006-05-09 00:50:31 -07001237 goto abort_disable_intr;
rajesh.shah@intel.coma3a45ec2005-10-31 16:20:12 -08001238 }
rajesh.shah@intel.coma8a2be92005-10-31 16:20:07 -08001239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return 0;
1241
Kenji Kaneshige40730d12007-08-09 16:09:38 -07001242 /* We end up here for the many possible ways to fail this API. */
Jan Beulich9c64f972006-05-09 00:50:31 -07001243abort_disable_intr:
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001244 rc = pciehp_readw(ctrl, SLOTCTRL, &temp_word);
Jan Beulich9c64f972006-05-09 00:50:31 -07001245 if (!rc) {
1246 temp_word &= ~(intr_enable | HP_INTR_ENABLE);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -08001247 rc = pciehp_writew(ctrl, SLOTCTRL, temp_word);
Jan Beulich9c64f972006-05-09 00:50:31 -07001248 }
1249 if (rc)
1250 err("%s : disabling interrupts failed\n", __FUNCTION__);
Mark Lordecdde932007-11-21 15:07:55 -08001251abort:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 return -1;
1253}
Mark Lord08e7a7d2007-11-28 15:11:46 -08001254
1255int pcie_init(struct controller *ctrl, struct pcie_device *dev)
1256{
1257 int rc;
1258 u16 cap_reg;
1259 u32 slot_cap;
1260 int cap_base;
1261 u16 slot_status, slot_ctrl;
1262 struct pci_dev *pdev;
1263
1264 pdev = dev->port;
1265 ctrl->pci_dev = pdev; /* save pci_dev in context */
1266
1267 dbg("%s: hotplug controller vendor id 0x%x device id 0x%x\n",
1268 __FUNCTION__, pdev->vendor, pdev->device);
1269
1270 cap_base = pci_find_capability(pdev, PCI_CAP_ID_EXP);
1271 if (cap_base == 0) {
1272 dbg("%s: Can't find PCI_CAP_ID_EXP (0x10)\n", __FUNCTION__);
1273 goto abort;
1274 }
1275
1276 ctrl->cap_base = cap_base;
1277
1278 dbg("%s: pcie_cap_base %x\n", __FUNCTION__, cap_base);
1279
1280 rc = pciehp_readw(ctrl, CAPREG, &cap_reg);
1281 if (rc) {
1282 err("%s: Cannot read CAPREG register\n", __FUNCTION__);
1283 goto abort;
1284 }
1285 dbg("%s: CAPREG offset %x cap_reg %x\n",
1286 __FUNCTION__, ctrl->cap_base + CAPREG, cap_reg);
1287
1288 if (((cap_reg & SLOT_IMPL) == 0) ||
1289 (((cap_reg & DEV_PORT_TYPE) != 0x0040)
1290 && ((cap_reg & DEV_PORT_TYPE) != 0x0060))) {
1291 dbg("%s : This is not a root port or the port is not "
1292 "connected to a slot\n", __FUNCTION__);
1293 goto abort;
1294 }
1295
1296 rc = pciehp_readl(ctrl, SLOTCAP, &slot_cap);
1297 if (rc) {
1298 err("%s: Cannot read SLOTCAP register\n", __FUNCTION__);
1299 goto abort;
1300 }
1301 dbg("%s: SLOTCAP offset %x slot_cap %x\n",
1302 __FUNCTION__, ctrl->cap_base + SLOTCAP, slot_cap);
1303
1304 if (!(slot_cap & HP_CAP)) {
1305 dbg("%s : This slot is not hot-plug capable\n", __FUNCTION__);
1306 goto abort;
1307 }
1308 /* For debugging purpose */
1309 rc = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
1310 if (rc) {
1311 err("%s: Cannot read SLOTSTATUS register\n", __FUNCTION__);
1312 goto abort;
1313 }
1314 dbg("%s: SLOTSTATUS offset %x slot_status %x\n",
1315 __FUNCTION__, ctrl->cap_base + SLOTSTATUS, slot_status);
1316
1317 rc = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
1318 if (rc) {
1319 err("%s: Cannot read SLOTCTRL register\n", __FUNCTION__);
1320 goto abort;
1321 }
1322 dbg("%s: SLOTCTRL offset %x slot_ctrl %x\n",
1323 __FUNCTION__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
1324
1325 for (rc = 0; rc < DEVICE_COUNT_RESOURCE; rc++)
1326 if (pci_resource_len(pdev, rc) > 0)
1327 dbg("pci resource[%d] start=0x%llx(len=0x%llx)\n", rc,
1328 (unsigned long long)pci_resource_start(pdev, rc),
1329 (unsigned long long)pci_resource_len(pdev, rc));
1330
1331 info("HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n",
1332 pdev->vendor, pdev->device,
1333 pdev->subsystem_vendor, pdev->subsystem_device);
1334
1335 mutex_init(&ctrl->crit_sect);
1336 mutex_init(&ctrl->ctrl_lock);
1337 spin_lock_init(&ctrl->lock);
1338
1339 /* setup wait queue */
1340 init_waitqueue_head(&ctrl->queue);
1341
1342 /* return PCI Controller Info */
1343 ctrl->slot_device_offset = 0;
1344 ctrl->num_slots = 1;
1345 ctrl->first_slot = slot_cap >> 19;
1346 ctrl->ctrlcap = slot_cap & 0x0000007f;
1347
Mark Lordecdde932007-11-21 15:07:55 -08001348 rc = pcie_init_hardware_part1(ctrl, dev);
1349 if (rc)
1350 goto abort;
1351
1352 if (pciehp_poll_mode) {
1353 /* Install interrupt polling timer. Start with 10 sec delay */
1354 init_timer(&ctrl->poll_timer);
1355 start_int_poll_timer(ctrl, 10);
1356 } else {
1357 /* Installs the interrupt handler */
1358 rc = request_irq(ctrl->pci_dev->irq, pcie_isr, IRQF_SHARED,
1359 MY_NAME, (void *)ctrl);
1360 dbg("%s: request_irq %d for hpc%d (returns %d)\n",
1361 __FUNCTION__, ctrl->pci_dev->irq,
1362 atomic_read(&pciehp_num_controllers), rc);
1363 if (rc) {
1364 err("Can't get irq %d for the hotplug controller\n",
1365 ctrl->pci_dev->irq);
1366 goto abort;
1367 }
1368 }
1369 dbg("pciehp ctrl b:d:f:irq=0x%x:%x:%x:%x\n", pdev->bus->number,
1370 PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn), dev->irq);
1371
1372 /*
1373 * If this is the first controller to be initialized,
1374 * initialize the pciehp work queue
1375 */
1376 if (atomic_add_return(1, &pciehp_num_controllers) == 1) {
1377 pciehp_wq = create_singlethread_workqueue("pciehpd");
1378 if (!pciehp_wq) {
1379 rc = -ENOMEM;
1380 goto abort_free_irq;
1381 }
1382 }
1383
1384 rc = pcie_init_hardware_part2(ctrl, dev);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001385 if (rc == 0) {
1386 ctrl->hpc_ops = &pciehp_hpc_ops;
1387 return 0;
1388 }
Mark Lordecdde932007-11-21 15:07:55 -08001389abort_free_irq:
1390 if (pciehp_poll_mode)
1391 del_timer_sync(&ctrl->poll_timer);
1392 else
1393 free_irq(ctrl->pci_dev->irq, ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001394abort:
1395 return -1;
1396}