blob: 6afdd23582273dd4abf093b5c236d9daa7b8533e [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 */
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700156static int 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);
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700211 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
Yinghai Lu4e2ce402012-01-27 10:55:12 -0800214static bool check_link_active(struct controller *ctrl)
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900215{
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600216 struct pci_dev *pdev = ctrl_dev(ctrl);
Yinghai Lu4e2ce402012-01-27 10:55:12 -0800217 u16 lnk_status;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700218 bool ret;
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900219
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700220 pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
Yinghai Lu4e2ce402012-01-27 10:55:12 -0800221 ret = !!(lnk_status & PCI_EXP_LNKSTA_DLLLA);
222
223 if (ret)
224 ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
225
226 return ret;
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900227}
228
Yinghai Lubffe4f72012-01-27 10:55:13 -0800229static void __pcie_wait_link_active(struct controller *ctrl, bool active)
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900230{
231 int timeout = 1000;
232
Yinghai Lubffe4f72012-01-27 10:55:13 -0800233 if (check_link_active(ctrl) == active)
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900234 return;
235 while (timeout > 0) {
236 msleep(10);
237 timeout -= 10;
Yinghai Lubffe4f72012-01-27 10:55:13 -0800238 if (check_link_active(ctrl) == active)
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900239 return;
240 }
Yinghai Lubffe4f72012-01-27 10:55:13 -0800241 ctrl_dbg(ctrl, "Data Link Layer Link Active not %s in 1000 msec\n",
242 active ? "set" : "cleared");
243}
244
245static void pcie_wait_link_active(struct controller *ctrl)
246{
247 __pcie_wait_link_active(ctrl, true);
248}
249
250static void pcie_wait_link_not_active(struct controller *ctrl)
251{
252 __pcie_wait_link_active(ctrl, false);
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900253}
254
Yinghai Lu2f5d8e42012-01-27 10:55:11 -0800255static bool pci_bus_check_dev(struct pci_bus *bus, int devfn)
256{
257 u32 l;
258 int count = 0;
259 int delay = 1000, step = 20;
260 bool found = false;
261
262 do {
263 found = pci_bus_read_dev_vendor_id(bus, devfn, &l, 0);
264 count++;
265
266 if (found)
267 break;
268
269 msleep(step);
270 delay -= step;
271 } while (delay > 0);
272
273 if (count > 1 && pciehp_debug)
274 printk(KERN_DEBUG "pci %04x:%02x:%02x.%d id reading try %d times with interval %d ms to get %08x\n",
275 pci_domain_nr(bus), bus->number, PCI_SLOT(devfn),
276 PCI_FUNC(devfn), count, step, l);
277
278 return found;
279}
280
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900281int pciehp_check_link_status(struct controller *ctrl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600283 struct pci_dev *pdev = ctrl_dev(ctrl);
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700284 bool found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 u16 lnk_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900287 /*
288 * Data Link Layer Link Active Reporting must be capable for
289 * hot-plug capable downstream port. But old controller might
290 * not implement it. In this case, we wait for 1000 ms.
291 */
Kenji Kaneshige0cab0842011-07-11 10:15:45 +0900292 if (ctrl->link_active_reporting)
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900293 pcie_wait_link_active(ctrl);
Kenji Kaneshige0cab0842011-07-11 10:15:45 +0900294 else
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900295 msleep(1000);
296
Yinghai Lu2f5d8e42012-01-27 10:55:11 -0800297 /* wait 100ms before read pci conf, and try in 1s */
298 msleep(100);
299 found = pci_bus_check_dev(ctrl->pcie->port->subordinate,
300 PCI_DEVFN(0, 0));
Kenji Kaneshige0027cb32011-11-10 16:40:37 +0900301
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700302 pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900303 ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900304 if ((lnk_status & PCI_EXP_LNKSTA_LT) ||
305 !(lnk_status & PCI_EXP_LNKSTA_NLW)) {
Taku Izumi18b341b2008-10-23 11:47:32 +0900306 ctrl_err(ctrl, "Link Training Error occurs \n");
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700307 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
309
Yinghai Lufdbd3ce2011-11-07 07:53:23 -0800310 pcie_update_link_speed(ctrl->pcie->port->subordinate, lnk_status);
311
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700312 if (!found)
313 return -1;
Yinghai Lu2f5d8e42012-01-27 10:55:11 -0800314
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700315 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
Yinghai Lu7f822992012-01-27 10:55:14 -0800318static int __pciehp_link_set(struct controller *ctrl, bool enable)
319{
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600320 struct pci_dev *pdev = ctrl_dev(ctrl);
Yinghai Lu7f822992012-01-27 10:55:14 -0800321 u16 lnk_ctrl;
Yinghai Lu7f822992012-01-27 10:55:14 -0800322
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700323 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &lnk_ctrl);
Yinghai Lu7f822992012-01-27 10:55:14 -0800324
325 if (enable)
326 lnk_ctrl &= ~PCI_EXP_LNKCTL_LD;
327 else
328 lnk_ctrl |= PCI_EXP_LNKCTL_LD;
329
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700330 pcie_capability_write_word(pdev, PCI_EXP_LNKCTL, lnk_ctrl);
Yinghai Lu7f822992012-01-27 10:55:14 -0800331 ctrl_dbg(ctrl, "%s: lnk_ctrl = %x\n", __func__, lnk_ctrl);
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700332 return 0;
Yinghai Lu7f822992012-01-27 10:55:14 -0800333}
334
335static int pciehp_link_enable(struct controller *ctrl)
336{
337 return __pciehp_link_set(ctrl, true);
338}
339
340static int pciehp_link_disable(struct controller *ctrl)
341{
342 return __pciehp_link_set(ctrl, false);
343}
344
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900345int pciehp_get_attention_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800347 struct controller *ctrl = slot->ctrl;
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600348 struct pci_dev *pdev = ctrl_dev(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 u16 slot_ctrl;
350 u8 atten_led_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700352 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900353 ctrl_dbg(ctrl, "%s: SLOTCTRL %x, value read %x\n", __func__,
354 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900356 atten_led_state = (slot_ctrl & PCI_EXP_SLTCTL_AIC) >> 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 switch (atten_led_state) {
359 case 0:
360 *status = 0xFF; /* Reserved */
361 break;
362 case 1:
363 *status = 1; /* On */
364 break;
365 case 2:
366 *status = 2; /* Blink */
367 break;
368 case 3:
369 *status = 0; /* Off */
370 break;
371 default:
372 *status = 0xFF;
373 break;
374 }
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
377}
378
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900379int pciehp_get_power_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800381 struct controller *ctrl = slot->ctrl;
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600382 struct pci_dev *pdev = ctrl_dev(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 u16 slot_ctrl;
384 u8 pwr_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700386 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900387 ctrl_dbg(ctrl, "%s: SLOTCTRL %x value read %x\n", __func__,
388 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900390 pwr_state = (slot_ctrl & PCI_EXP_SLTCTL_PCC) >> 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 switch (pwr_state) {
393 case 0:
394 *status = 1;
395 break;
396 case 1:
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700397 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 break;
399 default:
400 *status = 0xFF;
401 break;
402 }
403
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700404 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}
406
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900407int pciehp_get_latch_status(struct slot *slot, u8 *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700409 struct pci_dev *pdev = ctrl_dev(slot->ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700412 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900413 *status = !!(slot_status & PCI_EXP_SLTSTA_MRLSS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return 0;
415}
416
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900417int pciehp_get_adapter_status(struct slot *slot, u8 *status)
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 *status = !!(slot_status & PCI_EXP_SLTSTA_PDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return 0;
425}
426
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900427int pciehp_query_power_fault(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700429 struct pci_dev *pdev = ctrl_dev(slot->ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 u16 slot_status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700432 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900433 return !!(slot_status & PCI_EXP_SLTSTA_PFD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900436int pciehp_set_attention_status(struct slot *slot, u8 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800438 struct controller *ctrl = slot->ctrl;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700439 u16 slot_cmd;
440 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900442 cmd_mask = PCI_EXP_SLTCTL_AIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 switch (value) {
Kenji Kaneshige445f7982009-10-05 17:42:59 +0900444 case 0 : /* turn off */
445 slot_cmd = 0x00C0;
446 break;
447 case 1: /* turn on */
448 slot_cmd = 0x0040;
449 break;
450 case 2: /* turn blink */
451 slot_cmd = 0x0080;
452 break;
453 default:
454 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900456 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
457 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
Kenji Kaneshige445f7982009-10-05 17:42:59 +0900458 return pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900461void pciehp_green_led_on(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800463 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700465 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700466
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700467 slot_cmd = 0x0100;
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900468 cmd_mask = PCI_EXP_SLTCTL_PIC;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700469 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900470 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
471 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900474void pciehp_green_led_off(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800476 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700478 u16 cmd_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700480 slot_cmd = 0x0300;
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900481 cmd_mask = PCI_EXP_SLTCTL_PIC;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700482 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900483 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
484 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900487void pciehp_green_led_blink(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800489 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700491 u16 cmd_mask;
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700492
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700493 slot_cmd = 0x0200;
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900494 cmd_mask = PCI_EXP_SLTCTL_PIC;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700495 pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900496 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
497 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900500int pciehp_power_on_slot(struct slot * slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800502 struct controller *ctrl = slot->ctrl;
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600503 struct pci_dev *pdev = ctrl_dev(ctrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700505 u16 cmd_mask;
506 u16 slot_status;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700507 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Rajesh Shah5a49f202005-11-23 15:44:54 -0800509 /* Clear sticky power-fault bit from previous power failures */
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700510 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900511 slot_status &= PCI_EXP_SLTSTA_PFD;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700512 if (slot_status)
513 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, slot_status);
Kenji Kaneshige5651c48c2009-11-13 15:14:10 +0900514 ctrl->power_fault_detected = 0;
Kenji Kaneshigea0f018d2006-12-21 17:01:06 -0800515
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700516 slot_cmd = POWER_ON;
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900517 cmd_mask = PCI_EXP_SLTCTL_PCC;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700518 retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (retval) {
Taku Izumi18b341b2008-10-23 11:47:32 +0900520 ctrl_err(ctrl, "Write %x command failed!\n", slot_cmd);
Kenji Kaneshige99f01692009-02-03 15:06:16 +0900521 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900523 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
524 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Yinghai Lu2debd922012-01-27 10:55:15 -0800526 retval = pciehp_link_enable(ctrl);
527 if (retval)
528 ctrl_err(ctrl, "%s: Can not enable the link!\n", __func__);
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return retval;
531}
532
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900533int pciehp_power_off_slot(struct slot * slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800535 struct controller *ctrl = slot->ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 u16 slot_cmd;
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700537 u16 cmd_mask;
Kenji Kaneshige3c3a1b12009-10-05 17:40:48 +0900538 int retval;
Kenji Kaneshigef1050a32007-12-20 19:45:09 +0900539
Yinghai Lu2debd922012-01-27 10:55:15 -0800540 /* Disable the link at first */
541 pciehp_link_disable(ctrl);
542 /* wait the link is down */
543 if (ctrl->link_active_reporting)
544 pcie_wait_link_not_active(ctrl);
545 else
546 msleep(1000);
547
Kenji Kaneshigef4778362007-05-31 09:43:34 -0700548 slot_cmd = POWER_OFF;
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900549 cmd_mask = PCI_EXP_SLTCTL_PCC;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700550 retval = pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (retval) {
Taku Izumi18b341b2008-10-23 11:47:32 +0900552 ctrl_err(ctrl, "Write command failed!\n");
Kenji Kaneshige3c3a1b12009-10-05 17:40:48 +0900553 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900555 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
556 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
Kenji Kaneshige3c3a1b12009-10-05 17:40:48 +0900557 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800560static irqreturn_t pcie_isr(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800562 struct controller *ctrl = (struct controller *)dev_id;
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600563 struct pci_dev *pdev = ctrl_dev(ctrl);
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900564 struct slot *slot = ctrl->slot;
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700565 u16 detected, intr_loc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700567 /*
568 * In order to guarantee that all interrupt events are
569 * serviced, we need to re-inspect Slot Status register after
570 * clearing what is presumed to be the last pending interrupt.
571 */
572 intr_loc = 0;
573 do {
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700574 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &detected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900576 detected &= (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
577 PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
578 PCI_EXP_SLTSTA_CC);
Kenji Kaneshige81b840c2009-02-03 15:06:13 +0900579 detected &= ~intr_loc;
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700580 intr_loc |= detected;
581 if (!intr_loc)
582 return IRQ_NONE;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700583 if (detected)
584 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
585 intr_loc);
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700586 } while (detected);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Taku Izumi7f2feec2008-09-05 12:11:26 +0900588 ctrl_dbg(ctrl, "%s: intr_loc %x\n", __func__, intr_loc);
Kenji Kaneshige71ad5562007-08-09 16:09:34 -0700589
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700590 /* Check Command Complete Interrupt Pending */
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900591 if (intr_loc & PCI_EXP_SLTSTA_CC) {
Kenji Kaneshige262303fe2006-12-21 17:01:10 -0800592 ctrl->cmd_busy = 0;
Kenji Kaneshige2d32a9a2008-04-25 14:39:02 -0700593 smp_mb();
Kenji Kaneshiged737bdc2008-05-28 14:59:44 +0900594 wake_up(&ctrl->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900597 if (!(intr_loc & ~PCI_EXP_SLTSTA_CC))
Kenji Kaneshigedbd79ae2008-05-27 19:03:16 +0900598 return IRQ_HANDLED;
599
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700600 /* Check MRL Sensor Changed */
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900601 if (intr_loc & PCI_EXP_SLTSTA_MRLSC)
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900602 pciehp_handle_switch_change(slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800603
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700604 /* Check Attention Button Pressed */
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900605 if (intr_loc & PCI_EXP_SLTSTA_ABP)
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900606 pciehp_handle_attention_button(slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800607
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700608 /* Check Presence Detect Changed */
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900609 if (intr_loc & PCI_EXP_SLTSTA_PDC)
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900610 pciehp_handle_presence_change(slot);
Kenji Kaneshige48fe3912006-12-21 17:01:04 -0800611
Kenji Kaneshigec6b069e2008-04-25 14:38:57 -0700612 /* Check Power Fault Detected */
Kenji Kaneshige99f01692009-02-03 15:06:16 +0900613 if ((intr_loc & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) {
614 ctrl->power_fault_detected = 1;
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900615 pciehp_handle_power_fault(slot);
Kenji Kaneshige99f01692009-02-03 15:06:16 +0900616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return IRQ_HANDLED;
618}
619
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900620int pcie_enable_notification(struct controller *ctrl)
Mark Lordecdde932007-11-21 15:07:55 -0800621{
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700622 u16 cmd, mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Kenji Kaneshige5651c48c2009-11-13 15:14:10 +0900624 /*
625 * TBD: Power fault detected software notification support.
626 *
627 * Power fault detected software notification is not enabled
628 * now, because it caused power fault detected interrupt storm
629 * on some machines. On those machines, power fault detected
630 * bit in the slot status register was set again immediately
631 * when it is cleared in the interrupt service routine, and
632 * next power fault detected interrupt was notified again.
633 */
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900634 cmd = PCI_EXP_SLTCTL_PDCE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -0700635 if (ATTN_BUTTN(ctrl))
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900636 cmd |= PCI_EXP_SLTCTL_ABPE;
Kenji Kaneshigeae416e62008-04-25 14:39:06 -0700637 if (MRL_SENS(ctrl))
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900638 cmd |= PCI_EXP_SLTCTL_MRLSCE;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700639 if (!pciehp_poll_mode)
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900640 cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700641
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900642 mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
643 PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
644 PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE);
Kenji Kaneshigec27fb8832008-04-25 14:39:05 -0700645
646 if (pcie_write_cmd(ctrl, cmd, mask)) {
Taku Izumi18b341b2008-10-23 11:47:32 +0900647 ctrl_err(ctrl, "Cannot enable software notification\n");
Kenji Kaneshige125c39f2008-05-28 14:57:30 +0900648 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
Mark Lord08e7a7d2007-11-28 15:11:46 -0800652
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900653static void pcie_disable_notification(struct controller *ctrl)
654{
655 u16 mask;
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900656 mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
657 PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
Kenji Kaneshigef22daf12009-10-05 17:40:02 +0900658 PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
659 PCI_EXP_SLTCTL_DLLSCE);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900660 if (pcie_write_cmd(ctrl, 0, mask))
Taku Izumi18b341b2008-10-23 11:47:32 +0900661 ctrl_warn(ctrl, "Cannot disable software notification\n");
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900662}
663
Alex Williamson2e35afa2013-08-08 14:09:37 -0600664/*
665 * pciehp has a 1:1 bus:slot relationship so we ultimately want a secondary
666 * bus reset of the bridge, but if the slot supports surprise removal we need
667 * to disable presence detection around the bus reset and clear any spurious
668 * events after.
669 */
670int pciehp_reset_slot(struct slot *slot, int probe)
671{
672 struct controller *ctrl = slot->ctrl;
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600673 struct pci_dev *pdev = ctrl_dev(ctrl);
Alex Williamson2e35afa2013-08-08 14:09:37 -0600674
675 if (probe)
676 return 0;
677
678 if (HP_SUPR_RM(ctrl)) {
679 pcie_write_cmd(ctrl, 0, PCI_EXP_SLTCTL_PDCE);
680 if (pciehp_poll_mode)
681 del_timer_sync(&ctrl->poll_timer);
682 }
683
684 pci_reset_bridge_secondary_bus(ctrl->pcie->port);
685
686 if (HP_SUPR_RM(ctrl)) {
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600687 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
688 PCI_EXP_SLTSTA_PDC);
Alex Williamson2e35afa2013-08-08 14:09:37 -0600689 pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PDCE, PCI_EXP_SLTCTL_PDCE);
690 if (pciehp_poll_mode)
691 int_poll_timeout(ctrl->poll_timer.data);
692 }
693
694 return 0;
695}
696
Eric W. Biedermandbc7e1e2009-01-28 19:31:18 -0800697int pcie_init_notification(struct controller *ctrl)
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900698{
699 if (pciehp_request_irq(ctrl))
700 return -1;
701 if (pcie_enable_notification(ctrl)) {
702 pciehp_free_irq(ctrl);
703 return -1;
704 }
Eric W. Biedermandbc7e1e2009-01-28 19:31:18 -0800705 ctrl->notification_enabled = 1;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900706 return 0;
707}
708
709static void pcie_shutdown_notification(struct controller *ctrl)
710{
Eric W. Biedermandbc7e1e2009-01-28 19:31:18 -0800711 if (ctrl->notification_enabled) {
712 pcie_disable_notification(ctrl);
713 pciehp_free_irq(ctrl);
714 ctrl->notification_enabled = 0;
715 }
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900716}
717
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900718static int pcie_init_slot(struct controller *ctrl)
719{
720 struct slot *slot;
721
722 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
723 if (!slot)
724 return -ENOMEM;
725
Kees Cookd8537542013-07-03 15:04:57 -0700726 slot->wq = alloc_workqueue("pciehp-%u", 0, 0, PSN(ctrl));
Yijing Wangc2be6f92013-01-11 10:15:54 +0800727 if (!slot->wq)
728 goto abort;
729
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900730 slot->ctrl = ctrl;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900731 mutex_init(&slot->lock);
732 INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900733 ctrl->slot = slot;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900734 return 0;
Yijing Wangc2be6f92013-01-11 10:15:54 +0800735abort:
736 kfree(slot);
737 return -ENOMEM;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900738}
739
740static void pcie_cleanup_slot(struct controller *ctrl)
741{
Kenji Kaneshige8720d272009-09-15 17:24:46 +0900742 struct slot *slot = ctrl->slot;
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900743 cancel_delayed_work(&slot->work);
Yijing Wangc2be6f92013-01-11 10:15:54 +0800744 destroy_workqueue(slot->wq);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900745 kfree(slot);
746}
747
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700748static inline void dbg_ctrl(struct controller *ctrl)
749{
750 int i;
751 u16 reg16;
Kenji Kaneshige385e2492009-09-15 17:30:14 +0900752 struct pci_dev *pdev = ctrl->pcie->port;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700753
754 if (!pciehp_debug)
755 return;
756
Taku Izumi7f2feec2008-09-05 12:11:26 +0900757 ctrl_info(ctrl, "Hotplug Controller:\n");
758 ctrl_info(ctrl, " Seg/Bus/Dev/Func/IRQ : %s IRQ %d\n",
759 pci_name(pdev), pdev->irq);
760 ctrl_info(ctrl, " Vendor ID : 0x%04x\n", pdev->vendor);
761 ctrl_info(ctrl, " Device ID : 0x%04x\n", pdev->device);
762 ctrl_info(ctrl, " Subsystem ID : 0x%04x\n",
763 pdev->subsystem_device);
764 ctrl_info(ctrl, " Subsystem Vendor ID : 0x%04x\n",
765 pdev->subsystem_vendor);
Kenji Kaneshige1518c172009-11-11 14:34:52 +0900766 ctrl_info(ctrl, " PCIe Cap offset : 0x%02x\n",
767 pci_pcie_cap(pdev));
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700768 for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
769 if (!pci_resource_len(pdev, i))
770 continue;
Bjorn Helgaase1944c62010-03-16 15:53:08 -0600771 ctrl_info(ctrl, " PCI resource [%d] : %pR\n",
772 i, &pdev->resource[i]);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700773 }
Taku Izumi7f2feec2008-09-05 12:11:26 +0900774 ctrl_info(ctrl, "Slot Capabilities : 0x%08x\n", ctrl->slot_cap);
Kenji Kaneshiged54798f2009-09-15 17:28:53 +0900775 ctrl_info(ctrl, " Physical Slot Number : %d\n", PSN(ctrl));
Taku Izumi7f2feec2008-09-05 12:11:26 +0900776 ctrl_info(ctrl, " Attention Button : %3s\n",
777 ATTN_BUTTN(ctrl) ? "yes" : "no");
778 ctrl_info(ctrl, " Power Controller : %3s\n",
779 POWER_CTRL(ctrl) ? "yes" : "no");
780 ctrl_info(ctrl, " MRL Sensor : %3s\n",
781 MRL_SENS(ctrl) ? "yes" : "no");
782 ctrl_info(ctrl, " Attention Indicator : %3s\n",
783 ATTN_LED(ctrl) ? "yes" : "no");
784 ctrl_info(ctrl, " Power Indicator : %3s\n",
785 PWR_LED(ctrl) ? "yes" : "no");
786 ctrl_info(ctrl, " Hot-Plug Surprise : %3s\n",
787 HP_SUPR_RM(ctrl) ? "yes" : "no");
788 ctrl_info(ctrl, " EMI Present : %3s\n",
789 EMI(ctrl) ? "yes" : "no");
790 ctrl_info(ctrl, " Command Completed : %3s\n",
791 NO_CMD_CMPL(ctrl) ? "no" : "yes");
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600792 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &reg16);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900793 ctrl_info(ctrl, "Slot Status : 0x%04x\n", reg16);
Bjorn Helgaascd84d342013-05-09 11:26:16 -0600794 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &reg16);
Taku Izumi7f2feec2008-09-05 12:11:26 +0900795 ctrl_info(ctrl, "Slot Control : 0x%04x\n", reg16);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700796}
797
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900798struct controller *pcie_init(struct pcie_device *dev)
Mark Lord08e7a7d2007-11-28 15:11:46 -0800799{
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900800 struct controller *ctrl;
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900801 u32 slot_cap, link_cap;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700802 struct pci_dev *pdev = dev->port;
Mark Lord08e7a7d2007-11-28 15:11:46 -0800803
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900804 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
805 if (!ctrl) {
Taku Izumi18b341b2008-10-23 11:47:32 +0900806 dev_err(&dev->device, "%s: Out of memory\n", __func__);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900807 goto abort;
808 }
Kenji Kaneshigef7a10e32008-08-22 17:16:48 +0900809 ctrl->pcie = dev;
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700810 pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &slot_cap);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700811 ctrl->slot_cap = slot_cap;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700812 mutex_init(&ctrl->ctrl_lock);
813 init_waitqueue_head(&ctrl->queue);
814 dbg_ctrl(ctrl);
Kenji Kaneshige58086392008-05-27 19:04:30 +0900815 /*
816 * Controller doesn't notify of command completion if the "No
817 * Command Completed Support" bit is set in Slot Capability
818 * register or the controller supports none of power
819 * controller, attention led, power led and EMI.
820 */
821 if (NO_CMD_CMPL(ctrl) ||
822 !(POWER_CTRL(ctrl) | ATTN_LED(ctrl) | PWR_LED(ctrl) | EMI(ctrl)))
823 ctrl->no_cmd_complete = 1;
Mark Lord08e7a7d2007-11-28 15:11:46 -0800824
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900825 /* Check if Data Link Layer Link Active Reporting is implemented */
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700826 pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &link_cap);
Kenji Kaneshige322162a2008-12-19 15:19:02 +0900827 if (link_cap & PCI_EXP_LNKCAP_DLLLARC) {
Kenji Kaneshigef18e9622008-10-22 14:31:44 +0900828 ctrl_dbg(ctrl, "Link Active Reporting supported\n");
829 ctrl->link_active_reporting = 1;
830 }
831
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900832 /* Clear all remaining event bits in Slot Status register */
Bjorn Helgaas1a84b992013-12-14 13:06:07 -0700833 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, 0x1f);
Mark Lord08e7a7d2007-11-28 15:11:46 -0800834
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700835 /* Disable software notification */
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900836 pcie_disable_notification(ctrl);
Mark Lordecdde932007-11-21 15:07:55 -0800837
Taku Izumi7f2feec2008-09-05 12:11:26 +0900838 ctrl_info(ctrl, "HPC vendor_id %x device_id %x ss_vid %x ss_did %x\n",
839 pdev->vendor, pdev->device, pdev->subsystem_vendor,
840 pdev->subsystem_device);
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700841
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900842 if (pcie_init_slot(ctrl))
843 goto abort_ctrl;
Kenji Kaneshige2aeeef12008-04-25 14:39:08 -0700844
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900845 return ctrl;
846
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900847abort_ctrl:
848 kfree(ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -0800849abort:
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900850 return NULL;
851}
852
Kenji Kaneshige82a9e792009-09-15 17:30:48 +0900853void pciehp_release_ctrl(struct controller *ctrl)
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900854{
855 pcie_shutdown_notification(ctrl);
856 pcie_cleanup_slot(ctrl);
Kenji Kaneshigec4635eb2008-06-20 12:07:08 +0900857 kfree(ctrl);
Mark Lord08e7a7d2007-11-28 15:11:46 -0800858}