dlpar.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565
  1. /*
  2. * Support for dynamic reconfiguration for PCI, Memory, and CPU
  3. * Hotplug and Dynamic Logical Partitioning on RPA platforms.
  4. *
  5. * Copyright (C) 2009 Nathan Fontenot
  6. * Copyright (C) 2009 IBM Corporation
  7. *
  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.
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/kref.h>
  14. #include <linux/notifier.h>
  15. #include <linux/proc_fs.h>
  16. #include <linux/spinlock.h>
  17. #include <linux/cpu.h>
  18. #include <linux/slab.h>
  19. #include "offline_states.h"
  20. #include <asm/prom.h>
  21. #include <asm/machdep.h>
  22. #include <asm/uaccess.h>
  23. #include <asm/rtas.h>
  24. #include <asm/pSeries_reconfig.h>
  25. struct cc_workarea {
  26. u32 drc_index;
  27. u32 zero;
  28. u32 name_offset;
  29. u32 prop_length;
  30. u32 prop_offset;
  31. };
  32. void dlpar_free_cc_property(struct property *prop)
  33. {
  34. kfree(prop->name);
  35. kfree(prop->value);
  36. kfree(prop);
  37. }
  38. static struct property *dlpar_parse_cc_property(struct cc_workarea *ccwa)
  39. {
  40. struct property *prop;
  41. char *name;
  42. char *value;
  43. prop = kzalloc(sizeof(*prop), GFP_KERNEL);
  44. if (!prop)
  45. return NULL;
  46. name = (char *)ccwa + ccwa->name_offset;
  47. prop->name = kstrdup(name, GFP_KERNEL);
  48. prop->length = ccwa->prop_length;
  49. value = (char *)ccwa + ccwa->prop_offset;
  50. prop->value = kmemdup(value, prop->length, GFP_KERNEL);
  51. if (!prop->value) {
  52. dlpar_free_cc_property(prop);
  53. return NULL;
  54. }
  55. return prop;
  56. }
  57. static struct device_node *dlpar_parse_cc_node(struct cc_workarea *ccwa)
  58. {
  59. struct device_node *dn;
  60. char *name;
  61. dn = kzalloc(sizeof(*dn), GFP_KERNEL);
  62. if (!dn)
  63. return NULL;
  64. /* The configure connector reported name does not contain a
  65. * preceding '/', so we allocate a buffer large enough to
  66. * prepend this to the full_name.
  67. */
  68. name = (char *)ccwa + ccwa->name_offset;
  69. dn->full_name = kasprintf(GFP_KERNEL, "/%s", name);
  70. if (!dn->full_name) {
  71. kfree(dn);
  72. return NULL;
  73. }
  74. return dn;
  75. }
  76. static void dlpar_free_one_cc_node(struct device_node *dn)
  77. {
  78. struct property *prop;
  79. while (dn->properties) {
  80. prop = dn->properties;
  81. dn->properties = prop->next;
  82. dlpar_free_cc_property(prop);
  83. }
  84. kfree(dn->full_name);
  85. kfree(dn);
  86. }
  87. void dlpar_free_cc_nodes(struct device_node *dn)
  88. {
  89. if (dn->child)
  90. dlpar_free_cc_nodes(dn->child);
  91. if (dn->sibling)
  92. dlpar_free_cc_nodes(dn->sibling);
  93. dlpar_free_one_cc_node(dn);
  94. }
  95. #define COMPLETE 0
  96. #define NEXT_SIBLING 1
  97. #define NEXT_CHILD 2
  98. #define NEXT_PROPERTY 3
  99. #define PREV_PARENT 4
  100. #define MORE_MEMORY 5
  101. #define CALL_AGAIN -2
  102. #define ERR_CFG_USE -9003
  103. struct device_node *dlpar_configure_connector(u32 drc_index)
  104. {
  105. struct device_node *dn;
  106. struct device_node *first_dn = NULL;
  107. struct device_node *last_dn = NULL;
  108. struct property *property;
  109. struct property *last_property = NULL;
  110. struct cc_workarea *ccwa;
  111. char *data_buf;
  112. int cc_token;
  113. int rc = -1;
  114. cc_token = rtas_token("ibm,configure-connector");
  115. if (cc_token == RTAS_UNKNOWN_SERVICE)
  116. return NULL;
  117. data_buf = kzalloc(RTAS_DATA_BUF_SIZE, GFP_KERNEL);
  118. if (!data_buf)
  119. return NULL;
  120. ccwa = (struct cc_workarea *)&data_buf[0];
  121. ccwa->drc_index = drc_index;
  122. ccwa->zero = 0;
  123. do {
  124. /* Since we release the rtas_data_buf lock between configure
  125. * connector calls we want to re-populate the rtas_data_buffer
  126. * with the contents of the previous call.
  127. */
  128. spin_lock(&rtas_data_buf_lock);
  129. memcpy(rtas_data_buf, data_buf, RTAS_DATA_BUF_SIZE);
  130. rc = rtas_call(cc_token, 2, 1, NULL, rtas_data_buf, NULL);
  131. memcpy(data_buf, rtas_data_buf, RTAS_DATA_BUF_SIZE);
  132. spin_unlock(&rtas_data_buf_lock);
  133. switch (rc) {
  134. case COMPLETE:
  135. break;
  136. case NEXT_SIBLING:
  137. dn = dlpar_parse_cc_node(ccwa);
  138. if (!dn)
  139. goto cc_error;
  140. dn->parent = last_dn->parent;
  141. last_dn->sibling = dn;
  142. last_dn = dn;
  143. break;
  144. case NEXT_CHILD:
  145. dn = dlpar_parse_cc_node(ccwa);
  146. if (!dn)
  147. goto cc_error;
  148. if (!first_dn)
  149. first_dn = dn;
  150. else {
  151. dn->parent = last_dn;
  152. if (last_dn)
  153. last_dn->child = dn;
  154. }
  155. last_dn = dn;
  156. break;
  157. case NEXT_PROPERTY:
  158. property = dlpar_parse_cc_property(ccwa);
  159. if (!property)
  160. goto cc_error;
  161. if (!last_dn->properties)
  162. last_dn->properties = property;
  163. else
  164. last_property->next = property;
  165. last_property = property;
  166. break;
  167. case PREV_PARENT:
  168. last_dn = last_dn->parent;
  169. break;
  170. case CALL_AGAIN:
  171. break;
  172. case MORE_MEMORY:
  173. case ERR_CFG_USE:
  174. default:
  175. printk(KERN_ERR "Unexpected Error (%d) "
  176. "returned from configure-connector\n", rc);
  177. goto cc_error;
  178. }
  179. } while (rc);
  180. cc_error:
  181. kfree(data_buf);
  182. if (rc) {
  183. if (first_dn)
  184. dlpar_free_cc_nodes(first_dn);
  185. return NULL;
  186. }
  187. return first_dn;
  188. }
  189. static struct device_node *derive_parent(const char *path)
  190. {
  191. struct device_node *parent;
  192. char *last_slash;
  193. last_slash = strrchr(path, '/');
  194. if (last_slash == path) {
  195. parent = of_find_node_by_path("/");
  196. } else {
  197. char *parent_path;
  198. int parent_path_len = last_slash - path + 1;
  199. parent_path = kmalloc(parent_path_len, GFP_KERNEL);
  200. if (!parent_path)
  201. return NULL;
  202. strlcpy(parent_path, path, parent_path_len);
  203. parent = of_find_node_by_path(parent_path);
  204. kfree(parent_path);
  205. }
  206. return parent;
  207. }
  208. int dlpar_attach_node(struct device_node *dn)
  209. {
  210. #ifdef CONFIG_PROC_DEVICETREE
  211. struct proc_dir_entry *ent;
  212. #endif
  213. int rc;
  214. of_node_set_flag(dn, OF_DYNAMIC);
  215. kref_init(&dn->kref);
  216. dn->parent = derive_parent(dn->full_name);
  217. if (!dn->parent)
  218. return -ENOMEM;
  219. rc = pSeries_reconfig_notify(PSERIES_RECONFIG_ADD, dn);
  220. if (rc) {
  221. printk(KERN_ERR "Failed to add device node %s\n",
  222. dn->full_name);
  223. return rc;
  224. }
  225. of_attach_node(dn);
  226. #ifdef CONFIG_PROC_DEVICETREE
  227. ent = proc_mkdir(strrchr(dn->full_name, '/') + 1, dn->parent->pde);
  228. if (ent)
  229. proc_device_tree_add_node(dn, ent);
  230. #endif
  231. of_node_put(dn->parent);
  232. return 0;
  233. }
  234. int dlpar_detach_node(struct device_node *dn)
  235. {
  236. #ifdef CONFIG_PROC_DEVICETREE
  237. struct device_node *parent = dn->parent;
  238. struct property *prop = dn->properties;
  239. while (prop) {
  240. remove_proc_entry(prop->name, dn->pde);
  241. prop = prop->next;
  242. }
  243. if (dn->pde)
  244. remove_proc_entry(dn->pde->name, parent->pde);
  245. #endif
  246. pSeries_reconfig_notify(PSERIES_RECONFIG_REMOVE, dn);
  247. of_detach_node(dn);
  248. of_node_put(dn); /* Must decrement the refcount */
  249. return 0;
  250. }
  251. #define DR_ENTITY_SENSE 9003
  252. #define DR_ENTITY_PRESENT 1
  253. #define DR_ENTITY_UNUSABLE 2
  254. #define ALLOCATION_STATE 9003
  255. #define ALLOC_UNUSABLE 0
  256. #define ALLOC_USABLE 1
  257. #define ISOLATION_STATE 9001
  258. #define ISOLATE 0
  259. #define UNISOLATE 1
  260. int dlpar_acquire_drc(u32 drc_index)
  261. {
  262. int dr_status, rc;
  263. rc = rtas_call(rtas_token("get-sensor-state"), 2, 2, &dr_status,
  264. DR_ENTITY_SENSE, drc_index);
  265. if (rc || dr_status != DR_ENTITY_UNUSABLE)
  266. return -1;
  267. rc = rtas_set_indicator(ALLOCATION_STATE, drc_index, ALLOC_USABLE);
  268. if (rc)
  269. return rc;
  270. rc = rtas_set_indicator(ISOLATION_STATE, drc_index, UNISOLATE);
  271. if (rc) {
  272. rtas_set_indicator(ALLOCATION_STATE, drc_index, ALLOC_UNUSABLE);
  273. return rc;
  274. }
  275. return 0;
  276. }
  277. int dlpar_release_drc(u32 drc_index)
  278. {
  279. int dr_status, rc;
  280. rc = rtas_call(rtas_token("get-sensor-state"), 2, 2, &dr_status,
  281. DR_ENTITY_SENSE, drc_index);
  282. if (rc || dr_status != DR_ENTITY_PRESENT)
  283. return -1;
  284. rc = rtas_set_indicator(ISOLATION_STATE, drc_index, ISOLATE);
  285. if (rc)
  286. return rc;
  287. rc = rtas_set_indicator(ALLOCATION_STATE, drc_index, ALLOC_UNUSABLE);
  288. if (rc) {
  289. rtas_set_indicator(ISOLATION_STATE, drc_index, UNISOLATE);
  290. return rc;
  291. }
  292. return 0;
  293. }
  294. #ifdef CONFIG_ARCH_CPU_PROBE_RELEASE
  295. static int dlpar_online_cpu(struct device_node *dn)
  296. {
  297. int rc = 0;
  298. unsigned int cpu;
  299. int len, nthreads, i;
  300. const u32 *intserv;
  301. intserv = of_get_property(dn, "ibm,ppc-interrupt-server#s", &len);
  302. if (!intserv)
  303. return -EINVAL;
  304. nthreads = len / sizeof(u32);
  305. cpu_maps_update_begin();
  306. for (i = 0; i < nthreads; i++) {
  307. for_each_present_cpu(cpu) {
  308. if (get_hard_smp_processor_id(cpu) != intserv[i])
  309. continue;
  310. BUG_ON(get_cpu_current_state(cpu)
  311. != CPU_STATE_OFFLINE);
  312. cpu_maps_update_done();
  313. rc = cpu_up(cpu);
  314. if (rc)
  315. goto out;
  316. cpu_maps_update_begin();
  317. break;
  318. }
  319. if (cpu == num_possible_cpus())
  320. printk(KERN_WARNING "Could not find cpu to online "
  321. "with physical id 0x%x\n", intserv[i]);
  322. }
  323. cpu_maps_update_done();
  324. out:
  325. return rc;
  326. }
  327. static ssize_t dlpar_cpu_probe(const char *buf, size_t count)
  328. {
  329. struct device_node *dn;
  330. unsigned long drc_index;
  331. char *cpu_name;
  332. int rc;
  333. cpu_hotplug_driver_lock();
  334. rc = strict_strtoul(buf, 0, &drc_index);
  335. if (rc) {
  336. rc = -EINVAL;
  337. goto out;
  338. }
  339. rc = dlpar_acquire_drc(drc_index);
  340. if (rc) {
  341. rc = -EINVAL;
  342. goto out;
  343. }
  344. dn = dlpar_configure_connector(drc_index);
  345. if (!dn) {
  346. rc = -EINVAL;
  347. goto out;
  348. }
  349. /* configure-connector reports cpus as living in the base
  350. * directory of the device tree. CPUs actually live in the
  351. * cpus directory so we need to fixup the full_name.
  352. */
  353. cpu_name = kasprintf(GFP_KERNEL, "/cpus%s", dn->full_name);
  354. if (!cpu_name) {
  355. dlpar_free_cc_nodes(dn);
  356. rc = -ENOMEM;
  357. goto out;
  358. }
  359. kfree(dn->full_name);
  360. dn->full_name = cpu_name;
  361. rc = dlpar_attach_node(dn);
  362. if (rc) {
  363. dlpar_release_drc(drc_index);
  364. dlpar_free_cc_nodes(dn);
  365. goto out;
  366. }
  367. rc = dlpar_online_cpu(dn);
  368. out:
  369. cpu_hotplug_driver_unlock();
  370. return rc ? rc : count;
  371. }
  372. static int dlpar_offline_cpu(struct device_node *dn)
  373. {
  374. int rc = 0;
  375. unsigned int cpu;
  376. int len, nthreads, i;
  377. const u32 *intserv;
  378. intserv = of_get_property(dn, "ibm,ppc-interrupt-server#s", &len);
  379. if (!intserv)
  380. return -EINVAL;
  381. nthreads = len / sizeof(u32);
  382. cpu_maps_update_begin();
  383. for (i = 0; i < nthreads; i++) {
  384. for_each_present_cpu(cpu) {
  385. if (get_hard_smp_processor_id(cpu) != intserv[i])
  386. continue;
  387. if (get_cpu_current_state(cpu) == CPU_STATE_OFFLINE)
  388. break;
  389. if (get_cpu_current_state(cpu) == CPU_STATE_ONLINE) {
  390. set_preferred_offline_state(cpu, CPU_STATE_OFFLINE);
  391. cpu_maps_update_done();
  392. rc = cpu_down(cpu);
  393. if (rc)
  394. goto out;
  395. cpu_maps_update_begin();
  396. break;
  397. }
  398. /*
  399. * The cpu is in CPU_STATE_INACTIVE.
  400. * Upgrade it's state to CPU_STATE_OFFLINE.
  401. */
  402. set_preferred_offline_state(cpu, CPU_STATE_OFFLINE);
  403. BUG_ON(plpar_hcall_norets(H_PROD, intserv[i])
  404. != H_SUCCESS);
  405. __cpu_die(cpu);
  406. break;
  407. }
  408. if (cpu == num_possible_cpus())
  409. printk(KERN_WARNING "Could not find cpu to offline "
  410. "with physical id 0x%x\n", intserv[i]);
  411. }
  412. cpu_maps_update_done();
  413. out:
  414. return rc;
  415. }
  416. static ssize_t dlpar_cpu_release(const char *buf, size_t count)
  417. {
  418. struct device_node *dn;
  419. const u32 *drc_index;
  420. int rc;
  421. dn = of_find_node_by_path(buf);
  422. if (!dn)
  423. return -EINVAL;
  424. drc_index = of_get_property(dn, "ibm,my-drc-index", NULL);
  425. if (!drc_index) {
  426. of_node_put(dn);
  427. return -EINVAL;
  428. }
  429. cpu_hotplug_driver_lock();
  430. rc = dlpar_offline_cpu(dn);
  431. if (rc) {
  432. of_node_put(dn);
  433. rc = -EINVAL;
  434. goto out;
  435. }
  436. rc = dlpar_release_drc(*drc_index);
  437. if (rc) {
  438. of_node_put(dn);
  439. goto out;
  440. }
  441. rc = dlpar_detach_node(dn);
  442. if (rc) {
  443. dlpar_acquire_drc(*drc_index);
  444. goto out;
  445. }
  446. of_node_put(dn);
  447. out:
  448. cpu_hotplug_driver_unlock();
  449. return rc ? rc : count;
  450. }
  451. static int __init pseries_dlpar_init(void)
  452. {
  453. ppc_md.cpu_probe = dlpar_cpu_probe;
  454. ppc_md.cpu_release = dlpar_cpu_release;
  455. return 0;
  456. }
  457. machine_device_initcall(pseries, pseries_dlpar_init);
  458. #endif /* CONFIG_ARCH_CPU_PROBE_RELEASE */