blob: e941e6315fa6b83e86e455893b3b962441ab1a3b [file] [log] [blame]
Gavin Shan55037d12012-09-07 22:44:07 +00001/*
2 * The file intends to implement PE based on the information from
3 * platforms. Basically, there have 3 types of PEs: PHB/Bus/Device.
4 * All the PEs should be organized as hierarchy tree. The first level
5 * of the tree will be associated to existing PHBs since the particular
6 * PE is only meaningful in one PHB domain.
7 *
8 * Copyright Benjamin Herrenschmidt & Gavin Shan, IBM Corporation 2012.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 */
24
25#include <linux/export.h>
26#include <linux/gfp.h>
27#include <linux/init.h>
28#include <linux/kernel.h>
29#include <linux/pci.h>
30#include <linux/string.h>
31
32#include <asm/pci-bridge.h>
33#include <asm/ppc-pci.h>
34
35static LIST_HEAD(eeh_phb_pe);
36
37/**
38 * eeh_pe_alloc - Allocate PE
39 * @phb: PCI controller
40 * @type: PE type
41 *
42 * Allocate PE instance dynamically.
43 */
44static struct eeh_pe *eeh_pe_alloc(struct pci_controller *phb, int type)
45{
46 struct eeh_pe *pe;
47
48 /* Allocate PHB PE */
49 pe = kzalloc(sizeof(struct eeh_pe), GFP_KERNEL);
50 if (!pe) return NULL;
51
52 /* Initialize PHB PE */
53 pe->type = type;
54 pe->phb = phb;
55 INIT_LIST_HEAD(&pe->child_list);
56 INIT_LIST_HEAD(&pe->child);
57 INIT_LIST_HEAD(&pe->edevs);
58
59 return pe;
60}
61
62/**
63 * eeh_phb_pe_create - Create PHB PE
64 * @phb: PCI controller
65 *
66 * The function should be called while the PHB is detected during
67 * system boot or PCI hotplug in order to create PHB PE.
68 */
69int __devinit eeh_phb_pe_create(struct pci_controller *phb)
70{
71 struct eeh_pe *pe;
72
73 /* Allocate PHB PE */
74 pe = eeh_pe_alloc(phb, EEH_PE_PHB);
75 if (!pe) {
76 pr_err("%s: out of memory!\n", __func__);
77 return -ENOMEM;
78 }
79
80 /* Put it into the list */
81 eeh_lock();
82 list_add_tail(&pe->child, &eeh_phb_pe);
83 eeh_unlock();
84
85 pr_debug("EEH: Add PE for PHB#%d\n", phb->global_number);
86
87 return 0;
88}
89
90/**
91 * eeh_phb_pe_get - Retrieve PHB PE based on the given PHB
92 * @phb: PCI controller
93 *
94 * The overall PEs form hierarchy tree. The first layer of the
95 * hierarchy tree is composed of PHB PEs. The function is used
96 * to retrieve the corresponding PHB PE according to the given PHB.
97 */
98static struct eeh_pe *eeh_phb_pe_get(struct pci_controller *phb)
99{
100 struct eeh_pe *pe;
101
102 eeh_lock();
103
104 list_for_each_entry(pe, &eeh_phb_pe, child) {
105 /*
106 * Actually, we needn't check the type since
107 * the PE for PHB has been determined when that
108 * was created.
109 */
110 if (pe->type == EEH_PE_PHB &&
111 pe->phb == phb) {
112 eeh_unlock();
113 return pe;
114 }
115 }
116
117 eeh_unlock();
118
119 return NULL;
120}
Gavin Shan22f4ab12012-09-07 22:44:08 +0000121
122/**
123 * eeh_pe_next - Retrieve the next PE in the tree
124 * @pe: current PE
125 * @root: root PE
126 *
127 * The function is used to retrieve the next PE in the
128 * hierarchy PE tree.
129 */
130static struct eeh_pe *eeh_pe_next(struct eeh_pe *pe,
131 struct eeh_pe *root)
132{
133 struct list_head *next = pe->child_list.next;
134
135 if (next == &pe->child_list) {
136 while (1) {
137 if (pe == root)
138 return NULL;
139 next = pe->child.next;
140 if (next != &pe->parent->child_list)
141 break;
142 pe = pe->parent;
143 }
144 }
145
146 return list_entry(next, struct eeh_pe, child);
147}
148
149/**
150 * eeh_pe_traverse - Traverse PEs in the specified PHB
151 * @root: root PE
152 * @fn: callback
153 * @flag: extra parameter to callback
154 *
155 * The function is used to traverse the specified PE and its
156 * child PEs. The traversing is to be terminated once the
157 * callback returns something other than NULL, or no more PEs
158 * to be traversed.
159 */
160static void *eeh_pe_traverse(struct eeh_pe *root,
161 eeh_traverse_func fn, void *flag)
162{
163 struct eeh_pe *pe;
164 void *ret;
165
166 for (pe = root; pe; pe = eeh_pe_next(pe, root)) {
167 ret = fn(pe, flag);
168 if (ret) return ret;
169 }
170
171 return NULL;
172}
173
174/**
175 * __eeh_pe_get - Check the PE address
176 * @data: EEH PE
177 * @flag: EEH device
178 *
179 * For one particular PE, it can be identified by PE address
180 * or tranditional BDF address. BDF address is composed of
181 * Bus/Device/Function number. The extra data referred by flag
182 * indicates which type of address should be used.
183 */
184static void *__eeh_pe_get(void *data, void *flag)
185{
186 struct eeh_pe *pe = (struct eeh_pe *)data;
187 struct eeh_dev *edev = (struct eeh_dev *)flag;
188
189 /* Unexpected PHB PE */
190 if (pe->type == EEH_PE_PHB)
191 return NULL;
192
193 /* We prefer PE address */
194 if (edev->pe_config_addr &&
195 (edev->pe_config_addr == pe->addr))
196 return pe;
197
198 /* Try BDF address */
199 if (edev->pe_config_addr &&
200 (edev->config_addr == pe->config_addr))
201 return pe;
202
203 return NULL;
204}
205
206/**
207 * eeh_pe_get - Search PE based on the given address
208 * @edev: EEH device
209 *
210 * Search the corresponding PE based on the specified address which
211 * is included in the eeh device. The function is used to check if
212 * the associated PE has been created against the PE address. It's
213 * notable that the PE address has 2 format: traditional PE address
214 * which is composed of PCI bus/device/function number, or unified
215 * PE address.
216 */
217static struct eeh_pe *eeh_pe_get(struct eeh_dev *edev)
218{
219 struct eeh_pe *root = eeh_phb_pe_get(edev->phb);
220 struct eeh_pe *pe;
221
222 eeh_lock();
223 pe = eeh_pe_traverse(root, __eeh_pe_get, edev);
224 eeh_unlock();
225
226 return pe;
227}
228
229/**
230 * eeh_pe_get_parent - Retrieve the parent PE
231 * @edev: EEH device
232 *
233 * The whole PEs existing in the system are organized as hierarchy
234 * tree. The function is used to retrieve the parent PE according
235 * to the parent EEH device.
236 */
237static struct eeh_pe *eeh_pe_get_parent(struct eeh_dev *edev)
238{
239 struct device_node *dn;
240 struct eeh_dev *parent;
241
242 /*
243 * It might have the case for the indirect parent
244 * EEH device already having associated PE, but
245 * the direct parent EEH device doesn't have yet.
246 */
247 dn = edev->dn->parent;
248 while (dn) {
249 /* We're poking out of PCI territory */
250 if (!PCI_DN(dn)) return NULL;
251
252 parent = of_node_to_eeh_dev(dn);
253 /* We're poking out of PCI territory */
254 if (!parent) return NULL;
255
256 if (parent->pe)
257 return parent->pe;
258
259 dn = dn->parent;
260 }
261
262 return NULL;
263}
Gavin Shan9b843482012-09-07 22:44:09 +0000264
265/**
266 * eeh_add_to_parent_pe - Add EEH device to parent PE
267 * @edev: EEH device
268 *
269 * Add EEH device to the parent PE. If the parent PE already
270 * exists, the PE type will be changed to EEH_PE_BUS. Otherwise,
271 * we have to create new PE to hold the EEH device and the new
272 * PE will be linked to its parent PE as well.
273 */
274int eeh_add_to_parent_pe(struct eeh_dev *edev)
275{
276 struct eeh_pe *pe, *parent;
277
278 /*
279 * Search the PE has been existing or not according
280 * to the PE address. If that has been existing, the
281 * PE should be composed of PCI bus and its subordinate
282 * components.
283 */
284 pe = eeh_pe_get(edev);
285 if (pe) {
286 if (!edev->pe_config_addr) {
287 pr_err("%s: PE with addr 0x%x already exists\n",
288 __func__, edev->config_addr);
289 return -EEXIST;
290 }
291
292 /* Mark the PE as type of PCI bus */
293 pe->type = EEH_PE_BUS;
294 edev->pe = pe;
295
296 /* Put the edev to PE */
297 list_add_tail(&edev->list, &pe->edevs);
298 pr_debug("EEH: Add %s to Bus PE#%x\n",
299 edev->dn->full_name, pe->addr);
300
301 return 0;
302 }
303
304 /* Create a new EEH PE */
305 pe = eeh_pe_alloc(edev->phb, EEH_PE_DEVICE);
306 if (!pe) {
307 pr_err("%s: out of memory!\n", __func__);
308 return -ENOMEM;
309 }
310 pe->addr = edev->pe_config_addr;
311 pe->config_addr = edev->config_addr;
312
313 /*
314 * Put the new EEH PE into hierarchy tree. If the parent
315 * can't be found, the newly created PE will be attached
316 * to PHB directly. Otherwise, we have to associate the
317 * PE with its parent.
318 */
319 parent = eeh_pe_get_parent(edev);
320 if (!parent) {
321 parent = eeh_phb_pe_get(edev->phb);
322 if (!parent) {
323 pr_err("%s: No PHB PE is found (PHB Domain=%d)\n",
324 __func__, edev->phb->global_number);
325 edev->pe = NULL;
326 kfree(pe);
327 return -EEXIST;
328 }
329 }
330 pe->parent = parent;
331
332 /*
333 * Put the newly created PE into the child list and
334 * link the EEH device accordingly.
335 */
336 list_add_tail(&pe->child, &parent->child_list);
337 list_add_tail(&edev->list, &pe->edevs);
338 edev->pe = pe;
339 pr_debug("EEH: Add %s to Device PE#%x, Parent PE#%x\n",
340 edev->dn->full_name, pe->addr, pe->parent->addr);
341
342 return 0;
343}
Gavin Shan82e88822012-09-07 22:44:10 +0000344
345/**
346 * eeh_rmv_from_parent_pe - Remove one EEH device from the associated PE
347 * @edev: EEH device
348 *
349 * The PE hierarchy tree might be changed when doing PCI hotplug.
350 * Also, the PCI devices or buses could be removed from the system
351 * during EEH recovery. So we have to call the function remove the
352 * corresponding PE accordingly if necessary.
353 */
354int eeh_rmv_from_parent_pe(struct eeh_dev *edev)
355{
356 struct eeh_pe *pe, *parent;
357
358 if (!edev->pe) {
359 pr_warning("%s: No PE found for EEH device %s\n",
360 __func__, edev->dn->full_name);
361 return -EEXIST;
362 }
363
364 /* Remove the EEH device */
365 pe = edev->pe;
366 edev->pe = NULL;
367 list_del(&edev->list);
368
369 /*
370 * Check if the parent PE includes any EEH devices.
371 * If not, we should delete that. Also, we should
372 * delete the parent PE if it doesn't have associated
373 * child PEs and EEH devices.
374 */
375 while (1) {
376 parent = pe->parent;
377 if (pe->type == EEH_PE_PHB)
378 break;
379
380 if (list_empty(&pe->edevs) &&
381 list_empty(&pe->child_list)) {
382 list_del(&pe->child);
383 kfree(pe);
384 }
385
386 pe = parent;
387 }
388
389 return 0;
390}