1 // SPDX-License-Identifier: GPL-2.0-only
3 * Support for dynamic reconfiguration for PCI, Memory, and CPU
4 * Hotplug and Dynamic Logical Partitioning on RPA platforms.
6 * Copyright (C) 2009 Nathan Fontenot
7 * Copyright (C) 2009 IBM Corporation
10 #define pr_fmt(fmt) "dlpar: " fmt
12 #include <linux/kernel.h>
13 #include <linux/notifier.h>
14 #include <linux/spinlock.h>
15 #include <linux/cpu.h>
16 #include <linux/slab.h>
19 #include "of_helpers.h"
23 #include <asm/machdep.h>
24 #include <linux/uaccess.h>
27 static struct workqueue_struct *pseries_hp_wq;
29 struct pseries_hp_work {
30 struct work_struct work;
31 struct pseries_hp_errorlog *errlog;
42 void dlpar_free_cc_property(struct property *prop)
49 static struct property *dlpar_parse_cc_property(struct cc_workarea *ccwa)
51 struct property *prop;
55 prop = kzalloc(sizeof(*prop), GFP_KERNEL);
59 name = (char *)ccwa + be32_to_cpu(ccwa->name_offset);
60 prop->name = kstrdup(name, GFP_KERNEL);
62 dlpar_free_cc_property(prop);
66 prop->length = be32_to_cpu(ccwa->prop_length);
67 value = (char *)ccwa + be32_to_cpu(ccwa->prop_offset);
68 prop->value = kmemdup(value, prop->length, GFP_KERNEL);
70 dlpar_free_cc_property(prop);
77 static struct device_node *dlpar_parse_cc_node(struct cc_workarea *ccwa)
79 struct device_node *dn;
82 dn = kzalloc(sizeof(*dn), GFP_KERNEL);
86 name = (const char *)ccwa + be32_to_cpu(ccwa->name_offset);
87 dn->full_name = kstrdup(name, GFP_KERNEL);
93 of_node_set_flag(dn, OF_DYNAMIC);
99 static void dlpar_free_one_cc_node(struct device_node *dn)
101 struct property *prop;
103 while (dn->properties) {
104 prop = dn->properties;
105 dn->properties = prop->next;
106 dlpar_free_cc_property(prop);
109 kfree(dn->full_name);
113 void dlpar_free_cc_nodes(struct device_node *dn)
116 dlpar_free_cc_nodes(dn->child);
119 dlpar_free_cc_nodes(dn->sibling);
121 dlpar_free_one_cc_node(dn);
125 #define NEXT_SIBLING 1
127 #define NEXT_PROPERTY 3
128 #define PREV_PARENT 4
129 #define MORE_MEMORY 5
130 #define CALL_AGAIN -2
131 #define ERR_CFG_USE -9003
133 struct device_node *dlpar_configure_connector(__be32 drc_index,
134 struct device_node *parent)
136 struct device_node *dn;
137 struct device_node *first_dn = NULL;
138 struct device_node *last_dn = NULL;
139 struct property *property;
140 struct property *last_property = NULL;
141 struct cc_workarea *ccwa;
146 cc_token = rtas_token("ibm,configure-connector");
147 if (cc_token == RTAS_UNKNOWN_SERVICE)
150 data_buf = kzalloc(RTAS_DATA_BUF_SIZE, GFP_KERNEL);
154 ccwa = (struct cc_workarea *)&data_buf[0];
155 ccwa->drc_index = drc_index;
159 /* Since we release the rtas_data_buf lock between configure
160 * connector calls we want to re-populate the rtas_data_buffer
161 * with the contents of the previous call.
163 spin_lock(&rtas_data_buf_lock);
165 memcpy(rtas_data_buf, data_buf, RTAS_DATA_BUF_SIZE);
166 rc = rtas_call(cc_token, 2, 1, NULL, rtas_data_buf, NULL);
167 memcpy(data_buf, rtas_data_buf, RTAS_DATA_BUF_SIZE);
169 spin_unlock(&rtas_data_buf_lock);
176 dn = dlpar_parse_cc_node(ccwa);
180 dn->parent = last_dn->parent;
181 last_dn->sibling = dn;
186 dn = dlpar_parse_cc_node(ccwa);
194 dn->parent = last_dn;
203 property = dlpar_parse_cc_property(ccwa);
207 if (!last_dn->properties)
208 last_dn->properties = property;
210 last_property->next = property;
212 last_property = property;
216 last_dn = last_dn->parent;
225 printk(KERN_ERR "Unexpected Error (%d) "
226 "returned from configure-connector\n", rc);
236 dlpar_free_cc_nodes(first_dn);
244 int dlpar_attach_node(struct device_node *dn, struct device_node *parent)
250 rc = of_attach_node(dn);
252 printk(KERN_ERR "Failed to add device node %pOF\n", dn);
259 int dlpar_detach_node(struct device_node *dn)
261 struct device_node *child;
264 child = of_get_next_child(dn, NULL);
266 dlpar_detach_node(child);
267 child = of_get_next_child(dn, child);
270 rc = of_detach_node(dn);
279 #define DR_ENTITY_SENSE 9003
280 #define DR_ENTITY_PRESENT 1
281 #define DR_ENTITY_UNUSABLE 2
282 #define ALLOCATION_STATE 9003
283 #define ALLOC_UNUSABLE 0
284 #define ALLOC_USABLE 1
285 #define ISOLATION_STATE 9001
289 int dlpar_acquire_drc(u32 drc_index)
293 rc = rtas_call(rtas_token("get-sensor-state"), 2, 2, &dr_status,
294 DR_ENTITY_SENSE, drc_index);
295 if (rc || dr_status != DR_ENTITY_UNUSABLE)
298 rc = rtas_set_indicator(ALLOCATION_STATE, drc_index, ALLOC_USABLE);
302 rc = rtas_set_indicator(ISOLATION_STATE, drc_index, UNISOLATE);
304 rtas_set_indicator(ALLOCATION_STATE, drc_index, ALLOC_UNUSABLE);
311 int dlpar_release_drc(u32 drc_index)
315 rc = rtas_call(rtas_token("get-sensor-state"), 2, 2, &dr_status,
316 DR_ENTITY_SENSE, drc_index);
317 if (rc || dr_status != DR_ENTITY_PRESENT)
320 rc = rtas_set_indicator(ISOLATION_STATE, drc_index, ISOLATE);
324 rc = rtas_set_indicator(ALLOCATION_STATE, drc_index, ALLOC_UNUSABLE);
326 rtas_set_indicator(ISOLATION_STATE, drc_index, UNISOLATE);
333 int handle_dlpar_errorlog(struct pseries_hp_errorlog *hp_elog)
337 /* pseries error logs are in BE format, convert to cpu type */
338 switch (hp_elog->id_type) {
339 case PSERIES_HP_ELOG_ID_DRC_COUNT:
340 hp_elog->_drc_u.drc_count =
341 be32_to_cpu(hp_elog->_drc_u.drc_count);
343 case PSERIES_HP_ELOG_ID_DRC_INDEX:
344 hp_elog->_drc_u.drc_index =
345 be32_to_cpu(hp_elog->_drc_u.drc_index);
347 case PSERIES_HP_ELOG_ID_DRC_IC:
348 hp_elog->_drc_u.ic.count =
349 be32_to_cpu(hp_elog->_drc_u.ic.count);
350 hp_elog->_drc_u.ic.index =
351 be32_to_cpu(hp_elog->_drc_u.ic.index);
354 switch (hp_elog->resource) {
355 case PSERIES_HP_ELOG_RESOURCE_MEM:
356 rc = dlpar_memory(hp_elog);
358 case PSERIES_HP_ELOG_RESOURCE_CPU:
359 rc = dlpar_cpu(hp_elog);
361 case PSERIES_HP_ELOG_RESOURCE_PMEM:
362 rc = dlpar_hp_pmem(hp_elog);
366 pr_warn_ratelimited("Invalid resource (%d) specified\n",
374 static void pseries_hp_work_fn(struct work_struct *work)
376 struct pseries_hp_work *hp_work =
377 container_of(work, struct pseries_hp_work, work);
379 handle_dlpar_errorlog(hp_work->errlog);
381 kfree(hp_work->errlog);
385 void queue_hotplug_event(struct pseries_hp_errorlog *hp_errlog)
387 struct pseries_hp_work *work;
388 struct pseries_hp_errorlog *hp_errlog_copy;
390 hp_errlog_copy = kmemdup(hp_errlog, sizeof(*hp_errlog), GFP_ATOMIC);
394 work = kmalloc(sizeof(struct pseries_hp_work), GFP_ATOMIC);
396 INIT_WORK((struct work_struct *)work, pseries_hp_work_fn);
397 work->errlog = hp_errlog_copy;
398 queue_work(pseries_hp_wq, (struct work_struct *)work);
400 kfree(hp_errlog_copy);
404 static int dlpar_parse_resource(char **cmd, struct pseries_hp_errorlog *hp_elog)
408 arg = strsep(cmd, " ");
412 if (sysfs_streq(arg, "memory")) {
413 hp_elog->resource = PSERIES_HP_ELOG_RESOURCE_MEM;
414 } else if (sysfs_streq(arg, "cpu")) {
415 hp_elog->resource = PSERIES_HP_ELOG_RESOURCE_CPU;
417 pr_err("Invalid resource specified.\n");
424 static int dlpar_parse_action(char **cmd, struct pseries_hp_errorlog *hp_elog)
428 arg = strsep(cmd, " ");
432 if (sysfs_streq(arg, "add")) {
433 hp_elog->action = PSERIES_HP_ELOG_ACTION_ADD;
434 } else if (sysfs_streq(arg, "remove")) {
435 hp_elog->action = PSERIES_HP_ELOG_ACTION_REMOVE;
437 pr_err("Invalid action specified.\n");
444 static int dlpar_parse_id_type(char **cmd, struct pseries_hp_errorlog *hp_elog)
449 arg = strsep(cmd, " ");
453 if (sysfs_streq(arg, "indexed-count")) {
454 hp_elog->id_type = PSERIES_HP_ELOG_ID_DRC_IC;
455 arg = strsep(cmd, " ");
457 pr_err("No DRC count specified.\n");
461 if (kstrtou32(arg, 0, &count)) {
462 pr_err("Invalid DRC count specified.\n");
466 arg = strsep(cmd, " ");
468 pr_err("No DRC Index specified.\n");
472 if (kstrtou32(arg, 0, &index)) {
473 pr_err("Invalid DRC Index specified.\n");
477 hp_elog->_drc_u.ic.count = cpu_to_be32(count);
478 hp_elog->_drc_u.ic.index = cpu_to_be32(index);
479 } else if (sysfs_streq(arg, "index")) {
480 hp_elog->id_type = PSERIES_HP_ELOG_ID_DRC_INDEX;
481 arg = strsep(cmd, " ");
483 pr_err("No DRC Index specified.\n");
487 if (kstrtou32(arg, 0, &index)) {
488 pr_err("Invalid DRC Index specified.\n");
492 hp_elog->_drc_u.drc_index = cpu_to_be32(index);
493 } else if (sysfs_streq(arg, "count")) {
494 hp_elog->id_type = PSERIES_HP_ELOG_ID_DRC_COUNT;
495 arg = strsep(cmd, " ");
497 pr_err("No DRC count specified.\n");
501 if (kstrtou32(arg, 0, &count)) {
502 pr_err("Invalid DRC count specified.\n");
506 hp_elog->_drc_u.drc_count = cpu_to_be32(count);
508 pr_err("Invalid id_type specified.\n");
515 static ssize_t dlpar_store(struct class *class, struct class_attribute *attr,
516 const char *buf, size_t count)
518 struct pseries_hp_errorlog hp_elog;
523 args = argbuf = kstrdup(buf, GFP_KERNEL);
525 pr_info("Could not allocate resources for DLPAR operation\n");
531 * Parse out the request from the user, this will be in the form:
532 * <resource> <action> <id_type> <id>
534 rc = dlpar_parse_resource(&args, &hp_elog);
536 goto dlpar_store_out;
538 rc = dlpar_parse_action(&args, &hp_elog);
540 goto dlpar_store_out;
542 rc = dlpar_parse_id_type(&args, &hp_elog);
544 goto dlpar_store_out;
546 rc = handle_dlpar_errorlog(&hp_elog);
552 pr_err("Could not handle DLPAR request \"%s\"\n", buf);
554 return rc ? rc : count;
557 static ssize_t dlpar_show(struct class *class, struct class_attribute *attr,
560 return sprintf(buf, "%s\n", "memory,cpu");
563 static CLASS_ATTR_RW(dlpar);
565 int __init dlpar_workqueue_init(void)
570 pseries_hp_wq = alloc_workqueue("pseries hotplug workqueue",
573 return pseries_hp_wq ? 0 : -ENOMEM;
576 static int __init dlpar_sysfs_init(void)
580 rc = dlpar_workqueue_init();
584 return sysfs_create_file(kernel_kobj, &class_attr_dlpar.attr);
586 machine_device_initcall(pseries, dlpar_sysfs_init);