1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright IBM Corp. 2007,2012
5 * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>,
6 * Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
9 #define KMSG_COMPONENT "sclp_cmd"
10 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
12 #include <linux/completion.h>
13 #include <linux/init.h>
14 #include <linux/errno.h>
15 #include <linux/err.h>
16 #include <linux/export.h>
17 #include <linux/slab.h>
18 #include <linux/string.h>
20 #include <linux/mmzone.h>
21 #include <linux/memory.h>
22 #include <linux/module.h>
23 #include <linux/platform_device.h>
24 #include <asm/ctl_reg.h>
25 #include <asm/chpid.h>
26 #include <asm/setup.h>
30 #include <asm/facility.h>
34 static void sclp_sync_callback(struct sclp_req
*req
, void *data
)
36 struct completion
*completion
= data
;
41 int sclp_sync_request(sclp_cmdw_t cmd
, void *sccb
)
43 return sclp_sync_request_timeout(cmd
, sccb
, 0);
46 int sclp_sync_request_timeout(sclp_cmdw_t cmd
, void *sccb
, int timeout
)
48 struct completion completion
;
49 struct sclp_req
*request
;
52 request
= kzalloc(sizeof(*request
), GFP_KERNEL
);
56 request
->queue_timeout
= timeout
;
57 request
->command
= cmd
;
59 request
->status
= SCLP_REQ_FILLED
;
60 request
->callback
= sclp_sync_callback
;
61 request
->callback_data
= &completion
;
62 init_completion(&completion
);
64 /* Perform sclp request. */
65 rc
= sclp_add_request(request
);
68 wait_for_completion(&completion
);
71 if (request
->status
!= SCLP_REQ_DONE
) {
72 pr_warn("sync request failed (cmd=0x%08x, status=0x%02x)\n",
73 cmd
, request
->status
);
82 * CPU configuration related functions.
85 #define SCLP_CMDW_CONFIGURE_CPU 0x00110001
86 #define SCLP_CMDW_DECONFIGURE_CPU 0x00100001
88 int _sclp_get_core_info(struct sclp_core_info
*info
)
91 int length
= test_facility(140) ? EXT_SCCB_READ_CPU
: PAGE_SIZE
;
92 struct read_cpu_info_sccb
*sccb
;
94 if (!SCLP_HAS_CPU_INFO
)
97 sccb
= (void *)__get_free_pages(GFP_KERNEL
| GFP_DMA
| __GFP_ZERO
, get_order(length
));
100 sccb
->header
.length
= length
;
101 sccb
->header
.control_mask
[2] = 0x80;
102 rc
= sclp_sync_request_timeout(SCLP_CMDW_READ_CPU_INFO
, sccb
,
103 SCLP_QUEUE_INTERVAL
);
106 if (sccb
->header
.response_code
!= 0x0010) {
107 pr_warn("readcpuinfo failed (response=0x%04x)\n",
108 sccb
->header
.response_code
);
112 sclp_fill_core_info(info
, sccb
);
114 free_pages((unsigned long) sccb
, get_order(length
));
118 struct cpu_configure_sccb
{
119 struct sccb_header header
;
120 } __attribute__((packed
, aligned(8)));
122 static int do_core_configure(sclp_cmdw_t cmd
)
124 struct cpu_configure_sccb
*sccb
;
127 if (!SCLP_HAS_CPU_RECONFIG
)
130 * This is not going to cross a page boundary since we force
131 * kmalloc to have a minimum alignment of 8 bytes on s390.
133 sccb
= kzalloc(sizeof(*sccb
), GFP_KERNEL
| GFP_DMA
);
136 sccb
->header
.length
= sizeof(*sccb
);
137 rc
= sclp_sync_request_timeout(cmd
, sccb
, SCLP_QUEUE_INTERVAL
);
140 switch (sccb
->header
.response_code
) {
145 pr_warn("configure cpu failed (cmd=0x%08x, response=0x%04x)\n",
146 cmd
, sccb
->header
.response_code
);
155 int sclp_core_configure(u8 core
)
157 return do_core_configure(SCLP_CMDW_CONFIGURE_CPU
| core
<< 8);
160 int sclp_core_deconfigure(u8 core
)
162 return do_core_configure(SCLP_CMDW_DECONFIGURE_CPU
| core
<< 8);
165 #ifdef CONFIG_MEMORY_HOTPLUG
167 static DEFINE_MUTEX(sclp_mem_mutex
);
168 static LIST_HEAD(sclp_mem_list
);
169 static u8 sclp_max_storage_id
;
170 static DECLARE_BITMAP(sclp_storage_ids
, 256);
171 static int sclp_mem_state_changed
;
173 struct memory_increment
{
174 struct list_head list
;
179 struct assign_storage_sccb
{
180 struct sccb_header header
;
184 int arch_get_memory_phys_device(unsigned long start_pfn
)
188 return PFN_PHYS(start_pfn
) >> ilog2(sclp
.rzm
);
191 static unsigned long long rn2addr(u16 rn
)
193 return (unsigned long long) (rn
- 1) * sclp
.rzm
;
196 static int do_assign_storage(sclp_cmdw_t cmd
, u16 rn
)
198 struct assign_storage_sccb
*sccb
;
201 sccb
= (void *) get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
204 sccb
->header
.length
= PAGE_SIZE
;
206 rc
= sclp_sync_request_timeout(cmd
, sccb
, SCLP_QUEUE_INTERVAL
);
209 switch (sccb
->header
.response_code
) {
214 pr_warn("assign storage failed (cmd=0x%08x, response=0x%04x, rn=0x%04x)\n",
215 cmd
, sccb
->header
.response_code
, rn
);
220 free_page((unsigned long) sccb
);
224 static int sclp_assign_storage(u16 rn
)
226 unsigned long long start
;
229 rc
= do_assign_storage(0x000d0001, rn
);
233 storage_key_init_range(start
, start
+ sclp
.rzm
);
237 static int sclp_unassign_storage(u16 rn
)
239 return do_assign_storage(0x000c0001, rn
);
242 struct attach_storage_sccb
{
243 struct sccb_header header
;
250 static int sclp_attach_storage(u8 id
)
252 struct attach_storage_sccb
*sccb
;
256 sccb
= (void *) get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
259 sccb
->header
.length
= PAGE_SIZE
;
260 sccb
->header
.function_code
= 0x40;
261 rc
= sclp_sync_request_timeout(0x00080001 | id
<< 8, sccb
,
262 SCLP_QUEUE_INTERVAL
);
265 switch (sccb
->header
.response_code
) {
267 set_bit(id
, sclp_storage_ids
);
268 for (i
= 0; i
< sccb
->assigned
; i
++) {
269 if (sccb
->entries
[i
])
270 sclp_unassign_storage(sccb
->entries
[i
] >> 16);
278 free_page((unsigned long) sccb
);
282 static int sclp_mem_change_state(unsigned long start
, unsigned long size
,
285 struct memory_increment
*incr
;
286 unsigned long long istart
;
289 list_for_each_entry(incr
, &sclp_mem_list
, list
) {
290 istart
= rn2addr(incr
->rn
);
291 if (start
+ size
- 1 < istart
)
293 if (start
> istart
+ sclp
.rzm
- 1)
296 rc
|= sclp_assign_storage(incr
->rn
);
298 sclp_unassign_storage(incr
->rn
);
300 incr
->standby
= online
? 0 : 1;
302 return rc
? -EIO
: 0;
305 static bool contains_standby_increment(unsigned long start
, unsigned long end
)
307 struct memory_increment
*incr
;
308 unsigned long istart
;
310 list_for_each_entry(incr
, &sclp_mem_list
, list
) {
311 istart
= rn2addr(incr
->rn
);
312 if (end
- 1 < istart
)
314 if (start
> istart
+ sclp
.rzm
- 1)
322 static int sclp_mem_notifier(struct notifier_block
*nb
,
323 unsigned long action
, void *data
)
325 unsigned long start
, size
;
326 struct memory_notify
*arg
;
331 start
= arg
->start_pfn
<< PAGE_SHIFT
;
332 size
= arg
->nr_pages
<< PAGE_SHIFT
;
333 mutex_lock(&sclp_mem_mutex
);
334 for_each_clear_bit(id
, sclp_storage_ids
, sclp_max_storage_id
+ 1)
335 sclp_attach_storage(id
);
337 case MEM_GOING_OFFLINE
:
339 * We do not allow to set memory blocks offline that contain
340 * standby memory. This is done to simplify the "memory online"
343 if (contains_standby_increment(start
, start
+ size
))
347 case MEM_CANCEL_OFFLINE
:
349 case MEM_GOING_ONLINE
:
350 rc
= sclp_mem_change_state(start
, size
, 1);
352 case MEM_CANCEL_ONLINE
:
353 sclp_mem_change_state(start
, size
, 0);
356 sclp_mem_change_state(start
, size
, 0);
363 sclp_mem_state_changed
= 1;
364 mutex_unlock(&sclp_mem_mutex
);
365 return rc
? NOTIFY_BAD
: NOTIFY_OK
;
368 static struct notifier_block sclp_mem_nb
= {
369 .notifier_call
= sclp_mem_notifier
,
372 static void __init
align_to_block_size(unsigned long long *start
,
373 unsigned long long *size
,
374 unsigned long long alignment
)
376 unsigned long long start_align
, size_align
;
378 start_align
= roundup(*start
, alignment
);
379 size_align
= rounddown(*start
+ *size
, alignment
) - start_align
;
381 pr_info("Standby memory at 0x%llx (%lluM of %lluM usable)\n",
382 *start
, size_align
>> 20, *size
>> 20);
383 *start
= start_align
;
387 static void __init
add_memory_merged(u16 rn
)
389 unsigned long long start
, size
, addr
, block_size
;
390 static u16 first_rn
, num
;
392 if (rn
&& first_rn
&& (first_rn
+ num
== rn
)) {
398 start
= rn2addr(first_rn
);
399 size
= (unsigned long long) num
* sclp
.rzm
;
400 if (start
>= VMEM_MAX_PHYS
)
402 if (start
+ size
> VMEM_MAX_PHYS
)
403 size
= VMEM_MAX_PHYS
- start
;
404 if (start
>= ident_map_size
)
406 if (start
+ size
> ident_map_size
)
407 size
= ident_map_size
- start
;
408 block_size
= memory_block_size_bytes();
409 align_to_block_size(&start
, &size
, block_size
);
412 for (addr
= start
; addr
< start
+ size
; addr
+= block_size
)
413 add_memory(0, addr
, block_size
, MHP_NONE
);
419 static void __init
sclp_add_standby_memory(void)
421 struct memory_increment
*incr
;
423 list_for_each_entry(incr
, &sclp_mem_list
, list
)
425 add_memory_merged(incr
->rn
);
426 add_memory_merged(0);
429 static void __init
insert_increment(u16 rn
, int standby
, int assigned
)
431 struct memory_increment
*incr
, *new_incr
;
432 struct list_head
*prev
;
435 new_incr
= kzalloc(sizeof(*new_incr
), GFP_KERNEL
);
439 new_incr
->standby
= standby
;
441 prev
= &sclp_mem_list
;
442 list_for_each_entry(incr
, &sclp_mem_list
, list
) {
443 if (assigned
&& incr
->rn
> rn
)
445 if (!assigned
&& incr
->rn
- last_rn
> 1)
451 new_incr
->rn
= last_rn
+ 1;
452 if (new_incr
->rn
> sclp
.rnmax
) {
456 list_add(&new_incr
->list
, prev
);
459 static int sclp_mem_freeze(struct device
*dev
)
461 if (!sclp_mem_state_changed
)
463 pr_err("Memory hotplug state changed, suspend refused.\n");
467 static const struct dev_pm_ops sclp_mem_pm_ops
= {
468 .freeze
= sclp_mem_freeze
,
471 static struct platform_driver sclp_mem_pdrv
= {
474 .pm
= &sclp_mem_pm_ops
,
478 static int __init
sclp_detect_standby_memory(void)
480 struct platform_device
*sclp_pdev
;
481 struct read_storage_sccb
*sccb
;
482 int i
, id
, assigned
, rc
;
484 if (OLDMEM_BASE
) /* No standby memory in kdump mode */
486 if ((sclp
.facilities
& 0xe00000000000ULL
) != 0xe00000000000ULL
)
489 sccb
= (void *) __get_free_page(GFP_KERNEL
| GFP_DMA
);
493 for (id
= 0; id
<= sclp_max_storage_id
; id
++) {
494 memset(sccb
, 0, PAGE_SIZE
);
495 sccb
->header
.length
= PAGE_SIZE
;
496 rc
= sclp_sync_request(SCLP_CMDW_READ_STORAGE_INFO
| id
<< 8, sccb
);
499 switch (sccb
->header
.response_code
) {
501 set_bit(id
, sclp_storage_ids
);
502 for (i
= 0; i
< sccb
->assigned
; i
++) {
503 if (!sccb
->entries
[i
])
506 insert_increment(sccb
->entries
[i
] >> 16, 0, 1);
512 for (i
= 0; i
< sccb
->assigned
; i
++) {
513 if (!sccb
->entries
[i
])
516 insert_increment(sccb
->entries
[i
] >> 16, 1, 1);
524 sclp_max_storage_id
= sccb
->max_id
;
526 if (rc
|| list_empty(&sclp_mem_list
))
528 for (i
= 1; i
<= sclp
.rnmax
- assigned
; i
++)
529 insert_increment(0, 1, 0);
530 rc
= register_memory_notifier(&sclp_mem_nb
);
533 rc
= platform_driver_register(&sclp_mem_pdrv
);
536 sclp_pdev
= platform_device_register_simple("sclp_mem", -1, NULL
, 0);
537 rc
= PTR_ERR_OR_ZERO(sclp_pdev
);
540 sclp_add_standby_memory();
543 platform_driver_unregister(&sclp_mem_pdrv
);
545 free_page((unsigned long) sccb
);
548 __initcall(sclp_detect_standby_memory
);
550 #endif /* CONFIG_MEMORY_HOTPLUG */
553 * Channel path configuration related functions.
556 #define SCLP_CMDW_CONFIGURE_CHPATH 0x000f0001
557 #define SCLP_CMDW_DECONFIGURE_CHPATH 0x000e0001
558 #define SCLP_CMDW_READ_CHPATH_INFORMATION 0x00030001
560 struct chp_cfg_sccb
{
561 struct sccb_header header
;
565 } __attribute__((packed
));
567 static int do_chp_configure(sclp_cmdw_t cmd
)
569 struct chp_cfg_sccb
*sccb
;
572 if (!SCLP_HAS_CHP_RECONFIG
)
575 sccb
= (struct chp_cfg_sccb
*) get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
578 sccb
->header
.length
= sizeof(*sccb
);
579 rc
= sclp_sync_request(cmd
, sccb
);
582 switch (sccb
->header
.response_code
) {
589 pr_warn("configure channel-path failed (cmd=0x%08x, response=0x%04x)\n",
590 cmd
, sccb
->header
.response_code
);
595 free_page((unsigned long) sccb
);
600 * sclp_chp_configure - perform configure channel-path sclp command
601 * @chpid: channel-path ID
603 * Perform configure channel-path command sclp command for specified chpid.
604 * Return 0 after command successfully finished, non-zero otherwise.
606 int sclp_chp_configure(struct chp_id chpid
)
608 return do_chp_configure(SCLP_CMDW_CONFIGURE_CHPATH
| chpid
.id
<< 8);
612 * sclp_chp_deconfigure - perform deconfigure channel-path sclp command
613 * @chpid: channel-path ID
615 * Perform deconfigure channel-path command sclp command for specified chpid
616 * and wait for completion. On success return 0. Return non-zero otherwise.
618 int sclp_chp_deconfigure(struct chp_id chpid
)
620 return do_chp_configure(SCLP_CMDW_DECONFIGURE_CHPATH
| chpid
.id
<< 8);
623 struct chp_info_sccb
{
624 struct sccb_header header
;
625 u8 recognized
[SCLP_CHP_INFO_MASK_SIZE
];
626 u8 standby
[SCLP_CHP_INFO_MASK_SIZE
];
627 u8 configured
[SCLP_CHP_INFO_MASK_SIZE
];
631 } __attribute__((packed
));
634 * sclp_chp_read_info - perform read channel-path information sclp command
635 * @info: resulting channel-path information data
637 * Perform read channel-path information sclp command and wait for completion.
638 * On success, store channel-path information in @info and return 0. Return
639 * non-zero otherwise.
641 int sclp_chp_read_info(struct sclp_chp_info
*info
)
643 struct chp_info_sccb
*sccb
;
646 if (!SCLP_HAS_CHP_INFO
)
649 sccb
= (struct chp_info_sccb
*) get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
652 sccb
->header
.length
= sizeof(*sccb
);
653 rc
= sclp_sync_request(SCLP_CMDW_READ_CHPATH_INFORMATION
, sccb
);
656 if (sccb
->header
.response_code
!= 0x0010) {
657 pr_warn("read channel-path info failed (response=0x%04x)\n",
658 sccb
->header
.response_code
);
662 memcpy(info
->recognized
, sccb
->recognized
, SCLP_CHP_INFO_MASK_SIZE
);
663 memcpy(info
->standby
, sccb
->standby
, SCLP_CHP_INFO_MASK_SIZE
);
664 memcpy(info
->configured
, sccb
->configured
, SCLP_CHP_INFO_MASK_SIZE
);
666 free_page((unsigned long) sccb
);