blob: 168525a9c2928b4c6a591ea9b89dc2fbaac978ac [file] [log] [blame]
Heiko Carstens08d07962008-01-26 14:10:56 +01001/*
Gerald Schaefer039979042009-06-16 10:30:48 +02002 * Copyright IBM Corp. 2007, 2009
Heiko Carstens08d07962008-01-26 14:10:56 +01003 *
Gerald Schaefer039979042009-06-16 10:30:48 +02004 * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>,
5 * Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
Heiko Carstens08d07962008-01-26 14:10:56 +01006 */
7
Martin Schwidefskyb3ff0882008-12-25 13:39:48 +01008#define KMSG_COMPONENT "sclp_cmd"
9#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
10
Heiko Carstens08d07962008-01-26 14:10:56 +010011#include <linux/completion.h>
12#include <linux/init.h>
13#include <linux/errno.h>
Gerald Schaefer039979042009-06-16 10:30:48 +020014#include <linux/err.h>
Heiko Carstens08d07962008-01-26 14:10:56 +010015#include <linux/slab.h>
16#include <linux/string.h>
Heiko Carstense0bc2492008-07-14 09:59:19 +020017#include <linux/mm.h>
18#include <linux/mmzone.h>
19#include <linux/memory.h>
Gerald Schaefer039979042009-06-16 10:30:48 +020020#include <linux/platform_device.h>
Heiko Carstens4b28a8f2008-01-26 14:10:57 +010021#include <asm/chpid.h>
Heiko Carstens08d07962008-01-26 14:10:56 +010022#include <asm/sclp.h>
Heiko Carstens23d75d92009-02-19 15:19:01 +010023#include <asm/setup.h>
Heiko Carstens08d07962008-01-26 14:10:56 +010024
Martin Schwidefskyb3ff0882008-12-25 13:39:48 +010025#include "sclp.h"
Heiko Carstens08d07962008-01-26 14:10:56 +010026
27#define SCLP_CMDW_READ_SCP_INFO 0x00020001
28#define SCLP_CMDW_READ_SCP_INFO_FORCED 0x00120001
29
30struct read_info_sccb {
31 struct sccb_header header; /* 0-7 */
32 u16 rnmax; /* 8-9 */
33 u8 rnsize; /* 10 */
34 u8 _reserved0[24 - 11]; /* 11-15 */
35 u8 loadparm[8]; /* 24-31 */
36 u8 _reserved1[48 - 32]; /* 32-47 */
37 u64 facilities; /* 48-55 */
38 u8 _reserved2[84 - 56]; /* 56-83 */
39 u8 fac84; /* 84 */
40 u8 _reserved3[91 - 85]; /* 85-90 */
41 u8 flags; /* 91 */
42 u8 _reserved4[100 - 92]; /* 92-99 */
43 u32 rnsize2; /* 100-103 */
44 u64 rnmax2; /* 104-111 */
45 u8 _reserved5[4096 - 112]; /* 112-4095 */
46} __attribute__((packed, aligned(PAGE_SIZE)));
47
48static struct read_info_sccb __initdata early_read_info_sccb;
49static int __initdata early_read_info_sccb_valid;
50
51u64 sclp_facilities;
52static u8 sclp_fac84;
Heiko Carstense0bc2492008-07-14 09:59:19 +020053static unsigned long long rzm;
54static unsigned long long rnmax;
Heiko Carstens08d07962008-01-26 14:10:56 +010055
56static int __init sclp_cmd_sync_early(sclp_cmdw_t cmd, void *sccb)
57{
58 int rc;
59
60 __ctl_set_bit(0, 9);
61 rc = sclp_service_call(cmd, sccb);
62 if (rc)
63 goto out;
Martin Schwidefskyb50511e2011-10-30 15:16:50 +010064 __load_psw_mask(PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_MASK_EA |
65 PSW_MASK_BA | PSW_MASK_EXT | PSW_MASK_WAIT);
Heiko Carstens08d07962008-01-26 14:10:56 +010066 local_irq_disable();
67out:
68 /* Contents of the sccb might have changed. */
69 barrier();
70 __ctl_clear_bit(0, 9);
71 return rc;
72}
73
Heiko Carstens23d17422008-07-14 09:59:21 +020074static void __init sclp_read_info_early(void)
Heiko Carstens08d07962008-01-26 14:10:56 +010075{
76 int rc;
77 int i;
78 struct read_info_sccb *sccb;
79 sclp_cmdw_t commands[] = {SCLP_CMDW_READ_SCP_INFO_FORCED,
80 SCLP_CMDW_READ_SCP_INFO};
81
82 sccb = &early_read_info_sccb;
83 for (i = 0; i < ARRAY_SIZE(commands); i++) {
84 do {
85 memset(sccb, 0, sizeof(*sccb));
86 sccb->header.length = sizeof(*sccb);
Martin Schwidefskycb9d7162009-12-07 12:52:12 +010087 sccb->header.function_code = 0x80;
Heiko Carstens08d07962008-01-26 14:10:56 +010088 sccb->header.control_mask[2] = 0x80;
89 rc = sclp_cmd_sync_early(commands[i], sccb);
90 } while (rc == -EBUSY);
91
92 if (rc)
93 break;
94 if (sccb->header.response_code == 0x10) {
95 early_read_info_sccb_valid = 1;
96 break;
97 }
98 if (sccb->header.response_code != 0x1f0)
99 break;
100 }
101}
102
103void __init sclp_facilities_detect(void)
104{
Heiko Carstens08d07962008-01-26 14:10:56 +0100105 struct read_info_sccb *sccb;
106
Heiko Carstens23d17422008-07-14 09:59:21 +0200107 sclp_read_info_early();
Heiko Carstens08d07962008-01-26 14:10:56 +0100108 if (!early_read_info_sccb_valid)
Heiko Carstens23d17422008-07-14 09:59:21 +0200109 return;
110
Heiko Carstens08d07962008-01-26 14:10:56 +0100111 sccb = &early_read_info_sccb;
Heiko Carstens23d17422008-07-14 09:59:21 +0200112 sclp_facilities = sccb->facilities;
113 sclp_fac84 = sccb->fac84;
Heiko Carstense0bc2492008-07-14 09:59:19 +0200114 rnmax = sccb->rnmax ? sccb->rnmax : sccb->rnmax2;
115 rzm = sccb->rnsize ? sccb->rnsize : sccb->rnsize2;
116 rzm <<= 20;
Heiko Carstens23d17422008-07-14 09:59:21 +0200117}
118
119unsigned long long sclp_get_rnmax(void)
120{
121 return rnmax;
122}
123
124unsigned long long sclp_get_rzm(void)
125{
126 return rzm;
Heiko Carstens08d07962008-01-26 14:10:56 +0100127}
128
129/*
Heiko Carstens23d17422008-07-14 09:59:21 +0200130 * This function will be called after sclp_facilities_detect(), which gets
131 * called from early.c code. Therefore the sccb should have valid contents.
Heiko Carstens08d07962008-01-26 14:10:56 +0100132 */
133void __init sclp_get_ipl_info(struct sclp_ipl_info *info)
134{
135 struct read_info_sccb *sccb;
136
137 if (!early_read_info_sccb_valid)
138 return;
139 sccb = &early_read_info_sccb;
140 info->is_valid = 1;
141 if (sccb->flags & 0x2)
142 info->has_dump = 1;
143 memcpy(&info->loadparm, &sccb->loadparm, LOADPARM_LEN);
144}
145
146static void sclp_sync_callback(struct sclp_req *req, void *data)
147{
148 struct completion *completion = data;
149
150 complete(completion);
151}
152
153static int do_sync_request(sclp_cmdw_t cmd, void *sccb)
154{
155 struct completion completion;
156 struct sclp_req *request;
157 int rc;
158
159 request = kzalloc(sizeof(*request), GFP_KERNEL);
160 if (!request)
161 return -ENOMEM;
162 request->command = cmd;
163 request->sccb = sccb;
164 request->status = SCLP_REQ_FILLED;
165 request->callback = sclp_sync_callback;
166 request->callback_data = &completion;
167 init_completion(&completion);
168
169 /* Perform sclp request. */
170 rc = sclp_add_request(request);
171 if (rc)
172 goto out;
173 wait_for_completion(&completion);
174
175 /* Check response. */
176 if (request->status != SCLP_REQ_DONE) {
Martin Schwidefskyb3ff0882008-12-25 13:39:48 +0100177 pr_warning("sync request failed (cmd=0x%08x, "
178 "status=0x%02x)\n", cmd, request->status);
Heiko Carstens08d07962008-01-26 14:10:56 +0100179 rc = -EIO;
180 }
181out:
182 kfree(request);
183 return rc;
184}
185
186/*
187 * CPU configuration related functions.
188 */
189
190#define SCLP_CMDW_READ_CPU_INFO 0x00010001
191#define SCLP_CMDW_CONFIGURE_CPU 0x00110001
192#define SCLP_CMDW_DECONFIGURE_CPU 0x00100001
193
194struct read_cpu_info_sccb {
195 struct sccb_header header;
196 u16 nr_configured;
197 u16 offset_configured;
198 u16 nr_standby;
199 u16 offset_standby;
200 u8 reserved[4096 - 16];
201} __attribute__((packed, aligned(PAGE_SIZE)));
202
Heiko Carstens08d07962008-01-26 14:10:56 +0100203static void sclp_fill_cpu_info(struct sclp_cpu_info *info,
204 struct read_cpu_info_sccb *sccb)
205{
206 char *page = (char *) sccb;
207
208 memset(info, 0, sizeof(*info));
209 info->configured = sccb->nr_configured;
210 info->standby = sccb->nr_standby;
211 info->combined = sccb->nr_configured + sccb->nr_standby;
212 info->has_cpu_type = sclp_fac84 & 0x1;
213 memcpy(&info->cpu, page + sccb->offset_configured,
214 info->combined * sizeof(struct sclp_cpu_entry));
215}
216
Heiko Carstens48483b32008-01-26 14:11:05 +0100217int sclp_get_cpu_info(struct sclp_cpu_info *info)
Heiko Carstens08d07962008-01-26 14:10:56 +0100218{
219 int rc;
220 struct read_cpu_info_sccb *sccb;
221
222 if (!SCLP_HAS_CPU_INFO)
223 return -EOPNOTSUPP;
Heiko Carstens48483b32008-01-26 14:11:05 +0100224 sccb = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
Heiko Carstens08d07962008-01-26 14:10:56 +0100225 if (!sccb)
226 return -ENOMEM;
Heiko Carstens08d07962008-01-26 14:10:56 +0100227 sccb->header.length = sizeof(*sccb);
228 rc = do_sync_request(SCLP_CMDW_READ_CPU_INFO, sccb);
229 if (rc)
230 goto out;
231 if (sccb->header.response_code != 0x0010) {
Martin Schwidefskyb3ff0882008-12-25 13:39:48 +0100232 pr_warning("readcpuinfo failed (response=0x%04x)\n",
233 sccb->header.response_code);
Heiko Carstens08d07962008-01-26 14:10:56 +0100234 rc = -EIO;
235 goto out;
236 }
237 sclp_fill_cpu_info(info, sccb);
238out:
239 free_page((unsigned long) sccb);
240 return rc;
241}
242
Heiko Carstens08d07962008-01-26 14:10:56 +0100243struct cpu_configure_sccb {
244 struct sccb_header header;
245} __attribute__((packed, aligned(8)));
246
247static int do_cpu_configure(sclp_cmdw_t cmd)
248{
249 struct cpu_configure_sccb *sccb;
250 int rc;
251
252 if (!SCLP_HAS_CPU_RECONFIG)
253 return -EOPNOTSUPP;
254 /*
255 * This is not going to cross a page boundary since we force
256 * kmalloc to have a minimum alignment of 8 bytes on s390.
257 */
258 sccb = kzalloc(sizeof(*sccb), GFP_KERNEL | GFP_DMA);
259 if (!sccb)
260 return -ENOMEM;
261 sccb->header.length = sizeof(*sccb);
262 rc = do_sync_request(cmd, sccb);
263 if (rc)
264 goto out;
265 switch (sccb->header.response_code) {
266 case 0x0020:
267 case 0x0120:
268 break;
269 default:
Martin Schwidefskyb3ff0882008-12-25 13:39:48 +0100270 pr_warning("configure cpu failed (cmd=0x%08x, "
271 "response=0x%04x)\n", cmd,
272 sccb->header.response_code);
Heiko Carstens08d07962008-01-26 14:10:56 +0100273 rc = -EIO;
274 break;
275 }
276out:
277 kfree(sccb);
278 return rc;
279}
280
281int sclp_cpu_configure(u8 cpu)
282{
283 return do_cpu_configure(SCLP_CMDW_CONFIGURE_CPU | cpu << 8);
284}
285
286int sclp_cpu_deconfigure(u8 cpu)
287{
288 return do_cpu_configure(SCLP_CMDW_DECONFIGURE_CPU | cpu << 8);
289}
Heiko Carstens4b28a8f2008-01-26 14:10:57 +0100290
Heiko Carstense0bc2492008-07-14 09:59:19 +0200291#ifdef CONFIG_MEMORY_HOTPLUG
292
293static DEFINE_MUTEX(sclp_mem_mutex);
294static LIST_HEAD(sclp_mem_list);
295static u8 sclp_max_storage_id;
296static unsigned long sclp_storage_ids[256 / BITS_PER_LONG];
Gerald Schaefer039979042009-06-16 10:30:48 +0200297static int sclp_mem_state_changed;
Heiko Carstense0bc2492008-07-14 09:59:19 +0200298
299struct memory_increment {
300 struct list_head list;
301 u16 rn;
302 int standby;
303 int usecount;
304};
305
306struct assign_storage_sccb {
307 struct sccb_header header;
308 u16 rn;
309} __packed;
310
Heiko Carstens9c952582010-03-24 11:49:55 +0100311int arch_get_memory_phys_device(unsigned long start_pfn)
312{
313 if (!rzm)
314 return 0;
315 return PFN_PHYS(start_pfn) >> ilog2(rzm);
316}
317
Heiko Carstense0bc2492008-07-14 09:59:19 +0200318static unsigned long long rn2addr(u16 rn)
319{
320 return (unsigned long long) (rn - 1) * rzm;
321}
322
323static int do_assign_storage(sclp_cmdw_t cmd, u16 rn)
324{
325 struct assign_storage_sccb *sccb;
326 int rc;
327
328 sccb = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
329 if (!sccb)
330 return -ENOMEM;
331 sccb->header.length = PAGE_SIZE;
332 sccb->rn = rn;
333 rc = do_sync_request(cmd, sccb);
334 if (rc)
335 goto out;
336 switch (sccb->header.response_code) {
337 case 0x0020:
338 case 0x0120:
339 break;
340 default:
Heiko Carstens675be972008-11-14 18:18:01 +0100341 pr_warning("assign storage failed (cmd=0x%08x, "
342 "response=0x%04x, rn=0x%04x)\n", cmd,
343 sccb->header.response_code, rn);
Heiko Carstense0bc2492008-07-14 09:59:19 +0200344 rc = -EIO;
345 break;
346 }
347out:
348 free_page((unsigned long) sccb);
349 return rc;
350}
351
352static int sclp_assign_storage(u16 rn)
353{
354 return do_assign_storage(0x000d0001, rn);
355}
356
357static int sclp_unassign_storage(u16 rn)
358{
359 return do_assign_storage(0x000c0001, rn);
360}
361
362struct attach_storage_sccb {
363 struct sccb_header header;
364 u16 :16;
365 u16 assigned;
366 u32 :32;
367 u32 entries[0];
368} __packed;
369
370static int sclp_attach_storage(u8 id)
371{
372 struct attach_storage_sccb *sccb;
373 int rc;
374 int i;
375
376 sccb = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
377 if (!sccb)
378 return -ENOMEM;
379 sccb->header.length = PAGE_SIZE;
380 rc = do_sync_request(0x00080001 | id << 8, sccb);
381 if (rc)
382 goto out;
383 switch (sccb->header.response_code) {
384 case 0x0020:
385 set_bit(id, sclp_storage_ids);
Heiko Carstens8adb4ca2011-08-24 17:15:13 +0200386 for (i = 0; i < sccb->assigned; i++) {
387 if (sccb->entries[i])
388 sclp_unassign_storage(sccb->entries[i] >> 16);
389 }
Heiko Carstense0bc2492008-07-14 09:59:19 +0200390 break;
391 default:
392 rc = -EIO;
393 break;
394 }
395out:
396 free_page((unsigned long) sccb);
397 return rc;
398}
399
400static int sclp_mem_change_state(unsigned long start, unsigned long size,
401 int online)
402{
403 struct memory_increment *incr;
404 unsigned long long istart;
405 int rc = 0;
406
407 list_for_each_entry(incr, &sclp_mem_list, list) {
408 istart = rn2addr(incr->rn);
409 if (start + size - 1 < istart)
410 break;
411 if (start > istart + rzm - 1)
412 continue;
413 if (online) {
414 if (incr->usecount++)
415 continue;
416 /*
417 * Don't break the loop if one assign fails. Loop may
418 * be walked again on CANCEL and we can't save
419 * information if state changed before or not.
420 * So continue and increase usecount for all increments.
421 */
422 rc |= sclp_assign_storage(incr->rn);
423 } else {
424 if (--incr->usecount)
425 continue;
426 sclp_unassign_storage(incr->rn);
427 }
428 }
429 return rc ? -EIO : 0;
430}
431
432static int sclp_mem_notifier(struct notifier_block *nb,
433 unsigned long action, void *data)
434{
435 unsigned long start, size;
436 struct memory_notify *arg;
437 unsigned char id;
438 int rc = 0;
439
440 arg = data;
441 start = arg->start_pfn << PAGE_SHIFT;
442 size = arg->nr_pages << PAGE_SHIFT;
443 mutex_lock(&sclp_mem_mutex);
Akinobu Mitafc89db42012-03-23 15:02:05 -0700444 for_each_clear_bit(id, sclp_storage_ids, sclp_max_storage_id + 1)
445 sclp_attach_storage(id);
Heiko Carstense0bc2492008-07-14 09:59:19 +0200446 switch (action) {
447 case MEM_ONLINE:
Gerald Schaefer7e9238f2008-08-01 16:39:16 +0200448 case MEM_GOING_OFFLINE:
449 case MEM_CANCEL_OFFLINE:
Heiko Carstense0bc2492008-07-14 09:59:19 +0200450 break;
451 case MEM_GOING_ONLINE:
452 rc = sclp_mem_change_state(start, size, 1);
453 break;
454 case MEM_CANCEL_ONLINE:
455 sclp_mem_change_state(start, size, 0);
456 break;
Gerald Schaefer7e9238f2008-08-01 16:39:16 +0200457 case MEM_OFFLINE:
458 sclp_mem_change_state(start, size, 0);
459 break;
Heiko Carstense0bc2492008-07-14 09:59:19 +0200460 default:
461 rc = -EINVAL;
462 break;
463 }
Gerald Schaefer039979042009-06-16 10:30:48 +0200464 if (!rc)
465 sclp_mem_state_changed = 1;
Heiko Carstense0bc2492008-07-14 09:59:19 +0200466 mutex_unlock(&sclp_mem_mutex);
467 return rc ? NOTIFY_BAD : NOTIFY_OK;
468}
469
470static struct notifier_block sclp_mem_nb = {
471 .notifier_call = sclp_mem_notifier,
472};
473
474static void __init add_memory_merged(u16 rn)
475{
476 static u16 first_rn, num;
477 unsigned long long start, size;
478
479 if (rn && first_rn && (first_rn + num == rn)) {
480 num++;
481 return;
482 }
483 if (!first_rn)
484 goto skip_add;
485 start = rn2addr(first_rn);
486 size = (unsigned long long ) num * rzm;
487 if (start >= VMEM_MAX_PHYS)
488 goto skip_add;
489 if (start + size > VMEM_MAX_PHYS)
490 size = VMEM_MAX_PHYS - start;
Heiko Carstens23d75d92009-02-19 15:19:01 +0100491 if (memory_end_set && (start >= memory_end))
492 goto skip_add;
493 if (memory_end_set && (start + size > memory_end))
494 size = memory_end - start;
Heiko Carstense0bc2492008-07-14 09:59:19 +0200495 add_memory(0, start, size);
496skip_add:
497 first_rn = rn;
498 num = 1;
499}
500
501static void __init sclp_add_standby_memory(void)
502{
503 struct memory_increment *incr;
504
505 list_for_each_entry(incr, &sclp_mem_list, list)
506 if (incr->standby)
507 add_memory_merged(incr->rn);
508 add_memory_merged(0);
509}
510
511static void __init insert_increment(u16 rn, int standby, int assigned)
512{
513 struct memory_increment *incr, *new_incr;
514 struct list_head *prev;
515 u16 last_rn;
516
517 new_incr = kzalloc(sizeof(*new_incr), GFP_KERNEL);
518 if (!new_incr)
519 return;
520 new_incr->rn = rn;
521 new_incr->standby = standby;
Heiko Carstensfdb1bb12011-05-10 17:13:37 +0200522 if (!standby)
523 new_incr->usecount = 1;
Heiko Carstense0bc2492008-07-14 09:59:19 +0200524 last_rn = 0;
525 prev = &sclp_mem_list;
526 list_for_each_entry(incr, &sclp_mem_list, list) {
527 if (assigned && incr->rn > rn)
528 break;
529 if (!assigned && incr->rn - last_rn > 1)
530 break;
531 last_rn = incr->rn;
532 prev = &incr->list;
533 }
534 if (!assigned)
535 new_incr->rn = last_rn + 1;
536 if (new_incr->rn > rnmax) {
537 kfree(new_incr);
538 return;
539 }
540 list_add(&new_incr->list, prev);
541}
542
Gerald Schaefer039979042009-06-16 10:30:48 +0200543static int sclp_mem_freeze(struct device *dev)
544{
545 if (!sclp_mem_state_changed)
546 return 0;
547 pr_err("Memory hotplug state changed, suspend refused.\n");
548 return -EPERM;
549}
550
Heiko Carstense0bc2492008-07-14 09:59:19 +0200551struct read_storage_sccb {
552 struct sccb_header header;
553 u16 max_id;
554 u16 assigned;
555 u16 standby;
556 u16 :16;
557 u32 entries[0];
558} __packed;
559
Alexey Dobriyan47145212009-12-14 18:00:08 -0800560static const struct dev_pm_ops sclp_mem_pm_ops = {
Gerald Schaefer039979042009-06-16 10:30:48 +0200561 .freeze = sclp_mem_freeze,
562};
563
564static struct platform_driver sclp_mem_pdrv = {
565 .driver = {
566 .name = "sclp_mem",
567 .pm = &sclp_mem_pm_ops,
568 },
569};
570
Heiko Carstense0bc2492008-07-14 09:59:19 +0200571static int __init sclp_detect_standby_memory(void)
572{
Gerald Schaefer039979042009-06-16 10:30:48 +0200573 struct platform_device *sclp_pdev;
Heiko Carstense0bc2492008-07-14 09:59:19 +0200574 struct read_storage_sccb *sccb;
575 int i, id, assigned, rc;
576
577 if (!early_read_info_sccb_valid)
578 return 0;
579 if ((sclp_facilities & 0xe00000000000ULL) != 0xe00000000000ULL)
580 return 0;
581 rc = -ENOMEM;
582 sccb = (void *) __get_free_page(GFP_KERNEL | GFP_DMA);
583 if (!sccb)
584 goto out;
585 assigned = 0;
586 for (id = 0; id <= sclp_max_storage_id; id++) {
587 memset(sccb, 0, PAGE_SIZE);
588 sccb->header.length = PAGE_SIZE;
589 rc = do_sync_request(0x00040001 | id << 8, sccb);
590 if (rc)
591 goto out;
592 switch (sccb->header.response_code) {
593 case 0x0010:
594 set_bit(id, sclp_storage_ids);
595 for (i = 0; i < sccb->assigned; i++) {
596 if (!sccb->entries[i])
597 continue;
598 assigned++;
599 insert_increment(sccb->entries[i] >> 16, 0, 1);
600 }
601 break;
602 case 0x0310:
603 break;
604 case 0x0410:
605 for (i = 0; i < sccb->assigned; i++) {
606 if (!sccb->entries[i])
607 continue;
608 assigned++;
609 insert_increment(sccb->entries[i] >> 16, 1, 1);
610 }
611 break;
612 default:
613 rc = -EIO;
614 break;
615 }
616 if (!rc)
617 sclp_max_storage_id = sccb->max_id;
618 }
619 if (rc || list_empty(&sclp_mem_list))
620 goto out;
621 for (i = 1; i <= rnmax - assigned; i++)
622 insert_increment(0, 1, 0);
623 rc = register_memory_notifier(&sclp_mem_nb);
624 if (rc)
625 goto out;
Gerald Schaefer039979042009-06-16 10:30:48 +0200626 rc = platform_driver_register(&sclp_mem_pdrv);
627 if (rc)
628 goto out;
629 sclp_pdev = platform_device_register_simple("sclp_mem", -1, NULL, 0);
630 rc = IS_ERR(sclp_pdev) ? PTR_ERR(sclp_pdev) : 0;
631 if (rc)
632 goto out_driver;
Heiko Carstense0bc2492008-07-14 09:59:19 +0200633 sclp_add_standby_memory();
Gerald Schaefer039979042009-06-16 10:30:48 +0200634 goto out;
635out_driver:
636 platform_driver_unregister(&sclp_mem_pdrv);
Heiko Carstense0bc2492008-07-14 09:59:19 +0200637out:
638 free_page((unsigned long) sccb);
639 return rc;
640}
641__initcall(sclp_detect_standby_memory);
642
643#endif /* CONFIG_MEMORY_HOTPLUG */
644
Heiko Carstens4b28a8f2008-01-26 14:10:57 +0100645/*
646 * Channel path configuration related functions.
647 */
648
649#define SCLP_CMDW_CONFIGURE_CHPATH 0x000f0001
650#define SCLP_CMDW_DECONFIGURE_CHPATH 0x000e0001
651#define SCLP_CMDW_READ_CHPATH_INFORMATION 0x00030001
652
653struct chp_cfg_sccb {
654 struct sccb_header header;
655 u8 ccm;
656 u8 reserved[6];
657 u8 cssid;
658} __attribute__((packed));
659
660static int do_chp_configure(sclp_cmdw_t cmd)
661{
662 struct chp_cfg_sccb *sccb;
663 int rc;
664
665 if (!SCLP_HAS_CHP_RECONFIG)
666 return -EOPNOTSUPP;
667 /* Prepare sccb. */
668 sccb = (struct chp_cfg_sccb *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
669 if (!sccb)
670 return -ENOMEM;
671 sccb->header.length = sizeof(*sccb);
672 rc = do_sync_request(cmd, sccb);
673 if (rc)
674 goto out;
675 switch (sccb->header.response_code) {
676 case 0x0020:
677 case 0x0120:
678 case 0x0440:
679 case 0x0450:
680 break;
681 default:
Martin Schwidefskyb3ff0882008-12-25 13:39:48 +0100682 pr_warning("configure channel-path failed "
683 "(cmd=0x%08x, response=0x%04x)\n", cmd,
684 sccb->header.response_code);
Heiko Carstens4b28a8f2008-01-26 14:10:57 +0100685 rc = -EIO;
686 break;
687 }
688out:
689 free_page((unsigned long) sccb);
690 return rc;
691}
692
693/**
694 * sclp_chp_configure - perform configure channel-path sclp command
695 * @chpid: channel-path ID
696 *
697 * Perform configure channel-path command sclp command for specified chpid.
698 * Return 0 after command successfully finished, non-zero otherwise.
699 */
700int sclp_chp_configure(struct chp_id chpid)
701{
702 return do_chp_configure(SCLP_CMDW_CONFIGURE_CHPATH | chpid.id << 8);
703}
704
705/**
706 * sclp_chp_deconfigure - perform deconfigure channel-path sclp command
707 * @chpid: channel-path ID
708 *
709 * Perform deconfigure channel-path command sclp command for specified chpid
710 * and wait for completion. On success return 0. Return non-zero otherwise.
711 */
712int sclp_chp_deconfigure(struct chp_id chpid)
713{
714 return do_chp_configure(SCLP_CMDW_DECONFIGURE_CHPATH | chpid.id << 8);
715}
716
717struct chp_info_sccb {
718 struct sccb_header header;
719 u8 recognized[SCLP_CHP_INFO_MASK_SIZE];
720 u8 standby[SCLP_CHP_INFO_MASK_SIZE];
721 u8 configured[SCLP_CHP_INFO_MASK_SIZE];
722 u8 ccm;
723 u8 reserved[6];
724 u8 cssid;
725} __attribute__((packed));
726
727/**
728 * sclp_chp_read_info - perform read channel-path information sclp command
729 * @info: resulting channel-path information data
730 *
731 * Perform read channel-path information sclp command and wait for completion.
732 * On success, store channel-path information in @info and return 0. Return
733 * non-zero otherwise.
734 */
735int sclp_chp_read_info(struct sclp_chp_info *info)
736{
737 struct chp_info_sccb *sccb;
738 int rc;
739
740 if (!SCLP_HAS_CHP_INFO)
741 return -EOPNOTSUPP;
742 /* Prepare sccb. */
743 sccb = (struct chp_info_sccb *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
744 if (!sccb)
745 return -ENOMEM;
746 sccb->header.length = sizeof(*sccb);
747 rc = do_sync_request(SCLP_CMDW_READ_CHPATH_INFORMATION, sccb);
748 if (rc)
749 goto out;
750 if (sccb->header.response_code != 0x0010) {
Martin Schwidefskyb3ff0882008-12-25 13:39:48 +0100751 pr_warning("read channel-path info failed "
752 "(response=0x%04x)\n", sccb->header.response_code);
Heiko Carstens4b28a8f2008-01-26 14:10:57 +0100753 rc = -EIO;
754 goto out;
755 }
756 memcpy(info->recognized, sccb->recognized, SCLP_CHP_INFO_MASK_SIZE);
757 memcpy(info->standby, sccb->standby, SCLP_CHP_INFO_MASK_SIZE);
758 memcpy(info->configured, sccb->configured, SCLP_CHP_INFO_MASK_SIZE);
759out:
760 free_page((unsigned long) sccb);
761 return rc;
762}