2 * s390 CCW Assignment Support
4 * Copyright 2017 IBM Corp
5 * Author(s): Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com>
6 * Xiao Feng Ren <renxiaof@linux.vnet.ibm.com>
7 * Pierre Morel <pmorel@linux.vnet.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2
10 * or (at your option) any later version. See the COPYING file in the
11 * top-level directory.
14 #include "qemu/osdep.h"
16 #include "qapi/error.h"
17 #include "qemu/module.h"
18 #include "hw/s390x/css.h"
19 #include "hw/s390x/css-bridge.h"
20 #include "hw/s390x/s390-ccw.h"
21 #include "sysemu/sysemu.h"
23 IOInstEnding
s390_ccw_cmd_request(SubchDev
*sch
)
25 S390CCWDeviceClass
*cdc
= S390_CCW_DEVICE_GET_CLASS(sch
->driver_data
);
27 if (!cdc
->handle_request
) {
28 return IOINST_CC_STATUS_PRESENT
;
30 return cdc
->handle_request(sch
);
33 int s390_ccw_halt(SubchDev
*sch
)
35 S390CCWDeviceClass
*cdc
= S390_CCW_DEVICE_GET_CLASS(sch
->driver_data
);
37 if (!cdc
->handle_halt
) {
40 return cdc
->handle_halt(sch
);
43 int s390_ccw_clear(SubchDev
*sch
)
45 S390CCWDeviceClass
*cdc
= S390_CCW_DEVICE_GET_CLASS(sch
->driver_data
);
47 if (!cdc
->handle_clear
) {
50 return cdc
->handle_clear(sch
);
53 IOInstEnding
s390_ccw_store(SubchDev
*sch
)
55 S390CCWDeviceClass
*cdc
= NULL
;
56 int ret
= IOINST_CC_EXPECTED
;
59 * This code is called for both virtual and passthrough devices,
60 * but only applies to the latter. This ugly check makes that
63 if (object_dynamic_cast(OBJECT(sch
->driver_data
), TYPE_S390_CCW
)) {
64 cdc
= S390_CCW_DEVICE_GET_CLASS(sch
->driver_data
);
67 if (cdc
&& cdc
->handle_store
) {
68 ret
= cdc
->handle_store(sch
);
74 static void s390_ccw_get_dev_info(S390CCWDevice
*cdev
,
78 unsigned int cssid
, ssid
, devid
;
79 char dev_path
[PATH_MAX
] = {0}, *tmp
;
82 error_setg(errp
, "No host device provided");
83 error_append_hint(errp
,
84 "Use -device vfio-ccw,sysfsdev=PATH_TO_DEVICE\n");
88 if (!realpath(sysfsdev
, dev_path
)) {
89 error_setg_errno(errp
, errno
, "Host device '%s' not found", sysfsdev
);
93 cdev
->mdevid
= g_path_get_basename(dev_path
);
95 tmp
= basename(dirname(dev_path
));
96 if (sscanf(tmp
, "%2x.%1x.%4x", &cssid
, &ssid
, &devid
) != 3) {
97 error_setg_errno(errp
, errno
, "Failed to read %s", tmp
);
101 cdev
->hostid
.cssid
= cssid
;
102 cdev
->hostid
.ssid
= ssid
;
103 cdev
->hostid
.devid
= devid
;
104 cdev
->hostid
.valid
= true;
107 static void s390_ccw_realize(S390CCWDevice
*cdev
, char *sysfsdev
, Error
**errp
)
109 CcwDevice
*ccw_dev
= CCW_DEVICE(cdev
);
110 CCWDeviceClass
*ck
= CCW_DEVICE_GET_CLASS(ccw_dev
);
111 DeviceState
*parent
= DEVICE(ccw_dev
);
116 s390_ccw_get_dev_info(cdev
, sysfsdev
, &err
);
118 goto out_err_propagate
;
121 sch
= css_create_sch(ccw_dev
->devno
, &err
);
123 goto out_mdevid_free
;
125 sch
->driver_data
= cdev
;
126 sch
->do_subchannel_work
= do_subchannel_work_passthrough
;
127 sch
->irb_cb
= build_irb_passthrough
;
130 ret
= css_sch_build_schib(sch
, &cdev
->hostid
);
132 error_setg_errno(&err
, -ret
, "%s: Failed to build initial schib",
137 ck
->realize(ccw_dev
, &err
);
142 css_generate_sch_crws(sch
->cssid
, sch
->ssid
, sch
->schid
,
143 parent
->hotplugged
, 1);
147 css_subch_assign(sch
->cssid
, sch
->ssid
, sch
->schid
, sch
->devno
, NULL
);
151 g_free(cdev
->mdevid
);
153 error_propagate(errp
, err
);
156 static void s390_ccw_unrealize(S390CCWDevice
*cdev
)
158 CcwDevice
*ccw_dev
= CCW_DEVICE(cdev
);
159 SubchDev
*sch
= ccw_dev
->sch
;
162 css_subch_assign(sch
->cssid
, sch
->ssid
, sch
->schid
, sch
->devno
, NULL
);
167 g_free(cdev
->mdevid
);
170 static void s390_ccw_instance_init(Object
*obj
)
172 S390CCWDevice
*dev
= S390_CCW_DEVICE(obj
);
174 device_add_bootindex_property(obj
, &dev
->bootindex
, "bootindex",
175 "/disk@0,0", DEVICE(obj
));
178 static void s390_ccw_class_init(ObjectClass
*klass
, void *data
)
180 S390CCWDeviceClass
*cdc
= S390_CCW_DEVICE_CLASS(klass
);
182 cdc
->realize
= s390_ccw_realize
;
183 cdc
->unrealize
= s390_ccw_unrealize
;
186 static const TypeInfo s390_ccw_info
= {
187 .name
= TYPE_S390_CCW
,
188 .parent
= TYPE_CCW_DEVICE
,
189 .instance_init
= s390_ccw_instance_init
,
190 .instance_size
= sizeof(S390CCWDevice
),
191 .class_size
= sizeof(S390CCWDeviceClass
),
192 .class_init
= s390_ccw_class_init
,
196 static void register_s390_ccw_type(void)
198 type_register_static(&s390_ccw_info
);
201 type_init(register_s390_ccw_type
)