blob: 10f04c69068fcb614ddae3f82c44f7207a5b239c [file] [log] [blame]
Alexander Graf92f2ca32013-04-22 20:57:58 +02001/*
2 * S390 virtio-ccw loading program
3 *
4 * Copyright (c) 2013 Alexander Graf <agraf@suse.de>
5 *
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
8 * directory.
9 */
10
Thomas Huth90806fe2017-07-12 14:49:43 +020011#include "libc.h"
Alexander Graf92f2ca32013-04-22 20:57:58 +020012#include "s390-ccw.h"
Jason J. Herne120d0412019-04-04 10:34:24 -040013#include "cio.h"
Eugene (jno) Dvurechenski60612d52014-05-19 20:11:07 +020014#include "virtio.h"
Alexander Graf92f2ca32013-04-22 20:57:58 +020015
Alexander Graf92f2ca32013-04-22 20:57:58 +020016char stack[PAGE_SIZE * 8] __attribute__((__aligned__(PAGE_SIZE)));
Eugene (jno) Dvurechenskib88d7fa2015-11-10 14:10:20 +010017static SubChannelId blk_schid = { .one = 1 };
Collin Wallinga0e11b62018-05-29 00:40:09 -040018static char loadparm_str[LOADPARM_LEN + 1] = { 0, 0, 0, 0, 0, 0, 0, 0, 0 };
Collin L. Walling118ee802018-02-23 10:43:11 -050019QemuIplParameters qipl;
Jason J. Hernea5f6e092019-04-04 10:34:22 -040020IplParameterBlock iplb __attribute__((__aligned__(PAGE_SIZE)));
21static bool have_iplb;
Christian Borntraegerf2879a52014-07-01 12:17:41 +020022
Collin L. Walling9eaa6542018-02-23 10:43:13 -050023#define LOADPARM_PROMPT "PROMPT "
Collin Walling074afe62018-04-16 12:56:08 -040024#define LOADPARM_EMPTY " "
Collin L. Walling53b310c2018-02-23 10:43:18 -050025#define BOOT_MENU_FLAG_MASK (QIPL_FLAG_BM_OPTS_CMD | QIPL_FLAG_BM_OPTS_ZIPL)
Collin L. Walling9eaa6542018-02-23 10:43:13 -050026
Christian Borntraegerf2879a52014-07-01 12:17:41 +020027/*
Jason J. Hernea5f6e092019-04-04 10:34:22 -040028 * Principles of Operations (SA22-7832-09) chapter 17 requires that
Christian Borntraegerf2879a52014-07-01 12:17:41 +020029 * a subsystem-identification is at 184-187 and bytes 188-191 are zero
30 * after list-directed-IPL and ccw-IPL.
31 */
32void write_subsystem_identification(void)
33{
Eugene (jno) Dvurechenskib88d7fa2015-11-10 14:10:20 +010034 SubChannelId *schid = (SubChannelId *) 184;
Christian Borntraegerf2879a52014-07-01 12:17:41 +020035 uint32_t *zeroes = (uint32_t *) 188;
36
37 *schid = blk_schid;
38 *zeroes = 0;
39}
40
Eugene (jno) Dvurechenskic9262e82015-09-17 12:47:27 +020041void panic(const char *string)
Alexander Graf92f2ca32013-04-22 20:57:58 +020042{
43 sclp_print(string);
Christian Borntraeger7f61cbc2013-04-23 01:23:02 +000044 disabled_wait();
Alexander Graf92f2ca32013-04-22 20:57:58 +020045 while (1) { }
46}
47
Farhan Ali95fa1af2017-01-16 10:45:49 -050048unsigned int get_loadparm_index(void)
49{
Collin Walling074afe62018-04-16 12:56:08 -040050 return atoui(loadparm_str);
Farhan Ali95fa1af2017-01-16 10:45:49 -050051}
52
Eugene (jno) Dvurechenskib88d7fa2015-11-10 14:10:20 +010053static bool find_dev(Schib *schib, int dev_no)
Alexander Graf92f2ca32013-04-22 20:57:58 +020054{
Alexander Yarygin0f79b892015-06-25 18:35:58 +030055 int i, r;
Dominik Dingelff151f42013-04-30 07:15:58 +000056
Alexander Graf92f2ca32013-04-22 20:57:58 +020057 for (i = 0; i < 0x10000; i++) {
58 blk_schid.sch_no = i;
Alexander Yarygin0f79b892015-06-25 18:35:58 +030059 r = stsch_err(blk_schid, schib);
60 if ((r == 3) || (r == -EIO)) {
Cornelia Huck22d67ab2013-04-26 02:12:52 +000061 break;
62 }
Alexander Yarygin0f79b892015-06-25 18:35:58 +030063 if (!schib->pmcw.dnv) {
64 continue;
65 }
Eugene (jno) Dvurechenskia1102ce2015-10-26 16:55:16 +010066 if (!virtio_is_supported(blk_schid)) {
Alexander Yarygin0f79b892015-06-25 18:35:58 +030067 continue;
68 }
Farhan Ali99b72e02016-11-01 17:34:00 -040069 /* Skip net devices since no IPLB is created and therefore no
70 * no network bootloader has been loaded
71 */
72 if (virtio_get_device_type() == VIRTIO_ID_NET && dev_no < 0) {
73 continue;
74 }
Alexander Yarygin0f79b892015-06-25 18:35:58 +030075 if ((dev_no < 0) || (schib->pmcw.dev == dev_no)) {
76 return true;
77 }
78 }
79
80 return false;
81}
82
Collin L. Walling9eaa6542018-02-23 10:43:13 -050083static void menu_setup(void)
84{
Collin Wallinga0e11b62018-05-29 00:40:09 -040085 if (memcmp(loadparm_str, LOADPARM_PROMPT, LOADPARM_LEN) == 0) {
Collin L. Walling9eaa6542018-02-23 10:43:13 -050086 menu_set_parms(QIPL_FLAG_BM_OPTS_CMD, 0);
87 return;
88 }
89
90 /* If loadparm was set to any other value, then do not enable menu */
Collin Wallinga0e11b62018-05-29 00:40:09 -040091 if (memcmp(loadparm_str, LOADPARM_EMPTY, LOADPARM_LEN) != 0) {
Collin L. Walling9eaa6542018-02-23 10:43:13 -050092 return;
93 }
94
95 switch (iplb.pbt) {
96 case S390_IPL_TYPE_CCW:
Collin L. Wallingffb4a1c2018-02-23 10:43:19 -050097 case S390_IPL_TYPE_QEMU_SCSI:
Collin L. Walling53b310c2018-02-23 10:43:18 -050098 menu_set_parms(qipl.qipl_flags & BOOT_MENU_FLAG_MASK,
Collin L. Walling9eaa6542018-02-23 10:43:13 -050099 qipl.boot_menu_timeout);
100 return;
101 }
102}
103
Jason J. Herne87f910c2019-04-04 10:34:21 -0400104/*
105 * Initialize the channel I/O subsystem so we can talk to our ipl/boot device.
106 */
107static void css_setup(void)
108{
109 /*
110 * Unconditionally enable mss support. In every sane configuration this
111 * will succeed; and even if it doesn't, stsch_err() can handle it.
112 */
113 enable_mss_facility();
114}
115
Jason J. Hernea5f6e092019-04-04 10:34:22 -0400116/*
117 * Collect various pieces of information from the hypervisor/hardware that
118 * we'll use to determine exactly how we'll boot.
119 */
120static void boot_setup(void)
121{
122 char lpmsg[] = "LOADPARM=[________]\n";
123
124 sclp_get_loadparm_ascii(loadparm_str);
125 memcpy(lpmsg + 10, loadparm_str, 8);
126 sclp_print(lpmsg);
127
128 have_iplb = store_iplb(&iplb);
129}
130
Alexander Yarygind046c512015-07-31 17:04:51 +0300131static void virtio_setup(void)
Alexander Yarygin0f79b892015-06-25 18:35:58 +0300132{
Eugene (jno) Dvurechenskib88d7fa2015-11-10 14:10:20 +0100133 Schib schib;
Alexander Yarygin0f79b892015-06-25 18:35:58 +0300134 int ssid;
135 bool found = false;
136 uint16_t dev_no;
Farhan Ali99b72e02016-11-01 17:34:00 -0400137 VDev *vdev = virtio_get_device();
Collin L. Walling118ee802018-02-23 10:43:11 -0500138 QemuIplParameters *early_qipl = (QemuIplParameters *)QIPL_ADDRESS;
Alexander Yarygin0f79b892015-06-25 18:35:58 +0300139
Collin L. Walling118ee802018-02-23 10:43:11 -0500140 memcpy(&qipl, early_qipl, sizeof(QemuIplParameters));
141
Jason J. Hernea5f6e092019-04-04 10:34:22 -0400142 if (have_iplb) {
Alexander Yarygind046c512015-07-31 17:04:51 +0300143 switch (iplb.pbt) {
144 case S390_IPL_TYPE_CCW:
145 dev_no = iplb.ccw.devno;
146 debug_print_int("device no. ", dev_no);
147 blk_schid.ssid = iplb.ccw.ssid & 0x3;
148 debug_print_int("ssid ", blk_schid.ssid);
149 found = find_dev(&schib, dev_no);
150 break;
Eugene (jno) Dvurechenskib39b7712016-06-01 15:25:51 +0200151 case S390_IPL_TYPE_QEMU_SCSI:
Eugene (jno) Dvurechenskib39b7712016-06-01 15:25:51 +0200152 vdev->scsi_device_selected = true;
153 vdev->selected_scsi_device.channel = iplb.scsi.channel;
154 vdev->selected_scsi_device.target = iplb.scsi.target;
155 vdev->selected_scsi_device.lun = iplb.scsi.lun;
156 blk_schid.ssid = iplb.scsi.ssid & 0x3;
157 found = find_dev(&schib, iplb.scsi.devno);
158 break;
Alexander Yarygind046c512015-07-31 17:04:51 +0300159 default:
160 panic("List-directed IPL not supported yet!\n");
161 }
Collin L. Walling9eaa6542018-02-23 10:43:13 -0500162 menu_setup();
Alexander Yarygin0f79b892015-06-25 18:35:58 +0300163 } else {
164 for (ssid = 0; ssid < 0x3; ssid++) {
165 blk_schid.ssid = ssid;
166 found = find_dev(&schib, -1);
167 if (found) {
168 break;
Alexander Graf92f2ca32013-04-22 20:57:58 +0200169 }
170 }
171 }
172
Eugene (jno) Dvurechenski80ba3e22015-11-10 15:37:22 +0100173 IPL_assert(found, "No virtio device found");
Alexander Graf92f2ca32013-04-22 20:57:58 +0200174
Farhan Ali99b72e02016-11-01 17:34:00 -0400175 if (virtio_get_device_type() == VIRTIO_ID_NET) {
176 sclp_print("Network boot device detected\n");
Collin L. Walling118ee802018-02-23 10:43:11 -0500177 vdev->netboot_start_addr = qipl.netboot_start_addr;
Farhan Ali99b72e02016-11-01 17:34:00 -0400178 } else {
Thomas Huth867e0392017-07-12 14:49:45 +0200179 virtio_blk_setup_device(blk_schid);
Eugene (jno) Dvurechenski60612d52014-05-19 20:11:07 +0200180
Farhan Ali99b72e02016-11-01 17:34:00 -0400181 IPL_assert(virtio_ipl_disk_is_valid(), "No valid IPL device detected");
182 }
Alexander Graf92f2ca32013-04-22 20:57:58 +0200183}
184
185int main(void)
186{
187 sclp_setup();
Jason J. Herne87f910c2019-04-04 10:34:21 -0400188 css_setup();
Jason J. Hernea5f6e092019-04-04 10:34:22 -0400189 boot_setup();
Alexander Yarygind046c512015-07-31 17:04:51 +0300190 virtio_setup();
Dominik Dingelff151f42013-04-30 07:15:58 +0000191
Eugene (jno) Dvurechenski60612d52014-05-19 20:11:07 +0200192 zipl_load(); /* no return */
193
Eugene (jno) Dvurechenskic9262e82015-09-17 12:47:27 +0200194 panic("Failed to load OS from hard disk\n");
Eugene (jno) Dvurechenski60612d52014-05-19 20:11:07 +0200195 return 0; /* make compiler happy */
Alexander Graf92f2ca32013-04-22 20:57:58 +0200196}