blob: b12acaad9dc6d64bab07bd308dd41698e584fe18 [file] [log] [blame]
Jan Glauber7441b062012-11-29 14:35:47 +01001/*
2 * PCI Hot Plug Controller Driver for System z
3 *
4 * Copyright 2012 IBM Corp.
5 *
6 * Author(s):
7 * Jan Glauber <jang@linux.vnet.ibm.com>
8 */
9
10#define COMPONENT "zPCI hpc"
11#define pr_fmt(fmt) COMPONENT ": " fmt
12
13#include <linux/module.h>
14#include <linux/kernel.h>
15#include <linux/slab.h>
16#include <linux/pci.h>
17#include <linux/pci_hotplug.h>
18#include <linux/init.h>
Sebastian Otta2ab8332013-04-16 14:11:14 +020019#include <asm/pci_debug.h>
Jan Glauber7441b062012-11-29 14:35:47 +010020#include <asm/sclp.h>
21
22#define SLOT_NAME_SIZE 10
23static LIST_HEAD(s390_hotplug_slot_list);
24
25MODULE_AUTHOR("Jan Glauber <jang@linux.vnet.ibm.com");
26MODULE_DESCRIPTION("Hot Plug PCI Controller for System z");
27MODULE_LICENSE("GPL");
28
29static int zpci_fn_configured(enum zpci_state state)
30{
31 return state == ZPCI_FN_STATE_CONFIGURED ||
32 state == ZPCI_FN_STATE_ONLINE;
33}
34
35/*
36 * struct slot - slot information for each *physical* slot
37 */
38struct slot {
39 struct list_head slot_list;
40 struct hotplug_slot *hotplug_slot;
41 struct zpci_dev *zdev;
42};
43
Sebastian Ott4bee2a52013-06-05 16:06:42 +020044static inline int slot_configure(struct slot *slot)
45{
46 int ret = sclp_pci_configure(slot->zdev->fid);
47
48 zpci_dbg(3, "conf fid:%x, rc:%d\n", slot->zdev->fid, ret);
49 if (!ret)
50 slot->zdev->state = ZPCI_FN_STATE_CONFIGURED;
51
52 return ret;
53}
54
55static inline int slot_deconfigure(struct slot *slot)
56{
57 int ret = sclp_pci_deconfigure(slot->zdev->fid);
58
59 zpci_dbg(3, "deconf fid:%x, rc:%d\n", slot->zdev->fid, ret);
60 if (!ret)
61 slot->zdev->state = ZPCI_FN_STATE_STANDBY;
62
63 return ret;
64}
65
Jan Glauber7441b062012-11-29 14:35:47 +010066static int enable_slot(struct hotplug_slot *hotplug_slot)
67{
68 struct slot *slot = hotplug_slot->private;
69 int rc;
70
71 if (slot->zdev->state != ZPCI_FN_STATE_STANDBY)
72 return -EIO;
73
Sebastian Ott4bee2a52013-06-05 16:06:42 +020074 rc = slot_configure(slot);
75 if (rc)
76 return rc;
77
78 rc = zpci_enable_device(slot->zdev);
79 if (rc)
80 goto out_deconfigure;
81
82 slot->zdev->state = ZPCI_FN_STATE_ONLINE;
83
84 pci_scan_slot(slot->zdev->bus, ZPCI_DEVFN);
85 pci_bus_add_devices(slot->zdev->bus);
86
87 return rc;
88
89out_deconfigure:
90 slot_deconfigure(slot);
Jan Glauber7441b062012-11-29 14:35:47 +010091 return rc;
92}
93
94static int disable_slot(struct hotplug_slot *hotplug_slot)
95{
96 struct slot *slot = hotplug_slot->private;
97 int rc;
98
99 if (!zpci_fn_configured(slot->zdev->state))
100 return -EIO;
101
Sebastian Ottcb65a662013-04-16 14:12:17 +0200102 rc = zpci_disable_device(slot->zdev);
103 if (rc)
104 return rc;
Jan Glauber7441b062012-11-29 14:35:47 +0100105 /* TODO: we rely on the user to unbind/remove the device, is that plausible
106 * or do we need to trigger that here?
107 */
Sebastian Ott4bee2a52013-06-05 16:06:42 +0200108 return slot_deconfigure(slot);
Jan Glauber7441b062012-11-29 14:35:47 +0100109}
110
111static int get_power_status(struct hotplug_slot *hotplug_slot, u8 *value)
112{
113 struct slot *slot = hotplug_slot->private;
114
115 switch (slot->zdev->state) {
116 case ZPCI_FN_STATE_STANDBY:
117 *value = 0;
118 break;
119 default:
120 *value = 1;
121 break;
122 }
123 return 0;
124}
125
126static int get_adapter_status(struct hotplug_slot *hotplug_slot, u8 *value)
127{
128 /* if the slot exits it always contains a function */
129 *value = 1;
130 return 0;
131}
132
133static void release_slot(struct hotplug_slot *hotplug_slot)
134{
135 struct slot *slot = hotplug_slot->private;
136
137 pr_debug("%s - physical_slot = %s\n", __func__, hotplug_slot_name(hotplug_slot));
138 kfree(slot->hotplug_slot->info);
139 kfree(slot->hotplug_slot);
140 kfree(slot);
141}
142
143static struct hotplug_slot_ops s390_hotplug_slot_ops = {
144 .enable_slot = enable_slot,
145 .disable_slot = disable_slot,
146 .get_power_status = get_power_status,
147 .get_adapter_status = get_adapter_status,
148};
149
150static int init_pci_slot(struct zpci_dev *zdev)
151{
152 struct hotplug_slot *hotplug_slot;
153 struct hotplug_slot_info *info;
154 char name[SLOT_NAME_SIZE];
155 struct slot *slot;
156 int rc;
157
158 if (!zdev)
159 return 0;
160
161 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
162 if (!slot)
163 goto error;
164
165 hotplug_slot = kzalloc(sizeof(*hotplug_slot), GFP_KERNEL);
166 if (!hotplug_slot)
167 goto error_hp;
168 hotplug_slot->private = slot;
169
170 slot->hotplug_slot = hotplug_slot;
171 slot->zdev = zdev;
172
173 info = kzalloc(sizeof(*info), GFP_KERNEL);
174 if (!info)
175 goto error_info;
176 hotplug_slot->info = info;
177
178 hotplug_slot->ops = &s390_hotplug_slot_ops;
179 hotplug_slot->release = &release_slot;
180
181 get_power_status(hotplug_slot, &info->power_status);
182 get_adapter_status(hotplug_slot, &info->adapter_status);
183
184 snprintf(name, SLOT_NAME_SIZE, "%08x", zdev->fid);
185 rc = pci_hp_register(slot->hotplug_slot, zdev->bus,
186 ZPCI_DEVFN, name);
187 if (rc) {
188 pr_err("pci_hp_register failed with error %d\n", rc);
189 goto error_reg;
190 }
191 list_add(&slot->slot_list, &s390_hotplug_slot_list);
192 return 0;
193
194error_reg:
195 kfree(info);
196error_info:
197 kfree(hotplug_slot);
198error_hp:
199 kfree(slot);
200error:
201 return -ENOMEM;
202}
203
Jan Glauber7441b062012-11-29 14:35:47 +0100204static void exit_pci_slot(struct zpci_dev *zdev)
205{
206 struct list_head *tmp, *n;
207 struct slot *slot;
208
209 list_for_each_safe(tmp, n, &s390_hotplug_slot_list) {
210 slot = list_entry(tmp, struct slot, slot_list);
211 if (slot->zdev != zdev)
212 continue;
213 list_del(&slot->slot_list);
214 pci_hp_deregister(slot->hotplug_slot);
215 }
216}
217
Sebastian Ott53923352013-01-31 19:55:17 +0100218static struct pci_hp_callback_ops hp_ops = {
219 .create_slot = init_pci_slot,
220 .remove_slot = exit_pci_slot,
221};
222
223static void __init init_pci_slots(void)
224{
225 struct zpci_dev *zdev;
226
227 /*
228 * Create a structure for each slot, and register that slot
229 * with the pci_hotplug subsystem.
230 */
231 mutex_lock(&zpci_list_lock);
232 list_for_each_entry(zdev, &zpci_list, entry) {
233 init_pci_slot(zdev);
234 }
235 mutex_unlock(&zpci_list_lock);
236}
237
Jan Glauber7441b062012-11-29 14:35:47 +0100238static void __exit exit_pci_slots(void)
239{
240 struct list_head *tmp, *n;
241 struct slot *slot;
242
243 /*
244 * Unregister all of our slots with the pci_hotplug subsystem.
245 * Memory will be freed in release_slot() callback after slot's
246 * lifespan is finished.
247 */
248 list_for_each_safe(tmp, n, &s390_hotplug_slot_list) {
249 slot = list_entry(tmp, struct slot, slot_list);
250 list_del(&slot->slot_list);
251 pci_hp_deregister(slot->hotplug_slot);
252 }
253}
254
255static int __init pci_hotplug_s390_init(void)
256{
Heiko Carstens1e5635d2013-01-30 15:52:16 +0100257 if (!s390_pci_probe)
Jan Glauber7441b062012-11-29 14:35:47 +0100258 return -EOPNOTSUPP;
259
Sebastian Ott53923352013-01-31 19:55:17 +0100260 zpci_register_hp_ops(&hp_ops);
261 init_pci_slots();
262
263 return 0;
Jan Glauber7441b062012-11-29 14:35:47 +0100264}
265
266static void __exit pci_hotplug_s390_exit(void)
267{
268 exit_pci_slots();
Sebastian Ott53923352013-01-31 19:55:17 +0100269 zpci_deregister_hp_ops();
Jan Glauber7441b062012-11-29 14:35:47 +0100270}
271
272module_init(pci_hotplug_s390_init);
273module_exit(pci_hotplug_s390_exit);