blob: 8e9530c4c36dfd55ae1d2fb60b7c8b4c67f84181 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PCI Express PCI Hot Plug Driver
3 *
4 * Copyright (C) 1995,2001 Compaq Computer Corporation
5 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
6 * Copyright (C) 2001 IBM Corp.
7 * Copyright (C) 2003-2004 Intel Corporation
8 *
9 * All rights reserved.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
19 * NON INFRINGEMENT. See the GNU General Public License for more
20 * details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
Kristen Accardi8cf4c192005-08-16 15:16:10 -070026 * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *
28 */
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/types.h>
Tim Schmielaude259682006-01-08 01:02:05 -080033#include <linux/signal.h>
34#include <linux/jiffies.h>
35#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/pci.h>
Andrew Morton5d1b8c92005-11-13 16:06:39 -080037#include <linux/interrupt.h>
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -080038#include <linux/time.h>
Andrew Morton5d1b8c92005-11-13 16:06:39 -080039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "../pci.h"
41#include "pciehp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Kenji Kaneshige5d386e12007-03-06 15:02:26 -080043static atomic_t pciehp_num_controllers = ATOMIC_INIT(0);
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045struct ctrl_reg {
46 u8 cap_id;
47 u8 nxt_ptr;
48 u16 cap_reg;
49 u32 dev_cap;
50 u16 dev_ctrl;
51 u16 dev_status;
52 u32 lnk_cap;
53 u16 lnk_ctrl;
54 u16 lnk_status;
55 u32 slot_cap;
56 u16 slot_ctrl;
57 u16 slot_status;
58 u16 root_ctrl;
59 u16 rsvp;
60 u32 root_status;
61} __attribute__ ((packed));
62
63/* offsets to the controller registers based on the above structure layout */
64enum ctrl_offsets {
65 PCIECAPID = offsetof(struct ctrl_reg, cap_id),
66 NXTCAPPTR = offsetof(struct ctrl_reg, nxt_ptr),
67 CAPREG = offsetof(struct ctrl_reg, cap_reg),
68 DEVCAP = offsetof(struct ctrl_reg, dev_cap),
69 DEVCTRL = offsetof(struct ctrl_reg, dev_ctrl),
70 DEVSTATUS = offsetof(struct ctrl_reg, dev_status),
71 LNKCAP = offsetof(struct ctrl_reg, lnk_cap),
72 LNKCTRL = offsetof(struct ctrl_reg, lnk_ctrl),
73 LNKSTATUS = offsetof(struct ctrl_reg, lnk_status),
74 SLOTCAP = offsetof(struct ctrl_reg, slot_cap),
75 SLOTCTRL = offsetof(struct ctrl_reg, slot_ctrl),
76 SLOTSTATUS = offsetof(struct ctrl_reg, slot_status),
77 ROOTCTRL = offsetof(struct ctrl_reg, root_ctrl),
78 ROOTSTATUS = offsetof(struct ctrl_reg, root_status),
79};
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -080081static inline int pciehp_readw(struct controller *ctrl, int reg, u16 *value)
82{
83 struct pci_dev *dev = ctrl->pci_dev;
84 return pci_read_config_word(dev, ctrl->cap_base + reg, value);
85}
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -080087static inline int pciehp_readl(struct controller *ctrl, int reg, u32 *value)
88{
89 struct pci_dev *dev = ctrl->pci_dev;
90 return pci_read_config_dword(dev, ctrl->cap_base + reg, value);
91}
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -080093static inline int pciehp_writew(struct controller *ctrl, int reg, u16 value)
94{
95 struct pci_dev *dev = ctrl->pci_dev;
96 return pci_write_config_word(dev, ctrl->cap_base + reg, value);
97}
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -080099static inline int pciehp_writel(struct controller *ctrl, int reg, u32 value)
100{
101 struct pci_dev *dev = ctrl->pci_dev;
102 return pci_write_config_dword(dev, ctrl->cap_base + reg, value);
103}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105/* Field definitions in PCI Express Capabilities Register */
106#define CAP_VER 0x000F
107#define DEV_PORT_TYPE 0x00F0
108#define SLOT_IMPL 0x0100
109#define MSG_NUM 0x3E00
110
111/* Device or Port Type */
112#define NAT_ENDPT 0x00
113#define LEG_ENDPT 0x01
114#define ROOT_PORT 0x04
115#define UP_STREAM 0x05
116#define DN_STREAM 0x06
117#define PCIE_PCI_BRDG 0x07
118#define PCI_PCIE_BRDG 0x10
119
120/* Field definitions in Device Capabilities Register */
121#define DATTN_BUTTN_PRSN 0x1000
122#define DATTN_LED_PRSN 0x2000
123#define DPWR_LED_PRSN 0x4000
124
125/* Field definitions in Link Capabilities Register */
126#define MAX_LNK_SPEED 0x000F
127#define MAX_LNK_WIDTH 0x03F0
128
129/* Link Width Encoding */
130#define LNK_X1 0x01
131#define LNK_X2 0x02
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700132#define LNK_X4 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#define LNK_X8 0x08
134#define LNK_X12 0x0C
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700135#define LNK_X16 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define LNK_X32 0x20
137
138/*Field definitions of Link Status Register */
139#define LNK_SPEED 0x000F
140#define NEG_LINK_WD 0x03F0
141#define LNK_TRN_ERR 0x0400
142#define LNK_TRN 0x0800
143#define SLOT_CLK_CONF 0x1000
144
145/* Field definitions in Slot Capabilities Register */
146#define ATTN_BUTTN_PRSN 0x00000001
147#define PWR_CTRL_PRSN 0x00000002
148#define MRL_SENS_PRSN 0x00000004
149#define ATTN_LED_PRSN 0x00000008
150#define PWR_LED_PRSN 0x00000010
151#define HP_SUPR_RM_SUP 0x00000020
152#define HP_CAP 0x00000040
153#define SLOT_PWR_VALUE 0x000003F8
154#define SLOT_PWR_LIMIT 0x00000C00
155#define PSN 0xFFF80000 /* PSN: Physical Slot Number */
156
157/* Field definitions in Slot Control Register */
158#define ATTN_BUTTN_ENABLE 0x0001
159#define PWR_FAULT_DETECT_ENABLE 0x0002
160#define MRL_DETECT_ENABLE 0x0004
161#define PRSN_DETECT_ENABLE 0x0008
162#define CMD_CMPL_INTR_ENABLE 0x0010
163#define HP_INTR_ENABLE 0x0020
164#define ATTN_LED_CTRL 0x00C0
165#define PWR_LED_CTRL 0x0300
166#define PWR_CTRL 0x0400
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800167#define EMI_CTRL 0x0800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169/* Attention indicator and Power indicator states */
170#define LED_ON 0x01
171#define LED_BLINK 0x10
172#define LED_OFF 0x11
173
174/* Power Control Command */
175#define POWER_ON 0
176#define POWER_OFF 0x0400
177
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800178/* EMI Status defines */
179#define EMI_DISENGAGED 0
180#define EMI_ENGAGED 1
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182/* Field definitions in Slot Status Register */
183#define ATTN_BUTTN_PRESSED 0x0001
184#define PWR_FAULT_DETECTED 0x0002
185#define MRL_SENS_CHANGED 0x0004
186#define PRSN_DETECT_CHANGED 0x0008
187#define CMD_COMPLETED 0x0010
188#define MRL_STATE 0x0020
189#define PRSN_STATE 0x0040
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800190#define EMI_STATE 0x0080
191#define EMI_STATUS_BIT 7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800193static irqreturn_t pcie_isr(int irq, void *dev_id);
194static void start_int_poll_timer(struct controller *ctrl, int sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196/* This is the interrupt polling timeout function. */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800197static void int_poll_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800199 struct controller *ctrl = (struct controller *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 /* Poll for interrupt events. regs == NULL => polling */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800202 pcie_isr(0, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800204 init_timer(&ctrl->poll_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (!pciehp_poll_time)
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700206 pciehp_poll_time = 2; /* default polling interval is 2 sec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800208 start_int_poll_timer(ctrl, pciehp_poll_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
211/* This function starts the interrupt polling timer. */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800212static void start_int_poll_timer(struct controller *ctrl, int sec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800214 /* Clamp to sane value */
215 if ((sec <= 0) || (sec > 60))
216 sec = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800218 ctrl->poll_timer.function = &int_poll_timeout;
219 ctrl->poll_timer.data = (unsigned long)ctrl;
220 ctrl->poll_timer.expires = jiffies + sec * HZ;
221 add_timer(&ctrl->poll_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700224static inline int pciehp_request_irq(struct controller *ctrl)
225{
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +0900226 int retval, irq = ctrl->pcie->irq;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700227
228 /* Install interrupt polling timer. Start with 10 sec delay */
229 if (pciehp_poll_mode) {
230 init_timer(&ctrl->poll_timer);
231 start_int_poll_timer(ctrl, 10);
232 return 0;
233 }
234
235 /* Installs the interrupt handler */
236 retval = request_irq(irq, pcie_isr, IRQF_SHARED, MY_NAME, ctrl);
237 if (retval)
Taku Izumi7f2feec2008-09-05 12:11:26 +0900238 ctrl_err(ctrl, "Cannot get irq %d for the hotplug controller\n",
239 irq);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700240 return retval;
241}
242
243static inline void pciehp_free_irq(struct controller *ctrl)
244{
245 if (pciehp_poll_mode)
246 del_timer_sync(&ctrl->poll_timer);
247 else
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +0900248 free_irq(ctrl->pcie->irq, ctrl);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700249}
250
Kenji Kaneshige563f1192008-06-20 12:05:52 +0900251static int pcie_poll_cmd(struct controller *ctrl)
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900252{
253 u16 slot_status;
254 int timeout = 1000;
255
Kenji Kaneshige820943b2008-06-20 12:04:33 +0900256 if (!pciehp_readw(ctrl, SLOTSTATUS, &slot_status)) {
257 if (slot_status & CMD_COMPLETED) {
258 pciehp_writew(ctrl, SLOTSTATUS, CMD_COMPLETED);
259 return 1;
260 }
261 }
Adrian Bunka5827f42008-08-28 01:05:26 +0300262 while (timeout > 0) {
Kenji Kaneshige66618ba2008-06-20 12:05:12 +0900263 msleep(10);
264 timeout -= 10;
Kenji Kaneshige820943b2008-06-20 12:04:33 +0900265 if (!pciehp_readw(ctrl, SLOTSTATUS, &slot_status)) {
266 if (slot_status & CMD_COMPLETED) {
267 pciehp_writew(ctrl, SLOTSTATUS, CMD_COMPLETED);
268 return 1;
269 }
270 }
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900271 }
272 return 0; /* timeout */
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900273}
274
Kenji Kaneshige563f1192008-06-20 12:05:52 +0900275static void pcie_wait_cmd(struct controller *ctrl, int poll)
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800276{
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800277 unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
278 unsigned long timeout = msecs_to_jiffies(msecs);
279 int rc;
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800280
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900281 if (poll)
282 rc = pcie_poll_cmd(ctrl);
283 else
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900284 rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout);
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800285 if (!rc)
Taku Izumi7f2feec2008-09-05 12:11:26 +0900286 ctrl_dbg(ctrl, "Command not completed in 1000 msec\n");
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800287}
288
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700289/**
290 * pcie_write_cmd - Issue controller command
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700291 * @ctrl: controller to which the command is issued
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700292 * @cmd: command value written to slot control register
293 * @mask: bitmask of slot control register to be modified
294 */
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700295static int pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 int retval = 0;
298 u16 slot_status;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700299 u16 slot_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800301 mutex_lock(&ctrl->ctrl_lock);
302
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800303 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900305 ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
306 __func__);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800307 goto out;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800308 }
309
Kenji Kaneshige58086392008-05-27 19:04:30 +0900310 if (slot_status & CMD_COMPLETED) {
311 if (!ctrl->no_cmd_complete) {
312 /*
313 * After 1 sec and CMD_COMPLETED still not set, just
314 * proceed forward to issue the next command according
315 * to spec. Just print out the error message.
316 */
Taku Izumi7f2feec2008-09-05 12:11:26 +0900317 ctrl_dbg(ctrl,
318 "%s: CMD_COMPLETED not clear after 1 sec.\n",
319 __func__);
Kenji Kaneshige58086392008-05-27 19:04:30 +0900320 } else if (!NO_CMD_CMPL(ctrl)) {
321 /*
322 * This controller semms to notify of command completed
323 * event even though it supports none of power
324 * controller, attention led, power led and EMI.
325 */
Taku Izumi7f2feec2008-09-05 12:11:26 +0900326 ctrl_dbg(ctrl, "%s: Unexpected CMD_COMPLETED. Need to "
327 "wait for command completed event.\n",
328 __func__);
Kenji Kaneshige58086392008-05-27 19:04:30 +0900329 ctrl->no_cmd_complete = 0;
330 } else {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900331 ctrl_dbg(ctrl, "%s: Unexpected CMD_COMPLETED. Maybe "
332 "the controller is broken.\n", __func__);
Kenji Kaneshige58086392008-05-27 19:04:30 +0900333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700336 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900338 ctrl_err(ctrl, "%s: Cannot read SLOTCTRL register\n", __func__);
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700339 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700342 slot_ctrl &= ~mask;
Kenji Kaneshigeb7aa1f12008-04-25 14:39:14 -0700343 slot_ctrl |= (cmd & mask);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700344 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)
Taku Izumi7f2feec2008-09-05 12:11:26 +0900348 ctrl_err(ctrl, "%s: Cannot write to SLOTCTRL register\n",
349 __func__);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700350
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800351 /*
352 * Wait for command completion.
353 */
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900354 if (!retval && !ctrl->no_cmd_complete) {
355 int poll = 0;
356 /*
357 * if hotplug interrupt is not enabled or command
358 * completed interrupt is not enabled, we need to poll
359 * command completed event.
360 */
361 if (!(slot_ctrl & HP_INTR_ENABLE) ||
362 !(slot_ctrl & CMD_CMPL_INTR_ENABLE))
363 poll = 1;
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900364 pcie_wait_cmd(ctrl, poll);
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900365 }
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800366 out:
367 mutex_unlock(&ctrl->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return retval;
369}
370
371static int hpc_check_lnk_status(struct controller *ctrl)
372{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 u16 lnk_status;
374 int retval = 0;
375
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800376 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900378 ctrl_err(ctrl, "%s: Cannot read LNKSTATUS register\n",
379 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return retval;
381 }
382
Taku Izumi7f2feec2008-09-05 12:11:26 +0900383 ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700384 if ( (lnk_status & LNK_TRN) || (lnk_status & LNK_TRN_ERR) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 !(lnk_status & NEG_LINK_WD)) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900386 ctrl_err(ctrl, "%s : Link Training Error occurs \n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 retval = -1;
388 return retval;
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_attention_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_ctrl;
398 u8 atten_led_state;
399 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800401 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900403 ctrl_err(ctrl, "%s: Cannot read SLOTCTRL register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 return retval;
405 }
406
Taku Izumi7f2feec2008-09-05 12:11:26 +0900407 ctrl_dbg(ctrl, "%s: SLOTCTRL %x, value read %x\n",
408 __func__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 atten_led_state = (slot_ctrl & ATTN_LED_CTRL) >> 6;
411
412 switch (atten_led_state) {
413 case 0:
414 *status = 0xFF; /* Reserved */
415 break;
416 case 1:
417 *status = 1; /* On */
418 break;
419 case 2:
420 *status = 2; /* Blink */
421 break;
422 case 3:
423 *status = 0; /* Off */
424 break;
425 default:
426 *status = 0xFF;
427 break;
428 }
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return 0;
431}
432
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800433static int hpc_get_power_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800435 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 u16 slot_ctrl;
437 u8 pwr_state;
438 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800440 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900442 ctrl_err(ctrl, "%s: Cannot read SLOTCTRL register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return retval;
444 }
Taku Izumi7f2feec2008-09-05 12:11:26 +0900445 ctrl_dbg(ctrl, "%s: SLOTCTRL %x value read %x\n",
446 __func__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 pwr_state = (slot_ctrl & PWR_CTRL) >> 10;
449
450 switch (pwr_state) {
451 case 0:
452 *status = 1;
453 break;
454 case 1:
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700455 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 break;
457 default:
458 *status = 0xFF;
459 break;
460 }
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return retval;
463}
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465static int hpc_get_latch_status(struct slot *slot, u8 *status)
466{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800467 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 u16 slot_status;
469 int retval = 0;
470
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800471 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900473 ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
474 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return retval;
476 }
477
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700478 *status = (((slot_status & MRL_STATE) >> 5) == 0) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 return 0;
481}
482
483static int hpc_get_adapter_status(struct slot *slot, u8 *status)
484{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800485 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 u16 slot_status;
487 u8 card_state;
488 int retval = 0;
489
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800490 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900492 ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
493 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return retval;
495 }
496 card_state = (u8)((slot_status & PRSN_STATE) >> 6);
497 *status = (card_state == 1) ? 1 : 0;
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return 0;
500}
501
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800502static int hpc_query_power_fault(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800504 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 u16 slot_status;
506 u8 pwr_fault;
507 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800509 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900511 ctrl_err(ctrl, "%s: Cannot check for power fault\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 return retval;
513 }
514 pwr_fault = (u8)((slot_status & PWR_FAULT_DETECTED) >> 1);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700515
rajesh.shah@intel.com8239def2005-10-31 16:20:13 -0800516 return pwr_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800519static int hpc_get_emi_status(struct slot *slot, u8 *status)
520{
521 struct controller *ctrl = slot->ctrl;
522 u16 slot_status;
523 int retval = 0;
524
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800525 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
526 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900527 ctrl_err(ctrl, "%s : Cannot check EMI status\n", __func__);
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800528 return retval;
529 }
530 *status = (slot_status & EMI_STATE) >> EMI_STATUS_BIT;
531
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800532 return retval;
533}
534
535static int hpc_toggle_emi(struct slot *slot)
536{
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700537 u16 slot_cmd;
538 u16 cmd_mask;
539 int rc;
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800540
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700541 slot_cmd = EMI_CTRL;
542 cmd_mask = EMI_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700543 rc = pcie_write_cmd(slot->ctrl, slot_cmd, cmd_mask);
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800544 slot->last_emi_toggle = get_seconds();
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700545
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800546 return rc;
547}
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549static int hpc_set_attention_status(struct slot *slot, u8 value)
550{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800551 struct controller *ctrl = slot->ctrl;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700552 u16 slot_cmd;
553 u16 cmd_mask;
554 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700556 cmd_mask = ATTN_LED_CTRL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 switch (value) {
558 case 0 : /* turn off */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700559 slot_cmd = 0x00C0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 break;
561 case 1: /* turn on */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700562 slot_cmd = 0x0040;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 break;
564 case 2: /* turn blink */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700565 slot_cmd = 0x0080;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 break;
567 default:
568 return -1;
569 }
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700570 rc = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900571 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
572 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 return rc;
575}
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577static void hpc_set_green_led_on(struct slot *slot)
578{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800579 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700581 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700582
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700583 slot_cmd = 0x0100;
584 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700585 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900586 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
587 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
590static void hpc_set_green_led_off(struct slot *slot)
591{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800592 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700594 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700596 slot_cmd = 0x0300;
597 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700598 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900599 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
600 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
603static void hpc_set_green_led_blink(struct slot *slot)
604{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800605 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700607 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700608
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700609 slot_cmd = 0x0200;
610 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700611 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900612 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
613 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616static int hpc_power_on_slot(struct slot * slot)
617{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800618 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700620 u16 cmd_mask;
621 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 int retval = 0;
623
Taku Izumi7f2feec2008-09-05 12:11:26 +0900624 ctrl_dbg(ctrl, "%s: slot->hp_slot %x\n", __func__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Rajesh Shah5a49f202005-11-23 15:44:54 -0800626 /* Clear sticky power-fault bit from previous power failures */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800627 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900629 ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
630 __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800631 return retval;
632 }
633 slot_status &= PWR_FAULT_DETECTED;
634 if (slot_status) {
635 retval = pciehp_writew(ctrl, SLOTSTATUS, slot_status);
636 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900637 ctrl_err(ctrl,
638 "%s: Cannot write to SLOTSTATUS register\n",
639 __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800640 return retval;
641 }
642 }
643
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700644 slot_cmd = POWER_ON;
645 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800646 /* Enable detection that we turned off at slot power-off time */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700647 if (!pciehp_poll_mode) {
Kenji Kaneshigecff00652008-04-25 14:39:06 -0700648 slot_cmd |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
649 PRSN_DETECT_ENABLE);
650 cmd_mask |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
651 PRSN_DETECT_ENABLE);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700654 retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900657 ctrl_err(ctrl, "%s: Write %x command failed!\n",
658 __func__, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return -1;
660 }
Taku Izumi7f2feec2008-09-05 12:11:26 +0900661 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
662 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return retval;
665}
666
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900667static inline int pcie_mask_bad_dllp(struct controller *ctrl)
668{
669 struct pci_dev *dev = ctrl->pci_dev;
670 int pos;
671 u32 reg;
672
673 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
674 if (!pos)
675 return 0;
676 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
677 if (reg & PCI_ERR_COR_BAD_DLLP)
678 return 0;
679 reg |= PCI_ERR_COR_BAD_DLLP;
680 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
681 return 1;
682}
683
684static inline void pcie_unmask_bad_dllp(struct controller *ctrl)
685{
686 struct pci_dev *dev = ctrl->pci_dev;
687 u32 reg;
688 int pos;
689
690 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
691 if (!pos)
692 return;
693 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
694 if (!(reg & PCI_ERR_COR_BAD_DLLP))
695 return;
696 reg &= ~PCI_ERR_COR_BAD_DLLP;
697 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
698}
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700static int hpc_power_off_slot(struct slot * slot)
701{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800702 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700704 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 int retval = 0;
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900706 int changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Taku Izumi7f2feec2008-09-05 12:11:26 +0900708 ctrl_dbg(ctrl, "%s: slot->hp_slot %x\n", __func__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900710 /*
711 * Set Bad DLLP Mask bit in Correctable Error Mask
712 * Register. This is the workaround against Bad DLLP error
713 * that sometimes happens during turning power off the slot
714 * which conforms to PCI Express 1.0a spec.
715 */
716 changed = pcie_mask_bad_dllp(ctrl);
717
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700718 slot_cmd = POWER_OFF;
719 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800720 /*
721 * If we get MRL or presence detect interrupts now, the isr
722 * will notice the sticky power-fault bit too and issue power
723 * indicator change commands. This will lead to an endless loop
724 * of command completions, since the power-fault bit remains on
725 * till the slot is powered on again.
726 */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700727 if (!pciehp_poll_mode) {
Kenji Kaneshigecff00652008-04-25 14:39:06 -0700728 slot_cmd &= ~(PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
729 PRSN_DETECT_ENABLE);
730 cmd_mask |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
731 PRSN_DETECT_ENABLE);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700734 retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900736 ctrl_err(ctrl, "%s: Write command failed!\n", __func__);
Kenji Kaneshigec1ef5cb2008-03-04 13:01:14 -0800737 retval = -1;
738 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
Taku Izumi7f2feec2008-09-05 12:11:26 +0900740 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
741 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Kenji Kaneshigec1ef5cb2008-03-04 13:01:14 -0800742 out:
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900743 if (changed)
744 pcie_unmask_bad_dllp(ctrl);
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return retval;
747}
748
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800749static irqreturn_t pcie_isr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800751 struct controller *ctrl = (struct controller *)dev_id;
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700752 u16 detected, intr_loc;
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900753 struct slot *p_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700755 /*
756 * In order to guarantee that all interrupt events are
757 * serviced, we need to re-inspect Slot Status register after
758 * clearing what is presumed to be the last pending interrupt.
759 */
760 intr_loc = 0;
761 do {
762 if (pciehp_readw(ctrl, SLOTSTATUS, &detected)) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900763 ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS\n",
764 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return IRQ_NONE;
766 }
767
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700768 detected &= (ATTN_BUTTN_PRESSED | PWR_FAULT_DETECTED |
769 MRL_SENS_CHANGED | PRSN_DETECT_CHANGED |
770 CMD_COMPLETED);
771 intr_loc |= detected;
772 if (!intr_loc)
773 return IRQ_NONE;
Kenji Kaneshige6a3f0842008-06-02 09:22:34 -0700774 if (detected && pciehp_writew(ctrl, SLOTSTATUS, detected)) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900775 ctrl_err(ctrl, "%s: Cannot write to SLOTSTATUS\n",
776 __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800777 return IRQ_NONE;
778 }
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700779 } while (detected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Taku Izumi7f2feec2008-09-05 12:11:26 +0900781 ctrl_dbg(ctrl, "%s: intr_loc %x\n", __func__, intr_loc);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700782
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700783 /* Check Command Complete Interrupt Pending */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (intr_loc & CMD_COMPLETED) {
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800785 ctrl->cmd_busy = 0;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700786 smp_mb();
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900787 wake_up(&ctrl->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
789
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900790 if (!(intr_loc & ~CMD_COMPLETED))
791 return IRQ_HANDLED;
792
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900793 p_slot = pciehp_find_slot(ctrl, ctrl->slot_device_offset);
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900794
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700795 /* Check MRL Sensor Changed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800796 if (intr_loc & MRL_SENS_CHANGED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900797 pciehp_handle_switch_change(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800798
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700799 /* Check Attention Button Pressed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800800 if (intr_loc & ATTN_BUTTN_PRESSED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900801 pciehp_handle_attention_button(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800802
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700803 /* Check Presence Detect Changed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800804 if (intr_loc & PRSN_DETECT_CHANGED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900805 pciehp_handle_presence_change(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800806
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700807 /* Check Power Fault Detected */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800808 if (intr_loc & PWR_FAULT_DETECTED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900809 pciehp_handle_power_fault(p_slot);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return IRQ_HANDLED;
812}
813
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700814static int hpc_get_max_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800816 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 enum pcie_link_speed lnk_speed;
818 u32 lnk_cap;
819 int retval = 0;
820
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800821 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900823 ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return retval;
825 }
826
827 switch (lnk_cap & 0x000F) {
828 case 1:
829 lnk_speed = PCIE_2PT5GB;
830 break;
831 default:
832 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
833 break;
834 }
835
836 *value = lnk_speed;
Taku Izumi7f2feec2008-09-05 12:11:26 +0900837 ctrl_dbg(ctrl, "Max link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return retval;
840}
841
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700842static int hpc_get_max_lnk_width(struct slot *slot,
843 enum pcie_link_width *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800845 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 enum pcie_link_width lnk_wdth;
847 u32 lnk_cap;
848 int retval = 0;
849
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800850 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900852 ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return retval;
854 }
855
856 switch ((lnk_cap & 0x03F0) >> 4){
857 case 0:
858 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
859 break;
860 case 1:
861 lnk_wdth = PCIE_LNK_X1;
862 break;
863 case 2:
864 lnk_wdth = PCIE_LNK_X2;
865 break;
866 case 4:
867 lnk_wdth = PCIE_LNK_X4;
868 break;
869 case 8:
870 lnk_wdth = PCIE_LNK_X8;
871 break;
872 case 12:
873 lnk_wdth = PCIE_LNK_X12;
874 break;
875 case 16:
876 lnk_wdth = PCIE_LNK_X16;
877 break;
878 case 32:
879 lnk_wdth = PCIE_LNK_X32;
880 break;
881 default:
882 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
883 break;
884 }
885
886 *value = lnk_wdth;
Taku Izumi7f2feec2008-09-05 12:11:26 +0900887 ctrl_dbg(ctrl, "Max link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return retval;
890}
891
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700892static int hpc_get_cur_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800894 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 enum pcie_link_speed lnk_speed = PCI_SPEED_UNKNOWN;
896 int retval = 0;
897 u16 lnk_status;
898
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800899 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900901 ctrl_err(ctrl, "%s: Cannot read LNKSTATUS register\n",
902 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return retval;
904 }
905
906 switch (lnk_status & 0x0F) {
907 case 1:
908 lnk_speed = PCIE_2PT5GB;
909 break;
910 default:
911 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
912 break;
913 }
914
915 *value = lnk_speed;
Taku Izumi7f2feec2008-09-05 12:11:26 +0900916 ctrl_dbg(ctrl, "Current link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return retval;
919}
920
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700921static int hpc_get_cur_lnk_width(struct slot *slot,
922 enum pcie_link_width *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800924 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 enum pcie_link_width lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
926 int retval = 0;
927 u16 lnk_status;
928
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800929 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900931 ctrl_err(ctrl, "%s: Cannot read LNKSTATUS register\n",
932 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 return retval;
934 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 switch ((lnk_status & 0x03F0) >> 4){
937 case 0:
938 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
939 break;
940 case 1:
941 lnk_wdth = PCIE_LNK_X1;
942 break;
943 case 2:
944 lnk_wdth = PCIE_LNK_X2;
945 break;
946 case 4:
947 lnk_wdth = PCIE_LNK_X4;
948 break;
949 case 8:
950 lnk_wdth = PCIE_LNK_X8;
951 break;
952 case 12:
953 lnk_wdth = PCIE_LNK_X12;
954 break;
955 case 16:
956 lnk_wdth = PCIE_LNK_X16;
957 break;
958 case 32:
959 lnk_wdth = PCIE_LNK_X32;
960 break;
961 default:
962 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
963 break;
964 }
965
966 *value = lnk_wdth;
Taku Izumi7f2feec2008-09-05 12:11:26 +0900967 ctrl_dbg(ctrl, "Current link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 return retval;
970}
971
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900972static void pcie_release_ctrl(struct controller *ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973static struct hpc_ops pciehp_hpc_ops = {
974 .power_on_slot = hpc_power_on_slot,
975 .power_off_slot = hpc_power_off_slot,
976 .set_attention_status = hpc_set_attention_status,
977 .get_power_status = hpc_get_power_status,
978 .get_attention_status = hpc_get_attention_status,
979 .get_latch_status = hpc_get_latch_status,
980 .get_adapter_status = hpc_get_adapter_status,
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800981 .get_emi_status = hpc_get_emi_status,
982 .toggle_emi = hpc_toggle_emi,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 .get_max_bus_speed = hpc_get_max_lnk_speed,
985 .get_cur_bus_speed = hpc_get_cur_lnk_speed,
986 .get_max_lnk_width = hpc_get_max_lnk_width,
987 .get_cur_lnk_width = hpc_get_cur_lnk_width,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 .query_power_fault = hpc_query_power_fault,
990 .green_led_on = hpc_set_green_led_on,
991 .green_led_off = hpc_set_green_led_off,
992 .green_led_blink = hpc_set_green_led_blink,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700993
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900994 .release_ctlr = pcie_release_ctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 .check_lnk_status = hpc_check_lnk_status,
996};
997
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900998int pcie_enable_notification(struct controller *ctrl)
Mark Lordecdde932007-11-21 15:07:55 -0800999{
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001000 u16 cmd, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001002 cmd = PRSN_DETECT_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001003 if (ATTN_BUTTN(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001004 cmd |= ATTN_BUTTN_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001005 if (POWER_CTRL(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001006 cmd |= PWR_FAULT_DETECT_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001007 if (MRL_SENS(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001008 cmd |= MRL_DETECT_ENABLE;
1009 if (!pciehp_poll_mode)
Kenji Kaneshige3aa50c42008-06-26 20:07:33 +09001010 cmd |= HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001011
Kenji Kaneshige3aa50c42008-06-26 20:07:33 +09001012 mask = PRSN_DETECT_ENABLE | ATTN_BUTTN_ENABLE | MRL_DETECT_ENABLE |
1013 PWR_FAULT_DETECT_ENABLE | HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001014
1015 if (pcie_write_cmd(ctrl, cmd, mask)) {
Taku Izumi7f2feec2008-09-05 12:11:26 +09001016 ctrl_err(ctrl, "%s: Cannot enable software notification\n",
1017 __func__);
Kenji Kaneshige125c39f2008-05-28 14:57:30 +09001018 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
Mark Lord08e7a7d2007-11-28 15:11:46 -08001022
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001023static void pcie_disable_notification(struct controller *ctrl)
1024{
1025 u16 mask;
1026 mask = PRSN_DETECT_ENABLE | ATTN_BUTTN_ENABLE | MRL_DETECT_ENABLE |
1027 PWR_FAULT_DETECT_ENABLE | HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE;
1028 if (pcie_write_cmd(ctrl, 0, mask))
Taku Izumi7f2feec2008-09-05 12:11:26 +09001029 ctrl_warn(ctrl, "%s: Cannot disable software notification\n",
1030 __func__);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001031}
1032
1033static int pcie_init_notification(struct controller *ctrl)
1034{
1035 if (pciehp_request_irq(ctrl))
1036 return -1;
1037 if (pcie_enable_notification(ctrl)) {
1038 pciehp_free_irq(ctrl);
1039 return -1;
1040 }
1041 return 0;
1042}
1043
1044static void pcie_shutdown_notification(struct controller *ctrl)
1045{
1046 pcie_disable_notification(ctrl);
1047 pciehp_free_irq(ctrl);
1048}
1049
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001050static int pcie_init_slot(struct controller *ctrl)
1051{
1052 struct slot *slot;
1053
1054 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
1055 if (!slot)
1056 return -ENOMEM;
1057
1058 slot->hp_slot = 0;
1059 slot->ctrl = ctrl;
1060 slot->bus = ctrl->pci_dev->subordinate->number;
1061 slot->device = ctrl->slot_device_offset + slot->hp_slot;
1062 slot->hpc_ops = ctrl->hpc_ops;
1063 slot->number = ctrl->first_slot;
Alex Chiang167e7822008-08-21 15:13:29 -06001064 snprintf(slot->name, SLOT_NAME_SIZE, "%d", slot->number);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001065 mutex_init(&slot->lock);
1066 INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
1067 list_add(&slot->slot_list, &ctrl->slot_list);
1068 return 0;
1069}
1070
1071static void pcie_cleanup_slot(struct controller *ctrl)
1072{
1073 struct slot *slot;
1074 slot = list_first_entry(&ctrl->slot_list, struct slot, slot_list);
1075 list_del(&slot->slot_list);
1076 cancel_delayed_work(&slot->work);
1077 flush_scheduled_work();
1078 flush_workqueue(pciehp_wq);
1079 kfree(slot);
1080}
1081
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001082static inline void dbg_ctrl(struct controller *ctrl)
1083{
1084 int i;
1085 u16 reg16;
1086 struct pci_dev *pdev = ctrl->pci_dev;
1087
1088 if (!pciehp_debug)
1089 return;
1090
Taku Izumi7f2feec2008-09-05 12:11:26 +09001091 ctrl_info(ctrl, "Hotplug Controller:\n");
1092 ctrl_info(ctrl, " Seg/Bus/Dev/Func/IRQ : %s IRQ %d\n",
1093 pci_name(pdev), pdev->irq);
1094 ctrl_info(ctrl, " Vendor ID : 0x%04x\n", pdev->vendor);
1095 ctrl_info(ctrl, " Device ID : 0x%04x\n", pdev->device);
1096 ctrl_info(ctrl, " Subsystem ID : 0x%04x\n",
1097 pdev->subsystem_device);
1098 ctrl_info(ctrl, " Subsystem Vendor ID : 0x%04x\n",
1099 pdev->subsystem_vendor);
1100 ctrl_info(ctrl, " PCIe Cap offset : 0x%02x\n", ctrl->cap_base);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001101 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1102 if (!pci_resource_len(pdev, i))
1103 continue;
Taku Izumi7f2feec2008-09-05 12:11:26 +09001104 ctrl_info(ctrl, " PCI resource [%d] : 0x%llx@0x%llx\n",
1105 i, (unsigned long long)pci_resource_len(pdev, i),
1106 (unsigned long long)pci_resource_start(pdev, i));
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001107 }
Taku Izumi7f2feec2008-09-05 12:11:26 +09001108 ctrl_info(ctrl, "Slot Capabilities : 0x%08x\n", ctrl->slot_cap);
1109 ctrl_info(ctrl, " Physical Slot Number : %d\n", ctrl->first_slot);
1110 ctrl_info(ctrl, " Attention Button : %3s\n",
1111 ATTN_BUTTN(ctrl) ? "yes" : "no");
1112 ctrl_info(ctrl, " Power Controller : %3s\n",
1113 POWER_CTRL(ctrl) ? "yes" : "no");
1114 ctrl_info(ctrl, " MRL Sensor : %3s\n",
1115 MRL_SENS(ctrl) ? "yes" : "no");
1116 ctrl_info(ctrl, " Attention Indicator : %3s\n",
1117 ATTN_LED(ctrl) ? "yes" : "no");
1118 ctrl_info(ctrl, " Power Indicator : %3s\n",
1119 PWR_LED(ctrl) ? "yes" : "no");
1120 ctrl_info(ctrl, " Hot-Plug Surprise : %3s\n",
1121 HP_SUPR_RM(ctrl) ? "yes" : "no");
1122 ctrl_info(ctrl, " EMI Present : %3s\n",
1123 EMI(ctrl) ? "yes" : "no");
1124 ctrl_info(ctrl, " Command Completed : %3s\n",
1125 NO_CMD_CMPL(ctrl) ? "no" : "yes");
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001126 pciehp_readw(ctrl, SLOTSTATUS, &reg16);
Taku Izumi7f2feec2008-09-05 12:11:26 +09001127 ctrl_info(ctrl, "Slot Status : 0x%04x\n", reg16);
Kenji Kaneshiged8b23e82008-06-02 09:07:46 -07001128 pciehp_readw(ctrl, SLOTCTRL, &reg16);
Taku Izumi7f2feec2008-09-05 12:11:26 +09001129 ctrl_info(ctrl, "Slot Control : 0x%04x\n", reg16);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001130}
1131
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001132struct controller *pcie_init(struct pcie_device *dev)
Mark Lord08e7a7d2007-11-28 15:11:46 -08001133{
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001134 struct controller *ctrl;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001135 u32 slot_cap;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001136 struct pci_dev *pdev = dev->port;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001137
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001138 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
1139 if (!ctrl) {
Taku Izumi7f2feec2008-09-05 12:11:26 +09001140 dev_err(&dev->device, "%s : out of memory\n", __func__);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001141 goto abort;
1142 }
1143 INIT_LIST_HEAD(&ctrl->slot_list);
1144
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +09001145 ctrl->pcie = dev;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001146 ctrl->pci_dev = pdev;
1147 ctrl->cap_base = pci_find_capability(pdev, PCI_CAP_ID_EXP);
1148 if (!ctrl->cap_base) {
Taku Izumi7f2feec2008-09-05 12:11:26 +09001149 ctrl_err(ctrl, "%s: Cannot find PCI Express capability\n",
1150 __func__);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001151 goto abort;
1152 }
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001153 if (pciehp_readl(ctrl, SLOTCAP, &slot_cap)) {
Taku Izumi7f2feec2008-09-05 12:11:26 +09001154 ctrl_err(ctrl, "%s: Cannot read SLOTCAP register\n", __func__);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001155 goto abort;
1156 }
Mark Lord08e7a7d2007-11-28 15:11:46 -08001157
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001158 ctrl->slot_cap = slot_cap;
1159 ctrl->first_slot = slot_cap >> 19;
1160 ctrl->slot_device_offset = 0;
1161 ctrl->num_slots = 1;
1162 ctrl->hpc_ops = &pciehp_hpc_ops;
1163 mutex_init(&ctrl->crit_sect);
1164 mutex_init(&ctrl->ctrl_lock);
1165 init_waitqueue_head(&ctrl->queue);
1166 dbg_ctrl(ctrl);
Kenji Kaneshige58086392008-05-27 19:04:30 +09001167 /*
1168 * Controller doesn't notify of command completion if the "No
1169 * Command Completed Support" bit is set in Slot Capability
1170 * register or the controller supports none of power
1171 * controller, attention led, power led and EMI.
1172 */
1173 if (NO_CMD_CMPL(ctrl) ||
1174 !(POWER_CTRL(ctrl) | ATTN_LED(ctrl) | PWR_LED(ctrl) | EMI(ctrl)))
1175 ctrl->no_cmd_complete = 1;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001176
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001177 /* Clear all remaining event bits in Slot Status register */
1178 if (pciehp_writew(ctrl, SLOTSTATUS, 0x1f))
1179 goto abort_ctrl;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001180
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001181 /* Disable sotfware notification */
1182 pcie_disable_notification(ctrl);
Mark Lordecdde932007-11-21 15:07:55 -08001183
1184 /*
1185 * If this is the first controller to be initialized,
1186 * initialize the pciehp work queue
1187 */
1188 if (atomic_add_return(1, &pciehp_num_controllers) == 1) {
1189 pciehp_wq = create_singlethread_workqueue("pciehpd");
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001190 if (!pciehp_wq)
1191 goto abort_ctrl;
Mark Lordecdde932007-11-21 15:07:55 -08001192 }
1193
Taku Izumi7f2feec2008-09-05 12:11:26 +09001194 ctrl_info(ctrl, "HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n",
1195 pdev->vendor, pdev->device, pdev->subsystem_vendor,
1196 pdev->subsystem_device);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001197
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001198 if (pcie_init_slot(ctrl))
1199 goto abort_ctrl;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001200
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001201 if (pcie_init_notification(ctrl))
1202 goto abort_slot;
1203
1204 return ctrl;
1205
1206abort_slot:
1207 pcie_cleanup_slot(ctrl);
1208abort_ctrl:
1209 kfree(ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001210abort:
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001211 return NULL;
1212}
1213
1214void pcie_release_ctrl(struct controller *ctrl)
1215{
1216 pcie_shutdown_notification(ctrl);
1217 pcie_cleanup_slot(ctrl);
1218 /*
1219 * If this is the last controller to be released, destroy the
1220 * pciehp work queue
1221 */
1222 if (atomic_dec_and_test(&pciehp_num_controllers))
1223 destroy_workqueue(pciehp_wq);
1224 kfree(ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001225}