123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511 |
- /*
- * Support for dynamic reconfiguration for PCI, Memory, and CPU
- * Hotplug and Dynamic Logical Partitioning on RPA platforms.
- *
- * Copyright (C) 2009 Nathan Fontenot
- * Copyright (C) 2009 IBM Corporation
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License version
- * 2 as published by the Free Software Foundation.
- */
- #define pr_fmt(fmt) "dlpar: " fmt
- #include <linux/kernel.h>
- #include <linux/notifier.h>
- #include <linux/spinlock.h>
- #include <linux/cpu.h>
- #include <linux/slab.h>
- #include <linux/of.h>
- #include "of_helpers.h"
- #include "pseries.h"
- #include <asm/prom.h>
- #include <asm/machdep.h>
- #include <asm/uaccess.h>
- #include <asm/rtas.h>
- static struct workqueue_struct *pseries_hp_wq;
- struct pseries_hp_work {
- struct work_struct work;
- struct pseries_hp_errorlog *errlog;
- struct completion *hp_completion;
- int *rc;
- };
- struct cc_workarea {
- __be32 drc_index;
- __be32 zero;
- __be32 name_offset;
- __be32 prop_length;
- __be32 prop_offset;
- };
- void dlpar_free_cc_property(struct property *prop)
- {
- kfree(prop->name);
- kfree(prop->value);
- kfree(prop);
- }
- static struct property *dlpar_parse_cc_property(struct cc_workarea *ccwa)
- {
- struct property *prop;
- char *name;
- char *value;
- prop = kzalloc(sizeof(*prop), GFP_KERNEL);
- if (!prop)
- return NULL;
- name = (char *)ccwa + be32_to_cpu(ccwa->name_offset);
- prop->name = kstrdup(name, GFP_KERNEL);
- prop->length = be32_to_cpu(ccwa->prop_length);
- value = (char *)ccwa + be32_to_cpu(ccwa->prop_offset);
- prop->value = kmemdup(value, prop->length, GFP_KERNEL);
- if (!prop->value) {
- dlpar_free_cc_property(prop);
- return NULL;
- }
- return prop;
- }
- static struct device_node *dlpar_parse_cc_node(struct cc_workarea *ccwa,
- const char *path)
- {
- struct device_node *dn;
- char *name;
- /* If parent node path is "/" advance path to NULL terminator to
- * prevent double leading slashs in full_name.
- */
- if (!path[1])
- path++;
- dn = kzalloc(sizeof(*dn), GFP_KERNEL);
- if (!dn)
- return NULL;
- name = (char *)ccwa + be32_to_cpu(ccwa->name_offset);
- dn->full_name = kasprintf(GFP_KERNEL, "%s/%s", path, name);
- if (!dn->full_name) {
- kfree(dn);
- return NULL;
- }
- of_node_set_flag(dn, OF_DYNAMIC);
- of_node_init(dn);
- return dn;
- }
- static void dlpar_free_one_cc_node(struct device_node *dn)
- {
- struct property *prop;
- while (dn->properties) {
- prop = dn->properties;
- dn->properties = prop->next;
- dlpar_free_cc_property(prop);
- }
- kfree(dn->full_name);
- kfree(dn);
- }
- void dlpar_free_cc_nodes(struct device_node *dn)
- {
- if (dn->child)
- dlpar_free_cc_nodes(dn->child);
- if (dn->sibling)
- dlpar_free_cc_nodes(dn->sibling);
- dlpar_free_one_cc_node(dn);
- }
- #define COMPLETE 0
- #define NEXT_SIBLING 1
- #define NEXT_CHILD 2
- #define NEXT_PROPERTY 3
- #define PREV_PARENT 4
- #define MORE_MEMORY 5
- #define CALL_AGAIN -2
- #define ERR_CFG_USE -9003
- struct device_node *dlpar_configure_connector(__be32 drc_index,
- struct device_node *parent)
- {
- struct device_node *dn;
- struct device_node *first_dn = NULL;
- struct device_node *last_dn = NULL;
- struct property *property;
- struct property *last_property = NULL;
- struct cc_workarea *ccwa;
- char *data_buf;
- const char *parent_path = parent->full_name;
- int cc_token;
- int rc = -1;
- cc_token = rtas_token("ibm,configure-connector");
- if (cc_token == RTAS_UNKNOWN_SERVICE)
- return NULL;
- data_buf = kzalloc(RTAS_DATA_BUF_SIZE, GFP_KERNEL);
- if (!data_buf)
- return NULL;
- ccwa = (struct cc_workarea *)&data_buf[0];
- ccwa->drc_index = drc_index;
- ccwa->zero = 0;
- do {
- /* Since we release the rtas_data_buf lock between configure
- * connector calls we want to re-populate the rtas_data_buffer
- * with the contents of the previous call.
- */
- spin_lock(&rtas_data_buf_lock);
- memcpy(rtas_data_buf, data_buf, RTAS_DATA_BUF_SIZE);
- rc = rtas_call(cc_token, 2, 1, NULL, rtas_data_buf, NULL);
- memcpy(data_buf, rtas_data_buf, RTAS_DATA_BUF_SIZE);
- spin_unlock(&rtas_data_buf_lock);
- switch (rc) {
- case COMPLETE:
- break;
- case NEXT_SIBLING:
- dn = dlpar_parse_cc_node(ccwa, parent_path);
- if (!dn)
- goto cc_error;
- dn->parent = last_dn->parent;
- last_dn->sibling = dn;
- last_dn = dn;
- break;
- case NEXT_CHILD:
- if (first_dn)
- parent_path = last_dn->full_name;
- dn = dlpar_parse_cc_node(ccwa, parent_path);
- if (!dn)
- goto cc_error;
- if (!first_dn) {
- dn->parent = parent;
- first_dn = dn;
- } else {
- dn->parent = last_dn;
- if (last_dn)
- last_dn->child = dn;
- }
- last_dn = dn;
- break;
- case NEXT_PROPERTY:
- property = dlpar_parse_cc_property(ccwa);
- if (!property)
- goto cc_error;
- if (!last_dn->properties)
- last_dn->properties = property;
- else
- last_property->next = property;
- last_property = property;
- break;
- case PREV_PARENT:
- last_dn = last_dn->parent;
- parent_path = last_dn->parent->full_name;
- break;
- case CALL_AGAIN:
- break;
- case MORE_MEMORY:
- case ERR_CFG_USE:
- default:
- printk(KERN_ERR "Unexpected Error (%d) "
- "returned from configure-connector\n", rc);
- goto cc_error;
- }
- } while (rc);
- cc_error:
- kfree(data_buf);
- if (rc) {
- if (first_dn)
- dlpar_free_cc_nodes(first_dn);
- return NULL;
- }
- return first_dn;
- }
- int dlpar_attach_node(struct device_node *dn)
- {
- int rc;
- dn->parent = pseries_of_derive_parent(dn->full_name);
- if (IS_ERR(dn->parent))
- return PTR_ERR(dn->parent);
- rc = of_attach_node(dn);
- if (rc) {
- printk(KERN_ERR "Failed to add device node %s\n",
- dn->full_name);
- return rc;
- }
- of_node_put(dn->parent);
- return 0;
- }
- int dlpar_detach_node(struct device_node *dn)
- {
- struct device_node *child;
- int rc;
- child = of_get_next_child(dn, NULL);
- while (child) {
- dlpar_detach_node(child);
- child = of_get_next_child(dn, child);
- }
- rc = of_detach_node(dn);
- if (rc)
- return rc;
- return 0;
- }
- #define DR_ENTITY_SENSE 9003
- #define DR_ENTITY_PRESENT 1
- #define DR_ENTITY_UNUSABLE 2
- #define ALLOCATION_STATE 9003
- #define ALLOC_UNUSABLE 0
- #define ALLOC_USABLE 1
- #define ISOLATION_STATE 9001
- #define ISOLATE 0
- #define UNISOLATE 1
- int dlpar_acquire_drc(u32 drc_index)
- {
- int dr_status, rc;
- rc = rtas_call(rtas_token("get-sensor-state"), 2, 2, &dr_status,
- DR_ENTITY_SENSE, drc_index);
- if (rc || dr_status != DR_ENTITY_UNUSABLE)
- return -1;
- rc = rtas_set_indicator(ALLOCATION_STATE, drc_index, ALLOC_USABLE);
- if (rc)
- return rc;
- rc = rtas_set_indicator(ISOLATION_STATE, drc_index, UNISOLATE);
- if (rc) {
- rtas_set_indicator(ALLOCATION_STATE, drc_index, ALLOC_UNUSABLE);
- return rc;
- }
- return 0;
- }
- int dlpar_release_drc(u32 drc_index)
- {
- int dr_status, rc;
- rc = rtas_call(rtas_token("get-sensor-state"), 2, 2, &dr_status,
- DR_ENTITY_SENSE, drc_index);
- if (rc || dr_status != DR_ENTITY_PRESENT)
- return -1;
- rc = rtas_set_indicator(ISOLATION_STATE, drc_index, ISOLATE);
- if (rc)
- return rc;
- rc = rtas_set_indicator(ALLOCATION_STATE, drc_index, ALLOC_UNUSABLE);
- if (rc) {
- rtas_set_indicator(ISOLATION_STATE, drc_index, UNISOLATE);
- return rc;
- }
- return 0;
- }
- static int handle_dlpar_errorlog(struct pseries_hp_errorlog *hp_elog)
- {
- int rc;
- /* pseries error logs are in BE format, convert to cpu type */
- switch (hp_elog->id_type) {
- case PSERIES_HP_ELOG_ID_DRC_COUNT:
- hp_elog->_drc_u.drc_count =
- be32_to_cpu(hp_elog->_drc_u.drc_count);
- break;
- case PSERIES_HP_ELOG_ID_DRC_INDEX:
- hp_elog->_drc_u.drc_index =
- be32_to_cpu(hp_elog->_drc_u.drc_index);
- }
- switch (hp_elog->resource) {
- case PSERIES_HP_ELOG_RESOURCE_MEM:
- rc = dlpar_memory(hp_elog);
- break;
- case PSERIES_HP_ELOG_RESOURCE_CPU:
- rc = dlpar_cpu(hp_elog);
- break;
- default:
- pr_warn_ratelimited("Invalid resource (%d) specified\n",
- hp_elog->resource);
- rc = -EINVAL;
- }
- return rc;
- }
- static void pseries_hp_work_fn(struct work_struct *work)
- {
- struct pseries_hp_work *hp_work =
- container_of(work, struct pseries_hp_work, work);
- if (hp_work->rc)
- *(hp_work->rc) = handle_dlpar_errorlog(hp_work->errlog);
- else
- handle_dlpar_errorlog(hp_work->errlog);
- if (hp_work->hp_completion)
- complete(hp_work->hp_completion);
- kfree(hp_work->errlog);
- kfree((void *)work);
- }
- void queue_hotplug_event(struct pseries_hp_errorlog *hp_errlog,
- struct completion *hotplug_done, int *rc)
- {
- struct pseries_hp_work *work;
- struct pseries_hp_errorlog *hp_errlog_copy;
- hp_errlog_copy = kmalloc(sizeof(struct pseries_hp_errorlog),
- GFP_KERNEL);
- memcpy(hp_errlog_copy, hp_errlog, sizeof(struct pseries_hp_errorlog));
- work = kmalloc(sizeof(struct pseries_hp_work), GFP_KERNEL);
- if (work) {
- INIT_WORK((struct work_struct *)work, pseries_hp_work_fn);
- work->errlog = hp_errlog_copy;
- work->hp_completion = hotplug_done;
- work->rc = rc;
- queue_work(pseries_hp_wq, (struct work_struct *)work);
- } else {
- *rc = -ENOMEM;
- kfree(hp_errlog_copy);
- complete(hotplug_done);
- }
- }
- static ssize_t dlpar_store(struct class *class, struct class_attribute *attr,
- const char *buf, size_t count)
- {
- struct pseries_hp_errorlog *hp_elog;
- struct completion hotplug_done;
- const char *arg;
- int rc;
- hp_elog = kzalloc(sizeof(*hp_elog), GFP_KERNEL);
- if (!hp_elog) {
- rc = -ENOMEM;
- goto dlpar_store_out;
- }
- /* Parse out the request from the user, this will be in the form
- * <resource> <action> <id_type> <id>
- */
- arg = buf;
- if (!strncmp(arg, "memory", 6)) {
- hp_elog->resource = PSERIES_HP_ELOG_RESOURCE_MEM;
- arg += strlen("memory ");
- } else if (!strncmp(arg, "cpu", 3)) {
- hp_elog->resource = PSERIES_HP_ELOG_RESOURCE_CPU;
- arg += strlen("cpu ");
- } else {
- pr_err("Invalid resource specified: \"%s\"\n", buf);
- rc = -EINVAL;
- goto dlpar_store_out;
- }
- if (!strncmp(arg, "add", 3)) {
- hp_elog->action = PSERIES_HP_ELOG_ACTION_ADD;
- arg += strlen("add ");
- } else if (!strncmp(arg, "remove", 6)) {
- hp_elog->action = PSERIES_HP_ELOG_ACTION_REMOVE;
- arg += strlen("remove ");
- } else {
- pr_err("Invalid action specified: \"%s\"\n", buf);
- rc = -EINVAL;
- goto dlpar_store_out;
- }
- if (!strncmp(arg, "index", 5)) {
- u32 index;
- hp_elog->id_type = PSERIES_HP_ELOG_ID_DRC_INDEX;
- arg += strlen("index ");
- if (kstrtou32(arg, 0, &index)) {
- rc = -EINVAL;
- pr_err("Invalid drc_index specified: \"%s\"\n", buf);
- goto dlpar_store_out;
- }
- hp_elog->_drc_u.drc_index = cpu_to_be32(index);
- } else if (!strncmp(arg, "count", 5)) {
- u32 count;
- hp_elog->id_type = PSERIES_HP_ELOG_ID_DRC_COUNT;
- arg += strlen("count ");
- if (kstrtou32(arg, 0, &count)) {
- rc = -EINVAL;
- pr_err("Invalid count specified: \"%s\"\n", buf);
- goto dlpar_store_out;
- }
- hp_elog->_drc_u.drc_count = cpu_to_be32(count);
- } else {
- pr_err("Invalid id_type specified: \"%s\"\n", buf);
- rc = -EINVAL;
- goto dlpar_store_out;
- }
- init_completion(&hotplug_done);
- queue_hotplug_event(hp_elog, &hotplug_done, &rc);
- wait_for_completion(&hotplug_done);
- dlpar_store_out:
- kfree(hp_elog);
- return rc ? rc : count;
- }
- static CLASS_ATTR(dlpar, S_IWUSR, NULL, dlpar_store);
- static int __init pseries_dlpar_init(void)
- {
- pseries_hp_wq = alloc_workqueue("pseries hotplug workqueue",
- WQ_UNBOUND, 1);
- return sysfs_create_file(kernel_kobj, &class_attr_dlpar.attr);
- }
- machine_device_initcall(pseries, pseries_dlpar_init);
|