Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Accardi | 8cf4c19 | 2005-08-16 15:16:10 -0700 | [diff] [blame] | 26 | * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | * |
| 28 | */ |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/kernel.h> |
| 31 | #include <linux/module.h> |
| 32 | #include <linux/types.h> |
Tim Schmielau | de25968 | 2006-01-08 01:02:05 -0800 | [diff] [blame] | 33 | #include <linux/signal.h> |
| 34 | #include <linux/jiffies.h> |
| 35 | #include <linux/timer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <linux/pci.h> |
Andrew Morton | 5d1b8c9 | 2005-11-13 16:06:39 -0800 | [diff] [blame] | 37 | #include <linux/interrupt.h> |
Kristen Carlson Accardi | 34d0341 | 2007-01-09 13:02:36 -0800 | [diff] [blame] | 38 | #include <linux/time.h> |
Andrew Morton | 5d1b8c9 | 2005-11-13 16:06:39 -0800 | [diff] [blame] | 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include "../pci.h" |
| 41 | #include "pciehp.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | |
Kenji Kaneshige | 5d386e1 | 2007-03-06 15:02:26 -0800 | [diff] [blame] | 43 | static atomic_t pciehp_num_controllers = ATOMIC_INIT(0); |
| 44 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | struct 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 */ |
| 64 | enum 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 81 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 87 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 93 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 99 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
| 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 Kaneshige | 71ad556 | 2007-08-09 16:09:34 -0700 | [diff] [blame] | 132 | #define LNK_X4 0x04 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | #define LNK_X8 0x08 |
| 134 | #define LNK_X12 0x0C |
Kenji Kaneshige | 71ad556 | 2007-08-09 16:09:34 -0700 | [diff] [blame] | 135 | #define LNK_X16 0x10 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | #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 Accardi | 34d0341 | 2007-01-09 13:02:36 -0800 | [diff] [blame] | 167 | #define EMI_CTRL 0x0800 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
| 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 Accardi | 34d0341 | 2007-01-09 13:02:36 -0800 | [diff] [blame] | 178 | /* EMI Status defines */ |
| 179 | #define EMI_DISENGAGED 0 |
| 180 | #define EMI_ENGAGED 1 |
| 181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | /* 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 Accardi | 34d0341 | 2007-01-09 13:02:36 -0800 | [diff] [blame] | 190 | #define EMI_STATE 0x0080 |
| 191 | #define EMI_STATUS_BIT 7 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 193 | static irqreturn_t pcie_isr(int irq, void *dev_id); |
| 194 | static void start_int_poll_timer(struct controller *ctrl, int sec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
| 196 | /* This is the interrupt polling timeout function. */ |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 197 | static void int_poll_timeout(unsigned long data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 199 | struct controller *ctrl = (struct controller *)data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | /* Poll for interrupt events. regs == NULL => polling */ |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 202 | pcie_isr(0, ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 204 | init_timer(&ctrl->poll_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | if (!pciehp_poll_time) |
Kenji Kaneshige | 40730d1 | 2007-08-09 16:09:38 -0700 | [diff] [blame] | 206 | pciehp_poll_time = 2; /* default polling interval is 2 sec */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 208 | start_int_poll_timer(ctrl, pciehp_poll_time); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | } |
| 210 | |
| 211 | /* This function starts the interrupt polling timer. */ |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 212 | static void start_int_poll_timer(struct controller *ctrl, int sec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 214 | /* Clamp to sane value */ |
| 215 | if ((sec <= 0) || (sec > 60)) |
| 216 | sec = 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 218 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | } |
| 223 | |
Kenji Kaneshige | 2aeeef1 | 2008-04-25 14:39:08 -0700 | [diff] [blame] | 224 | static inline int pciehp_request_irq(struct controller *ctrl) |
| 225 | { |
| 226 | int retval, irq = ctrl->pci_dev->irq; |
| 227 | |
| 228 | /* Install interrupt polling timer. Start with 10 sec delay */ |
| 229 | if (pciehp_poll_mode) { |
| 230 | init_timer(&ctrl->poll_timer); |
| 231 | start_int_poll_timer(ctrl, 10); |
| 232 | return 0; |
| 233 | } |
| 234 | |
| 235 | /* Installs the interrupt handler */ |
| 236 | retval = request_irq(irq, pcie_isr, IRQF_SHARED, MY_NAME, ctrl); |
| 237 | if (retval) |
| 238 | err("Cannot get irq %d for the hotplug controller\n", irq); |
| 239 | return retval; |
| 240 | } |
| 241 | |
| 242 | static inline void pciehp_free_irq(struct controller *ctrl) |
| 243 | { |
| 244 | if (pciehp_poll_mode) |
| 245 | del_timer_sync(&ctrl->poll_timer); |
| 246 | else |
| 247 | free_irq(ctrl->pci_dev->irq, ctrl); |
| 248 | } |
| 249 | |
Kenji Kaneshige | 563f119 | 2008-06-20 12:05:52 +0900 | [diff] [blame] | 250 | static int pcie_poll_cmd(struct controller *ctrl) |
Kenji Kaneshige | 6592e02 | 2008-05-27 19:05:26 +0900 | [diff] [blame] | 251 | { |
| 252 | u16 slot_status; |
| 253 | int timeout = 1000; |
| 254 | |
Kenji Kaneshige | 820943b | 2008-06-20 12:04:33 +0900 | [diff] [blame] | 255 | if (!pciehp_readw(ctrl, SLOTSTATUS, &slot_status)) { |
| 256 | if (slot_status & CMD_COMPLETED) { |
| 257 | pciehp_writew(ctrl, SLOTSTATUS, CMD_COMPLETED); |
| 258 | return 1; |
| 259 | } |
| 260 | } |
| 261 | while (timeout > 1000) { |
Kenji Kaneshige | 66618ba | 2008-06-20 12:05:12 +0900 | [diff] [blame] | 262 | msleep(10); |
| 263 | timeout -= 10; |
Kenji Kaneshige | 820943b | 2008-06-20 12:04:33 +0900 | [diff] [blame] | 264 | if (!pciehp_readw(ctrl, SLOTSTATUS, &slot_status)) { |
| 265 | if (slot_status & CMD_COMPLETED) { |
| 266 | pciehp_writew(ctrl, SLOTSTATUS, CMD_COMPLETED); |
| 267 | return 1; |
| 268 | } |
| 269 | } |
Kenji Kaneshige | 6592e02 | 2008-05-27 19:05:26 +0900 | [diff] [blame] | 270 | } |
| 271 | return 0; /* timeout */ |
Kenji Kaneshige | 6592e02 | 2008-05-27 19:05:26 +0900 | [diff] [blame] | 272 | } |
| 273 | |
Kenji Kaneshige | 563f119 | 2008-06-20 12:05:52 +0900 | [diff] [blame] | 274 | static void pcie_wait_cmd(struct controller *ctrl, int poll) |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 275 | { |
Kenji Kaneshige | 262303fe | 2006-12-21 17:01:10 -0800 | [diff] [blame] | 276 | unsigned int msecs = pciehp_poll_mode ? 2500 : 1000; |
| 277 | unsigned long timeout = msecs_to_jiffies(msecs); |
| 278 | int rc; |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 279 | |
Kenji Kaneshige | 6592e02 | 2008-05-27 19:05:26 +0900 | [diff] [blame] | 280 | if (poll) |
| 281 | rc = pcie_poll_cmd(ctrl); |
| 282 | else |
Kenji Kaneshige | d737bdc | 2008-05-28 14:59:44 +0900 | [diff] [blame] | 283 | rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout); |
Kenji Kaneshige | 262303fe | 2006-12-21 17:01:10 -0800 | [diff] [blame] | 284 | if (!rc) |
| 285 | dbg("Command not completed in 1000 msec\n"); |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 286 | } |
| 287 | |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 288 | /** |
| 289 | * pcie_write_cmd - Issue controller command |
Kenji Kaneshige | c27fb883 | 2008-04-25 14:39:05 -0700 | [diff] [blame] | 290 | * @ctrl: controller to which the command is issued |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 291 | * @cmd: command value written to slot control register |
| 292 | * @mask: bitmask of slot control register to be modified |
| 293 | */ |
Kenji Kaneshige | c27fb883 | 2008-04-25 14:39:05 -0700 | [diff] [blame] | 294 | static int pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | int retval = 0; |
| 297 | u16 slot_status; |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 298 | u16 slot_ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 300 | mutex_lock(&ctrl->ctrl_lock); |
| 301 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 302 | retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 304 | err("%s: Cannot read SLOTSTATUS register\n", __func__); |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 305 | goto out; |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 306 | } |
| 307 | |
Kenji Kaneshige | 5808639 | 2008-05-27 19:04:30 +0900 | [diff] [blame] | 308 | if (slot_status & CMD_COMPLETED) { |
| 309 | if (!ctrl->no_cmd_complete) { |
| 310 | /* |
| 311 | * After 1 sec and CMD_COMPLETED still not set, just |
| 312 | * proceed forward to issue the next command according |
| 313 | * to spec. Just print out the error message. |
| 314 | */ |
| 315 | dbg("%s: CMD_COMPLETED not clear after 1 sec.\n", |
| 316 | __func__); |
| 317 | } else if (!NO_CMD_CMPL(ctrl)) { |
| 318 | /* |
| 319 | * This controller semms to notify of command completed |
| 320 | * event even though it supports none of power |
| 321 | * controller, attention led, power led and EMI. |
| 322 | */ |
| 323 | dbg("%s: Unexpected CMD_COMPLETED. Need to wait for " |
| 324 | "command completed event.\n", __func__); |
| 325 | ctrl->no_cmd_complete = 0; |
| 326 | } else { |
| 327 | dbg("%s: Unexpected CMD_COMPLETED. Maybe the " |
| 328 | "controller is broken.\n", __func__); |
| 329 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | } |
| 331 | |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 332 | retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 334 | err("%s: Cannot read SLOTCTRL register\n", __func__); |
Kenji Kaneshige | c6b069e | 2008-04-25 14:38:57 -0700 | [diff] [blame] | 335 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 338 | slot_ctrl &= ~mask; |
Kenji Kaneshige | b7aa1f1 | 2008-04-25 14:39:14 -0700 | [diff] [blame] | 339 | slot_ctrl |= (cmd & mask); |
| 340 | /* Don't enable command completed if caller is changing it. */ |
| 341 | if (!(mask & CMD_CMPL_INTR_ENABLE)) |
| 342 | slot_ctrl |= CMD_CMPL_INTR_ENABLE; |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 343 | |
| 344 | ctrl->cmd_busy = 1; |
Kenji Kaneshige | 2d32a9a | 2008-04-25 14:39:02 -0700 | [diff] [blame] | 345 | smp_mb(); |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 346 | retval = pciehp_writew(ctrl, SLOTCTRL, slot_ctrl); |
| 347 | if (retval) |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 348 | err("%s: Cannot write to SLOTCTRL register\n", __func__); |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 349 | |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 350 | /* |
| 351 | * Wait for command completion. |
| 352 | */ |
Kenji Kaneshige | 6592e02 | 2008-05-27 19:05:26 +0900 | [diff] [blame] | 353 | if (!retval && !ctrl->no_cmd_complete) { |
| 354 | int poll = 0; |
| 355 | /* |
| 356 | * if hotplug interrupt is not enabled or command |
| 357 | * completed interrupt is not enabled, we need to poll |
| 358 | * command completed event. |
| 359 | */ |
| 360 | if (!(slot_ctrl & HP_INTR_ENABLE) || |
| 361 | !(slot_ctrl & CMD_CMPL_INTR_ENABLE)) |
| 362 | poll = 1; |
Kenji Kaneshige | d737bdc | 2008-05-28 14:59:44 +0900 | [diff] [blame] | 363 | pcie_wait_cmd(ctrl, poll); |
Kenji Kaneshige | 6592e02 | 2008-05-27 19:05:26 +0900 | [diff] [blame] | 364 | } |
Kenji Kaneshige | 44ef4ce | 2006-12-21 17:01:09 -0800 | [diff] [blame] | 365 | out: |
| 366 | mutex_unlock(&ctrl->ctrl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | return retval; |
| 368 | } |
| 369 | |
| 370 | static int hpc_check_lnk_status(struct controller *ctrl) |
| 371 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | u16 lnk_status; |
| 373 | int retval = 0; |
| 374 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 375 | retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 377 | err("%s: Cannot read LNKSTATUS register\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | return retval; |
| 379 | } |
| 380 | |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 381 | dbg("%s: lnk_status = %x\n", __func__, lnk_status); |
Kenji Kaneshige | 71ad556 | 2007-08-09 16:09:34 -0700 | [diff] [blame] | 382 | if ( (lnk_status & LNK_TRN) || (lnk_status & LNK_TRN_ERR) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | !(lnk_status & NEG_LINK_WD)) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 384 | err("%s : Link Training Error occurs \n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | retval = -1; |
| 386 | return retval; |
| 387 | } |
| 388 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | return retval; |
| 390 | } |
| 391 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | static int hpc_get_attention_status(struct slot *slot, u8 *status) |
| 393 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 394 | struct controller *ctrl = slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | u16 slot_ctrl; |
| 396 | u8 atten_led_state; |
| 397 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 399 | retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 401 | err("%s: Cannot read SLOTCTRL register\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | return retval; |
| 403 | } |
| 404 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 405 | dbg("%s: SLOTCTRL %x, value read %x\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 406 | __func__, ctrl->cap_base + SLOTCTRL, slot_ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | |
| 408 | atten_led_state = (slot_ctrl & ATTN_LED_CTRL) >> 6; |
| 409 | |
| 410 | switch (atten_led_state) { |
| 411 | case 0: |
| 412 | *status = 0xFF; /* Reserved */ |
| 413 | break; |
| 414 | case 1: |
| 415 | *status = 1; /* On */ |
| 416 | break; |
| 417 | case 2: |
| 418 | *status = 2; /* Blink */ |
| 419 | break; |
| 420 | case 3: |
| 421 | *status = 0; /* Off */ |
| 422 | break; |
| 423 | default: |
| 424 | *status = 0xFF; |
| 425 | break; |
| 426 | } |
| 427 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | return 0; |
| 429 | } |
| 430 | |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 431 | static int hpc_get_power_status(struct slot *slot, u8 *status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 433 | struct controller *ctrl = slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | u16 slot_ctrl; |
| 435 | u8 pwr_state; |
| 436 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 438 | retval = pciehp_readw(ctrl, SLOTCTRL, &slot_ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 440 | err("%s: Cannot read SLOTCTRL register\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | return retval; |
| 442 | } |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 443 | dbg("%s: SLOTCTRL %x value read %x\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 444 | __func__, ctrl->cap_base + SLOTCTRL, slot_ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | |
| 446 | pwr_state = (slot_ctrl & PWR_CTRL) >> 10; |
| 447 | |
| 448 | switch (pwr_state) { |
| 449 | case 0: |
| 450 | *status = 1; |
| 451 | break; |
| 452 | case 1: |
Kenji Kaneshige | 71ad556 | 2007-08-09 16:09:34 -0700 | [diff] [blame] | 453 | *status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | break; |
| 455 | default: |
| 456 | *status = 0xFF; |
| 457 | break; |
| 458 | } |
| 459 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | return retval; |
| 461 | } |
| 462 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | static int hpc_get_latch_status(struct slot *slot, u8 *status) |
| 464 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 465 | struct controller *ctrl = slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | u16 slot_status; |
| 467 | int retval = 0; |
| 468 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 469 | retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 471 | err("%s: Cannot read SLOTSTATUS register\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | return retval; |
| 473 | } |
| 474 | |
Kenji Kaneshige | 71ad556 | 2007-08-09 16:09:34 -0700 | [diff] [blame] | 475 | *status = (((slot_status & MRL_STATE) >> 5) == 0) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | return 0; |
| 478 | } |
| 479 | |
| 480 | static int hpc_get_adapter_status(struct slot *slot, u8 *status) |
| 481 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 482 | struct controller *ctrl = slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | u16 slot_status; |
| 484 | u8 card_state; |
| 485 | int retval = 0; |
| 486 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 487 | retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 489 | err("%s: Cannot read SLOTSTATUS register\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | return retval; |
| 491 | } |
| 492 | card_state = (u8)((slot_status & PRSN_STATE) >> 6); |
| 493 | *status = (card_state == 1) ? 1 : 0; |
| 494 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | return 0; |
| 496 | } |
| 497 | |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 498 | static int hpc_query_power_fault(struct slot *slot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 500 | struct controller *ctrl = slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | u16 slot_status; |
| 502 | u8 pwr_fault; |
| 503 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 505 | retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 507 | err("%s: Cannot check for power fault\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | return retval; |
| 509 | } |
| 510 | pwr_fault = (u8)((slot_status & PWR_FAULT_DETECTED) >> 1); |
Kenji Kaneshige | 71ad556 | 2007-08-09 16:09:34 -0700 | [diff] [blame] | 511 | |
rajesh.shah@intel.com | 8239def | 2005-10-31 16:20:13 -0800 | [diff] [blame] | 512 | return pwr_fault; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | } |
| 514 | |
Kristen Carlson Accardi | 34d0341 | 2007-01-09 13:02:36 -0800 | [diff] [blame] | 515 | static int hpc_get_emi_status(struct slot *slot, u8 *status) |
| 516 | { |
| 517 | struct controller *ctrl = slot->ctrl; |
| 518 | u16 slot_status; |
| 519 | int retval = 0; |
| 520 | |
Kristen Carlson Accardi | 34d0341 | 2007-01-09 13:02:36 -0800 | [diff] [blame] | 521 | retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status); |
| 522 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 523 | err("%s : Cannot check EMI status\n", __func__); |
Kristen Carlson Accardi | 34d0341 | 2007-01-09 13:02:36 -0800 | [diff] [blame] | 524 | return retval; |
| 525 | } |
| 526 | *status = (slot_status & EMI_STATE) >> EMI_STATUS_BIT; |
| 527 | |
Kristen Carlson Accardi | 34d0341 | 2007-01-09 13:02:36 -0800 | [diff] [blame] | 528 | return retval; |
| 529 | } |
| 530 | |
| 531 | static int hpc_toggle_emi(struct slot *slot) |
| 532 | { |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 533 | u16 slot_cmd; |
| 534 | u16 cmd_mask; |
| 535 | int rc; |
Kristen Carlson Accardi | 34d0341 | 2007-01-09 13:02:36 -0800 | [diff] [blame] | 536 | |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 537 | slot_cmd = EMI_CTRL; |
| 538 | cmd_mask = EMI_CTRL; |
Kenji Kaneshige | c27fb883 | 2008-04-25 14:39:05 -0700 | [diff] [blame] | 539 | rc = pcie_write_cmd(slot->ctrl, slot_cmd, cmd_mask); |
Kristen Carlson Accardi | 34d0341 | 2007-01-09 13:02:36 -0800 | [diff] [blame] | 540 | slot->last_emi_toggle = get_seconds(); |
Kenji Kaneshige | c842648 | 2007-08-09 16:09:33 -0700 | [diff] [blame] | 541 | |
Kristen Carlson Accardi | 34d0341 | 2007-01-09 13:02:36 -0800 | [diff] [blame] | 542 | return rc; |
| 543 | } |
| 544 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | static int hpc_set_attention_status(struct slot *slot, u8 value) |
| 546 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 547 | struct controller *ctrl = slot->ctrl; |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 548 | u16 slot_cmd; |
| 549 | u16 cmd_mask; |
| 550 | int rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 552 | cmd_mask = ATTN_LED_CTRL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | switch (value) { |
| 554 | case 0 : /* turn off */ |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 555 | slot_cmd = 0x00C0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | break; |
| 557 | case 1: /* turn on */ |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 558 | slot_cmd = 0x0040; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | break; |
| 560 | case 2: /* turn blink */ |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 561 | slot_cmd = 0x0080; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | break; |
| 563 | default: |
| 564 | return -1; |
| 565 | } |
Kenji Kaneshige | c27fb883 | 2008-04-25 14:39:05 -0700 | [diff] [blame] | 566 | rc = pcie_write_cmd(ctrl, slot_cmd, cmd_mask); |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 567 | dbg("%s: SLOTCTRL %x write cmd %x\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 568 | __func__, ctrl->cap_base + SLOTCTRL, slot_cmd); |
Kenji Kaneshige | 71ad556 | 2007-08-09 16:09:34 -0700 | [diff] [blame] | 569 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | return rc; |
| 571 | } |
| 572 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | static void hpc_set_green_led_on(struct slot *slot) |
| 574 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 575 | struct controller *ctrl = slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | u16 slot_cmd; |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 577 | u16 cmd_mask; |
Kenji Kaneshige | 71ad556 | 2007-08-09 16:09:34 -0700 | [diff] [blame] | 578 | |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 579 | slot_cmd = 0x0100; |
| 580 | cmd_mask = PWR_LED_CTRL; |
Kenji Kaneshige | c27fb883 | 2008-04-25 14:39:05 -0700 | [diff] [blame] | 581 | pcie_write_cmd(ctrl, slot_cmd, cmd_mask); |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 582 | dbg("%s: SLOTCTRL %x write cmd %x\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 583 | __func__, ctrl->cap_base + SLOTCTRL, slot_cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | } |
| 585 | |
| 586 | static void hpc_set_green_led_off(struct slot *slot) |
| 587 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 588 | struct controller *ctrl = slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | u16 slot_cmd; |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 590 | u16 cmd_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 592 | slot_cmd = 0x0300; |
| 593 | cmd_mask = PWR_LED_CTRL; |
Kenji Kaneshige | c27fb883 | 2008-04-25 14:39:05 -0700 | [diff] [blame] | 594 | pcie_write_cmd(ctrl, slot_cmd, cmd_mask); |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 595 | dbg("%s: SLOTCTRL %x write cmd %x\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 596 | __func__, ctrl->cap_base + SLOTCTRL, slot_cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | } |
| 598 | |
| 599 | static void hpc_set_green_led_blink(struct slot *slot) |
| 600 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 601 | struct controller *ctrl = slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | u16 slot_cmd; |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 603 | u16 cmd_mask; |
Kenji Kaneshige | 71ad556 | 2007-08-09 16:09:34 -0700 | [diff] [blame] | 604 | |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 605 | slot_cmd = 0x0200; |
| 606 | cmd_mask = PWR_LED_CTRL; |
Kenji Kaneshige | c27fb883 | 2008-04-25 14:39:05 -0700 | [diff] [blame] | 607 | pcie_write_cmd(ctrl, slot_cmd, cmd_mask); |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 608 | dbg("%s: SLOTCTRL %x write cmd %x\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 609 | __func__, ctrl->cap_base + SLOTCTRL, slot_cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | } |
| 611 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | static int hpc_power_on_slot(struct slot * slot) |
| 613 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 614 | struct controller *ctrl = slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | u16 slot_cmd; |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 616 | u16 cmd_mask; |
| 617 | u16 slot_status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | int retval = 0; |
| 619 | |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 620 | dbg("%s: slot->hp_slot %x\n", __func__, slot->hp_slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | |
Rajesh Shah | 5a49f20 | 2005-11-23 15:44:54 -0800 | [diff] [blame] | 622 | /* Clear sticky power-fault bit from previous power failures */ |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 623 | retval = pciehp_readw(ctrl, SLOTSTATUS, &slot_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 625 | err("%s: Cannot read SLOTSTATUS register\n", __func__); |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 626 | return retval; |
| 627 | } |
| 628 | slot_status &= PWR_FAULT_DETECTED; |
| 629 | if (slot_status) { |
| 630 | retval = pciehp_writew(ctrl, SLOTSTATUS, slot_status); |
| 631 | if (retval) { |
| 632 | err("%s: Cannot write to SLOTSTATUS register\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 633 | __func__); |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 634 | return retval; |
| 635 | } |
| 636 | } |
| 637 | |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 638 | slot_cmd = POWER_ON; |
| 639 | cmd_mask = PWR_CTRL; |
Thomas Schaefer | c7ab337 | 2005-12-08 11:55:57 -0800 | [diff] [blame] | 640 | /* Enable detection that we turned off at slot power-off time */ |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 641 | if (!pciehp_poll_mode) { |
Kenji Kaneshige | cff0065 | 2008-04-25 14:39:06 -0700 | [diff] [blame] | 642 | slot_cmd |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE | |
| 643 | PRSN_DETECT_ENABLE); |
| 644 | cmd_mask |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE | |
| 645 | PRSN_DETECT_ENABLE); |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 646 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | |
Kenji Kaneshige | c27fb883 | 2008-04-25 14:39:05 -0700 | [diff] [blame] | 648 | retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | |
| 650 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 651 | err("%s: Write %x command failed!\n", __func__, slot_cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | return -1; |
| 653 | } |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 654 | dbg("%s: SLOTCTRL %x write cmd %x\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 655 | __func__, ctrl->cap_base + SLOTCTRL, slot_cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | return retval; |
| 658 | } |
| 659 | |
Kenji Kaneshige | f1050a3 | 2007-12-20 19:45:09 +0900 | [diff] [blame] | 660 | static inline int pcie_mask_bad_dllp(struct controller *ctrl) |
| 661 | { |
| 662 | struct pci_dev *dev = ctrl->pci_dev; |
| 663 | int pos; |
| 664 | u32 reg; |
| 665 | |
| 666 | pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR); |
| 667 | if (!pos) |
| 668 | return 0; |
| 669 | pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, ®); |
| 670 | if (reg & PCI_ERR_COR_BAD_DLLP) |
| 671 | return 0; |
| 672 | reg |= PCI_ERR_COR_BAD_DLLP; |
| 673 | pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg); |
| 674 | return 1; |
| 675 | } |
| 676 | |
| 677 | static inline void pcie_unmask_bad_dllp(struct controller *ctrl) |
| 678 | { |
| 679 | struct pci_dev *dev = ctrl->pci_dev; |
| 680 | u32 reg; |
| 681 | int pos; |
| 682 | |
| 683 | pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR); |
| 684 | if (!pos) |
| 685 | return; |
| 686 | pci_read_config_dword(dev, pos + PCI_ERR_COR_MASK, ®); |
| 687 | if (!(reg & PCI_ERR_COR_BAD_DLLP)) |
| 688 | return; |
| 689 | reg &= ~PCI_ERR_COR_BAD_DLLP; |
| 690 | pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, reg); |
| 691 | } |
| 692 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | static int hpc_power_off_slot(struct slot * slot) |
| 694 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 695 | struct controller *ctrl = slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | u16 slot_cmd; |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 697 | u16 cmd_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | int retval = 0; |
Kenji Kaneshige | f1050a3 | 2007-12-20 19:45:09 +0900 | [diff] [blame] | 699 | int changed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 701 | dbg("%s: slot->hp_slot %x\n", __func__, slot->hp_slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | |
Kenji Kaneshige | f1050a3 | 2007-12-20 19:45:09 +0900 | [diff] [blame] | 703 | /* |
| 704 | * Set Bad DLLP Mask bit in Correctable Error Mask |
| 705 | * Register. This is the workaround against Bad DLLP error |
| 706 | * that sometimes happens during turning power off the slot |
| 707 | * which conforms to PCI Express 1.0a spec. |
| 708 | */ |
| 709 | changed = pcie_mask_bad_dllp(ctrl); |
| 710 | |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 711 | slot_cmd = POWER_OFF; |
| 712 | cmd_mask = PWR_CTRL; |
Thomas Schaefer | c7ab337 | 2005-12-08 11:55:57 -0800 | [diff] [blame] | 713 | /* |
| 714 | * If we get MRL or presence detect interrupts now, the isr |
| 715 | * will notice the sticky power-fault bit too and issue power |
| 716 | * indicator change commands. This will lead to an endless loop |
| 717 | * of command completions, since the power-fault bit remains on |
| 718 | * till the slot is powered on again. |
| 719 | */ |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 720 | if (!pciehp_poll_mode) { |
Kenji Kaneshige | cff0065 | 2008-04-25 14:39:06 -0700 | [diff] [blame] | 721 | slot_cmd &= ~(PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE | |
| 722 | PRSN_DETECT_ENABLE); |
| 723 | cmd_mask |= (PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE | |
| 724 | PRSN_DETECT_ENABLE); |
Kenji Kaneshige | f477836 | 2007-05-31 09:43:34 -0700 | [diff] [blame] | 725 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | |
Kenji Kaneshige | c27fb883 | 2008-04-25 14:39:05 -0700 | [diff] [blame] | 727 | retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 729 | err("%s: Write command failed!\n", __func__); |
Kenji Kaneshige | c1ef5cb | 2008-03-04 13:01:14 -0800 | [diff] [blame] | 730 | retval = -1; |
| 731 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | } |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 733 | dbg("%s: SLOTCTRL %x write cmd %x\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 734 | __func__, ctrl->cap_base + SLOTCTRL, slot_cmd); |
Kenji Kaneshige | c1ef5cb | 2008-03-04 13:01:14 -0800 | [diff] [blame] | 735 | out: |
Kenji Kaneshige | f1050a3 | 2007-12-20 19:45:09 +0900 | [diff] [blame] | 736 | if (changed) |
| 737 | pcie_unmask_bad_dllp(ctrl); |
| 738 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | return retval; |
| 740 | } |
| 741 | |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 742 | static irqreturn_t pcie_isr(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 744 | struct controller *ctrl = (struct controller *)dev_id; |
Kenji Kaneshige | c6b069e | 2008-04-25 14:38:57 -0700 | [diff] [blame] | 745 | u16 detected, intr_loc; |
Kenji Kaneshige | dbd79ae | 2008-05-27 19:03:16 +0900 | [diff] [blame] | 746 | struct slot *p_slot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | |
Kenji Kaneshige | c6b069e | 2008-04-25 14:38:57 -0700 | [diff] [blame] | 748 | /* |
| 749 | * In order to guarantee that all interrupt events are |
| 750 | * serviced, we need to re-inspect Slot Status register after |
| 751 | * clearing what is presumed to be the last pending interrupt. |
| 752 | */ |
| 753 | intr_loc = 0; |
| 754 | do { |
| 755 | if (pciehp_readw(ctrl, SLOTSTATUS, &detected)) { |
| 756 | err("%s: Cannot read SLOTSTATUS\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | return IRQ_NONE; |
| 758 | } |
| 759 | |
Kenji Kaneshige | c6b069e | 2008-04-25 14:38:57 -0700 | [diff] [blame] | 760 | detected &= (ATTN_BUTTN_PRESSED | PWR_FAULT_DETECTED | |
| 761 | MRL_SENS_CHANGED | PRSN_DETECT_CHANGED | |
| 762 | CMD_COMPLETED); |
| 763 | intr_loc |= detected; |
| 764 | if (!intr_loc) |
| 765 | return IRQ_NONE; |
Kenji Kaneshige | 6a3f084 | 2008-06-02 09:22:34 -0700 | [diff] [blame] | 766 | if (detected && pciehp_writew(ctrl, SLOTSTATUS, detected)) { |
Kenji Kaneshige | c6b069e | 2008-04-25 14:38:57 -0700 | [diff] [blame] | 767 | err("%s: Cannot write to SLOTSTATUS\n", __func__); |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 768 | return IRQ_NONE; |
| 769 | } |
Kenji Kaneshige | c6b069e | 2008-04-25 14:38:57 -0700 | [diff] [blame] | 770 | } while (detected); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | |
Kenji Kaneshige | c6b069e | 2008-04-25 14:38:57 -0700 | [diff] [blame] | 772 | dbg("%s: intr_loc %x\n", __FUNCTION__, intr_loc); |
Kenji Kaneshige | 71ad556 | 2007-08-09 16:09:34 -0700 | [diff] [blame] | 773 | |
Kenji Kaneshige | c6b069e | 2008-04-25 14:38:57 -0700 | [diff] [blame] | 774 | /* Check Command Complete Interrupt Pending */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | if (intr_loc & CMD_COMPLETED) { |
Kenji Kaneshige | 262303fe | 2006-12-21 17:01:10 -0800 | [diff] [blame] | 776 | ctrl->cmd_busy = 0; |
Kenji Kaneshige | 2d32a9a | 2008-04-25 14:39:02 -0700 | [diff] [blame] | 777 | smp_mb(); |
Kenji Kaneshige | d737bdc | 2008-05-28 14:59:44 +0900 | [diff] [blame] | 778 | wake_up(&ctrl->queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | } |
| 780 | |
Kenji Kaneshige | dbd79ae | 2008-05-27 19:03:16 +0900 | [diff] [blame] | 781 | if (!(intr_loc & ~CMD_COMPLETED)) |
| 782 | return IRQ_HANDLED; |
| 783 | |
Kenji Kaneshige | dbd79ae | 2008-05-27 19:03:16 +0900 | [diff] [blame] | 784 | p_slot = pciehp_find_slot(ctrl, ctrl->slot_device_offset); |
Kenji Kaneshige | dbd79ae | 2008-05-27 19:03:16 +0900 | [diff] [blame] | 785 | |
Kenji Kaneshige | c6b069e | 2008-04-25 14:38:57 -0700 | [diff] [blame] | 786 | /* Check MRL Sensor Changed */ |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 787 | if (intr_loc & MRL_SENS_CHANGED) |
Kenji Kaneshige | dbd79ae | 2008-05-27 19:03:16 +0900 | [diff] [blame] | 788 | pciehp_handle_switch_change(p_slot); |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 789 | |
Kenji Kaneshige | c6b069e | 2008-04-25 14:38:57 -0700 | [diff] [blame] | 790 | /* Check Attention Button Pressed */ |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 791 | if (intr_loc & ATTN_BUTTN_PRESSED) |
Kenji Kaneshige | dbd79ae | 2008-05-27 19:03:16 +0900 | [diff] [blame] | 792 | pciehp_handle_attention_button(p_slot); |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 793 | |
Kenji Kaneshige | c6b069e | 2008-04-25 14:38:57 -0700 | [diff] [blame] | 794 | /* Check Presence Detect Changed */ |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 795 | if (intr_loc & PRSN_DETECT_CHANGED) |
Kenji Kaneshige | dbd79ae | 2008-05-27 19:03:16 +0900 | [diff] [blame] | 796 | pciehp_handle_presence_change(p_slot); |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 797 | |
Kenji Kaneshige | c6b069e | 2008-04-25 14:38:57 -0700 | [diff] [blame] | 798 | /* Check Power Fault Detected */ |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 799 | if (intr_loc & PWR_FAULT_DETECTED) |
Kenji Kaneshige | dbd79ae | 2008-05-27 19:03:16 +0900 | [diff] [blame] | 800 | pciehp_handle_power_fault(p_slot); |
Kenji Kaneshige | 71ad556 | 2007-08-09 16:09:34 -0700 | [diff] [blame] | 801 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | return IRQ_HANDLED; |
| 803 | } |
| 804 | |
Kenji Kaneshige | 40730d1 | 2007-08-09 16:09:38 -0700 | [diff] [blame] | 805 | static int hpc_get_max_lnk_speed(struct slot *slot, enum pci_bus_speed *value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 807 | struct controller *ctrl = slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | enum pcie_link_speed lnk_speed; |
| 809 | u32 lnk_cap; |
| 810 | int retval = 0; |
| 811 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 812 | retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 814 | err("%s: Cannot read LNKCAP register\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | return retval; |
| 816 | } |
| 817 | |
| 818 | switch (lnk_cap & 0x000F) { |
| 819 | case 1: |
| 820 | lnk_speed = PCIE_2PT5GB; |
| 821 | break; |
| 822 | default: |
| 823 | lnk_speed = PCIE_LNK_SPEED_UNKNOWN; |
| 824 | break; |
| 825 | } |
| 826 | |
| 827 | *value = lnk_speed; |
| 828 | dbg("Max link speed = %d\n", lnk_speed); |
Kenji Kaneshige | c842648 | 2007-08-09 16:09:33 -0700 | [diff] [blame] | 829 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | return retval; |
| 831 | } |
| 832 | |
Kenji Kaneshige | 40730d1 | 2007-08-09 16:09:38 -0700 | [diff] [blame] | 833 | static int hpc_get_max_lnk_width(struct slot *slot, |
| 834 | enum pcie_link_width *value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 836 | struct controller *ctrl = slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | enum pcie_link_width lnk_wdth; |
| 838 | u32 lnk_cap; |
| 839 | int retval = 0; |
| 840 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 841 | retval = pciehp_readl(ctrl, LNKCAP, &lnk_cap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 843 | err("%s: Cannot read LNKCAP register\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | return retval; |
| 845 | } |
| 846 | |
| 847 | switch ((lnk_cap & 0x03F0) >> 4){ |
| 848 | case 0: |
| 849 | lnk_wdth = PCIE_LNK_WIDTH_RESRV; |
| 850 | break; |
| 851 | case 1: |
| 852 | lnk_wdth = PCIE_LNK_X1; |
| 853 | break; |
| 854 | case 2: |
| 855 | lnk_wdth = PCIE_LNK_X2; |
| 856 | break; |
| 857 | case 4: |
| 858 | lnk_wdth = PCIE_LNK_X4; |
| 859 | break; |
| 860 | case 8: |
| 861 | lnk_wdth = PCIE_LNK_X8; |
| 862 | break; |
| 863 | case 12: |
| 864 | lnk_wdth = PCIE_LNK_X12; |
| 865 | break; |
| 866 | case 16: |
| 867 | lnk_wdth = PCIE_LNK_X16; |
| 868 | break; |
| 869 | case 32: |
| 870 | lnk_wdth = PCIE_LNK_X32; |
| 871 | break; |
| 872 | default: |
| 873 | lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN; |
| 874 | break; |
| 875 | } |
| 876 | |
| 877 | *value = lnk_wdth; |
| 878 | dbg("Max link width = %d\n", lnk_wdth); |
Kenji Kaneshige | c842648 | 2007-08-09 16:09:33 -0700 | [diff] [blame] | 879 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | return retval; |
| 881 | } |
| 882 | |
Kenji Kaneshige | 40730d1 | 2007-08-09 16:09:38 -0700 | [diff] [blame] | 883 | static int hpc_get_cur_lnk_speed(struct slot *slot, enum pci_bus_speed *value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 885 | struct controller *ctrl = slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | enum pcie_link_speed lnk_speed = PCI_SPEED_UNKNOWN; |
| 887 | int retval = 0; |
| 888 | u16 lnk_status; |
| 889 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 890 | retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 892 | err("%s: Cannot read LNKSTATUS register\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | return retval; |
| 894 | } |
| 895 | |
| 896 | switch (lnk_status & 0x0F) { |
| 897 | case 1: |
| 898 | lnk_speed = PCIE_2PT5GB; |
| 899 | break; |
| 900 | default: |
| 901 | lnk_speed = PCIE_LNK_SPEED_UNKNOWN; |
| 902 | break; |
| 903 | } |
| 904 | |
| 905 | *value = lnk_speed; |
| 906 | dbg("Current link speed = %d\n", lnk_speed); |
Kenji Kaneshige | c842648 | 2007-08-09 16:09:33 -0700 | [diff] [blame] | 907 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | return retval; |
| 909 | } |
| 910 | |
Kenji Kaneshige | 40730d1 | 2007-08-09 16:09:38 -0700 | [diff] [blame] | 911 | static int hpc_get_cur_lnk_width(struct slot *slot, |
| 912 | enum pcie_link_width *value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | { |
Kenji Kaneshige | 48fe391 | 2006-12-21 17:01:04 -0800 | [diff] [blame] | 914 | struct controller *ctrl = slot->ctrl; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | enum pcie_link_width lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN; |
| 916 | int retval = 0; |
| 917 | u16 lnk_status; |
| 918 | |
Kenji Kaneshige | a0f018d | 2006-12-21 17:01:06 -0800 | [diff] [blame] | 919 | retval = pciehp_readw(ctrl, LNKSTATUS, &lnk_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | if (retval) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 921 | err("%s: Cannot read LNKSTATUS register\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | return retval; |
| 923 | } |
Kenji Kaneshige | 71ad556 | 2007-08-09 16:09:34 -0700 | [diff] [blame] | 924 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | switch ((lnk_status & 0x03F0) >> 4){ |
| 926 | case 0: |
| 927 | lnk_wdth = PCIE_LNK_WIDTH_RESRV; |
| 928 | break; |
| 929 | case 1: |
| 930 | lnk_wdth = PCIE_LNK_X1; |
| 931 | break; |
| 932 | case 2: |
| 933 | lnk_wdth = PCIE_LNK_X2; |
| 934 | break; |
| 935 | case 4: |
| 936 | lnk_wdth = PCIE_LNK_X4; |
| 937 | break; |
| 938 | case 8: |
| 939 | lnk_wdth = PCIE_LNK_X8; |
| 940 | break; |
| 941 | case 12: |
| 942 | lnk_wdth = PCIE_LNK_X12; |
| 943 | break; |
| 944 | case 16: |
| 945 | lnk_wdth = PCIE_LNK_X16; |
| 946 | break; |
| 947 | case 32: |
| 948 | lnk_wdth = PCIE_LNK_X32; |
| 949 | break; |
| 950 | default: |
| 951 | lnk_wdth = PCIE_LNK_WIDTH_UNKNOWN; |
| 952 | break; |
| 953 | } |
| 954 | |
| 955 | *value = lnk_wdth; |
| 956 | dbg("Current link width = %d\n", lnk_wdth); |
Kenji Kaneshige | c842648 | 2007-08-09 16:09:33 -0700 | [diff] [blame] | 957 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | return retval; |
| 959 | } |
| 960 | |
Kenji Kaneshige | c4635eb | 2008-06-20 12:07:08 +0900 | [diff] [blame^] | 961 | static void pcie_release_ctrl(struct controller *ctrl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | static struct hpc_ops pciehp_hpc_ops = { |
| 963 | .power_on_slot = hpc_power_on_slot, |
| 964 | .power_off_slot = hpc_power_off_slot, |
| 965 | .set_attention_status = hpc_set_attention_status, |
| 966 | .get_power_status = hpc_get_power_status, |
| 967 | .get_attention_status = hpc_get_attention_status, |
| 968 | .get_latch_status = hpc_get_latch_status, |
| 969 | .get_adapter_status = hpc_get_adapter_status, |
Kristen Carlson Accardi | 34d0341 | 2007-01-09 13:02:36 -0800 | [diff] [blame] | 970 | .get_emi_status = hpc_get_emi_status, |
| 971 | .toggle_emi = hpc_toggle_emi, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | |
| 973 | .get_max_bus_speed = hpc_get_max_lnk_speed, |
| 974 | .get_cur_bus_speed = hpc_get_cur_lnk_speed, |
| 975 | .get_max_lnk_width = hpc_get_max_lnk_width, |
| 976 | .get_cur_lnk_width = hpc_get_cur_lnk_width, |
Kenji Kaneshige | 71ad556 | 2007-08-09 16:09:34 -0700 | [diff] [blame] | 977 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | .query_power_fault = hpc_query_power_fault, |
| 979 | .green_led_on = hpc_set_green_led_on, |
| 980 | .green_led_off = hpc_set_green_led_off, |
| 981 | .green_led_blink = hpc_set_green_led_blink, |
Kenji Kaneshige | 71ad556 | 2007-08-09 16:09:34 -0700 | [diff] [blame] | 982 | |
Kenji Kaneshige | c4635eb | 2008-06-20 12:07:08 +0900 | [diff] [blame^] | 983 | .release_ctlr = pcie_release_ctrl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | .check_lnk_status = hpc_check_lnk_status, |
| 985 | }; |
| 986 | |
Kenji Kaneshige | c4635eb | 2008-06-20 12:07:08 +0900 | [diff] [blame^] | 987 | int pcie_enable_notification(struct controller *ctrl) |
Mark Lord | ecdde93 | 2007-11-21 15:07:55 -0800 | [diff] [blame] | 988 | { |
Kenji Kaneshige | c27fb883 | 2008-04-25 14:39:05 -0700 | [diff] [blame] | 989 | u16 cmd, mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | |
Kenji Kaneshige | c27fb883 | 2008-04-25 14:39:05 -0700 | [diff] [blame] | 991 | cmd = PRSN_DETECT_ENABLE; |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame] | 992 | if (ATTN_BUTTN(ctrl)) |
Kenji Kaneshige | c27fb883 | 2008-04-25 14:39:05 -0700 | [diff] [blame] | 993 | cmd |= ATTN_BUTTN_ENABLE; |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame] | 994 | if (POWER_CTRL(ctrl)) |
Kenji Kaneshige | c27fb883 | 2008-04-25 14:39:05 -0700 | [diff] [blame] | 995 | cmd |= PWR_FAULT_DETECT_ENABLE; |
Kenji Kaneshige | ae416e6 | 2008-04-25 14:39:06 -0700 | [diff] [blame] | 996 | if (MRL_SENS(ctrl)) |
Kenji Kaneshige | c27fb883 | 2008-04-25 14:39:05 -0700 | [diff] [blame] | 997 | cmd |= MRL_DETECT_ENABLE; |
| 998 | if (!pciehp_poll_mode) |
| 999 | cmd |= HP_INTR_ENABLE; |
| 1000 | |
| 1001 | mask = PRSN_DETECT_ENABLE | ATTN_BUTTN_ENABLE | |
| 1002 | PWR_FAULT_DETECT_ENABLE | MRL_DETECT_ENABLE | HP_INTR_ENABLE; |
| 1003 | |
| 1004 | if (pcie_write_cmd(ctrl, cmd, mask)) { |
| 1005 | err("%s: Cannot enable software notification\n", __func__); |
Kenji Kaneshige | 125c39f | 2008-05-28 14:57:30 +0900 | [diff] [blame] | 1006 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1008 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | } |
Mark Lord | 08e7a7d | 2007-11-28 15:11:46 -0800 | [diff] [blame] | 1010 | |
Kenji Kaneshige | c4635eb | 2008-06-20 12:07:08 +0900 | [diff] [blame^] | 1011 | static void pcie_disable_notification(struct controller *ctrl) |
| 1012 | { |
| 1013 | u16 mask; |
| 1014 | mask = PRSN_DETECT_ENABLE | ATTN_BUTTN_ENABLE | MRL_DETECT_ENABLE | |
| 1015 | PWR_FAULT_DETECT_ENABLE | HP_INTR_ENABLE | CMD_CMPL_INTR_ENABLE; |
| 1016 | if (pcie_write_cmd(ctrl, 0, mask)) |
| 1017 | warn("%s: Cannot disable software notification\n", __func__); |
| 1018 | } |
| 1019 | |
| 1020 | static int pcie_init_notification(struct controller *ctrl) |
| 1021 | { |
| 1022 | if (pciehp_request_irq(ctrl)) |
| 1023 | return -1; |
| 1024 | if (pcie_enable_notification(ctrl)) { |
| 1025 | pciehp_free_irq(ctrl); |
| 1026 | return -1; |
| 1027 | } |
| 1028 | return 0; |
| 1029 | } |
| 1030 | |
| 1031 | static void pcie_shutdown_notification(struct controller *ctrl) |
| 1032 | { |
| 1033 | pcie_disable_notification(ctrl); |
| 1034 | pciehp_free_irq(ctrl); |
| 1035 | } |
| 1036 | |
| 1037 | static void make_slot_name(struct slot *slot) |
| 1038 | { |
| 1039 | if (pciehp_slot_with_bus) |
| 1040 | snprintf(slot->name, SLOT_NAME_SIZE, "%04d_%04d", |
| 1041 | slot->bus, slot->number); |
| 1042 | else |
| 1043 | snprintf(slot->name, SLOT_NAME_SIZE, "%d", slot->number); |
| 1044 | } |
| 1045 | |
| 1046 | static int pcie_init_slot(struct controller *ctrl) |
| 1047 | { |
| 1048 | struct slot *slot; |
| 1049 | |
| 1050 | slot = kzalloc(sizeof(*slot), GFP_KERNEL); |
| 1051 | if (!slot) |
| 1052 | return -ENOMEM; |
| 1053 | |
| 1054 | slot->hp_slot = 0; |
| 1055 | slot->ctrl = ctrl; |
| 1056 | slot->bus = ctrl->pci_dev->subordinate->number; |
| 1057 | slot->device = ctrl->slot_device_offset + slot->hp_slot; |
| 1058 | slot->hpc_ops = ctrl->hpc_ops; |
| 1059 | slot->number = ctrl->first_slot; |
| 1060 | make_slot_name(slot); |
| 1061 | mutex_init(&slot->lock); |
| 1062 | INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work); |
| 1063 | list_add(&slot->slot_list, &ctrl->slot_list); |
| 1064 | return 0; |
| 1065 | } |
| 1066 | |
| 1067 | static void pcie_cleanup_slot(struct controller *ctrl) |
| 1068 | { |
| 1069 | struct slot *slot; |
| 1070 | slot = list_first_entry(&ctrl->slot_list, struct slot, slot_list); |
| 1071 | list_del(&slot->slot_list); |
| 1072 | cancel_delayed_work(&slot->work); |
| 1073 | flush_scheduled_work(); |
| 1074 | flush_workqueue(pciehp_wq); |
| 1075 | kfree(slot); |
| 1076 | } |
| 1077 | |
Kenji Kaneshige | 2aeeef1 | 2008-04-25 14:39:08 -0700 | [diff] [blame] | 1078 | static inline void dbg_ctrl(struct controller *ctrl) |
| 1079 | { |
| 1080 | int i; |
| 1081 | u16 reg16; |
| 1082 | struct pci_dev *pdev = ctrl->pci_dev; |
| 1083 | |
| 1084 | if (!pciehp_debug) |
| 1085 | return; |
| 1086 | |
| 1087 | dbg("Hotplug Controller:\n"); |
| 1088 | dbg(" Seg/Bus/Dev/Func/IRQ : %s IRQ %d\n", pci_name(pdev), pdev->irq); |
| 1089 | dbg(" Vendor ID : 0x%04x\n", pdev->vendor); |
| 1090 | dbg(" Device ID : 0x%04x\n", pdev->device); |
| 1091 | dbg(" Subsystem ID : 0x%04x\n", pdev->subsystem_device); |
| 1092 | dbg(" Subsystem Vendor ID : 0x%04x\n", pdev->subsystem_vendor); |
| 1093 | dbg(" PCIe Cap offset : 0x%02x\n", ctrl->cap_base); |
| 1094 | for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) { |
| 1095 | if (!pci_resource_len(pdev, i)) |
| 1096 | continue; |
| 1097 | dbg(" PCI resource [%d] : 0x%llx@0x%llx\n", i, |
| 1098 | (unsigned long long)pci_resource_len(pdev, i), |
| 1099 | (unsigned long long)pci_resource_start(pdev, i)); |
| 1100 | } |
| 1101 | dbg("Slot Capabilities : 0x%08x\n", ctrl->slot_cap); |
| 1102 | dbg(" Physical Slot Number : %d\n", ctrl->first_slot); |
| 1103 | dbg(" Attention Button : %3s\n", ATTN_BUTTN(ctrl) ? "yes" : "no"); |
| 1104 | dbg(" Power Controller : %3s\n", POWER_CTRL(ctrl) ? "yes" : "no"); |
| 1105 | dbg(" MRL Sensor : %3s\n", MRL_SENS(ctrl) ? "yes" : "no"); |
| 1106 | dbg(" Attention Indicator : %3s\n", ATTN_LED(ctrl) ? "yes" : "no"); |
| 1107 | dbg(" Power Indicator : %3s\n", PWR_LED(ctrl) ? "yes" : "no"); |
| 1108 | dbg(" Hot-Plug Surprise : %3s\n", HP_SUPR_RM(ctrl) ? "yes" : "no"); |
| 1109 | dbg(" EMI Present : %3s\n", EMI(ctrl) ? "yes" : "no"); |
Kenji Kaneshige | 5808639 | 2008-05-27 19:04:30 +0900 | [diff] [blame] | 1110 | dbg(" Comamnd Completed : %3s\n", NO_CMD_CMPL(ctrl)? "no" : "yes"); |
Kenji Kaneshige | 2aeeef1 | 2008-04-25 14:39:08 -0700 | [diff] [blame] | 1111 | pciehp_readw(ctrl, SLOTSTATUS, ®16); |
| 1112 | dbg("Slot Status : 0x%04x\n", reg16); |
Kenji Kaneshige | d8b23e8 | 2008-06-02 09:07:46 -0700 | [diff] [blame] | 1113 | pciehp_readw(ctrl, SLOTCTRL, ®16); |
Kenji Kaneshige | 2aeeef1 | 2008-04-25 14:39:08 -0700 | [diff] [blame] | 1114 | dbg("Slot Control : 0x%04x\n", reg16); |
| 1115 | } |
| 1116 | |
Kenji Kaneshige | c4635eb | 2008-06-20 12:07:08 +0900 | [diff] [blame^] | 1117 | struct controller *pcie_init(struct pcie_device *dev) |
Mark Lord | 08e7a7d | 2007-11-28 15:11:46 -0800 | [diff] [blame] | 1118 | { |
Kenji Kaneshige | c4635eb | 2008-06-20 12:07:08 +0900 | [diff] [blame^] | 1119 | struct controller *ctrl; |
Mark Lord | 08e7a7d | 2007-11-28 15:11:46 -0800 | [diff] [blame] | 1120 | u32 slot_cap; |
Kenji Kaneshige | 2aeeef1 | 2008-04-25 14:39:08 -0700 | [diff] [blame] | 1121 | struct pci_dev *pdev = dev->port; |
Mark Lord | 08e7a7d | 2007-11-28 15:11:46 -0800 | [diff] [blame] | 1122 | |
Kenji Kaneshige | c4635eb | 2008-06-20 12:07:08 +0900 | [diff] [blame^] | 1123 | ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL); |
| 1124 | if (!ctrl) { |
| 1125 | err("%s : out of memory\n", __func__); |
| 1126 | goto abort; |
| 1127 | } |
| 1128 | INIT_LIST_HEAD(&ctrl->slot_list); |
| 1129 | |
Kenji Kaneshige | 2aeeef1 | 2008-04-25 14:39:08 -0700 | [diff] [blame] | 1130 | ctrl->pci_dev = pdev; |
| 1131 | ctrl->cap_base = pci_find_capability(pdev, PCI_CAP_ID_EXP); |
| 1132 | if (!ctrl->cap_base) { |
| 1133 | err("%s: Cannot find PCI Express capability\n", __func__); |
Mark Lord | 08e7a7d | 2007-11-28 15:11:46 -0800 | [diff] [blame] | 1134 | goto abort; |
| 1135 | } |
Kenji Kaneshige | 2aeeef1 | 2008-04-25 14:39:08 -0700 | [diff] [blame] | 1136 | if (pciehp_readl(ctrl, SLOTCAP, &slot_cap)) { |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 1137 | err("%s: Cannot read SLOTCAP register\n", __func__); |
Mark Lord | 08e7a7d | 2007-11-28 15:11:46 -0800 | [diff] [blame] | 1138 | goto abort; |
| 1139 | } |
Mark Lord | 08e7a7d | 2007-11-28 15:11:46 -0800 | [diff] [blame] | 1140 | |
Kenji Kaneshige | 2aeeef1 | 2008-04-25 14:39:08 -0700 | [diff] [blame] | 1141 | ctrl->slot_cap = slot_cap; |
| 1142 | ctrl->first_slot = slot_cap >> 19; |
| 1143 | ctrl->slot_device_offset = 0; |
| 1144 | ctrl->num_slots = 1; |
| 1145 | ctrl->hpc_ops = &pciehp_hpc_ops; |
| 1146 | mutex_init(&ctrl->crit_sect); |
| 1147 | mutex_init(&ctrl->ctrl_lock); |
| 1148 | init_waitqueue_head(&ctrl->queue); |
| 1149 | dbg_ctrl(ctrl); |
Kenji Kaneshige | 5808639 | 2008-05-27 19:04:30 +0900 | [diff] [blame] | 1150 | /* |
| 1151 | * Controller doesn't notify of command completion if the "No |
| 1152 | * Command Completed Support" bit is set in Slot Capability |
| 1153 | * register or the controller supports none of power |
| 1154 | * controller, attention led, power led and EMI. |
| 1155 | */ |
| 1156 | if (NO_CMD_CMPL(ctrl) || |
| 1157 | !(POWER_CTRL(ctrl) | ATTN_LED(ctrl) | PWR_LED(ctrl) | EMI(ctrl))) |
| 1158 | ctrl->no_cmd_complete = 1; |
Mark Lord | 08e7a7d | 2007-11-28 15:11:46 -0800 | [diff] [blame] | 1159 | |
Kenji Kaneshige | c4635eb | 2008-06-20 12:07:08 +0900 | [diff] [blame^] | 1160 | /* Clear all remaining event bits in Slot Status register */ |
| 1161 | if (pciehp_writew(ctrl, SLOTSTATUS, 0x1f)) |
| 1162 | goto abort_ctrl; |
Mark Lord | 08e7a7d | 2007-11-28 15:11:46 -0800 | [diff] [blame] | 1163 | |
Kenji Kaneshige | c4635eb | 2008-06-20 12:07:08 +0900 | [diff] [blame^] | 1164 | /* Disable sotfware notification */ |
| 1165 | pcie_disable_notification(ctrl); |
Mark Lord | ecdde93 | 2007-11-21 15:07:55 -0800 | [diff] [blame] | 1166 | |
| 1167 | /* |
| 1168 | * If this is the first controller to be initialized, |
| 1169 | * initialize the pciehp work queue |
| 1170 | */ |
| 1171 | if (atomic_add_return(1, &pciehp_num_controllers) == 1) { |
| 1172 | pciehp_wq = create_singlethread_workqueue("pciehpd"); |
Kenji Kaneshige | c4635eb | 2008-06-20 12:07:08 +0900 | [diff] [blame^] | 1173 | if (!pciehp_wq) |
| 1174 | goto abort_ctrl; |
Mark Lord | ecdde93 | 2007-11-21 15:07:55 -0800 | [diff] [blame] | 1175 | } |
| 1176 | |
Kenji Kaneshige | c4635eb | 2008-06-20 12:07:08 +0900 | [diff] [blame^] | 1177 | info("HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n", |
| 1178 | pdev->vendor, pdev->device, |
| 1179 | pdev->subsystem_vendor, pdev->subsystem_device); |
Kenji Kaneshige | 2aeeef1 | 2008-04-25 14:39:08 -0700 | [diff] [blame] | 1180 | |
Kenji Kaneshige | c4635eb | 2008-06-20 12:07:08 +0900 | [diff] [blame^] | 1181 | if (pcie_init_slot(ctrl)) |
| 1182 | goto abort_ctrl; |
Kenji Kaneshige | 2aeeef1 | 2008-04-25 14:39:08 -0700 | [diff] [blame] | 1183 | |
Kenji Kaneshige | c4635eb | 2008-06-20 12:07:08 +0900 | [diff] [blame^] | 1184 | if (pcie_init_notification(ctrl)) |
| 1185 | goto abort_slot; |
| 1186 | |
| 1187 | return ctrl; |
| 1188 | |
| 1189 | abort_slot: |
| 1190 | pcie_cleanup_slot(ctrl); |
| 1191 | abort_ctrl: |
| 1192 | kfree(ctrl); |
Mark Lord | 08e7a7d | 2007-11-28 15:11:46 -0800 | [diff] [blame] | 1193 | abort: |
Kenji Kaneshige | c4635eb | 2008-06-20 12:07:08 +0900 | [diff] [blame^] | 1194 | return NULL; |
| 1195 | } |
| 1196 | |
| 1197 | void pcie_release_ctrl(struct controller *ctrl) |
| 1198 | { |
| 1199 | pcie_shutdown_notification(ctrl); |
| 1200 | pcie_cleanup_slot(ctrl); |
| 1201 | /* |
| 1202 | * If this is the last controller to be released, destroy the |
| 1203 | * pciehp work queue |
| 1204 | */ |
| 1205 | if (atomic_dec_and_test(&pciehp_num_controllers)) |
| 1206 | destroy_workqueue(pciehp_wq); |
| 1207 | kfree(ctrl); |
Mark Lord | 08e7a7d | 2007-11-28 15:11:46 -0800 | [diff] [blame] | 1208 | } |