blob: 7b0b295b2313b8f3056378ed64c4249381a0213b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * S/390 common I/O routines -- channel subsystem call
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Jan Glaubercbc0dd12012-11-29 14:34:48 +01004 * Copyright IBM Corp. 1999,2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Ingo Adlung (adlung@de.ibm.com)
Cornelia Huck4ce3b302006-01-14 13:21:04 -08006 * Cornelia Huck (cornelia.huck@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Arnd Bergmann (arndb@de.ibm.com)
8 */
9
Michael Ernste6d5a422008-12-25 13:39:36 +010010#define KMSG_COMPONENT "cio"
11#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/slab.h>
15#include <linux/init.h>
16#include <linux/device.h>
Sebastian Ott9f3d6d72016-01-25 10:32:51 +010017#include <linux/mutex.h>
Jan Glaubercbc0dd12012-11-29 14:34:48 +010018#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#include <asm/cio.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +020021#include <asm/chpid.h>
Cornelia Huck9d92a7e2008-07-14 09:59:05 +020022#include <asm/chsc.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010023#include <asm/crw.h>
Sebastian Ottca4ba152013-06-05 18:59:22 +020024#include <asm/isc.h>
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +020025#include <asm/ebcdic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include "css.h"
28#include "cio.h"
29#include "cio_debug.h"
30#include "ioasm.h"
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020031#include "chp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "chsc.h"
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static void *sei_page;
Sebastian Ott34196f82010-10-25 16:10:29 +020035static void *chsc_page;
36static DEFINE_SPINLOCK(chsc_page_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Cornelia Huckdae39842008-07-17 17:16:47 +020038/**
39 * chsc_error_from_response() - convert a chsc response to an error
40 * @response: chsc response code
41 *
42 * Returns an appropriate Linux error code for @response.
43 */
44int chsc_error_from_response(int response)
Cornelia Huckb9c9a212008-02-05 16:50:34 +010045{
46 switch (response) {
47 case 0x0001:
48 return 0;
49 case 0x0002:
50 case 0x0003:
51 case 0x0006:
52 case 0x0007:
53 case 0x0008:
54 case 0x000a:
Michael Ernstfd0457a2010-08-09 18:12:50 +020055 case 0x0104:
Cornelia Huckb9c9a212008-02-05 16:50:34 +010056 return -EINVAL;
57 case 0x0004:
58 return -EOPNOTSUPP;
Sebastian Ott184b08a2012-08-28 16:45:42 +020059 case 0x000b:
Eugene Crosser1c59a862013-04-24 12:00:23 +020060 case 0x0107: /* "Channel busy" for the op 0x003d */
Sebastian Ott184b08a2012-08-28 16:45:42 +020061 return -EBUSY;
62 case 0x0100:
63 case 0x0102:
64 return -ENOMEM;
Cornelia Huckb9c9a212008-02-05 16:50:34 +010065 default:
66 return -EIO;
67 }
68}
Cornelia Huckdae39842008-07-17 17:16:47 +020069EXPORT_SYMBOL_GPL(chsc_error_from_response);
Cornelia Huckb9c9a212008-02-05 16:50:34 +010070
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020071struct chsc_ssd_area {
72 struct chsc_header request;
73 u16 :10;
74 u16 ssid:2;
75 u16 :4;
76 u16 f_sch; /* first subchannel */
77 u16 :16;
78 u16 l_sch; /* last subchannel */
79 u32 :32;
80 struct chsc_header response;
81 u32 :32;
82 u8 sch_valid : 1;
83 u8 dev_valid : 1;
84 u8 st : 3; /* subchannel type */
85 u8 zeroes : 3;
86 u8 unit_addr; /* unit address */
87 u16 devno; /* device number */
88 u8 path_mask;
89 u8 fla_valid_mask;
90 u16 sch; /* subchannel */
91 u8 chpid[8]; /* chpids 0-7 */
92 u16 fla[8]; /* full link addresses 0-7 */
93} __attribute__ ((packed));
94
95int chsc_get_ssd_info(struct subchannel_id schid, struct chsc_ssd_info *ssd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020097 struct chsc_ssd_area *ssd_area;
Sebastian Ottd53c51f2016-09-28 13:36:19 +020098 unsigned long flags;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020099 int ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 int ret;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200101 int i;
102 int mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Sebastian Ottd53c51f2016-09-28 13:36:19 +0200104 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ott34196f82010-10-25 16:10:29 +0200105 memset(chsc_page, 0, PAGE_SIZE);
106 ssd_area = chsc_page;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200107 ssd_area->request.length = 0x0010;
108 ssd_area->request.code = 0x0004;
109 ssd_area->ssid = schid.ssid;
110 ssd_area->f_sch = schid.sch_no;
111 ssd_area->l_sch = schid.sch_no;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200112
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200113 ccode = chsc(ssd_area);
114 /* Check response. */
115 if (ccode > 0) {
116 ret = (ccode == 3) ? -ENODEV : -EBUSY;
Sebastian Ott34196f82010-10-25 16:10:29 +0200117 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100119 ret = chsc_error_from_response(ssd_area->response.code);
120 if (ret != 0) {
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200121 CIO_MSG_EVENT(2, "chsc: ssd failed for 0.%x.%04x (rc=%04x)\n",
122 schid.ssid, schid.sch_no,
123 ssd_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200124 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200125 }
126 if (!ssd_area->sch_valid) {
127 ret = -ENODEV;
Sebastian Ott34196f82010-10-25 16:10:29 +0200128 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200129 }
130 /* Copy data */
131 ret = 0;
132 memset(ssd, 0, sizeof(struct chsc_ssd_info));
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100133 if ((ssd_area->st != SUBCHANNEL_TYPE_IO) &&
134 (ssd_area->st != SUBCHANNEL_TYPE_MSG))
Sebastian Ott34196f82010-10-25 16:10:29 +0200135 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200136 ssd->path_mask = ssd_area->path_mask;
137 ssd->fla_valid_mask = ssd_area->fla_valid_mask;
138 for (i = 0; i < 8; i++) {
139 mask = 0x80 >> i;
140 if (ssd_area->path_mask & mask) {
141 chp_id_init(&ssd->chpid[i]);
142 ssd->chpid[i].id = ssd_area->chpid[i];
143 }
144 if (ssd_area->fla_valid_mask & mask)
145 ssd->fla[i] = ssd_area->fla[i];
146 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200147out:
Sebastian Ottd53c51f2016-09-28 13:36:19 +0200148 spin_unlock_irqrestore(&chsc_page_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return ret;
150}
151
Sebastian Ottda5b6cb2013-06-05 18:58:35 +0200152/**
153 * chsc_ssqd() - store subchannel QDIO data (SSQD)
154 * @schid: id of the subchannel on which SSQD is performed
155 * @ssqd: request and response block for SSQD
156 *
157 * Returns 0 on success.
158 */
159int chsc_ssqd(struct subchannel_id schid, struct chsc_ssqd_area *ssqd)
160{
161 memset(ssqd, 0, sizeof(*ssqd));
162 ssqd->request.length = 0x0010;
163 ssqd->request.code = 0x0024;
164 ssqd->first_sch = schid.sch_no;
165 ssqd->last_sch = schid.sch_no;
166 ssqd->ssid = schid.ssid;
167
168 if (chsc(ssqd))
169 return -EIO;
170
171 return chsc_error_from_response(ssqd->response.code);
172}
173EXPORT_SYMBOL_GPL(chsc_ssqd);
174
Sebastian Ottca4ba152013-06-05 18:59:22 +0200175/**
176 * chsc_sadc() - set adapter device controls (SADC)
177 * @schid: id of the subchannel on which SADC is performed
178 * @scssc: request and response block for SADC
179 * @summary_indicator_addr: summary indicator address
180 * @subchannel_indicator_addr: subchannel indicator address
181 *
182 * Returns 0 on success.
183 */
184int chsc_sadc(struct subchannel_id schid, struct chsc_scssc_area *scssc,
185 u64 summary_indicator_addr, u64 subchannel_indicator_addr)
186{
187 memset(scssc, 0, sizeof(*scssc));
188 scssc->request.length = 0x0fe0;
189 scssc->request.code = 0x0021;
190 scssc->operation_code = 0;
191
192 scssc->summary_indicator_addr = summary_indicator_addr;
193 scssc->subchannel_indicator_addr = subchannel_indicator_addr;
194
195 scssc->ks = PAGE_DEFAULT_KEY >> 4;
196 scssc->kc = PAGE_DEFAULT_KEY >> 4;
197 scssc->isc = QDIO_AIRQ_ISC;
198 scssc->schid = schid;
199
200 /* enable the time delay disablement facility */
201 if (css_general_characteristics.aif_tdd)
202 scssc->word_with_d_bit = 0x10000000;
203
204 if (chsc(scssc))
205 return -EIO;
206
207 return chsc_error_from_response(scssc->response.code);
208}
209EXPORT_SYMBOL_GPL(chsc_sadc);
210
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100211static int s390_subchannel_remove_chpid(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Cornelia Huck2ec22982006-12-08 15:54:26 +0100213 spin_lock_irq(sch->lock);
Cornelia Huckc820de32008-07-14 09:58:45 +0200214 if (sch->driver && sch->driver->chp_event)
215 if (sch->driver->chp_event(sch, data, CHP_OFFLINE) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 goto out_unreg;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100217 spin_unlock_irq(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return 0;
Stefan Bader387b7342007-04-27 16:01:33 +0200219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220out_unreg:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 sch->lpm = 0;
Stefan Bader387b7342007-04-27 16:01:33 +0200222 spin_unlock_irq(sch->lock);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200223 css_schedule_eval(sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return 0;
225}
226
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200227void chsc_chp_offline(struct chp_id chpid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Sebastian Ott9f3d6d72016-01-25 10:32:51 +0100229 struct channel_path *chp = chpid_to_chp(chpid);
Cornelia Huck99611f82008-07-14 09:59:02 +0200230 struct chp_link link;
Sebastian Ott9f3d6d72016-01-25 10:32:51 +0100231 char dbf_txt[15];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200233 sprintf(dbf_txt, "chpr%x.%02x", chpid.cssid, chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 CIO_TRACE_EVENT(2, dbf_txt);
235
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200236 if (chp_get_status(chpid) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return;
Cornelia Huck99611f82008-07-14 09:59:02 +0200238 memset(&link, 0, sizeof(struct chp_link));
239 link.chpid = chpid;
Cornelia Huck22806dc2008-04-17 07:45:59 +0200240 /* Wait until previous actions have settled. */
241 css_wait_for_slow_path();
Sebastian Ott9f3d6d72016-01-25 10:32:51 +0100242
243 mutex_lock(&chp->lock);
244 chp_update_desc(chp);
245 mutex_unlock(&chp->lock);
246
Cornelia Huck99611f82008-07-14 09:59:02 +0200247 for_each_subchannel_staged(s390_subchannel_remove_chpid, NULL, &link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100250static int __s390_process_res_acc(struct subchannel *sch, void *data)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800251{
Cornelia Huck2ec22982006-12-08 15:54:26 +0100252 spin_lock_irq(sch->lock);
Cornelia Huckc820de32008-07-14 09:58:45 +0200253 if (sch->driver && sch->driver->chp_event)
254 sch->driver->chp_event(sch, data, CHP_ONLINE);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100255 spin_unlock_irq(sch->lock);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100256
Peter Oberparleiterdd9963f2006-09-20 15:59:54 +0200257 return 0;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800258}
259
Cornelia Huck99611f82008-07-14 09:59:02 +0200260static void s390_process_res_acc(struct chp_link *link)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800261{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 char dbf_txt[15];
263
Cornelia Huck99611f82008-07-14 09:59:02 +0200264 sprintf(dbf_txt, "accpr%x.%02x", link->chpid.cssid,
265 link->chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 CIO_TRACE_EVENT( 2, dbf_txt);
Cornelia Huck99611f82008-07-14 09:59:02 +0200267 if (link->fla != 0) {
268 sprintf(dbf_txt, "fla%x", link->fla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 CIO_TRACE_EVENT( 2, dbf_txt);
270 }
Cornelia Huck22806dc2008-04-17 07:45:59 +0200271 /* Wait until previous actions have settled. */
272 css_wait_for_slow_path();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 /*
274 * I/O resources may have become accessible.
275 * Scan through all subchannels that may be concerned and
276 * do a validation on those.
277 * The more information we have (info), the less scanning
278 * will we have to do.
279 */
Peter Oberparleiter449666d2013-11-26 14:55:56 +0100280 for_each_subchannel_staged(__s390_process_res_acc, NULL, link);
281 css_schedule_reprobe();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100284struct chsc_sei_nt0_area {
285 u8 flags;
286 u8 vf; /* validity flags */
287 u8 rs; /* reporting source */
288 u8 cc; /* content code */
289 u16 fla; /* full link address */
290 u16 rsid; /* reporting source id */
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100291 u32 reserved1;
292 u32 reserved2;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100293 /* ccdf has to be big enough for a link-incident record */
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100294 u8 ccdf[PAGE_SIZE - 24 - 16]; /* content-code dependent field */
295} __packed;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100296
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100297struct chsc_sei_nt2_area {
298 u8 flags; /* p and v bit */
299 u8 reserved1;
300 u8 reserved2;
301 u8 cc; /* content code */
302 u32 reserved3[13];
303 u8 ccdf[PAGE_SIZE - 24 - 56]; /* content-code dependent field */
304} __packed;
305
Sebastian Ott509d97b2013-01-15 19:02:01 +0100306#define CHSC_SEI_NT0 (1ULL << 63)
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100307#define CHSC_SEI_NT2 (1ULL << 61)
308
309struct chsc_sei {
310 struct chsc_header request;
311 u32 reserved1;
312 u64 ntsm; /* notification type mask */
313 struct chsc_header response;
Sebastian Ott509d97b2013-01-15 19:02:01 +0100314 u32 :24;
315 u8 nt;
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100316 union {
317 struct chsc_sei_nt0_area nt0_area;
318 struct chsc_sei_nt2_area nt2_area;
319 u8 nt_area[PAGE_SIZE - 24];
320 } u;
321} __packed;
322
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +0200323/*
324 * Node Descriptor as defined in SA22-7204, "Common I/O-Device Commands"
325 */
326
327#define ND_VALIDITY_VALID 0
328#define ND_VALIDITY_OUTDATED 1
329#define ND_VALIDITY_INVALID 2
330
331struct node_descriptor {
332 /* Flags. */
333 union {
334 struct {
335 u32 validity:3;
336 u32 reserved:5;
337 } __packed;
338 u8 byte0;
339 } __packed;
340
341 /* Node parameters. */
342 u32 params:24;
343
344 /* Node ID. */
345 char type[6];
346 char model[3];
347 char manufacturer[3];
348 char plant[2];
349 char seq[12];
350 u16 tag;
351} __packed;
352
353/*
354 * Link Incident Record as defined in SA22-7202, "ESCON I/O Interface"
355 */
356
357#define LIR_IQ_CLASS_INFO 0
358#define LIR_IQ_CLASS_DEGRADED 1
359#define LIR_IQ_CLASS_NOT_OPERATIONAL 2
360
361struct lir {
362 struct {
363 u32 null:1;
364 u32 reserved:3;
365 u32 class:2;
366 u32 reserved2:2;
367 } __packed iq;
368 u32 ic:8;
369 u32 reserved:16;
370 struct node_descriptor incident_node;
371 struct node_descriptor attached_node;
372 u8 reserved2[32];
373} __packed;
374
375#define PARAMS_LEN 10 /* PARAMS=xx,xxxxxx */
376#define NODEID_LEN 35 /* NODEID=tttttt/mdl,mmm.ppssssssssssss,xxxx */
377
378/* Copy EBCIDC text, convert to ASCII and optionally add delimiter. */
379static char *store_ebcdic(char *dest, const char *src, unsigned long len,
380 char delim)
381{
382 memcpy(dest, src, len);
383 EBCASC(dest, len);
384
385 if (delim)
386 dest[len++] = delim;
387
388 return dest + len;
389}
390
391/* Format node ID and parameters for output in LIR log message. */
392static void format_node_data(char *params, char *id, struct node_descriptor *nd)
393{
394 memset(params, 0, PARAMS_LEN);
395 memset(id, 0, NODEID_LEN);
396
397 if (nd->validity != ND_VALIDITY_VALID) {
398 strncpy(params, "n/a", PARAMS_LEN - 1);
399 strncpy(id, "n/a", NODEID_LEN - 1);
400 return;
401 }
402
403 /* PARAMS=xx,xxxxxx */
404 snprintf(params, PARAMS_LEN, "%02x,%06x", nd->byte0, nd->params);
405 /* NODEID=tttttt/mdl,mmm.ppssssssssssss,xxxx */
406 id = store_ebcdic(id, nd->type, sizeof(nd->type), '/');
407 id = store_ebcdic(id, nd->model, sizeof(nd->model), ',');
408 id = store_ebcdic(id, nd->manufacturer, sizeof(nd->manufacturer), '.');
409 id = store_ebcdic(id, nd->plant, sizeof(nd->plant), 0);
410 id = store_ebcdic(id, nd->seq, sizeof(nd->seq), ',');
411 sprintf(id, "%04X", nd->tag);
412}
413
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100414static void chsc_process_sei_link_incident(struct chsc_sei_nt0_area *sei_area)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +0200416 struct lir *lir = (struct lir *) &sei_area->ccdf;
417 char iuparams[PARAMS_LEN], iunodeid[NODEID_LEN], auparams[PARAMS_LEN],
418 aunodeid[NODEID_LEN];
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100419
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +0200420 CIO_CRW_EVENT(4, "chsc: link incident (rs=%02x, rs_id=%04x, iq=%02x)\n",
421 sei_area->rs, sei_area->rsid, sei_area->ccdf[0]);
422
423 /* Ignore NULL Link Incident Records. */
424 if (lir->iq.null)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200425 return;
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +0200426
427 /* Inform user that a link requires maintenance actions because it has
428 * become degraded or not operational. Note that this log message is
429 * the primary intention behind a Link Incident Record. */
430
431 format_node_data(iuparams, iunodeid, &lir->incident_node);
432 format_node_data(auparams, aunodeid, &lir->attached_node);
433
434 switch (lir->iq.class) {
435 case LIR_IQ_CLASS_DEGRADED:
436 pr_warn("Link degraded: RS=%02x RSID=%04x IC=%02x "
437 "IUPARAMS=%s IUNODEID=%s AUPARAMS=%s AUNODEID=%s\n",
438 sei_area->rs, sei_area->rsid, lir->ic, iuparams,
439 iunodeid, auparams, aunodeid);
440 break;
441 case LIR_IQ_CLASS_NOT_OPERATIONAL:
442 pr_err("Link stopped: RS=%02x RSID=%04x IC=%02x "
443 "IUPARAMS=%s IUNODEID=%s AUPARAMS=%s AUNODEID=%s\n",
444 sei_area->rs, sei_area->rsid, lir->ic, iuparams,
445 iunodeid, auparams, aunodeid);
446 break;
447 default:
448 break;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200449 }
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100450}
451
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100452static void chsc_process_sei_res_acc(struct chsc_sei_nt0_area *sei_area)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100453{
Cornelia Huck99611f82008-07-14 09:59:02 +0200454 struct chp_link link;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200455 struct chp_id chpid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100456 int status;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100457
458 CIO_CRW_EVENT(4, "chsc: resource accessibility event (rs=%02x, "
459 "rs_id=%04x)\n", sei_area->rs, sei_area->rsid);
460 if (sei_area->rs != 4)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200461 return;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200462 chp_id_init(&chpid);
463 chpid.id = sei_area->rsid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100464 /* allocate a new channel path structure, if needed */
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200465 status = chp_get_status(chpid);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100466 if (status < 0)
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200467 chp_new(chpid);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100468 else if (!status)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200469 return;
Cornelia Huck99611f82008-07-14 09:59:02 +0200470 memset(&link, 0, sizeof(struct chp_link));
471 link.chpid = chpid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100472 if ((sei_area->vf & 0xc0) != 0) {
Cornelia Huck99611f82008-07-14 09:59:02 +0200473 link.fla = sei_area->fla;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100474 if ((sei_area->vf & 0xc0) == 0xc0)
475 /* full link address */
Cornelia Huck99611f82008-07-14 09:59:02 +0200476 link.fla_mask = 0xffff;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100477 else
478 /* link address */
Cornelia Huck99611f82008-07-14 09:59:02 +0200479 link.fla_mask = 0xff00;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100480 }
Cornelia Huck99611f82008-07-14 09:59:02 +0200481 s390_process_res_acc(&link);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100482}
483
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100484static void chsc_process_sei_chp_avail(struct chsc_sei_nt0_area *sei_area)
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200485{
486 struct channel_path *chp;
487 struct chp_id chpid;
488 u8 *data;
489 int num;
490
491 CIO_CRW_EVENT(4, "chsc: channel path availability information\n");
492 if (sei_area->rs != 0)
493 return;
494 data = sei_area->ccdf;
495 chp_id_init(&chpid);
496 for (num = 0; num <= __MAX_CHPID; num++) {
497 if (!chp_test_bit(data, num))
498 continue;
499 chpid.id = num;
500
501 CIO_CRW_EVENT(4, "Update information for channel path "
502 "%x.%02x\n", chpid.cssid, chpid.id);
503 chp = chpid_to_chp(chpid);
504 if (!chp) {
505 chp_new(chpid);
506 continue;
507 }
508 mutex_lock(&chp->lock);
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100509 chp_update_desc(chp);
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200510 mutex_unlock(&chp->lock);
511 }
512}
513
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200514struct chp_config_data {
515 u8 map[32];
516 u8 op;
517 u8 pc;
518};
519
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100520static void chsc_process_sei_chp_config(struct chsc_sei_nt0_area *sei_area)
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200521{
522 struct chp_config_data *data;
523 struct chp_id chpid;
524 int num;
Michael Ernste6d5a422008-12-25 13:39:36 +0100525 char *events[3] = {"configure", "deconfigure", "cancel deconfigure"};
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200526
527 CIO_CRW_EVENT(4, "chsc: channel-path-configuration notification\n");
528 if (sei_area->rs != 0)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200529 return;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200530 data = (struct chp_config_data *) &(sei_area->ccdf);
531 chp_id_init(&chpid);
532 for (num = 0; num <= __MAX_CHPID; num++) {
533 if (!chp_test_bit(data->map, num))
534 continue;
535 chpid.id = num;
Michael Ernste6d5a422008-12-25 13:39:36 +0100536 pr_notice("Processing %s for channel path %x.%02x\n",
537 events[data->op], chpid.cssid, chpid.id);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200538 switch (data->op) {
539 case 0:
540 chp_cfg_schedule(chpid, 1);
541 break;
542 case 1:
543 chp_cfg_schedule(chpid, 0);
544 break;
545 case 2:
546 chp_cfg_cancel_deconfigure(chpid);
547 break;
548 }
549 }
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200550}
551
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100552static void chsc_process_sei_scm_change(struct chsc_sei_nt0_area *sei_area)
Sebastian Ott40ff4cc2012-08-28 16:47:02 +0200553{
554 int ret;
555
556 CIO_CRW_EVENT(4, "chsc: scm change notification\n");
557 if (sei_area->rs != 7)
558 return;
559
560 ret = scm_update_information();
561 if (ret)
562 CIO_CRW_EVENT(0, "chsc: updating change notification"
563 " failed (rc=%d).\n", ret);
564}
565
Sebastian Ottaebfa662013-02-28 12:07:55 +0100566static void chsc_process_sei_scm_avail(struct chsc_sei_nt0_area *sei_area)
567{
568 int ret;
569
570 CIO_CRW_EVENT(4, "chsc: scm available information\n");
571 if (sei_area->rs != 7)
572 return;
573
574 ret = scm_process_availability_information();
575 if (ret)
576 CIO_CRW_EVENT(0, "chsc: process availability information"
577 " failed (rc=%d).\n", ret);
578}
579
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100580static void chsc_process_sei_nt2(struct chsc_sei_nt2_area *sei_area)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100581{
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100582 switch (sei_area->cc) {
583 case 1:
584 zpci_event_error(sei_area->ccdf);
585 break;
586 case 2:
587 zpci_event_availability(sei_area->ccdf);
588 break;
589 default:
Sebastian Ott9a17e972013-01-15 19:04:39 +0100590 CIO_CRW_EVENT(2, "chsc: sei nt2 unhandled cc=%d\n",
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100591 sei_area->cc);
592 break;
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200593 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100594}
595
596static void chsc_process_sei_nt0(struct chsc_sei_nt0_area *sei_area)
597{
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100598 /* which kind of information was stored? */
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100599 switch (sei_area->cc) {
600 case 1: /* link incident*/
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200601 chsc_process_sei_link_incident(sei_area);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100602 break;
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200603 case 2: /* i/o resource accessibility */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200604 chsc_process_sei_res_acc(sei_area);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100605 break;
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200606 case 7: /* channel-path-availability information */
607 chsc_process_sei_chp_avail(sei_area);
608 break;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200609 case 8: /* channel-path-configuration notification */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200610 chsc_process_sei_chp_config(sei_area);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200611 break;
Sebastian Ott40ff4cc2012-08-28 16:47:02 +0200612 case 12: /* scm change notification */
613 chsc_process_sei_scm_change(sei_area);
614 break;
Sebastian Ottaebfa662013-02-28 12:07:55 +0100615 case 14: /* scm available notification */
616 chsc_process_sei_scm_avail(sei_area);
617 break;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100618 default: /* other stuff */
Sebastian Ott9a17e972013-01-15 19:04:39 +0100619 CIO_CRW_EVENT(2, "chsc: sei nt0 unhandled cc=%d\n",
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100620 sei_area->cc);
621 break;
622 }
Sebastian Ott9a17e972013-01-15 19:04:39 +0100623
624 /* Check if we might have lost some information. */
625 if (sei_area->flags & 0x40) {
626 CIO_CRW_EVENT(2, "chsc: event overflow\n");
627 css_schedule_eval_all();
628 }
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100629}
630
Sebastian Ott9a17e972013-01-15 19:04:39 +0100631static void chsc_process_event_information(struct chsc_sei *sei, u64 ntsm)
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100632{
Sebastian Ott06cd7a82014-04-15 20:08:01 +0200633 static int ntsm_unsupported;
634
635 while (true) {
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100636 memset(sei, 0, sizeof(*sei));
637 sei->request.length = 0x0010;
638 sei->request.code = 0x000e;
Sebastian Ott06cd7a82014-04-15 20:08:01 +0200639 if (!ntsm_unsupported)
640 sei->ntsm = ntsm;
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100641
642 if (chsc(sei))
643 break;
644
Sebastian Ott9a17e972013-01-15 19:04:39 +0100645 if (sei->response.code != 0x0001) {
Sebastian Ott06cd7a82014-04-15 20:08:01 +0200646 CIO_CRW_EVENT(2, "chsc: sei failed (rc=%04x, ntsm=%llx)\n",
647 sei->response.code, sei->ntsm);
648
649 if (sei->response.code == 3 && sei->ntsm) {
650 /* Fallback for old firmware. */
651 ntsm_unsupported = 1;
652 continue;
653 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100654 break;
655 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100656
Sebastian Ott9a17e972013-01-15 19:04:39 +0100657 CIO_CRW_EVENT(2, "chsc: sei successful (nt=%d)\n", sei->nt);
658 switch (sei->nt) {
659 case 0:
660 chsc_process_sei_nt0(&sei->u.nt0_area);
661 break;
662 case 2:
663 chsc_process_sei_nt2(&sei->u.nt2_area);
664 break;
665 default:
666 CIO_CRW_EVENT(2, "chsc: unhandled nt: %d\n", sei->nt);
667 break;
668 }
Sebastian Ott06cd7a82014-04-15 20:08:01 +0200669
670 if (!(sei->u.nt0_area.flags & 0x80))
671 break;
672 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100673}
674
Sebastian Ott9a17e972013-01-15 19:04:39 +0100675/*
676 * Handle channel subsystem related CRWs.
677 * Use store event information to find out what's going on.
678 *
679 * Note: Access to sei_page is serialized through machine check handler
680 * thread, so no need for locking.
681 */
Cornelia Huckc1156182008-07-14 09:58:46 +0200682static void chsc_process_crw(struct crw *crw0, struct crw *crw1, int overflow)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100683{
Sebastian Ott9a17e972013-01-15 19:04:39 +0100684 struct chsc_sei *sei = sei_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Cornelia Huckc1156182008-07-14 09:58:46 +0200686 if (overflow) {
687 css_schedule_eval_all();
688 return;
689 }
690 CIO_CRW_EVENT(2, "CRW reports slct=%d, oflw=%d, "
691 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
692 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
693 crw0->erc, crw0->rsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Cornelia Huckc1156182008-07-14 09:58:46 +0200695 CIO_TRACE_EVENT(2, "prcss");
Sebastian Ott9a17e972013-01-15 19:04:39 +0100696 chsc_process_event_information(sei, CHSC_SEI_NT0 | CHSC_SEI_NT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200699void chsc_chp_online(struct chp_id chpid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Sebastian Ott9f3d6d72016-01-25 10:32:51 +0100701 struct channel_path *chp = chpid_to_chp(chpid);
Cornelia Huck99611f82008-07-14 09:59:02 +0200702 struct chp_link link;
Sebastian Ott9f3d6d72016-01-25 10:32:51 +0100703 char dbf_txt[15];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200705 sprintf(dbf_txt, "cadd%x.%02x", chpid.cssid, chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 CIO_TRACE_EVENT(2, dbf_txt);
707
Cornelia Huck22806dc2008-04-17 07:45:59 +0200708 if (chp_get_status(chpid) != 0) {
Cornelia Huck99611f82008-07-14 09:59:02 +0200709 memset(&link, 0, sizeof(struct chp_link));
710 link.chpid = chpid;
Cornelia Huck22806dc2008-04-17 07:45:59 +0200711 /* Wait until previous actions have settled. */
712 css_wait_for_slow_path();
Sebastian Ott9f3d6d72016-01-25 10:32:51 +0100713
714 mutex_lock(&chp->lock);
715 chp_update_desc(chp);
716 mutex_unlock(&chp->lock);
717
Cornelia Huckc820de32008-07-14 09:58:45 +0200718 for_each_subchannel_staged(__s390_process_res_acc, NULL,
Cornelia Huck99611f82008-07-14 09:59:02 +0200719 &link);
Peter Oberparleiter9955e8d12014-02-19 17:43:04 +0100720 css_schedule_reprobe();
Cornelia Huck22806dc2008-04-17 07:45:59 +0200721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200724static void __s390_subchannel_vary_chpid(struct subchannel *sch,
725 struct chp_id chpid, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 unsigned long flags;
Cornelia Huck99611f82008-07-14 09:59:02 +0200728 struct chp_link link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Cornelia Huck99611f82008-07-14 09:59:02 +0200730 memset(&link, 0, sizeof(struct chp_link));
731 link.chpid = chpid;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100732 spin_lock_irqsave(sch->lock, flags);
Cornelia Huckc820de32008-07-14 09:58:45 +0200733 if (sch->driver && sch->driver->chp_event)
Cornelia Huck99611f82008-07-14 09:59:02 +0200734 sch->driver->chp_event(sch, &link,
Cornelia Huckc820de32008-07-14 09:58:45 +0200735 on ? CHP_VARY_ON : CHP_VARY_OFF);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100736 spin_unlock_irqrestore(sch->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100739static int s390_subchannel_vary_chpid_off(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100741 struct chp_id *chpid = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 __s390_subchannel_vary_chpid(sch, *chpid, 0);
744 return 0;
745}
746
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100747static int s390_subchannel_vary_chpid_on(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100749 struct chp_id *chpid = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 __s390_subchannel_vary_chpid(sch, *chpid, 1);
752 return 0;
753}
754
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200755/**
756 * chsc_chp_vary - propagate channel-path vary operation to subchannels
757 * @chpid: channl-path ID
758 * @on: non-zero for vary online, zero for vary offline
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 */
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200760int chsc_chp_vary(struct chp_id chpid, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200762 struct channel_path *chp = chpid_to_chp(chpid);
Cornelia Huck99611f82008-07-14 09:59:02 +0200763
Cornelia Huck22806dc2008-04-17 07:45:59 +0200764 /* Wait until previous actions have settled. */
765 css_wait_for_slow_path();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 /*
767 * Redo PathVerification on the devices the chpid connects to
768 */
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200769 if (on) {
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100770 /* Try to update the channel path description. */
771 chp_update_desc(chp);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100772 for_each_subchannel_staged(s390_subchannel_vary_chpid_on,
Peter Oberparleiter449666d2013-11-26 14:55:56 +0100773 NULL, &chpid);
774 css_schedule_reprobe();
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200775 } else
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100776 for_each_subchannel_staged(s390_subchannel_vary_chpid_off,
Sebastian Ott3b484ec2011-12-01 13:32:22 +0100777 NULL, &chpid);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return 0;
780}
781
Cornelia Huck495a5b42006-03-24 03:15:14 -0800782static void
783chsc_remove_cmg_attr(struct channel_subsystem *css)
784{
785 int i;
786
787 for (i = 0; i <= __MAX_CHPID; i++) {
788 if (!css->chps[i])
789 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200790 chp_remove_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800791 }
792}
793
794static int
795chsc_add_cmg_attr(struct channel_subsystem *css)
796{
797 int i, ret;
798
799 ret = 0;
800 for (i = 0; i <= __MAX_CHPID; i++) {
801 if (!css->chps[i])
802 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200803 ret = chp_add_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800804 if (ret)
805 goto cleanup;
806 }
807 return ret;
808cleanup:
809 for (--i; i >= 0; i--) {
810 if (!css->chps[i])
811 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200812 chp_remove_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800813 }
814 return ret;
815}
816
Sebastian Ott34196f82010-10-25 16:10:29 +0200817int __chsc_do_secm(struct channel_subsystem *css, int enable)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800818{
819 struct {
820 struct chsc_header request;
821 u32 operation_code : 2;
822 u32 : 30;
823 u32 key : 4;
824 u32 : 28;
825 u32 zeroes1;
826 u32 cub_addr1;
827 u32 zeroes2;
828 u32 cub_addr2;
829 u32 reserved[13];
830 struct chsc_header response;
831 u32 status : 8;
832 u32 : 4;
833 u32 fmt : 4;
834 u32 : 16;
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +0100835 } __attribute__ ((packed)) *secm_area;
Sebastian Ottd53c51f2016-09-28 13:36:19 +0200836 unsigned long flags;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800837 int ret, ccode;
838
Sebastian Ottd53c51f2016-09-28 13:36:19 +0200839 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ott34196f82010-10-25 16:10:29 +0200840 memset(chsc_page, 0, PAGE_SIZE);
841 secm_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800842 secm_area->request.length = 0x0050;
843 secm_area->request.code = 0x0016;
844
Heiko Carstensd1bf8592010-02-26 22:37:30 +0100845 secm_area->key = PAGE_DEFAULT_KEY >> 4;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800846 secm_area->cub_addr1 = (u64)(unsigned long)css->cub_addr1;
847 secm_area->cub_addr2 = (u64)(unsigned long)css->cub_addr2;
848
849 secm_area->operation_code = enable ? 0 : 1;
850
851 ccode = chsc(secm_area);
Sebastian Ott34196f82010-10-25 16:10:29 +0200852 if (ccode > 0) {
853 ret = (ccode == 3) ? -ENODEV : -EBUSY;
854 goto out;
855 }
Cornelia Huck495a5b42006-03-24 03:15:14 -0800856
857 switch (secm_area->response.code) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100858 case 0x0102:
859 case 0x0103:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800860 ret = -EINVAL;
Sebastian Ott17e7d872009-03-26 15:24:17 +0100861 break;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800862 default:
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100863 ret = chsc_error_from_response(secm_area->response.code);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800864 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100865 if (ret != 0)
866 CIO_CRW_EVENT(2, "chsc: secm failed (rc=%04x)\n",
867 secm_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200868out:
Sebastian Ottd53c51f2016-09-28 13:36:19 +0200869 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800870 return ret;
871}
872
873int
874chsc_secm(struct channel_subsystem *css, int enable)
875{
Cornelia Huck495a5b42006-03-24 03:15:14 -0800876 int ret;
877
Cornelia Huck495a5b42006-03-24 03:15:14 -0800878 if (enable && !css->cm_enabled) {
879 css->cub_addr1 = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
880 css->cub_addr2 = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
881 if (!css->cub_addr1 || !css->cub_addr2) {
882 free_page((unsigned long)css->cub_addr1);
883 free_page((unsigned long)css->cub_addr2);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800884 return -ENOMEM;
885 }
886 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200887 ret = __chsc_do_secm(css, enable);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800888 if (!ret) {
889 css->cm_enabled = enable;
890 if (css->cm_enabled) {
891 ret = chsc_add_cmg_attr(css);
892 if (ret) {
Sebastian Ott34196f82010-10-25 16:10:29 +0200893 __chsc_do_secm(css, 0);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800894 css->cm_enabled = 0;
895 }
896 } else
897 chsc_remove_cmg_attr(css);
898 }
Cornelia Huck8c4941c2007-04-27 16:01:38 +0200899 if (!css->cm_enabled) {
Cornelia Huck495a5b42006-03-24 03:15:14 -0800900 free_page((unsigned long)css->cub_addr1);
901 free_page((unsigned long)css->cub_addr2);
902 }
Cornelia Huck495a5b42006-03-24 03:15:14 -0800903 return ret;
904}
905
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200906int chsc_determine_channel_path_desc(struct chp_id chpid, int fmt, int rfmt,
Sebastian Ott906c9762010-10-25 16:10:30 +0200907 int c, int m, void *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Sebastian Ott906c9762010-10-25 16:10:30 +0200909 struct chsc_scpd *scpd_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 int ccode, ret;
911
Sebastian Ottf9773762016-06-21 13:59:08 +0200912 if ((rfmt == 1 || rfmt == 0) && c == 1 &&
913 !css_general_characteristics.fcs)
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200914 return -EINVAL;
915 if ((rfmt == 2) && !css_general_characteristics.cib)
916 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Sebastian Ott906c9762010-10-25 16:10:30 +0200918 memset(page, 0, PAGE_SIZE);
919 scpd_area = page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800920 scpd_area->request.length = 0x0010;
921 scpd_area->request.code = 0x0002;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200922 scpd_area->cssid = chpid.cssid;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200923 scpd_area->first_chpid = chpid.id;
924 scpd_area->last_chpid = chpid.id;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200925 scpd_area->m = m;
926 scpd_area->c = c;
927 scpd_area->fmt = fmt;
928 scpd_area->rfmt = rfmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 ccode = chsc(scpd_area);
Sebastian Ott906c9762010-10-25 16:10:30 +0200931 if (ccode > 0)
932 return (ccode == 3) ? -ENODEV : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100934 ret = chsc_error_from_response(scpd_area->response.code);
Sebastian Ott906c9762010-10-25 16:10:30 +0200935 if (ret)
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100936 CIO_CRW_EVENT(2, "chsc: scpd failed (rc=%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 scpd_area->response.code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return ret;
939}
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200940EXPORT_SYMBOL_GPL(chsc_determine_channel_path_desc);
941
942int chsc_determine_base_channel_path_desc(struct chp_id chpid,
943 struct channel_path_desc *desc)
944{
Sebastian Ott906c9762010-10-25 16:10:30 +0200945 struct chsc_scpd *scpd_area;
Sebastian Ott62da1772010-10-25 16:10:32 +0200946 unsigned long flags;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200947 int ret;
948
Sebastian Ott62da1772010-10-25 16:10:32 +0200949 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ott906c9762010-10-25 16:10:30 +0200950 scpd_area = chsc_page;
951 ret = chsc_determine_channel_path_desc(chpid, 0, 0, 0, 0, scpd_area);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200952 if (ret)
Sebastian Ott906c9762010-10-25 16:10:30 +0200953 goto out;
Sebastian Ott687cb7f2016-06-21 16:26:25 +0200954
955 memcpy(desc, scpd_area->data, sizeof(*desc));
Sebastian Ott906c9762010-10-25 16:10:30 +0200956out:
Sebastian Ott62da1772010-10-25 16:10:32 +0200957 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200958 return ret;
959}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Sebastian Ottce322cc2011-01-05 12:47:56 +0100961int chsc_determine_fmt1_channel_path_desc(struct chp_id chpid,
962 struct channel_path_desc_fmt1 *desc)
963{
Sebastian Ottce322cc2011-01-05 12:47:56 +0100964 struct chsc_scpd *scpd_area;
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100965 unsigned long flags;
Sebastian Ottce322cc2011-01-05 12:47:56 +0100966 int ret;
967
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100968 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ottce322cc2011-01-05 12:47:56 +0100969 scpd_area = chsc_page;
Sebastian Ottf9773762016-06-21 13:59:08 +0200970 ret = chsc_determine_channel_path_desc(chpid, 0, 1, 1, 0, scpd_area);
Sebastian Ottce322cc2011-01-05 12:47:56 +0100971 if (ret)
972 goto out;
Sebastian Ott687cb7f2016-06-21 16:26:25 +0200973
974 memcpy(desc, scpd_area->data, sizeof(*desc));
Sebastian Ottce322cc2011-01-05 12:47:56 +0100975out:
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100976 spin_unlock_irqrestore(&chsc_page_lock, flags);
Sebastian Ottce322cc2011-01-05 12:47:56 +0100977 return ret;
978}
979
Cornelia Huck495a5b42006-03-24 03:15:14 -0800980static void
981chsc_initialize_cmg_chars(struct channel_path *chp, u8 cmcv,
982 struct cmg_chars *chars)
983{
Sebastian Ott34196f82010-10-25 16:10:29 +0200984 int i, mask;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800985
Sebastian Ott34196f82010-10-25 16:10:29 +0200986 for (i = 0; i < NR_MEASUREMENT_CHARS; i++) {
987 mask = 0x80 >> (i + 3);
988 if (cmcv & mask)
Sebastian Ott0d9bfe92016-01-25 10:30:27 +0100989 chp->cmg_chars.values[i] = chars->values[i];
Sebastian Ott34196f82010-10-25 16:10:29 +0200990 else
Sebastian Ott0d9bfe92016-01-25 10:30:27 +0100991 chp->cmg_chars.values[i] = 0;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800992 }
993}
994
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200995int chsc_get_channel_measurement_chars(struct channel_path *chp)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800996{
Sebastian Ottd53c51f2016-09-28 13:36:19 +0200997 unsigned long flags;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800998 int ccode, ret;
999
1000 struct {
1001 struct chsc_header request;
1002 u32 : 24;
1003 u32 first_chpid : 8;
1004 u32 : 24;
1005 u32 last_chpid : 8;
1006 u32 zeroes1;
1007 struct chsc_header response;
1008 u32 zeroes2;
1009 u32 not_valid : 1;
1010 u32 shared : 1;
1011 u32 : 22;
1012 u32 chpid : 8;
1013 u32 cmcv : 5;
1014 u32 : 11;
1015 u32 cmgq : 8;
1016 u32 cmg : 8;
1017 u32 zeroes3;
1018 u32 data[NR_MEASUREMENT_CHARS];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +01001019 } __attribute__ ((packed)) *scmc_area;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001020
Sebastian Ott61f0bfc2016-01-25 10:31:33 +01001021 chp->shared = -1;
1022 chp->cmg = -1;
1023
1024 if (!css_chsc_characteristics.scmc || !css_chsc_characteristics.secm)
Sebastian Ott0b601372016-07-14 11:30:37 +02001025 return -EINVAL;
Sebastian Ott61f0bfc2016-01-25 10:31:33 +01001026
Sebastian Ottd53c51f2016-09-28 13:36:19 +02001027 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ott34196f82010-10-25 16:10:29 +02001028 memset(chsc_page, 0, PAGE_SIZE);
1029 scmc_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001030 scmc_area->request.length = 0x0010;
1031 scmc_area->request.code = 0x0022;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +02001032 scmc_area->first_chpid = chp->chpid.id;
1033 scmc_area->last_chpid = chp->chpid.id;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001034
1035 ccode = chsc(scmc_area);
1036 if (ccode > 0) {
1037 ret = (ccode == 3) ? -ENODEV : -EBUSY;
1038 goto out;
1039 }
1040
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001041 ret = chsc_error_from_response(scmc_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +02001042 if (ret) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001043 CIO_CRW_EVENT(2, "chsc: scmc failed (rc=%04x)\n",
Cornelia Huck495a5b42006-03-24 03:15:14 -08001044 scmc_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +02001045 goto out;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001046 }
Sebastian Ott61f0bfc2016-01-25 10:31:33 +01001047 if (scmc_area->not_valid)
Sebastian Ott34196f82010-10-25 16:10:29 +02001048 goto out;
Sebastian Ott61f0bfc2016-01-25 10:31:33 +01001049
Sebastian Ott34196f82010-10-25 16:10:29 +02001050 chp->cmg = scmc_area->cmg;
1051 chp->shared = scmc_area->shared;
1052 if (chp->cmg != 2 && chp->cmg != 3) {
1053 /* No cmg-dependent data. */
1054 goto out;
1055 }
Sebastian Ott34196f82010-10-25 16:10:29 +02001056 chsc_initialize_cmg_chars(chp, scmc_area->cmcv,
1057 (struct cmg_chars *) &scmc_area->data);
Cornelia Huck495a5b42006-03-24 03:15:14 -08001058out:
Sebastian Ottd53c51f2016-09-28 13:36:19 +02001059 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huck495a5b42006-03-24 03:15:14 -08001060 return ret;
1061}
1062
Sebastian Ott34aec072010-10-25 16:10:28 +02001063int __init chsc_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
Cornelia Huckc1156182008-07-14 09:58:46 +02001065 int ret;
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 sei_page = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
Sebastian Ott34196f82010-10-25 16:10:29 +02001068 chsc_page = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
1069 if (!sei_page || !chsc_page) {
1070 ret = -ENOMEM;
1071 goto out_err;
Cornelia Huckc1156182008-07-14 09:58:46 +02001072 }
Heiko Carstensf5daba12009-03-26 15:24:01 +01001073 ret = crw_register_handler(CRW_RSC_CSS, chsc_process_crw);
Cornelia Huckc1156182008-07-14 09:58:46 +02001074 if (ret)
Sebastian Ott34196f82010-10-25 16:10:29 +02001075 goto out_err;
1076 return ret;
1077out_err:
1078 free_page((unsigned long)chsc_page);
1079 free_page((unsigned long)sei_page);
Cornelia Huckc1156182008-07-14 09:58:46 +02001080 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081}
1082
Sebastian Ott34aec072010-10-25 16:10:28 +02001083void __init chsc_init_cleanup(void)
Cornelia Huck4434a382007-07-27 12:29:21 +02001084{
Heiko Carstensf5daba12009-03-26 15:24:01 +01001085 crw_unregister_handler(CRW_RSC_CSS);
Sebastian Ott34196f82010-10-25 16:10:29 +02001086 free_page((unsigned long)chsc_page);
Sebastian Ott34aec072010-10-25 16:10:28 +02001087 free_page((unsigned long)sei_page);
Cornelia Huck4434a382007-07-27 12:29:21 +02001088}
1089
Sebastian Ott18e22a12015-06-29 18:39:54 +02001090int __chsc_enable_facility(struct chsc_sda_area *sda_area, int operation_code)
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001091{
1092 int ret;
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001093
Sebastian Ott34196f82010-10-25 16:10:29 +02001094 sda_area->request.length = 0x0400;
1095 sda_area->request.code = 0x0031;
1096 sda_area->operation_code = operation_code;
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001097
Sebastian Ott34196f82010-10-25 16:10:29 +02001098 ret = chsc(sda_area);
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001099 if (ret > 0) {
1100 ret = (ret == 3) ? -ENODEV : -EBUSY;
1101 goto out;
1102 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001103
Sebastian Ott34196f82010-10-25 16:10:29 +02001104 switch (sda_area->response.code) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001105 case 0x0101:
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001106 ret = -EOPNOTSUPP;
1107 break;
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001108 default:
Sebastian Ott34196f82010-10-25 16:10:29 +02001109 ret = chsc_error_from_response(sda_area->response.code);
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001110 }
Sebastian Ott18e22a12015-06-29 18:39:54 +02001111out:
1112 return ret;
1113}
1114
1115int chsc_enable_facility(int operation_code)
1116{
1117 struct chsc_sda_area *sda_area;
1118 unsigned long flags;
1119 int ret;
1120
1121 spin_lock_irqsave(&chsc_page_lock, flags);
1122 memset(chsc_page, 0, PAGE_SIZE);
1123 sda_area = chsc_page;
1124
1125 ret = __chsc_enable_facility(sda_area, operation_code);
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001126 if (ret != 0)
1127 CIO_CRW_EVENT(2, "chsc: sda (oc=%x) failed (rc=%04x)\n",
Sebastian Ott34196f82010-10-25 16:10:29 +02001128 operation_code, sda_area->response.code);
Sebastian Ott18e22a12015-06-29 18:39:54 +02001129
Sebastian Ott34196f82010-10-25 16:10:29 +02001130 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001131 return ret;
1132}
1133
Sebastian Otte2e0de92016-06-17 19:45:23 +02001134int __init chsc_get_cssid(int idx)
1135{
1136 struct {
1137 struct chsc_header request;
1138 u8 atype;
1139 u32 : 24;
1140 u32 reserved1[6];
1141 struct chsc_header response;
1142 u32 reserved2[3];
1143 struct {
1144 u8 cssid;
1145 u32 : 24;
1146 } list[0];
1147 } __packed *sdcal_area;
1148 int ret;
1149
1150 spin_lock_irq(&chsc_page_lock);
1151 memset(chsc_page, 0, PAGE_SIZE);
1152 sdcal_area = chsc_page;
1153 sdcal_area->request.length = 0x0020;
1154 sdcal_area->request.code = 0x0034;
1155 sdcal_area->atype = 4;
1156
1157 ret = chsc(sdcal_area);
1158 if (ret) {
1159 ret = (ret == 3) ? -ENODEV : -EBUSY;
1160 goto exit;
1161 }
1162
1163 ret = chsc_error_from_response(sdcal_area->response.code);
1164 if (ret) {
1165 CIO_CRW_EVENT(2, "chsc: sdcal failed (rc=%04x)\n",
1166 sdcal_area->response.code);
1167 goto exit;
1168 }
1169
1170 if ((addr_t) &sdcal_area->list[idx] <
1171 (addr_t) &sdcal_area->response + sdcal_area->response.length)
1172 ret = sdcal_area->list[idx].cssid;
1173 else
1174 ret = -ENODEV;
1175exit:
1176 spin_unlock_irq(&chsc_page_lock);
1177 return ret;
1178}
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180struct css_general_char css_general_characteristics;
1181struct css_chsc_char css_chsc_characteristics;
1182
1183int __init
1184chsc_determine_css_characteristics(void)
1185{
Sebastian Ottd53c51f2016-09-28 13:36:19 +02001186 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 int result;
1188 struct {
1189 struct chsc_header request;
1190 u32 reserved1;
1191 u32 reserved2;
1192 u32 reserved3;
1193 struct chsc_header response;
1194 u32 reserved4;
1195 u32 general_char[510];
Sebastian Ott34aec072010-10-25 16:10:28 +02001196 u32 chsc_char[508];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +01001197 } __attribute__ ((packed)) *scsc_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Sebastian Ottd53c51f2016-09-28 13:36:19 +02001199 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ott34196f82010-10-25 16:10:29 +02001200 memset(chsc_page, 0, PAGE_SIZE);
1201 scsc_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001202 scsc_area->request.length = 0x0010;
1203 scsc_area->request.code = 0x0010;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 result = chsc(scsc_area);
1206 if (result) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001207 result = (result == 3) ? -ENODEV : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 goto exit;
1209 }
1210
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001211 result = chsc_error_from_response(scsc_area->response.code);
1212 if (result == 0) {
1213 memcpy(&css_general_characteristics, scsc_area->general_char,
1214 sizeof(css_general_characteristics));
1215 memcpy(&css_chsc_characteristics, scsc_area->chsc_char,
1216 sizeof(css_chsc_characteristics));
1217 } else
1218 CIO_CRW_EVENT(2, "chsc: scsc failed (rc=%04x)\n",
1219 scsc_area->response.code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220exit:
Sebastian Ottd53c51f2016-09-28 13:36:19 +02001221 spin_unlock_irqrestore(&chsc_page_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 return result;
1223}
1224
1225EXPORT_SYMBOL_GPL(css_general_characteristics);
1226EXPORT_SYMBOL_GPL(css_chsc_characteristics);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001227
Martin Schwidefsky2f82f572016-05-31 09:09:57 +02001228int chsc_sstpc(void *page, unsigned int op, u16 ctrl, u64 *clock_delta)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001229{
1230 struct {
1231 struct chsc_header request;
1232 unsigned int rsvd0;
1233 unsigned int op : 8;
1234 unsigned int rsvd1 : 8;
1235 unsigned int ctrl : 16;
1236 unsigned int rsvd2[5];
1237 struct chsc_header response;
Martin Schwidefsky2f82f572016-05-31 09:09:57 +02001238 unsigned int rsvd3[3];
1239 u64 clock_delta;
1240 unsigned int rsvd4[2];
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001241 } __attribute__ ((packed)) *rr;
1242 int rc;
1243
1244 memset(page, 0, PAGE_SIZE);
1245 rr = page;
1246 rr->request.length = 0x0020;
1247 rr->request.code = 0x0033;
1248 rr->op = op;
1249 rr->ctrl = ctrl;
1250 rc = chsc(rr);
1251 if (rc)
1252 return -EIO;
1253 rc = (rr->response.code == 0x0001) ? 0 : -EIO;
Martin Schwidefsky2f82f572016-05-31 09:09:57 +02001254 if (clock_delta)
1255 *clock_delta = rr->clock_delta;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001256 return rc;
1257}
1258
1259int chsc_sstpi(void *page, void *result, size_t size)
1260{
1261 struct {
1262 struct chsc_header request;
1263 unsigned int rsvd0[3];
1264 struct chsc_header response;
Heiko Carstens9fbd5a02016-12-15 11:05:13 +01001265 char data[];
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001266 } __attribute__ ((packed)) *rr;
1267 int rc;
1268
1269 memset(page, 0, PAGE_SIZE);
1270 rr = page;
1271 rr->request.length = 0x0010;
1272 rr->request.code = 0x0038;
1273 rc = chsc(rr);
1274 if (rc)
1275 return -EIO;
1276 memcpy(result, &rr->data, size);
1277 return (rr->response.code == 0x0001) ? 0 : -EIO;
1278}
1279
Michael Ernstfd0457a2010-08-09 18:12:50 +02001280int chsc_siosl(struct subchannel_id schid)
1281{
Sebastian Ott34196f82010-10-25 16:10:29 +02001282 struct {
1283 struct chsc_header request;
1284 u32 word1;
1285 struct subchannel_id sid;
1286 u32 word3;
1287 struct chsc_header response;
1288 u32 word[11];
1289 } __attribute__ ((packed)) *siosl_area;
Michael Ernstfd0457a2010-08-09 18:12:50 +02001290 unsigned long flags;
1291 int ccode;
1292 int rc;
1293
Sebastian Ott34196f82010-10-25 16:10:29 +02001294 spin_lock_irqsave(&chsc_page_lock, flags);
1295 memset(chsc_page, 0, PAGE_SIZE);
1296 siosl_area = chsc_page;
1297 siosl_area->request.length = 0x0010;
1298 siosl_area->request.code = 0x0046;
1299 siosl_area->word1 = 0x80000000;
1300 siosl_area->sid = schid;
Michael Ernstfd0457a2010-08-09 18:12:50 +02001301
Sebastian Ott34196f82010-10-25 16:10:29 +02001302 ccode = chsc(siosl_area);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001303 if (ccode > 0) {
1304 if (ccode == 3)
1305 rc = -ENODEV;
1306 else
1307 rc = -EBUSY;
1308 CIO_MSG_EVENT(2, "chsc: chsc failed for 0.%x.%04x (ccode=%d)\n",
1309 schid.ssid, schid.sch_no, ccode);
1310 goto out;
1311 }
Sebastian Ott34196f82010-10-25 16:10:29 +02001312 rc = chsc_error_from_response(siosl_area->response.code);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001313 if (rc)
1314 CIO_MSG_EVENT(2, "chsc: siosl failed for 0.%x.%04x (rc=%04x)\n",
1315 schid.ssid, schid.sch_no,
Sebastian Ott34196f82010-10-25 16:10:29 +02001316 siosl_area->response.code);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001317 else
1318 CIO_MSG_EVENT(4, "chsc: siosl succeeded for 0.%x.%04x\n",
1319 schid.ssid, schid.sch_no);
1320out:
Sebastian Ott34196f82010-10-25 16:10:29 +02001321 spin_unlock_irqrestore(&chsc_page_lock, flags);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001322 return rc;
1323}
1324EXPORT_SYMBOL_GPL(chsc_siosl);
Sebastian Ott184b08a2012-08-28 16:45:42 +02001325
1326/**
1327 * chsc_scm_info() - store SCM information (SSI)
1328 * @scm_area: request and response block for SSI
1329 * @token: continuation token
1330 *
1331 * Returns 0 on success.
1332 */
1333int chsc_scm_info(struct chsc_scm_info *scm_area, u64 token)
1334{
1335 int ccode, ret;
1336
1337 memset(scm_area, 0, sizeof(*scm_area));
1338 scm_area->request.length = 0x0020;
1339 scm_area->request.code = 0x004C;
1340 scm_area->reqtok = token;
1341
1342 ccode = chsc(scm_area);
1343 if (ccode > 0) {
1344 ret = (ccode == 3) ? -ENODEV : -EBUSY;
1345 goto out;
1346 }
1347 ret = chsc_error_from_response(scm_area->response.code);
1348 if (ret != 0)
1349 CIO_MSG_EVENT(2, "chsc: scm info failed (rc=%04x)\n",
1350 scm_area->response.code);
1351out:
1352 return ret;
1353}
1354EXPORT_SYMBOL_GPL(chsc_scm_info);
Eugene Crosser1c59a862013-04-24 12:00:23 +02001355
1356/**
1357 * chsc_pnso_brinfo() - Perform Network-Subchannel Operation, Bridge Info.
1358 * @schid: id of the subchannel on which PNSO is performed
1359 * @brinfo_area: request and response block for the operation
1360 * @resume_token: resume token for multiblock response
1361 * @cnc: Boolean change-notification control
1362 *
1363 * brinfo_area must be allocated by the caller with get_zeroed_page(GFP_KERNEL)
1364 *
1365 * Returns 0 on success.
1366 */
1367int chsc_pnso_brinfo(struct subchannel_id schid,
1368 struct chsc_pnso_area *brinfo_area,
1369 struct chsc_brinfo_resume_token resume_token,
1370 int cnc)
1371{
1372 memset(brinfo_area, 0, sizeof(*brinfo_area));
1373 brinfo_area->request.length = 0x0030;
1374 brinfo_area->request.code = 0x003d; /* network-subchannel operation */
1375 brinfo_area->m = schid.m;
1376 brinfo_area->ssid = schid.ssid;
1377 brinfo_area->sch = schid.sch_no;
1378 brinfo_area->cssid = schid.cssid;
1379 brinfo_area->oc = 0; /* Store-network-bridging-information list */
1380 brinfo_area->resume_token = resume_token;
1381 brinfo_area->n = (cnc != 0);
1382 if (chsc(brinfo_area))
1383 return -EIO;
1384 return chsc_error_from_response(brinfo_area->response.code);
1385}
1386EXPORT_SYMBOL_GPL(chsc_pnso_brinfo);