blob: 2913f7e68a10bdee3eefe169576dd7347965e31c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PCI Express PCI Hot Plug Driver
3 *
4 * Copyright (C) 1995,2001 Compaq Computer Corporation
5 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
6 * Copyright (C) 2001 IBM Corp.
7 * Copyright (C) 2003-2004 Intel Corporation
8 *
9 * All rights reserved.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
19 * NON INFRINGEMENT. See the GNU General Public License for more
20 * details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
Kristen Accardi8cf4c192005-08-16 15:16:10 -070026 * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *
28 */
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/types.h>
Tim Schmielaude259682006-01-08 01:02:05 -080033#include <linux/signal.h>
34#include <linux/jiffies.h>
35#include <linux/timer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/pci.h>
Andrew Morton5d1b8c92005-11-13 16:06:39 -080037#include <linux/interrupt.h>
Kristen Carlson Accardi34d03412007-01-09 13:02:36 -080038#include <linux/time.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Andrew Morton5d1b8c92005-11-13 16:06:39 -080040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "../pci.h"
42#include "pciehp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Bjorn Helgaascd84d342013-05-09 11:26:16 -060044static inline struct pci_dev *ctrl_dev(struct controller *ctrl)
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -080045{
Bjorn Helgaascd84d342013-05-09 11:26:16 -060046 return ctrl->pcie->port;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -080047}
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080049static irqreturn_t pcie_isr(int irq, void *dev_id);
50static void start_int_poll_timer(struct controller *ctrl, int sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/* This is the interrupt polling timeout function. */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080053static void int_poll_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080055 struct controller *ctrl = (struct controller *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 /* Poll for interrupt events. regs == NULL => polling */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080058 pcie_isr(0, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080060 init_timer(&ctrl->poll_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 if (!pciehp_poll_time)
Kenji Kaneshige40730d12007-08-09 16:09:38 -070062 pciehp_poll_time = 2; /* default polling interval is 2 sec */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080064 start_int_poll_timer(ctrl, pciehp_poll_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065}
66
67/* This function starts the interrupt polling timer. */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080068static void start_int_poll_timer(struct controller *ctrl, int sec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080070 /* Clamp to sane value */
71 if ((sec <= 0) || (sec > 60))
Bjorn Helgaasf7625982013-11-14 11:28:18 -070072 sec = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080074 ctrl->poll_timer.function = &int_poll_timeout;
75 ctrl->poll_timer.data = (unsigned long)ctrl;
76 ctrl->poll_timer.expires = jiffies + sec * HZ;
77 add_timer(&ctrl->poll_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -070080static inline int pciehp_request_irq(struct controller *ctrl)
81{
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +090082 int retval, irq = ctrl->pcie->irq;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -070083
84 /* Install interrupt polling timer. Start with 10 sec delay */
85 if (pciehp_poll_mode) {
86 init_timer(&ctrl->poll_timer);
87 start_int_poll_timer(ctrl, 10);
88 return 0;
89 }
90
91 /* Installs the interrupt handler */
92 retval = request_irq(irq, pcie_isr, IRQF_SHARED, MY_NAME, ctrl);
93 if (retval)
Taku Izumi7f2feec2008-09-05 12:11:26 +090094 ctrl_err(ctrl, "Cannot get irq %d for the hotplug controller\n",
95 irq);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -070096 return retval;
97}
98
99static inline void pciehp_free_irq(struct controller *ctrl)
100{
101 if (pciehp_poll_mode)
102 del_timer_sync(&ctrl->poll_timer);
103 else
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +0900104 free_irq(ctrl->pcie->irq, ctrl);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700105}
106
Bjorn Helgaas40b96082014-06-14 09:55:49 -0600107static int pcie_poll_cmd(struct controller *ctrl, int timeout)
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900108{
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600109 struct pci_dev *pdev = ctrl_dev(ctrl);
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900110 u16 slot_status;
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900111
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700112 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
113 if (slot_status & PCI_EXP_SLTSTA_CC) {
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600114 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
115 PCI_EXP_SLTSTA_CC);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900116 return 1;
Kenji Kaneshige820943b2008-06-20 12:04:33 +0900117 }
Adrian Bunka5827f42008-08-28 01:05:26 +0300118 while (timeout > 0) {
Kenji Kaneshige66618ba2008-06-20 12:05:12 +0900119 msleep(10);
120 timeout -= 10;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700121 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
122 if (slot_status & PCI_EXP_SLTSTA_CC) {
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600123 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
124 PCI_EXP_SLTSTA_CC);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900125 return 1;
Kenji Kaneshige820943b2008-06-20 12:04:33 +0900126 }
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900127 }
128 return 0; /* timeout */
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900129}
130
Bjorn Helgaas4283c702014-06-13 13:58:35 -0600131static void pcie_wait_cmd(struct controller *ctrl)
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800132{
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800133 unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
Bjorn Helgaas40b96082014-06-14 09:55:49 -0600134 unsigned long duration = msecs_to_jiffies(msecs);
135 unsigned long cmd_timeout = ctrl->cmd_started + duration;
136 unsigned long now, timeout;
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800137 int rc;
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800138
Bjorn Helgaas4283c702014-06-13 13:58:35 -0600139 /*
140 * If the controller does not generate notifications for command
141 * completions, we never need to wait between writes.
142 */
Rajat Jain6c1a32e2014-06-26 11:58:55 -0700143 if (NO_CMD_CMPL(ctrl))
Bjorn Helgaas4283c702014-06-13 13:58:35 -0600144 return;
145
146 if (!ctrl->cmd_busy)
147 return;
148
Bjorn Helgaas40b96082014-06-14 09:55:49 -0600149 /*
150 * Even if the command has already timed out, we want to call
151 * pcie_poll_cmd() so it can clear PCI_EXP_SLTSTA_CC.
152 */
153 now = jiffies;
154 if (time_before_eq(cmd_timeout, now))
155 timeout = 1;
156 else
157 timeout = cmd_timeout - now;
158
Bjorn Helgaas4283c702014-06-13 13:58:35 -0600159 if (ctrl->slot_ctrl & PCI_EXP_SLTCTL_HPIE &&
160 ctrl->slot_ctrl & PCI_EXP_SLTCTL_CCIE)
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900161 rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout);
Bjorn Helgaas4283c702014-06-13 13:58:35 -0600162 else
Yinghai Lu7cbeb9f2014-09-22 20:05:45 -0600163 rc = pcie_poll_cmd(ctrl, jiffies_to_msecs(timeout));
Bjorn Helgaas40b96082014-06-14 09:55:49 -0600164
165 /*
166 * Controllers with errata like Intel CF118 don't generate
167 * completion notifications unless the power/indicator/interlock
168 * control bits are changed. On such controllers, we'll emit this
169 * timeout message when we wait for completion of commands that
170 * don't change those bits, e.g., commands that merely enable
171 * interrupts.
172 */
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800173 if (!rc)
Bjorn Helgaasd537a3a2014-08-15 17:18:44 -0600174 ctrl_info(ctrl, "Timeout on hotplug command %#06x (issued %u msec ago)\n",
Bjorn Helgaas40b96082014-06-14 09:55:49 -0600175 ctrl->slot_ctrl,
Yinghai Lud4338892014-09-22 20:07:35 -0600176 jiffies_to_msecs(jiffies - ctrl->cmd_started));
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800177}
178
Alex Williamsona5dd4b42015-06-08 17:10:50 -0600179static void pcie_do_write_cmd(struct controller *ctrl, u16 cmd,
180 u16 mask, bool wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600182 struct pci_dev *pdev = ctrl_dev(ctrl);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700183 u16 slot_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800185 mutex_lock(&ctrl->ctrl_lock);
186
Alex Williamsona5dd4b42015-06-08 17:10:50 -0600187 /*
188 * Always wait for any previous command that might still be in progress
189 */
Bjorn Helgaas3461a062014-06-13 15:06:40 -0600190 pcie_wait_cmd(ctrl);
191
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700192 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700193 slot_ctrl &= ~mask;
Kenji Kaneshigeb7aa1f12008-04-25 14:39:14 -0700194 slot_ctrl |= (cmd & mask);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700195 ctrl->cmd_busy = 1;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700196 smp_mb();
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700197 pcie_capability_write_word(pdev, PCI_EXP_SLTCTL, slot_ctrl);
Bjorn Helgaas40b96082014-06-14 09:55:49 -0600198 ctrl->cmd_started = jiffies;
Bjorn Helgaas4283c702014-06-13 13:58:35 -0600199 ctrl->slot_ctrl = slot_ctrl;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700200
Alex Williamsona5dd4b42015-06-08 17:10:50 -0600201 /*
202 * Optionally wait for the hardware to be ready for a new command,
203 * indicating completion of the above issued command.
204 */
205 if (wait)
206 pcie_wait_cmd(ctrl);
207
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800208 mutex_unlock(&ctrl->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Alex Williamsona5dd4b42015-06-08 17:10:50 -0600211/**
212 * pcie_write_cmd - Issue controller command
213 * @ctrl: controller to which the command is issued
214 * @cmd: command value written to slot control register
215 * @mask: bitmask of slot control register to be modified
216 */
217static void pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
218{
219 pcie_do_write_cmd(ctrl, cmd, mask, true);
220}
221
222/* Same as above without waiting for the hardware to latch */
223static void pcie_write_cmd_nowait(struct controller *ctrl, u16 cmd, u16 mask)
224{
225 pcie_do_write_cmd(ctrl, cmd, mask, false);
226}
227
Rajat Jain47033892014-02-04 18:28:43 -0800228bool pciehp_check_link_active(struct controller *ctrl)
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900229{
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600230 struct pci_dev *pdev = ctrl_dev(ctrl);
Yinghai Lu4e2ce402012-01-27 10:55:12 -0800231 u16 lnk_status;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700232 bool ret;
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900233
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700234 pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
Yinghai Lu4e2ce402012-01-27 10:55:12 -0800235 ret = !!(lnk_status & PCI_EXP_LNKSTA_DLLLA);
236
237 if (ret)
238 ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
239
240 return ret;
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900241}
242
Yinghai Lubffe4f72012-01-27 10:55:13 -0800243static void __pcie_wait_link_active(struct controller *ctrl, bool active)
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900244{
245 int timeout = 1000;
246
Rajat Jain47033892014-02-04 18:28:43 -0800247 if (pciehp_check_link_active(ctrl) == active)
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900248 return;
249 while (timeout > 0) {
250 msleep(10);
251 timeout -= 10;
Rajat Jain47033892014-02-04 18:28:43 -0800252 if (pciehp_check_link_active(ctrl) == active)
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900253 return;
254 }
Yinghai Lubffe4f72012-01-27 10:55:13 -0800255 ctrl_dbg(ctrl, "Data Link Layer Link Active not %s in 1000 msec\n",
256 active ? "set" : "cleared");
257}
258
259static void pcie_wait_link_active(struct controller *ctrl)
260{
261 __pcie_wait_link_active(ctrl, true);
262}
263
Yinghai Lu2f5d8e42012-01-27 10:55:11 -0800264static bool pci_bus_check_dev(struct pci_bus *bus, int devfn)
265{
266 u32 l;
267 int count = 0;
268 int delay = 1000, step = 20;
269 bool found = false;
270
271 do {
272 found = pci_bus_read_dev_vendor_id(bus, devfn, &l, 0);
273 count++;
274
275 if (found)
276 break;
277
278 msleep(step);
279 delay -= step;
280 } while (delay > 0);
281
282 if (count > 1 && pciehp_debug)
283 printk(KERN_DEBUG "pci %04x:%02x:%02x.%d id reading try %d times with interval %d ms to get %08x\n",
284 pci_domain_nr(bus), bus->number, PCI_SLOT(devfn),
285 PCI_FUNC(devfn), count, step, l);
286
287 return found;
288}
289
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900290int pciehp_check_link_status(struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600292 struct pci_dev *pdev = ctrl_dev(ctrl);
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700293 bool found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 u16 lnk_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400296 /*
297 * Data Link Layer Link Active Reporting must be capable for
298 * hot-plug capable downstream port. But old controller might
299 * not implement it. In this case, we wait for 1000 ms.
300 */
301 if (ctrl->link_active_reporting)
302 pcie_wait_link_active(ctrl);
303 else
304 msleep(1000);
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900305
Yinghai Lu2f5d8e42012-01-27 10:55:11 -0800306 /* wait 100ms before read pci conf, and try in 1s */
307 msleep(100);
308 found = pci_bus_check_dev(ctrl->pcie->port->subordinate,
309 PCI_DEVFN(0, 0));
Kenji Kaneshige0027cb32011-11-10 16:40:37 +0900310
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700311 pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900312 ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900313 if ((lnk_status & PCI_EXP_LNKSTA_LT) ||
314 !(lnk_status & PCI_EXP_LNKSTA_NLW)) {
Bjorn Helgaas3784e0c2015-06-15 16:28:29 -0500315 ctrl_err(ctrl, "link training error: status %#06x\n",
316 lnk_status);
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700317 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319
Yinghai Lufdbd3ce2011-11-07 07:53:23 -0800320 pcie_update_link_speed(ctrl->pcie->port->subordinate, lnk_status);
321
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700322 if (!found)
323 return -1;
Yinghai Lu2f5d8e42012-01-27 10:55:11 -0800324
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700325 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
Yinghai Lu7f822992012-01-27 10:55:14 -0800328static int __pciehp_link_set(struct controller *ctrl, bool enable)
329{
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600330 struct pci_dev *pdev = ctrl_dev(ctrl);
Yinghai Lu7f822992012-01-27 10:55:14 -0800331 u16 lnk_ctrl;
Yinghai Lu7f822992012-01-27 10:55:14 -0800332
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700333 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &lnk_ctrl);
Yinghai Lu7f822992012-01-27 10:55:14 -0800334
335 if (enable)
336 lnk_ctrl &= ~PCI_EXP_LNKCTL_LD;
337 else
338 lnk_ctrl |= PCI_EXP_LNKCTL_LD;
339
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700340 pcie_capability_write_word(pdev, PCI_EXP_LNKCTL, lnk_ctrl);
Yinghai Lu7f822992012-01-27 10:55:14 -0800341 ctrl_dbg(ctrl, "%s: lnk_ctrl = %x\n", __func__, lnk_ctrl);
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700342 return 0;
Yinghai Lu7f822992012-01-27 10:55:14 -0800343}
344
345static int pciehp_link_enable(struct controller *ctrl)
346{
347 return __pciehp_link_set(ctrl, true);
348}
349
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700350void pciehp_get_attention_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800352 struct controller *ctrl = slot->ctrl;
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600353 struct pci_dev *pdev = ctrl_dev(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 u16 slot_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700356 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900357 ctrl_dbg(ctrl, "%s: SLOTCTRL %x, value read %x\n", __func__,
358 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700360 switch (slot_ctrl & PCI_EXP_SLTCTL_AIC) {
361 case PCI_EXP_SLTCTL_ATTN_IND_ON:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 *status = 1; /* On */
363 break;
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700364 case PCI_EXP_SLTCTL_ATTN_IND_BLINK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 *status = 2; /* Blink */
366 break;
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700367 case PCI_EXP_SLTCTL_ATTN_IND_OFF:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 *status = 0; /* Off */
369 break;
370 default:
371 *status = 0xFF;
372 break;
373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700376void pciehp_get_power_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800378 struct controller *ctrl = slot->ctrl;
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600379 struct pci_dev *pdev = ctrl_dev(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 u16 slot_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700382 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900383 ctrl_dbg(ctrl, "%s: SLOTCTRL %x value read %x\n", __func__,
384 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700386 switch (slot_ctrl & PCI_EXP_SLTCTL_PCC) {
387 case PCI_EXP_SLTCTL_PWR_ON:
388 *status = 1; /* On */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 break;
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700390 case PCI_EXP_SLTCTL_PWR_OFF:
391 *status = 0; /* Off */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 break;
393 default:
394 *status = 0xFF;
395 break;
396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700399void pciehp_get_latch_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700401 struct pci_dev *pdev = ctrl_dev(slot->ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700404 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900405 *status = !!(slot_status & PCI_EXP_SLTSTA_MRLSS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700408void pciehp_get_adapter_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700410 struct pci_dev *pdev = ctrl_dev(slot->ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700413 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900414 *status = !!(slot_status & PCI_EXP_SLTSTA_PDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900417int pciehp_query_power_fault(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700419 struct pci_dev *pdev = ctrl_dev(slot->ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700422 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900423 return !!(slot_status & PCI_EXP_SLTSTA_PFD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700426void pciehp_set_attention_status(struct slot *slot, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800428 struct controller *ctrl = slot->ctrl;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700429 u16 slot_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Bjorn Helgaasaf9ab792013-12-15 17:23:54 -0700431 if (!ATTN_LED(ctrl))
432 return;
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 switch (value) {
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400435 case 0: /* turn off */
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700436 slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_OFF;
Kenji Kaneshige445f7982009-10-05 17:42:59 +0900437 break;
438 case 1: /* turn on */
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700439 slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_ON;
Kenji Kaneshige445f7982009-10-05 17:42:59 +0900440 break;
441 case 2: /* turn blink */
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700442 slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_BLINK;
Kenji Kaneshige445f7982009-10-05 17:42:59 +0900443 break;
444 default:
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700445 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
Alex Williamsona5dd4b42015-06-08 17:10:50 -0600447 pcie_write_cmd_nowait(ctrl, slot_cmd, PCI_EXP_SLTCTL_AIC);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900448 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
449 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900452void pciehp_green_led_on(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800454 struct controller *ctrl = slot->ctrl;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700455
Bjorn Helgaasaf9ab792013-12-15 17:23:54 -0700456 if (!PWR_LED(ctrl))
457 return;
458
Alex Williamsona5dd4b42015-06-08 17:10:50 -0600459 pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_ON,
460 PCI_EXP_SLTCTL_PIC);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900461 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700462 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
463 PCI_EXP_SLTCTL_PWR_IND_ON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900466void pciehp_green_led_off(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800468 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Bjorn Helgaasaf9ab792013-12-15 17:23:54 -0700470 if (!PWR_LED(ctrl))
471 return;
472
Alex Williamsona5dd4b42015-06-08 17:10:50 -0600473 pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_OFF,
474 PCI_EXP_SLTCTL_PIC);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900475 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700476 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
477 PCI_EXP_SLTCTL_PWR_IND_OFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900480void pciehp_green_led_blink(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800482 struct controller *ctrl = slot->ctrl;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700483
Bjorn Helgaasaf9ab792013-12-15 17:23:54 -0700484 if (!PWR_LED(ctrl))
485 return;
486
Alex Williamsona5dd4b42015-06-08 17:10:50 -0600487 pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_BLINK,
488 PCI_EXP_SLTCTL_PIC);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900489 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700490 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
491 PCI_EXP_SLTCTL_PWR_IND_BLINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400494int pciehp_power_on_slot(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800496 struct controller *ctrl = slot->ctrl;
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600497 struct pci_dev *pdev = ctrl_dev(ctrl);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700498 u16 slot_status;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700499 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Rajesh Shah5a49f202005-11-23 15:44:54 -0800501 /* Clear sticky power-fault bit from previous power failures */
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700502 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
Bjorn Helgaas2f2ed41c2013-12-14 13:06:40 -0700503 if (slot_status & PCI_EXP_SLTSTA_PFD)
504 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
505 PCI_EXP_SLTSTA_PFD);
Kenji Kaneshige5651c482009-11-13 15:14:10 +0900506 ctrl->power_fault_detected = 0;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800507
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700508 pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_ON, PCI_EXP_SLTCTL_PCC);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900509 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700510 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
511 PCI_EXP_SLTCTL_PWR_ON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Yinghai Lu2debd922012-01-27 10:55:15 -0800513 retval = pciehp_link_enable(ctrl);
514 if (retval)
515 ctrl_err(ctrl, "%s: Can not enable the link!\n", __func__);
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return retval;
518}
519
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400520void pciehp_power_off_slot(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800522 struct controller *ctrl = slot->ctrl;
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900523
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700524 pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_OFF, PCI_EXP_SLTCTL_PCC);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900525 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
Bjorn Helgaase7b4f0d72013-12-14 13:06:53 -0700526 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
527 PCI_EXP_SLTCTL_PWR_OFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800530static irqreturn_t pcie_isr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800532 struct controller *ctrl = (struct controller *)dev_id;
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600533 struct pci_dev *pdev = ctrl_dev(ctrl);
Bjorn Helgaasb440bde2014-09-10 13:45:01 -0600534 struct pci_bus *subordinate = pdev->subordinate;
535 struct pci_dev *dev;
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900536 struct slot *slot = ctrl->slot;
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700537 u16 detected, intr_loc;
Bjorn Helgaas4f092fe2015-06-14 21:35:13 -0500538 u8 open, present;
539 bool link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700541 /*
542 * In order to guarantee that all interrupt events are
543 * serviced, we need to re-inspect Slot Status register after
544 * clearing what is presumed to be the last pending interrupt.
545 */
546 intr_loc = 0;
547 do {
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700548 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &detected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900550 detected &= (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
551 PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
Rajat Jaine48f1b62014-02-04 18:29:10 -0800552 PCI_EXP_SLTSTA_CC | PCI_EXP_SLTSTA_DLLSC);
Kenji Kaneshige81b840c2009-02-03 15:06:13 +0900553 detected &= ~intr_loc;
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700554 intr_loc |= detected;
555 if (!intr_loc)
556 return IRQ_NONE;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700557 if (detected)
558 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
559 intr_loc);
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700560 } while (detected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Bjorn Helgaas3784e0c2015-06-15 16:28:29 -0500562 ctrl_dbg(ctrl, "pending interrupts %#06x from Slot Status\n", intr_loc);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700563
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700564 /* Check Command Complete Interrupt Pending */
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900565 if (intr_loc & PCI_EXP_SLTSTA_CC) {
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800566 ctrl->cmd_busy = 0;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700567 smp_mb();
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900568 wake_up(&ctrl->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570
Bjorn Helgaasb440bde2014-09-10 13:45:01 -0600571 if (subordinate) {
572 list_for_each_entry(dev, &subordinate->devices, bus_list) {
573 if (dev->ignore_hotplug) {
574 ctrl_dbg(ctrl, "ignoring hotplug event %#06x (%s requested no hotplug)\n",
575 intr_loc, pci_name(dev));
576 return IRQ_HANDLED;
577 }
578 }
579 }
580
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900581 if (!(intr_loc & ~PCI_EXP_SLTSTA_CC))
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900582 return IRQ_HANDLED;
583
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700584 /* Check MRL Sensor Changed */
Bjorn Helgaas4f092fe2015-06-14 21:35:13 -0500585 if (intr_loc & PCI_EXP_SLTSTA_MRLSC) {
586 pciehp_get_latch_status(slot, &open);
587 ctrl_info(ctrl, "Latch %s on Slot(%s)\n",
588 open ? "open" : "close", slot_name(slot));
589 pciehp_queue_interrupt_event(slot, open ? INT_SWITCH_OPEN :
590 INT_SWITCH_CLOSE);
591 }
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800592
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700593 /* Check Attention Button Pressed */
Bjorn Helgaas4f092fe2015-06-14 21:35:13 -0500594 if (intr_loc & PCI_EXP_SLTSTA_ABP) {
595 ctrl_info(ctrl, "Button pressed on Slot(%s)\n",
596 slot_name(slot));
597 pciehp_queue_interrupt_event(slot, INT_BUTTON_PRESS);
598 }
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800599
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700600 /* Check Presence Detect Changed */
Bjorn Helgaas4f092fe2015-06-14 21:35:13 -0500601 if (intr_loc & PCI_EXP_SLTSTA_PDC) {
602 pciehp_get_adapter_status(slot, &present);
603 ctrl_info(ctrl, "Card %spresent on Slot(%s)\n",
604 present ? "" : "not ", slot_name(slot));
605 pciehp_queue_interrupt_event(slot, present ? INT_PRESENCE_ON :
606 INT_PRESENCE_OFF);
607 }
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800608
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700609 /* Check Power Fault Detected */
Kenji Kaneshige99f01692009-02-03 15:06:16 +0900610 if ((intr_loc & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) {
611 ctrl->power_fault_detected = 1;
Bjorn Helgaas4f092fe2015-06-14 21:35:13 -0500612 ctrl_err(ctrl, "Power fault on slot %s\n", slot_name(slot));
613 pciehp_queue_interrupt_event(slot, INT_POWER_FAULT);
Kenji Kaneshige99f01692009-02-03 15:06:16 +0900614 }
Rajat Jaine48f1b62014-02-04 18:29:10 -0800615
Bjorn Helgaas4f092fe2015-06-14 21:35:13 -0500616 if (intr_loc & PCI_EXP_SLTSTA_DLLSC) {
617 link = pciehp_check_link_active(ctrl);
618 ctrl_info(ctrl, "slot(%s): Link %s event\n",
619 slot_name(slot), link ? "Up" : "Down");
620 pciehp_queue_interrupt_event(slot, link ? INT_LINK_UP :
621 INT_LINK_DOWN);
622 }
Rajat Jaine48f1b62014-02-04 18:29:10 -0800623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return IRQ_HANDLED;
625}
626
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700627void pcie_enable_notification(struct controller *ctrl)
Mark Lordecdde932007-11-21 15:07:55 -0800628{
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700629 u16 cmd, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Kenji Kaneshige5651c482009-11-13 15:14:10 +0900631 /*
632 * TBD: Power fault detected software notification support.
633 *
634 * Power fault detected software notification is not enabled
635 * now, because it caused power fault detected interrupt storm
636 * on some machines. On those machines, power fault detected
637 * bit in the slot status register was set again immediately
638 * when it is cleared in the interrupt service routine, and
639 * next power fault detected interrupt was notified again.
640 */
Rajat Jain4f854f22014-02-04 18:29:23 -0800641
642 /*
643 * Always enable link events: thus link-up and link-down shall
644 * always be treated as hotplug and unplug respectively. Enable
645 * presence detect only if Attention Button is not present.
646 */
647 cmd = PCI_EXP_SLTCTL_DLLSCE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -0700648 if (ATTN_BUTTN(ctrl))
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900649 cmd |= PCI_EXP_SLTCTL_ABPE;
Rajat Jain4f854f22014-02-04 18:29:23 -0800650 else
651 cmd |= PCI_EXP_SLTCTL_PDCE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -0700652 if (MRL_SENS(ctrl))
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900653 cmd |= PCI_EXP_SLTCTL_MRLSCE;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700654 if (!pciehp_poll_mode)
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900655 cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700656
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900657 mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
658 PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
Rajat Jain4f854f22014-02-04 18:29:23 -0800659 PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
660 PCI_EXP_SLTCTL_DLLSCE);
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700661
Alex Williamsona5dd4b42015-06-08 17:10:50 -0600662 pcie_write_cmd_nowait(ctrl, cmd, mask);
Yinghai Lucf8d7b52014-09-22 20:36:09 -0600663 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
664 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
Mark Lord08e7a7d2007-11-28 15:11:46 -0800666
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900667static void pcie_disable_notification(struct controller *ctrl)
668{
669 u16 mask;
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700670
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900671 mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
672 PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
Kenji Kaneshigef22daf12009-10-05 17:40:02 +0900673 PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
674 PCI_EXP_SLTCTL_DLLSCE);
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700675 pcie_write_cmd(ctrl, 0, mask);
Yinghai Lucf8d7b52014-09-22 20:36:09 -0600676 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
677 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, 0);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900678}
679
Alex Williamson2e35afa2013-08-08 14:09:37 -0600680/*
681 * pciehp has a 1:1 bus:slot relationship so we ultimately want a secondary
Rajat Jain2b3940b2014-02-18 18:53:19 -0800682 * bus reset of the bridge, but at the same time we want to ensure that it is
683 * not seen as a hot-unplug, followed by the hot-plug of the device. Thus,
684 * disable link state notification and presence detection change notification
685 * momentarily, if we see that they could interfere. Also, clear any spurious
Alex Williamson2e35afa2013-08-08 14:09:37 -0600686 * events after.
687 */
688int pciehp_reset_slot(struct slot *slot, int probe)
689{
690 struct controller *ctrl = slot->ctrl;
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600691 struct pci_dev *pdev = ctrl_dev(ctrl);
Rajat Jain06a8d892014-02-04 18:30:40 -0800692 u16 stat_mask = 0, ctrl_mask = 0;
Alex Williamson2e35afa2013-08-08 14:09:37 -0600693
694 if (probe)
695 return 0;
696
Rajat Jain2b3940b2014-02-18 18:53:19 -0800697 if (!ATTN_BUTTN(ctrl)) {
Rajat Jain06a8d892014-02-04 18:30:40 -0800698 ctrl_mask |= PCI_EXP_SLTCTL_PDCE;
699 stat_mask |= PCI_EXP_SLTSTA_PDC;
Alex Williamson2e35afa2013-08-08 14:09:37 -0600700 }
Rajat Jain06a8d892014-02-04 18:30:40 -0800701 ctrl_mask |= PCI_EXP_SLTCTL_DLLSCE;
702 stat_mask |= PCI_EXP_SLTSTA_DLLSC;
703
704 pcie_write_cmd(ctrl, 0, ctrl_mask);
Yinghai Lucf8d7b52014-09-22 20:36:09 -0600705 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
706 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, 0);
Rajat Jain06a8d892014-02-04 18:30:40 -0800707 if (pciehp_poll_mode)
708 del_timer_sync(&ctrl->poll_timer);
Alex Williamson2e35afa2013-08-08 14:09:37 -0600709
710 pci_reset_bridge_secondary_bus(ctrl->pcie->port);
711
Rajat Jain06a8d892014-02-04 18:30:40 -0800712 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, stat_mask);
Alex Williamsona5dd4b42015-06-08 17:10:50 -0600713 pcie_write_cmd_nowait(ctrl, ctrl_mask, ctrl_mask);
Yinghai Lucf8d7b52014-09-22 20:36:09 -0600714 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
715 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, ctrl_mask);
Rajat Jain06a8d892014-02-04 18:30:40 -0800716 if (pciehp_poll_mode)
717 int_poll_timeout(ctrl->poll_timer.data);
Alex Williamson2e35afa2013-08-08 14:09:37 -0600718
719 return 0;
720}
721
Eric W. Biedermandbc7e1e2009-01-28 19:31:18 -0800722int pcie_init_notification(struct controller *ctrl)
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900723{
724 if (pciehp_request_irq(ctrl))
725 return -1;
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700726 pcie_enable_notification(ctrl);
Eric W. Biedermandbc7e1e2009-01-28 19:31:18 -0800727 ctrl->notification_enabled = 1;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900728 return 0;
729}
730
731static void pcie_shutdown_notification(struct controller *ctrl)
732{
Eric W. Biedermandbc7e1e2009-01-28 19:31:18 -0800733 if (ctrl->notification_enabled) {
734 pcie_disable_notification(ctrl);
735 pciehp_free_irq(ctrl);
736 ctrl->notification_enabled = 0;
737 }
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900738}
739
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900740static int pcie_init_slot(struct controller *ctrl)
741{
742 struct slot *slot;
743
744 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
745 if (!slot)
746 return -ENOMEM;
747
Kees Cookd8537542013-07-03 15:04:57 -0700748 slot->wq = alloc_workqueue("pciehp-%u", 0, 0, PSN(ctrl));
Yijing Wangc2be6f92013-01-11 10:15:54 +0800749 if (!slot->wq)
750 goto abort;
751
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900752 slot->ctrl = ctrl;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900753 mutex_init(&slot->lock);
Rajat Jain50b52fd2014-02-04 18:31:11 -0800754 mutex_init(&slot->hotplug_lock);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900755 INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900756 ctrl->slot = slot;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900757 return 0;
Yijing Wangc2be6f92013-01-11 10:15:54 +0800758abort:
759 kfree(slot);
760 return -ENOMEM;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900761}
762
763static void pcie_cleanup_slot(struct controller *ctrl)
764{
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900765 struct slot *slot = ctrl->slot;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900766 cancel_delayed_work(&slot->work);
Yijing Wangc2be6f92013-01-11 10:15:54 +0800767 destroy_workqueue(slot->wq);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900768 kfree(slot);
769}
770
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700771static inline void dbg_ctrl(struct controller *ctrl)
772{
Kenji Kaneshige385e2492009-09-15 17:30:14 +0900773 struct pci_dev *pdev = ctrl->pcie->port;
Bjorn Helgaas3784e0c2015-06-15 16:28:29 -0500774 u16 reg16;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700775
776 if (!pciehp_debug)
777 return;
778
Taku Izumi7f2feec2008-09-05 12:11:26 +0900779 ctrl_info(ctrl, "Slot Capabilities : 0x%08x\n", ctrl->slot_cap);
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600780 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &reg16);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900781 ctrl_info(ctrl, "Slot Status : 0x%04x\n", reg16);
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600782 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &reg16);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900783 ctrl_info(ctrl, "Slot Control : 0x%04x\n", reg16);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700784}
785
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400786#define FLAG(x, y) (((x) & (y)) ? '+' : '-')
Bjorn Helgaasafe24782013-12-14 13:06:36 -0700787
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900788struct controller *pcie_init(struct pcie_device *dev)
Mark Lord08e7a7d2007-11-28 15:11:46 -0800789{
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900790 struct controller *ctrl;
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900791 u32 slot_cap, link_cap;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700792 struct pci_dev *pdev = dev->port;
Mark Lord08e7a7d2007-11-28 15:11:46 -0800793
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900794 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
795 if (!ctrl) {
Taku Izumi18b341b2008-10-23 11:47:32 +0900796 dev_err(&dev->device, "%s: Out of memory\n", __func__);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900797 goto abort;
798 }
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +0900799 ctrl->pcie = dev;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700800 pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &slot_cap);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700801 ctrl->slot_cap = slot_cap;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700802 mutex_init(&ctrl->ctrl_lock);
803 init_waitqueue_head(&ctrl->queue);
804 dbg_ctrl(ctrl);
Bjorn Helgaas2cc56f32014-06-14 10:56:31 -0600805
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400806 /* Check if Data Link Layer Link Active Reporting is implemented */
807 pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &link_cap);
Bjorn Helgaas3784e0c2015-06-15 16:28:29 -0500808 if (link_cap & PCI_EXP_LNKCAP_DLLLARC)
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400809 ctrl->link_active_reporting = 1;
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900810
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900811 /* Clear all remaining event bits in Slot Status register */
Bjorn Helgaasdf726482013-12-14 13:06:47 -0700812 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
813 PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
814 PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
Myron Stowe0d25d352014-06-17 13:27:34 -0600815 PCI_EXP_SLTSTA_CC | PCI_EXP_SLTSTA_DLLSC);
Mark Lord08e7a7d2007-11-28 15:11:46 -0800816
Bjorn Helgaas3784e0c2015-06-15 16:28:29 -0500817 ctrl_info(ctrl, "Slot #%d AttnBtn%c PwrCtrl%c MRL%c AttnInd%c PwrInd%c HotPlug%c Surprise%c Interlock%c NoCompl%c LLActRep%c\n",
Bjorn Helgaasafe24782013-12-14 13:06:36 -0700818 (slot_cap & PCI_EXP_SLTCAP_PSN) >> 19,
819 FLAG(slot_cap, PCI_EXP_SLTCAP_ABP),
Bjorn Helgaasafe24782013-12-14 13:06:36 -0700820 FLAG(slot_cap, PCI_EXP_SLTCAP_PCP),
821 FLAG(slot_cap, PCI_EXP_SLTCAP_MRLSP),
Bjorn Helgaas3784e0c2015-06-15 16:28:29 -0500822 FLAG(slot_cap, PCI_EXP_SLTCAP_AIP),
823 FLAG(slot_cap, PCI_EXP_SLTCAP_PIP),
824 FLAG(slot_cap, PCI_EXP_SLTCAP_HPC),
825 FLAG(slot_cap, PCI_EXP_SLTCAP_HPS),
Bjorn Helgaasafe24782013-12-14 13:06:36 -0700826 FLAG(slot_cap, PCI_EXP_SLTCAP_EIP),
827 FLAG(slot_cap, PCI_EXP_SLTCAP_NCCS),
828 FLAG(link_cap, PCI_EXP_LNKCAP_DLLLARC));
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700829
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900830 if (pcie_init_slot(ctrl))
831 goto abort_ctrl;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700832
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900833 return ctrl;
834
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900835abort_ctrl:
836 kfree(ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -0800837abort:
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900838 return NULL;
839}
840
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900841void pciehp_release_ctrl(struct controller *ctrl)
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900842{
843 pcie_shutdown_notification(ctrl);
844 pcie_cleanup_slot(ctrl);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900845 kfree(ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -0800846}