blob: 0bbc04af4418be330765281a26b73dbeee2526d4 [file] [log] [blame]
Jan Glaubercbc0dd12012-11-29 14:34:48 +01001/*
2 * Copyright IBM Corp. 2012
3 *
4 * Author(s):
5 * Jan Glauber <jang@linux.vnet.ibm.com>
6 */
7
Gerald Schaefer896cb7e2014-07-16 17:21:01 +02008#define KMSG_COMPONENT "zpci"
9#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
Jan Glaubercbc0dd12012-11-29 14:34:48 +010010
11#include <linux/kernel.h>
12#include <linux/pci.h>
Sebastian Ott1f1dcbd2013-10-22 15:17:19 +020013#include <asm/pci_debug.h>
Sebastian Ottd795dda2013-11-15 13:56:08 +010014#include <asm/sclp.h>
Jan Glaubercbc0dd12012-11-29 14:34:48 +010015
16/* Content Code Description for PCI Function Error */
17struct zpci_ccdf_err {
18 u32 reserved1;
19 u32 fh; /* function handle */
20 u32 fid; /* function id */
21 u32 ett : 4; /* expected table type */
22 u32 mvn : 12; /* MSI vector number */
23 u32 dmaas : 8; /* DMA address space */
24 u32 : 6;
25 u32 q : 1; /* event qualifier */
26 u32 rw : 1; /* read/write */
27 u64 faddr; /* failing address */
28 u32 reserved3;
29 u16 reserved4;
30 u16 pec; /* PCI event code */
31} __packed;
32
33/* Content Code Description for PCI Function Availability */
34struct zpci_ccdf_avail {
35 u32 reserved1;
36 u32 fh; /* function handle */
37 u32 fid; /* function id */
38 u32 reserved2;
39 u32 reserved3;
40 u32 reserved4;
41 u32 reserved5;
42 u16 reserved6;
43 u16 pec; /* PCI event code */
44} __packed;
45
Sebastian Ottaa3b7c22013-12-12 17:48:32 +010046static void __zpci_event_error(struct zpci_ccdf_err *ccdf)
Jan Glaubercbc0dd12012-11-29 14:34:48 +010047{
Sebastian Ott1f1dcbd2013-10-22 15:17:19 +020048 struct zpci_dev *zdev = get_zdev_by_fid(ccdf->fid);
Sebastian Ott9a996492016-01-29 15:13:30 +010049 struct pci_dev *pdev = NULL;
Jan Glaubercbc0dd12012-11-29 14:34:48 +010050
Sebastian Ott1f1dcbd2013-10-22 15:17:19 +020051 zpci_err("error CCDF:\n");
52 zpci_err_hex(ccdf, sizeof(*ccdf));
53
Sebastian Ott9a996492016-01-29 15:13:30 +010054 if (zdev)
55 pdev = pci_get_slot(zdev->bus, ZPCI_DEVFN);
56
Sebastian Ott1f1dcbd2013-10-22 15:17:19 +020057 pr_err("%s: Event 0x%x reports an error for PCI function 0x%x\n",
Sebastian Ott515f0222015-07-28 19:11:40 +020058 pdev ? pci_name(pdev) : "n/a", ccdf->pec, ccdf->fid);
Sebastian Ott8ead7ef2016-01-22 14:04:18 +010059
60 if (!pdev)
61 return;
62
63 pdev->error_state = pci_channel_io_perm_failure;
Sebastian Ott9a996492016-01-29 15:13:30 +010064 pci_dev_put(pdev);
Jan Glaubercbc0dd12012-11-29 14:34:48 +010065}
66
Sebastian Ottaa3b7c22013-12-12 17:48:32 +010067void zpci_event_error(void *data)
Jan Glaubercbc0dd12012-11-29 14:34:48 +010068{
Sebastian Ottaa3b7c22013-12-12 17:48:32 +010069 if (zpci_is_enabled())
70 __zpci_event_error(data);
71}
72
73static void __zpci_event_availability(struct zpci_ccdf_avail *ccdf)
74{
Sebastian Ottd795dda2013-11-15 13:56:08 +010075 struct zpci_dev *zdev = get_zdev_by_fid(ccdf->fid);
Sebastian Ott9a996492016-01-29 15:13:30 +010076 struct pci_dev *pdev = NULL;
Sebastian Ott623bd442017-05-09 12:27:30 +020077 enum zpci_state state;
Sebastian Ottd795dda2013-11-15 13:56:08 +010078 int ret;
79
Sebastian Ott9a996492016-01-29 15:13:30 +010080 if (zdev)
81 pdev = pci_get_slot(zdev->bus, ZPCI_DEVFN);
82
Sebastian Ottd795dda2013-11-15 13:56:08 +010083 pr_info("%s: Event 0x%x reconfigured PCI function 0x%x\n",
84 pdev ? pci_name(pdev) : "n/a", ccdf->pec, ccdf->fid);
85 zpci_err("avail CCDF:\n");
86 zpci_err_hex(ccdf, sizeof(*ccdf));
87
88 switch (ccdf->pec) {
Sebastian Ott7fc611f2015-06-16 18:58:37 +020089 case 0x0301: /* Reserved|Standby -> Configured */
90 if (!zdev) {
91 ret = clp_add_pci_device(ccdf->fid, ccdf->fh, 0);
92 if (ret)
93 break;
94 zdev = get_zdev_by_fid(ccdf->fid);
95 }
Sebastian Ottca25f562014-04-16 16:09:23 +020096 if (!zdev || zdev->state != ZPCI_FN_STATE_STANDBY)
Sebastian Ottd795dda2013-11-15 13:56:08 +010097 break;
98 zdev->state = ZPCI_FN_STATE_CONFIGURED;
Sebastian Ottfcf2f402013-12-18 16:46:02 +010099 zdev->fh = ccdf->fh;
Sebastian Ottd795dda2013-11-15 13:56:08 +0100100 ret = zpci_enable_device(zdev);
101 if (ret)
102 break;
Sebastian Ott2a01bd12015-07-28 19:14:51 +0200103 pci_lock_rescan_remove();
Sebastian Ottd795dda2013-11-15 13:56:08 +0100104 pci_rescan_bus(zdev->bus);
Sebastian Ott2a01bd12015-07-28 19:14:51 +0200105 pci_unlock_rescan_remove();
Sebastian Ottd795dda2013-11-15 13:56:08 +0100106 break;
107 case 0x0302: /* Reserved -> Standby */
Sebastian Ottca25f562014-04-16 16:09:23 +0200108 if (!zdev)
109 clp_add_pci_device(ccdf->fid, ccdf->fh, 0);
Sebastian Ottd795dda2013-11-15 13:56:08 +0100110 break;
111 case 0x0303: /* Deconfiguration requested */
Sebastian Ott623bd442017-05-09 12:27:30 +0200112 if (!zdev)
113 break;
Sebastian Ottd795dda2013-11-15 13:56:08 +0100114 if (pdev)
Sebastian Ott2a01bd12015-07-28 19:14:51 +0200115 pci_stop_and_remove_bus_device_locked(pdev);
Sebastian Ottd795dda2013-11-15 13:56:08 +0100116
117 ret = zpci_disable_device(zdev);
118 if (ret)
119 break;
120
121 ret = sclp_pci_deconfigure(zdev->fid);
122 zpci_dbg(3, "deconf fid:%x, rc:%d\n", zdev->fid, ret);
123 if (!ret)
124 zdev->state = ZPCI_FN_STATE_STANDBY;
125
126 break;
Sebastian Ott623bd442017-05-09 12:27:30 +0200127 case 0x0304: /* Configured -> Standby|Reserved */
128 if (!zdev)
129 break;
Sebastian Ott0c0c2772013-12-12 17:53:11 +0100130 if (pdev) {
131 /* Give the driver a hint that the function is
132 * already unusable. */
133 pdev->error_state = pci_channel_io_perm_failure;
Sebastian Ott2a01bd12015-07-28 19:14:51 +0200134 pci_stop_and_remove_bus_device_locked(pdev);
Sebastian Ott0c0c2772013-12-12 17:53:11 +0100135 }
Sebastian Ottd795dda2013-11-15 13:56:08 +0100136
Sebastian Ottfcf2f402013-12-18 16:46:02 +0100137 zdev->fh = ccdf->fh;
Sebastian Ottd795dda2013-11-15 13:56:08 +0100138 zpci_disable_device(zdev);
139 zdev->state = ZPCI_FN_STATE_STANDBY;
Sebastian Ott623bd442017-05-09 12:27:30 +0200140 if (!clp_get_state(ccdf->fid, &state) &&
141 state == ZPCI_FN_STATE_RESERVED) {
142 zpci_remove_device(zdev);
143 }
Sebastian Ottd795dda2013-11-15 13:56:08 +0100144 break;
145 case 0x0306: /* 0x308 or 0x302 for multiple devices */
146 clp_rescan_pci_devices();
147 break;
148 case 0x0308: /* Standby -> Reserved */
Sebastian Ott70426892013-12-12 17:50:53 +0100149 if (!zdev)
150 break;
Sebastian Ott623bd442017-05-09 12:27:30 +0200151 zpci_remove_device(zdev);
Sebastian Ottd795dda2013-11-15 13:56:08 +0100152 break;
153 default:
154 break;
155 }
Markus Elfring64a40c82016-07-18 09:00:00 +0200156 pci_dev_put(pdev);
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100157}
Sebastian Ottaa3b7c22013-12-12 17:48:32 +0100158
159void zpci_event_availability(void *data)
160{
161 if (zpci_is_enabled())
162 __zpci_event_availability(data);
163}