1 // SPDX-License-Identifier: GPL-2.0+
3 * PCI Hot Plug Controller Driver for System z
5 * Copyright 2012 IBM Corp.
11 #define KMSG_COMPONENT "zpci"
12 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
14 #include <linux/kernel.h>
15 #include <linux/slab.h>
16 #include <linux/pci.h>
17 #include <linux/pci_hotplug.h>
18 #include <asm/pci_debug.h>
21 #define SLOT_NAME_SIZE 10
23 static int enable_slot(struct hotplug_slot *hotplug_slot)
25 struct zpci_dev *zdev = container_of(hotplug_slot, struct zpci_dev,
29 if (zdev->state != ZPCI_FN_STATE_STANDBY)
32 rc = sclp_pci_configure(zdev->fid);
33 zpci_dbg(3, "conf fid:%x, rc:%d\n", zdev->fid, rc);
36 zdev->state = ZPCI_FN_STATE_CONFIGURED;
38 return zpci_scan_configured_device(zdev, zdev->fh);
41 static int disable_slot(struct hotplug_slot *hotplug_slot)
43 struct zpci_dev *zdev = container_of(hotplug_slot, struct zpci_dev,
47 if (zdev->state != ZPCI_FN_STATE_CONFIGURED)
50 pdev = pci_get_slot(zdev->zbus->bus, zdev->devfn);
51 if (pdev && pci_num_vf(pdev)) {
57 return zpci_deconfigure_device(zdev);
60 static int reset_slot(struct hotplug_slot *hotplug_slot, bool probe)
62 struct zpci_dev *zdev = container_of(hotplug_slot, struct zpci_dev,
65 if (zdev->state != ZPCI_FN_STATE_CONFIGURED)
68 * We can't take the zdev->lock as reset_slot may be called during
69 * probing and/or device removal which already happens under the
70 * zdev->lock. Instead the user should use the higher level
71 * pci_reset_function() or pci_bus_reset() which hold the PCI device
72 * lock preventing concurrent removal. If not using these functions
73 * holding the PCI device lock is required.
76 /* As long as the function is configured we can reset */
80 return zpci_hot_reset_device(zdev);
83 static int get_power_status(struct hotplug_slot *hotplug_slot, u8 *value)
85 struct zpci_dev *zdev = container_of(hotplug_slot, struct zpci_dev,
88 *value = zpci_is_device_configured(zdev) ? 1 : 0;
92 static int get_adapter_status(struct hotplug_slot *hotplug_slot, u8 *value)
94 /* if the slot exits it always contains a function */
99 static const struct hotplug_slot_ops s390_hotplug_slot_ops = {
100 .enable_slot = enable_slot,
101 .disable_slot = disable_slot,
102 .reset_slot = reset_slot,
103 .get_power_status = get_power_status,
104 .get_adapter_status = get_adapter_status,
107 int zpci_init_slot(struct zpci_dev *zdev)
109 char name[SLOT_NAME_SIZE];
110 struct zpci_bus *zbus = zdev->zbus;
112 zdev->hotplug_slot.ops = &s390_hotplug_slot_ops;
114 snprintf(name, SLOT_NAME_SIZE, "%08x", zdev->fid);
115 return pci_hp_register(&zdev->hotplug_slot, zbus->bus,
119 void zpci_exit_slot(struct zpci_dev *zdev)
121 pci_hp_deregister(&zdev->hotplug_slot);