blob: 915bb35f91802b882dcaeb98330eff91cd687fb0 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* Power Control Command */
50#define POWER_ON 0
Kenji Kaneshige322162a2008-12-19 15:19:02 +090051#define POWER_OFF PCI_EXP_SLTCTL_PCC
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080053static irqreturn_t pcie_isr(int irq, void *dev_id);
54static void start_int_poll_timer(struct controller *ctrl, int sec);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/* This is the interrupt polling timeout function. */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080057static void int_poll_timeout(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080059 struct controller *ctrl = (struct controller *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 /* Poll for interrupt events. regs == NULL => polling */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080062 pcie_isr(0, ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080064 init_timer(&ctrl->poll_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 if (!pciehp_poll_time)
Kenji Kaneshige40730d12007-08-09 16:09:38 -070066 pciehp_poll_time = 2; /* default polling interval is 2 sec */
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080068 start_int_poll_timer(ctrl, pciehp_poll_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069}
70
71/* This function starts the interrupt polling timer. */
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080072static void start_int_poll_timer(struct controller *ctrl, int sec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080074 /* Clamp to sane value */
75 if ((sec <= 0) || (sec > 60))
Bjorn Helgaasf7625982013-11-14 11:28:18 -070076 sec = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Kenji Kaneshige48fe3912006-12-21 17:01:04 -080078 ctrl->poll_timer.function = &int_poll_timeout;
79 ctrl->poll_timer.data = (unsigned long)ctrl;
80 ctrl->poll_timer.expires = jiffies + sec * HZ;
81 add_timer(&ctrl->poll_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -070084static inline int pciehp_request_irq(struct controller *ctrl)
85{
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +090086 int retval, irq = ctrl->pcie->irq;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -070087
88 /* Install interrupt polling timer. Start with 10 sec delay */
89 if (pciehp_poll_mode) {
90 init_timer(&ctrl->poll_timer);
91 start_int_poll_timer(ctrl, 10);
92 return 0;
93 }
94
95 /* Installs the interrupt handler */
96 retval = request_irq(irq, pcie_isr, IRQF_SHARED, MY_NAME, ctrl);
97 if (retval)
Taku Izumi7f2feec2008-09-05 12:11:26 +090098 ctrl_err(ctrl, "Cannot get irq %d for the hotplug controller\n",
99 irq);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700100 return retval;
101}
102
103static inline void pciehp_free_irq(struct controller *ctrl)
104{
105 if (pciehp_poll_mode)
106 del_timer_sync(&ctrl->poll_timer);
107 else
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +0900108 free_irq(ctrl->pcie->irq, ctrl);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700109}
110
Kenji Kaneshige563f1192008-06-20 12:05:52 +0900111static int pcie_poll_cmd(struct controller *ctrl)
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900112{
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600113 struct pci_dev *pdev = ctrl_dev(ctrl);
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900114 u16 slot_status;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700115 int timeout = 1000;
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900116
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700117 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
118 if (slot_status & PCI_EXP_SLTSTA_CC) {
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600119 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
120 PCI_EXP_SLTSTA_CC);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900121 return 1;
Kenji Kaneshige820943b2008-06-20 12:04:33 +0900122 }
Adrian Bunka5827f42008-08-28 01:05:26 +0300123 while (timeout > 0) {
Kenji Kaneshige66618ba2008-06-20 12:05:12 +0900124 msleep(10);
125 timeout -= 10;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700126 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
127 if (slot_status & PCI_EXP_SLTSTA_CC) {
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600128 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
129 PCI_EXP_SLTSTA_CC);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900130 return 1;
Kenji Kaneshige820943b2008-06-20 12:04:33 +0900131 }
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900132 }
133 return 0; /* timeout */
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900134}
135
Kenji Kaneshige563f1192008-06-20 12:05:52 +0900136static void pcie_wait_cmd(struct controller *ctrl, int poll)
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800137{
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800138 unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
139 unsigned long timeout = msecs_to_jiffies(msecs);
140 int rc;
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800141
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900142 if (poll)
143 rc = pcie_poll_cmd(ctrl);
144 else
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900145 rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout);
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800146 if (!rc)
Taku Izumi7f2feec2008-09-05 12:11:26 +0900147 ctrl_dbg(ctrl, "Command not completed in 1000 msec\n");
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800148}
149
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700150/**
151 * pcie_write_cmd - Issue controller command
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700152 * @ctrl: controller to which the command is issued
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700153 * @cmd: command value written to slot control register
154 * @mask: bitmask of slot control register to be modified
155 */
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700156static void pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600158 struct pci_dev *pdev = ctrl_dev(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 u16 slot_status;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700160 u16 slot_ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800162 mutex_lock(&ctrl->ctrl_lock);
163
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700164 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900165 if (slot_status & PCI_EXP_SLTSTA_CC) {
Kenji Kaneshige58086392008-05-27 19:04:30 +0900166 if (!ctrl->no_cmd_complete) {
167 /*
168 * After 1 sec and CMD_COMPLETED still not set, just
169 * proceed forward to issue the next command according
170 * to spec. Just print out the error message.
171 */
Taku Izumi18b341b2008-10-23 11:47:32 +0900172 ctrl_dbg(ctrl, "CMD_COMPLETED not clear after 1 sec\n");
Kenji Kaneshige58086392008-05-27 19:04:30 +0900173 } else if (!NO_CMD_CMPL(ctrl)) {
174 /*
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700175 * This controller seems to notify of command completed
Kenji Kaneshige58086392008-05-27 19:04:30 +0900176 * event even though it supports none of power
177 * controller, attention led, power led and EMI.
178 */
Taku Izumi18b341b2008-10-23 11:47:32 +0900179 ctrl_dbg(ctrl, "Unexpected CMD_COMPLETED. Need to "
180 "wait for command completed event.\n");
Kenji Kaneshige58086392008-05-27 19:04:30 +0900181 ctrl->no_cmd_complete = 0;
182 } else {
Taku Izumi18b341b2008-10-23 11:47:32 +0900183 ctrl_dbg(ctrl, "Unexpected CMD_COMPLETED. Maybe "
184 "the controller is broken.\n");
Kenji Kaneshige58086392008-05-27 19:04:30 +0900185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700188 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700189 slot_ctrl &= ~mask;
Kenji Kaneshigeb7aa1f12008-04-25 14:39:14 -0700190 slot_ctrl |= (cmd & mask);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700191 ctrl->cmd_busy = 1;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700192 smp_mb();
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700193 pcie_capability_write_word(pdev, PCI_EXP_SLTCTL, slot_ctrl);
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700194
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800195 /*
196 * Wait for command completion.
197 */
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700198 if (!ctrl->no_cmd_complete) {
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900199 int poll = 0;
200 /*
201 * if hotplug interrupt is not enabled or command
202 * completed interrupt is not enabled, we need to poll
203 * command completed event.
204 */
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900205 if (!(slot_ctrl & PCI_EXP_SLTCTL_HPIE) ||
206 !(slot_ctrl & PCI_EXP_SLTCTL_CCIE))
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900207 poll = 1;
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900208 pcie_wait_cmd(ctrl, poll);
Kenji Kaneshige6592e022008-05-27 19:05:26 +0900209 }
Kenji Kaneshige44ef4ce2006-12-21 17:01:09 -0800210 mutex_unlock(&ctrl->ctrl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Yinghai Lu4e2ce402012-01-27 10:55:12 -0800213static bool check_link_active(struct controller *ctrl)
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900214{
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600215 struct pci_dev *pdev = ctrl_dev(ctrl);
Yinghai Lu4e2ce402012-01-27 10:55:12 -0800216 u16 lnk_status;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700217 bool ret;
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900218
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700219 pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
Yinghai Lu4e2ce402012-01-27 10:55:12 -0800220 ret = !!(lnk_status & PCI_EXP_LNKSTA_DLLLA);
221
222 if (ret)
223 ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
224
225 return ret;
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900226}
227
Yinghai Lubffe4f72012-01-27 10:55:13 -0800228static void __pcie_wait_link_active(struct controller *ctrl, bool active)
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900229{
230 int timeout = 1000;
231
Yinghai Lubffe4f72012-01-27 10:55:13 -0800232 if (check_link_active(ctrl) == active)
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900233 return;
234 while (timeout > 0) {
235 msleep(10);
236 timeout -= 10;
Yinghai Lubffe4f72012-01-27 10:55:13 -0800237 if (check_link_active(ctrl) == active)
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900238 return;
239 }
Yinghai Lubffe4f72012-01-27 10:55:13 -0800240 ctrl_dbg(ctrl, "Data Link Layer Link Active not %s in 1000 msec\n",
241 active ? "set" : "cleared");
242}
243
244static void pcie_wait_link_active(struct controller *ctrl)
245{
246 __pcie_wait_link_active(ctrl, true);
247}
248
249static void pcie_wait_link_not_active(struct controller *ctrl)
250{
251 __pcie_wait_link_active(ctrl, false);
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900252}
253
Yinghai Lu2f5d8e42012-01-27 10:55:11 -0800254static bool pci_bus_check_dev(struct pci_bus *bus, int devfn)
255{
256 u32 l;
257 int count = 0;
258 int delay = 1000, step = 20;
259 bool found = false;
260
261 do {
262 found = pci_bus_read_dev_vendor_id(bus, devfn, &l, 0);
263 count++;
264
265 if (found)
266 break;
267
268 msleep(step);
269 delay -= step;
270 } while (delay > 0);
271
272 if (count > 1 && pciehp_debug)
273 printk(KERN_DEBUG "pci %04x:%02x:%02x.%d id reading try %d times with interval %d ms to get %08x\n",
274 pci_domain_nr(bus), bus->number, PCI_SLOT(devfn),
275 PCI_FUNC(devfn), count, step, l);
276
277 return found;
278}
279
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900280int pciehp_check_link_status(struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600282 struct pci_dev *pdev = ctrl_dev(ctrl);
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700283 bool found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 u16 lnk_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900286 /*
287 * Data Link Layer Link Active Reporting must be capable for
288 * hot-plug capable downstream port. But old controller might
289 * not implement it. In this case, we wait for 1000 ms.
290 */
Kenji Kaneshige0cab0842011-07-11 10:15:45 +0900291 if (ctrl->link_active_reporting)
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900292 pcie_wait_link_active(ctrl);
Kenji Kaneshige0cab0842011-07-11 10:15:45 +0900293 else
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900294 msleep(1000);
295
Yinghai Lu2f5d8e42012-01-27 10:55:11 -0800296 /* wait 100ms before read pci conf, and try in 1s */
297 msleep(100);
298 found = pci_bus_check_dev(ctrl->pcie->port->subordinate,
299 PCI_DEVFN(0, 0));
Kenji Kaneshige0027cb32011-11-10 16:40:37 +0900300
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700301 pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900302 ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900303 if ((lnk_status & PCI_EXP_LNKSTA_LT) ||
304 !(lnk_status & PCI_EXP_LNKSTA_NLW)) {
Taku Izumi18b341b2008-10-23 11:47:32 +0900305 ctrl_err(ctrl, "Link Training Error occurs \n");
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700306 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
308
Yinghai Lufdbd3ce2011-11-07 07:53:23 -0800309 pcie_update_link_speed(ctrl->pcie->port->subordinate, lnk_status);
310
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700311 if (!found)
312 return -1;
Yinghai Lu2f5d8e42012-01-27 10:55:11 -0800313
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700314 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
Yinghai Lu7f822992012-01-27 10:55:14 -0800317static int __pciehp_link_set(struct controller *ctrl, bool enable)
318{
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600319 struct pci_dev *pdev = ctrl_dev(ctrl);
Yinghai Lu7f822992012-01-27 10:55:14 -0800320 u16 lnk_ctrl;
Yinghai Lu7f822992012-01-27 10:55:14 -0800321
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700322 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &lnk_ctrl);
Yinghai Lu7f822992012-01-27 10:55:14 -0800323
324 if (enable)
325 lnk_ctrl &= ~PCI_EXP_LNKCTL_LD;
326 else
327 lnk_ctrl |= PCI_EXP_LNKCTL_LD;
328
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700329 pcie_capability_write_word(pdev, PCI_EXP_LNKCTL, lnk_ctrl);
Yinghai Lu7f822992012-01-27 10:55:14 -0800330 ctrl_dbg(ctrl, "%s: lnk_ctrl = %x\n", __func__, lnk_ctrl);
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700331 return 0;
Yinghai Lu7f822992012-01-27 10:55:14 -0800332}
333
334static int pciehp_link_enable(struct controller *ctrl)
335{
336 return __pciehp_link_set(ctrl, true);
337}
338
339static int pciehp_link_disable(struct controller *ctrl)
340{
341 return __pciehp_link_set(ctrl, false);
342}
343
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700344void pciehp_get_attention_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800346 struct controller *ctrl = slot->ctrl;
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600347 struct pci_dev *pdev = ctrl_dev(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 u16 slot_ctrl;
349 u8 atten_led_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700351 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900352 ctrl_dbg(ctrl, "%s: SLOTCTRL %x, value read %x\n", __func__,
353 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900355 atten_led_state = (slot_ctrl & PCI_EXP_SLTCTL_AIC) >> 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 switch (atten_led_state) {
358 case 0:
359 *status = 0xFF; /* Reserved */
360 break;
361 case 1:
362 *status = 1; /* On */
363 break;
364 case 2:
365 *status = 2; /* Blink */
366 break;
367 case 3:
368 *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;
381 u8 pwr_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700383 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900384 ctrl_dbg(ctrl, "%s: SLOTCTRL %x value read %x\n", __func__,
385 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900387 pwr_state = (slot_ctrl & PCI_EXP_SLTCTL_PCC) >> 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 switch (pwr_state) {
390 case 0:
391 *status = 1;
392 break;
393 case 1:
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700394 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 break;
396 default:
397 *status = 0xFF;
398 break;
399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700402void pciehp_get_latch_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700404 struct pci_dev *pdev = ctrl_dev(slot->ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700407 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900408 *status = !!(slot_status & PCI_EXP_SLTSTA_MRLSS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409}
410
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700411void pciehp_get_adapter_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412{
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700413 struct pci_dev *pdev = ctrl_dev(slot->ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700416 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900417 *status = !!(slot_status & PCI_EXP_SLTSTA_PDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900420int pciehp_query_power_fault(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700422 struct pci_dev *pdev = ctrl_dev(slot->ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700425 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900426 return !!(slot_status & PCI_EXP_SLTSTA_PFD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700429void pciehp_set_attention_status(struct slot *slot, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800431 struct controller *ctrl = slot->ctrl;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700432 u16 slot_cmd;
433 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900435 cmd_mask = PCI_EXP_SLTCTL_AIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 switch (value) {
Kenji Kaneshige445f7982009-10-05 17:42:59 +0900437 case 0 : /* turn off */
438 slot_cmd = 0x00C0;
439 break;
440 case 1: /* turn on */
441 slot_cmd = 0x0040;
442 break;
443 case 2: /* turn blink */
444 slot_cmd = 0x0080;
445 break;
446 default:
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700447 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900449 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
450 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700451 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900454void pciehp_green_led_on(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800456 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700458 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700459
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700460 slot_cmd = 0x0100;
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900461 cmd_mask = PCI_EXP_SLTCTL_PIC;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700462 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900463 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
464 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900467void pciehp_green_led_off(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800469 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700471 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700473 slot_cmd = 0x0300;
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900474 cmd_mask = PCI_EXP_SLTCTL_PIC;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700475 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900476 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
477 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700484 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700485
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700486 slot_cmd = 0x0200;
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900487 cmd_mask = PCI_EXP_SLTCTL_PIC;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700488 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900489 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
490 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
492
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900493int pciehp_power_on_slot(struct slot * slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800495 struct controller *ctrl = slot->ctrl;
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600496 struct pci_dev *pdev = ctrl_dev(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700498 u16 cmd_mask;
499 u16 slot_status;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700500 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Rajesh Shah5a49f202005-11-23 15:44:54 -0800502 /* Clear sticky power-fault bit from previous power failures */
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700503 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
Bjorn Helgaas2f2ed41c2013-12-14 13:06:40 -0700504 if (slot_status & PCI_EXP_SLTSTA_PFD)
505 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
506 PCI_EXP_SLTSTA_PFD);
Kenji Kaneshige5651c482009-11-13 15:14:10 +0900507 ctrl->power_fault_detected = 0;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800508
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700509 slot_cmd = POWER_ON;
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900510 cmd_mask = PCI_EXP_SLTCTL_PCC;
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700511 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900512 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
513 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Yinghai Lu2debd922012-01-27 10:55:15 -0800515 retval = pciehp_link_enable(ctrl);
516 if (retval)
517 ctrl_err(ctrl, "%s: Can not enable the link!\n", __func__);
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return retval;
520}
521
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700522void pciehp_power_off_slot(struct slot * slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800524 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700526 u16 cmd_mask;
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900527
Yinghai Lu2debd922012-01-27 10:55:15 -0800528 /* Disable the link at first */
529 pciehp_link_disable(ctrl);
530 /* wait the link is down */
531 if (ctrl->link_active_reporting)
532 pcie_wait_link_not_active(ctrl);
533 else
534 msleep(1000);
535
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700536 slot_cmd = POWER_OFF;
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900537 cmd_mask = PCI_EXP_SLTCTL_PCC;
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700538 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900539 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
540 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800543static irqreturn_t pcie_isr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800545 struct controller *ctrl = (struct controller *)dev_id;
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600546 struct pci_dev *pdev = ctrl_dev(ctrl);
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900547 struct slot *slot = ctrl->slot;
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700548 u16 detected, intr_loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700550 /*
551 * In order to guarantee that all interrupt events are
552 * serviced, we need to re-inspect Slot Status register after
553 * clearing what is presumed to be the last pending interrupt.
554 */
555 intr_loc = 0;
556 do {
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700557 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &detected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900559 detected &= (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
560 PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
561 PCI_EXP_SLTSTA_CC);
Kenji Kaneshige81b840c2009-02-03 15:06:13 +0900562 detected &= ~intr_loc;
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700563 intr_loc |= detected;
564 if (!intr_loc)
565 return IRQ_NONE;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700566 if (detected)
567 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
568 intr_loc);
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700569 } while (detected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Taku Izumi7f2feec2008-09-05 12:11:26 +0900571 ctrl_dbg(ctrl, "%s: intr_loc %x\n", __func__, intr_loc);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700572
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700573 /* Check Command Complete Interrupt Pending */
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900574 if (intr_loc & PCI_EXP_SLTSTA_CC) {
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800575 ctrl->cmd_busy = 0;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700576 smp_mb();
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900577 wake_up(&ctrl->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900580 if (!(intr_loc & ~PCI_EXP_SLTSTA_CC))
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900581 return IRQ_HANDLED;
582
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700583 /* Check MRL Sensor Changed */
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900584 if (intr_loc & PCI_EXP_SLTSTA_MRLSC)
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900585 pciehp_handle_switch_change(slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800586
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700587 /* Check Attention Button Pressed */
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900588 if (intr_loc & PCI_EXP_SLTSTA_ABP)
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900589 pciehp_handle_attention_button(slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800590
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700591 /* Check Presence Detect Changed */
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900592 if (intr_loc & PCI_EXP_SLTSTA_PDC)
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900593 pciehp_handle_presence_change(slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800594
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700595 /* Check Power Fault Detected */
Kenji Kaneshige99f01692009-02-03 15:06:16 +0900596 if ((intr_loc & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) {
597 ctrl->power_fault_detected = 1;
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900598 pciehp_handle_power_fault(slot);
Kenji Kaneshige99f01692009-02-03 15:06:16 +0900599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return IRQ_HANDLED;
601}
602
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700603void pcie_enable_notification(struct controller *ctrl)
Mark Lordecdde932007-11-21 15:07:55 -0800604{
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700605 u16 cmd, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Kenji Kaneshige5651c482009-11-13 15:14:10 +0900607 /*
608 * TBD: Power fault detected software notification support.
609 *
610 * Power fault detected software notification is not enabled
611 * now, because it caused power fault detected interrupt storm
612 * on some machines. On those machines, power fault detected
613 * bit in the slot status register was set again immediately
614 * when it is cleared in the interrupt service routine, and
615 * next power fault detected interrupt was notified again.
616 */
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900617 cmd = PCI_EXP_SLTCTL_PDCE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -0700618 if (ATTN_BUTTN(ctrl))
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900619 cmd |= PCI_EXP_SLTCTL_ABPE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -0700620 if (MRL_SENS(ctrl))
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900621 cmd |= PCI_EXP_SLTCTL_MRLSCE;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700622 if (!pciehp_poll_mode)
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900623 cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700624
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900625 mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
626 PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
627 PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE);
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700628
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700629 pcie_write_cmd(ctrl, cmd, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
Mark Lord08e7a7d2007-11-28 15:11:46 -0800631
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900632static void pcie_disable_notification(struct controller *ctrl)
633{
634 u16 mask;
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700635
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900636 mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
637 PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
Kenji Kaneshigef22daf12009-10-05 17:40:02 +0900638 PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
639 PCI_EXP_SLTCTL_DLLSCE);
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700640 pcie_write_cmd(ctrl, 0, mask);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900641}
642
Alex Williamson2e35afa2013-08-08 14:09:37 -0600643/*
644 * pciehp has a 1:1 bus:slot relationship so we ultimately want a secondary
645 * bus reset of the bridge, but if the slot supports surprise removal we need
646 * to disable presence detection around the bus reset and clear any spurious
647 * events after.
648 */
649int pciehp_reset_slot(struct slot *slot, int probe)
650{
651 struct controller *ctrl = slot->ctrl;
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600652 struct pci_dev *pdev = ctrl_dev(ctrl);
Alex Williamson2e35afa2013-08-08 14:09:37 -0600653
654 if (probe)
655 return 0;
656
657 if (HP_SUPR_RM(ctrl)) {
658 pcie_write_cmd(ctrl, 0, PCI_EXP_SLTCTL_PDCE);
659 if (pciehp_poll_mode)
660 del_timer_sync(&ctrl->poll_timer);
661 }
662
663 pci_reset_bridge_secondary_bus(ctrl->pcie->port);
664
665 if (HP_SUPR_RM(ctrl)) {
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600666 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
667 PCI_EXP_SLTSTA_PDC);
Alex Williamson2e35afa2013-08-08 14:09:37 -0600668 pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PDCE, PCI_EXP_SLTCTL_PDCE);
669 if (pciehp_poll_mode)
670 int_poll_timeout(ctrl->poll_timer.data);
671 }
672
673 return 0;
674}
675
Eric W. Biedermandbc7e1e2009-01-28 19:31:18 -0800676int pcie_init_notification(struct controller *ctrl)
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900677{
678 if (pciehp_request_irq(ctrl))
679 return -1;
Bjorn Helgaas6dae6202013-12-14 13:06:16 -0700680 pcie_enable_notification(ctrl);
Eric W. Biedermandbc7e1e2009-01-28 19:31:18 -0800681 ctrl->notification_enabled = 1;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900682 return 0;
683}
684
685static void pcie_shutdown_notification(struct controller *ctrl)
686{
Eric W. Biedermandbc7e1e2009-01-28 19:31:18 -0800687 if (ctrl->notification_enabled) {
688 pcie_disable_notification(ctrl);
689 pciehp_free_irq(ctrl);
690 ctrl->notification_enabled = 0;
691 }
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900692}
693
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900694static int pcie_init_slot(struct controller *ctrl)
695{
696 struct slot *slot;
697
698 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
699 if (!slot)
700 return -ENOMEM;
701
Kees Cookd8537542013-07-03 15:04:57 -0700702 slot->wq = alloc_workqueue("pciehp-%u", 0, 0, PSN(ctrl));
Yijing Wangc2be6f92013-01-11 10:15:54 +0800703 if (!slot->wq)
704 goto abort;
705
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900706 slot->ctrl = ctrl;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900707 mutex_init(&slot->lock);
708 INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900709 ctrl->slot = slot;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900710 return 0;
Yijing Wangc2be6f92013-01-11 10:15:54 +0800711abort:
712 kfree(slot);
713 return -ENOMEM;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900714}
715
716static void pcie_cleanup_slot(struct controller *ctrl)
717{
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900718 struct slot *slot = ctrl->slot;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900719 cancel_delayed_work(&slot->work);
Yijing Wangc2be6f92013-01-11 10:15:54 +0800720 destroy_workqueue(slot->wq);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900721 kfree(slot);
722}
723
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700724static inline void dbg_ctrl(struct controller *ctrl)
725{
726 int i;
727 u16 reg16;
Kenji Kaneshige385e2492009-09-15 17:30:14 +0900728 struct pci_dev *pdev = ctrl->pcie->port;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700729
730 if (!pciehp_debug)
731 return;
732
Taku Izumi7f2feec2008-09-05 12:11:26 +0900733 ctrl_info(ctrl, "Hotplug Controller:\n");
734 ctrl_info(ctrl, " Seg/Bus/Dev/Func/IRQ : %s IRQ %d\n",
735 pci_name(pdev), pdev->irq);
736 ctrl_info(ctrl, " Vendor ID : 0x%04x\n", pdev->vendor);
737 ctrl_info(ctrl, " Device ID : 0x%04x\n", pdev->device);
738 ctrl_info(ctrl, " Subsystem ID : 0x%04x\n",
739 pdev->subsystem_device);
740 ctrl_info(ctrl, " Subsystem Vendor ID : 0x%04x\n",
741 pdev->subsystem_vendor);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900742 ctrl_info(ctrl, " PCIe Cap offset : 0x%02x\n",
743 pci_pcie_cap(pdev));
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700744 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
745 if (!pci_resource_len(pdev, i))
746 continue;
Bjorn Helgaase1944c62010-03-16 15:53:08 -0600747 ctrl_info(ctrl, " PCI resource [%d] : %pR\n",
748 i, &pdev->resource[i]);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700749 }
Taku Izumi7f2feec2008-09-05 12:11:26 +0900750 ctrl_info(ctrl, "Slot Capabilities : 0x%08x\n", ctrl->slot_cap);
Kenji Kaneshiged54798f2009-09-15 17:28:53 +0900751 ctrl_info(ctrl, " Physical Slot Number : %d\n", PSN(ctrl));
Taku Izumi7f2feec2008-09-05 12:11:26 +0900752 ctrl_info(ctrl, " Attention Button : %3s\n",
753 ATTN_BUTTN(ctrl) ? "yes" : "no");
754 ctrl_info(ctrl, " Power Controller : %3s\n",
755 POWER_CTRL(ctrl) ? "yes" : "no");
756 ctrl_info(ctrl, " MRL Sensor : %3s\n",
757 MRL_SENS(ctrl) ? "yes" : "no");
758 ctrl_info(ctrl, " Attention Indicator : %3s\n",
759 ATTN_LED(ctrl) ? "yes" : "no");
760 ctrl_info(ctrl, " Power Indicator : %3s\n",
761 PWR_LED(ctrl) ? "yes" : "no");
762 ctrl_info(ctrl, " Hot-Plug Surprise : %3s\n",
763 HP_SUPR_RM(ctrl) ? "yes" : "no");
764 ctrl_info(ctrl, " EMI Present : %3s\n",
765 EMI(ctrl) ? "yes" : "no");
766 ctrl_info(ctrl, " Command Completed : %3s\n",
767 NO_CMD_CMPL(ctrl) ? "no" : "yes");
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600768 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &reg16);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900769 ctrl_info(ctrl, "Slot Status : 0x%04x\n", reg16);
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600770 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &reg16);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900771 ctrl_info(ctrl, "Slot Control : 0x%04x\n", reg16);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700772}
773
Bjorn Helgaasafe24782013-12-14 13:06:36 -0700774#define FLAG(x,y) (((x) & (y)) ? '+' : '-')
775
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900776struct controller *pcie_init(struct pcie_device *dev)
Mark Lord08e7a7d2007-11-28 15:11:46 -0800777{
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900778 struct controller *ctrl;
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900779 u32 slot_cap, link_cap;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700780 struct pci_dev *pdev = dev->port;
Mark Lord08e7a7d2007-11-28 15:11:46 -0800781
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900782 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
783 if (!ctrl) {
Taku Izumi18b341b2008-10-23 11:47:32 +0900784 dev_err(&dev->device, "%s: Out of memory\n", __func__);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900785 goto abort;
786 }
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +0900787 ctrl->pcie = dev;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700788 pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &slot_cap);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700789 ctrl->slot_cap = slot_cap;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700790 mutex_init(&ctrl->ctrl_lock);
791 init_waitqueue_head(&ctrl->queue);
792 dbg_ctrl(ctrl);
Kenji Kaneshige58086392008-05-27 19:04:30 +0900793 /*
794 * Controller doesn't notify of command completion if the "No
795 * Command Completed Support" bit is set in Slot Capability
796 * register or the controller supports none of power
797 * controller, attention led, power led and EMI.
798 */
799 if (NO_CMD_CMPL(ctrl) ||
800 !(POWER_CTRL(ctrl) | ATTN_LED(ctrl) | PWR_LED(ctrl) | EMI(ctrl)))
801 ctrl->no_cmd_complete = 1;
Mark Lord08e7a7d2007-11-28 15:11:46 -0800802
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900803 /* Check if Data Link Layer Link Active Reporting is implemented */
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700804 pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &link_cap);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900805 if (link_cap & PCI_EXP_LNKCAP_DLLLARC) {
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900806 ctrl_dbg(ctrl, "Link Active Reporting supported\n");
807 ctrl->link_active_reporting = 1;
808 }
809
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900810 /* Clear all remaining event bits in Slot Status register */
Bjorn Helgaasdf726482013-12-14 13:06:47 -0700811 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
812 PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
813 PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
814 PCI_EXP_SLTSTA_CC);
Mark Lord08e7a7d2007-11-28 15:11:46 -0800815
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700816 /* Disable software notification */
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900817 pcie_disable_notification(ctrl);
Mark Lordecdde932007-11-21 15:07:55 -0800818
Bjorn Helgaasafe24782013-12-14 13:06:36 -0700819 ctrl_info(ctrl, "Slot #%d AttnBtn%c AttnInd%c PwrInd%c PwrCtrl%c MRL%c Interlock%c NoCompl%c LLActRep%c\n",
820 (slot_cap & PCI_EXP_SLTCAP_PSN) >> 19,
821 FLAG(slot_cap, PCI_EXP_SLTCAP_ABP),
822 FLAG(slot_cap, PCI_EXP_SLTCAP_AIP),
823 FLAG(slot_cap, PCI_EXP_SLTCAP_PIP),
824 FLAG(slot_cap, PCI_EXP_SLTCAP_PCP),
825 FLAG(slot_cap, PCI_EXP_SLTCAP_MRLSP),
826 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}