GNU Linux-libre 4.9.330-gnu1
[releases.git] / drivers / pci / hotplug / pciehp_hpc.c
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  *
26  * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
27  *
28  */
29
30 #include <linux/kernel.h>
31 #include <linux/module.h>
32 #include <linux/types.h>
33 #include <linux/signal.h>
34 #include <linux/jiffies.h>
35 #include <linux/timer.h>
36 #include <linux/pci.h>
37 #include <linux/interrupt.h>
38 #include <linux/time.h>
39 #include <linux/slab.h>
40
41 #include "../pci.h"
42 #include "pciehp.h"
43
44 static inline struct pci_dev *ctrl_dev(struct controller *ctrl)
45 {
46         return ctrl->pcie->port;
47 }
48
49 static irqreturn_t pcie_isr(int irq, void *dev_id);
50 static void start_int_poll_timer(struct controller *ctrl, int sec);
51
52 /* This is the interrupt polling timeout function. */
53 static void int_poll_timeout(unsigned long data)
54 {
55         struct controller *ctrl = (struct controller *)data;
56
57         /* Poll for interrupt events.  regs == NULL => polling */
58         pcie_isr(0, ctrl);
59
60         init_timer(&ctrl->poll_timer);
61         if (!pciehp_poll_time)
62                 pciehp_poll_time = 2; /* default polling interval is 2 sec */
63
64         start_int_poll_timer(ctrl, pciehp_poll_time);
65 }
66
67 /* This function starts the interrupt polling timer. */
68 static void start_int_poll_timer(struct controller *ctrl, int sec)
69 {
70         /* Clamp to sane value */
71         if ((sec <= 0) || (sec > 60))
72                 sec = 2;
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);
78 }
79
80 static inline int pciehp_request_irq(struct controller *ctrl)
81 {
82         int retval, irq = ctrl->pcie->irq;
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)
94                 ctrl_err(ctrl, "Cannot get irq %d for the hotplug controller\n",
95                          irq);
96         return retval;
97 }
98
99 static inline void pciehp_free_irq(struct controller *ctrl)
100 {
101         if (pciehp_poll_mode)
102                 del_timer_sync(&ctrl->poll_timer);
103         else
104                 free_irq(ctrl->pcie->irq, ctrl);
105 }
106
107 static int pcie_poll_cmd(struct controller *ctrl, int timeout)
108 {
109         struct pci_dev *pdev = ctrl_dev(ctrl);
110         u16 slot_status;
111
112         while (true) {
113                 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
114                 if (slot_status == (u16) ~0) {
115                         ctrl_info(ctrl, "%s: no response from device\n",
116                                   __func__);
117                         return 0;
118                 }
119
120                 if (slot_status & PCI_EXP_SLTSTA_CC) {
121                         pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
122                                                    PCI_EXP_SLTSTA_CC);
123                         ctrl->cmd_busy = 0;
124                         smp_mb();
125                         return 1;
126                 }
127                 if (timeout < 0)
128                         break;
129                 msleep(10);
130                 timeout -= 10;
131         }
132         return 0;       /* timeout */
133 }
134
135 static void pcie_wait_cmd(struct controller *ctrl)
136 {
137         unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
138         unsigned long duration = msecs_to_jiffies(msecs);
139         unsigned long cmd_timeout = ctrl->cmd_started + duration;
140         unsigned long now, timeout;
141         int rc;
142
143         /*
144          * If the controller does not generate notifications for command
145          * completions, we never need to wait between writes.
146          */
147         if (NO_CMD_CMPL(ctrl))
148                 return;
149
150         if (!ctrl->cmd_busy)
151                 return;
152
153         /*
154          * Even if the command has already timed out, we want to call
155          * pcie_poll_cmd() so it can clear PCI_EXP_SLTSTA_CC.
156          */
157         now = jiffies;
158         if (time_before_eq(cmd_timeout, now))
159                 timeout = 1;
160         else
161                 timeout = cmd_timeout - now;
162
163         if (ctrl->slot_ctrl & PCI_EXP_SLTCTL_HPIE &&
164             ctrl->slot_ctrl & PCI_EXP_SLTCTL_CCIE)
165                 rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout);
166         else
167                 rc = pcie_poll_cmd(ctrl, jiffies_to_msecs(timeout));
168
169         /*
170          * Controllers with errata like Intel CF118 don't generate
171          * completion notifications unless the power/indicator/interlock
172          * control bits are changed.  On such controllers, we'll emit this
173          * timeout message when we wait for completion of commands that
174          * don't change those bits, e.g., commands that merely enable
175          * interrupts.
176          */
177         if (!rc)
178                 ctrl_info(ctrl, "Timeout on hotplug command %#06x (issued %u msec ago)\n",
179                           ctrl->slot_ctrl,
180                           jiffies_to_msecs(jiffies - ctrl->cmd_started));
181 }
182
183 static void pcie_do_write_cmd(struct controller *ctrl, u16 cmd,
184                               u16 mask, bool wait)
185 {
186         struct pci_dev *pdev = ctrl_dev(ctrl);
187         u16 slot_ctrl;
188
189         mutex_lock(&ctrl->ctrl_lock);
190
191         /*
192          * Always wait for any previous command that might still be in progress
193          */
194         pcie_wait_cmd(ctrl);
195
196         pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
197         if (slot_ctrl == (u16) ~0) {
198                 ctrl_info(ctrl, "%s: no response from device\n", __func__);
199                 goto out;
200         }
201
202         slot_ctrl &= ~mask;
203         slot_ctrl |= (cmd & mask);
204         ctrl->cmd_busy = 1;
205         smp_mb();
206         pcie_capability_write_word(pdev, PCI_EXP_SLTCTL, slot_ctrl);
207         ctrl->cmd_started = jiffies;
208         ctrl->slot_ctrl = slot_ctrl;
209
210         /*
211          * Optionally wait for the hardware to be ready for a new command,
212          * indicating completion of the above issued command.
213          */
214         if (wait)
215                 pcie_wait_cmd(ctrl);
216
217 out:
218         mutex_unlock(&ctrl->ctrl_lock);
219 }
220
221 /**
222  * pcie_write_cmd - Issue controller command
223  * @ctrl: controller to which the command is issued
224  * @cmd:  command value written to slot control register
225  * @mask: bitmask of slot control register to be modified
226  */
227 static void pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
228 {
229         pcie_do_write_cmd(ctrl, cmd, mask, true);
230 }
231
232 /* Same as above without waiting for the hardware to latch */
233 static void pcie_write_cmd_nowait(struct controller *ctrl, u16 cmd, u16 mask)
234 {
235         pcie_do_write_cmd(ctrl, cmd, mask, false);
236 }
237
238 bool pciehp_check_link_active(struct controller *ctrl)
239 {
240         struct pci_dev *pdev = ctrl_dev(ctrl);
241         u16 lnk_status;
242         bool ret;
243
244         pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
245         ret = !!(lnk_status & PCI_EXP_LNKSTA_DLLLA);
246
247         if (ret)
248                 ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
249
250         return ret;
251 }
252
253 static void __pcie_wait_link_active(struct controller *ctrl, bool active)
254 {
255         int timeout = 1000;
256
257         if (pciehp_check_link_active(ctrl) == active)
258                 return;
259         while (timeout > 0) {
260                 msleep(10);
261                 timeout -= 10;
262                 if (pciehp_check_link_active(ctrl) == active)
263                         return;
264         }
265         ctrl_dbg(ctrl, "Data Link Layer Link Active not %s in 1000 msec\n",
266                         active ? "set" : "cleared");
267 }
268
269 static void pcie_wait_link_active(struct controller *ctrl)
270 {
271         __pcie_wait_link_active(ctrl, true);
272 }
273
274 static bool pci_bus_check_dev(struct pci_bus *bus, int devfn)
275 {
276         u32 l;
277         int count = 0;
278         int delay = 1000, step = 20;
279         bool found = false;
280
281         do {
282                 found = pci_bus_read_dev_vendor_id(bus, devfn, &l, 0);
283                 count++;
284
285                 if (found)
286                         break;
287
288                 msleep(step);
289                 delay -= step;
290         } while (delay > 0);
291
292         if (count > 1 && pciehp_debug)
293                 printk(KERN_DEBUG "pci %04x:%02x:%02x.%d id reading try %d times with interval %d ms to get %08x\n",
294                         pci_domain_nr(bus), bus->number, PCI_SLOT(devfn),
295                         PCI_FUNC(devfn), count, step, l);
296
297         return found;
298 }
299
300 int pciehp_check_link_status(struct controller *ctrl)
301 {
302         struct pci_dev *pdev = ctrl_dev(ctrl);
303         bool found;
304         u16 lnk_status;
305
306         /*
307          * Data Link Layer Link Active Reporting must be capable for
308          * hot-plug capable downstream port. But old controller might
309          * not implement it. In this case, we wait for 1000 ms.
310         */
311         if (ctrl->link_active_reporting)
312                 pcie_wait_link_active(ctrl);
313         else
314                 msleep(1000);
315
316         /* wait 100ms before read pci conf, and try in 1s */
317         msleep(100);
318         found = pci_bus_check_dev(ctrl->pcie->port->subordinate,
319                                         PCI_DEVFN(0, 0));
320
321         pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
322         ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
323         if ((lnk_status & PCI_EXP_LNKSTA_LT) ||
324             !(lnk_status & PCI_EXP_LNKSTA_NLW)) {
325                 ctrl_err(ctrl, "link training error: status %#06x\n",
326                          lnk_status);
327                 return -1;
328         }
329
330         pcie_update_link_speed(ctrl->pcie->port->subordinate, lnk_status);
331
332         if (!found)
333                 return -1;
334
335         return 0;
336 }
337
338 static int __pciehp_link_set(struct controller *ctrl, bool enable)
339 {
340         struct pci_dev *pdev = ctrl_dev(ctrl);
341         u16 lnk_ctrl;
342
343         pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &lnk_ctrl);
344
345         if (enable)
346                 lnk_ctrl &= ~PCI_EXP_LNKCTL_LD;
347         else
348                 lnk_ctrl |= PCI_EXP_LNKCTL_LD;
349
350         pcie_capability_write_word(pdev, PCI_EXP_LNKCTL, lnk_ctrl);
351         ctrl_dbg(ctrl, "%s: lnk_ctrl = %x\n", __func__, lnk_ctrl);
352         return 0;
353 }
354
355 static int pciehp_link_enable(struct controller *ctrl)
356 {
357         return __pciehp_link_set(ctrl, true);
358 }
359
360 int pciehp_get_raw_indicator_status(struct hotplug_slot *hotplug_slot,
361                                     u8 *status)
362 {
363         struct slot *slot = hotplug_slot->private;
364         struct pci_dev *pdev = ctrl_dev(slot->ctrl);
365         u16 slot_ctrl;
366
367         pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
368         *status = (slot_ctrl & (PCI_EXP_SLTCTL_AIC | PCI_EXP_SLTCTL_PIC)) >> 6;
369         return 0;
370 }
371
372 void pciehp_get_attention_status(struct slot *slot, u8 *status)
373 {
374         struct controller *ctrl = slot->ctrl;
375         struct pci_dev *pdev = ctrl_dev(ctrl);
376         u16 slot_ctrl;
377
378         pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
379         ctrl_dbg(ctrl, "%s: SLOTCTRL %x, value read %x\n", __func__,
380                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
381
382         switch (slot_ctrl & PCI_EXP_SLTCTL_AIC) {
383         case PCI_EXP_SLTCTL_ATTN_IND_ON:
384                 *status = 1;    /* On */
385                 break;
386         case PCI_EXP_SLTCTL_ATTN_IND_BLINK:
387                 *status = 2;    /* Blink */
388                 break;
389         case PCI_EXP_SLTCTL_ATTN_IND_OFF:
390                 *status = 0;    /* Off */
391                 break;
392         default:
393                 *status = 0xFF;
394                 break;
395         }
396 }
397
398 void pciehp_get_power_status(struct slot *slot, u8 *status)
399 {
400         struct controller *ctrl = slot->ctrl;
401         struct pci_dev *pdev = ctrl_dev(ctrl);
402         u16 slot_ctrl;
403
404         pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
405         ctrl_dbg(ctrl, "%s: SLOTCTRL %x value read %x\n", __func__,
406                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
407
408         switch (slot_ctrl & PCI_EXP_SLTCTL_PCC) {
409         case PCI_EXP_SLTCTL_PWR_ON:
410                 *status = 1;    /* On */
411                 break;
412         case PCI_EXP_SLTCTL_PWR_OFF:
413                 *status = 0;    /* Off */
414                 break;
415         default:
416                 *status = 0xFF;
417                 break;
418         }
419 }
420
421 void pciehp_get_latch_status(struct slot *slot, u8 *status)
422 {
423         struct pci_dev *pdev = ctrl_dev(slot->ctrl);
424         u16 slot_status;
425
426         pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
427         *status = !!(slot_status & PCI_EXP_SLTSTA_MRLSS);
428 }
429
430 void pciehp_get_adapter_status(struct slot *slot, u8 *status)
431 {
432         struct pci_dev *pdev = ctrl_dev(slot->ctrl);
433         u16 slot_status;
434
435         pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
436         *status = !!(slot_status & PCI_EXP_SLTSTA_PDS);
437 }
438
439 int pciehp_query_power_fault(struct slot *slot)
440 {
441         struct pci_dev *pdev = ctrl_dev(slot->ctrl);
442         u16 slot_status;
443
444         pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
445         return !!(slot_status & PCI_EXP_SLTSTA_PFD);
446 }
447
448 int pciehp_set_raw_indicator_status(struct hotplug_slot *hotplug_slot,
449                                     u8 status)
450 {
451         struct slot *slot = hotplug_slot->private;
452         struct controller *ctrl = slot->ctrl;
453
454         pcie_write_cmd_nowait(ctrl, status << 6,
455                               PCI_EXP_SLTCTL_AIC | PCI_EXP_SLTCTL_PIC);
456         return 0;
457 }
458
459 void pciehp_set_attention_status(struct slot *slot, u8 value)
460 {
461         struct controller *ctrl = slot->ctrl;
462         u16 slot_cmd;
463
464         if (!ATTN_LED(ctrl))
465                 return;
466
467         switch (value) {
468         case 0:         /* turn off */
469                 slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_OFF;
470                 break;
471         case 1:         /* turn on */
472                 slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_ON;
473                 break;
474         case 2:         /* turn blink */
475                 slot_cmd = PCI_EXP_SLTCTL_ATTN_IND_BLINK;
476                 break;
477         default:
478                 return;
479         }
480         pcie_write_cmd_nowait(ctrl, slot_cmd, PCI_EXP_SLTCTL_AIC);
481         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
482                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
483 }
484
485 void pciehp_green_led_on(struct slot *slot)
486 {
487         struct controller *ctrl = slot->ctrl;
488
489         if (!PWR_LED(ctrl))
490                 return;
491
492         pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_ON,
493                               PCI_EXP_SLTCTL_PIC);
494         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
495                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
496                  PCI_EXP_SLTCTL_PWR_IND_ON);
497 }
498
499 void pciehp_green_led_off(struct slot *slot)
500 {
501         struct controller *ctrl = slot->ctrl;
502
503         if (!PWR_LED(ctrl))
504                 return;
505
506         pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_OFF,
507                               PCI_EXP_SLTCTL_PIC);
508         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
509                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
510                  PCI_EXP_SLTCTL_PWR_IND_OFF);
511 }
512
513 void pciehp_green_led_blink(struct slot *slot)
514 {
515         struct controller *ctrl = slot->ctrl;
516
517         if (!PWR_LED(ctrl))
518                 return;
519
520         pcie_write_cmd_nowait(ctrl, PCI_EXP_SLTCTL_PWR_IND_BLINK,
521                               PCI_EXP_SLTCTL_PIC);
522         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
523                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
524                  PCI_EXP_SLTCTL_PWR_IND_BLINK);
525 }
526
527 int pciehp_power_on_slot(struct slot *slot)
528 {
529         struct controller *ctrl = slot->ctrl;
530         struct pci_dev *pdev = ctrl_dev(ctrl);
531         u16 slot_status;
532         int retval;
533
534         /* Clear sticky power-fault bit from previous power failures */
535         pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
536         if (slot_status & PCI_EXP_SLTSTA_PFD)
537                 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
538                                            PCI_EXP_SLTSTA_PFD);
539         ctrl->power_fault_detected = 0;
540
541         pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_ON, PCI_EXP_SLTCTL_PCC);
542         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
543                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
544                  PCI_EXP_SLTCTL_PWR_ON);
545
546         retval = pciehp_link_enable(ctrl);
547         if (retval)
548                 ctrl_err(ctrl, "%s: Can not enable the link!\n", __func__);
549
550         return retval;
551 }
552
553 void pciehp_power_off_slot(struct slot *slot)
554 {
555         struct controller *ctrl = slot->ctrl;
556
557         pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_OFF, PCI_EXP_SLTCTL_PCC);
558         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
559                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
560                  PCI_EXP_SLTCTL_PWR_OFF);
561 }
562
563 static irqreturn_t pciehp_isr(int irq, void *dev_id)
564 {
565         struct controller *ctrl = (struct controller *)dev_id;
566         struct pci_dev *pdev = ctrl_dev(ctrl);
567         struct slot *slot = ctrl->slot;
568         u16 status, events;
569         u8 present;
570         bool link;
571
572         /* Interrupts cannot originate from a controller that's asleep */
573         if (pdev->current_state == PCI_D3cold)
574                 return IRQ_NONE;
575
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
582         /*
583          * Slot Status contains plain status bits as well as event
584          * notification bits; right now we only want the event bits.
585          */
586         events = status & (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
587                            PCI_EXP_SLTSTA_PDC | PCI_EXP_SLTSTA_CC |
588                            PCI_EXP_SLTSTA_DLLSC);
589
590         /*
591          * If we've already reported a power fault, don't report it again
592          * until we've done something to handle it.
593          */
594         if (ctrl->power_fault_detected)
595                 events &= ~PCI_EXP_SLTSTA_PFD;
596
597         if (!events)
598                 return IRQ_NONE;
599
600         /* Capture link status before clearing interrupts */
601         if (events & PCI_EXP_SLTSTA_DLLSC)
602                 link = pciehp_check_link_active(ctrl);
603
604         pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, events);
605         ctrl_dbg(ctrl, "pending interrupts %#06x from Slot Status\n", events);
606
607         /* Check Command Complete Interrupt Pending */
608         if (events & PCI_EXP_SLTSTA_CC) {
609                 ctrl->cmd_busy = 0;
610                 smp_mb();
611                 wake_up(&ctrl->queue);
612         }
613
614         if (pdev->ignore_hotplug) {
615                 ctrl_dbg(ctrl, "ignoring hotplug event %#06x\n", events);
616                 return IRQ_HANDLED;
617         }
618
619         /* Check Attention Button Pressed */
620         if (events & PCI_EXP_SLTSTA_ABP) {
621                 ctrl_info(ctrl, "Slot(%s): Attention button pressed\n",
622                           slot_name(slot));
623                 pciehp_queue_interrupt_event(slot, INT_BUTTON_PRESS);
624         }
625
626         /* Check Presence Detect Changed */
627         if (events & PCI_EXP_SLTSTA_PDC) {
628                 present = !!(status & PCI_EXP_SLTSTA_PDS);
629                 ctrl_info(ctrl, "Slot(%s): Card %spresent\n", slot_name(slot),
630                           present ? "" : "not ");
631                 pciehp_queue_interrupt_event(slot, present ? INT_PRESENCE_ON :
632                                              INT_PRESENCE_OFF);
633         }
634
635         /* Check Power Fault Detected */
636         if ((events & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) {
637                 ctrl->power_fault_detected = 1;
638                 ctrl_err(ctrl, "Slot(%s): Power fault\n", slot_name(slot));
639                 pciehp_queue_interrupt_event(slot, INT_POWER_FAULT);
640         }
641
642         if (events & PCI_EXP_SLTSTA_DLLSC) {
643                 ctrl_info(ctrl, "Slot(%s): Link %s\n", slot_name(slot),
644                           link ? "Up" : "Down");
645                 pciehp_queue_interrupt_event(slot, link ? INT_LINK_UP :
646                                              INT_LINK_DOWN);
647         }
648
649         return IRQ_HANDLED;
650 }
651
652 static 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
671 static void pcie_enable_notification(struct controller *ctrl)
672 {
673         u16 cmd, mask;
674
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          */
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;
692         if (ATTN_BUTTN(ctrl))
693                 cmd |= PCI_EXP_SLTCTL_ABPE;
694         else
695                 cmd |= PCI_EXP_SLTCTL_PDCE;
696         if (!pciehp_poll_mode)
697                 cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
698
699         mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
700                 PCI_EXP_SLTCTL_PFDE |
701                 PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
702                 PCI_EXP_SLTCTL_DLLSCE);
703
704         pcie_write_cmd_nowait(ctrl, cmd, mask);
705         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
706                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, cmd);
707 }
708
709 void pcie_reenable_notification(struct controller *ctrl)
710 {
711         /*
712          * Clear both Presence and Data Link Layer Changed to make sure
713          * those events still fire after we have re-enabled them.
714          */
715         pcie_capability_write_word(ctrl->pcie->port, PCI_EXP_SLTSTA,
716                                    PCI_EXP_SLTSTA_PDC | PCI_EXP_SLTSTA_DLLSC);
717         pcie_enable_notification(ctrl);
718 }
719
720 static void pcie_disable_notification(struct controller *ctrl)
721 {
722         u16 mask;
723
724         mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
725                 PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
726                 PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
727                 PCI_EXP_SLTCTL_DLLSCE);
728         pcie_write_cmd(ctrl, 0, mask);
729         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
730                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, 0);
731 }
732
733 /*
734  * pciehp has a 1:1 bus:slot relationship so we ultimately want a secondary
735  * bus reset of the bridge, but at the same time we want to ensure that it is
736  * not seen as a hot-unplug, followed by the hot-plug of the device. Thus,
737  * disable link state notification and presence detection change notification
738  * momentarily, if we see that they could interfere. Also, clear any spurious
739  * events after.
740  */
741 int pciehp_reset_slot(struct slot *slot, int probe)
742 {
743         struct controller *ctrl = slot->ctrl;
744         struct pci_dev *pdev = ctrl_dev(ctrl);
745         u16 stat_mask = 0, ctrl_mask = 0;
746
747         if (probe)
748                 return 0;
749
750         if (!ATTN_BUTTN(ctrl)) {
751                 ctrl_mask |= PCI_EXP_SLTCTL_PDCE;
752                 stat_mask |= PCI_EXP_SLTSTA_PDC;
753         }
754         ctrl_mask |= PCI_EXP_SLTCTL_DLLSCE;
755         stat_mask |= PCI_EXP_SLTSTA_DLLSC;
756
757         pcie_write_cmd(ctrl, 0, ctrl_mask);
758         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
759                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, 0);
760         if (pciehp_poll_mode)
761                 del_timer_sync(&ctrl->poll_timer);
762
763         pci_reset_bridge_secondary_bus(ctrl->pcie->port);
764
765         pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, stat_mask);
766         pcie_write_cmd_nowait(ctrl, ctrl_mask, ctrl_mask);
767         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
768                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, ctrl_mask);
769         if (pciehp_poll_mode)
770                 int_poll_timeout(ctrl->poll_timer.data);
771
772         return 0;
773 }
774
775 int pcie_init_notification(struct controller *ctrl)
776 {
777         if (pciehp_request_irq(ctrl))
778                 return -1;
779         pcie_enable_notification(ctrl);
780         ctrl->notification_enabled = 1;
781         return 0;
782 }
783
784 void pcie_shutdown_notification(struct controller *ctrl)
785 {
786         if (ctrl->notification_enabled) {
787                 pcie_disable_notification(ctrl);
788                 pciehp_free_irq(ctrl);
789                 ctrl->notification_enabled = 0;
790         }
791 }
792
793 static int pcie_init_slot(struct controller *ctrl)
794 {
795         struct slot *slot;
796
797         slot = kzalloc(sizeof(*slot), GFP_KERNEL);
798         if (!slot)
799                 return -ENOMEM;
800
801         slot->wq = alloc_workqueue("pciehp-%u", 0, 0, PSN(ctrl));
802         if (!slot->wq)
803                 goto abort;
804
805         slot->ctrl = ctrl;
806         mutex_init(&slot->lock);
807         mutex_init(&slot->hotplug_lock);
808         INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
809         ctrl->slot = slot;
810         return 0;
811 abort:
812         kfree(slot);
813         return -ENOMEM;
814 }
815
816 static void pcie_cleanup_slot(struct controller *ctrl)
817 {
818         struct slot *slot = ctrl->slot;
819
820         destroy_workqueue(slot->wq);
821         kfree(slot);
822 }
823
824 static inline void dbg_ctrl(struct controller *ctrl)
825 {
826         struct pci_dev *pdev = ctrl->pcie->port;
827         u16 reg16;
828
829         if (!pciehp_debug)
830                 return;
831
832         ctrl_info(ctrl, "Slot Capabilities      : 0x%08x\n", ctrl->slot_cap);
833         pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &reg16);
834         ctrl_info(ctrl, "Slot Status            : 0x%04x\n", reg16);
835         pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &reg16);
836         ctrl_info(ctrl, "Slot Control           : 0x%04x\n", reg16);
837 }
838
839 #define FLAG(x, y)      (((x) & (y)) ? '+' : '-')
840
841 struct controller *pcie_init(struct pcie_device *dev)
842 {
843         struct controller *ctrl;
844         u32 slot_cap, link_cap;
845         struct pci_dev *pdev = dev->port;
846
847         ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
848         if (!ctrl) {
849                 dev_err(&dev->device, "%s: Out of memory\n", __func__);
850                 goto abort;
851         }
852         ctrl->pcie = dev;
853         pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &slot_cap);
854
855         if (pdev->hotplug_user_indicators)
856                 slot_cap &= ~(PCI_EXP_SLTCAP_AIP | PCI_EXP_SLTCAP_PIP);
857
858         ctrl->slot_cap = slot_cap;
859         mutex_init(&ctrl->ctrl_lock);
860         init_waitqueue_head(&ctrl->queue);
861         dbg_ctrl(ctrl);
862
863         /* Check if Data Link Layer Link Active Reporting is implemented */
864         pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &link_cap);
865         if (link_cap & PCI_EXP_LNKCAP_DLLLARC)
866                 ctrl->link_active_reporting = 1;
867
868         /* Clear all remaining event bits in Slot Status register */
869         pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
870                 PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
871                 PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
872                 PCI_EXP_SLTSTA_CC | PCI_EXP_SLTSTA_DLLSC);
873
874         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",
875                 (slot_cap & PCI_EXP_SLTCAP_PSN) >> 19,
876                 FLAG(slot_cap, PCI_EXP_SLTCAP_ABP),
877                 FLAG(slot_cap, PCI_EXP_SLTCAP_PCP),
878                 FLAG(slot_cap, PCI_EXP_SLTCAP_MRLSP),
879                 FLAG(slot_cap, PCI_EXP_SLTCAP_AIP),
880                 FLAG(slot_cap, PCI_EXP_SLTCAP_PIP),
881                 FLAG(slot_cap, PCI_EXP_SLTCAP_HPC),
882                 FLAG(slot_cap, PCI_EXP_SLTCAP_HPS),
883                 FLAG(slot_cap, PCI_EXP_SLTCAP_EIP),
884                 FLAG(slot_cap, PCI_EXP_SLTCAP_NCCS),
885                 FLAG(link_cap, PCI_EXP_LNKCAP_DLLLARC));
886
887         if (pcie_init_slot(ctrl))
888                 goto abort_ctrl;
889
890         return ctrl;
891
892 abort_ctrl:
893         kfree(ctrl);
894 abort:
895         return NULL;
896 }
897
898 void pciehp_release_ctrl(struct controller *ctrl)
899 {
900         pcie_cleanup_slot(ctrl);
901         kfree(ctrl);
902 }