blob: c4317c452d98e706896e7aa6bac87464716849c6 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Gavin Shaneb740b52012-02-27 20:04:04 +00002/*
3 * The file intends to implement dynamic creation of EEH device, which will
4 * be bound with OF node and PCI device simutaneously. The EEH devices would
5 * be foundamental information for EEH core components to work proerly. Besides,
6 * We have to support multiple situations where dynamic creation of EEH device
7 * is required:
8 *
9 * 1) Before PCI emunation starts, we need create EEH devices according to the
10 * PCI sensitive OF nodes.
11 * 2) When PCI emunation is done, we need do the binding between PCI device and
12 * the associated EEH device.
13 * 3) DR (Dynamic Reconfiguration) would create PCI sensitive OF node. EEH device
14 * will be created while PCI sensitive OF node is detected from DR.
15 * 4) PCI hotplug needs redoing the binding between PCI device and EEH device. If
16 * PHB is newly inserted, we also need create EEH devices accordingly.
17 *
18 * Copyright Benjamin Herrenschmidt & Gavin Shan, IBM Corporation 2012.
Gavin Shaneb740b52012-02-27 20:04:04 +000019 */
20
21#include <linux/export.h>
22#include <linux/gfp.h>
23#include <linux/init.h>
24#include <linux/kernel.h>
25#include <linux/pci.h>
26#include <linux/string.h>
27
28#include <asm/pci-bridge.h>
29#include <asm/ppc-pci.h>
30
31/**
32 * eeh_dev_init - Create EEH device according to OF node
Gavin Shane8e9b342015-03-17 16:15:05 +110033 * @pdn: PCI device node
Gavin Shaneb740b52012-02-27 20:04:04 +000034 *
35 * It will create EEH device according to the given OF node. The function
36 * might be called by PCI emunation, DR, PHB hotplug.
37 */
Gavin Shan8cc75812016-05-20 16:41:37 +100038struct eeh_dev *eeh_dev_init(struct pci_dn *pdn)
Gavin Shaneb740b52012-02-27 20:04:04 +000039{
Gavin Shaneb740b52012-02-27 20:04:04 +000040 struct eeh_dev *edev;
41
42 /* Allocate EEH device */
Gavin Shan7e4bbaf2012-09-07 22:44:03 +000043 edev = kzalloc(sizeof(*edev), GFP_KERNEL);
Markus Elfring6ab41162017-08-04 16:37:56 +020044 if (!edev)
Gavin Shaneb740b52012-02-27 20:04:04 +000045 return NULL;
Gavin Shaneb740b52012-02-27 20:04:04 +000046
47 /* Associate EEH device with OF node */
Gavin Shane8e9b342015-03-17 16:15:05 +110048 pdn->edev = edev;
49 edev->pdn = pdn;
Gavin Shaneb740b52012-02-27 20:04:04 +000050
Gavin Shan8cc75812016-05-20 16:41:37 +100051 return edev;
Gavin Shaneb740b52012-02-27 20:04:04 +000052}
53
54/**
55 * eeh_dev_phb_init_dynamic - Create EEH devices for devices included in PHB
56 * @phb: PHB
57 *
58 * Scan the PHB OF node and its child association, then create the
59 * EEH devices accordingly
60 */
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -080061void eeh_dev_phb_init_dynamic(struct pci_controller *phb)
Gavin Shaneb740b52012-02-27 20:04:04 +000062{
Gavin Shan55037d12012-09-07 22:44:07 +000063 /* EEH PE for PHB */
64 eeh_phb_pe_create(phb);
Gavin Shaneb740b52012-02-27 20:04:04 +000065}