2 * I/O instructions for S/390
4 * Copyright 2012 IBM Corp.
5 * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com>
7 * This work is licensed under the terms of the GNU GPL, version 2 or (at
8 * your option) any later version. See the COPYING file in the top-level
12 #include <sys/types.h>
17 #include "hw/s390x/s390-pci-bus.h"
19 int ioinst_disassemble_sch_ident(uint32_t value
, int *m
, int *cssid
, int *ssid
,
22 if (!IOINST_SCHID_ONE(value
)) {
25 if (!IOINST_SCHID_M(value
)) {
26 if (IOINST_SCHID_CSSID(value
)) {
32 *cssid
= IOINST_SCHID_CSSID(value
);
35 *ssid
= IOINST_SCHID_SSID(value
);
36 *schid
= IOINST_SCHID_NR(value
);
40 void ioinst_handle_xsch(S390CPU
*cpu
, uint64_t reg1
)
42 int cssid
, ssid
, schid
, m
;
47 if (ioinst_disassemble_sch_ident(reg1
, &m
, &cssid
, &ssid
, &schid
)) {
48 program_interrupt(&cpu
->env
, PGM_OPERAND
, 2);
51 trace_ioinst_sch_id("xsch", cssid
, ssid
, schid
);
52 sch
= css_find_subch(m
, cssid
, ssid
, schid
);
53 if (sch
&& css_subch_visible(sch
)) {
54 ret
= css_do_xsch(sch
);
73 void ioinst_handle_csch(S390CPU
*cpu
, uint64_t reg1
)
75 int cssid
, ssid
, schid
, m
;
80 if (ioinst_disassemble_sch_ident(reg1
, &m
, &cssid
, &ssid
, &schid
)) {
81 program_interrupt(&cpu
->env
, PGM_OPERAND
, 2);
84 trace_ioinst_sch_id("csch", cssid
, ssid
, schid
);
85 sch
= css_find_subch(m
, cssid
, ssid
, schid
);
86 if (sch
&& css_subch_visible(sch
)) {
87 ret
= css_do_csch(sch
);
97 void ioinst_handle_hsch(S390CPU
*cpu
, uint64_t reg1
)
99 int cssid
, ssid
, schid
, m
;
104 if (ioinst_disassemble_sch_ident(reg1
, &m
, &cssid
, &ssid
, &schid
)) {
105 program_interrupt(&cpu
->env
, PGM_OPERAND
, 2);
108 trace_ioinst_sch_id("hsch", cssid
, ssid
, schid
);
109 sch
= css_find_subch(m
, cssid
, ssid
, schid
);
110 if (sch
&& css_subch_visible(sch
)) {
111 ret
= css_do_hsch(sch
);
130 static int ioinst_schib_valid(SCHIB
*schib
)
132 if ((schib
->pmcw
.flags
& PMCW_FLAGS_MASK_INVALID
) ||
133 (schib
->pmcw
.chars
& PMCW_CHARS_MASK_INVALID
)) {
136 /* Disallow extended measurements for now. */
137 if (schib
->pmcw
.chars
& PMCW_CHARS_MASK_XMWME
) {
143 void ioinst_handle_msch(S390CPU
*cpu
, uint64_t reg1
, uint32_t ipb
)
145 int cssid
, ssid
, schid
, m
;
151 hwaddr len
= sizeof(*schib
);
152 CPUS390XState
*env
= &cpu
->env
;
154 addr
= decode_basedisp_s(env
, ipb
);
156 program_interrupt(env
, PGM_SPECIFICATION
, 2);
159 schib
= s390_cpu_physical_memory_map(env
, addr
, &len
, 0);
160 if (!schib
|| len
!= sizeof(*schib
)) {
161 program_interrupt(env
, PGM_ADDRESSING
, 2);
164 if (ioinst_disassemble_sch_ident(reg1
, &m
, &cssid
, &ssid
, &schid
) ||
165 !ioinst_schib_valid(schib
)) {
166 program_interrupt(env
, PGM_OPERAND
, 2);
169 trace_ioinst_sch_id("msch", cssid
, ssid
, schid
);
170 sch
= css_find_subch(m
, cssid
, ssid
, schid
);
171 if (sch
&& css_subch_visible(sch
)) {
172 ret
= css_do_msch(sch
, schib
);
191 s390_cpu_physical_memory_unmap(env
, schib
, len
, 0);
194 static void copy_orb_from_guest(ORB
*dest
, const ORB
*src
)
196 dest
->intparm
= be32_to_cpu(src
->intparm
);
197 dest
->ctrl0
= be16_to_cpu(src
->ctrl0
);
198 dest
->lpm
= src
->lpm
;
199 dest
->ctrl1
= src
->ctrl1
;
200 dest
->cpa
= be32_to_cpu(src
->cpa
);
203 static int ioinst_orb_valid(ORB
*orb
)
205 if ((orb
->ctrl0
& ORB_CTRL0_MASK_INVALID
) ||
206 (orb
->ctrl1
& ORB_CTRL1_MASK_INVALID
)) {
209 if ((orb
->cpa
& HIGH_ORDER_BIT
) != 0) {
215 void ioinst_handle_ssch(S390CPU
*cpu
, uint64_t reg1
, uint32_t ipb
)
217 int cssid
, ssid
, schid
, m
;
223 hwaddr len
= sizeof(*orig_orb
);
224 CPUS390XState
*env
= &cpu
->env
;
226 addr
= decode_basedisp_s(env
, ipb
);
228 program_interrupt(env
, PGM_SPECIFICATION
, 2);
231 orig_orb
= s390_cpu_physical_memory_map(env
, addr
, &len
, 0);
232 if (!orig_orb
|| len
!= sizeof(*orig_orb
)) {
233 program_interrupt(env
, PGM_ADDRESSING
, 2);
236 copy_orb_from_guest(&orb
, orig_orb
);
237 if (ioinst_disassemble_sch_ident(reg1
, &m
, &cssid
, &ssid
, &schid
) ||
238 !ioinst_orb_valid(&orb
)) {
239 program_interrupt(env
, PGM_OPERAND
, 2);
242 trace_ioinst_sch_id("ssch", cssid
, ssid
, schid
);
243 sch
= css_find_subch(m
, cssid
, ssid
, schid
);
244 if (sch
&& css_subch_visible(sch
)) {
245 ret
= css_do_ssch(sch
, &orb
);
264 s390_cpu_physical_memory_unmap(env
, orig_orb
, len
, 0);
267 void ioinst_handle_stcrw(S390CPU
*cpu
, uint32_t ipb
)
272 hwaddr len
= sizeof(*crw
);
273 CPUS390XState
*env
= &cpu
->env
;
275 addr
= decode_basedisp_s(env
, ipb
);
277 program_interrupt(env
, PGM_SPECIFICATION
, 2);
280 crw
= s390_cpu_physical_memory_map(env
, addr
, &len
, 1);
281 if (!crw
|| len
!= sizeof(*crw
)) {
282 program_interrupt(env
, PGM_ADDRESSING
, 2);
285 cc
= css_do_stcrw(crw
);
286 /* 0 - crw stored, 1 - zeroes stored */
290 s390_cpu_physical_memory_unmap(env
, crw
, len
, 1);
293 void ioinst_handle_stsch(S390CPU
*cpu
, uint64_t reg1
, uint32_t ipb
)
295 int cssid
, ssid
, schid
, m
;
300 hwaddr len
= sizeof(*schib
);
301 CPUS390XState
*env
= &cpu
->env
;
303 addr
= decode_basedisp_s(env
, ipb
);
305 program_interrupt(env
, PGM_SPECIFICATION
, 2);
308 schib
= s390_cpu_physical_memory_map(env
, addr
, &len
, 1);
309 if (!schib
|| len
!= sizeof(*schib
)) {
310 program_interrupt(env
, PGM_ADDRESSING
, 2);
314 if (ioinst_disassemble_sch_ident(reg1
, &m
, &cssid
, &ssid
, &schid
)) {
315 program_interrupt(env
, PGM_OPERAND
, 2);
318 trace_ioinst_sch_id("stsch", cssid
, ssid
, schid
);
319 sch
= css_find_subch(m
, cssid
, ssid
, schid
);
321 if (css_subch_visible(sch
)) {
322 css_do_stsch(sch
, schib
);
325 /* Indicate no more subchannels in this css/ss */
329 if (css_schid_final(m
, cssid
, ssid
, schid
)) {
330 cc
= 3; /* No more subchannels in this css/ss */
332 /* Store an empty schib. */
333 memset(schib
, 0, sizeof(*schib
));
340 s390_cpu_physical_memory_unmap(env
, schib
, len
, 1);
343 int ioinst_handle_tsch(CPUS390XState
*env
, uint64_t reg1
, uint32_t ipb
)
345 int cssid
, ssid
, schid
, m
;
351 hwaddr len
= sizeof(*irb
);
353 if (ioinst_disassemble_sch_ident(reg1
, &m
, &cssid
, &ssid
, &schid
)) {
354 program_interrupt(env
, PGM_OPERAND
, 2);
357 trace_ioinst_sch_id("tsch", cssid
, ssid
, schid
);
358 addr
= decode_basedisp_s(env
, ipb
);
360 program_interrupt(env
, PGM_SPECIFICATION
, 2);
363 irb
= s390_cpu_physical_memory_map(env
, addr
, &len
, 1);
364 if (!irb
|| len
!= sizeof(*irb
)) {
365 program_interrupt(env
, PGM_ADDRESSING
, 2);
369 sch
= css_find_subch(m
, cssid
, ssid
, schid
);
370 if (sch
&& css_subch_visible(sch
)) {
371 ret
= css_do_tsch(sch
, irb
);
372 /* 0 - status pending, 1 - not status pending */
378 s390_cpu_physical_memory_unmap(env
, irb
, sizeof(*irb
), 1);
382 typedef struct ChscReq
{
388 } QEMU_PACKED ChscReq
;
390 typedef struct ChscResp
{
395 } QEMU_PACKED ChscResp
;
397 #define CHSC_MIN_RESP_LEN 0x0008
399 #define CHSC_SCPD 0x0002
400 #define CHSC_SCSC 0x0010
401 #define CHSC_SDA 0x0031
402 #define CHSC_SEI 0x000e
404 #define CHSC_SCPD_0_M 0x20000000
405 #define CHSC_SCPD_0_C 0x10000000
406 #define CHSC_SCPD_0_FMT 0x0f000000
407 #define CHSC_SCPD_0_CSSID 0x00ff0000
408 #define CHSC_SCPD_0_RFMT 0x00000f00
409 #define CHSC_SCPD_0_RES 0xc000f000
410 #define CHSC_SCPD_1_RES 0xffffff00
411 #define CHSC_SCPD_01_CHPID 0x000000ff
412 static void ioinst_handle_chsc_scpd(ChscReq
*req
, ChscResp
*res
)
414 uint16_t len
= be16_to_cpu(req
->len
);
415 uint32_t param0
= be32_to_cpu(req
->param0
);
416 uint32_t param1
= be32_to_cpu(req
->param1
);
420 uint8_t f_chpid
, l_chpid
;
424 rfmt
= (param0
& CHSC_SCPD_0_RFMT
) >> 8;
425 if ((rfmt
== 0) || (rfmt
== 1)) {
426 rfmt
= !!(param0
& CHSC_SCPD_0_C
);
428 if ((len
!= 0x0010) || (param0
& CHSC_SCPD_0_RES
) ||
429 (param1
& CHSC_SCPD_1_RES
) || req
->param2
) {
433 if (param0
& CHSC_SCPD_0_FMT
) {
437 cssid
= (param0
& CHSC_SCPD_0_CSSID
) >> 16;
438 m
= param0
& CHSC_SCPD_0_M
;
440 if (!m
|| !css_present(cssid
)) {
445 f_chpid
= param0
& CHSC_SCPD_01_CHPID
;
446 l_chpid
= param1
& CHSC_SCPD_01_CHPID
;
447 if (l_chpid
< f_chpid
) {
451 /* css_collect_chp_desc() is endian-aware */
452 desc_size
= css_collect_chp_desc(m
, cssid
, f_chpid
, l_chpid
, rfmt
,
454 res
->code
= cpu_to_be16(0x0001);
455 res
->len
= cpu_to_be16(8 + desc_size
);
456 res
->param
= cpu_to_be32(rfmt
);
460 res
->code
= cpu_to_be16(resp_code
);
461 res
->len
= cpu_to_be16(CHSC_MIN_RESP_LEN
);
462 res
->param
= cpu_to_be32(rfmt
);
465 #define CHSC_SCSC_0_M 0x20000000
466 #define CHSC_SCSC_0_FMT 0x000f0000
467 #define CHSC_SCSC_0_CSSID 0x0000ff00
468 #define CHSC_SCSC_0_RES 0xdff000ff
469 static void ioinst_handle_chsc_scsc(ChscReq
*req
, ChscResp
*res
)
471 uint16_t len
= be16_to_cpu(req
->len
);
472 uint32_t param0
= be32_to_cpu(req
->param0
);
475 uint32_t general_chars
[510];
476 uint32_t chsc_chars
[508];
483 if (param0
& CHSC_SCSC_0_FMT
) {
487 cssid
= (param0
& CHSC_SCSC_0_CSSID
) >> 8;
489 if (!(param0
& CHSC_SCSC_0_M
) || !css_present(cssid
)) {
494 if ((param0
& CHSC_SCSC_0_RES
) || req
->param1
|| req
->param2
) {
498 res
->code
= cpu_to_be16(0x0001);
499 res
->len
= cpu_to_be16(4080);
502 memset(general_chars
, 0, sizeof(general_chars
));
503 memset(chsc_chars
, 0, sizeof(chsc_chars
));
505 general_chars
[0] = cpu_to_be32(0x03000000);
506 general_chars
[1] = cpu_to_be32(0x00059000);
508 chsc_chars
[0] = cpu_to_be32(0x40000000);
509 chsc_chars
[3] = cpu_to_be32(0x00040000);
511 memcpy(res
->data
, general_chars
, sizeof(general_chars
));
512 memcpy(res
->data
+ sizeof(general_chars
), chsc_chars
, sizeof(chsc_chars
));
516 res
->code
= cpu_to_be16(resp_code
);
517 res
->len
= cpu_to_be16(CHSC_MIN_RESP_LEN
);
521 #define CHSC_SDA_0_FMT 0x0f000000
522 #define CHSC_SDA_0_OC 0x0000ffff
523 #define CHSC_SDA_0_RES 0xf0ff0000
524 #define CHSC_SDA_OC_MCSSE 0x0
525 #define CHSC_SDA_OC_MSS 0x2
526 static void ioinst_handle_chsc_sda(ChscReq
*req
, ChscResp
*res
)
528 uint16_t resp_code
= 0x0001;
529 uint16_t len
= be16_to_cpu(req
->len
);
530 uint32_t param0
= be32_to_cpu(req
->param0
);
534 if ((len
!= 0x0400) || (param0
& CHSC_SDA_0_RES
)) {
539 if (param0
& CHSC_SDA_0_FMT
) {
544 oc
= param0
& CHSC_SDA_0_OC
;
546 case CHSC_SDA_OC_MCSSE
:
547 ret
= css_enable_mcsse();
548 if (ret
== -EINVAL
) {
553 case CHSC_SDA_OC_MSS
:
554 ret
= css_enable_mss();
555 if (ret
== -EINVAL
) {
566 res
->code
= cpu_to_be16(resp_code
);
567 res
->len
= cpu_to_be16(CHSC_MIN_RESP_LEN
);
571 static int chsc_sei_nt0_get_event(void *res
)
577 static int chsc_sei_nt0_have_event(void)
583 #define CHSC_SEI_NT0 (1ULL << 63)
584 #define CHSC_SEI_NT2 (1ULL << 61)
585 static void ioinst_handle_chsc_sei(ChscReq
*req
, ChscResp
*res
)
587 uint64_t selection_mask
= ldq_p(&req
->param1
);
588 uint8_t *res_flags
= (uint8_t *)res
->data
;
592 /* regarding architecture nt0 can not be masked */
593 have_event
= !chsc_sei_nt0_get_event(res
);
594 have_more
= chsc_sei_nt0_have_event();
596 if (selection_mask
& CHSC_SEI_NT2
) {
598 have_event
= !chsc_sei_nt2_get_event(res
);
602 have_more
= chsc_sei_nt2_have_event();
607 res
->code
= cpu_to_be16(0x0001);
609 (*res_flags
) |= 0x80;
611 (*res_flags
) &= ~0x80;
614 res
->code
= cpu_to_be16(0x0004);
618 static void ioinst_handle_chsc_unimplemented(ChscResp
*res
)
620 res
->len
= cpu_to_be16(CHSC_MIN_RESP_LEN
);
621 res
->code
= cpu_to_be16(0x0004);
625 void ioinst_handle_chsc(S390CPU
*cpu
, uint32_t ipb
)
633 hwaddr map_size
= TARGET_PAGE_SIZE
;
634 CPUS390XState
*env
= &cpu
->env
;
636 trace_ioinst("chsc");
637 reg
= (ipb
>> 20) & 0x00f;
638 addr
= env
->regs
[reg
];
641 program_interrupt(env
, PGM_SPECIFICATION
, 2);
644 req
= s390_cpu_physical_memory_map(env
, addr
, &map_size
, 1);
645 if (!req
|| map_size
!= TARGET_PAGE_SIZE
) {
646 program_interrupt(env
, PGM_ADDRESSING
, 2);
649 len
= be16_to_cpu(req
->len
);
650 /* Length field valid? */
651 if ((len
< 16) || (len
> 4088) || (len
& 7)) {
652 program_interrupt(env
, PGM_OPERAND
, 2);
655 memset((char *)req
+ len
, 0, TARGET_PAGE_SIZE
- len
);
656 res
= (void *)((char *)req
+ len
);
657 command
= be16_to_cpu(req
->command
);
658 trace_ioinst_chsc_cmd(command
, len
);
661 ioinst_handle_chsc_scsc(req
, res
);
664 ioinst_handle_chsc_scpd(req
, res
);
667 ioinst_handle_chsc_sda(req
, res
);
670 ioinst_handle_chsc_sei(req
, res
);
673 ioinst_handle_chsc_unimplemented(res
);
677 setcc(cpu
, 0); /* Command execution complete */
679 s390_cpu_physical_memory_unmap(env
, req
, map_size
, 1);
682 int ioinst_handle_tpi(CPUS390XState
*env
, uint32_t ipb
)
687 hwaddr len
, orig_len
;
691 addr
= decode_basedisp_s(env
, ipb
);
693 program_interrupt(env
, PGM_SPECIFICATION
, 2);
697 lowcore
= addr
? 0 : 1;
698 len
= lowcore
? 8 /* two words */ : 12 /* three words */;
700 int_code
= s390_cpu_physical_memory_map(env
, addr
, &len
, 1);
701 if (!int_code
|| (len
!= orig_len
)) {
702 program_interrupt(env
, PGM_ADDRESSING
, 2);
706 ret
= css_do_tpi(int_code
, lowcore
);
708 s390_cpu_physical_memory_unmap(env
, int_code
, len
, 1);
712 #define SCHM_REG1_RES(_reg) (_reg & 0x000000000ffffffc)
713 #define SCHM_REG1_MBK(_reg) ((_reg & 0x00000000f0000000) >> 28)
714 #define SCHM_REG1_UPD(_reg) ((_reg & 0x0000000000000002) >> 1)
715 #define SCHM_REG1_DCT(_reg) (_reg & 0x0000000000000001)
717 void ioinst_handle_schm(S390CPU
*cpu
, uint64_t reg1
, uint64_t reg2
,
723 CPUS390XState
*env
= &cpu
->env
;
725 trace_ioinst("schm");
727 if (SCHM_REG1_RES(reg1
)) {
728 program_interrupt(env
, PGM_OPERAND
, 2);
732 mbk
= SCHM_REG1_MBK(reg1
);
733 update
= SCHM_REG1_UPD(reg1
);
734 dct
= SCHM_REG1_DCT(reg1
);
736 if (update
&& (reg2
& 0x000000000000001f)) {
737 program_interrupt(env
, PGM_OPERAND
, 2);
741 css_do_schm(mbk
, update
, dct
, update
? reg2
: 0);
744 void ioinst_handle_rsch(S390CPU
*cpu
, uint64_t reg1
)
746 int cssid
, ssid
, schid
, m
;
751 if (ioinst_disassemble_sch_ident(reg1
, &m
, &cssid
, &ssid
, &schid
)) {
752 program_interrupt(&cpu
->env
, PGM_OPERAND
, 2);
755 trace_ioinst_sch_id("rsch", cssid
, ssid
, schid
);
756 sch
= css_find_subch(m
, cssid
, ssid
, schid
);
757 if (sch
&& css_subch_visible(sch
)) {
758 ret
= css_do_rsch(sch
);
777 #define RCHP_REG1_RES(_reg) (_reg & 0x00000000ff00ff00)
778 #define RCHP_REG1_CSSID(_reg) ((_reg & 0x0000000000ff0000) >> 16)
779 #define RCHP_REG1_CHPID(_reg) (_reg & 0x00000000000000ff)
780 void ioinst_handle_rchp(S390CPU
*cpu
, uint64_t reg1
)
786 CPUS390XState
*env
= &cpu
->env
;
788 if (RCHP_REG1_RES(reg1
)) {
789 program_interrupt(env
, PGM_OPERAND
, 2);
793 cssid
= RCHP_REG1_CSSID(reg1
);
794 chpid
= RCHP_REG1_CHPID(reg1
);
796 trace_ioinst_chp_id("rchp", cssid
, chpid
);
798 ret
= css_do_rchp(cssid
, chpid
);
811 /* Invalid channel subsystem. */
812 program_interrupt(env
, PGM_OPERAND
, 2);
818 #define SAL_REG1_INVALID(_reg) (_reg & 0x0000000080000000)
819 void ioinst_handle_sal(S390CPU
*cpu
, uint64_t reg1
)
821 /* We do not provide address limit checking, so let's suppress it. */
822 if (SAL_REG1_INVALID(reg1
) || reg1
& 0x000000000000ffff) {
823 program_interrupt(&cpu
->env
, PGM_OPERAND
, 2);