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