Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 1 | /* |
| 2 | * SCLP early driver |
| 3 | * |
| 4 | * Copyright IBM Corp. 2013 |
| 5 | */ |
| 6 | |
| 7 | #define KMSG_COMPONENT "sclp_early" |
| 8 | #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt |
| 9 | |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 10 | #include <asm/ctl_reg.h> |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 11 | #include <asm/sclp.h> |
| 12 | #include <asm/ipl.h> |
| 13 | #include "sclp_sdias.h" |
| 14 | #include "sclp.h" |
| 15 | |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 16 | #define SCLP_CMDW_READ_SCP_INFO 0x00020001 |
| 17 | #define SCLP_CMDW_READ_SCP_INFO_FORCED 0x00120001 |
| 18 | |
| 19 | struct read_info_sccb { |
| 20 | struct sccb_header header; /* 0-7 */ |
| 21 | u16 rnmax; /* 8-9 */ |
| 22 | u8 rnsize; /* 10 */ |
| 23 | u8 _reserved0[24 - 11]; /* 11-15 */ |
| 24 | u8 loadparm[8]; /* 24-31 */ |
| 25 | u8 _reserved1[48 - 32]; /* 32-47 */ |
| 26 | u64 facilities; /* 48-55 */ |
| 27 | u8 _reserved2[84 - 56]; /* 56-83 */ |
| 28 | u8 fac84; /* 84 */ |
| 29 | u8 fac85; /* 85 */ |
| 30 | u8 _reserved3[91 - 86]; /* 86-90 */ |
| 31 | u8 flags; /* 91 */ |
| 32 | u8 _reserved4[100 - 92]; /* 92-99 */ |
| 33 | u32 rnsize2; /* 100-103 */ |
| 34 | u64 rnmax2; /* 104-111 */ |
| 35 | u8 _reserved5[4096 - 112]; /* 112-4095 */ |
| 36 | } __packed __aligned(PAGE_SIZE); |
| 37 | |
Hendrik Brueckner | 56e57a8 | 2013-12-05 19:03:50 +0100 | [diff] [blame] | 38 | static char sccb_early[PAGE_SIZE] __aligned(PAGE_SIZE) __initdata; |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 39 | static unsigned long sclp_hsa_size; |
Hendrik Brueckner | 333cce9 | 2013-12-05 18:46:51 +0100 | [diff] [blame] | 40 | static struct sclp_ipl_info sclp_ipl_info; |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 41 | |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 42 | u64 sclp_facilities; |
| 43 | u8 sclp_fac84; |
| 44 | unsigned long long sclp_rzm; |
| 45 | unsigned long long sclp_rnmax; |
| 46 | |
| 47 | static int __init sclp_cmd_sync_early(sclp_cmdw_t cmd, void *sccb) |
| 48 | { |
| 49 | int rc; |
| 50 | |
| 51 | __ctl_set_bit(0, 9); |
| 52 | rc = sclp_service_call(cmd, sccb); |
| 53 | if (rc) |
| 54 | goto out; |
| 55 | __load_psw_mask(PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_MASK_EA | |
| 56 | PSW_MASK_BA | PSW_MASK_EXT | PSW_MASK_WAIT); |
| 57 | local_irq_disable(); |
| 58 | out: |
| 59 | /* Contents of the sccb might have changed. */ |
| 60 | barrier(); |
| 61 | __ctl_clear_bit(0, 9); |
| 62 | return rc; |
| 63 | } |
| 64 | |
Hendrik Brueckner | 56e57a8 | 2013-12-05 19:03:50 +0100 | [diff] [blame] | 65 | static int __init sclp_read_info_early(struct read_info_sccb *sccb) |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 66 | { |
Hendrik Brueckner | 333cce9 | 2013-12-05 18:46:51 +0100 | [diff] [blame] | 67 | int rc, i; |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 68 | sclp_cmdw_t commands[] = {SCLP_CMDW_READ_SCP_INFO_FORCED, |
| 69 | SCLP_CMDW_READ_SCP_INFO}; |
| 70 | |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 71 | for (i = 0; i < ARRAY_SIZE(commands); i++) { |
| 72 | do { |
| 73 | memset(sccb, 0, sizeof(*sccb)); |
| 74 | sccb->header.length = sizeof(*sccb); |
| 75 | sccb->header.function_code = 0x80; |
| 76 | sccb->header.control_mask[2] = 0x80; |
| 77 | rc = sclp_cmd_sync_early(commands[i], sccb); |
| 78 | } while (rc == -EBUSY); |
| 79 | |
| 80 | if (rc) |
| 81 | break; |
Hendrik Brueckner | 333cce9 | 2013-12-05 18:46:51 +0100 | [diff] [blame] | 82 | if (sccb->header.response_code == 0x10) |
| 83 | return 0; |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 84 | if (sccb->header.response_code != 0x1f0) |
| 85 | break; |
| 86 | } |
Hendrik Brueckner | 333cce9 | 2013-12-05 18:46:51 +0100 | [diff] [blame] | 87 | return -EIO; |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 88 | } |
| 89 | |
Hendrik Brueckner | 5d5de1a | 2013-12-05 19:13:36 +0100 | [diff] [blame^] | 90 | static void __init sclp_facilities_detect(struct read_info_sccb *sccb) |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 91 | { |
Hendrik Brueckner | 56e57a8 | 2013-12-05 19:03:50 +0100 | [diff] [blame] | 92 | if (sclp_read_info_early(sccb)) |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 93 | return; |
| 94 | |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 95 | sclp_facilities = sccb->facilities; |
| 96 | sclp_fac84 = sccb->fac84; |
| 97 | if (sccb->fac85 & 0x02) |
| 98 | S390_lowcore.machine_flags |= MACHINE_FLAG_ESOP; |
| 99 | sclp_rnmax = sccb->rnmax ? sccb->rnmax : sccb->rnmax2; |
| 100 | sclp_rzm = sccb->rnsize ? sccb->rnsize : sccb->rnsize2; |
| 101 | sclp_rzm <<= 20; |
Hendrik Brueckner | 333cce9 | 2013-12-05 18:46:51 +0100 | [diff] [blame] | 102 | |
| 103 | /* Save IPL information */ |
| 104 | sclp_ipl_info.is_valid = 1; |
| 105 | if (sccb->flags & 0x2) |
| 106 | sclp_ipl_info.has_dump = 1; |
| 107 | memcpy(&sclp_ipl_info.loadparm, &sccb->loadparm, LOADPARM_LEN); |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | bool __init sclp_has_linemode(void) |
| 111 | { |
Hendrik Brueckner | 9e3ea19 | 2013-11-29 17:29:20 +0100 | [diff] [blame] | 112 | struct init_sccb *sccb = (void *) &sccb_early; |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 113 | |
| 114 | if (sccb->header.response_code != 0x20) |
| 115 | return 0; |
| 116 | if (!(sccb->sclp_send_mask & (EVTYP_OPCMD_MASK | EVTYP_PMSGCMD_MASK))) |
| 117 | return 0; |
| 118 | if (!(sccb->sclp_receive_mask & (EVTYP_MSG_MASK | EVTYP_PMSGCMD_MASK))) |
| 119 | return 0; |
| 120 | return 1; |
| 121 | } |
| 122 | |
| 123 | bool __init sclp_has_vt220(void) |
| 124 | { |
Hendrik Brueckner | 9e3ea19 | 2013-11-29 17:29:20 +0100 | [diff] [blame] | 125 | struct init_sccb *sccb = (void *) &sccb_early; |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 126 | |
| 127 | if (sccb->header.response_code != 0x20) |
| 128 | return 0; |
| 129 | if (sccb->sclp_send_mask & EVTYP_VT220MSG_MASK) |
| 130 | return 1; |
| 131 | return 0; |
| 132 | } |
| 133 | |
| 134 | unsigned long long sclp_get_rnmax(void) |
| 135 | { |
| 136 | return sclp_rnmax; |
| 137 | } |
| 138 | |
| 139 | unsigned long long sclp_get_rzm(void) |
| 140 | { |
| 141 | return sclp_rzm; |
| 142 | } |
| 143 | |
| 144 | /* |
| 145 | * This function will be called after sclp_facilities_detect(), which gets |
Hendrik Brueckner | 333cce9 | 2013-12-05 18:46:51 +0100 | [diff] [blame] | 146 | * called from early.c code. The sclp_facilities_detect() function retrieves |
| 147 | * and saves the IPL information. |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 148 | */ |
| 149 | void __init sclp_get_ipl_info(struct sclp_ipl_info *info) |
| 150 | { |
Hendrik Brueckner | 333cce9 | 2013-12-05 18:46:51 +0100 | [diff] [blame] | 151 | *info = sclp_ipl_info; |
Michael Holzheu | acf6a00 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 152 | } |
| 153 | |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 154 | static int __init sclp_cmd_early(sclp_cmdw_t cmd, void *sccb) |
| 155 | { |
| 156 | int rc; |
| 157 | |
| 158 | do { |
| 159 | rc = sclp_cmd_sync_early(cmd, sccb); |
| 160 | } while (rc == -EBUSY); |
| 161 | |
| 162 | if (rc) |
| 163 | return -EIO; |
| 164 | if (((struct sccb_header *) sccb)->response_code != 0x0020) |
| 165 | return -EIO; |
| 166 | return 0; |
| 167 | } |
| 168 | |
| 169 | static void __init sccb_init_eq_size(struct sdias_sccb *sccb) |
| 170 | { |
| 171 | memset(sccb, 0, sizeof(*sccb)); |
| 172 | |
| 173 | sccb->hdr.length = sizeof(*sccb); |
| 174 | sccb->evbuf.hdr.length = sizeof(struct sdias_evbuf); |
| 175 | sccb->evbuf.hdr.type = EVTYP_SDIAS; |
| 176 | sccb->evbuf.event_qual = SDIAS_EQ_SIZE; |
| 177 | sccb->evbuf.data_id = SDIAS_DI_FCP_DUMP; |
| 178 | sccb->evbuf.event_id = 4712; |
| 179 | sccb->evbuf.dbs = 1; |
| 180 | } |
| 181 | |
Hendrik Brueckner | 5d5de1a | 2013-12-05 19:13:36 +0100 | [diff] [blame^] | 182 | static int __init sclp_set_event_mask(struct init_sccb *sccb, |
| 183 | unsigned long receive_mask, |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 184 | unsigned long send_mask) |
| 185 | { |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 186 | memset(sccb, 0, sizeof(*sccb)); |
| 187 | sccb->header.length = sizeof(*sccb); |
| 188 | sccb->mask_length = sizeof(sccb_mask_t); |
| 189 | sccb->receive_mask = receive_mask; |
| 190 | sccb->send_mask = send_mask; |
| 191 | return sclp_cmd_early(SCLP_CMDW_WRITE_EVENT_MASK, sccb); |
| 192 | } |
| 193 | |
Hendrik Brueckner | 5d5de1a | 2013-12-05 19:13:36 +0100 | [diff] [blame^] | 194 | static long __init sclp_hsa_size_init(struct sdias_sccb *sccb) |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 195 | { |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 196 | sccb_init_eq_size(sccb); |
| 197 | if (sclp_cmd_early(SCLP_CMDW_WRITE_EVENT_DATA, sccb)) |
| 198 | return -EIO; |
| 199 | if (sccb->evbuf.blk_cnt != 0) |
| 200 | return (sccb->evbuf.blk_cnt - 1) * PAGE_SIZE; |
| 201 | return 0; |
| 202 | } |
| 203 | |
Hendrik Brueckner | 5d5de1a | 2013-12-05 19:13:36 +0100 | [diff] [blame^] | 204 | static long __init sclp_hsa_copy_wait(struct sccb_header *sccb) |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 205 | { |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 206 | memset(sccb, 0, PAGE_SIZE); |
| 207 | sccb->length = PAGE_SIZE; |
| 208 | if (sclp_cmd_early(SCLP_CMDW_READ_EVENT_DATA, sccb)) |
| 209 | return -EIO; |
| 210 | return (((struct sdias_sccb *) sccb)->evbuf.blk_cnt - 1) * PAGE_SIZE; |
| 211 | } |
| 212 | |
| 213 | unsigned long sclp_get_hsa_size(void) |
| 214 | { |
| 215 | return sclp_hsa_size; |
| 216 | } |
| 217 | |
Hendrik Brueckner | 5d5de1a | 2013-12-05 19:13:36 +0100 | [diff] [blame^] | 218 | static void __init sclp_hsa_size_detect(void *sccb) |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 219 | { |
| 220 | long size; |
| 221 | |
| 222 | /* First try synchronous interface (LPAR) */ |
Hendrik Brueckner | 5d5de1a | 2013-12-05 19:13:36 +0100 | [diff] [blame^] | 223 | if (sclp_set_event_mask(sccb, 0, 0x40000010)) |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 224 | return; |
Hendrik Brueckner | 5d5de1a | 2013-12-05 19:13:36 +0100 | [diff] [blame^] | 225 | size = sclp_hsa_size_init(sccb); |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 226 | if (size < 0) |
| 227 | return; |
| 228 | if (size != 0) |
| 229 | goto out; |
| 230 | /* Then try asynchronous interface (z/VM) */ |
Hendrik Brueckner | 5d5de1a | 2013-12-05 19:13:36 +0100 | [diff] [blame^] | 231 | if (sclp_set_event_mask(sccb, 0x00000010, 0x40000010)) |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 232 | return; |
Hendrik Brueckner | 5d5de1a | 2013-12-05 19:13:36 +0100 | [diff] [blame^] | 233 | size = sclp_hsa_size_init(sccb); |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 234 | if (size < 0) |
| 235 | return; |
Hendrik Brueckner | 5d5de1a | 2013-12-05 19:13:36 +0100 | [diff] [blame^] | 236 | size = sclp_hsa_copy_wait(sccb); |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 237 | if (size < 0) |
| 238 | return; |
| 239 | out: |
Michael Holzheu | e657d8f | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 240 | sclp_hsa_size = size; |
| 241 | } |
Michael Holzheu | 7b50da5 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 242 | |
| 243 | void __init sclp_early_detect(void) |
| 244 | { |
Hendrik Brueckner | 5d5de1a | 2013-12-05 19:13:36 +0100 | [diff] [blame^] | 245 | void *sccb = &sccb_early; |
| 246 | |
| 247 | sclp_facilities_detect(sccb); |
| 248 | sclp_hsa_size_detect(sccb); |
| 249 | sclp_set_event_mask(sccb, 0, 0); |
Michael Holzheu | 7b50da5 | 2013-11-13 10:38:27 +0100 | [diff] [blame] | 250 | } |