xref: /openbmc/linux/arch/s390/boot/uv.c (revision 38c21825)
15abb9351SVasily Gorbik // SPDX-License-Identifier: GPL-2.0
25abb9351SVasily Gorbik #include <asm/uv.h>
342c89439SAlexander Egorenkov #include <asm/boot_data.h>
45abb9351SVasily Gorbik #include <asm/facility.h>
55abb9351SVasily Gorbik #include <asm/sections.h>
65abb9351SVasily Gorbik 
742c89439SAlexander Egorenkov #include "boot.h"
8c5cf5054SAlexander Egorenkov #include "uv.h"
9c5cf5054SAlexander Egorenkov 
10ecdc5d84SVasily Gorbik /* will be used in arch/s390/kernel/uv.c */
11ecdc5d84SVasily Gorbik #ifdef CONFIG_PROTECTED_VIRTUALIZATION_GUEST
125abb9351SVasily Gorbik int __bootdata_preserved(prot_virt_guest);
13ecdc5d84SVasily Gorbik #endif
141d6671aeSVasily Gorbik #if IS_ENABLED(CONFIG_KVM)
151d6671aeSVasily Gorbik int __bootdata_preserved(prot_virt_host);
161d6671aeSVasily Gorbik #endif
17ecdc5d84SVasily Gorbik struct uv_info __bootdata_preserved(uv_info);
185abb9351SVasily Gorbik 
195abb9351SVasily Gorbik void uv_query_info(void)
205abb9351SVasily Gorbik {
215abb9351SVasily Gorbik 	struct uv_cb_qui uvcb = {
225abb9351SVasily Gorbik 		.header.cmd = UVC_CMD_QUI,
235abb9351SVasily Gorbik 		.header.len = sizeof(uvcb)
245abb9351SVasily Gorbik 	};
255abb9351SVasily Gorbik 
265abb9351SVasily Gorbik 	if (!test_facility(158))
275abb9351SVasily Gorbik 		return;
285abb9351SVasily Gorbik 
2927dc0700SChristian Borntraeger 	/* rc==0x100 means that there is additional data we do not process */
3027dc0700SChristian Borntraeger 	if (uv_call(0, (uint64_t)&uvcb) && uvcb.header.rc != 0x100)
315abb9351SVasily Gorbik 		return;
325abb9351SVasily Gorbik 
33ecdc5d84SVasily Gorbik 	if (IS_ENABLED(CONFIG_KVM)) {
34ecdc5d84SVasily Gorbik 		memcpy(uv_info.inst_calls_list, uvcb.inst_calls_list, sizeof(uv_info.inst_calls_list));
35ecdc5d84SVasily Gorbik 		uv_info.uv_base_stor_len = uvcb.uv_base_stor_len;
36ecdc5d84SVasily Gorbik 		uv_info.guest_base_stor_len = uvcb.conf_base_phys_stor_len;
37ecdc5d84SVasily Gorbik 		uv_info.guest_virt_base_stor_len = uvcb.conf_base_virt_stor_len;
38ecdc5d84SVasily Gorbik 		uv_info.guest_virt_var_stor_len = uvcb.conf_virt_var_stor_len;
39ecdc5d84SVasily Gorbik 		uv_info.guest_cpu_stor_len = uvcb.cpu_stor_len;
40ecdc5d84SVasily Gorbik 		uv_info.max_sec_stor_addr = ALIGN(uvcb.max_guest_stor_addr, PAGE_SIZE);
41ecdc5d84SVasily Gorbik 		uv_info.max_num_sec_conf = uvcb.max_num_sec_conf;
42e82080e1SJanosch Frank 		uv_info.max_guest_cpu_id = uvcb.max_guest_cpu_id;
4385b18d7bSJanosch Frank 		uv_info.uv_feature_indications = uvcb.uv_feature_indications;
44ac640db3SJanosch Frank 		uv_info.supp_se_hdr_ver = uvcb.supp_se_hdr_versions;
45ac640db3SJanosch Frank 		uv_info.supp_se_hdr_pcf = uvcb.supp_se_hdr_pcf;
46*38c21825SJanosch Frank 		uv_info.conf_dump_storage_state_len = uvcb.conf_dump_storage_state_len;
47*38c21825SJanosch Frank 		uv_info.conf_dump_finalize_len = uvcb.conf_dump_finalize_len;
48ecdc5d84SVasily Gorbik 	}
49ecdc5d84SVasily Gorbik 
50ecdc5d84SVasily Gorbik #ifdef CONFIG_PROTECTED_VIRTUALIZATION_GUEST
515abb9351SVasily Gorbik 	if (test_bit_inv(BIT_UVC_CMD_SET_SHARED_ACCESS, (unsigned long *)uvcb.inst_calls_list) &&
525abb9351SVasily Gorbik 	    test_bit_inv(BIT_UVC_CMD_REMOVE_SHARED_ACCESS, (unsigned long *)uvcb.inst_calls_list))
535abb9351SVasily Gorbik 		prot_virt_guest = 1;
54ecdc5d84SVasily Gorbik #endif
555abb9351SVasily Gorbik }
560c4f2623SVasily Gorbik 
570c4f2623SVasily Gorbik #if IS_ENABLED(CONFIG_KVM)
580c4f2623SVasily Gorbik void adjust_to_uv_max(unsigned long *vmax)
590c4f2623SVasily Gorbik {
607f33565bSAlexander Egorenkov 	if (is_prot_virt_host() && uv_info.max_sec_stor_addr)
610c4f2623SVasily Gorbik 		*vmax = min_t(unsigned long, *vmax, uv_info.max_sec_stor_addr);
620c4f2623SVasily Gorbik }
6342c89439SAlexander Egorenkov 
647f33565bSAlexander Egorenkov static int is_prot_virt_host_capable(void)
657f33565bSAlexander Egorenkov {
667f33565bSAlexander Egorenkov 	/* disable if no prot_virt=1 given on command-line */
677f33565bSAlexander Egorenkov 	if (!is_prot_virt_host())
687f33565bSAlexander Egorenkov 		return 0;
697f33565bSAlexander Egorenkov 	/* disable if protected guest virtualization is enabled */
707f33565bSAlexander Egorenkov 	if (is_prot_virt_guest())
717f33565bSAlexander Egorenkov 		return 0;
727f33565bSAlexander Egorenkov 	/* disable if no hardware support */
737f33565bSAlexander Egorenkov 	if (!test_facility(158))
747f33565bSAlexander Egorenkov 		return 0;
757f33565bSAlexander Egorenkov 	/* disable if kdump */
76e9e7870fSAlexander Egorenkov 	if (oldmem_data.start)
777f33565bSAlexander Egorenkov 		return 0;
787f33565bSAlexander Egorenkov 	/* disable if stand-alone dump */
797f33565bSAlexander Egorenkov 	if (ipl_block_valid && is_ipl_block_dump())
807f33565bSAlexander Egorenkov 		return 0;
817f33565bSAlexander Egorenkov 	return 1;
827f33565bSAlexander Egorenkov }
837f33565bSAlexander Egorenkov 
8442c89439SAlexander Egorenkov void sanitize_prot_virt_host(void)
8542c89439SAlexander Egorenkov {
867f33565bSAlexander Egorenkov 	prot_virt_host = is_prot_virt_host_capable();
8742c89439SAlexander Egorenkov }
880c4f2623SVasily Gorbik #endif
89