Skip to content

Commit

Permalink
s390-ccw.img: Get queue config from host.
Browse files Browse the repository at this point in the history
Ask the host about the configuration instead of guessing it.

Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
  • Loading branch information
cohuck authored and agraf committed Apr 26, 2013
1 parent 0f3f1f3 commit abbbe3d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
10 changes: 7 additions & 3 deletions pc-bios/s390-ccw/virtio.c
Expand Up @@ -257,17 +257,21 @@ int virtio_read(ulong sector, void *load_addr)
void virtio_setup_block(struct subchannel_id schid)
{
struct vq_info_block info;
struct vq_config_block config = {};

virtio_reset(schid);

/* XXX need to fetch the 128 from host */
vring_init(&block, 128, (void*)(100 * 1024 * 1024),
config.index = 0;
if (run_ccw(schid, CCW_CMD_READ_VQ_CONF, &config, sizeof(config))) {
virtio_panic("Could not get block device configuration\n");
}
vring_init(&block, config.num, (void*)(100 * 1024 * 1024),
KVM_S390_VIRTIO_RING_ALIGN);

info.queue = (100ULL * 1024ULL* 1024ULL);
info.align = KVM_S390_VIRTIO_RING_ALIGN;
info.index = 0;
info.num = 128;
info.num = config.num;
block.schid = schid;

if (!run_ccw(schid, CCW_CMD_SET_VQ, &info, sizeof(info))) {
Expand Down
5 changes: 5 additions & 0 deletions pc-bios/s390-ccw/virtio.h
Expand Up @@ -53,6 +53,11 @@ struct vq_info_block {
u16 num;
} __attribute__((packed));

struct vq_config_block {
u16 index;
u16 num;
} __attribute__((packed));

struct virtio_dev {
struct virtio_dev_header *header;
struct virtio_vqconfig *vqconfig;
Expand Down

0 comments on commit abbbe3d

Please sign in to comment.