blob: 5ef4baecac7973b07edfd04513e6f902b48c4e57 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PCI Express PCI Hot Plug Driver
3 *
4 * Copyright (C) 1995,2001 Compaq Computer Corporation
5 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
6 * Copyright (C) 2001 IBM Corp.
7 * Copyright (C) 2003-2004 Intel Corporation
8 *
9 * All rights reserved.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
19 * NON INFRINGEMENT. See the GNU General Public License for more
20 * details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
Kristen Accardi8cf4c192005-08-16 15:16:10 -070026 * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *
28 */
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/types.h>
Tim Schmielaude259682006-01-08 01:02:05 -080033#include <linux/signal.h>
34#include <linux/jiffies.h>
35#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/pci.h>
Andrew Morton5d1b8c92005-11-13 16:06:39 -080037#include <linux/interrupt.h>
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -080038#include <linux/time.h>
Andrew Morton5d1b8c92005-11-13 16:06:39 -080039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "../pci.h"
41#include "pciehp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Kenji Kaneshige5d386e12007-03-06 15:02:26 -080043static atomic_t pciehp_num_controllers = ATOMIC_INIT(0);
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045struct ctrl_reg {
46 u8 cap_id;
47 u8 nxt_ptr;
48 u16 cap_reg;
49 u32 dev_cap;
50 u16 dev_ctrl;
51 u16 dev_status;
52 u32 lnk_cap;
53 u16 lnk_ctrl;
54 u16 lnk_status;
55 u32 slot_cap;
56 u16 slot_ctrl;
57 u16 slot_status;
58 u16 root_ctrl;
59 u16 rsvp;
60 u32 root_status;
61} __attribute__ ((packed));
62
63/* offsets to the controller registers based on the above structure layout */
64enum ctrl_offsets {
65 PCIECAPID = offsetof(struct ctrl_reg, cap_id),
66 NXTCAPPTR = offsetof(struct ctrl_reg, nxt_ptr),
67 CAPREG = offsetof(struct ctrl_reg, cap_reg),
68 DEVCAP = offsetof(struct ctrl_reg, dev_cap),
69 DEVCTRL = offsetof(struct ctrl_reg, dev_ctrl),
70 DEVSTATUS = offsetof(struct ctrl_reg, dev_status),
71 LNKCAP = offsetof(struct ctrl_reg, lnk_cap),
72 LNKCTRL = offsetof(struct ctrl_reg, lnk_ctrl),
73 LNKSTATUS = offsetof(struct ctrl_reg, lnk_status),
74 SLOTCAP = offsetof(struct ctrl_reg, slot_cap),
75 SLOTCTRL = offsetof(struct ctrl_reg, slot_ctrl),
76 SLOTSTATUS = offsetof(struct ctrl_reg, slot_status),
77 ROOTCTRL = offsetof(struct ctrl_reg, root_ctrl),
78 ROOTSTATUS = offsetof(struct ctrl_reg, root_status),
79};
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -080081static inline int pciehp_readw(struct controller *ctrl, int reg, u16 *value)
82{
83 struct pci_dev *dev = ctrl->pci_dev;
84 return pci_read_config_word(dev, ctrl->cap_base + reg, value);
85}
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -080087static inline int pciehp_readl(struct controller *ctrl, int reg, u32 *value)
88{
89 struct pci_dev *dev = ctrl->pci_dev;
90 return pci_read_config_dword(dev, ctrl->cap_base + reg, value);
91}
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -080093static inline int pciehp_writew(struct controller *ctrl, int reg, u16 value)
94{
95 struct pci_dev *dev = ctrl->pci_dev;
96 return pci_write_config_word(dev, ctrl->cap_base + reg, value);
97}
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -080099static inline int pciehp_writel(struct controller *ctrl, int reg, u32 value)
100{
101 struct pci_dev *dev = ctrl->pci_dev;
102 return pci_write_config_dword(dev, ctrl->cap_base + reg, value);
103}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105/* Field definitions in PCI Express Capabilities Register */
106#define CAP_VER 0x000F
107#define DEV_PORT_TYPE 0x00F0
108#define SLOT_IMPL 0x0100
109#define MSG_NUM 0x3E00
110
111/* Device or Port Type */
112#define NAT_ENDPT 0x00
113#define LEG_ENDPT 0x01
114#define ROOT_PORT 0x04
115#define UP_STREAM 0x05
116#define DN_STREAM 0x06
117#define PCIE_PCI_BRDG 0x07
118#define PCI_PCIE_BRDG 0x10
119
120/* Field definitions in Device Capabilities Register */
121#define DATTN_BUTTN_PRSN 0x1000
122#define DATTN_LED_PRSN 0x2000
123#define DPWR_LED_PRSN 0x4000
124
125/* Field definitions in Link Capabilities Register */
126#define MAX_LNK_SPEED 0x000F
127#define MAX_LNK_WIDTH 0x03F0
128
129/* Link Width Encoding */
130#define LNK_X1 0x01
131#define LNK_X2 0x02
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700132#define LNK_X4 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#define LNK_X8 0x08
134#define LNK_X12 0x0C
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700135#define LNK_X16 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define LNK_X32 0x20
137
138/*Field definitions of Link Status Register */
139#define LNK_SPEED 0x000F
140#define NEG_LINK_WD 0x03F0
141#define LNK_TRN_ERR 0x0400
142#define LNK_TRN 0x0800
143#define SLOT_CLK_CONF 0x1000
144
145/* Field definitions in Slot Capabilities Register */
146#define ATTN_BUTTN_PRSN 0x00000001
147#define PWR_CTRL_PRSN 0x00000002
148#define MRL_SENS_PRSN 0x00000004
149#define ATTN_LED_PRSN 0x00000008
150#define PWR_LED_PRSN 0x00000010
151#define HP_SUPR_RM_SUP 0x00000020
152#define HP_CAP 0x00000040
153#define SLOT_PWR_VALUE 0x000003F8
154#define SLOT_PWR_LIMIT 0x00000C00
155#define PSN 0xFFF80000 /* PSN: Physical Slot Number */
156
157/* Field definitions in Slot Control Register */
158#define ATTN_BUTTN_ENABLE 0x0001
159#define PWR_FAULT_DETECT_ENABLE 0x0002
160#define MRL_DETECT_ENABLE 0x0004
161#define PRSN_DETECT_ENABLE 0x0008
162#define CMD_CMPL_INTR_ENABLE 0x0010
163#define HP_INTR_ENABLE 0x0020
164#define ATTN_LED_CTRL 0x00C0
165#define PWR_LED_CTRL 0x0300
166#define PWR_CTRL 0x0400
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800167#define EMI_CTRL 0x0800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169/* Attention indicator and Power indicator states */
170#define LED_ON 0x01
171#define LED_BLINK 0x10
172#define LED_OFF 0x11
173
174/* Power Control Command */
175#define POWER_ON 0
176#define POWER_OFF 0x0400
177
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800178/* EMI Status defines */
179#define EMI_DISENGAGED 0
180#define EMI_ENGAGED 1
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/* Field definitions in Slot Status Register */
183#define ATTN_BUTTN_PRESSED 0x0001
184#define PWR_FAULT_DETECTED 0x0002
185#define MRL_SENS_CHANGED 0x0004
186#define PRSN_DETECT_CHANGED 0x0008
187#define CMD_COMPLETED 0x0010
188#define MRL_STATE 0x0020
189#define PRSN_STATE 0x0040
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800190#define EMI_STATE 0x0080
191#define EMI_STATUS_BIT 7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800193static irqreturn_t pcie_isr(int irq, void *dev_id);
194static void start_int_poll_timer(struct controller *ctrl, int sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196/* This is the interrupt polling timeout function. */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800197static void int_poll_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800199 struct controller *ctrl = (struct controller *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 /* Poll for interrupt events. regs == NULL => polling */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800202 pcie_isr(0, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800204 init_timer(&ctrl->poll_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (!pciehp_poll_time)
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700206 pciehp_poll_time = 2; /* default polling interval is 2 sec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800208 start_int_poll_timer(ctrl, pciehp_poll_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
211/* This function starts the interrupt polling timer. */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800212static void start_int_poll_timer(struct controller *ctrl, int sec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800214 /* Clamp to sane value */
215 if ((sec <= 0) || (sec > 60))
216 sec = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800218 ctrl->poll_timer.function = &int_poll_timeout;
219 ctrl->poll_timer.data = (unsigned long)ctrl;
220 ctrl->poll_timer.expires = jiffies + sec * HZ;
221 add_timer(&ctrl->poll_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700224static inline int pciehp_request_irq(struct controller *ctrl)
225{
226 int retval, irq = ctrl->pci_dev->irq;
227
228 /* Install interrupt polling timer. Start with 10 sec delay */
229 if (pciehp_poll_mode) {
230 init_timer(&ctrl->poll_timer);
231 start_int_poll_timer(ctrl, 10);
232 return 0;
233 }
234
235 /* Installs the interrupt handler */
236 retval = request_irq(irq, pcie_isr, IRQF_SHARED, MY_NAME, ctrl);
237 if (retval)
238 err("Cannot get irq %d for the hotplug controller\n", irq);
239 return retval;
240}
241
242static inline void pciehp_free_irq(struct controller *ctrl)
243{
244 if (pciehp_poll_mode)
245 del_timer_sync(&ctrl->poll_timer);
246 else
247 free_irq(ctrl->pci_dev->irq, ctrl);
248}
249
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900250static inline int pcie_poll_cmd(struct controller *ctrl)
251{
252 u16 slot_status;
253 int timeout = 1000;
254
Kenji Kaneshige820943b2008-06-20 12:04:33 +0900255 if (!pciehp_readw(ctrl, SLOTSTATUS, &slot_status)) {
256 if (slot_status & CMD_COMPLETED) {
257 pciehp_writew(ctrl, SLOTSTATUS, CMD_COMPLETED);
258 return 1;
259 }
260 }
261 while (timeout > 1000) {
Kenji Kaneshige66618ba2008-06-20 12:05:12 +0900262 msleep(10);
263 timeout -= 10;
Kenji Kaneshige820943b2008-06-20 12:04:33 +0900264 if (!pciehp_readw(ctrl, SLOTSTATUS, &slot_status)) {
265 if (slot_status & CMD_COMPLETED) {
266 pciehp_writew(ctrl, SLOTSTATUS, CMD_COMPLETED);
267 return 1;
268 }
269 }
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900270 }
271 return 0; /* timeout */
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900272}
273
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900274static inline void pcie_wait_cmd(struct controller *ctrl, int poll)
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800275{
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800276 unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
277 unsigned long timeout = msecs_to_jiffies(msecs);
278 int rc;
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800279
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900280 if (poll)
281 rc = pcie_poll_cmd(ctrl);
282 else
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900283 rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout);
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800284 if (!rc)
285 dbg("Command not completed in 1000 msec\n");
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800286}
287
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700288/**
289 * pcie_write_cmd - Issue controller command
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700290 * @ctrl: controller to which the command is issued
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700291 * @cmd: command value written to slot control register
292 * @mask: bitmask of slot control register to be modified
293 */
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700294static int pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 int retval = 0;
297 u16 slot_status;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700298 u16 slot_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800300 mutex_lock(&ctrl->ctrl_lock);
301
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800302 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800304 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800305 goto out;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800306 }
307
Kenji Kaneshige58086392008-05-27 19:04:30 +0900308 if (slot_status & CMD_COMPLETED) {
309 if (!ctrl->no_cmd_complete) {
310 /*
311 * After 1 sec and CMD_COMPLETED still not set, just
312 * proceed forward to issue the next command according
313 * to spec. Just print out the error message.
314 */
315 dbg("%s: CMD_COMPLETED not clear after 1 sec.\n",
316 __func__);
317 } else if (!NO_CMD_CMPL(ctrl)) {
318 /*
319 * This controller semms to notify of command completed
320 * event even though it supports none of power
321 * controller, attention led, power led and EMI.
322 */
323 dbg("%s: Unexpected CMD_COMPLETED. Need to wait for "
324 "command completed event.\n", __func__);
325 ctrl->no_cmd_complete = 0;
326 } else {
327 dbg("%s: Unexpected CMD_COMPLETED. Maybe the "
328 "controller is broken.\n", __func__);
329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 }
331
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700332 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800334 err("%s: Cannot read SLOTCTRL register\n", __func__);
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700335 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700338 slot_ctrl &= ~mask;
Kenji Kaneshigeb7aa1f12008-04-25 14:39:14 -0700339 slot_ctrl |= (cmd & mask);
340 /* Don't enable command completed if caller is changing it. */
341 if (!(mask & CMD_CMPL_INTR_ENABLE))
342 slot_ctrl |= CMD_CMPL_INTR_ENABLE;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700343
344 ctrl->cmd_busy = 1;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700345 smp_mb();
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700346 retval = pciehp_writew(ctrl, SLOTCTRL, slot_ctrl);
347 if (retval)
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800348 err("%s: Cannot write to SLOTCTRL register\n", __func__);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700349
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800350 /*
351 * Wait for command completion.
352 */
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900353 if (!retval && !ctrl->no_cmd_complete) {
354 int poll = 0;
355 /*
356 * if hotplug interrupt is not enabled or command
357 * completed interrupt is not enabled, we need to poll
358 * command completed event.
359 */
360 if (!(slot_ctrl & HP_INTR_ENABLE) ||
361 !(slot_ctrl & CMD_CMPL_INTR_ENABLE))
362 poll = 1;
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900363 pcie_wait_cmd(ctrl, poll);
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900364 }
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800365 out:
366 mutex_unlock(&ctrl->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return retval;
368}
369
370static int hpc_check_lnk_status(struct controller *ctrl)
371{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 u16 lnk_status;
373 int retval = 0;
374
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800375 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800377 err("%s: Cannot read LNKSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return retval;
379 }
380
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800381 dbg("%s: lnk_status = %x\n", __func__, lnk_status);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700382 if ( (lnk_status & LNK_TRN) || (lnk_status & LNK_TRN_ERR) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 !(lnk_status & NEG_LINK_WD)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800384 err("%s : Link Training Error occurs \n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 retval = -1;
386 return retval;
387 }
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return retval;
390}
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392static int hpc_get_attention_status(struct slot *slot, u8 *status)
393{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800394 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 u16 slot_ctrl;
396 u8 atten_led_state;
397 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800399 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800401 err("%s: Cannot read SLOTCTRL register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 return retval;
403 }
404
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800405 dbg("%s: SLOTCTRL %x, value read %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800406 __func__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 atten_led_state = (slot_ctrl & ATTN_LED_CTRL) >> 6;
409
410 switch (atten_led_state) {
411 case 0:
412 *status = 0xFF; /* Reserved */
413 break;
414 case 1:
415 *status = 1; /* On */
416 break;
417 case 2:
418 *status = 2; /* Blink */
419 break;
420 case 3:
421 *status = 0; /* Off */
422 break;
423 default:
424 *status = 0xFF;
425 break;
426 }
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return 0;
429}
430
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800431static int hpc_get_power_status(struct slot *slot, u8 *status)
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_ctrl;
435 u8 pwr_state;
436 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800438 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800440 err("%s: Cannot read SLOTCTRL register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return retval;
442 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800443 dbg("%s: SLOTCTRL %x value read %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800444 __func__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 pwr_state = (slot_ctrl & PWR_CTRL) >> 10;
447
448 switch (pwr_state) {
449 case 0:
450 *status = 1;
451 break;
452 case 1:
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700453 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 break;
455 default:
456 *status = 0xFF;
457 break;
458 }
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return retval;
461}
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463static int hpc_get_latch_status(struct slot *slot, u8 *status)
464{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800465 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 u16 slot_status;
467 int retval = 0;
468
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800469 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800471 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return retval;
473 }
474
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700475 *status = (((slot_status & MRL_STATE) >> 5) == 0) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return 0;
478}
479
480static int hpc_get_adapter_status(struct slot *slot, u8 *status)
481{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800482 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 u16 slot_status;
484 u8 card_state;
485 int retval = 0;
486
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800487 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800489 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return retval;
491 }
492 card_state = (u8)((slot_status & PRSN_STATE) >> 6);
493 *status = (card_state == 1) ? 1 : 0;
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return 0;
496}
497
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800498static int hpc_query_power_fault(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800500 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 u16 slot_status;
502 u8 pwr_fault;
503 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800505 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800507 err("%s: Cannot check for power fault\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return retval;
509 }
510 pwr_fault = (u8)((slot_status & PWR_FAULT_DETECTED) >> 1);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700511
rajesh.shah@intel.com8239def2005-10-31 16:20:13 -0800512 return pwr_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800515static int hpc_get_emi_status(struct slot *slot, u8 *status)
516{
517 struct controller *ctrl = slot->ctrl;
518 u16 slot_status;
519 int retval = 0;
520
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800521 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
522 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800523 err("%s : Cannot check EMI status\n", __func__);
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800524 return retval;
525 }
526 *status = (slot_status & EMI_STATE) >> EMI_STATUS_BIT;
527
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800528 return retval;
529}
530
531static int hpc_toggle_emi(struct slot *slot)
532{
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700533 u16 slot_cmd;
534 u16 cmd_mask;
535 int rc;
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800536
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700537 slot_cmd = EMI_CTRL;
538 cmd_mask = EMI_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700539 rc = pcie_write_cmd(slot->ctrl, slot_cmd, cmd_mask);
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800540 slot->last_emi_toggle = get_seconds();
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700541
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800542 return rc;
543}
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545static int hpc_set_attention_status(struct slot *slot, u8 value)
546{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800547 struct controller *ctrl = slot->ctrl;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700548 u16 slot_cmd;
549 u16 cmd_mask;
550 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700552 cmd_mask = ATTN_LED_CTRL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 switch (value) {
554 case 0 : /* turn off */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700555 slot_cmd = 0x00C0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 break;
557 case 1: /* turn on */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700558 slot_cmd = 0x0040;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 break;
560 case 2: /* turn blink */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700561 slot_cmd = 0x0080;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 break;
563 default:
564 return -1;
565 }
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700566 rc = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800567 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800568 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return rc;
571}
572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573static void hpc_set_green_led_on(struct slot *slot)
574{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800575 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700577 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700578
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700579 slot_cmd = 0x0100;
580 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700581 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800582 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800583 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
586static void hpc_set_green_led_off(struct slot *slot)
587{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800588 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700590 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700592 slot_cmd = 0x0300;
593 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700594 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800595 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800596 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597}
598
599static void hpc_set_green_led_blink(struct slot *slot)
600{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800601 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700603 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700604
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700605 slot_cmd = 0x0200;
606 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700607 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800608 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800609 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612static void hpc_release_ctlr(struct controller *ctrl)
613{
Kenji Kaneshiged84be092008-04-25 14:39:07 -0700614 /* Mask Hot-plug Interrupt Enable */
615 if (pcie_write_cmd(ctrl, 0, HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE))
Kenji Kaneshigeb30dd562008-06-20 12:06:24 +0900616 err("%s: Cannot mask hotplug interrupt enable\n", __func__);
Kenji Kaneshiged84be092008-04-25 14:39:07 -0700617
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700618 /* Free interrupt handler or interrupt polling timer */
619 pciehp_free_irq(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Kenji Kaneshige5d386e12007-03-06 15:02:26 -0800621 /*
622 * If this is the last controller to be released, destroy the
623 * pciehp work queue
624 */
625 if (atomic_dec_and_test(&pciehp_num_controllers))
626 destroy_workqueue(pciehp_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
629static int hpc_power_on_slot(struct slot * slot)
630{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800631 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700633 u16 cmd_mask;
634 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 int retval = 0;
636
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800637 dbg("%s: slot->hp_slot %x\n", __func__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Rajesh Shah5a49f202005-11-23 15:44:54 -0800639 /* Clear sticky power-fault bit from previous power failures */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800640 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800642 err("%s: Cannot read SLOTSTATUS register\n", __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800643 return retval;
644 }
645 slot_status &= PWR_FAULT_DETECTED;
646 if (slot_status) {
647 retval = pciehp_writew(ctrl, SLOTSTATUS, slot_status);
648 if (retval) {
649 err("%s: Cannot write to SLOTSTATUS register\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800650 __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800651 return retval;
652 }
653 }
654
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700655 slot_cmd = POWER_ON;
656 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800657 /* Enable detection that we turned off at slot power-off time */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700658 if (!pciehp_poll_mode) {
Kenji Kaneshigecff00652008-04-25 14:39:06 -0700659 slot_cmd |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
660 PRSN_DETECT_ENABLE);
661 cmd_mask |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
662 PRSN_DETECT_ENABLE);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700665 retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800668 err("%s: Write %x command failed!\n", __func__, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 return -1;
670 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800671 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800672 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return retval;
675}
676
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900677static inline int pcie_mask_bad_dllp(struct controller *ctrl)
678{
679 struct pci_dev *dev = ctrl->pci_dev;
680 int pos;
681 u32 reg;
682
683 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
684 if (!pos)
685 return 0;
686 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
687 if (reg & PCI_ERR_COR_BAD_DLLP)
688 return 0;
689 reg |= PCI_ERR_COR_BAD_DLLP;
690 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
691 return 1;
692}
693
694static inline void pcie_unmask_bad_dllp(struct controller *ctrl)
695{
696 struct pci_dev *dev = ctrl->pci_dev;
697 u32 reg;
698 int pos;
699
700 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
701 if (!pos)
702 return;
703 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
704 if (!(reg & PCI_ERR_COR_BAD_DLLP))
705 return;
706 reg &= ~PCI_ERR_COR_BAD_DLLP;
707 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
708}
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710static int hpc_power_off_slot(struct slot * slot)
711{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800712 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700714 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 int retval = 0;
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900716 int changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800718 dbg("%s: slot->hp_slot %x\n", __func__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900720 /*
721 * Set Bad DLLP Mask bit in Correctable Error Mask
722 * Register. This is the workaround against Bad DLLP error
723 * that sometimes happens during turning power off the slot
724 * which conforms to PCI Express 1.0a spec.
725 */
726 changed = pcie_mask_bad_dllp(ctrl);
727
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700728 slot_cmd = POWER_OFF;
729 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800730 /*
731 * If we get MRL or presence detect interrupts now, the isr
732 * will notice the sticky power-fault bit too and issue power
733 * indicator change commands. This will lead to an endless loop
734 * of command completions, since the power-fault bit remains on
735 * till the slot is powered on again.
736 */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700737 if (!pciehp_poll_mode) {
Kenji Kaneshigecff00652008-04-25 14:39:06 -0700738 slot_cmd &= ~(PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
739 PRSN_DETECT_ENABLE);
740 cmd_mask |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
741 PRSN_DETECT_ENABLE);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700744 retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800746 err("%s: Write command failed!\n", __func__);
Kenji Kaneshigec1ef5cb2008-03-04 13:01:14 -0800747 retval = -1;
748 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800750 dbg("%s: SLOTCTRL %x write cmd %x\n",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800751 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Kenji Kaneshigec1ef5cb2008-03-04 13:01:14 -0800752 out:
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900753 if (changed)
754 pcie_unmask_bad_dllp(ctrl);
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return retval;
757}
758
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800759static irqreturn_t pcie_isr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800761 struct controller *ctrl = (struct controller *)dev_id;
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700762 u16 detected, intr_loc;
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900763 struct slot *p_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700765 /*
766 * In order to guarantee that all interrupt events are
767 * serviced, we need to re-inspect Slot Status register after
768 * clearing what is presumed to be the last pending interrupt.
769 */
770 intr_loc = 0;
771 do {
772 if (pciehp_readw(ctrl, SLOTSTATUS, &detected)) {
773 err("%s: Cannot read SLOTSTATUS\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return IRQ_NONE;
775 }
776
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700777 detected &= (ATTN_BUTTN_PRESSED | PWR_FAULT_DETECTED |
778 MRL_SENS_CHANGED | PRSN_DETECT_CHANGED |
779 CMD_COMPLETED);
780 intr_loc |= detected;
781 if (!intr_loc)
782 return IRQ_NONE;
Kenji Kaneshige6a3f0842008-06-02 09:22:34 -0700783 if (detected && pciehp_writew(ctrl, SLOTSTATUS, detected)) {
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700784 err("%s: Cannot write to SLOTSTATUS\n", __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800785 return IRQ_NONE;
786 }
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700787 } while (detected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700789 dbg("%s: intr_loc %x\n", __FUNCTION__, intr_loc);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700790
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700791 /* Check Command Complete Interrupt Pending */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 if (intr_loc & CMD_COMPLETED) {
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800793 ctrl->cmd_busy = 0;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700794 smp_mb();
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900795 wake_up(&ctrl->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900798 if (!(intr_loc & ~CMD_COMPLETED))
799 return IRQ_HANDLED;
800
801 /*
802 * Return without handling events if this handler routine is
803 * called before controller initialization is done. This may
804 * happen if hotplug event or another interrupt that shares
805 * the IRQ with pciehp arrives before slot initialization is
806 * done after interrupt handler is registered.
807 *
808 * FIXME - Need more structural fixes. We need to be ready to
809 * handle the event before installing interrupt handler.
810 */
811 p_slot = pciehp_find_slot(ctrl, ctrl->slot_device_offset);
812 if (!p_slot || !p_slot->hpc_ops)
813 return IRQ_HANDLED;
814
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700815 /* Check MRL Sensor Changed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800816 if (intr_loc & MRL_SENS_CHANGED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900817 pciehp_handle_switch_change(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800818
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700819 /* Check Attention Button Pressed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800820 if (intr_loc & ATTN_BUTTN_PRESSED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900821 pciehp_handle_attention_button(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800822
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700823 /* Check Presence Detect Changed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800824 if (intr_loc & PRSN_DETECT_CHANGED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900825 pciehp_handle_presence_change(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800826
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700827 /* Check Power Fault Detected */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800828 if (intr_loc & PWR_FAULT_DETECTED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900829 pciehp_handle_power_fault(p_slot);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return IRQ_HANDLED;
832}
833
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700834static int hpc_get_max_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800836 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 enum pcie_link_speed lnk_speed;
838 u32 lnk_cap;
839 int retval = 0;
840
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800841 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800843 err("%s: Cannot read LNKCAP register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return retval;
845 }
846
847 switch (lnk_cap & 0x000F) {
848 case 1:
849 lnk_speed = PCIE_2PT5GB;
850 break;
851 default:
852 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
853 break;
854 }
855
856 *value = lnk_speed;
857 dbg("Max link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return retval;
860}
861
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700862static int hpc_get_max_lnk_width(struct slot *slot,
863 enum pcie_link_width *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800865 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 enum pcie_link_width lnk_wdth;
867 u32 lnk_cap;
868 int retval = 0;
869
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800870 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800872 err("%s: Cannot read LNKCAP register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return retval;
874 }
875
876 switch ((lnk_cap & 0x03F0) >> 4){
877 case 0:
878 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
879 break;
880 case 1:
881 lnk_wdth = PCIE_LNK_X1;
882 break;
883 case 2:
884 lnk_wdth = PCIE_LNK_X2;
885 break;
886 case 4:
887 lnk_wdth = PCIE_LNK_X4;
888 break;
889 case 8:
890 lnk_wdth = PCIE_LNK_X8;
891 break;
892 case 12:
893 lnk_wdth = PCIE_LNK_X12;
894 break;
895 case 16:
896 lnk_wdth = PCIE_LNK_X16;
897 break;
898 case 32:
899 lnk_wdth = PCIE_LNK_X32;
900 break;
901 default:
902 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
903 break;
904 }
905
906 *value = lnk_wdth;
907 dbg("Max link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700908
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 return retval;
910}
911
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700912static int hpc_get_cur_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800914 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 enum pcie_link_speed lnk_speed = PCI_SPEED_UNKNOWN;
916 int retval = 0;
917 u16 lnk_status;
918
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800919 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800921 err("%s: Cannot read LNKSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return retval;
923 }
924
925 switch (lnk_status & 0x0F) {
926 case 1:
927 lnk_speed = PCIE_2PT5GB;
928 break;
929 default:
930 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
931 break;
932 }
933
934 *value = lnk_speed;
935 dbg("Current link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 return retval;
938}
939
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700940static int hpc_get_cur_lnk_width(struct slot *slot,
941 enum pcie_link_width *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800943 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 enum pcie_link_width lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
945 int retval = 0;
946 u16 lnk_status;
947
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800948 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (retval) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800950 err("%s: Cannot read LNKSTATUS register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 return retval;
952 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 switch ((lnk_status & 0x03F0) >> 4){
955 case 0:
956 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
957 break;
958 case 1:
959 lnk_wdth = PCIE_LNK_X1;
960 break;
961 case 2:
962 lnk_wdth = PCIE_LNK_X2;
963 break;
964 case 4:
965 lnk_wdth = PCIE_LNK_X4;
966 break;
967 case 8:
968 lnk_wdth = PCIE_LNK_X8;
969 break;
970 case 12:
971 lnk_wdth = PCIE_LNK_X12;
972 break;
973 case 16:
974 lnk_wdth = PCIE_LNK_X16;
975 break;
976 case 32:
977 lnk_wdth = PCIE_LNK_X32;
978 break;
979 default:
980 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
981 break;
982 }
983
984 *value = lnk_wdth;
985 dbg("Current link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 return retval;
988}
989
990static struct hpc_ops pciehp_hpc_ops = {
991 .power_on_slot = hpc_power_on_slot,
992 .power_off_slot = hpc_power_off_slot,
993 .set_attention_status = hpc_set_attention_status,
994 .get_power_status = hpc_get_power_status,
995 .get_attention_status = hpc_get_attention_status,
996 .get_latch_status = hpc_get_latch_status,
997 .get_adapter_status = hpc_get_adapter_status,
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800998 .get_emi_status = hpc_get_emi_status,
999 .toggle_emi = hpc_toggle_emi,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 .get_max_bus_speed = hpc_get_max_lnk_speed,
1002 .get_cur_bus_speed = hpc_get_cur_lnk_speed,
1003 .get_max_lnk_width = hpc_get_max_lnk_width,
1004 .get_cur_lnk_width = hpc_get_cur_lnk_width,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 .query_power_fault = hpc_query_power_fault,
1007 .green_led_on = hpc_set_green_led_on,
1008 .green_led_off = hpc_set_green_led_off,
1009 .green_led_blink = hpc_set_green_led_blink,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 .release_ctlr = hpc_release_ctlr,
1012 .check_lnk_status = hpc_check_lnk_status,
1013};
1014
Mark Lordecdde932007-11-21 15:07:55 -08001015static int pcie_init_hardware_part1(struct controller *ctrl,
1016 struct pcie_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +09001018 /* Clear all remaining event bits in Slot Status register */
1019 if (pciehp_writew(ctrl, SLOTSTATUS, 0x1f)) {
1020 err("%s: Cannot write to SLOTSTATUS register\n", __func__);
1021 return -1;
1022 }
1023
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 /* Mask Hot-plug Interrupt Enable */
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001025 if (pcie_write_cmd(ctrl, 0, HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE)) {
1026 err("%s: Cannot mask hotplug interrupt enable\n", __func__);
Mark Lordecdde932007-11-21 15:07:55 -08001027 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
Mark Lordecdde932007-11-21 15:07:55 -08001029 return 0;
1030}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Mark Lordecdde932007-11-21 15:07:55 -08001032int pcie_init_hardware_part2(struct controller *ctrl, struct pcie_device *dev)
1033{
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001034 u16 cmd, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001036 cmd = PRSN_DETECT_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001037 if (ATTN_BUTTN(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001038 cmd |= ATTN_BUTTN_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001039 if (POWER_CTRL(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001040 cmd |= PWR_FAULT_DETECT_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001041 if (MRL_SENS(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001042 cmd |= MRL_DETECT_ENABLE;
1043 if (!pciehp_poll_mode)
1044 cmd |= HP_INTR_ENABLE;
1045
1046 mask = PRSN_DETECT_ENABLE | ATTN_BUTTN_ENABLE |
1047 PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE | HP_INTR_ENABLE;
1048
1049 if (pcie_write_cmd(ctrl, cmd, mask)) {
1050 err("%s: Cannot enable software notification\n", __func__);
Kenji Kaneshige125c39f2008-05-28 14:57:30 +09001051 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
Mark Lord08e7a7d2007-11-28 15:11:46 -08001056
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001057static inline void dbg_ctrl(struct controller *ctrl)
1058{
1059 int i;
1060 u16 reg16;
1061 struct pci_dev *pdev = ctrl->pci_dev;
1062
1063 if (!pciehp_debug)
1064 return;
1065
1066 dbg("Hotplug Controller:\n");
1067 dbg(" Seg/Bus/Dev/Func/IRQ : %s IRQ %d\n", pci_name(pdev), pdev->irq);
1068 dbg(" Vendor ID : 0x%04x\n", pdev->vendor);
1069 dbg(" Device ID : 0x%04x\n", pdev->device);
1070 dbg(" Subsystem ID : 0x%04x\n", pdev->subsystem_device);
1071 dbg(" Subsystem Vendor ID : 0x%04x\n", pdev->subsystem_vendor);
1072 dbg(" PCIe Cap offset : 0x%02x\n", ctrl->cap_base);
1073 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1074 if (!pci_resource_len(pdev, i))
1075 continue;
1076 dbg(" PCI resource [%d] : 0x%llx@0x%llx\n", i,
1077 (unsigned long long)pci_resource_len(pdev, i),
1078 (unsigned long long)pci_resource_start(pdev, i));
1079 }
1080 dbg("Slot Capabilities : 0x%08x\n", ctrl->slot_cap);
1081 dbg(" Physical Slot Number : %d\n", ctrl->first_slot);
1082 dbg(" Attention Button : %3s\n", ATTN_BUTTN(ctrl) ? "yes" : "no");
1083 dbg(" Power Controller : %3s\n", POWER_CTRL(ctrl) ? "yes" : "no");
1084 dbg(" MRL Sensor : %3s\n", MRL_SENS(ctrl) ? "yes" : "no");
1085 dbg(" Attention Indicator : %3s\n", ATTN_LED(ctrl) ? "yes" : "no");
1086 dbg(" Power Indicator : %3s\n", PWR_LED(ctrl) ? "yes" : "no");
1087 dbg(" Hot-Plug Surprise : %3s\n", HP_SUPR_RM(ctrl) ? "yes" : "no");
1088 dbg(" EMI Present : %3s\n", EMI(ctrl) ? "yes" : "no");
Kenji Kaneshige58086392008-05-27 19:04:30 +09001089 dbg(" Comamnd Completed : %3s\n", NO_CMD_CMPL(ctrl)? "no" : "yes");
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001090 pciehp_readw(ctrl, SLOTSTATUS, &reg16);
1091 dbg("Slot Status : 0x%04x\n", reg16);
Kenji Kaneshiged8b23e82008-06-02 09:07:46 -07001092 pciehp_readw(ctrl, SLOTCTRL, &reg16);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001093 dbg("Slot Control : 0x%04x\n", reg16);
1094}
1095
Mark Lord08e7a7d2007-11-28 15:11:46 -08001096int pcie_init(struct controller *ctrl, struct pcie_device *dev)
1097{
Mark Lord08e7a7d2007-11-28 15:11:46 -08001098 u32 slot_cap;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001099 struct pci_dev *pdev = dev->port;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001100
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001101 ctrl->pci_dev = pdev;
1102 ctrl->cap_base = pci_find_capability(pdev, PCI_CAP_ID_EXP);
1103 if (!ctrl->cap_base) {
1104 err("%s: Cannot find PCI Express capability\n", __func__);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001105 goto abort;
1106 }
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001107 if (pciehp_readl(ctrl, SLOTCAP, &slot_cap)) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -08001108 err("%s: Cannot read SLOTCAP register\n", __func__);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001109 goto abort;
1110 }
Mark Lord08e7a7d2007-11-28 15:11:46 -08001111
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001112 ctrl->slot_cap = slot_cap;
1113 ctrl->first_slot = slot_cap >> 19;
1114 ctrl->slot_device_offset = 0;
1115 ctrl->num_slots = 1;
1116 ctrl->hpc_ops = &pciehp_hpc_ops;
1117 mutex_init(&ctrl->crit_sect);
1118 mutex_init(&ctrl->ctrl_lock);
1119 init_waitqueue_head(&ctrl->queue);
1120 dbg_ctrl(ctrl);
Kenji Kaneshige58086392008-05-27 19:04:30 +09001121 /*
1122 * Controller doesn't notify of command completion if the "No
1123 * Command Completed Support" bit is set in Slot Capability
1124 * register or the controller supports none of power
1125 * controller, attention led, power led and EMI.
1126 */
1127 if (NO_CMD_CMPL(ctrl) ||
1128 !(POWER_CTRL(ctrl) | ATTN_LED(ctrl) | PWR_LED(ctrl) | EMI(ctrl)))
1129 ctrl->no_cmd_complete = 1;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001130
1131 info("HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n",
1132 pdev->vendor, pdev->device,
1133 pdev->subsystem_vendor, pdev->subsystem_device);
1134
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001135 if (pcie_init_hardware_part1(ctrl, dev))
Mark Lordecdde932007-11-21 15:07:55 -08001136 goto abort;
1137
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001138 if (pciehp_request_irq(ctrl))
1139 goto abort;
Mark Lordecdde932007-11-21 15:07:55 -08001140
1141 /*
1142 * If this is the first controller to be initialized,
1143 * initialize the pciehp work queue
1144 */
1145 if (atomic_add_return(1, &pciehp_num_controllers) == 1) {
1146 pciehp_wq = create_singlethread_workqueue("pciehpd");
1147 if (!pciehp_wq) {
Mark Lordecdde932007-11-21 15:07:55 -08001148 goto abort_free_irq;
1149 }
1150 }
1151
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001152 if (pcie_init_hardware_part2(ctrl, dev))
1153 goto abort_free_irq;
1154
1155 return 0;
1156
Mark Lordecdde932007-11-21 15:07:55 -08001157abort_free_irq:
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001158 pciehp_free_irq(ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001159abort:
1160 return -1;
1161}