]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/pci/hotplug/pciehp_hpc.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid
[mirror_ubuntu-zesty-kernel.git] / drivers / pci / hotplug / pciehp_hpc.c
CommitLineData
1da177e4
LT
1/*
2 * PCI Express PCI Hot Plug Driver
3 *
4 * Copyright (C) 1995,2001 Compaq Computer Corporation
5 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
6 * Copyright (C) 2001 IBM Corp.
7 * Copyright (C) 2003-2004 Intel Corporation
8 *
9 * All rights reserved.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
19 * NON INFRINGEMENT. See the GNU General Public License for more
20 * details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 *
8cf4c195 26 * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
1da177e4
LT
27 *
28 */
29
1da177e4
LT
30#include <linux/kernel.h>
31#include <linux/module.h>
32#include <linux/types.h>
de25968c
TS
33#include <linux/signal.h>
34#include <linux/jiffies.h>
35#include <linux/timer.h>
1da177e4 36#include <linux/pci.h>
5d1b8c9e 37#include <linux/interrupt.h>
34d03419 38#include <linux/time.h>
5a0e3ad6 39#include <linux/slab.h>
5d1b8c9e 40
1da177e4
LT
41#include "../pci.h"
42#include "pciehp.h"
1da177e4 43
cd84d340 44static inline struct pci_dev *ctrl_dev(struct controller *ctrl)
a0f018da 45{
cd84d340 46 return ctrl->pcie->port;
a0f018da 47}
1da177e4 48
48fe3915
KK
49static irqreturn_t pcie_isr(int irq, void *dev_id);
50static void start_int_poll_timer(struct controller *ctrl, int sec);
1da177e4
LT
51
52/* This is the interrupt polling timeout function. */
48fe3915 53static void int_poll_timeout(unsigned long data)
1da177e4 54{
48fe3915 55 struct controller *ctrl = (struct controller *)data;
1da177e4 56
1da177e4 57 /* Poll for interrupt events. regs == NULL => polling */
48fe3915 58 pcie_isr(0, ctrl);
1da177e4 59
48fe3915 60 init_timer(&ctrl->poll_timer);
1da177e4 61 if (!pciehp_poll_time)
40730d10 62 pciehp_poll_time = 2; /* default polling interval is 2 sec */
1da177e4 63
48fe3915 64 start_int_poll_timer(ctrl, pciehp_poll_time);
1da177e4
LT
65}
66
67/* This function starts the interrupt polling timer. */
48fe3915 68static void start_int_poll_timer(struct controller *ctrl, int sec)
1da177e4 69{
48fe3915
KK
70 /* Clamp to sane value */
71 if ((sec <= 0) || (sec > 60))
f7625980 72 sec = 2;
48fe3915
KK
73
74 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);
1da177e4
LT
78}
79
2aeeef11
KK
80static inline int pciehp_request_irq(struct controller *ctrl)
81{
f7a10e32 82 int retval, irq = ctrl->pcie->irq;
2aeeef11
KK
83
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)
7f2feec1
TI
94 ctrl_err(ctrl, "Cannot get irq %d for the hotplug controller\n",
95 irq);
2aeeef11
KK
96 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
f7a10e32 104 free_irq(ctrl->pcie->irq, ctrl);
2aeeef11
KK
105}
106
40b96083 107static int pcie_poll_cmd(struct controller *ctrl, int timeout)
6592e02a 108{
cd84d340 109 struct pci_dev *pdev = ctrl_dev(ctrl);
6592e02a 110 u16 slot_status;
6592e02a 111
ac10836b 112 while (true) {
1a84b99c 113 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
1469d17d
JW
114 if (slot_status == (u16) ~0) {
115 ctrl_info(ctrl, "%s: no response from device\n",
116 __func__);
117 return 0;
118 }
119
1a84b99c 120 if (slot_status & PCI_EXP_SLTSTA_CC) {
cd84d340
BH
121 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
122 PCI_EXP_SLTSTA_CC);
322162a7 123 return 1;
820943b6 124 }
ac10836b
YW
125 if (timeout < 0)
126 break;
127 msleep(10);
128 timeout -= 10;
6592e02a
KK
129 }
130 return 0; /* timeout */
6592e02a
KK
131}
132
4283c70e 133static void pcie_wait_cmd(struct controller *ctrl)
44ef4cef 134{
262303fe 135 unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
40b96083
BH
136 unsigned long duration = msecs_to_jiffies(msecs);
137 unsigned long cmd_timeout = ctrl->cmd_started + duration;
138 unsigned long now, timeout;
262303fe
KK
139 int rc;
140
4283c70e
BH
141 /*
142 * If the controller does not generate notifications for command
143 * completions, we never need to wait between writes.
144 */
6c1a32e0 145 if (NO_CMD_CMPL(ctrl))
4283c70e
BH
146 return;
147
148 if (!ctrl->cmd_busy)
149 return;
150
40b96083
BH
151 /*
152 * Even if the command has already timed out, we want to call
153 * pcie_poll_cmd() so it can clear PCI_EXP_SLTSTA_CC.
154 */
155 now = jiffies;
156 if (time_before_eq(cmd_timeout, now))
157 timeout = 1;
158 else
159 timeout = cmd_timeout - now;
160
4283c70e
BH
161 if (ctrl->slot_ctrl & PCI_EXP_SLTCTL_HPIE &&
162 ctrl->slot_ctrl & PCI_EXP_SLTCTL_CCIE)
d737bdc1 163 rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout);
4283c70e 164 else
7cbeb9f9 165 rc = pcie_poll_cmd(ctrl, jiffies_to_msecs(timeout));
40b96083
BH
166
167 /*
168 * Controllers with errata like Intel CF118 don't generate
169 * completion notifications unless the power/indicator/interlock
170 * control bits are changed. On such controllers, we'll emit this
171 * timeout message when we wait for completion of commands that
172 * don't change those bits, e.g., commands that merely enable
173 * interrupts.
174 */
262303fe 175 if (!rc)
d537a3ab 176 ctrl_info(ctrl, "Timeout on hotplug command %#06x (issued %u msec ago)\n",
40b96083 177 ctrl->slot_ctrl,
d433889c 178 jiffies_to_msecs(jiffies - ctrl->cmd_started));
44ef4cef
KK
179}
180
a5dd4b4b
AW
181static void pcie_do_write_cmd(struct controller *ctrl, u16 cmd,
182 u16 mask, bool wait)
1da177e4 183{
cd84d340 184 struct pci_dev *pdev = ctrl_dev(ctrl);
f4778364 185 u16 slot_ctrl;
1da177e4 186
44ef4cef
KK
187 mutex_lock(&ctrl->ctrl_lock);
188
a5dd4b4b
AW
189 /*
190 * Always wait for any previous command that might still be in progress
191 */
3461a068
BH
192 pcie_wait_cmd(ctrl);
193
1a84b99c 194 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
1469d17d
JW
195 if (slot_ctrl == (u16) ~0) {
196 ctrl_info(ctrl, "%s: no response from device\n", __func__);
197 goto out;
198 }
199
f4778364 200 slot_ctrl &= ~mask;
b7aa1f16 201 slot_ctrl |= (cmd & mask);
f4778364 202 ctrl->cmd_busy = 1;
2d32a9ae 203 smp_mb();
1a84b99c 204 pcie_capability_write_word(pdev, PCI_EXP_SLTCTL, slot_ctrl);
40b96083 205 ctrl->cmd_started = jiffies;
4283c70e 206 ctrl->slot_ctrl = slot_ctrl;
f4778364 207
a5dd4b4b
AW
208 /*
209 * Optionally wait for the hardware to be ready for a new command,
210 * indicating completion of the above issued command.
211 */
212 if (wait)
213 pcie_wait_cmd(ctrl);
214
1469d17d 215out:
44ef4cef 216 mutex_unlock(&ctrl->ctrl_lock);
1da177e4
LT
217}
218
a5dd4b4b
AW
219/**
220 * pcie_write_cmd - Issue controller command
221 * @ctrl: controller to which the command is issued
222 * @cmd: command value written to slot control register
223 * @mask: bitmask of slot control register to be modified
224 */
225static void pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
226{
227 pcie_do_write_cmd(ctrl, cmd, mask, true);
228}
229
230/* Same as above without waiting for the hardware to latch */
231static void pcie_write_cmd_nowait(struct controller *ctrl, u16 cmd, u16 mask)
232{
233 pcie_do_write_cmd(ctrl, cmd, mask, false);
234}
235
4703389f 236bool pciehp_check_link_active(struct controller *ctrl)
f18e9625 237{
cd84d340 238 struct pci_dev *pdev = ctrl_dev(ctrl);
4e2ce405 239 u16 lnk_status;
1a84b99c 240 bool ret;
f18e9625 241
1a84b99c 242 pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
4e2ce405
YL
243 ret = !!(lnk_status & PCI_EXP_LNKSTA_DLLLA);
244
245 if (ret)
246 ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
247
248 return ret;
f18e9625
KK
249}
250
bffe4f72 251static void __pcie_wait_link_active(struct controller *ctrl, bool active)
f18e9625
KK
252{
253 int timeout = 1000;
254
4703389f 255 if (pciehp_check_link_active(ctrl) == active)
f18e9625
KK
256 return;
257 while (timeout > 0) {
258 msleep(10);
259 timeout -= 10;
4703389f 260 if (pciehp_check_link_active(ctrl) == active)
f18e9625
KK
261 return;
262 }
bffe4f72
YL
263 ctrl_dbg(ctrl, "Data Link Layer Link Active not %s in 1000 msec\n",
264 active ? "set" : "cleared");
265}
266
267static void pcie_wait_link_active(struct controller *ctrl)
268{
269 __pcie_wait_link_active(ctrl, true);
270}
271
2f5d8e4f
YL
272static bool pci_bus_check_dev(struct pci_bus *bus, int devfn)
273{
274 u32 l;
275 int count = 0;
276 int delay = 1000, step = 20;
277 bool found = false;
278
279 do {
280 found = pci_bus_read_dev_vendor_id(bus, devfn, &l, 0);
281 count++;
282
283 if (found)
284 break;
285
286 msleep(step);
287 delay -= step;
288 } while (delay > 0);
289
290 if (count > 1 && pciehp_debug)
291 printk(KERN_DEBUG "pci %04x:%02x:%02x.%d id reading try %d times with interval %d ms to get %08x\n",
292 pci_domain_nr(bus), bus->number, PCI_SLOT(devfn),
293 PCI_FUNC(devfn), count, step, l);
294
295 return found;
296}
297
82a9e79e 298int pciehp_check_link_status(struct controller *ctrl)
1da177e4 299{
cd84d340 300 struct pci_dev *pdev = ctrl_dev(ctrl);
1a84b99c 301 bool found;
1da177e4 302 u16 lnk_status;
1da177e4 303
3c78bc61
RD
304 /*
305 * Data Link Layer Link Active Reporting must be capable for
306 * hot-plug capable downstream port. But old controller might
307 * not implement it. In this case, we wait for 1000 ms.
308 */
309 if (ctrl->link_active_reporting)
310 pcie_wait_link_active(ctrl);
311 else
312 msleep(1000);
f18e9625 313
2f5d8e4f
YL
314 /* wait 100ms before read pci conf, and try in 1s */
315 msleep(100);
316 found = pci_bus_check_dev(ctrl->pcie->port->subordinate,
317 PCI_DEVFN(0, 0));
0027cb3e 318
1a84b99c 319 pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
7f2feec1 320 ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
322162a7
KK
321 if ((lnk_status & PCI_EXP_LNKSTA_LT) ||
322 !(lnk_status & PCI_EXP_LNKSTA_NLW)) {
3784e0c6
BH
323 ctrl_err(ctrl, "link training error: status %#06x\n",
324 lnk_status);
1a84b99c 325 return -1;
1da177e4
LT
326 }
327
fdbd3ce9
YL
328 pcie_update_link_speed(ctrl->pcie->port->subordinate, lnk_status);
329
1a84b99c
BH
330 if (!found)
331 return -1;
2f5d8e4f 332
1a84b99c 333 return 0;
1da177e4
LT
334}
335
7f822999
YL
336static int __pciehp_link_set(struct controller *ctrl, bool enable)
337{
cd84d340 338 struct pci_dev *pdev = ctrl_dev(ctrl);
7f822999 339 u16 lnk_ctrl;
7f822999 340
1a84b99c 341 pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &lnk_ctrl);
7f822999
YL
342
343 if (enable)
344 lnk_ctrl &= ~PCI_EXP_LNKCTL_LD;
345 else
346 lnk_ctrl |= PCI_EXP_LNKCTL_LD;
347
1a84b99c 348 pcie_capability_write_word(pdev, PCI_EXP_LNKCTL, lnk_ctrl);
7f822999 349 ctrl_dbg(ctrl, "%s: lnk_ctrl = %x\n", __func__, lnk_ctrl);
1a84b99c 350 return 0;
7f822999
YL
351}
352
353static int pciehp_link_enable(struct controller *ctrl)
354{
355 return __pciehp_link_set(ctrl, true);
356}
357
576243b3
KB
358int pciehp_get_raw_indicator_status(struct hotplug_slot *hotplug_slot,
359 u8 *status)
360{
361 struct slot *slot = hotplug_slot->private;
362 struct pci_dev *pdev = ctrl_dev(slot->ctrl);
363 u16 slot_ctrl;
364
365 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
366 *status = (slot_ctrl & (PCI_EXP_SLTCTL_AIC | PCI_EXP_SLTCTL_PIC)) >> 6;
367 return 0;
368}
369
6dae6202 370void pciehp_get_attention_status(struct slot *slot, u8 *status)
1da177e4 371{
48fe3915 372 struct controller *ctrl = slot->ctrl;
cd84d340 373 struct pci_dev *pdev = ctrl_dev(ctrl);
1da177e4 374 u16 slot_ctrl;
1da177e4 375
1a84b99c 376 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
1518c17a
KK
377 ctrl_dbg(ctrl, "%s: SLOTCTRL %x, value read %x\n", __func__,
378 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
1da177e4 379
e7b4f0d7
BH
380 switch (slot_ctrl & PCI_EXP_SLTCTL_AIC) {
381 case PCI_EXP_SLTCTL_ATTN_IND_ON:
1da177e4
LT
382 *status = 1; /* On */
383 break;
e7b4f0d7 384 case PCI_EXP_SLTCTL_ATTN_IND_BLINK:
1da177e4
LT
385 *status = 2; /* Blink */
386 break;
e7b4f0d7 387 case PCI_EXP_SLTCTL_ATTN_IND_OFF:
1da177e4
LT
388 *status = 0; /* Off */
389 break;
390 default:
391 *status = 0xFF;
392 break;
393 }
1da177e4
LT
394}
395
6dae6202 396void pciehp_get_power_status(struct slot *slot, u8 *status)
1da177e4 397{
48fe3915 398 struct controller *ctrl = slot->ctrl;
cd84d340 399 struct pci_dev *pdev = ctrl_dev(ctrl);
1da177e4 400 u16 slot_ctrl;
1da177e4 401
1a84b99c 402 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
1518c17a
KK
403 ctrl_dbg(ctrl, "%s: SLOTCTRL %x value read %x\n", __func__,
404 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
1da177e4 405
e7b4f0d7
BH
406 switch (slot_ctrl & PCI_EXP_SLTCTL_PCC) {
407 case PCI_EXP_SLTCTL_PWR_ON:
408 *status = 1; /* On */
1da177e4 409 break;
e7b4f0d7
BH
410 case PCI_EXP_SLTCTL_PWR_OFF:
411 *status = 0; /* Off */
1da177e4
LT
412 break;
413 default:
414 *status = 0xFF;
415 break;
416 }
1da177e4
LT
417}
418
6dae6202 419void pciehp_get_latch_status(struct slot *slot, u8 *status)
1da177e4 420{
1a84b99c 421 struct pci_dev *pdev = ctrl_dev(slot->ctrl);
1da177e4 422 u16 slot_status;
1da177e4 423
1a84b99c 424 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
322162a7 425 *status = !!(slot_status & PCI_EXP_SLTSTA_MRLSS);
1da177e4
LT
426}
427
6dae6202 428void pciehp_get_adapter_status(struct slot *slot, u8 *status)
1da177e4 429{
1a84b99c 430 struct pci_dev *pdev = ctrl_dev(slot->ctrl);
1da177e4 431 u16 slot_status;
1da177e4 432
1a84b99c 433 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
322162a7 434 *status = !!(slot_status & PCI_EXP_SLTSTA_PDS);
1da177e4
LT
435}
436
82a9e79e 437int pciehp_query_power_fault(struct slot *slot)
1da177e4 438{
1a84b99c 439 struct pci_dev *pdev = ctrl_dev(slot->ctrl);
1da177e4 440 u16 slot_status;
1da177e4 441
1a84b99c 442 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
322162a7 443 return !!(slot_status & PCI_EXP_SLTSTA_PFD);
1da177e4
LT
444}
445
576243b3
KB
446int pciehp_set_raw_indicator_status(struct hotplug_slot *hotplug_slot,
447 u8 status)
448{
449 struct slot *slot = hotplug_slot->private;
450 struct controller *ctrl = slot->ctrl;
451
452 pcie_write_cmd_nowait(ctrl, status << 6,
453 PCI_EXP_SLTCTL_AIC | PCI_EXP_SLTCTL_PIC);
454 return 0;
455}
456
6dae6202 457void pciehp_set_attention_status(struct slot *slot, u8 value)
1da177e4 458{
48fe3915 459 struct controller *ctrl = slot->ctrl;
f4778364 460 u16 slot_cmd;
1da177e4 461
af9ab791
BH
462 if (!ATTN_LED(ctrl))
463 return;
464
1da177e4 465 switch (value) {
3c78bc61 466 case 0: /* turn off */
e7b4f0d7 467 slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_OFF;
445f7985
KK
468 break;
469 case 1: /* turn on */
e7b4f0d7 470 slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_ON;
445f7985
KK
471 break;
472 case 2: /* turn blink */
e7b4f0d7 473 slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_BLINK;
445f7985
KK
474 break;
475 default:
6dae6202 476 return;
1da177e4 477 }
a5dd4b4b 478 pcie_write_cmd_nowait(ctrl, slot_cmd, PCI_EXP_SLTCTL_AIC);
1518c17a
KK
479 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
480 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
1da177e4
LT
481}
482
82a9e79e 483void pciehp_green_led_on(struct slot *slot)
1da177e4 484{
48fe3915 485 struct controller *ctrl = slot->ctrl;
71ad556d 486
af9ab791
BH
487 if (!PWR_LED(ctrl))
488 return;
489
a5dd4b4b
AW
490 pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_ON,
491 PCI_EXP_SLTCTL_PIC);
1518c17a 492 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
e7b4f0d7
BH
493 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
494 PCI_EXP_SLTCTL_PWR_IND_ON);
1da177e4
LT
495}
496
82a9e79e 497void pciehp_green_led_off(struct slot *slot)
1da177e4 498{
48fe3915 499 struct controller *ctrl = slot->ctrl;
1da177e4 500
af9ab791
BH
501 if (!PWR_LED(ctrl))
502 return;
503
a5dd4b4b
AW
504 pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_OFF,
505 PCI_EXP_SLTCTL_PIC);
1518c17a 506 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
e7b4f0d7
BH
507 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
508 PCI_EXP_SLTCTL_PWR_IND_OFF);
1da177e4
LT
509}
510
82a9e79e 511void pciehp_green_led_blink(struct slot *slot)
1da177e4 512{
48fe3915 513 struct controller *ctrl = slot->ctrl;
71ad556d 514
af9ab791
BH
515 if (!PWR_LED(ctrl))
516 return;
517
a5dd4b4b
AW
518 pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_BLINK,
519 PCI_EXP_SLTCTL_PIC);
1518c17a 520 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
e7b4f0d7
BH
521 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
522 PCI_EXP_SLTCTL_PWR_IND_BLINK);
1da177e4
LT
523}
524
3c78bc61 525int pciehp_power_on_slot(struct slot *slot)
1da177e4 526{
48fe3915 527 struct controller *ctrl = slot->ctrl;
cd84d340 528 struct pci_dev *pdev = ctrl_dev(ctrl);
f4778364 529 u16 slot_status;
1a84b99c 530 int retval;
1da177e4 531
5a49f203 532 /* Clear sticky power-fault bit from previous power failures */
1a84b99c 533 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
2f2ed41c
BH
534 if (slot_status & PCI_EXP_SLTSTA_PFD)
535 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
536 PCI_EXP_SLTSTA_PFD);
5651c48c 537 ctrl->power_fault_detected = 0;
1da177e4 538
e7b4f0d7 539 pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_ON, PCI_EXP_SLTCTL_PCC);
1518c17a 540 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
e7b4f0d7
BH
541 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
542 PCI_EXP_SLTCTL_PWR_ON);
1da177e4 543
2debd928
YL
544 retval = pciehp_link_enable(ctrl);
545 if (retval)
546 ctrl_err(ctrl, "%s: Can not enable the link!\n", __func__);
547
1da177e4
LT
548 return retval;
549}
550
3c78bc61 551void pciehp_power_off_slot(struct slot *slot)
1da177e4 552{
48fe3915 553 struct controller *ctrl = slot->ctrl;
f1050a35 554
e7b4f0d7 555 pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_OFF, PCI_EXP_SLTCTL_PCC);
1518c17a 556 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
e7b4f0d7
BH
557 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
558 PCI_EXP_SLTCTL_PWR_OFF);
1da177e4
LT
559}
560
fad214b0 561static irqreturn_t pciehp_isr(int irq, void *dev_id)
1da177e4 562{
48fe3915 563 struct controller *ctrl = (struct controller *)dev_id;
cd84d340 564 struct pci_dev *pdev = ctrl_dev(ctrl);
b440bde7
BH
565 struct pci_bus *subordinate = pdev->subordinate;
566 struct pci_dev *dev;
8720d27d 567 struct slot *slot = ctrl->slot;
a8499f20 568 u16 status, events;
2db0f71f 569 u8 present;
4f092fec 570 bool link;
1da177e4 571
ed91de7e
LW
572 /* Interrupts cannot originate from a controller that's asleep */
573 if (pdev->current_state == PCI_D3cold)
574 return IRQ_NONE;
575
fad214b0
MP
576 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &status);
577 if (status == (u16) ~0) {
578 ctrl_info(ctrl, "%s: no response from device\n", __func__);
579 return IRQ_NONE;
580 }
581
c6b069e9 582 /*
fad214b0
MP
583 * Slot Status contains plain status bits as well as event
584 * notification bits; right now we only want the event bits.
c6b069e9 585 */
fad214b0 586 events = status & (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
a8499f20
BH
587 PCI_EXP_SLTSTA_PDC | PCI_EXP_SLTSTA_CC |
588 PCI_EXP_SLTSTA_DLLSC);
fad214b0
MP
589 if (!events)
590 return IRQ_NONE;
71ad556d 591
0c923d1d
MP
592 /* Capture link status before clearing interrupts */
593 if (events & PCI_EXP_SLTSTA_DLLSC)
594 link = pciehp_check_link_active(ctrl);
595
fad214b0 596 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, events);
a8499f20 597 ctrl_dbg(ctrl, "pending interrupts %#06x from Slot Status\n", events);
71ad556d 598
c6b069e9 599 /* Check Command Complete Interrupt Pending */
a8499f20 600 if (events & PCI_EXP_SLTSTA_CC) {
262303fe 601 ctrl->cmd_busy = 0;
2d32a9ae 602 smp_mb();
d737bdc1 603 wake_up(&ctrl->queue);
1da177e4
LT
604 }
605
b440bde7
BH
606 if (subordinate) {
607 list_for_each_entry(dev, &subordinate->devices, bus_list) {
608 if (dev->ignore_hotplug) {
609 ctrl_dbg(ctrl, "ignoring hotplug event %#06x (%s requested no hotplug)\n",
a8499f20 610 events, pci_name(dev));
b440bde7
BH
611 return IRQ_HANDLED;
612 }
613 }
614 }
615
c6b069e9 616 /* Check Attention Button Pressed */
a8499f20 617 if (events & PCI_EXP_SLTSTA_ABP) {
6e49b304 618 ctrl_info(ctrl, "Slot(%s): Attention button pressed\n",
4f092fec
BH
619 slot_name(slot));
620 pciehp_queue_interrupt_event(slot, INT_BUTTON_PRESS);
621 }
48fe3915 622
385895fe
AR
623 /*
624 * Check Link Status Changed at higher precedence than Presence
625 * Detect Changed. The PDS value may be set to "card present" from
626 * out-of-band detection, which may be in conflict with a Link Down
627 * and cause the wrong event to queue.
628 */
629 if (events & PCI_EXP_SLTSTA_DLLSC) {
630 ctrl_info(ctrl, "Slot(%s): Link %s\n", slot_name(slot),
631 link ? "Up" : "Down");
632 pciehp_queue_interrupt_event(slot, link ? INT_LINK_UP :
633 INT_LINK_DOWN);
634 } else if (events & PCI_EXP_SLTSTA_PDC) {
0c923d1d 635 present = !!(status & PCI_EXP_SLTSTA_PDS);
6e49b304
BH
636 ctrl_info(ctrl, "Slot(%s): Card %spresent\n", slot_name(slot),
637 present ? "" : "not ");
4f092fec
BH
638 pciehp_queue_interrupt_event(slot, present ? INT_PRESENCE_ON :
639 INT_PRESENCE_OFF);
640 }
48fe3915 641
c6b069e9 642 /* Check Power Fault Detected */
a8499f20 643 if ((events & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) {
99f0169c 644 ctrl->power_fault_detected = 1;
6e49b304 645 ctrl_err(ctrl, "Slot(%s): Power fault\n", slot_name(slot));
4f092fec 646 pciehp_queue_interrupt_event(slot, INT_POWER_FAULT);
99f0169c 647 }
e48f1b67 648
1da177e4
LT
649 return IRQ_HANDLED;
650}
651
fad214b0
MP
652static irqreturn_t pcie_isr(int irq, void *dev_id)
653{
654 irqreturn_t rc, handled = IRQ_NONE;
655
656 /*
657 * To guarantee that all interrupt events are serviced, we need to
658 * re-inspect Slot Status register after clearing what is presumed
659 * to be the last pending interrupt.
660 */
661 do {
662 rc = pciehp_isr(irq, dev_id);
663 if (rc == IRQ_HANDLED)
664 handled = IRQ_HANDLED;
665 } while (rc == IRQ_HANDLED);
666
667 /* Return IRQ_HANDLED if we handled one or more events */
668 return handled;
669}
670
6dae6202 671void pcie_enable_notification(struct controller *ctrl)
ecdde939 672{
c27fb883 673 u16 cmd, mask;
1da177e4 674
5651c48c
KK
675 /*
676 * TBD: Power fault detected software notification support.
677 *
678 * Power fault detected software notification is not enabled
679 * now, because it caused power fault detected interrupt storm
680 * on some machines. On those machines, power fault detected
681 * bit in the slot status register was set again immediately
682 * when it is cleared in the interrupt service routine, and
683 * next power fault detected interrupt was notified again.
684 */
4f854f2a
RJ
685
686 /*
687 * Always enable link events: thus link-up and link-down shall
688 * always be treated as hotplug and unplug respectively. Enable
689 * presence detect only if Attention Button is not present.
690 */
691 cmd = PCI_EXP_SLTCTL_DLLSCE;
ae416e6b 692 if (ATTN_BUTTN(ctrl))
322162a7 693 cmd |= PCI_EXP_SLTCTL_ABPE;
4f854f2a
RJ
694 else
695 cmd |= PCI_EXP_SLTCTL_PDCE;
c27fb883 696 if (!pciehp_poll_mode)
322162a7 697 cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
c27fb883 698
322162a7 699 mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
2db0f71f 700 PCI_EXP_SLTCTL_PFDE |
4f854f2a
RJ
701 PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
702 PCI_EXP_SLTCTL_DLLSCE);
c27fb883 703
a5dd4b4b 704 pcie_write_cmd_nowait(ctrl, cmd, mask);
cf8d7b58
YL
705 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
706 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, cmd);
c4635eb0
KK
707}
708
709static void pcie_disable_notification(struct controller *ctrl)
710{
711 u16 mask;
6dae6202 712
322162a7
KK
713 mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
714 PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
f22daf1f
KK
715 PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
716 PCI_EXP_SLTCTL_DLLSCE);
6dae6202 717 pcie_write_cmd(ctrl, 0, mask);
cf8d7b58
YL
718 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
719 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, 0);
c4635eb0
KK
720}
721
2e35afae
AW
722/*
723 * pciehp has a 1:1 bus:slot relationship so we ultimately want a secondary
2b3940b6
RJ
724 * bus reset of the bridge, but at the same time we want to ensure that it is
725 * not seen as a hot-unplug, followed by the hot-plug of the device. Thus,
726 * disable link state notification and presence detection change notification
727 * momentarily, if we see that they could interfere. Also, clear any spurious
2e35afae
AW
728 * events after.
729 */
730int pciehp_reset_slot(struct slot *slot, int probe)
731{
732 struct controller *ctrl = slot->ctrl;
cd84d340 733 struct pci_dev *pdev = ctrl_dev(ctrl);
06a8d89a 734 u16 stat_mask = 0, ctrl_mask = 0;
2e35afae
AW
735
736 if (probe)
737 return 0;
738
2b3940b6 739 if (!ATTN_BUTTN(ctrl)) {
06a8d89a
RJ
740 ctrl_mask |= PCI_EXP_SLTCTL_PDCE;
741 stat_mask |= PCI_EXP_SLTSTA_PDC;
2e35afae 742 }
06a8d89a
RJ
743 ctrl_mask |= PCI_EXP_SLTCTL_DLLSCE;
744 stat_mask |= PCI_EXP_SLTSTA_DLLSC;
745
746 pcie_write_cmd(ctrl, 0, ctrl_mask);
cf8d7b58
YL
747 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
748 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, 0);
06a8d89a
RJ
749 if (pciehp_poll_mode)
750 del_timer_sync(&ctrl->poll_timer);
2e35afae
AW
751
752 pci_reset_bridge_secondary_bus(ctrl->pcie->port);
753
06a8d89a 754 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, stat_mask);
a5dd4b4b 755 pcie_write_cmd_nowait(ctrl, ctrl_mask, ctrl_mask);
cf8d7b58
YL
756 ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
757 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, ctrl_mask);
06a8d89a
RJ
758 if (pciehp_poll_mode)
759 int_poll_timeout(ctrl->poll_timer.data);
2e35afae
AW
760
761 return 0;
762}
763
dbc7e1e5 764int pcie_init_notification(struct controller *ctrl)
c4635eb0
KK
765{
766 if (pciehp_request_irq(ctrl))
767 return -1;
6dae6202 768 pcie_enable_notification(ctrl);
dbc7e1e5 769 ctrl->notification_enabled = 1;
c4635eb0
KK
770 return 0;
771}
772
773static void pcie_shutdown_notification(struct controller *ctrl)
774{
dbc7e1e5
EB
775 if (ctrl->notification_enabled) {
776 pcie_disable_notification(ctrl);
777 pciehp_free_irq(ctrl);
778 ctrl->notification_enabled = 0;
779 }
c4635eb0
KK
780}
781
c4635eb0
KK
782static int pcie_init_slot(struct controller *ctrl)
783{
784 struct slot *slot;
785
786 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
787 if (!slot)
788 return -ENOMEM;
789
d8537548 790 slot->wq = alloc_workqueue("pciehp-%u", 0, 0, PSN(ctrl));
c2be6f93
YW
791 if (!slot->wq)
792 goto abort;
793
c4635eb0 794 slot->ctrl = ctrl;
c4635eb0 795 mutex_init(&slot->lock);
50b52fde 796 mutex_init(&slot->hotplug_lock);
c4635eb0 797 INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
8720d27d 798 ctrl->slot = slot;
1da177e4 799 return 0;
c2be6f93
YW
800abort:
801 kfree(slot);
802 return -ENOMEM;
1da177e4 803}
08e7a7d2 804
c4635eb0
KK
805static void pcie_cleanup_slot(struct controller *ctrl)
806{
8720d27d 807 struct slot *slot = ctrl->slot;
c4635eb0 808 cancel_delayed_work(&slot->work);
c2be6f93 809 destroy_workqueue(slot->wq);
c4635eb0
KK
810 kfree(slot);
811}
812
2aeeef11 813static inline void dbg_ctrl(struct controller *ctrl)
08e7a7d2 814{
385e2491 815 struct pci_dev *pdev = ctrl->pcie->port;
3784e0c6 816 u16 reg16;
08e7a7d2 817
2aeeef11
KK
818 if (!pciehp_debug)
819 return;
08e7a7d2 820
7f2feec1 821 ctrl_info(ctrl, "Slot Capabilities : 0x%08x\n", ctrl->slot_cap);
cd84d340 822 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &reg16);
7f2feec1 823 ctrl_info(ctrl, "Slot Status : 0x%04x\n", reg16);
cd84d340 824 pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &reg16);
7f2feec1 825 ctrl_info(ctrl, "Slot Control : 0x%04x\n", reg16);
2aeeef11 826}
08e7a7d2 827
3c78bc61 828#define FLAG(x, y) (((x) & (y)) ? '+' : '-')
afe2478f 829
c4635eb0 830struct controller *pcie_init(struct pcie_device *dev)
2aeeef11 831{
c4635eb0 832 struct controller *ctrl;
f18e9625 833 u32 slot_cap, link_cap;
2aeeef11 834 struct pci_dev *pdev = dev->port;
08e7a7d2 835
c4635eb0
KK
836 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
837 if (!ctrl) {
18b341b7 838 dev_err(&dev->device, "%s: Out of memory\n", __func__);
c4635eb0
KK
839 goto abort;
840 }
f7a10e32 841 ctrl->pcie = dev;
1a84b99c 842 pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &slot_cap);
576243b3
KB
843
844 if (pdev->hotplug_user_indicators)
845 slot_cap &= ~(PCI_EXP_SLTCAP_AIP | PCI_EXP_SLTCAP_PIP);
846
2aeeef11 847 ctrl->slot_cap = slot_cap;
08e7a7d2 848 mutex_init(&ctrl->ctrl_lock);
08e7a7d2 849 init_waitqueue_head(&ctrl->queue);
2aeeef11 850 dbg_ctrl(ctrl);
2cc56f30 851
3c78bc61
RD
852 /* Check if Data Link Layer Link Active Reporting is implemented */
853 pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &link_cap);
3784e0c6 854 if (link_cap & PCI_EXP_LNKCAP_DLLLARC)
3c78bc61 855 ctrl->link_active_reporting = 1;
f18e9625 856
c4635eb0 857 /* Clear all remaining event bits in Slot Status register */
df72648c
BH
858 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
859 PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
860 PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
0d25d35c 861 PCI_EXP_SLTSTA_CC | PCI_EXP_SLTSTA_DLLSC);
08e7a7d2 862
3784e0c6 863 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",
afe2478f
BH
864 (slot_cap & PCI_EXP_SLTCAP_PSN) >> 19,
865 FLAG(slot_cap, PCI_EXP_SLTCAP_ABP),
afe2478f
BH
866 FLAG(slot_cap, PCI_EXP_SLTCAP_PCP),
867 FLAG(slot_cap, PCI_EXP_SLTCAP_MRLSP),
3784e0c6
BH
868 FLAG(slot_cap, PCI_EXP_SLTCAP_AIP),
869 FLAG(slot_cap, PCI_EXP_SLTCAP_PIP),
870 FLAG(slot_cap, PCI_EXP_SLTCAP_HPC),
871 FLAG(slot_cap, PCI_EXP_SLTCAP_HPS),
afe2478f
BH
872 FLAG(slot_cap, PCI_EXP_SLTCAP_EIP),
873 FLAG(slot_cap, PCI_EXP_SLTCAP_NCCS),
874 FLAG(link_cap, PCI_EXP_LNKCAP_DLLLARC));
c4635eb0
KK
875
876 if (pcie_init_slot(ctrl))
877 goto abort_ctrl;
2aeeef11 878
c4635eb0
KK
879 return ctrl;
880
c4635eb0
KK
881abort_ctrl:
882 kfree(ctrl);
08e7a7d2 883abort:
c4635eb0
KK
884 return NULL;
885}
886
82a9e79e 887void pciehp_release_ctrl(struct controller *ctrl)
c4635eb0
KK
888{
889 pcie_shutdown_notification(ctrl);
890 pcie_cleanup_slot(ctrl);
c4635eb0 891 kfree(ctrl);
08e7a7d2 892}