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 #include <linux/kernel.h>
14 #include <linux/kref.h>
15 #include <linux/notifier.h>
16 #include <linux/proc_fs.h>
17 #include <linux/spinlock.h>
18 #include <linux/cpu.h>
19 #include <linux/slab.h>
20 #include "offline_states.h"
23 #include <asm/machdep.h>
24 #include <asm/uaccess.h>
26 #include <asm/pSeries_reconfig.h>
36 void dlpar_free_cc_property(struct property
*prop
)
43 static struct property
*dlpar_parse_cc_property(struct cc_workarea
*ccwa
)
45 struct property
*prop
;
49 prop
= kzalloc(sizeof(*prop
), GFP_KERNEL
);
53 name
= (char *)ccwa
+ ccwa
->name_offset
;
54 prop
->name
= kstrdup(name
, GFP_KERNEL
);
56 prop
->length
= ccwa
->prop_length
;
57 value
= (char *)ccwa
+ ccwa
->prop_offset
;
58 prop
->value
= kmemdup(value
, prop
->length
, GFP_KERNEL
);
60 dlpar_free_cc_property(prop
);
67 static struct device_node
*dlpar_parse_cc_node(struct cc_workarea
*ccwa
)
69 struct device_node
*dn
;
72 dn
= kzalloc(sizeof(*dn
), GFP_KERNEL
);
76 /* The configure connector reported name does not contain a
77 * preceding '/', so we allocate a buffer large enough to
78 * prepend this to the full_name.
80 name
= (char *)ccwa
+ ccwa
->name_offset
;
81 dn
->full_name
= kasprintf(GFP_KERNEL
, "/%s", name
);
90 static void dlpar_free_one_cc_node(struct device_node
*dn
)
92 struct property
*prop
;
94 while (dn
->properties
) {
95 prop
= dn
->properties
;
96 dn
->properties
= prop
->next
;
97 dlpar_free_cc_property(prop
);
100 kfree(dn
->full_name
);
104 void dlpar_free_cc_nodes(struct device_node
*dn
)
107 dlpar_free_cc_nodes(dn
->child
);
110 dlpar_free_cc_nodes(dn
->sibling
);
112 dlpar_free_one_cc_node(dn
);
116 #define NEXT_SIBLING 1
118 #define NEXT_PROPERTY 3
119 #define PREV_PARENT 4
120 #define MORE_MEMORY 5
121 #define CALL_AGAIN -2
122 #define ERR_CFG_USE -9003
124 struct device_node
*dlpar_configure_connector(u32 drc_index
)
126 struct device_node
*dn
;
127 struct device_node
*first_dn
= NULL
;
128 struct device_node
*last_dn
= NULL
;
129 struct property
*property
;
130 struct property
*last_property
= NULL
;
131 struct cc_workarea
*ccwa
;
136 cc_token
= rtas_token("ibm,configure-connector");
137 if (cc_token
== RTAS_UNKNOWN_SERVICE
)
140 data_buf
= kzalloc(RTAS_DATA_BUF_SIZE
, GFP_KERNEL
);
144 ccwa
= (struct cc_workarea
*)&data_buf
[0];
145 ccwa
->drc_index
= drc_index
;
149 /* Since we release the rtas_data_buf lock between configure
150 * connector calls we want to re-populate the rtas_data_buffer
151 * with the contents of the previous call.
153 spin_lock(&rtas_data_buf_lock
);
155 memcpy(rtas_data_buf
, data_buf
, RTAS_DATA_BUF_SIZE
);
156 rc
= rtas_call(cc_token
, 2, 1, NULL
, rtas_data_buf
, NULL
);
157 memcpy(data_buf
, rtas_data_buf
, RTAS_DATA_BUF_SIZE
);
159 spin_unlock(&rtas_data_buf_lock
);
166 dn
= dlpar_parse_cc_node(ccwa
);
170 dn
->parent
= last_dn
->parent
;
171 last_dn
->sibling
= dn
;
176 dn
= dlpar_parse_cc_node(ccwa
);
183 dn
->parent
= last_dn
;
192 property
= dlpar_parse_cc_property(ccwa
);
196 if (!last_dn
->properties
)
197 last_dn
->properties
= property
;
199 last_property
->next
= property
;
201 last_property
= property
;
205 last_dn
= last_dn
->parent
;
214 printk(KERN_ERR
"Unexpected Error (%d) "
215 "returned from configure-connector\n", rc
);
225 dlpar_free_cc_nodes(first_dn
);
233 static struct device_node
*derive_parent(const char *path
)
235 struct device_node
*parent
;
238 last_slash
= strrchr(path
, '/');
239 if (last_slash
== path
) {
240 parent
= of_find_node_by_path("/");
243 int parent_path_len
= last_slash
- path
+ 1;
244 parent_path
= kmalloc(parent_path_len
, GFP_KERNEL
);
248 strlcpy(parent_path
, path
, parent_path_len
);
249 parent
= of_find_node_by_path(parent_path
);
256 int dlpar_attach_node(struct device_node
*dn
)
258 #ifdef CONFIG_PROC_DEVICETREE
259 struct proc_dir_entry
*ent
;
263 of_node_set_flag(dn
, OF_DYNAMIC
);
264 kref_init(&dn
->kref
);
265 dn
->parent
= derive_parent(dn
->full_name
);
269 rc
= pSeries_reconfig_notify(PSERIES_RECONFIG_ADD
, dn
);
271 printk(KERN_ERR
"Failed to add device node %s\n",
278 #ifdef CONFIG_PROC_DEVICETREE
279 ent
= proc_mkdir(strrchr(dn
->full_name
, '/') + 1, dn
->parent
->pde
);
281 proc_device_tree_add_node(dn
, ent
);
284 of_node_put(dn
->parent
);
288 int dlpar_detach_node(struct device_node
*dn
)
290 #ifdef CONFIG_PROC_DEVICETREE
291 struct device_node
*parent
= dn
->parent
;
292 struct property
*prop
= dn
->properties
;
295 remove_proc_entry(prop
->name
, dn
->pde
);
300 remove_proc_entry(dn
->pde
->name
, parent
->pde
);
303 pSeries_reconfig_notify(PSERIES_RECONFIG_REMOVE
, dn
);
305 of_node_put(dn
); /* Must decrement the refcount */
310 #define DR_ENTITY_SENSE 9003
311 #define DR_ENTITY_PRESENT 1
312 #define DR_ENTITY_UNUSABLE 2
313 #define ALLOCATION_STATE 9003
314 #define ALLOC_UNUSABLE 0
315 #define ALLOC_USABLE 1
316 #define ISOLATION_STATE 9001
320 int dlpar_acquire_drc(u32 drc_index
)
324 rc
= rtas_call(rtas_token("get-sensor-state"), 2, 2, &dr_status
,
325 DR_ENTITY_SENSE
, drc_index
);
326 if (rc
|| dr_status
!= DR_ENTITY_UNUSABLE
)
329 rc
= rtas_set_indicator(ALLOCATION_STATE
, drc_index
, ALLOC_USABLE
);
333 rc
= rtas_set_indicator(ISOLATION_STATE
, drc_index
, UNISOLATE
);
335 rtas_set_indicator(ALLOCATION_STATE
, drc_index
, ALLOC_UNUSABLE
);
342 int dlpar_release_drc(u32 drc_index
)
346 rc
= rtas_call(rtas_token("get-sensor-state"), 2, 2, &dr_status
,
347 DR_ENTITY_SENSE
, drc_index
);
348 if (rc
|| dr_status
!= DR_ENTITY_PRESENT
)
351 rc
= rtas_set_indicator(ISOLATION_STATE
, drc_index
, ISOLATE
);
355 rc
= rtas_set_indicator(ALLOCATION_STATE
, drc_index
, ALLOC_UNUSABLE
);
357 rtas_set_indicator(ISOLATION_STATE
, drc_index
, UNISOLATE
);
364 #ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
366 static int dlpar_online_cpu(struct device_node
*dn
)
370 int len
, nthreads
, i
;
373 intserv
= of_get_property(dn
, "ibm,ppc-interrupt-server#s", &len
);
377 nthreads
= len
/ sizeof(u32
);
379 cpu_maps_update_begin();
380 for (i
= 0; i
< nthreads
; i
++) {
381 for_each_present_cpu(cpu
) {
382 if (get_hard_smp_processor_id(cpu
) != intserv
[i
])
384 BUG_ON(get_cpu_current_state(cpu
)
385 != CPU_STATE_OFFLINE
);
386 cpu_maps_update_done();
390 cpu_maps_update_begin();
394 if (cpu
== num_possible_cpus())
395 printk(KERN_WARNING
"Could not find cpu to online "
396 "with physical id 0x%x\n", intserv
[i
]);
398 cpu_maps_update_done();
405 static ssize_t
dlpar_cpu_probe(const char *buf
, size_t count
)
407 struct device_node
*dn
;
408 unsigned long drc_index
;
412 cpu_hotplug_driver_lock();
413 rc
= strict_strtoul(buf
, 0, &drc_index
);
419 dn
= dlpar_configure_connector(drc_index
);
425 /* configure-connector reports cpus as living in the base
426 * directory of the device tree. CPUs actually live in the
427 * cpus directory so we need to fixup the full_name.
429 cpu_name
= kasprintf(GFP_KERNEL
, "/cpus%s", dn
->full_name
);
431 dlpar_free_cc_nodes(dn
);
436 kfree(dn
->full_name
);
437 dn
->full_name
= cpu_name
;
439 rc
= dlpar_acquire_drc(drc_index
);
441 dlpar_free_cc_nodes(dn
);
446 rc
= dlpar_attach_node(dn
);
448 dlpar_release_drc(drc_index
);
449 dlpar_free_cc_nodes(dn
);
453 rc
= dlpar_online_cpu(dn
);
455 cpu_hotplug_driver_unlock();
457 return rc
? rc
: count
;
460 static int dlpar_offline_cpu(struct device_node
*dn
)
464 int len
, nthreads
, i
;
467 intserv
= of_get_property(dn
, "ibm,ppc-interrupt-server#s", &len
);
471 nthreads
= len
/ sizeof(u32
);
473 cpu_maps_update_begin();
474 for (i
= 0; i
< nthreads
; i
++) {
475 for_each_present_cpu(cpu
) {
476 if (get_hard_smp_processor_id(cpu
) != intserv
[i
])
479 if (get_cpu_current_state(cpu
) == CPU_STATE_OFFLINE
)
482 if (get_cpu_current_state(cpu
) == CPU_STATE_ONLINE
) {
483 set_preferred_offline_state(cpu
, CPU_STATE_OFFLINE
);
484 cpu_maps_update_done();
488 cpu_maps_update_begin();
494 * The cpu is in CPU_STATE_INACTIVE.
495 * Upgrade it's state to CPU_STATE_OFFLINE.
497 set_preferred_offline_state(cpu
, CPU_STATE_OFFLINE
);
498 BUG_ON(plpar_hcall_norets(H_PROD
, intserv
[i
])
503 if (cpu
== num_possible_cpus())
504 printk(KERN_WARNING
"Could not find cpu to offline "
505 "with physical id 0x%x\n", intserv
[i
]);
507 cpu_maps_update_done();
514 static ssize_t
dlpar_cpu_release(const char *buf
, size_t count
)
516 struct device_node
*dn
;
517 const u32
*drc_index
;
520 dn
= of_find_node_by_path(buf
);
524 drc_index
= of_get_property(dn
, "ibm,my-drc-index", NULL
);
530 cpu_hotplug_driver_lock();
531 rc
= dlpar_offline_cpu(dn
);
538 rc
= dlpar_release_drc(*drc_index
);
544 rc
= dlpar_detach_node(dn
);
546 dlpar_acquire_drc(*drc_index
);
552 cpu_hotplug_driver_unlock();
553 return rc
? rc
: count
;
556 static int __init
pseries_dlpar_init(void)
558 ppc_md
.cpu_probe
= dlpar_cpu_probe
;
559 ppc_md
.cpu_release
= dlpar_cpu_release
;
563 machine_device_initcall(pseries
, pseries_dlpar_init
);
565 #endif /* CONFIG_ARCH_CPU_PROBE_RELEASE */