Loading...
1/*
2 * Sysfs entries for PCI Error Recovery for PAPR-compliant platform.
3 * Copyright IBM Corporation 2007
4 * Copyright Linas Vepstas <linas@austin.ibm.com> 2007
5 *
6 * All rights reserved.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or (at
11 * your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
16 * NON INFRINGEMENT. See the GNU General Public License for more
17 * details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 * Send comments and feedback to Linas Vepstas <linas@austin.ibm.com>
24 */
25#include <linux/pci.h>
26#include <linux/stat.h>
27#include <asm/ppc-pci.h>
28#include <asm/pci-bridge.h>
29
30/**
31 * EEH_SHOW_ATTR -- Create sysfs entry for eeh statistic
32 * @_name: name of file in sysfs directory
33 * @_memb: name of member in struct pci_dn to access
34 * @_format: printf format for display
35 *
36 * All of the attributes look very similar, so just
37 * auto-gen a cut-n-paste routine to display them.
38 */
39#define EEH_SHOW_ATTR(_name,_memb,_format) \
40static ssize_t eeh_show_##_name(struct device *dev, \
41 struct device_attribute *attr, char *buf) \
42{ \
43 struct pci_dev *pdev = to_pci_dev(dev); \
44 struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev); \
45 \
46 if (!edev) \
47 return 0; \
48 \
49 return sprintf(buf, _format "\n", edev->_memb); \
50} \
51static DEVICE_ATTR(_name, 0444, eeh_show_##_name, NULL);
52
53EEH_SHOW_ATTR(eeh_mode, mode, "0x%x");
54EEH_SHOW_ATTR(eeh_pe_config_addr, pe_config_addr, "0x%x");
55
56static ssize_t eeh_pe_state_show(struct device *dev,
57 struct device_attribute *attr, char *buf)
58{
59 struct pci_dev *pdev = to_pci_dev(dev);
60 struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
61 int state;
62
63 if (!edev || !edev->pe)
64 return -ENODEV;
65
66 state = eeh_ops->get_state(edev->pe, NULL);
67 return sprintf(buf, "0x%08x 0x%08x\n",
68 state, edev->pe->state);
69}
70
71static ssize_t eeh_pe_state_store(struct device *dev,
72 struct device_attribute *attr,
73 const char *buf, size_t count)
74{
75 struct pci_dev *pdev = to_pci_dev(dev);
76 struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
77
78 if (!edev || !edev->pe)
79 return -ENODEV;
80
81 /* Nothing to do if it's not frozen */
82 if (!(edev->pe->state & EEH_PE_ISOLATED))
83 return count;
84
85 if (eeh_unfreeze_pe(edev->pe, true))
86 return -EIO;
87
88 return count;
89}
90
91static DEVICE_ATTR_RW(eeh_pe_state);
92
93#ifdef CONFIG_PCI_IOV
94static ssize_t eeh_notify_resume_show(struct device *dev,
95 struct device_attribute *attr, char *buf)
96{
97 struct pci_dev *pdev = to_pci_dev(dev);
98 struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
99 struct pci_dn *pdn = pci_get_pdn(pdev);
100
101 if (!edev || !edev->pe)
102 return -ENODEV;
103
104 pdn = pci_get_pdn(pdev);
105 return sprintf(buf, "%d\n", pdn->last_allow_rc);
106}
107
108static ssize_t eeh_notify_resume_store(struct device *dev,
109 struct device_attribute *attr,
110 const char *buf, size_t count)
111{
112 struct pci_dev *pdev = to_pci_dev(dev);
113 struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
114
115 if (!edev || !edev->pe || !eeh_ops->notify_resume)
116 return -ENODEV;
117
118 if (eeh_ops->notify_resume(pci_get_pdn(pdev)))
119 return -EIO;
120
121 return count;
122}
123static DEVICE_ATTR_RW(eeh_notify_resume);
124
125static int eeh_notify_resume_add(struct pci_dev *pdev)
126{
127 struct device_node *np;
128 int rc = 0;
129
130 np = pci_device_to_OF_node(pdev->is_physfn ? pdev : pdev->physfn);
131
132 if (of_property_read_bool(np, "ibm,is-open-sriov-pf"))
133 rc = device_create_file(&pdev->dev, &dev_attr_eeh_notify_resume);
134
135 return rc;
136}
137
138static void eeh_notify_resume_remove(struct pci_dev *pdev)
139{
140 struct device_node *np;
141
142 np = pci_device_to_OF_node(pdev->is_physfn ? pdev : pdev->physfn);
143
144 if (of_property_read_bool(np, "ibm,is-open-sriov-pf"))
145 device_remove_file(&pdev->dev, &dev_attr_eeh_notify_resume);
146}
147#else
148static inline int eeh_notify_resume_add(struct pci_dev *pdev) { return 0; }
149static inline void eeh_notify_resume_remove(struct pci_dev *pdev) { }
150#endif /* CONFIG_PCI_IOV */
151
152void eeh_sysfs_add_device(struct pci_dev *pdev)
153{
154 struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
155 int rc=0;
156
157 if (!eeh_enabled())
158 return;
159
160 if (edev && (edev->mode & EEH_DEV_SYSFS))
161 return;
162
163 rc += device_create_file(&pdev->dev, &dev_attr_eeh_mode);
164 rc += device_create_file(&pdev->dev, &dev_attr_eeh_pe_config_addr);
165 rc += device_create_file(&pdev->dev, &dev_attr_eeh_pe_state);
166 rc += eeh_notify_resume_add(pdev);
167
168 if (rc)
169 pr_warn("EEH: Unable to create sysfs entries\n");
170 else if (edev)
171 edev->mode |= EEH_DEV_SYSFS;
172}
173
174void eeh_sysfs_remove_device(struct pci_dev *pdev)
175{
176 struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
177
178 /*
179 * The parent directory might have been removed. We needn't
180 * continue for that case.
181 */
182 if (!pdev->dev.kobj.sd) {
183 if (edev)
184 edev->mode &= ~EEH_DEV_SYSFS;
185 return;
186 }
187
188 device_remove_file(&pdev->dev, &dev_attr_eeh_mode);
189 device_remove_file(&pdev->dev, &dev_attr_eeh_pe_config_addr);
190 device_remove_file(&pdev->dev, &dev_attr_eeh_pe_state);
191
192 eeh_notify_resume_remove(pdev);
193
194 if (edev)
195 edev->mode &= ~EEH_DEV_SYSFS;
196}
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Sysfs entries for PCI Error Recovery for PAPR-compliant platform.
4 * Copyright IBM Corporation 2007
5 * Copyright Linas Vepstas <linas@austin.ibm.com> 2007
6 *
7 * Send comments and feedback to Linas Vepstas <linas@austin.ibm.com>
8 */
9#include <linux/of.h>
10#include <linux/pci.h>
11#include <linux/stat.h>
12#include <asm/ppc-pci.h>
13#include <asm/pci-bridge.h>
14
15/**
16 * EEH_SHOW_ATTR -- Create sysfs entry for eeh statistic
17 * @_name: name of file in sysfs directory
18 * @_memb: name of member in struct eeh_dev to access
19 * @_format: printf format for display
20 *
21 * All of the attributes look very similar, so just
22 * auto-gen a cut-n-paste routine to display them.
23 */
24#define EEH_SHOW_ATTR(_name,_memb,_format) \
25static ssize_t eeh_show_##_name(struct device *dev, \
26 struct device_attribute *attr, char *buf) \
27{ \
28 struct pci_dev *pdev = to_pci_dev(dev); \
29 struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev); \
30 \
31 if (!edev) \
32 return 0; \
33 \
34 return sprintf(buf, _format "\n", edev->_memb); \
35} \
36static DEVICE_ATTR(_name, 0444, eeh_show_##_name, NULL);
37
38EEH_SHOW_ATTR(eeh_mode, mode, "0x%x");
39EEH_SHOW_ATTR(eeh_pe_config_addr, pe_config_addr, "0x%x");
40
41static ssize_t eeh_pe_state_show(struct device *dev,
42 struct device_attribute *attr, char *buf)
43{
44 struct pci_dev *pdev = to_pci_dev(dev);
45 struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
46 int state;
47
48 if (!edev || !edev->pe)
49 return -ENODEV;
50
51 state = eeh_ops->get_state(edev->pe, NULL);
52 return sprintf(buf, "0x%08x 0x%08x\n",
53 state, edev->pe->state);
54}
55
56static ssize_t eeh_pe_state_store(struct device *dev,
57 struct device_attribute *attr,
58 const char *buf, size_t count)
59{
60 struct pci_dev *pdev = to_pci_dev(dev);
61 struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
62
63 if (!edev || !edev->pe)
64 return -ENODEV;
65
66 /* Nothing to do if it's not frozen */
67 if (!(edev->pe->state & EEH_PE_ISOLATED))
68 return count;
69
70 if (eeh_unfreeze_pe(edev->pe))
71 return -EIO;
72 eeh_pe_state_clear(edev->pe, EEH_PE_ISOLATED, true);
73
74 return count;
75}
76
77static DEVICE_ATTR_RW(eeh_pe_state);
78
79#if defined(CONFIG_PCI_IOV) && defined(CONFIG_PPC_PSERIES)
80static ssize_t eeh_notify_resume_show(struct device *dev,
81 struct device_attribute *attr, char *buf)
82{
83 struct pci_dev *pdev = to_pci_dev(dev);
84 struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
85 struct pci_dn *pdn = pci_get_pdn(pdev);
86
87 if (!edev || !edev->pe)
88 return -ENODEV;
89
90 return sprintf(buf, "%d\n", pdn->last_allow_rc);
91}
92
93static ssize_t eeh_notify_resume_store(struct device *dev,
94 struct device_attribute *attr,
95 const char *buf, size_t count)
96{
97 struct pci_dev *pdev = to_pci_dev(dev);
98 struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
99
100 if (!edev || !edev->pe || !eeh_ops->notify_resume)
101 return -ENODEV;
102
103 if (eeh_ops->notify_resume(edev))
104 return -EIO;
105
106 return count;
107}
108static DEVICE_ATTR_RW(eeh_notify_resume);
109
110static int eeh_notify_resume_add(struct pci_dev *pdev)
111{
112 struct device_node *np;
113 int rc = 0;
114
115 np = pci_device_to_OF_node(pdev->is_physfn ? pdev : pdev->physfn);
116
117 if (of_property_read_bool(np, "ibm,is-open-sriov-pf"))
118 rc = device_create_file(&pdev->dev, &dev_attr_eeh_notify_resume);
119
120 return rc;
121}
122
123static void eeh_notify_resume_remove(struct pci_dev *pdev)
124{
125 struct device_node *np;
126
127 np = pci_device_to_OF_node(pdev->is_physfn ? pdev : pdev->physfn);
128
129 if (of_property_read_bool(np, "ibm,is-open-sriov-pf"))
130 device_remove_file(&pdev->dev, &dev_attr_eeh_notify_resume);
131}
132#else
133static inline int eeh_notify_resume_add(struct pci_dev *pdev) { return 0; }
134static inline void eeh_notify_resume_remove(struct pci_dev *pdev) { }
135#endif /* CONFIG_PCI_IOV && CONFIG PPC_PSERIES*/
136
137void eeh_sysfs_add_device(struct pci_dev *pdev)
138{
139 struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
140 int rc=0;
141
142 if (!eeh_enabled())
143 return;
144
145 if (edev && (edev->mode & EEH_DEV_SYSFS))
146 return;
147
148 rc += device_create_file(&pdev->dev, &dev_attr_eeh_mode);
149 rc += device_create_file(&pdev->dev, &dev_attr_eeh_pe_config_addr);
150 rc += device_create_file(&pdev->dev, &dev_attr_eeh_pe_state);
151 rc += eeh_notify_resume_add(pdev);
152
153 if (rc)
154 pr_warn("EEH: Unable to create sysfs entries\n");
155 else if (edev)
156 edev->mode |= EEH_DEV_SYSFS;
157}
158
159void eeh_sysfs_remove_device(struct pci_dev *pdev)
160{
161 struct eeh_dev *edev = pci_dev_to_eeh_dev(pdev);
162
163 if (!edev) {
164 WARN_ON(eeh_enabled());
165 return;
166 }
167
168 edev->mode &= ~EEH_DEV_SYSFS;
169
170 /*
171 * The parent directory might have been removed. We needn't
172 * continue for that case.
173 */
174 if (!pdev->dev.kobj.sd)
175 return;
176
177 device_remove_file(&pdev->dev, &dev_attr_eeh_mode);
178 device_remove_file(&pdev->dev, &dev_attr_eeh_pe_config_addr);
179 device_remove_file(&pdev->dev, &dev_attr_eeh_pe_state);
180
181 eeh_notify_resume_remove(pdev);
182}