2 * S390 virtio-ccw loading program
4 * Copyright (c) 2013 Alexander Graf <agraf@suse.de>
6 * This work is licensed under the terms of the GNU GPL, version 2 or (at
7 * your option) any later version. See the COPYING file in the top-level
14 char stack
[PAGE_SIZE
* 8] __attribute__((__aligned__(PAGE_SIZE
)));
15 char ring_area
[PAGE_SIZE
* 8] __attribute__((__aligned__(PAGE_SIZE
)));
17 static struct subchannel_id blk_schid
= { .one
= 1 };
20 * Priniciples of Operations (SA22-7832-09) chapter 17 requires that
21 * a subsystem-identification is at 184-187 and bytes 188-191 are zero
22 * after list-directed-IPL and ccw-IPL.
24 void write_subsystem_identification(void)
26 struct subchannel_id
*schid
= (struct subchannel_id
*) 184;
27 uint32_t *zeroes
= (uint32_t *) 188;
34 void virtio_panic(const char *string
)
41 static bool find_dev(struct schib
*schib
, int dev_no
)
45 for (i
= 0; i
< 0x10000; i
++) {
47 r
= stsch_err(blk_schid
, schib
);
48 if ((r
== 3) || (r
== -EIO
)) {
51 if (!schib
->pmcw
.dnv
) {
54 if (!virtio_is_blk(blk_schid
)) {
57 if ((dev_no
< 0) || (schib
->pmcw
.dev
== dev_no
)) {
65 static void virtio_setup(uint64_t dev_info
)
73 * We unconditionally enable mss support. In every sane configuration,
74 * this will succeed; and even if it doesn't, stsch_err() can deal
75 * with the consequences.
77 enable_mss_facility();
80 dev_no
= dev_info
& 0xffff;
81 debug_print_int("device no. ", dev_no
);
82 blk_schid
.ssid
= (dev_info
>> 16) & 0x3;
83 debug_print_int("ssid ", blk_schid
.ssid
);
84 found
= find_dev(&schib
, dev_no
);
86 for (ssid
= 0; ssid
< 0x3; ssid
++) {
87 blk_schid
.ssid
= ssid
;
88 found
= find_dev(&schib
, -1);
96 virtio_panic("No virtio-blk device found!\n");
99 virtio_setup_block(blk_schid
);
101 if (!virtio_ipl_disk_is_valid()) {
102 virtio_panic("No valid hard disk detected.\n");
109 debug_print_int("boot reg[7] ", boot_value
);
110 virtio_setup(boot_value
);
112 zipl_load(); /* no return */
114 virtio_panic("Failed to load OS from hard disk\n");
115 return 0; /* make compiler happy */