]> Pileus Git - ~andy/linux/blob - drivers/pci/hotplug/pciehp_hpc.c
cb3100af7e8c8e6d707713719392c0bd586333f8
[~andy/linux] / 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 /* Power Control Command */
50 #define POWER_ON        0
51 #define POWER_OFF       PCI_EXP_SLTCTL_PCC
52
53 static irqreturn_t pcie_isr(int irq, void *dev_id);
54 static void start_int_poll_timer(struct controller *ctrl, int sec);
55
56 /* This is the interrupt polling timeout function. */
57 static void int_poll_timeout(unsigned long data)
58 {
59         struct controller *ctrl = (struct controller *)data;
60
61         /* Poll for interrupt events.  regs == NULL => polling */
62         pcie_isr(0, ctrl);
63
64         init_timer(&ctrl->poll_timer);
65         if (!pciehp_poll_time)
66                 pciehp_poll_time = 2; /* default polling interval is 2 sec */
67
68         start_int_poll_timer(ctrl, pciehp_poll_time);
69 }
70
71 /* This function starts the interrupt polling timer. */
72 static void start_int_poll_timer(struct controller *ctrl, int sec)
73 {
74         /* Clamp to sane value */
75         if ((sec <= 0) || (sec > 60))
76                 sec = 2;
77
78         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);
82 }
83
84 static inline int pciehp_request_irq(struct controller *ctrl)
85 {
86         int retval, irq = ctrl->pcie->irq;
87
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)
98                 ctrl_err(ctrl, "Cannot get irq %d for the hotplug controller\n",
99                          irq);
100         return retval;
101 }
102
103 static inline void pciehp_free_irq(struct controller *ctrl)
104 {
105         if (pciehp_poll_mode)
106                 del_timer_sync(&ctrl->poll_timer);
107         else
108                 free_irq(ctrl->pcie->irq, ctrl);
109 }
110
111 static int pcie_poll_cmd(struct controller *ctrl)
112 {
113         struct pci_dev *pdev = ctrl_dev(ctrl);
114         u16 slot_status;
115         int timeout = 1000;
116
117         pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
118         if (slot_status & PCI_EXP_SLTSTA_CC) {
119                 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
120                                            PCI_EXP_SLTSTA_CC);
121                 return 1;
122         }
123         while (timeout > 0) {
124                 msleep(10);
125                 timeout -= 10;
126                 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
127                 if (slot_status & PCI_EXP_SLTSTA_CC) {
128                         pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
129                                                    PCI_EXP_SLTSTA_CC);
130                         return 1;
131                 }
132         }
133         return 0;       /* timeout */
134 }
135
136 static void pcie_wait_cmd(struct controller *ctrl, int poll)
137 {
138         unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
139         unsigned long timeout = msecs_to_jiffies(msecs);
140         int rc;
141
142         if (poll)
143                 rc = pcie_poll_cmd(ctrl);
144         else
145                 rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout);
146         if (!rc)
147                 ctrl_dbg(ctrl, "Command not completed in 1000 msec\n");
148 }
149
150 /**
151  * pcie_write_cmd - Issue controller command
152  * @ctrl: controller to which the command is issued
153  * @cmd:  command value written to slot control register
154  * @mask: bitmask of slot control register to be modified
155  */
156 static void pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
157 {
158         struct pci_dev *pdev = ctrl_dev(ctrl);
159         u16 slot_status;
160         u16 slot_ctrl;
161
162         mutex_lock(&ctrl->ctrl_lock);
163
164         pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
165         if (slot_status & PCI_EXP_SLTSTA_CC) {
166                 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                          */
172                         ctrl_dbg(ctrl, "CMD_COMPLETED not clear after 1 sec\n");
173                 } else if (!NO_CMD_CMPL(ctrl)) {
174                         /*
175                          * This controller seems to notify of command completed
176                          * event even though it supports none of power
177                          * controller, attention led, power led and EMI.
178                          */
179                         ctrl_dbg(ctrl, "Unexpected CMD_COMPLETED. Need to "
180                                  "wait for command completed event.\n");
181                         ctrl->no_cmd_complete = 0;
182                 } else {
183                         ctrl_dbg(ctrl, "Unexpected CMD_COMPLETED. Maybe "
184                                  "the controller is broken.\n");
185                 }
186         }
187
188         pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
189         slot_ctrl &= ~mask;
190         slot_ctrl |= (cmd & mask);
191         ctrl->cmd_busy = 1;
192         smp_mb();
193         pcie_capability_write_word(pdev, PCI_EXP_SLTCTL, slot_ctrl);
194
195         /*
196          * Wait for command completion.
197          */
198         if (!ctrl->no_cmd_complete) {
199                 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                  */
205                 if (!(slot_ctrl & PCI_EXP_SLTCTL_HPIE) ||
206                     !(slot_ctrl & PCI_EXP_SLTCTL_CCIE))
207                         poll = 1;
208                 pcie_wait_cmd(ctrl, poll);
209         }
210         mutex_unlock(&ctrl->ctrl_lock);
211 }
212
213 static bool check_link_active(struct controller *ctrl)
214 {
215         struct pci_dev *pdev = ctrl_dev(ctrl);
216         u16 lnk_status;
217         bool ret;
218
219         pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
220         ret = !!(lnk_status & PCI_EXP_LNKSTA_DLLLA);
221
222         if (ret)
223                 ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
224
225         return ret;
226 }
227
228 static void __pcie_wait_link_active(struct controller *ctrl, bool active)
229 {
230         int timeout = 1000;
231
232         if (check_link_active(ctrl) == active)
233                 return;
234         while (timeout > 0) {
235                 msleep(10);
236                 timeout -= 10;
237                 if (check_link_active(ctrl) == active)
238                         return;
239         }
240         ctrl_dbg(ctrl, "Data Link Layer Link Active not %s in 1000 msec\n",
241                         active ? "set" : "cleared");
242 }
243
244 static void pcie_wait_link_active(struct controller *ctrl)
245 {
246         __pcie_wait_link_active(ctrl, true);
247 }
248
249 static void pcie_wait_link_not_active(struct controller *ctrl)
250 {
251         __pcie_wait_link_active(ctrl, false);
252 }
253
254 static bool pci_bus_check_dev(struct pci_bus *bus, int devfn)
255 {
256         u32 l;
257         int count = 0;
258         int delay = 1000, step = 20;
259         bool found = false;
260
261         do {
262                 found = pci_bus_read_dev_vendor_id(bus, devfn, &l, 0);
263                 count++;
264
265                 if (found)
266                         break;
267
268                 msleep(step);
269                 delay -= step;
270         } while (delay > 0);
271
272         if (count > 1 && pciehp_debug)
273                 printk(KERN_DEBUG "pci %04x:%02x:%02x.%d id reading try %d times with interval %d ms to get %08x\n",
274                         pci_domain_nr(bus), bus->number, PCI_SLOT(devfn),
275                         PCI_FUNC(devfn), count, step, l);
276
277         return found;
278 }
279
280 int pciehp_check_link_status(struct controller *ctrl)
281 {
282         struct pci_dev *pdev = ctrl_dev(ctrl);
283         bool found;
284         u16 lnk_status;
285
286         /*
287          * Data Link Layer Link Active Reporting must be capable for
288          * hot-plug capable downstream port. But old controller might
289          * not implement it. In this case, we wait for 1000 ms.
290          */
291         if (ctrl->link_active_reporting)
292                 pcie_wait_link_active(ctrl);
293         else
294                 msleep(1000);
295
296         /* wait 100ms before read pci conf, and try in 1s */
297         msleep(100);
298         found = pci_bus_check_dev(ctrl->pcie->port->subordinate,
299                                         PCI_DEVFN(0, 0));
300
301         pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
302         ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
303         if ((lnk_status & PCI_EXP_LNKSTA_LT) ||
304             !(lnk_status & PCI_EXP_LNKSTA_NLW)) {
305                 ctrl_err(ctrl, "Link Training Error occurs \n");
306                 return -1;
307         }
308
309         pcie_update_link_speed(ctrl->pcie->port->subordinate, lnk_status);
310
311         if (!found)
312                 return -1;
313
314         return 0;
315 }
316
317 static int __pciehp_link_set(struct controller *ctrl, bool enable)
318 {
319         struct pci_dev *pdev = ctrl_dev(ctrl);
320         u16 lnk_ctrl;
321
322         pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &lnk_ctrl);
323
324         if (enable)
325                 lnk_ctrl &= ~PCI_EXP_LNKCTL_LD;
326         else
327                 lnk_ctrl |= PCI_EXP_LNKCTL_LD;
328
329         pcie_capability_write_word(pdev, PCI_EXP_LNKCTL, lnk_ctrl);
330         ctrl_dbg(ctrl, "%s: lnk_ctrl = %x\n", __func__, lnk_ctrl);
331         return 0;
332 }
333
334 static int pciehp_link_enable(struct controller *ctrl)
335 {
336         return __pciehp_link_set(ctrl, true);
337 }
338
339 static int pciehp_link_disable(struct controller *ctrl)
340 {
341         return __pciehp_link_set(ctrl, false);
342 }
343
344 void pciehp_get_attention_status(struct slot *slot, u8 *status)
345 {
346         struct controller *ctrl = slot->ctrl;
347         struct pci_dev *pdev = ctrl_dev(ctrl);
348         u16 slot_ctrl;
349         u8 atten_led_state;
350
351         pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
352         ctrl_dbg(ctrl, "%s: SLOTCTRL %x, value read %x\n", __func__,
353                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
354
355         atten_led_state = (slot_ctrl & PCI_EXP_SLTCTL_AIC) >> 6;
356
357         switch (atten_led_state) {
358         case 0:
359                 *status = 0xFF; /* Reserved */
360                 break;
361         case 1:
362                 *status = 1;    /* On */
363                 break;
364         case 2:
365                 *status = 2;    /* Blink */
366                 break;
367         case 3:
368                 *status = 0;    /* Off */
369                 break;
370         default:
371                 *status = 0xFF;
372                 break;
373         }
374 }
375
376 void pciehp_get_power_status(struct slot *slot, u8 *status)
377 {
378         struct controller *ctrl = slot->ctrl;
379         struct pci_dev *pdev = ctrl_dev(ctrl);
380         u16 slot_ctrl;
381         u8 pwr_state;
382
383         pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
384         ctrl_dbg(ctrl, "%s: SLOTCTRL %x value read %x\n", __func__,
385                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
386
387         pwr_state = (slot_ctrl & PCI_EXP_SLTCTL_PCC) >> 10;
388
389         switch (pwr_state) {
390         case 0:
391                 *status = 1;
392                 break;
393         case 1:
394                 *status = 0;
395                 break;
396         default:
397                 *status = 0xFF;
398                 break;
399         }
400 }
401
402 void pciehp_get_latch_status(struct slot *slot, u8 *status)
403 {
404         struct pci_dev *pdev = ctrl_dev(slot->ctrl);
405         u16 slot_status;
406
407         pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
408         *status = !!(slot_status & PCI_EXP_SLTSTA_MRLSS);
409 }
410
411 void pciehp_get_adapter_status(struct slot *slot, u8 *status)
412 {
413         struct pci_dev *pdev = ctrl_dev(slot->ctrl);
414         u16 slot_status;
415
416         pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
417         *status = !!(slot_status & PCI_EXP_SLTSTA_PDS);
418 }
419
420 int pciehp_query_power_fault(struct slot *slot)
421 {
422         struct pci_dev *pdev = ctrl_dev(slot->ctrl);
423         u16 slot_status;
424
425         pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
426         return !!(slot_status & PCI_EXP_SLTSTA_PFD);
427 }
428
429 void pciehp_set_attention_status(struct slot *slot, u8 value)
430 {
431         struct controller *ctrl = slot->ctrl;
432         u16 slot_cmd;
433         u16 cmd_mask;
434
435         cmd_mask = PCI_EXP_SLTCTL_AIC;
436         switch (value) {
437         case 0 :        /* turn off */
438                 slot_cmd = 0x00C0;
439                 break;
440         case 1:         /* turn on */
441                 slot_cmd = 0x0040;
442                 break;
443         case 2:         /* turn blink */
444                 slot_cmd = 0x0080;
445                 break;
446         default:
447                 return;
448         }
449         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
450                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
451         pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
452 }
453
454 void pciehp_green_led_on(struct slot *slot)
455 {
456         struct controller *ctrl = slot->ctrl;
457         u16 slot_cmd;
458         u16 cmd_mask;
459
460         slot_cmd = 0x0100;
461         cmd_mask = PCI_EXP_SLTCTL_PIC;
462         pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
463         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
464                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
465 }
466
467 void pciehp_green_led_off(struct slot *slot)
468 {
469         struct controller *ctrl = slot->ctrl;
470         u16 slot_cmd;
471         u16 cmd_mask;
472
473         slot_cmd = 0x0300;
474         cmd_mask = PCI_EXP_SLTCTL_PIC;
475         pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
476         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
477                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
478 }
479
480 void pciehp_green_led_blink(struct slot *slot)
481 {
482         struct controller *ctrl = slot->ctrl;
483         u16 slot_cmd;
484         u16 cmd_mask;
485
486         slot_cmd = 0x0200;
487         cmd_mask = PCI_EXP_SLTCTL_PIC;
488         pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
489         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
490                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
491 }
492
493 int pciehp_power_on_slot(struct slot * slot)
494 {
495         struct controller *ctrl = slot->ctrl;
496         struct pci_dev *pdev = ctrl_dev(ctrl);
497         u16 slot_cmd;
498         u16 cmd_mask;
499         u16 slot_status;
500         int retval;
501
502         /* Clear sticky power-fault bit from previous power failures */
503         pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
504         if (slot_status & PCI_EXP_SLTSTA_PFD)
505                 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
506                                            PCI_EXP_SLTSTA_PFD);
507         ctrl->power_fault_detected = 0;
508
509         slot_cmd = POWER_ON;
510         cmd_mask = PCI_EXP_SLTCTL_PCC;
511         pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
512         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
513                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
514
515         retval = pciehp_link_enable(ctrl);
516         if (retval)
517                 ctrl_err(ctrl, "%s: Can not enable the link!\n", __func__);
518
519         return retval;
520 }
521
522 void pciehp_power_off_slot(struct slot * slot)
523 {
524         struct controller *ctrl = slot->ctrl;
525         u16 slot_cmd;
526         u16 cmd_mask;
527
528         /* Disable the link at first */
529         pciehp_link_disable(ctrl);
530         /* wait the link is down */
531         if (ctrl->link_active_reporting)
532                 pcie_wait_link_not_active(ctrl);
533         else
534                 msleep(1000);
535
536         slot_cmd = POWER_OFF;
537         cmd_mask = PCI_EXP_SLTCTL_PCC;
538         pcie_write_cmd(ctrl, slot_cmd, cmd_mask);
539         ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
540                  pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_cmd);
541 }
542
543 static irqreturn_t pcie_isr(int irq, void *dev_id)
544 {
545         struct controller *ctrl = (struct controller *)dev_id;
546         struct pci_dev *pdev = ctrl_dev(ctrl);
547         struct slot *slot = ctrl->slot;
548         u16 detected, intr_loc;
549
550         /*
551          * In order to guarantee that all interrupt events are
552          * serviced, we need to re-inspect Slot Status register after
553          * clearing what is presumed to be the last pending interrupt.
554          */
555         intr_loc = 0;
556         do {
557                 pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &detected);
558
559                 detected &= (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
560                              PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_PDC |
561                              PCI_EXP_SLTSTA_CC);
562                 detected &= ~intr_loc;
563                 intr_loc |= detected;
564                 if (!intr_loc)
565                         return IRQ_NONE;
566                 if (detected)
567                         pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
568                                                    intr_loc);
569         } while (detected);
570
571         ctrl_dbg(ctrl, "%s: intr_loc %x\n", __func__, intr_loc);
572
573         /* Check Command Complete Interrupt Pending */
574         if (intr_loc & PCI_EXP_SLTSTA_CC) {
575                 ctrl->cmd_busy = 0;
576                 smp_mb();
577                 wake_up(&ctrl->queue);
578         }
579
580         if (!(intr_loc & ~PCI_EXP_SLTSTA_CC))
581                 return IRQ_HANDLED;
582
583         /* Check MRL Sensor Changed */
584         if (intr_loc & PCI_EXP_SLTSTA_MRLSC)
585                 pciehp_handle_switch_change(slot);
586
587         /* Check Attention Button Pressed */
588         if (intr_loc & PCI_EXP_SLTSTA_ABP)
589                 pciehp_handle_attention_button(slot);
590
591         /* Check Presence Detect Changed */
592         if (intr_loc & PCI_EXP_SLTSTA_PDC)
593                 pciehp_handle_presence_change(slot);
594
595         /* Check Power Fault Detected */
596         if ((intr_loc & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) {
597                 ctrl->power_fault_detected = 1;
598                 pciehp_handle_power_fault(slot);
599         }
600         return IRQ_HANDLED;
601 }
602
603 void pcie_enable_notification(struct controller *ctrl)
604 {
605         u16 cmd, mask;
606
607         /*
608          * TBD: Power fault detected software notification support.
609          *
610          * Power fault detected software notification is not enabled
611          * now, because it caused power fault detected interrupt storm
612          * on some machines. On those machines, power fault detected
613          * bit in the slot status register was set again immediately
614          * when it is cleared in the interrupt service routine, and
615          * next power fault detected interrupt was notified again.
616          */
617         cmd = PCI_EXP_SLTCTL_PDCE;
618         if (ATTN_BUTTN(ctrl))
619                 cmd |= PCI_EXP_SLTCTL_ABPE;
620         if (MRL_SENS(ctrl))
621                 cmd |= PCI_EXP_SLTCTL_MRLSCE;
622         if (!pciehp_poll_mode)
623                 cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
624
625         mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
626                 PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
627                 PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE);
628
629         pcie_write_cmd(ctrl, cmd, mask);
630 }
631
632 static void pcie_disable_notification(struct controller *ctrl)
633 {
634         u16 mask;
635
636         mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
637                 PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
638                 PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
639                 PCI_EXP_SLTCTL_DLLSCE);
640         pcie_write_cmd(ctrl, 0, mask);
641 }
642
643 /*
644  * pciehp has a 1:1 bus:slot relationship so we ultimately want a secondary
645  * bus reset of the bridge, but if the slot supports surprise removal we need
646  * to disable presence detection around the bus reset and clear any spurious
647  * events after.
648  */
649 int pciehp_reset_slot(struct slot *slot, int probe)
650 {
651         struct controller *ctrl = slot->ctrl;
652         struct pci_dev *pdev = ctrl_dev(ctrl);
653
654         if (probe)
655                 return 0;
656
657         if (HP_SUPR_RM(ctrl)) {
658                 pcie_write_cmd(ctrl, 0, PCI_EXP_SLTCTL_PDCE);
659                 if (pciehp_poll_mode)
660                         del_timer_sync(&ctrl->poll_timer);
661         }
662
663         pci_reset_bridge_secondary_bus(ctrl->pcie->port);
664
665         if (HP_SUPR_RM(ctrl)) {
666                 pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
667                                            PCI_EXP_SLTSTA_PDC);
668                 pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PDCE, PCI_EXP_SLTCTL_PDCE);
669                 if (pciehp_poll_mode)
670                         int_poll_timeout(ctrl->poll_timer.data);
671         }
672
673         return 0;
674 }
675
676 int pcie_init_notification(struct controller *ctrl)
677 {
678         if (pciehp_request_irq(ctrl))
679                 return -1;
680         pcie_enable_notification(ctrl);
681         ctrl->notification_enabled = 1;
682         return 0;
683 }
684
685 static void pcie_shutdown_notification(struct controller *ctrl)
686 {
687         if (ctrl->notification_enabled) {
688                 pcie_disable_notification(ctrl);
689                 pciehp_free_irq(ctrl);
690                 ctrl->notification_enabled = 0;
691         }
692 }
693
694 static int pcie_init_slot(struct controller *ctrl)
695 {
696         struct slot *slot;
697
698         slot = kzalloc(sizeof(*slot), GFP_KERNEL);
699         if (!slot)
700                 return -ENOMEM;
701
702         slot->wq = alloc_workqueue("pciehp-%u", 0, 0, PSN(ctrl));
703         if (!slot->wq)
704                 goto abort;
705
706         slot->ctrl = ctrl;
707         mutex_init(&slot->lock);
708         INIT_DELAYED_WORK(&slot->work, pciehp_queue_pushbutton_work);
709         ctrl->slot = slot;
710         return 0;
711 abort:
712         kfree(slot);
713         return -ENOMEM;
714 }
715
716 static void pcie_cleanup_slot(struct controller *ctrl)
717 {
718         struct slot *slot = ctrl->slot;
719         cancel_delayed_work(&slot->work);
720         destroy_workqueue(slot->wq);
721         kfree(slot);
722 }
723
724 static inline void dbg_ctrl(struct controller *ctrl)
725 {
726         int i;
727         u16 reg16;
728         struct pci_dev *pdev = ctrl->pcie->port;
729
730         if (!pciehp_debug)
731                 return;
732
733         ctrl_info(ctrl, "Hotplug Controller:\n");
734         ctrl_info(ctrl, "  Seg/Bus/Dev/Func/IRQ : %s IRQ %d\n",
735                   pci_name(pdev), pdev->irq);
736         ctrl_info(ctrl, "  Vendor ID            : 0x%04x\n", pdev->vendor);
737         ctrl_info(ctrl, "  Device ID            : 0x%04x\n", pdev->device);
738         ctrl_info(ctrl, "  Subsystem ID         : 0x%04x\n",
739                   pdev->subsystem_device);
740         ctrl_info(ctrl, "  Subsystem Vendor ID  : 0x%04x\n",
741                   pdev->subsystem_vendor);
742         ctrl_info(ctrl, "  PCIe Cap offset      : 0x%02x\n",
743                   pci_pcie_cap(pdev));
744         for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
745                 if (!pci_resource_len(pdev, i))
746                         continue;
747                 ctrl_info(ctrl, "  PCI resource [%d]     : %pR\n",
748                           i, &pdev->resource[i]);
749         }
750         ctrl_info(ctrl, "Slot Capabilities      : 0x%08x\n", ctrl->slot_cap);
751         ctrl_info(ctrl, "  Physical Slot Number : %d\n", PSN(ctrl));
752         ctrl_info(ctrl, "  Attention Button     : %3s\n",
753                   ATTN_BUTTN(ctrl) ? "yes" : "no");
754         ctrl_info(ctrl, "  Power Controller     : %3s\n",
755                   POWER_CTRL(ctrl) ? "yes" : "no");
756         ctrl_info(ctrl, "  MRL Sensor           : %3s\n",
757                   MRL_SENS(ctrl)   ? "yes" : "no");
758         ctrl_info(ctrl, "  Attention Indicator  : %3s\n",
759                   ATTN_LED(ctrl)   ? "yes" : "no");
760         ctrl_info(ctrl, "  Power Indicator      : %3s\n",
761                   PWR_LED(ctrl)    ? "yes" : "no");
762         ctrl_info(ctrl, "  Hot-Plug Surprise    : %3s\n",
763                   HP_SUPR_RM(ctrl) ? "yes" : "no");
764         ctrl_info(ctrl, "  EMI Present          : %3s\n",
765                   EMI(ctrl)        ? "yes" : "no");
766         ctrl_info(ctrl, "  Command Completed    : %3s\n",
767                   NO_CMD_CMPL(ctrl) ? "no" : "yes");
768         pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &reg16);
769         ctrl_info(ctrl, "Slot Status            : 0x%04x\n", reg16);
770         pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &reg16);
771         ctrl_info(ctrl, "Slot Control           : 0x%04x\n", reg16);
772 }
773
774 #define FLAG(x,y)       (((x) & (y)) ? '+' : '-')
775
776 struct controller *pcie_init(struct pcie_device *dev)
777 {
778         struct controller *ctrl;
779         u32 slot_cap, link_cap;
780         struct pci_dev *pdev = dev->port;
781
782         ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
783         if (!ctrl) {
784                 dev_err(&dev->device, "%s: Out of memory\n", __func__);
785                 goto abort;
786         }
787         ctrl->pcie = dev;
788         pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &slot_cap);
789         ctrl->slot_cap = slot_cap;
790         mutex_init(&ctrl->ctrl_lock);
791         init_waitqueue_head(&ctrl->queue);
792         dbg_ctrl(ctrl);
793         /*
794          * Controller doesn't notify of command completion if the "No
795          * Command Completed Support" bit is set in Slot Capability
796          * register or the controller supports none of power
797          * controller, attention led, power led and EMI.
798          */
799         if (NO_CMD_CMPL(ctrl) ||
800             !(POWER_CTRL(ctrl) | ATTN_LED(ctrl) | PWR_LED(ctrl) | EMI(ctrl)))
801             ctrl->no_cmd_complete = 1;
802
803         /* Check if Data Link Layer Link Active Reporting is implemented */
804         pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &link_cap);
805         if (link_cap & PCI_EXP_LNKCAP_DLLLARC) {
806                 ctrl_dbg(ctrl, "Link Active Reporting supported\n");
807                 ctrl->link_active_reporting = 1;
808         }
809
810         /* Clear all remaining event bits in Slot Status register */
811         pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, 0x1f);
812
813         /* Disable software notification */
814         pcie_disable_notification(ctrl);
815
816         ctrl_info(ctrl, "Slot #%d AttnBtn%c AttnInd%c PwrInd%c PwrCtrl%c MRL%c Interlock%c NoCompl%c LLActRep%c\n",
817                 (slot_cap & PCI_EXP_SLTCAP_PSN) >> 19,
818                 FLAG(slot_cap, PCI_EXP_SLTCAP_ABP),
819                 FLAG(slot_cap, PCI_EXP_SLTCAP_AIP),
820                 FLAG(slot_cap, PCI_EXP_SLTCAP_PIP),
821                 FLAG(slot_cap, PCI_EXP_SLTCAP_PCP),
822                 FLAG(slot_cap, PCI_EXP_SLTCAP_MRLSP),
823                 FLAG(slot_cap, PCI_EXP_SLTCAP_EIP),
824                 FLAG(slot_cap, PCI_EXP_SLTCAP_NCCS),
825                 FLAG(link_cap, PCI_EXP_LNKCAP_DLLLARC));
826
827         if (pcie_init_slot(ctrl))
828                 goto abort_ctrl;
829
830         return ctrl;
831
832 abort_ctrl:
833         kfree(ctrl);
834 abort:
835         return NULL;
836 }
837
838 void pciehp_release_ctrl(struct controller *ctrl)
839 {
840         pcie_shutdown_notification(ctrl);
841         pcie_cleanup_slot(ctrl);
842         kfree(ctrl);
843 }