2 * Support for dynamic reconfiguration for PCI, Memory, and CPU
3 * Hotplug and Dynamic Logical Partitioning on RPA platforms.
5 * Copyright (C) 2009 Nathan Fontenot
6 * Copyright (C) 2009 IBM Corporation
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version
10 * 2 as published by the Free Software Foundation.
13 #define pr_fmt(fmt) "dlpar: " fmt
15 #include <linux/kernel.h>
16 #include <linux/notifier.h>
17 #include <linux/spinlock.h>
18 #include <linux/cpu.h>
19 #include <linux/slab.h>
22 #include "of_helpers.h"
26 #include <asm/machdep.h>
27 #include <linux/uaccess.h>
30 static struct workqueue_struct
*pseries_hp_wq
;
32 struct pseries_hp_work
{
33 struct work_struct work
;
34 struct pseries_hp_errorlog
*errlog
;
35 struct completion
*hp_completion
;
47 void dlpar_free_cc_property(struct property
*prop
)
54 static struct property
*dlpar_parse_cc_property(struct cc_workarea
*ccwa
)
56 struct property
*prop
;
60 prop
= kzalloc(sizeof(*prop
), GFP_KERNEL
);
64 name
= (char *)ccwa
+ be32_to_cpu(ccwa
->name_offset
);
65 prop
->name
= kstrdup(name
, GFP_KERNEL
);
67 prop
->length
= be32_to_cpu(ccwa
->prop_length
);
68 value
= (char *)ccwa
+ be32_to_cpu(ccwa
->prop_offset
);
69 prop
->value
= kmemdup(value
, prop
->length
, GFP_KERNEL
);
71 dlpar_free_cc_property(prop
);
78 static struct device_node
*dlpar_parse_cc_node(struct cc_workarea
*ccwa
,
81 struct device_node
*dn
;
84 /* If parent node path is "/" advance path to NULL terminator to
85 * prevent double leading slashs in full_name.
90 dn
= kzalloc(sizeof(*dn
), GFP_KERNEL
);
94 name
= (char *)ccwa
+ be32_to_cpu(ccwa
->name_offset
);
95 dn
->full_name
= kasprintf(GFP_KERNEL
, "%s/%s", path
, name
);
101 of_node_set_flag(dn
, OF_DYNAMIC
);
107 static void dlpar_free_one_cc_node(struct device_node
*dn
)
109 struct property
*prop
;
111 while (dn
->properties
) {
112 prop
= dn
->properties
;
113 dn
->properties
= prop
->next
;
114 dlpar_free_cc_property(prop
);
117 kfree(dn
->full_name
);
121 void dlpar_free_cc_nodes(struct device_node
*dn
)
124 dlpar_free_cc_nodes(dn
->child
);
127 dlpar_free_cc_nodes(dn
->sibling
);
129 dlpar_free_one_cc_node(dn
);
133 #define NEXT_SIBLING 1
135 #define NEXT_PROPERTY 3
136 #define PREV_PARENT 4
137 #define MORE_MEMORY 5
138 #define CALL_AGAIN -2
139 #define ERR_CFG_USE -9003
141 struct device_node
*dlpar_configure_connector(__be32 drc_index
,
142 struct device_node
*parent
)
144 struct device_node
*dn
;
145 struct device_node
*first_dn
= NULL
;
146 struct device_node
*last_dn
= NULL
;
147 struct property
*property
;
148 struct property
*last_property
= NULL
;
149 struct cc_workarea
*ccwa
;
151 const char *parent_path
= parent
->full_name
;
155 cc_token
= rtas_token("ibm,configure-connector");
156 if (cc_token
== RTAS_UNKNOWN_SERVICE
)
159 data_buf
= kzalloc(RTAS_DATA_BUF_SIZE
, GFP_KERNEL
);
163 ccwa
= (struct cc_workarea
*)&data_buf
[0];
164 ccwa
->drc_index
= drc_index
;
168 /* Since we release the rtas_data_buf lock between configure
169 * connector calls we want to re-populate the rtas_data_buffer
170 * with the contents of the previous call.
172 spin_lock(&rtas_data_buf_lock
);
174 memcpy(rtas_data_buf
, data_buf
, RTAS_DATA_BUF_SIZE
);
175 rc
= rtas_call(cc_token
, 2, 1, NULL
, rtas_data_buf
, NULL
);
176 memcpy(data_buf
, rtas_data_buf
, RTAS_DATA_BUF_SIZE
);
178 spin_unlock(&rtas_data_buf_lock
);
185 dn
= dlpar_parse_cc_node(ccwa
, parent_path
);
189 dn
->parent
= last_dn
->parent
;
190 last_dn
->sibling
= dn
;
196 parent_path
= last_dn
->full_name
;
198 dn
= dlpar_parse_cc_node(ccwa
, parent_path
);
206 dn
->parent
= last_dn
;
215 property
= dlpar_parse_cc_property(ccwa
);
219 if (!last_dn
->properties
)
220 last_dn
->properties
= property
;
222 last_property
->next
= property
;
224 last_property
= property
;
228 last_dn
= last_dn
->parent
;
229 parent_path
= last_dn
->parent
->full_name
;
238 printk(KERN_ERR
"Unexpected Error (%d) "
239 "returned from configure-connector\n", rc
);
249 dlpar_free_cc_nodes(first_dn
);
257 int dlpar_attach_node(struct device_node
*dn
, struct device_node
*parent
)
263 rc
= of_attach_node(dn
);
265 printk(KERN_ERR
"Failed to add device node %pOF\n", dn
);
272 int dlpar_detach_node(struct device_node
*dn
)
274 struct device_node
*child
;
277 child
= of_get_next_child(dn
, NULL
);
279 dlpar_detach_node(child
);
280 child
= of_get_next_child(dn
, child
);
283 rc
= of_detach_node(dn
);
290 #define DR_ENTITY_SENSE 9003
291 #define DR_ENTITY_PRESENT 1
292 #define DR_ENTITY_UNUSABLE 2
293 #define ALLOCATION_STATE 9003
294 #define ALLOC_UNUSABLE 0
295 #define ALLOC_USABLE 1
296 #define ISOLATION_STATE 9001
300 int dlpar_acquire_drc(u32 drc_index
)
304 rc
= rtas_call(rtas_token("get-sensor-state"), 2, 2, &dr_status
,
305 DR_ENTITY_SENSE
, drc_index
);
306 if (rc
|| dr_status
!= DR_ENTITY_UNUSABLE
)
309 rc
= rtas_set_indicator(ALLOCATION_STATE
, drc_index
, ALLOC_USABLE
);
313 rc
= rtas_set_indicator(ISOLATION_STATE
, drc_index
, UNISOLATE
);
315 rtas_set_indicator(ALLOCATION_STATE
, drc_index
, ALLOC_UNUSABLE
);
322 int dlpar_release_drc(u32 drc_index
)
326 rc
= rtas_call(rtas_token("get-sensor-state"), 2, 2, &dr_status
,
327 DR_ENTITY_SENSE
, drc_index
);
328 if (rc
|| dr_status
!= DR_ENTITY_PRESENT
)
331 rc
= rtas_set_indicator(ISOLATION_STATE
, drc_index
, ISOLATE
);
335 rc
= rtas_set_indicator(ALLOCATION_STATE
, drc_index
, ALLOC_UNUSABLE
);
337 rtas_set_indicator(ISOLATION_STATE
, drc_index
, UNISOLATE
);
344 static int handle_dlpar_errorlog(struct pseries_hp_errorlog
*hp_elog
)
348 /* pseries error logs are in BE format, convert to cpu type */
349 switch (hp_elog
->id_type
) {
350 case PSERIES_HP_ELOG_ID_DRC_COUNT
:
351 hp_elog
->_drc_u
.drc_count
=
352 be32_to_cpu(hp_elog
->_drc_u
.drc_count
);
354 case PSERIES_HP_ELOG_ID_DRC_INDEX
:
355 hp_elog
->_drc_u
.drc_index
=
356 be32_to_cpu(hp_elog
->_drc_u
.drc_index
);
358 case PSERIES_HP_ELOG_ID_DRC_IC
:
359 hp_elog
->_drc_u
.ic
.count
=
360 be32_to_cpu(hp_elog
->_drc_u
.ic
.count
);
361 hp_elog
->_drc_u
.ic
.index
=
362 be32_to_cpu(hp_elog
->_drc_u
.ic
.index
);
365 switch (hp_elog
->resource
) {
366 case PSERIES_HP_ELOG_RESOURCE_MEM
:
367 rc
= dlpar_memory(hp_elog
);
369 case PSERIES_HP_ELOG_RESOURCE_CPU
:
370 rc
= dlpar_cpu(hp_elog
);
373 pr_warn_ratelimited("Invalid resource (%d) specified\n",
381 static void pseries_hp_work_fn(struct work_struct
*work
)
383 struct pseries_hp_work
*hp_work
=
384 container_of(work
, struct pseries_hp_work
, work
);
387 *(hp_work
->rc
) = handle_dlpar_errorlog(hp_work
->errlog
);
389 handle_dlpar_errorlog(hp_work
->errlog
);
391 if (hp_work
->hp_completion
)
392 complete(hp_work
->hp_completion
);
394 kfree(hp_work
->errlog
);
398 void queue_hotplug_event(struct pseries_hp_errorlog
*hp_errlog
,
399 struct completion
*hotplug_done
, int *rc
)
401 struct pseries_hp_work
*work
;
402 struct pseries_hp_errorlog
*hp_errlog_copy
;
404 hp_errlog_copy
= kmalloc(sizeof(struct pseries_hp_errorlog
),
406 memcpy(hp_errlog_copy
, hp_errlog
, sizeof(struct pseries_hp_errorlog
));
408 work
= kmalloc(sizeof(struct pseries_hp_work
), GFP_KERNEL
);
410 INIT_WORK((struct work_struct
*)work
, pseries_hp_work_fn
);
411 work
->errlog
= hp_errlog_copy
;
412 work
->hp_completion
= hotplug_done
;
414 queue_work(pseries_hp_wq
, (struct work_struct
*)work
);
417 kfree(hp_errlog_copy
);
418 complete(hotplug_done
);
422 static int dlpar_parse_resource(char **cmd
, struct pseries_hp_errorlog
*hp_elog
)
426 arg
= strsep(cmd
, " ");
430 if (sysfs_streq(arg
, "memory")) {
431 hp_elog
->resource
= PSERIES_HP_ELOG_RESOURCE_MEM
;
432 } else if (sysfs_streq(arg
, "cpu")) {
433 hp_elog
->resource
= PSERIES_HP_ELOG_RESOURCE_CPU
;
435 pr_err("Invalid resource specified.\n");
442 static int dlpar_parse_action(char **cmd
, struct pseries_hp_errorlog
*hp_elog
)
446 arg
= strsep(cmd
, " ");
450 if (sysfs_streq(arg
, "add")) {
451 hp_elog
->action
= PSERIES_HP_ELOG_ACTION_ADD
;
452 } else if (sysfs_streq(arg
, "remove")) {
453 hp_elog
->action
= PSERIES_HP_ELOG_ACTION_REMOVE
;
455 pr_err("Invalid action specified.\n");
462 static int dlpar_parse_id_type(char **cmd
, struct pseries_hp_errorlog
*hp_elog
)
467 arg
= strsep(cmd
, " ");
471 if (sysfs_streq(arg
, "indexed-count")) {
472 hp_elog
->id_type
= PSERIES_HP_ELOG_ID_DRC_IC
;
473 arg
= strsep(cmd
, " ");
475 pr_err("No DRC count specified.\n");
479 if (kstrtou32(arg
, 0, &count
)) {
480 pr_err("Invalid DRC count specified.\n");
484 arg
= strsep(cmd
, " ");
486 pr_err("No DRC Index specified.\n");
490 if (kstrtou32(arg
, 0, &index
)) {
491 pr_err("Invalid DRC Index specified.\n");
495 hp_elog
->_drc_u
.ic
.count
= cpu_to_be32(count
);
496 hp_elog
->_drc_u
.ic
.index
= cpu_to_be32(index
);
497 } else if (sysfs_streq(arg
, "index")) {
498 hp_elog
->id_type
= PSERIES_HP_ELOG_ID_DRC_INDEX
;
499 arg
= strsep(cmd
, " ");
501 pr_err("No DRC Index specified.\n");
505 if (kstrtou32(arg
, 0, &index
)) {
506 pr_err("Invalid DRC Index specified.\n");
510 hp_elog
->_drc_u
.drc_index
= cpu_to_be32(index
);
511 } else if (sysfs_streq(arg
, "count")) {
512 hp_elog
->id_type
= PSERIES_HP_ELOG_ID_DRC_COUNT
;
513 arg
= strsep(cmd
, " ");
515 pr_err("No DRC count specified.\n");
519 if (kstrtou32(arg
, 0, &count
)) {
520 pr_err("Invalid DRC count specified.\n");
524 hp_elog
->_drc_u
.drc_count
= cpu_to_be32(count
);
526 pr_err("Invalid id_type specified.\n");
533 static ssize_t
dlpar_store(struct class *class, struct class_attribute
*attr
,
534 const char *buf
, size_t count
)
536 struct pseries_hp_errorlog
*hp_elog
;
537 struct completion hotplug_done
;
542 args
= argbuf
= kstrdup(buf
, GFP_KERNEL
);
543 hp_elog
= kzalloc(sizeof(*hp_elog
), GFP_KERNEL
);
544 if (!hp_elog
|| !argbuf
) {
545 pr_info("Could not allocate resources for DLPAR operation\n");
552 * Parse out the request from the user, this will be in the form:
553 * <resource> <action> <id_type> <id>
555 rc
= dlpar_parse_resource(&args
, hp_elog
);
557 goto dlpar_store_out
;
559 rc
= dlpar_parse_action(&args
, hp_elog
);
561 goto dlpar_store_out
;
563 rc
= dlpar_parse_id_type(&args
, hp_elog
);
565 goto dlpar_store_out
;
567 init_completion(&hotplug_done
);
568 queue_hotplug_event(hp_elog
, &hotplug_done
, &rc
);
569 wait_for_completion(&hotplug_done
);
576 pr_err("Could not handle DLPAR request \"%s\"\n", buf
);
578 return rc
? rc
: count
;
581 static ssize_t
dlpar_show(struct class *class, struct class_attribute
*attr
,
584 return sprintf(buf
, "%s\n", "memory,cpu");
587 static CLASS_ATTR_RW(dlpar
);
589 static int __init
pseries_dlpar_init(void)
591 pseries_hp_wq
= alloc_workqueue("pseries hotplug workqueue",
593 return sysfs_create_file(kernel_kobj
, &class_attr_dlpar
.attr
);
595 machine_device_initcall(pseries
, pseries_dlpar_init
);