main.c 1.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * S390 virtio-ccw loading program
 *
 * Copyright (c) 2013 Alexander Graf <agraf@suse.de>
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or (at
 * your option) any later version. See the COPYING file in the top-level
 * directory.
 */

#include "s390-ccw.h"

struct subchannel_id blk_schid;
char stack[PAGE_SIZE * 8] __attribute__((__aligned__(PAGE_SIZE)));

void virtio_panic(const char *string)
{
    sclp_print(string);
19
    disabled_wait();
20 21 22 23 24
    while (1) { }
}

static void virtio_setup(void)
{
25
    struct schib schib;
26 27 28 29 30 31 32 33
    int i;
    int r;
    bool found = false;

    blk_schid.one = 1;

    for (i = 0; i < 0x10000; i++) {
        blk_schid.sch_no = i;
34 35 36 37 38
        r = stsch_err(blk_schid, &schib);
        if (r == 3) {
            break;
        }
        if (schib.pmcw.dnv) {
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
            if (virtio_is_blk(blk_schid)) {
                found = true;
                break;
            }
        }
    }

    if (!found) {
        virtio_panic("No virtio-blk device found!\n");
    }

    virtio_setup_block(blk_schid);
}

int main(void)
{
    sclp_setup();
    virtio_setup();
    if (zipl_load() < 0)
        sclp_print("Failed to load OS from hard disk\n");
59
    disabled_wait();
60 61
    while (1) { }
}