• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * PCI Express PCI Hot Plug Driver
4  *
5  * Copyright (C) 1995,2001 Compaq Computer Corporation
6  * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
7  * Copyright (C) 2001 IBM Corp.
8  * Copyright (C) 2003-2004 Intel Corporation
9  *
10  * All rights reserved.
11  *
12  * Send feedback to <greg@kroah.com>,<kristen.c.accardi@intel.com>
13  */
14 
15 #define dev_fmt(fmt) "pciehp: " fmt
16 
17 #include <linux/kernel.h>
18 #include <linux/types.h>
19 #include <linux/jiffies.h>
20 #include <linux/kthread.h>
21 #include <linux/pci.h>
22 #include <linux/pm_runtime.h>
23 #include <linux/interrupt.h>
24 #include <linux/slab.h>
25 
26 #include "../pci.h"
27 #include "pciehp.h"
28 
ctrl_dev(struct controller * ctrl)29 static inline struct pci_dev *ctrl_dev(struct controller *ctrl)
30 {
31 	return ctrl->pcie->port;
32 }
33 
34 static irqreturn_t pciehp_isr(int irq, void *dev_id);
35 static irqreturn_t pciehp_ist(int irq, void *dev_id);
36 static int pciehp_poll(void *data);
37 
pciehp_request_irq(struct controller * ctrl)38 static inline int pciehp_request_irq(struct controller *ctrl)
39 {
40 	int retval, irq = ctrl->pcie->irq;
41 
42 	if (pciehp_poll_mode) {
43 		ctrl->poll_thread = kthread_run(&pciehp_poll, ctrl,
44 						"pciehp_poll-%s",
45 						slot_name(ctrl));
46 		return PTR_ERR_OR_ZERO(ctrl->poll_thread);
47 	}
48 
49 	/* Installs the interrupt handler */
50 	retval = request_threaded_irq(irq, pciehp_isr, pciehp_ist,
51 				      IRQF_SHARED, "pciehp", ctrl);
52 	if (retval)
53 		ctrl_err(ctrl, "Cannot get irq %d for the hotplug controller\n",
54 			 irq);
55 	return retval;
56 }
57 
pciehp_free_irq(struct controller * ctrl)58 static inline void pciehp_free_irq(struct controller *ctrl)
59 {
60 	if (pciehp_poll_mode)
61 		kthread_stop(ctrl->poll_thread);
62 	else
63 		free_irq(ctrl->pcie->irq, ctrl);
64 }
65 
pcie_poll_cmd(struct controller * ctrl,int timeout)66 static int pcie_poll_cmd(struct controller *ctrl, int timeout)
67 {
68 	struct pci_dev *pdev = ctrl_dev(ctrl);
69 	u16 slot_status;
70 
71 	while (true) {
72 		pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
73 		if (slot_status == (u16) ~0) {
74 			ctrl_info(ctrl, "%s: no response from device\n",
75 				  __func__);
76 			return 0;
77 		}
78 
79 		if (slot_status & PCI_EXP_SLTSTA_CC) {
80 			pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
81 						   PCI_EXP_SLTSTA_CC);
82 			return 1;
83 		}
84 		if (timeout < 0)
85 			break;
86 		msleep(10);
87 		timeout -= 10;
88 	}
89 	return 0;	/* timeout */
90 }
91 
pcie_wait_cmd(struct controller * ctrl)92 static void pcie_wait_cmd(struct controller *ctrl)
93 {
94 	unsigned int msecs = pciehp_poll_mode ? 2500 : 1000;
95 	unsigned long duration = msecs_to_jiffies(msecs);
96 	unsigned long cmd_timeout = ctrl->cmd_started + duration;
97 	unsigned long now, timeout;
98 	int rc;
99 
100 	/*
101 	 * If the controller does not generate notifications for command
102 	 * completions, we never need to wait between writes.
103 	 */
104 	if (NO_CMD_CMPL(ctrl))
105 		return;
106 
107 	if (!ctrl->cmd_busy)
108 		return;
109 
110 	/*
111 	 * Even if the command has already timed out, we want to call
112 	 * pcie_poll_cmd() so it can clear PCI_EXP_SLTSTA_CC.
113 	 */
114 	now = jiffies;
115 	if (time_before_eq(cmd_timeout, now))
116 		timeout = 1;
117 	else
118 		timeout = cmd_timeout - now;
119 
120 	if (ctrl->slot_ctrl & PCI_EXP_SLTCTL_HPIE &&
121 	    ctrl->slot_ctrl & PCI_EXP_SLTCTL_CCIE)
122 		rc = wait_event_timeout(ctrl->queue, !ctrl->cmd_busy, timeout);
123 	else
124 		rc = pcie_poll_cmd(ctrl, jiffies_to_msecs(timeout));
125 
126 	if (!rc)
127 		ctrl_info(ctrl, "Timeout on hotplug command %#06x (issued %u msec ago)\n",
128 			  ctrl->slot_ctrl,
129 			  jiffies_to_msecs(jiffies - ctrl->cmd_started));
130 }
131 
132 #define CC_ERRATUM_MASK		(PCI_EXP_SLTCTL_PCC |	\
133 				 PCI_EXP_SLTCTL_PIC |	\
134 				 PCI_EXP_SLTCTL_AIC |	\
135 				 PCI_EXP_SLTCTL_EIC)
136 
pcie_do_write_cmd(struct controller * ctrl,u16 cmd,u16 mask,bool wait)137 static void pcie_do_write_cmd(struct controller *ctrl, u16 cmd,
138 			      u16 mask, bool wait)
139 {
140 	struct pci_dev *pdev = ctrl_dev(ctrl);
141 	u16 slot_ctrl_orig, slot_ctrl;
142 
143 	mutex_lock(&ctrl->ctrl_lock);
144 
145 	/*
146 	 * Always wait for any previous command that might still be in progress
147 	 */
148 	pcie_wait_cmd(ctrl);
149 
150 	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
151 	if (slot_ctrl == (u16) ~0) {
152 		ctrl_info(ctrl, "%s: no response from device\n", __func__);
153 		goto out;
154 	}
155 
156 	slot_ctrl_orig = slot_ctrl;
157 	slot_ctrl &= ~mask;
158 	slot_ctrl |= (cmd & mask);
159 	ctrl->cmd_busy = 1;
160 	smp_mb();
161 	ctrl->slot_ctrl = slot_ctrl;
162 	pcie_capability_write_word(pdev, PCI_EXP_SLTCTL, slot_ctrl);
163 	ctrl->cmd_started = jiffies;
164 
165 	/*
166 	 * Controllers with the Intel CF118 and similar errata advertise
167 	 * Command Completed support, but they only set Command Completed
168 	 * if we change the "Control" bits for power, power indicator,
169 	 * attention indicator, or interlock.  If we only change the
170 	 * "Enable" bits, they never set the Command Completed bit.
171 	 */
172 	if (pdev->broken_cmd_compl &&
173 	    (slot_ctrl_orig & CC_ERRATUM_MASK) == (slot_ctrl & CC_ERRATUM_MASK))
174 		ctrl->cmd_busy = 0;
175 
176 	/*
177 	 * Optionally wait for the hardware to be ready for a new command,
178 	 * indicating completion of the above issued command.
179 	 */
180 	if (wait)
181 		pcie_wait_cmd(ctrl);
182 
183 out:
184 	mutex_unlock(&ctrl->ctrl_lock);
185 }
186 
187 /**
188  * pcie_write_cmd - Issue controller command
189  * @ctrl: controller to which the command is issued
190  * @cmd:  command value written to slot control register
191  * @mask: bitmask of slot control register to be modified
192  */
pcie_write_cmd(struct controller * ctrl,u16 cmd,u16 mask)193 static void pcie_write_cmd(struct controller *ctrl, u16 cmd, u16 mask)
194 {
195 	pcie_do_write_cmd(ctrl, cmd, mask, true);
196 }
197 
198 /* Same as above without waiting for the hardware to latch */
pcie_write_cmd_nowait(struct controller * ctrl,u16 cmd,u16 mask)199 static void pcie_write_cmd_nowait(struct controller *ctrl, u16 cmd, u16 mask)
200 {
201 	pcie_do_write_cmd(ctrl, cmd, mask, false);
202 }
203 
pciehp_check_link_active(struct controller * ctrl)204 bool pciehp_check_link_active(struct controller *ctrl)
205 {
206 	struct pci_dev *pdev = ctrl_dev(ctrl);
207 	u16 lnk_status;
208 	bool ret;
209 
210 	pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
211 	ret = !!(lnk_status & PCI_EXP_LNKSTA_DLLLA);
212 
213 	if (ret)
214 		ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
215 
216 	return ret;
217 }
218 
pci_bus_check_dev(struct pci_bus * bus,int devfn)219 static bool pci_bus_check_dev(struct pci_bus *bus, int devfn)
220 {
221 	u32 l;
222 	int count = 0;
223 	int delay = 1000, step = 20;
224 	bool found = false;
225 
226 	do {
227 		found = pci_bus_read_dev_vendor_id(bus, devfn, &l, 0);
228 		count++;
229 
230 		if (found)
231 			break;
232 
233 		msleep(step);
234 		delay -= step;
235 	} while (delay > 0);
236 
237 	if (count > 1)
238 		pr_debug("pci %04x:%02x:%02x.%d id reading try %d times with interval %d ms to get %08x\n",
239 			pci_domain_nr(bus), bus->number, PCI_SLOT(devfn),
240 			PCI_FUNC(devfn), count, step, l);
241 
242 	return found;
243 }
244 
pciehp_check_link_status(struct controller * ctrl)245 int pciehp_check_link_status(struct controller *ctrl)
246 {
247 	struct pci_dev *pdev = ctrl_dev(ctrl);
248 	bool found;
249 	u16 lnk_status;
250 
251 	if (!pcie_wait_for_link(pdev, true))
252 		return -1;
253 
254 	found = pci_bus_check_dev(ctrl->pcie->port->subordinate,
255 					PCI_DEVFN(0, 0));
256 
257 	/* ignore link or presence changes up to this point */
258 	if (found)
259 		atomic_and(~(PCI_EXP_SLTSTA_DLLSC | PCI_EXP_SLTSTA_PDC),
260 			   &ctrl->pending_events);
261 
262 	pcie_capability_read_word(pdev, PCI_EXP_LNKSTA, &lnk_status);
263 	ctrl_dbg(ctrl, "%s: lnk_status = %x\n", __func__, lnk_status);
264 	if ((lnk_status & PCI_EXP_LNKSTA_LT) ||
265 	    !(lnk_status & PCI_EXP_LNKSTA_NLW)) {
266 		ctrl_err(ctrl, "link training error: status %#06x\n",
267 			 lnk_status);
268 		return -1;
269 	}
270 
271 	pcie_update_link_speed(ctrl->pcie->port->subordinate, lnk_status);
272 
273 	if (!found)
274 		return -1;
275 
276 	return 0;
277 }
278 
__pciehp_link_set(struct controller * ctrl,bool enable)279 static int __pciehp_link_set(struct controller *ctrl, bool enable)
280 {
281 	struct pci_dev *pdev = ctrl_dev(ctrl);
282 	u16 lnk_ctrl;
283 
284 	pcie_capability_read_word(pdev, PCI_EXP_LNKCTL, &lnk_ctrl);
285 
286 	if (enable)
287 		lnk_ctrl &= ~PCI_EXP_LNKCTL_LD;
288 	else
289 		lnk_ctrl |= PCI_EXP_LNKCTL_LD;
290 
291 	pcie_capability_write_word(pdev, PCI_EXP_LNKCTL, lnk_ctrl);
292 	ctrl_dbg(ctrl, "%s: lnk_ctrl = %x\n", __func__, lnk_ctrl);
293 	return 0;
294 }
295 
pciehp_link_enable(struct controller * ctrl)296 static int pciehp_link_enable(struct controller *ctrl)
297 {
298 	return __pciehp_link_set(ctrl, true);
299 }
300 
pciehp_get_raw_indicator_status(struct hotplug_slot * hotplug_slot,u8 * status)301 int pciehp_get_raw_indicator_status(struct hotplug_slot *hotplug_slot,
302 				    u8 *status)
303 {
304 	struct controller *ctrl = to_ctrl(hotplug_slot);
305 	struct pci_dev *pdev = ctrl_dev(ctrl);
306 	u16 slot_ctrl;
307 
308 	pci_config_pm_runtime_get(pdev);
309 	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
310 	pci_config_pm_runtime_put(pdev);
311 	*status = (slot_ctrl & (PCI_EXP_SLTCTL_AIC | PCI_EXP_SLTCTL_PIC)) >> 6;
312 	return 0;
313 }
314 
pciehp_get_attention_status(struct hotplug_slot * hotplug_slot,u8 * status)315 int pciehp_get_attention_status(struct hotplug_slot *hotplug_slot, u8 *status)
316 {
317 	struct controller *ctrl = to_ctrl(hotplug_slot);
318 	struct pci_dev *pdev = ctrl_dev(ctrl);
319 	u16 slot_ctrl;
320 
321 	pci_config_pm_runtime_get(pdev);
322 	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
323 	pci_config_pm_runtime_put(pdev);
324 	ctrl_dbg(ctrl, "%s: SLOTCTRL %x, value read %x\n", __func__,
325 		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
326 
327 	switch (slot_ctrl & PCI_EXP_SLTCTL_AIC) {
328 	case PCI_EXP_SLTCTL_ATTN_IND_ON:
329 		*status = 1;	/* On */
330 		break;
331 	case PCI_EXP_SLTCTL_ATTN_IND_BLINK:
332 		*status = 2;	/* Blink */
333 		break;
334 	case PCI_EXP_SLTCTL_ATTN_IND_OFF:
335 		*status = 0;	/* Off */
336 		break;
337 	default:
338 		*status = 0xFF;
339 		break;
340 	}
341 
342 	return 0;
343 }
344 
pciehp_get_power_status(struct controller * ctrl,u8 * status)345 void pciehp_get_power_status(struct controller *ctrl, u8 *status)
346 {
347 	struct pci_dev *pdev = ctrl_dev(ctrl);
348 	u16 slot_ctrl;
349 
350 	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &slot_ctrl);
351 	ctrl_dbg(ctrl, "%s: SLOTCTRL %x value read %x\n", __func__,
352 		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, slot_ctrl);
353 
354 	switch (slot_ctrl & PCI_EXP_SLTCTL_PCC) {
355 	case PCI_EXP_SLTCTL_PWR_ON:
356 		*status = 1;	/* On */
357 		break;
358 	case PCI_EXP_SLTCTL_PWR_OFF:
359 		*status = 0;	/* Off */
360 		break;
361 	default:
362 		*status = 0xFF;
363 		break;
364 	}
365 }
366 
pciehp_get_latch_status(struct controller * ctrl,u8 * status)367 void pciehp_get_latch_status(struct controller *ctrl, u8 *status)
368 {
369 	struct pci_dev *pdev = ctrl_dev(ctrl);
370 	u16 slot_status;
371 
372 	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
373 	*status = !!(slot_status & PCI_EXP_SLTSTA_MRLSS);
374 }
375 
pciehp_card_present(struct controller * ctrl)376 bool pciehp_card_present(struct controller *ctrl)
377 {
378 	struct pci_dev *pdev = ctrl_dev(ctrl);
379 	u16 slot_status;
380 
381 	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
382 	return slot_status & PCI_EXP_SLTSTA_PDS;
383 }
384 
385 /**
386  * pciehp_card_present_or_link_active() - whether given slot is occupied
387  * @ctrl: PCIe hotplug controller
388  *
389  * Unlike pciehp_card_present(), which determines presence solely from the
390  * Presence Detect State bit, this helper also returns true if the Link Active
391  * bit is set.  This is a concession to broken hotplug ports which hardwire
392  * Presence Detect State to zero, such as Wilocity's [1ae9:0200].
393  */
pciehp_card_present_or_link_active(struct controller * ctrl)394 bool pciehp_card_present_or_link_active(struct controller *ctrl)
395 {
396 	return pciehp_card_present(ctrl) || pciehp_check_link_active(ctrl);
397 }
398 
pciehp_query_power_fault(struct controller * ctrl)399 int pciehp_query_power_fault(struct controller *ctrl)
400 {
401 	struct pci_dev *pdev = ctrl_dev(ctrl);
402 	u16 slot_status;
403 
404 	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
405 	return !!(slot_status & PCI_EXP_SLTSTA_PFD);
406 }
407 
pciehp_set_raw_indicator_status(struct hotplug_slot * hotplug_slot,u8 status)408 int pciehp_set_raw_indicator_status(struct hotplug_slot *hotplug_slot,
409 				    u8 status)
410 {
411 	struct controller *ctrl = to_ctrl(hotplug_slot);
412 	struct pci_dev *pdev = ctrl_dev(ctrl);
413 
414 	pci_config_pm_runtime_get(pdev);
415 	pcie_write_cmd_nowait(ctrl, status << 6,
416 			      PCI_EXP_SLTCTL_AIC | PCI_EXP_SLTCTL_PIC);
417 	pci_config_pm_runtime_put(pdev);
418 	return 0;
419 }
420 
421 /**
422  * pciehp_set_indicators() - set attention indicator, power indicator, or both
423  * @ctrl: PCIe hotplug controller
424  * @pwr: one of:
425  *	PCI_EXP_SLTCTL_PWR_IND_ON
426  *	PCI_EXP_SLTCTL_PWR_IND_BLINK
427  *	PCI_EXP_SLTCTL_PWR_IND_OFF
428  * @attn: one of:
429  *	PCI_EXP_SLTCTL_ATTN_IND_ON
430  *	PCI_EXP_SLTCTL_ATTN_IND_BLINK
431  *	PCI_EXP_SLTCTL_ATTN_IND_OFF
432  *
433  * Either @pwr or @attn can also be INDICATOR_NOOP to leave that indicator
434  * unchanged.
435  */
pciehp_set_indicators(struct controller * ctrl,int pwr,int attn)436 void pciehp_set_indicators(struct controller *ctrl, int pwr, int attn)
437 {
438 	u16 cmd = 0, mask = 0;
439 
440 	if (PWR_LED(ctrl) && pwr != INDICATOR_NOOP) {
441 		cmd |= (pwr & PCI_EXP_SLTCTL_PIC);
442 		mask |= PCI_EXP_SLTCTL_PIC;
443 	}
444 
445 	if (ATTN_LED(ctrl) && attn != INDICATOR_NOOP) {
446 		cmd |= (attn & PCI_EXP_SLTCTL_AIC);
447 		mask |= PCI_EXP_SLTCTL_AIC;
448 	}
449 
450 	if (cmd) {
451 		pcie_write_cmd_nowait(ctrl, cmd, mask);
452 		ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
453 			 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, cmd);
454 	}
455 }
456 
pciehp_power_on_slot(struct controller * ctrl)457 int pciehp_power_on_slot(struct controller *ctrl)
458 {
459 	struct pci_dev *pdev = ctrl_dev(ctrl);
460 	u16 slot_status;
461 	int retval;
462 
463 	/* Clear power-fault bit from previous power failures */
464 	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &slot_status);
465 	if (slot_status & PCI_EXP_SLTSTA_PFD)
466 		pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
467 					   PCI_EXP_SLTSTA_PFD);
468 	ctrl->power_fault_detected = 0;
469 
470 	pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_ON, PCI_EXP_SLTCTL_PCC);
471 	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
472 		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
473 		 PCI_EXP_SLTCTL_PWR_ON);
474 
475 	retval = pciehp_link_enable(ctrl);
476 	if (retval)
477 		ctrl_err(ctrl, "%s: Can not enable the link!\n", __func__);
478 
479 	return retval;
480 }
481 
pciehp_power_off_slot(struct controller * ctrl)482 void pciehp_power_off_slot(struct controller *ctrl)
483 {
484 	pcie_write_cmd(ctrl, PCI_EXP_SLTCTL_PWR_OFF, PCI_EXP_SLTCTL_PCC);
485 	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
486 		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL,
487 		 PCI_EXP_SLTCTL_PWR_OFF);
488 }
489 
pciehp_isr(int irq,void * dev_id)490 static irqreturn_t pciehp_isr(int irq, void *dev_id)
491 {
492 	struct controller *ctrl = (struct controller *)dev_id;
493 	struct pci_dev *pdev = ctrl_dev(ctrl);
494 	struct device *parent = pdev->dev.parent;
495 	u16 status, events;
496 
497 	/*
498 	 * Interrupts only occur in D3hot or shallower and only if enabled
499 	 * in the Slot Control register (PCIe r4.0, sec 6.7.3.4).
500 	 */
501 	if (pdev->current_state == PCI_D3cold ||
502 	    (!(ctrl->slot_ctrl & PCI_EXP_SLTCTL_HPIE) && !pciehp_poll_mode))
503 		return IRQ_NONE;
504 
505 	/*
506 	 * Keep the port accessible by holding a runtime PM ref on its parent.
507 	 * Defer resume of the parent to the IRQ thread if it's suspended.
508 	 * Mask the interrupt until then.
509 	 */
510 	if (parent) {
511 		pm_runtime_get_noresume(parent);
512 		if (!pm_runtime_active(parent)) {
513 			pm_runtime_put(parent);
514 			disable_irq_nosync(irq);
515 			atomic_or(RERUN_ISR, &ctrl->pending_events);
516 			return IRQ_WAKE_THREAD;
517 		}
518 	}
519 
520 	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &status);
521 	if (status == (u16) ~0) {
522 		ctrl_info(ctrl, "%s: no response from device\n", __func__);
523 		if (parent)
524 			pm_runtime_put(parent);
525 		return IRQ_NONE;
526 	}
527 
528 	/*
529 	 * Slot Status contains plain status bits as well as event
530 	 * notification bits; right now we only want the event bits.
531 	 */
532 	events = status & (PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
533 			   PCI_EXP_SLTSTA_PDC | PCI_EXP_SLTSTA_CC |
534 			   PCI_EXP_SLTSTA_DLLSC);
535 
536 	/*
537 	 * If we've already reported a power fault, don't report it again
538 	 * until we've done something to handle it.
539 	 */
540 	if (ctrl->power_fault_detected)
541 		events &= ~PCI_EXP_SLTSTA_PFD;
542 
543 	if (!events) {
544 		if (parent)
545 			pm_runtime_put(parent);
546 		return IRQ_NONE;
547 	}
548 
549 	pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, events);
550 	ctrl_dbg(ctrl, "pending interrupts %#06x from Slot Status\n", events);
551 	if (parent)
552 		pm_runtime_put(parent);
553 
554 	/*
555 	 * Command Completed notifications are not deferred to the
556 	 * IRQ thread because it may be waiting for their arrival.
557 	 */
558 	if (events & PCI_EXP_SLTSTA_CC) {
559 		ctrl->cmd_busy = 0;
560 		smp_mb();
561 		wake_up(&ctrl->queue);
562 
563 		if (events == PCI_EXP_SLTSTA_CC)
564 			return IRQ_HANDLED;
565 
566 		events &= ~PCI_EXP_SLTSTA_CC;
567 	}
568 
569 	if (pdev->ignore_hotplug) {
570 		ctrl_dbg(ctrl, "ignoring hotplug event %#06x\n", events);
571 		return IRQ_HANDLED;
572 	}
573 
574 	/* Save pending events for consumption by IRQ thread. */
575 	atomic_or(events, &ctrl->pending_events);
576 	return IRQ_WAKE_THREAD;
577 }
578 
pciehp_ist(int irq,void * dev_id)579 static irqreturn_t pciehp_ist(int irq, void *dev_id)
580 {
581 	struct controller *ctrl = (struct controller *)dev_id;
582 	struct pci_dev *pdev = ctrl_dev(ctrl);
583 	irqreturn_t ret;
584 	u32 events;
585 
586 	ctrl->ist_running = true;
587 	pci_config_pm_runtime_get(pdev);
588 
589 	/* rerun pciehp_isr() if the port was inaccessible on interrupt */
590 	if (atomic_fetch_and(~RERUN_ISR, &ctrl->pending_events) & RERUN_ISR) {
591 		ret = pciehp_isr(irq, dev_id);
592 		enable_irq(irq);
593 		if (ret != IRQ_WAKE_THREAD) {
594 			pci_config_pm_runtime_put(pdev);
595 			return ret;
596 		}
597 	}
598 
599 	synchronize_hardirq(irq);
600 	events = atomic_xchg(&ctrl->pending_events, 0);
601 	if (!events) {
602 		pci_config_pm_runtime_put(pdev);
603 		return IRQ_NONE;
604 	}
605 
606 	/* Check Attention Button Pressed */
607 	if (events & PCI_EXP_SLTSTA_ABP) {
608 		ctrl_info(ctrl, "Slot(%s): Attention button pressed\n",
609 			  slot_name(ctrl));
610 		pciehp_handle_button_press(ctrl);
611 	}
612 
613 	/* Check Power Fault Detected */
614 	if ((events & PCI_EXP_SLTSTA_PFD) && !ctrl->power_fault_detected) {
615 		ctrl->power_fault_detected = 1;
616 		ctrl_err(ctrl, "Slot(%s): Power fault\n", slot_name(ctrl));
617 		pciehp_set_indicators(ctrl, PCI_EXP_SLTCTL_PWR_IND_OFF,
618 				      PCI_EXP_SLTCTL_ATTN_IND_ON);
619 	}
620 
621 	/*
622 	 * Disable requests have higher priority than Presence Detect Changed
623 	 * or Data Link Layer State Changed events.
624 	 */
625 	down_read(&ctrl->reset_lock);
626 	if (events & DISABLE_SLOT)
627 		pciehp_handle_disable_request(ctrl);
628 	else if (events & (PCI_EXP_SLTSTA_PDC | PCI_EXP_SLTSTA_DLLSC))
629 		pciehp_handle_presence_or_link_change(ctrl, events);
630 	up_read(&ctrl->reset_lock);
631 
632 	pci_config_pm_runtime_put(pdev);
633 	ctrl->ist_running = false;
634 	wake_up(&ctrl->requester);
635 	return IRQ_HANDLED;
636 }
637 
pciehp_poll(void * data)638 static int pciehp_poll(void *data)
639 {
640 	struct controller *ctrl = data;
641 
642 	schedule_timeout_idle(10 * HZ); /* start with 10 sec delay */
643 
644 	while (!kthread_should_stop()) {
645 		/* poll for interrupt events or user requests */
646 		while (pciehp_isr(IRQ_NOTCONNECTED, ctrl) == IRQ_WAKE_THREAD ||
647 		       atomic_read(&ctrl->pending_events))
648 			pciehp_ist(IRQ_NOTCONNECTED, ctrl);
649 
650 		if (pciehp_poll_time <= 0 || pciehp_poll_time > 60)
651 			pciehp_poll_time = 2; /* clamp to sane value */
652 
653 		schedule_timeout_idle(pciehp_poll_time * HZ);
654 	}
655 
656 	return 0;
657 }
658 
pcie_enable_notification(struct controller * ctrl)659 static void pcie_enable_notification(struct controller *ctrl)
660 {
661 	u16 cmd, mask;
662 
663 	/*
664 	 * TBD: Power fault detected software notification support.
665 	 *
666 	 * Power fault detected software notification is not enabled
667 	 * now, because it caused power fault detected interrupt storm
668 	 * on some machines. On those machines, power fault detected
669 	 * bit in the slot status register was set again immediately
670 	 * when it is cleared in the interrupt service routine, and
671 	 * next power fault detected interrupt was notified again.
672 	 */
673 
674 	/*
675 	 * Always enable link events: thus link-up and link-down shall
676 	 * always be treated as hotplug and unplug respectively. Enable
677 	 * presence detect only if Attention Button is not present.
678 	 */
679 	cmd = PCI_EXP_SLTCTL_DLLSCE;
680 	if (ATTN_BUTTN(ctrl))
681 		cmd |= PCI_EXP_SLTCTL_ABPE;
682 	else
683 		cmd |= PCI_EXP_SLTCTL_PDCE;
684 	if (!pciehp_poll_mode)
685 		cmd |= PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE;
686 
687 	mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
688 		PCI_EXP_SLTCTL_PFDE |
689 		PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
690 		PCI_EXP_SLTCTL_DLLSCE);
691 
692 	pcie_write_cmd_nowait(ctrl, cmd, mask);
693 	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
694 		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, cmd);
695 }
696 
pcie_disable_notification(struct controller * ctrl)697 static void pcie_disable_notification(struct controller *ctrl)
698 {
699 	u16 mask;
700 
701 	mask = (PCI_EXP_SLTCTL_PDCE | PCI_EXP_SLTCTL_ABPE |
702 		PCI_EXP_SLTCTL_MRLSCE | PCI_EXP_SLTCTL_PFDE |
703 		PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_CCIE |
704 		PCI_EXP_SLTCTL_DLLSCE);
705 	pcie_write_cmd(ctrl, 0, mask);
706 	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
707 		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, 0);
708 }
709 
pcie_clear_hotplug_events(struct controller * ctrl)710 void pcie_clear_hotplug_events(struct controller *ctrl)
711 {
712 	pcie_capability_write_word(ctrl_dev(ctrl), PCI_EXP_SLTSTA,
713 				   PCI_EXP_SLTSTA_PDC | PCI_EXP_SLTSTA_DLLSC);
714 }
715 
pcie_enable_interrupt(struct controller * ctrl)716 void pcie_enable_interrupt(struct controller *ctrl)
717 {
718 	u16 mask;
719 
720 	mask = PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_DLLSCE;
721 	pcie_write_cmd(ctrl, mask, mask);
722 }
723 
pcie_disable_interrupt(struct controller * ctrl)724 void pcie_disable_interrupt(struct controller *ctrl)
725 {
726 	u16 mask;
727 
728 	/*
729 	 * Mask hot-plug interrupt to prevent it triggering immediately
730 	 * when the link goes inactive (we still get PME when any of the
731 	 * enabled events is detected). Same goes with Link Layer State
732 	 * changed event which generates PME immediately when the link goes
733 	 * inactive so mask it as well.
734 	 */
735 	mask = PCI_EXP_SLTCTL_HPIE | PCI_EXP_SLTCTL_DLLSCE;
736 	pcie_write_cmd(ctrl, 0, mask);
737 }
738 
739 /*
740  * pciehp has a 1:1 bus:slot relationship so we ultimately want a secondary
741  * bus reset of the bridge, but at the same time we want to ensure that it is
742  * not seen as a hot-unplug, followed by the hot-plug of the device. Thus,
743  * disable link state notification and presence detection change notification
744  * momentarily, if we see that they could interfere. Also, clear any spurious
745  * events after.
746  */
pciehp_reset_slot(struct hotplug_slot * hotplug_slot,int probe)747 int pciehp_reset_slot(struct hotplug_slot *hotplug_slot, int probe)
748 {
749 	struct controller *ctrl = to_ctrl(hotplug_slot);
750 	struct pci_dev *pdev = ctrl_dev(ctrl);
751 	u16 stat_mask = 0, ctrl_mask = 0;
752 	int rc;
753 
754 	if (probe)
755 		return 0;
756 
757 	down_write(&ctrl->reset_lock);
758 
759 	if (!ATTN_BUTTN(ctrl)) {
760 		ctrl_mask |= PCI_EXP_SLTCTL_PDCE;
761 		stat_mask |= PCI_EXP_SLTSTA_PDC;
762 	}
763 	ctrl_mask |= PCI_EXP_SLTCTL_DLLSCE;
764 	stat_mask |= PCI_EXP_SLTSTA_DLLSC;
765 
766 	pcie_write_cmd(ctrl, 0, ctrl_mask);
767 	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
768 		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, 0);
769 
770 	rc = pci_bridge_secondary_bus_reset(ctrl->pcie->port);
771 
772 	pcie_capability_write_word(pdev, PCI_EXP_SLTSTA, stat_mask);
773 	pcie_write_cmd_nowait(ctrl, ctrl_mask, ctrl_mask);
774 	ctrl_dbg(ctrl, "%s: SLOTCTRL %x write cmd %x\n", __func__,
775 		 pci_pcie_cap(ctrl->pcie->port) + PCI_EXP_SLTCTL, ctrl_mask);
776 
777 	up_write(&ctrl->reset_lock);
778 	return rc;
779 }
780 
pcie_init_notification(struct controller * ctrl)781 int pcie_init_notification(struct controller *ctrl)
782 {
783 	if (pciehp_request_irq(ctrl))
784 		return -1;
785 	pcie_enable_notification(ctrl);
786 	ctrl->notification_enabled = 1;
787 	return 0;
788 }
789 
pcie_shutdown_notification(struct controller * ctrl)790 void pcie_shutdown_notification(struct controller *ctrl)
791 {
792 	if (ctrl->notification_enabled) {
793 		pcie_disable_notification(ctrl);
794 		pciehp_free_irq(ctrl);
795 		ctrl->notification_enabled = 0;
796 	}
797 }
798 
dbg_ctrl(struct controller * ctrl)799 static inline void dbg_ctrl(struct controller *ctrl)
800 {
801 	struct pci_dev *pdev = ctrl->pcie->port;
802 	u16 reg16;
803 
804 	ctrl_dbg(ctrl, "Slot Capabilities      : 0x%08x\n", ctrl->slot_cap);
805 	pcie_capability_read_word(pdev, PCI_EXP_SLTSTA, &reg16);
806 	ctrl_dbg(ctrl, "Slot Status            : 0x%04x\n", reg16);
807 	pcie_capability_read_word(pdev, PCI_EXP_SLTCTL, &reg16);
808 	ctrl_dbg(ctrl, "Slot Control           : 0x%04x\n", reg16);
809 }
810 
811 #define FLAG(x, y)	(((x) & (y)) ? '+' : '-')
812 
pcie_init(struct pcie_device * dev)813 struct controller *pcie_init(struct pcie_device *dev)
814 {
815 	struct controller *ctrl;
816 	u32 slot_cap, link_cap;
817 	u8 poweron;
818 	struct pci_dev *pdev = dev->port;
819 	struct pci_bus *subordinate = pdev->subordinate;
820 
821 	ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
822 	if (!ctrl)
823 		return NULL;
824 
825 	ctrl->pcie = dev;
826 	pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &slot_cap);
827 
828 	if (pdev->hotplug_user_indicators)
829 		slot_cap &= ~(PCI_EXP_SLTCAP_AIP | PCI_EXP_SLTCAP_PIP);
830 
831 	/*
832 	 * We assume no Thunderbolt controllers support Command Complete events,
833 	 * but some controllers falsely claim they do.
834 	 */
835 	if (pdev->is_thunderbolt)
836 		slot_cap |= PCI_EXP_SLTCAP_NCCS;
837 
838 	ctrl->slot_cap = slot_cap;
839 	mutex_init(&ctrl->ctrl_lock);
840 	mutex_init(&ctrl->state_lock);
841 	init_rwsem(&ctrl->reset_lock);
842 	init_waitqueue_head(&ctrl->requester);
843 	init_waitqueue_head(&ctrl->queue);
844 	INIT_DELAYED_WORK(&ctrl->button_work, pciehp_queue_pushbutton_work);
845 	dbg_ctrl(ctrl);
846 
847 	down_read(&pci_bus_sem);
848 	ctrl->state = list_empty(&subordinate->devices) ? OFF_STATE : ON_STATE;
849 	up_read(&pci_bus_sem);
850 
851 	/* Check if Data Link Layer Link Active Reporting is implemented */
852 	pcie_capability_read_dword(pdev, PCI_EXP_LNKCAP, &link_cap);
853 
854 	/* Clear all remaining event bits in Slot Status register. */
855 	pcie_capability_write_word(pdev, PCI_EXP_SLTSTA,
856 		PCI_EXP_SLTSTA_ABP | PCI_EXP_SLTSTA_PFD |
857 		PCI_EXP_SLTSTA_MRLSC | PCI_EXP_SLTSTA_CC |
858 		PCI_EXP_SLTSTA_DLLSC | PCI_EXP_SLTSTA_PDC);
859 
860 	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%s\n",
861 		(slot_cap & PCI_EXP_SLTCAP_PSN) >> 19,
862 		FLAG(slot_cap, PCI_EXP_SLTCAP_ABP),
863 		FLAG(slot_cap, PCI_EXP_SLTCAP_PCP),
864 		FLAG(slot_cap, PCI_EXP_SLTCAP_MRLSP),
865 		FLAG(slot_cap, PCI_EXP_SLTCAP_AIP),
866 		FLAG(slot_cap, PCI_EXP_SLTCAP_PIP),
867 		FLAG(slot_cap, PCI_EXP_SLTCAP_HPC),
868 		FLAG(slot_cap, PCI_EXP_SLTCAP_HPS),
869 		FLAG(slot_cap, PCI_EXP_SLTCAP_EIP),
870 		FLAG(slot_cap, PCI_EXP_SLTCAP_NCCS),
871 		FLAG(link_cap, PCI_EXP_LNKCAP_DLLLARC),
872 		pdev->broken_cmd_compl ? " (with Cmd Compl erratum)" : "");
873 
874 	/*
875 	 * If empty slot's power status is on, turn power off.  The IRQ isn't
876 	 * requested yet, so avoid triggering a notification with this command.
877 	 */
878 	if (POWER_CTRL(ctrl)) {
879 		pciehp_get_power_status(ctrl, &poweron);
880 		if (!pciehp_card_present_or_link_active(ctrl) && poweron) {
881 			pcie_disable_notification(ctrl);
882 			pciehp_power_off_slot(ctrl);
883 		}
884 	}
885 
886 	return ctrl;
887 }
888 
pciehp_release_ctrl(struct controller * ctrl)889 void pciehp_release_ctrl(struct controller *ctrl)
890 {
891 	cancel_delayed_work_sync(&ctrl->button_work);
892 	kfree(ctrl);
893 }
894 
quirk_cmd_compl(struct pci_dev * pdev)895 static void quirk_cmd_compl(struct pci_dev *pdev)
896 {
897 	u32 slot_cap;
898 
899 	if (pci_is_pcie(pdev)) {
900 		pcie_capability_read_dword(pdev, PCI_EXP_SLTCAP, &slot_cap);
901 		if (slot_cap & PCI_EXP_SLTCAP_HPC &&
902 		    !(slot_cap & PCI_EXP_SLTCAP_NCCS))
903 			pdev->broken_cmd_compl = 1;
904 	}
905 }
906 DECLARE_PCI_FIXUP_CLASS_EARLY(PCI_VENDOR_ID_INTEL, PCI_ANY_ID,
907 			      PCI_CLASS_BRIDGE_PCI, 8, quirk_cmd_compl);
908 DECLARE_PCI_FIXUP_CLASS_EARLY(PCI_VENDOR_ID_QCOM, 0x0400,
909 			      PCI_CLASS_BRIDGE_PCI, 8, quirk_cmd_compl);
910 DECLARE_PCI_FIXUP_CLASS_EARLY(PCI_VENDOR_ID_QCOM, 0x0401,
911 			      PCI_CLASS_BRIDGE_PCI, 8, quirk_cmd_compl);
912 DECLARE_PCI_FIXUP_CLASS_EARLY(PCI_VENDOR_ID_HXT, 0x0401,
913 			      PCI_CLASS_BRIDGE_PCI, 8, quirk_cmd_compl);
914