1 // SPDX-License-Identifier: GPL-2.0+
3 * PCI Hot Plug Controller Driver for RPA-compliant PPC64 platform.
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/moduleparam.h>
14 #include <linux/pci.h>
15 #include <linux/pci_hotplug.h>
16 #include <linux/smp.h>
17 #include <linux/init.h>
18 #include <linux/vmalloc.h>
19 #include <asm/firmware.h>
20 #include <asm/eeh.h> /* for eeh_add_device() */
21 #include <asm/rtas.h> /* rtas_call */
22 #include <asm/pci-bridge.h> /* for pci_controller */
23 #include "../pci.h" /* for pci_add_new_bus */
24 /* and pci_do_scan_bus */
28 LIST_HEAD(rpaphp_slot_head);
29 EXPORT_SYMBOL_GPL(rpaphp_slot_head);
31 #define DRIVER_VERSION "0.1"
33 #define DRIVER_DESC "RPA HOT Plug PCI Controller Driver"
35 #define MAX_LOC_CODE 128
37 MODULE_AUTHOR(DRIVER_AUTHOR);
38 MODULE_DESCRIPTION(DRIVER_DESC);
39 MODULE_LICENSE("GPL");
41 module_param_named(debug, rpaphp_debug, bool, 0644);
44 * set_attention_status - set attention LED
45 * @hotplug_slot: target &hotplug_slot
46 * @value: LED control value
48 * echo 0 > attention -- set LED OFF
49 * echo 1 > attention -- set LED ON
50 * echo 2 > attention -- set LED ID(identify, light is blinking)
52 static int set_attention_status(struct hotplug_slot *hotplug_slot, u8 value)
55 struct slot *slot = to_slot(hotplug_slot);
67 rc = rtas_set_indicator(DR_INDICATOR, slot->index, value);
69 slot->attention_status = value;
75 * get_power_status - get power status of a slot
76 * @hotplug_slot: slot to get status
77 * @value: pointer to store status
79 static int get_power_status(struct hotplug_slot *hotplug_slot, u8 *value)
82 struct slot *slot = to_slot(hotplug_slot);
84 retval = rtas_get_power_level(slot->power_domain, &level);
91 * get_attention_status - get attention LED status
92 * @hotplug_slot: slot to get status
93 * @value: pointer to store status
95 static int get_attention_status(struct hotplug_slot *hotplug_slot, u8 *value)
97 struct slot *slot = to_slot(hotplug_slot);
98 *value = slot->attention_status;
102 static int get_adapter_status(struct hotplug_slot *hotplug_slot, u8 *value)
104 struct slot *slot = to_slot(hotplug_slot);
107 rc = rpaphp_get_sensor_state(slot, &state);
115 else if (state == PRESENT)
116 *value = slot->state;
121 static enum pci_bus_speed get_max_bus_speed(struct slot *slot)
123 enum pci_bus_speed speed;
124 switch (slot->type) {
131 speed = PCI_SPEED_33MHz; /* speed for case 1-6 */
135 speed = PCI_SPEED_66MHz;
139 speed = PCI_SPEED_66MHz_PCIX;
143 speed = PCI_SPEED_100MHz_PCIX;
147 speed = PCI_SPEED_133MHz_PCIX;
150 speed = PCI_SPEED_UNKNOWN;
157 static int get_children_props(struct device_node *dn, const int **drc_indexes,
158 const int **drc_names, const int **drc_types,
159 const int **drc_power_domains)
161 const int *indexes, *names, *types, *domains;
163 indexes = of_get_property(dn, "ibm,drc-indexes", NULL);
164 names = of_get_property(dn, "ibm,drc-names", NULL);
165 types = of_get_property(dn, "ibm,drc-types", NULL);
166 domains = of_get_property(dn, "ibm,drc-power-domains", NULL);
168 if (!indexes || !names || !types || !domains) {
169 /* Slot does not have dynamically-removable children */
173 *drc_indexes = indexes;
175 /* &drc_names[1] contains NULL terminated slot names */
178 /* &drc_types[1] contains NULL terminated slot types */
180 if (drc_power_domains)
181 *drc_power_domains = domains;
187 /* Verify the existence of 'drc_name' and/or 'drc_type' within the
188 * current node. First obtain it's my-drc-index property. Next,
189 * obtain the DRC info from it's parent. Use the my-drc-index for
190 * correlation, and obtain/validate the requested properties.
193 static int rpaphp_check_drc_props_v1(struct device_node *dn, char *drc_name,
194 char *drc_type, unsigned int my_index)
196 char *name_tmp, *type_tmp;
197 const int *indexes, *names;
198 const int *types, *domains;
201 rc = get_children_props(dn->parent, &indexes, &names, &types, &domains);
206 name_tmp = (char *) &names[1];
207 type_tmp = (char *) &types[1];
209 /* Iterate through parent properties, looking for my-drc-index */
210 for (i = 0; i < be32_to_cpu(indexes[0]); i++) {
211 if ((unsigned int) indexes[i + 1] == my_index)
214 name_tmp += (strlen(name_tmp) + 1);
215 type_tmp += (strlen(type_tmp) + 1);
218 if (((drc_name == NULL) || (drc_name && !strcmp(drc_name, name_tmp))) &&
219 ((drc_type == NULL) || (drc_type && !strcmp(drc_type, type_tmp))))
225 static int rpaphp_check_drc_props_v2(struct device_node *dn, char *drc_name,
226 char *drc_type, unsigned int my_index)
228 struct property *info;
229 unsigned int entries;
230 struct of_drc_info drc;
232 char cell_drc_name[MAX_DRC_NAME_LEN];
235 info = of_find_property(dn->parent, "ibm,drc-info", NULL);
239 value = of_prop_next_u32(info, NULL, &entries);
243 for (j = 0; j < entries; j++) {
244 of_read_drc_info_cell(&info, &value, &drc);
246 /* Should now know end of current entry */
249 if (my_index <= drc.last_drc_index) {
250 sprintf(cell_drc_name, "%s%d", drc.drc_name_prefix,
256 if (((drc_name == NULL) ||
257 (drc_name && !strcmp(drc_name, cell_drc_name))) &&
258 ((drc_type == NULL) ||
259 (drc_type && !strcmp(drc_type, drc.drc_type))))
265 int rpaphp_check_drc_props(struct device_node *dn, char *drc_name,
268 const unsigned int *my_index;
270 my_index = of_get_property(dn, "ibm,my-drc-index", NULL);
272 /* Node isn't DLPAR/hotplug capable */
276 if (firmware_has_feature(FW_FEATURE_DRC_INFO))
277 return rpaphp_check_drc_props_v2(dn, drc_name, drc_type,
280 return rpaphp_check_drc_props_v1(dn, drc_name, drc_type,
283 EXPORT_SYMBOL_GPL(rpaphp_check_drc_props);
286 static int is_php_type(char *drc_type)
291 /* PCI Hotplug nodes have an integer for drc_type */
292 value = simple_strtoul(drc_type, &endptr, 10);
293 if (endptr == drc_type)
300 * is_php_dn() - return 1 if this is a hotpluggable pci slot, else 0
301 * @dn: target &device_node
302 * @indexes: passed to get_children_props()
303 * @names: passed to get_children_props()
304 * @types: returned from get_children_props()
307 * This routine will return true only if the device node is
308 * a hotpluggable slot. This routine will return false
309 * for built-in pci slots (even when the built-in slots are
312 static int is_php_dn(struct device_node *dn, const int **indexes,
313 const int **names, const int **types, const int **power_domains)
315 const int *drc_types;
318 rc = get_children_props(dn, indexes, names, &drc_types, power_domains);
322 if (!is_php_type((char *) &drc_types[1]))
330 * rpaphp_add_slot -- declare a hotplug slot to the hotplug subsystem.
331 * @dn: device node of slot
333 * This subroutine will register a hotpluggable slot with the
334 * PCI hotplug infrastructure. This routine is typically called
335 * during boot time, if the hotplug slots are present at boot time,
336 * or is called later, by the dlpar add code, if the slot is
337 * being dynamically added during runtime.
339 * If the device node points at an embedded (built-in) slot, this
340 * routine will just return without doing anything, since embedded
341 * slots cannot be hotplugged.
343 * To remove a slot, it suffices to call rpaphp_deregister_slot().
345 int rpaphp_add_slot(struct device_node *dn)
350 const int *indexes, *names, *types, *power_domains;
353 if (!dn->name || strcmp(dn->name, "pci"))
356 /* If this is not a hotplug slot, return without doing anything. */
357 if (!is_php_dn(dn, &indexes, &names, &types, &power_domains))
360 dbg("Entry %s: dn=%pOF\n", __func__, dn);
362 /* register PCI devices */
363 name = (char *) &names[1];
364 type = (char *) &types[1];
365 for (i = 0; i < be32_to_cpu(indexes[0]); i++) {
368 index = be32_to_cpu(indexes[i + 1]);
369 slot = alloc_slot_struct(dn, index, name,
370 be32_to_cpu(power_domains[i + 1]));
374 slot->type = simple_strtoul(type, NULL, 10);
376 dbg("Found drc-index:0x%x drc-name:%s drc-type:%s\n",
379 retval = rpaphp_enable_slot(slot);
381 retval = rpaphp_register_slot(slot);
384 dealloc_slot_struct(slot);
386 name += strlen(name) + 1;
387 type += strlen(type) + 1;
389 dbg("%s - Exit: rc[%d]\n", __func__, retval);
391 /* XXX FIXME: reports a failure only if last entry in loop failed */
394 EXPORT_SYMBOL_GPL(rpaphp_add_slot);
396 static void __exit cleanup_slots(void)
398 struct slot *slot, *next;
401 * Unregister all of our slots with the pci_hotplug subsystem,
402 * and free up all memory that we had allocated.
405 list_for_each_entry_safe(slot, next, &rpaphp_slot_head,
407 list_del(&slot->rpaphp_slot_list);
408 pci_hp_deregister(&slot->hotplug_slot);
409 dealloc_slot_struct(slot);
413 static int __init rpaphp_init(void)
415 struct device_node *dn;
417 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
419 for_each_node_by_name(dn, "pci")
425 static void __exit rpaphp_exit(void)
430 static int enable_slot(struct hotplug_slot *hotplug_slot)
432 struct slot *slot = to_slot(hotplug_slot);
436 if (slot->state == CONFIGURED)
439 retval = rpaphp_get_sensor_state(slot, &state);
443 if (state == PRESENT) {
444 pci_lock_rescan_remove();
445 pci_hp_add_devices(slot->bus);
446 pci_unlock_rescan_remove();
447 slot->state = CONFIGURED;
448 } else if (state == EMPTY) {
451 err("%s: slot[%s] is in invalid state\n", __func__, slot->name);
452 slot->state = NOT_VALID;
456 slot->bus->max_bus_speed = get_max_bus_speed(slot);
460 static int disable_slot(struct hotplug_slot *hotplug_slot)
462 struct slot *slot = to_slot(hotplug_slot);
463 if (slot->state == NOT_CONFIGURED)
466 pci_lock_rescan_remove();
467 pci_hp_remove_devices(slot->bus);
468 pci_unlock_rescan_remove();
471 slot->state = NOT_CONFIGURED;
475 const struct hotplug_slot_ops rpaphp_hotplug_slot_ops = {
476 .enable_slot = enable_slot,
477 .disable_slot = disable_slot,
478 .set_attention_status = set_attention_status,
479 .get_power_status = get_power_status,
480 .get_attention_status = get_attention_status,
481 .get_adapter_status = get_adapter_status,
484 module_init(rpaphp_init);
485 module_exit(rpaphp_exit);