blob: 58c72d2cc2179b4039911050158cc5a5074c4a8f [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
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900128#define LINK_ACTIVE_REPORTING 0x00100000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130/* Link Width Encoding */
131#define LNK_X1 0x01
132#define LNK_X2 0x02
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700133#define LNK_X4 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134#define LNK_X8 0x08
135#define LNK_X12 0x0C
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700136#define LNK_X16 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#define LNK_X32 0x20
138
139/*Field definitions of Link Status Register */
140#define LNK_SPEED 0x000F
141#define NEG_LINK_WD 0x03F0
142#define LNK_TRN_ERR 0x0400
143#define LNK_TRN 0x0800
144#define SLOT_CLK_CONF 0x1000
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900145#define LINK_ACTIVE 0x2000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147/* Field definitions in Slot Capabilities Register */
148#define ATTN_BUTTN_PRSN 0x00000001
149#define PWR_CTRL_PRSN 0x00000002
150#define MRL_SENS_PRSN 0x00000004
151#define ATTN_LED_PRSN 0x00000008
152#define PWR_LED_PRSN 0x00000010
153#define HP_SUPR_RM_SUP 0x00000020
154#define HP_CAP 0x00000040
155#define SLOT_PWR_VALUE 0x000003F8
156#define SLOT_PWR_LIMIT 0x00000C00
157#define PSN 0xFFF80000 /* PSN: Physical Slot Number */
158
159/* Field definitions in Slot Control Register */
160#define ATTN_BUTTN_ENABLE 0x0001
161#define PWR_FAULT_DETECT_ENABLE 0x0002
162#define MRL_DETECT_ENABLE 0x0004
163#define PRSN_DETECT_ENABLE 0x0008
164#define CMD_CMPL_INTR_ENABLE 0x0010
165#define HP_INTR_ENABLE 0x0020
166#define ATTN_LED_CTRL 0x00C0
167#define PWR_LED_CTRL 0x0300
168#define PWR_CTRL 0x0400
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800169#define EMI_CTRL 0x0800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171/* Attention indicator and Power indicator states */
172#define LED_ON 0x01
173#define LED_BLINK 0x10
174#define LED_OFF 0x11
175
176/* Power Control Command */
177#define POWER_ON 0
178#define POWER_OFF 0x0400
179
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800180/* EMI Status defines */
181#define EMI_DISENGAGED 0
182#define EMI_ENGAGED 1
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/* Field definitions in Slot Status Register */
185#define ATTN_BUTTN_PRESSED 0x0001
186#define PWR_FAULT_DETECTED 0x0002
187#define MRL_SENS_CHANGED 0x0004
188#define PRSN_DETECT_CHANGED 0x0008
189#define CMD_COMPLETED 0x0010
190#define MRL_STATE 0x0020
191#define PRSN_STATE 0x0040
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800192#define EMI_STATE 0x0080
193#define EMI_STATUS_BIT 7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800195static irqreturn_t pcie_isr(int irq, void *dev_id);
196static void start_int_poll_timer(struct controller *ctrl, int sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198/* This is the interrupt polling timeout function. */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800199static void int_poll_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800201 struct controller *ctrl = (struct controller *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 /* Poll for interrupt events. regs == NULL => polling */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800204 pcie_isr(0, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800206 init_timer(&ctrl->poll_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 if (!pciehp_poll_time)
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700208 pciehp_poll_time = 2; /* default polling interval is 2 sec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800210 start_int_poll_timer(ctrl, pciehp_poll_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
213/* This function starts the interrupt polling timer. */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800214static void start_int_poll_timer(struct controller *ctrl, int sec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800216 /* Clamp to sane value */
217 if ((sec <= 0) || (sec > 60))
218 sec = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800220 ctrl->poll_timer.function = &int_poll_timeout;
221 ctrl->poll_timer.data = (unsigned long)ctrl;
222 ctrl->poll_timer.expires = jiffies + sec * HZ;
223 add_timer(&ctrl->poll_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700226static inline int pciehp_request_irq(struct controller *ctrl)
227{
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +0900228 int retval, irq = ctrl->pcie->irq;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700229
230 /* Install interrupt polling timer. Start with 10 sec delay */
231 if (pciehp_poll_mode) {
232 init_timer(&ctrl->poll_timer);
233 start_int_poll_timer(ctrl, 10);
234 return 0;
235 }
236
237 /* Installs the interrupt handler */
238 retval = request_irq(irq, pcie_isr, IRQF_SHARED, MY_NAME, ctrl);
239 if (retval)
Taku Izumi7f2feec2008-09-05 12:11:26 +0900240 ctrl_err(ctrl, "Cannot get irq %d for the hotplug controller\n",
241 irq);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700242 return retval;
243}
244
245static inline void pciehp_free_irq(struct controller *ctrl)
246{
247 if (pciehp_poll_mode)
248 del_timer_sync(&ctrl->poll_timer);
249 else
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +0900250 free_irq(ctrl->pcie->irq, ctrl);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700251}
252
Kenji Kaneshige563f1192008-06-20 12:05:52 +0900253static int pcie_poll_cmd(struct controller *ctrl)
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900254{
255 u16 slot_status;
256 int timeout = 1000;
257
Kenji Kaneshige820943b2008-06-20 12:04:33 +0900258 if (!pciehp_readw(ctrl, SLOTSTATUS, &slot_status)) {
259 if (slot_status & CMD_COMPLETED) {
260 pciehp_writew(ctrl, SLOTSTATUS, CMD_COMPLETED);
261 return 1;
262 }
263 }
Adrian Bunka5827f42008-08-28 01:05:26 +0300264 while (timeout > 0) {
Kenji Kaneshige66618ba2008-06-20 12:05:12 +0900265 msleep(10);
266 timeout -= 10;
Kenji Kaneshige820943b2008-06-20 12:04:33 +0900267 if (!pciehp_readw(ctrl, SLOTSTATUS, &slot_status)) {
268 if (slot_status & CMD_COMPLETED) {
269 pciehp_writew(ctrl, SLOTSTATUS, CMD_COMPLETED);
270 return 1;
271 }
272 }
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900273 }
274 return 0; /* timeout */
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900275}
276
Kenji Kaneshige563f1192008-06-20 12:05:52 +0900277static void pcie_wait_cmd(struct controller *ctrl, int poll)
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800278{
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800279 unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
280 unsigned long timeout = msecs_to_jiffies(msecs);
281 int rc;
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800282
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900283 if (poll)
284 rc = pcie_poll_cmd(ctrl);
285 else
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900286 rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout);
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800287 if (!rc)
Taku Izumi7f2feec2008-09-05 12:11:26 +0900288 ctrl_dbg(ctrl, "Command not completed in 1000 msec\n");
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800289}
290
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700291/**
292 * pcie_write_cmd - Issue controller command
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700293 * @ctrl: controller to which the command is issued
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700294 * @cmd: command value written to slot control register
295 * @mask: bitmask of slot control register to be modified
296 */
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700297static int pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 int retval = 0;
300 u16 slot_status;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700301 u16 slot_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800303 mutex_lock(&ctrl->ctrl_lock);
304
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800305 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900307 ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
308 __func__);
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800309 goto out;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800310 }
311
Kenji Kaneshige58086392008-05-27 19:04:30 +0900312 if (slot_status & CMD_COMPLETED) {
313 if (!ctrl->no_cmd_complete) {
314 /*
315 * After 1 sec and CMD_COMPLETED still not set, just
316 * proceed forward to issue the next command according
317 * to spec. Just print out the error message.
318 */
Taku Izumi7f2feec2008-09-05 12:11:26 +0900319 ctrl_dbg(ctrl,
320 "%s: CMD_COMPLETED not clear after 1 sec.\n",
321 __func__);
Kenji Kaneshige58086392008-05-27 19:04:30 +0900322 } else if (!NO_CMD_CMPL(ctrl)) {
323 /*
324 * This controller semms to notify of command completed
325 * event even though it supports none of power
326 * controller, attention led, power led and EMI.
327 */
Taku Izumi7f2feec2008-09-05 12:11:26 +0900328 ctrl_dbg(ctrl, "%s: Unexpected CMD_COMPLETED. Need to "
329 "wait for command completed event.\n",
330 __func__);
Kenji Kaneshige58086392008-05-27 19:04:30 +0900331 ctrl->no_cmd_complete = 0;
332 } else {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900333 ctrl_dbg(ctrl, "%s: Unexpected CMD_COMPLETED. Maybe "
334 "the controller is broken.\n", __func__);
Kenji Kaneshige58086392008-05-27 19:04:30 +0900335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 }
337
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700338 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900340 ctrl_err(ctrl, "%s: Cannot read SLOTCTRL register\n", __func__);
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700341 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700344 slot_ctrl &= ~mask;
Kenji Kaneshigeb7aa1f12008-04-25 14:39:14 -0700345 slot_ctrl |= (cmd & mask);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700346 ctrl->cmd_busy = 1;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700347 smp_mb();
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700348 retval = pciehp_writew(ctrl, SLOTCTRL, slot_ctrl);
349 if (retval)
Taku Izumi7f2feec2008-09-05 12:11:26 +0900350 ctrl_err(ctrl, "%s: Cannot write to SLOTCTRL register\n",
351 __func__);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700352
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800353 /*
354 * Wait for command completion.
355 */
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900356 if (!retval && !ctrl->no_cmd_complete) {
357 int poll = 0;
358 /*
359 * if hotplug interrupt is not enabled or command
360 * completed interrupt is not enabled, we need to poll
361 * command completed event.
362 */
363 if (!(slot_ctrl & HP_INTR_ENABLE) ||
364 !(slot_ctrl & CMD_CMPL_INTR_ENABLE))
365 poll = 1;
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900366 pcie_wait_cmd(ctrl, poll);
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900367 }
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800368 out:
369 mutex_unlock(&ctrl->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return retval;
371}
372
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900373static inline int check_link_active(struct controller *ctrl)
374{
375 u16 link_status;
376
377 if (pciehp_readw(ctrl, LNKSTATUS, &link_status))
378 return 0;
379 return !!(link_status & LINK_ACTIVE);
380}
381
382static void pcie_wait_link_active(struct controller *ctrl)
383{
384 int timeout = 1000;
385
386 if (check_link_active(ctrl))
387 return;
388 while (timeout > 0) {
389 msleep(10);
390 timeout -= 10;
391 if (check_link_active(ctrl))
392 return;
393 }
394 ctrl_dbg(ctrl, "Data Link Layer Link Active not set in 1000 msec\n");
395}
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397static int hpc_check_lnk_status(struct controller *ctrl)
398{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 u16 lnk_status;
400 int retval = 0;
401
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900402 /*
403 * Data Link Layer Link Active Reporting must be capable for
404 * hot-plug capable downstream port. But old controller might
405 * not implement it. In this case, we wait for 1000 ms.
406 */
407 if (ctrl->link_active_reporting){
408 /* Wait for Data Link Layer Link Active bit to be set */
409 pcie_wait_link_active(ctrl);
410 /*
411 * We must wait for 100 ms after the Data Link Layer
412 * Link Active bit reads 1b before initiating a
413 * configuration access to the hot added device.
414 */
415 msleep(100);
416 } else
417 msleep(1000);
418
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800419 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900421 ctrl_err(ctrl, "%s: Cannot read LNKSTATUS register\n",
422 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return retval;
424 }
425
Taku Izumi7f2feec2008-09-05 12:11:26 +0900426 ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700427 if ( (lnk_status & LNK_TRN) || (lnk_status & LNK_TRN_ERR) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 !(lnk_status & NEG_LINK_WD)) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900429 ctrl_err(ctrl, "%s : Link Training Error occurs \n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 retval = -1;
431 return retval;
432 }
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return retval;
435}
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437static int hpc_get_attention_status(struct slot *slot, u8 *status)
438{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800439 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 u16 slot_ctrl;
441 u8 atten_led_state;
442 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800444 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900446 ctrl_err(ctrl, "%s: Cannot read SLOTCTRL register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return retval;
448 }
449
Taku Izumi7f2feec2008-09-05 12:11:26 +0900450 ctrl_dbg(ctrl, "%s: SLOTCTRL %x, value read %x\n",
451 __func__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 atten_led_state = (slot_ctrl & ATTN_LED_CTRL) >> 6;
454
455 switch (atten_led_state) {
456 case 0:
457 *status = 0xFF; /* Reserved */
458 break;
459 case 1:
460 *status = 1; /* On */
461 break;
462 case 2:
463 *status = 2; /* Blink */
464 break;
465 case 3:
466 *status = 0; /* Off */
467 break;
468 default:
469 *status = 0xFF;
470 break;
471 }
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return 0;
474}
475
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800476static int hpc_get_power_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800478 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 u16 slot_ctrl;
480 u8 pwr_state;
481 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800483 retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900485 ctrl_err(ctrl, "%s: Cannot read SLOTCTRL register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return retval;
487 }
Taku Izumi7f2feec2008-09-05 12:11:26 +0900488 ctrl_dbg(ctrl, "%s: SLOTCTRL %x value read %x\n",
489 __func__, ctrl->cap_base + SLOTCTRL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 pwr_state = (slot_ctrl & PWR_CTRL) >> 10;
492
493 switch (pwr_state) {
494 case 0:
495 *status = 1;
496 break;
497 case 1:
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700498 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 break;
500 default:
501 *status = 0xFF;
502 break;
503 }
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return retval;
506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508static int hpc_get_latch_status(struct slot *slot, u8 *status)
509{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800510 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 u16 slot_status;
512 int retval = 0;
513
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800514 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900516 ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
517 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 return retval;
519 }
520
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700521 *status = (((slot_status & MRL_STATE) >> 5) == 0) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return 0;
524}
525
526static int hpc_get_adapter_status(struct slot *slot, u8 *status)
527{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800528 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 u16 slot_status;
530 u8 card_state;
531 int retval = 0;
532
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800533 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900535 ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
536 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return retval;
538 }
539 card_state = (u8)((slot_status & PRSN_STATE) >> 6);
540 *status = (card_state == 1) ? 1 : 0;
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 return 0;
543}
544
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800545static int hpc_query_power_fault(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800547 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 u16 slot_status;
549 u8 pwr_fault;
550 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800552 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900554 ctrl_err(ctrl, "%s: Cannot check for power fault\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return retval;
556 }
557 pwr_fault = (u8)((slot_status & PWR_FAULT_DETECTED) >> 1);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700558
rajesh.shah@intel.com8239def2005-10-31 16:20:13 -0800559 return pwr_fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800562static int hpc_get_emi_status(struct slot *slot, u8 *status)
563{
564 struct controller *ctrl = slot->ctrl;
565 u16 slot_status;
566 int retval = 0;
567
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800568 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
569 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900570 ctrl_err(ctrl, "%s : Cannot check EMI status\n", __func__);
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800571 return retval;
572 }
573 *status = (slot_status & EMI_STATE) >> EMI_STATUS_BIT;
574
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800575 return retval;
576}
577
578static int hpc_toggle_emi(struct slot *slot)
579{
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700580 u16 slot_cmd;
581 u16 cmd_mask;
582 int rc;
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800583
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700584 slot_cmd = EMI_CTRL;
585 cmd_mask = EMI_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700586 rc = pcie_write_cmd(slot->ctrl, slot_cmd, cmd_mask);
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800587 slot->last_emi_toggle = get_seconds();
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700588
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -0800589 return rc;
590}
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592static int hpc_set_attention_status(struct slot *slot, u8 value)
593{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800594 struct controller *ctrl = slot->ctrl;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700595 u16 slot_cmd;
596 u16 cmd_mask;
597 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700599 cmd_mask = ATTN_LED_CTRL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 switch (value) {
601 case 0 : /* turn off */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700602 slot_cmd = 0x00C0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 break;
604 case 1: /* turn on */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700605 slot_cmd = 0x0040;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 break;
607 case 2: /* turn blink */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700608 slot_cmd = 0x0080;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 break;
610 default:
611 return -1;
612 }
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700613 rc = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900614 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
615 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return rc;
618}
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620static void hpc_set_green_led_on(struct slot *slot)
621{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800622 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700624 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700625
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700626 slot_cmd = 0x0100;
627 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700628 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900629 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
630 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
633static void hpc_set_green_led_off(struct slot *slot)
634{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800635 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700637 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700639 slot_cmd = 0x0300;
640 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700641 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900642 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
643 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
646static void hpc_set_green_led_blink(struct slot *slot)
647{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800648 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700650 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700651
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700652 slot_cmd = 0x0200;
653 cmd_mask = PWR_LED_CTRL;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700654 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900655 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
656 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659static int hpc_power_on_slot(struct slot * slot)
660{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800661 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700663 u16 cmd_mask;
664 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 int retval = 0;
666
Taku Izumi7f2feec2008-09-05 12:11:26 +0900667 ctrl_dbg(ctrl, "%s: slot->hp_slot %x\n", __func__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Rajesh Shah5a49f202005-11-23 15:44:54 -0800669 /* Clear sticky power-fault bit from previous power failures */
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800670 retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900672 ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS register\n",
673 __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800674 return retval;
675 }
676 slot_status &= PWR_FAULT_DETECTED;
677 if (slot_status) {
678 retval = pciehp_writew(ctrl, SLOTSTATUS, slot_status);
679 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900680 ctrl_err(ctrl,
681 "%s: Cannot write to SLOTSTATUS register\n",
682 __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800683 return retval;
684 }
685 }
686
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700687 slot_cmd = POWER_ON;
688 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800689 /* Enable detection that we turned off at slot power-off time */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700690 if (!pciehp_poll_mode) {
Kenji Kaneshigecff00652008-04-25 14:39:06 -0700691 slot_cmd |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
692 PRSN_DETECT_ENABLE);
693 cmd_mask |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
694 PRSN_DETECT_ENABLE);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700697 retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900700 ctrl_err(ctrl, "%s: Write %x command failed!\n",
701 __func__, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return -1;
703 }
Taku Izumi7f2feec2008-09-05 12:11:26 +0900704 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
705 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return retval;
708}
709
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900710static inline int pcie_mask_bad_dllp(struct controller *ctrl)
711{
712 struct pci_dev *dev = ctrl->pci_dev;
713 int pos;
714 u32 reg;
715
716 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
717 if (!pos)
718 return 0;
719 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
720 if (reg & PCI_ERR_COR_BAD_DLLP)
721 return 0;
722 reg |= PCI_ERR_COR_BAD_DLLP;
723 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
724 return 1;
725}
726
727static inline void pcie_unmask_bad_dllp(struct controller *ctrl)
728{
729 struct pci_dev *dev = ctrl->pci_dev;
730 u32 reg;
731 int pos;
732
733 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
734 if (!pos)
735 return;
736 pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, &reg);
737 if (!(reg & PCI_ERR_COR_BAD_DLLP))
738 return;
739 reg &= ~PCI_ERR_COR_BAD_DLLP;
740 pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg);
741}
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743static int hpc_power_off_slot(struct slot * slot)
744{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800745 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700747 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 int retval = 0;
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900749 int changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Taku Izumi7f2feec2008-09-05 12:11:26 +0900751 ctrl_dbg(ctrl, "%s: slot->hp_slot %x\n", __func__, slot->hp_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900753 /*
754 * Set Bad DLLP Mask bit in Correctable Error Mask
755 * Register. This is the workaround against Bad DLLP error
756 * that sometimes happens during turning power off the slot
757 * which conforms to PCI Express 1.0a spec.
758 */
759 changed = pcie_mask_bad_dllp(ctrl);
760
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700761 slot_cmd = POWER_OFF;
762 cmd_mask = PWR_CTRL;
Thomas Schaeferc7ab3372005-12-08 11:55:57 -0800763 /*
764 * If we get MRL or presence detect interrupts now, the isr
765 * will notice the sticky power-fault bit too and issue power
766 * indicator change commands. This will lead to an endless loop
767 * of command completions, since the power-fault bit remains on
768 * till the slot is powered on again.
769 */
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700770 if (!pciehp_poll_mode) {
Kenji Kaneshigecff00652008-04-25 14:39:06 -0700771 slot_cmd &= ~(PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
772 PRSN_DETECT_ENABLE);
773 cmd_mask |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE |
774 PRSN_DETECT_ENABLE);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700777 retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900779 ctrl_err(ctrl, "%s: Write command failed!\n", __func__);
Kenji Kaneshigec1ef5cb2008-03-04 13:01:14 -0800780 retval = -1;
781 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
Taku Izumi7f2feec2008-09-05 12:11:26 +0900783 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n",
784 __func__, ctrl->cap_base + SLOTCTRL, slot_cmd);
Kenji Kaneshigec1ef5cb2008-03-04 13:01:14 -0800785 out:
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900786 if (changed)
787 pcie_unmask_bad_dllp(ctrl);
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return retval;
790}
791
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800792static irqreturn_t pcie_isr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800794 struct controller *ctrl = (struct controller *)dev_id;
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700795 u16 detected, intr_loc;
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900796 struct slot *p_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700798 /*
799 * In order to guarantee that all interrupt events are
800 * serviced, we need to re-inspect Slot Status register after
801 * clearing what is presumed to be the last pending interrupt.
802 */
803 intr_loc = 0;
804 do {
805 if (pciehp_readw(ctrl, SLOTSTATUS, &detected)) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900806 ctrl_err(ctrl, "%s: Cannot read SLOTSTATUS\n",
807 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return IRQ_NONE;
809 }
810
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700811 detected &= (ATTN_BUTTN_PRESSED | PWR_FAULT_DETECTED |
812 MRL_SENS_CHANGED | PRSN_DETECT_CHANGED |
813 CMD_COMPLETED);
814 intr_loc |= detected;
815 if (!intr_loc)
816 return IRQ_NONE;
Kenji Kaneshige6a3f0842008-06-02 09:22:34 -0700817 if (detected && pciehp_writew(ctrl, SLOTSTATUS, detected)) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900818 ctrl_err(ctrl, "%s: Cannot write to SLOTSTATUS\n",
819 __func__);
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800820 return IRQ_NONE;
821 }
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700822 } while (detected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Taku Izumi7f2feec2008-09-05 12:11:26 +0900824 ctrl_dbg(ctrl, "%s: intr_loc %x\n", __func__, intr_loc);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700825
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700826 /* Check Command Complete Interrupt Pending */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (intr_loc & CMD_COMPLETED) {
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800828 ctrl->cmd_busy = 0;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700829 smp_mb();
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900830 wake_up(&ctrl->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 }
832
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900833 if (!(intr_loc & ~CMD_COMPLETED))
834 return IRQ_HANDLED;
835
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900836 p_slot = pciehp_find_slot(ctrl, ctrl->slot_device_offset);
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900837
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700838 /* Check MRL Sensor Changed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800839 if (intr_loc & MRL_SENS_CHANGED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900840 pciehp_handle_switch_change(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800841
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700842 /* Check Attention Button Pressed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800843 if (intr_loc & ATTN_BUTTN_PRESSED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900844 pciehp_handle_attention_button(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800845
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700846 /* Check Presence Detect Changed */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800847 if (intr_loc & PRSN_DETECT_CHANGED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900848 pciehp_handle_presence_change(p_slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800849
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700850 /* Check Power Fault Detected */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800851 if (intr_loc & PWR_FAULT_DETECTED)
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900852 pciehp_handle_power_fault(p_slot);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return IRQ_HANDLED;
855}
856
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700857static int hpc_get_max_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800859 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 enum pcie_link_speed lnk_speed;
861 u32 lnk_cap;
862 int retval = 0;
863
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800864 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900866 ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return retval;
868 }
869
870 switch (lnk_cap & 0x000F) {
871 case 1:
872 lnk_speed = PCIE_2PT5GB;
873 break;
874 default:
875 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
876 break;
877 }
878
879 *value = lnk_speed;
Taku Izumi7f2feec2008-09-05 12:11:26 +0900880 ctrl_dbg(ctrl, "Max link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 return retval;
883}
884
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700885static int hpc_get_max_lnk_width(struct slot *slot,
886 enum pcie_link_width *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800888 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 enum pcie_link_width lnk_wdth;
890 u32 lnk_cap;
891 int retval = 0;
892
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800893 retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900895 ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return retval;
897 }
898
899 switch ((lnk_cap & 0x03F0) >> 4){
900 case 0:
901 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
902 break;
903 case 1:
904 lnk_wdth = PCIE_LNK_X1;
905 break;
906 case 2:
907 lnk_wdth = PCIE_LNK_X2;
908 break;
909 case 4:
910 lnk_wdth = PCIE_LNK_X4;
911 break;
912 case 8:
913 lnk_wdth = PCIE_LNK_X8;
914 break;
915 case 12:
916 lnk_wdth = PCIE_LNK_X12;
917 break;
918 case 16:
919 lnk_wdth = PCIE_LNK_X16;
920 break;
921 case 32:
922 lnk_wdth = PCIE_LNK_X32;
923 break;
924 default:
925 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
926 break;
927 }
928
929 *value = lnk_wdth;
Taku Izumi7f2feec2008-09-05 12:11:26 +0900930 ctrl_dbg(ctrl, "Max link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return retval;
933}
934
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700935static int hpc_get_cur_lnk_speed(struct slot *slot, enum pci_bus_speed *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800937 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 enum pcie_link_speed lnk_speed = PCI_SPEED_UNKNOWN;
939 int retval = 0;
940 u16 lnk_status;
941
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800942 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900944 ctrl_err(ctrl, "%s: Cannot read LNKSTATUS register\n",
945 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return retval;
947 }
948
949 switch (lnk_status & 0x0F) {
950 case 1:
951 lnk_speed = PCIE_2PT5GB;
952 break;
953 default:
954 lnk_speed = PCIE_LNK_SPEED_UNKNOWN;
955 break;
956 }
957
958 *value = lnk_speed;
Taku Izumi7f2feec2008-09-05 12:11:26 +0900959 ctrl_dbg(ctrl, "Current link speed = %d\n", lnk_speed);
Kenji Kaneshigec8426482007-08-09 16:09:33 -0700960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 return retval;
962}
963
Kenji Kaneshige40730d12007-08-09 16:09:38 -0700964static int hpc_get_cur_lnk_width(struct slot *slot,
965 enum pcie_link_width *value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800967 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 enum pcie_link_width lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
969 int retval = 0;
970 u16 lnk_status;
971
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800972 retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (retval) {
Taku Izumi7f2feec2008-09-05 12:11:26 +0900974 ctrl_err(ctrl, "%s: Cannot read LNKSTATUS register\n",
975 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 return retval;
977 }
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 switch ((lnk_status & 0x03F0) >> 4){
980 case 0:
981 lnk_wdth = PCIE_LNK_WIDTH_RESRV;
982 break;
983 case 1:
984 lnk_wdth = PCIE_LNK_X1;
985 break;
986 case 2:
987 lnk_wdth = PCIE_LNK_X2;
988 break;
989 case 4:
990 lnk_wdth = PCIE_LNK_X4;
991 break;
992 case 8:
993 lnk_wdth = PCIE_LNK_X8;
994 break;
995 case 12:
996 lnk_wdth = PCIE_LNK_X12;
997 break;
998 case 16:
999 lnk_wdth = PCIE_LNK_X16;
1000 break;
1001 case 32:
1002 lnk_wdth = PCIE_LNK_X32;
1003 break;
1004 default:
1005 lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN;
1006 break;
1007 }
1008
1009 *value = lnk_wdth;
Taku Izumi7f2feec2008-09-05 12:11:26 +09001010 ctrl_dbg(ctrl, "Current link width = %d\n", lnk_wdth);
Kenji Kaneshigec8426482007-08-09 16:09:33 -07001011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 return retval;
1013}
1014
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001015static void pcie_release_ctrl(struct controller *ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016static struct hpc_ops pciehp_hpc_ops = {
1017 .power_on_slot = hpc_power_on_slot,
1018 .power_off_slot = hpc_power_off_slot,
1019 .set_attention_status = hpc_set_attention_status,
1020 .get_power_status = hpc_get_power_status,
1021 .get_attention_status = hpc_get_attention_status,
1022 .get_latch_status = hpc_get_latch_status,
1023 .get_adapter_status = hpc_get_adapter_status,
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -08001024 .get_emi_status = hpc_get_emi_status,
1025 .toggle_emi = hpc_toggle_emi,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 .get_max_bus_speed = hpc_get_max_lnk_speed,
1028 .get_cur_bus_speed = hpc_get_cur_lnk_speed,
1029 .get_max_lnk_width = hpc_get_max_lnk_width,
1030 .get_cur_lnk_width = hpc_get_cur_lnk_width,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 .query_power_fault = hpc_query_power_fault,
1033 .green_led_on = hpc_set_green_led_on,
1034 .green_led_off = hpc_set_green_led_off,
1035 .green_led_blink = hpc_set_green_led_blink,
Kenji Kaneshige71ad5562007-08-09 16:09:34 -07001036
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001037 .release_ctlr = pcie_release_ctrl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 .check_lnk_status = hpc_check_lnk_status,
1039};
1040
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001041int pcie_enable_notification(struct controller *ctrl)
Mark Lordecdde932007-11-21 15:07:55 -08001042{
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001043 u16 cmd, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001045 cmd = PRSN_DETECT_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001046 if (ATTN_BUTTN(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001047 cmd |= ATTN_BUTTN_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001048 if (POWER_CTRL(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001049 cmd |= PWR_FAULT_DETECT_ENABLE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -07001050 if (MRL_SENS(ctrl))
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001051 cmd |= MRL_DETECT_ENABLE;
1052 if (!pciehp_poll_mode)
Kenji Kaneshige3aa50c42008-06-26 20:07:33 +09001053 cmd |= HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001054
Kenji Kaneshige3aa50c42008-06-26 20:07:33 +09001055 mask = PRSN_DETECT_ENABLE | ATTN_BUTTN_ENABLE | MRL_DETECT_ENABLE |
1056 PWR_FAULT_DETECT_ENABLE | HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -07001057
1058 if (pcie_write_cmd(ctrl, cmd, mask)) {
Taku Izumi7f2feec2008-09-05 12:11:26 +09001059 ctrl_err(ctrl, "%s: Cannot enable software notification\n",
1060 __func__);
Kenji Kaneshige125c39f2008-05-28 14:57:30 +09001061 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
Mark Lord08e7a7d2007-11-28 15:11:46 -08001065
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001066static void pcie_disable_notification(struct controller *ctrl)
1067{
1068 u16 mask;
1069 mask = PRSN_DETECT_ENABLE | ATTN_BUTTN_ENABLE | MRL_DETECT_ENABLE |
1070 PWR_FAULT_DETECT_ENABLE | HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE;
1071 if (pcie_write_cmd(ctrl, 0, mask))
Taku Izumi7f2feec2008-09-05 12:11:26 +09001072 ctrl_warn(ctrl, "%s: Cannot disable software notification\n",
1073 __func__);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001074}
1075
1076static int pcie_init_notification(struct controller *ctrl)
1077{
1078 if (pciehp_request_irq(ctrl))
1079 return -1;
1080 if (pcie_enable_notification(ctrl)) {
1081 pciehp_free_irq(ctrl);
1082 return -1;
1083 }
1084 return 0;
1085}
1086
1087static void pcie_shutdown_notification(struct controller *ctrl)
1088{
1089 pcie_disable_notification(ctrl);
1090 pciehp_free_irq(ctrl);
1091}
1092
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001093static int pcie_init_slot(struct controller *ctrl)
1094{
1095 struct slot *slot;
1096
1097 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
1098 if (!slot)
1099 return -ENOMEM;
1100
1101 slot->hp_slot = 0;
1102 slot->ctrl = ctrl;
1103 slot->bus = ctrl->pci_dev->subordinate->number;
1104 slot->device = ctrl->slot_device_offset + slot->hp_slot;
1105 slot->hpc_ops = ctrl->hpc_ops;
1106 slot->number = ctrl->first_slot;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001107 mutex_init(&slot->lock);
1108 INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
1109 list_add(&slot->slot_list, &ctrl->slot_list);
1110 return 0;
1111}
1112
1113static void pcie_cleanup_slot(struct controller *ctrl)
1114{
1115 struct slot *slot;
1116 slot = list_first_entry(&ctrl->slot_list, struct slot, slot_list);
1117 list_del(&slot->slot_list);
1118 cancel_delayed_work(&slot->work);
1119 flush_scheduled_work();
1120 flush_workqueue(pciehp_wq);
1121 kfree(slot);
1122}
1123
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001124static inline void dbg_ctrl(struct controller *ctrl)
1125{
1126 int i;
1127 u16 reg16;
1128 struct pci_dev *pdev = ctrl->pci_dev;
1129
1130 if (!pciehp_debug)
1131 return;
1132
Taku Izumi7f2feec2008-09-05 12:11:26 +09001133 ctrl_info(ctrl, "Hotplug Controller:\n");
1134 ctrl_info(ctrl, " Seg/Bus/Dev/Func/IRQ : %s IRQ %d\n",
1135 pci_name(pdev), pdev->irq);
1136 ctrl_info(ctrl, " Vendor ID : 0x%04x\n", pdev->vendor);
1137 ctrl_info(ctrl, " Device ID : 0x%04x\n", pdev->device);
1138 ctrl_info(ctrl, " Subsystem ID : 0x%04x\n",
1139 pdev->subsystem_device);
1140 ctrl_info(ctrl, " Subsystem Vendor ID : 0x%04x\n",
1141 pdev->subsystem_vendor);
1142 ctrl_info(ctrl, " PCIe Cap offset : 0x%02x\n", ctrl->cap_base);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001143 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
1144 if (!pci_resource_len(pdev, i))
1145 continue;
Taku Izumi7f2feec2008-09-05 12:11:26 +09001146 ctrl_info(ctrl, " PCI resource [%d] : 0x%llx@0x%llx\n",
1147 i, (unsigned long long)pci_resource_len(pdev, i),
1148 (unsigned long long)pci_resource_start(pdev, i));
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001149 }
Taku Izumi7f2feec2008-09-05 12:11:26 +09001150 ctrl_info(ctrl, "Slot Capabilities : 0x%08x\n", ctrl->slot_cap);
1151 ctrl_info(ctrl, " Physical Slot Number : %d\n", ctrl->first_slot);
1152 ctrl_info(ctrl, " Attention Button : %3s\n",
1153 ATTN_BUTTN(ctrl) ? "yes" : "no");
1154 ctrl_info(ctrl, " Power Controller : %3s\n",
1155 POWER_CTRL(ctrl) ? "yes" : "no");
1156 ctrl_info(ctrl, " MRL Sensor : %3s\n",
1157 MRL_SENS(ctrl) ? "yes" : "no");
1158 ctrl_info(ctrl, " Attention Indicator : %3s\n",
1159 ATTN_LED(ctrl) ? "yes" : "no");
1160 ctrl_info(ctrl, " Power Indicator : %3s\n",
1161 PWR_LED(ctrl) ? "yes" : "no");
1162 ctrl_info(ctrl, " Hot-Plug Surprise : %3s\n",
1163 HP_SUPR_RM(ctrl) ? "yes" : "no");
1164 ctrl_info(ctrl, " EMI Present : %3s\n",
1165 EMI(ctrl) ? "yes" : "no");
1166 ctrl_info(ctrl, " Command Completed : %3s\n",
1167 NO_CMD_CMPL(ctrl) ? "no" : "yes");
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001168 pciehp_readw(ctrl, SLOTSTATUS, &reg16);
Taku Izumi7f2feec2008-09-05 12:11:26 +09001169 ctrl_info(ctrl, "Slot Status : 0x%04x\n", reg16);
Kenji Kaneshiged8b23e82008-06-02 09:07:46 -07001170 pciehp_readw(ctrl, SLOTCTRL, &reg16);
Taku Izumi7f2feec2008-09-05 12:11:26 +09001171 ctrl_info(ctrl, "Slot Control : 0x%04x\n", reg16);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001172}
1173
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001174struct controller *pcie_init(struct pcie_device *dev)
Mark Lord08e7a7d2007-11-28 15:11:46 -08001175{
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001176 struct controller *ctrl;
Kenji Kaneshigef18e9622008-10-22 14:31:44 +09001177 u32 slot_cap, link_cap;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001178 struct pci_dev *pdev = dev->port;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001179
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001180 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
1181 if (!ctrl) {
Taku Izumi7f2feec2008-09-05 12:11:26 +09001182 dev_err(&dev->device, "%s : out of memory\n", __func__);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001183 goto abort;
1184 }
1185 INIT_LIST_HEAD(&ctrl->slot_list);
1186
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +09001187 ctrl->pcie = dev;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001188 ctrl->pci_dev = pdev;
1189 ctrl->cap_base = pci_find_capability(pdev, PCI_CAP_ID_EXP);
1190 if (!ctrl->cap_base) {
Taku Izumi7f2feec2008-09-05 12:11:26 +09001191 ctrl_err(ctrl, "%s: Cannot find PCI Express capability\n",
1192 __func__);
Kenji Kaneshigeb84346e2008-10-22 14:30:15 +09001193 goto abort_ctrl;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001194 }
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001195 if (pciehp_readl(ctrl, SLOTCAP, &slot_cap)) {
Taku Izumi7f2feec2008-09-05 12:11:26 +09001196 ctrl_err(ctrl, "%s: Cannot read SLOTCAP register\n", __func__);
Kenji Kaneshigeb84346e2008-10-22 14:30:15 +09001197 goto abort_ctrl;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001198 }
Mark Lord08e7a7d2007-11-28 15:11:46 -08001199
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001200 ctrl->slot_cap = slot_cap;
1201 ctrl->first_slot = slot_cap >> 19;
1202 ctrl->slot_device_offset = 0;
1203 ctrl->num_slots = 1;
1204 ctrl->hpc_ops = &pciehp_hpc_ops;
1205 mutex_init(&ctrl->crit_sect);
1206 mutex_init(&ctrl->ctrl_lock);
1207 init_waitqueue_head(&ctrl->queue);
1208 dbg_ctrl(ctrl);
Kenji Kaneshige58086392008-05-27 19:04:30 +09001209 /*
1210 * Controller doesn't notify of command completion if the "No
1211 * Command Completed Support" bit is set in Slot Capability
1212 * register or the controller supports none of power
1213 * controller, attention led, power led and EMI.
1214 */
1215 if (NO_CMD_CMPL(ctrl) ||
1216 !(POWER_CTRL(ctrl) | ATTN_LED(ctrl) | PWR_LED(ctrl) | EMI(ctrl)))
1217 ctrl->no_cmd_complete = 1;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001218
Kenji Kaneshigef18e9622008-10-22 14:31:44 +09001219 /* Check if Data Link Layer Link Active Reporting is implemented */
1220 if (pciehp_readl(ctrl, LNKCAP, &link_cap)) {
1221 ctrl_err(ctrl, "%s: Cannot read LNKCAP register\n", __func__);
1222 goto abort_ctrl;
1223 }
1224 if (link_cap & LINK_ACTIVE_REPORTING) {
1225 ctrl_dbg(ctrl, "Link Active Reporting supported\n");
1226 ctrl->link_active_reporting = 1;
1227 }
1228
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001229 /* Clear all remaining event bits in Slot Status register */
1230 if (pciehp_writew(ctrl, SLOTSTATUS, 0x1f))
1231 goto abort_ctrl;
Mark Lord08e7a7d2007-11-28 15:11:46 -08001232
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001233 /* Disable sotfware notification */
1234 pcie_disable_notification(ctrl);
Mark Lordecdde932007-11-21 15:07:55 -08001235
1236 /*
1237 * If this is the first controller to be initialized,
1238 * initialize the pciehp work queue
1239 */
1240 if (atomic_add_return(1, &pciehp_num_controllers) == 1) {
1241 pciehp_wq = create_singlethread_workqueue("pciehpd");
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001242 if (!pciehp_wq)
1243 goto abort_ctrl;
Mark Lordecdde932007-11-21 15:07:55 -08001244 }
1245
Taku Izumi7f2feec2008-09-05 12:11:26 +09001246 ctrl_info(ctrl, "HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n",
1247 pdev->vendor, pdev->device, pdev->subsystem_vendor,
1248 pdev->subsystem_device);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001249
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001250 if (pcie_init_slot(ctrl))
1251 goto abort_ctrl;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -07001252
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001253 if (pcie_init_notification(ctrl))
1254 goto abort_slot;
1255
1256 return ctrl;
1257
1258abort_slot:
1259 pcie_cleanup_slot(ctrl);
1260abort_ctrl:
1261 kfree(ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001262abort:
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +09001263 return NULL;
1264}
1265
1266void pcie_release_ctrl(struct controller *ctrl)
1267{
1268 pcie_shutdown_notification(ctrl);
1269 pcie_cleanup_slot(ctrl);
1270 /*
1271 * If this is the last controller to be released, destroy the
1272 * pciehp work queue
1273 */
1274 if (atomic_dec_and_test(&pciehp_num_controllers))
1275 destroy_workqueue(pciehp_wq);
1276 kfree(ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -08001277}