2013-04-22 19:02:49 +00:00
|
|
|
/*
|
|
|
|
* QEMU S390 bootmap interpreter
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 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"
|
2014-05-19 18:08:54 +00:00
|
|
|
#include "bootmap.h"
|
2014-05-19 18:10:27 +00:00
|
|
|
#include "virtio.h"
|
2013-04-22 19:02:49 +00:00
|
|
|
|
2014-05-19 18:12:43 +00:00
|
|
|
#ifdef DEBUG
|
2014-05-19 18:05:40 +00:00
|
|
|
/* #define DEBUG_FALLBACK */
|
2014-05-19 18:12:43 +00:00
|
|
|
#endif
|
2013-04-22 19:02:49 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_FALLBACK
|
|
|
|
#define dputs(txt) \
|
|
|
|
do { sclp_print("zipl: " txt); } while (0)
|
|
|
|
#else
|
|
|
|
#define dputs(fmt, ...) \
|
|
|
|
do { } while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Scratch space */
|
2014-05-19 18:12:43 +00:00
|
|
|
static uint8_t sec[MAX_SECTOR_SIZE*4] __attribute__((__aligned__(PAGE_SIZE)));
|
2013-04-22 19:02:49 +00:00
|
|
|
|
2014-06-18 12:16:45 +00:00
|
|
|
typedef struct ResetInfo {
|
|
|
|
uint32_t ipl_mask;
|
|
|
|
uint32_t ipl_addr;
|
|
|
|
uint32_t ipl_continue;
|
|
|
|
} ResetInfo;
|
|
|
|
|
|
|
|
ResetInfo save;
|
|
|
|
|
|
|
|
static void jump_to_IPL_2(void)
|
|
|
|
{
|
|
|
|
ResetInfo *current = 0;
|
|
|
|
|
|
|
|
void (*ipl)(void) = (void *) (uint64_t) current->ipl_continue;
|
|
|
|
debug_print_addr("set IPL addr to", ipl);
|
|
|
|
|
|
|
|
/* Ensure the guest output starts fresh */
|
|
|
|
sclp_print("\n");
|
|
|
|
|
|
|
|
*current = save;
|
|
|
|
ipl(); /* should not return */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void jump_to_IPL_code(uint64_t address)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* The IPL PSW is at address 0. We also must not overwrite the
|
|
|
|
* content of non-BIOS memory after we loaded the guest, so we
|
|
|
|
* save the original content and restore it in jump_to_IPL_2.
|
|
|
|
*/
|
|
|
|
ResetInfo *current = 0;
|
|
|
|
|
|
|
|
save = *current;
|
|
|
|
current->ipl_addr = (uint32_t) (uint64_t) &jump_to_IPL_2;
|
|
|
|
current->ipl_continue = address & 0x7fffffff;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* HACK ALERT.
|
|
|
|
* We use the load normal reset to keep r15 unchanged. jump_to_IPL_2
|
|
|
|
* can then use r15 as its stack pointer.
|
|
|
|
*/
|
|
|
|
asm volatile("lghi 1,1\n\t"
|
|
|
|
"diag 1,1,0x308\n\t"
|
|
|
|
: : : "1", "memory");
|
|
|
|
virtio_panic("\n! IPL returns !\n");
|
|
|
|
}
|
|
|
|
|
2014-05-19 18:12:43 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* IPL a SCSI disk
|
|
|
|
*/
|
2013-04-22 19:02:49 +00:00
|
|
|
|
2014-05-19 18:11:07 +00:00
|
|
|
static void zipl_load_segment(ComponentEntry *entry)
|
2013-04-22 19:02:49 +00:00
|
|
|
{
|
2014-05-19 18:10:27 +00:00
|
|
|
const int max_entries = (MAX_SECTOR_SIZE / sizeof(ScsiBlockPtr));
|
2014-05-19 18:08:54 +00:00
|
|
|
ScsiBlockPtr *bprs = (void *)sec;
|
2014-06-18 12:16:46 +00:00
|
|
|
const int bprs_size = sizeof(sec);
|
2014-05-19 18:09:50 +00:00
|
|
|
block_number_t blockno;
|
2014-05-19 18:12:43 +00:00
|
|
|
uint64_t address;
|
2013-04-22 19:02:49 +00:00
|
|
|
int i;
|
2014-05-19 18:12:43 +00:00
|
|
|
char err_msg[] = "zIPL failed to read BPRS at 0xZZZZZZZZZZZZZZZZ";
|
|
|
|
char *blk_no = &err_msg[30]; /* where to print blockno in (those ZZs) */
|
2013-04-22 19:02:49 +00:00
|
|
|
|
|
|
|
blockno = entry->data.blockno;
|
|
|
|
address = entry->load_address;
|
|
|
|
|
|
|
|
debug_print_int("loading segment at block", blockno);
|
|
|
|
debug_print_int("addr", address);
|
|
|
|
|
|
|
|
do {
|
2014-06-18 12:16:46 +00:00
|
|
|
memset(bprs, FREE_SPACE_FILLER, bprs_size);
|
2014-05-19 18:12:43 +00:00
|
|
|
fill_hex_val(blk_no, &blockno, sizeof(blockno));
|
|
|
|
read_block(blockno, bprs, err_msg);
|
2013-04-22 19:02:49 +00:00
|
|
|
|
|
|
|
for (i = 0;; i++) {
|
2014-05-19 18:12:43 +00:00
|
|
|
uint64_t *cur_desc = (void *)&bprs[i];
|
2013-04-22 19:02:49 +00:00
|
|
|
|
|
|
|
blockno = bprs[i].blockno;
|
2014-05-19 18:05:40 +00:00
|
|
|
if (!blockno) {
|
2013-04-22 19:02:49 +00:00
|
|
|
break;
|
2014-05-19 18:05:40 +00:00
|
|
|
}
|
2013-04-22 19:02:49 +00:00
|
|
|
|
|
|
|
/* we need the updated blockno for the next indirect entry in the
|
|
|
|
chain, but don't want to advance address */
|
2014-05-19 18:05:40 +00:00
|
|
|
if (i == (max_entries - 1)) {
|
2013-04-22 19:02:49 +00:00
|
|
|
break;
|
2014-05-19 18:05:40 +00:00
|
|
|
}
|
2013-04-22 19:02:49 +00:00
|
|
|
|
2014-06-18 12:16:46 +00:00
|
|
|
if (bprs[i].blockct == 0 && unused_space(&bprs[i + 1],
|
2014-05-19 18:08:54 +00:00
|
|
|
sizeof(ScsiBlockPtr))) {
|
2014-06-18 12:16:46 +00:00
|
|
|
/* This is a "continue" pointer.
|
|
|
|
* This ptr is the last one in the current script section.
|
|
|
|
* I.e. the next ptr must point to the unused memory area.
|
|
|
|
* The blockno is not zero, so the upper loop must continue
|
|
|
|
* reading next section of BPRS.
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
2013-04-22 19:02:49 +00:00
|
|
|
address = virtio_load_direct(cur_desc[0], cur_desc[1], 0,
|
2014-05-19 18:05:40 +00:00
|
|
|
(void *)address);
|
2014-05-19 18:12:43 +00:00
|
|
|
IPL_assert(address != -1, "zIPL load segment failed");
|
2013-04-22 19:02:49 +00:00
|
|
|
}
|
|
|
|
} while (blockno);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Run a zipl program */
|
2014-05-19 18:11:07 +00:00
|
|
|
static void zipl_run(ScsiBlockPtr *pte)
|
2013-04-22 19:02:49 +00:00
|
|
|
{
|
2014-05-19 18:08:54 +00:00
|
|
|
ComponentHeader *header;
|
|
|
|
ComponentEntry *entry;
|
2014-05-19 18:10:27 +00:00
|
|
|
uint8_t tmp_sec[MAX_SECTOR_SIZE];
|
2013-04-22 19:02:49 +00:00
|
|
|
|
2014-05-19 18:12:43 +00:00
|
|
|
read_block(pte->blockno, tmp_sec, "Cannot read header");
|
2014-05-19 18:08:54 +00:00
|
|
|
header = (ComponentHeader *)tmp_sec;
|
2013-04-22 19:02:49 +00:00
|
|
|
|
2014-05-19 18:12:43 +00:00
|
|
|
IPL_assert(magic_match(tmp_sec, ZIPL_MAGIC), "No zIPL magic");
|
|
|
|
IPL_assert(header->type == ZIPL_COMP_HEADER_IPL, "Bad header type");
|
2013-04-22 19:02:49 +00:00
|
|
|
|
|
|
|
dputs("start loading images\n");
|
|
|
|
|
|
|
|
/* Load image(s) into RAM */
|
2014-05-19 18:08:54 +00:00
|
|
|
entry = (ComponentEntry *)(&header[1]);
|
2013-04-22 19:02:49 +00:00
|
|
|
while (entry->component_type == ZIPL_COMP_ENTRY_LOAD) {
|
2014-05-19 18:11:07 +00:00
|
|
|
zipl_load_segment(entry);
|
2013-04-22 19:02:49 +00:00
|
|
|
|
|
|
|
entry++;
|
|
|
|
|
2014-05-19 18:11:07 +00:00
|
|
|
IPL_assert((uint8_t *)(&entry[1]) <= (tmp_sec + MAX_SECTOR_SIZE),
|
2014-05-19 18:12:43 +00:00
|
|
|
"Wrong entry value");
|
2013-04-22 19:02:49 +00:00
|
|
|
}
|
|
|
|
|
2014-05-19 18:12:43 +00:00
|
|
|
IPL_assert(entry->component_type == ZIPL_COMP_ENTRY_EXEC, "No EXEC entry");
|
2013-04-22 19:02:49 +00:00
|
|
|
|
|
|
|
/* should not return */
|
2014-06-18 12:16:45 +00:00
|
|
|
jump_to_IPL_code(entry->load_address);
|
2013-04-22 19:02:49 +00:00
|
|
|
}
|
|
|
|
|
2014-05-19 18:12:43 +00:00
|
|
|
static void ipl_scsi(void)
|
2013-04-22 19:02:49 +00:00
|
|
|
{
|
2014-05-19 18:08:54 +00:00
|
|
|
ScsiMbr *mbr = (void *)sec;
|
2013-04-22 19:02:49 +00:00
|
|
|
uint8_t *ns, *ns_end;
|
|
|
|
int program_table_entries = 0;
|
2014-05-19 18:08:54 +00:00
|
|
|
const int pte_len = sizeof(ScsiBlockPtr);
|
|
|
|
ScsiBlockPtr *prog_table_entry;
|
2013-04-22 19:02:49 +00:00
|
|
|
|
2014-05-19 18:12:43 +00:00
|
|
|
/* The 0-th block (MBR) was already read into sec[] */
|
2013-04-22 19:02:49 +00:00
|
|
|
|
2014-05-19 18:12:43 +00:00
|
|
|
sclp_print("Using SCSI scheme.\n");
|
2013-04-22 19:02:49 +00:00
|
|
|
debug_print_int("program table", mbr->blockptr.blockno);
|
|
|
|
|
|
|
|
/* Parse the program table */
|
2014-05-19 18:11:07 +00:00
|
|
|
read_block(mbr->blockptr.blockno, sec,
|
2014-05-19 18:12:43 +00:00
|
|
|
"Error reading Program Table");
|
2013-04-22 19:02:49 +00:00
|
|
|
|
2014-05-19 18:12:43 +00:00
|
|
|
IPL_assert(magic_match(sec, ZIPL_MAGIC), "No zIPL magic");
|
2013-04-22 19:02:49 +00:00
|
|
|
|
2014-05-19 18:10:27 +00:00
|
|
|
ns_end = sec + virtio_get_block_size();
|
2013-04-22 19:02:49 +00:00
|
|
|
for (ns = (sec + pte_len); (ns + pte_len) < ns_end; ns++) {
|
2014-05-19 18:08:54 +00:00
|
|
|
prog_table_entry = (ScsiBlockPtr *)ns;
|
2013-04-22 19:02:49 +00:00
|
|
|
if (!prog_table_entry->blockno) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
program_table_entries++;
|
|
|
|
}
|
|
|
|
|
|
|
|
debug_print_int("program table entries", program_table_entries);
|
|
|
|
|
2014-05-19 18:12:43 +00:00
|
|
|
IPL_assert(program_table_entries != 0, "Empty Program Table");
|
2013-04-22 19:02:49 +00:00
|
|
|
|
|
|
|
/* Run the default entry */
|
|
|
|
|
2014-05-19 18:08:54 +00:00
|
|
|
prog_table_entry = (ScsiBlockPtr *)(sec + pte_len);
|
2013-04-22 19:02:49 +00:00
|
|
|
|
2014-05-19 18:11:07 +00:00
|
|
|
zipl_run(prog_table_entry); /* no return */
|
2013-04-22 19:02:49 +00:00
|
|
|
}
|
2014-05-19 18:12:43 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* IPL starts here
|
|
|
|
*/
|
|
|
|
|
|
|
|
void zipl_load(void)
|
|
|
|
{
|
|
|
|
ScsiMbr *mbr = (void *)sec;
|
|
|
|
|
|
|
|
/* Grab the MBR */
|
|
|
|
memset(sec, FREE_SPACE_FILLER, sizeof(sec));
|
|
|
|
read_block(0, mbr, "Cannot read block 0");
|
|
|
|
|
|
|
|
dputs("checking magic\n");
|
|
|
|
|
|
|
|
if (magic_match(mbr->magic, ZIPL_MAGIC)) {
|
|
|
|
ipl_scsi(); /* no return */
|
|
|
|
}
|
|
|
|
|
|
|
|
virtio_panic("\n* invalid MBR magic *\n");
|
|
|
|
}
|