blob: 6652a49a49b17210228fcdd674faa6e81baffd06 [file] [log] [blame]
Greg Kroah-Hartman724117b2017-11-14 18:38:02 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * S/390 common I/O routines -- channel subsystem call
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Jan Glaubercbc0dd12012-11-29 14:34:48 +01005 * Copyright IBM Corp. 1999,2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Author(s): Ingo Adlung (adlung@de.ibm.com)
Cornelia Huck4ce3b302006-01-14 13:21:04 -08007 * Cornelia Huck (cornelia.huck@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Arnd Bergmann (arndb@de.ibm.com)
9 */
10
Michael Ernste6d5a422008-12-25 13:39:36 +010011#define KMSG_COMPONENT "cio"
12#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/slab.h>
16#include <linux/init.h>
17#include <linux/device.h>
Sebastian Ott9f3d6d72016-01-25 10:32:51 +010018#include <linux/mutex.h>
Jan Glaubercbc0dd12012-11-29 14:34:48 +010019#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <asm/cio.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +020022#include <asm/chpid.h>
Cornelia Huck9d92a7e2008-07-14 09:59:05 +020023#include <asm/chsc.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010024#include <asm/crw.h>
Sebastian Ottca4ba152013-06-05 18:59:22 +020025#include <asm/isc.h>
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +020026#include <asm/ebcdic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include "css.h"
29#include "cio.h"
30#include "cio_debug.h"
31#include "ioasm.h"
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020032#include "chp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "chsc.h"
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static void *sei_page;
Sebastian Ott34196f82010-10-25 16:10:29 +020036static void *chsc_page;
37static DEFINE_SPINLOCK(chsc_page_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Cornelia Huckdae39842008-07-17 17:16:47 +020039/**
40 * chsc_error_from_response() - convert a chsc response to an error
41 * @response: chsc response code
42 *
43 * Returns an appropriate Linux error code for @response.
44 */
45int chsc_error_from_response(int response)
Cornelia Huckb9c9a212008-02-05 16:50:34 +010046{
47 switch (response) {
48 case 0x0001:
49 return 0;
50 case 0x0002:
51 case 0x0003:
52 case 0x0006:
53 case 0x0007:
54 case 0x0008:
55 case 0x000a:
Michael Ernstfd0457a2010-08-09 18:12:50 +020056 case 0x0104:
Cornelia Huckb9c9a212008-02-05 16:50:34 +010057 return -EINVAL;
58 case 0x0004:
59 return -EOPNOTSUPP;
Sebastian Ott184b08a2012-08-28 16:45:42 +020060 case 0x000b:
Eugene Crosser1c59a862013-04-24 12:00:23 +020061 case 0x0107: /* "Channel busy" for the op 0x003d */
Sebastian Ott184b08a2012-08-28 16:45:42 +020062 return -EBUSY;
63 case 0x0100:
64 case 0x0102:
65 return -ENOMEM;
Cornelia Huckb9c9a212008-02-05 16:50:34 +010066 default:
67 return -EIO;
68 }
69}
Cornelia Huckdae39842008-07-17 17:16:47 +020070EXPORT_SYMBOL_GPL(chsc_error_from_response);
Cornelia Huckb9c9a212008-02-05 16:50:34 +010071
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020072struct chsc_ssd_area {
73 struct chsc_header request;
74 u16 :10;
75 u16 ssid:2;
76 u16 :4;
77 u16 f_sch; /* first subchannel */
78 u16 :16;
79 u16 l_sch; /* last subchannel */
80 u32 :32;
81 struct chsc_header response;
82 u32 :32;
83 u8 sch_valid : 1;
84 u8 dev_valid : 1;
85 u8 st : 3; /* subchannel type */
86 u8 zeroes : 3;
87 u8 unit_addr; /* unit address */
88 u16 devno; /* device number */
89 u8 path_mask;
90 u8 fla_valid_mask;
91 u16 sch; /* subchannel */
92 u8 chpid[8]; /* chpids 0-7 */
93 u16 fla[8]; /* full link addresses 0-7 */
94} __attribute__ ((packed));
95
96int chsc_get_ssd_info(struct subchannel_id schid, struct chsc_ssd_info *ssd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020098 struct chsc_ssd_area *ssd_area;
Sebastian Ottd53c51f2016-09-28 13:36:19 +020099 unsigned long flags;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200100 int ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 int ret;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200102 int i;
103 int mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Sebastian Ottd53c51f2016-09-28 13:36:19 +0200105 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ott34196f82010-10-25 16:10:29 +0200106 memset(chsc_page, 0, PAGE_SIZE);
107 ssd_area = chsc_page;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200108 ssd_area->request.length = 0x0010;
109 ssd_area->request.code = 0x0004;
110 ssd_area->ssid = schid.ssid;
111 ssd_area->f_sch = schid.sch_no;
112 ssd_area->l_sch = schid.sch_no;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200113
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200114 ccode = chsc(ssd_area);
115 /* Check response. */
116 if (ccode > 0) {
117 ret = (ccode == 3) ? -ENODEV : -EBUSY;
Sebastian Ott34196f82010-10-25 16:10:29 +0200118 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100120 ret = chsc_error_from_response(ssd_area->response.code);
121 if (ret != 0) {
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200122 CIO_MSG_EVENT(2, "chsc: ssd failed for 0.%x.%04x (rc=%04x)\n",
123 schid.ssid, schid.sch_no,
124 ssd_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200125 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200126 }
127 if (!ssd_area->sch_valid) {
128 ret = -ENODEV;
Sebastian Ott34196f82010-10-25 16:10:29 +0200129 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200130 }
131 /* Copy data */
132 ret = 0;
133 memset(ssd, 0, sizeof(struct chsc_ssd_info));
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100134 if ((ssd_area->st != SUBCHANNEL_TYPE_IO) &&
135 (ssd_area->st != SUBCHANNEL_TYPE_MSG))
Sebastian Ott34196f82010-10-25 16:10:29 +0200136 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200137 ssd->path_mask = ssd_area->path_mask;
138 ssd->fla_valid_mask = ssd_area->fla_valid_mask;
139 for (i = 0; i < 8; i++) {
140 mask = 0x80 >> i;
141 if (ssd_area->path_mask & mask) {
142 chp_id_init(&ssd->chpid[i]);
143 ssd->chpid[i].id = ssd_area->chpid[i];
144 }
145 if (ssd_area->fla_valid_mask & mask)
146 ssd->fla[i] = ssd_area->fla[i];
147 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200148out:
Sebastian Ottd53c51f2016-09-28 13:36:19 +0200149 spin_unlock_irqrestore(&chsc_page_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return ret;
151}
152
Sebastian Ottda5b6cb2013-06-05 18:58:35 +0200153/**
154 * chsc_ssqd() - store subchannel QDIO data (SSQD)
155 * @schid: id of the subchannel on which SSQD is performed
156 * @ssqd: request and response block for SSQD
157 *
158 * Returns 0 on success.
159 */
160int chsc_ssqd(struct subchannel_id schid, struct chsc_ssqd_area *ssqd)
161{
162 memset(ssqd, 0, sizeof(*ssqd));
163 ssqd->request.length = 0x0010;
164 ssqd->request.code = 0x0024;
165 ssqd->first_sch = schid.sch_no;
166 ssqd->last_sch = schid.sch_no;
167 ssqd->ssid = schid.ssid;
168
169 if (chsc(ssqd))
170 return -EIO;
171
172 return chsc_error_from_response(ssqd->response.code);
173}
174EXPORT_SYMBOL_GPL(chsc_ssqd);
175
Sebastian Ottca4ba152013-06-05 18:59:22 +0200176/**
177 * chsc_sadc() - set adapter device controls (SADC)
178 * @schid: id of the subchannel on which SADC is performed
179 * @scssc: request and response block for SADC
180 * @summary_indicator_addr: summary indicator address
181 * @subchannel_indicator_addr: subchannel indicator address
182 *
183 * Returns 0 on success.
184 */
185int chsc_sadc(struct subchannel_id schid, struct chsc_scssc_area *scssc,
186 u64 summary_indicator_addr, u64 subchannel_indicator_addr)
187{
188 memset(scssc, 0, sizeof(*scssc));
189 scssc->request.length = 0x0fe0;
190 scssc->request.code = 0x0021;
191 scssc->operation_code = 0;
192
193 scssc->summary_indicator_addr = summary_indicator_addr;
194 scssc->subchannel_indicator_addr = subchannel_indicator_addr;
195
196 scssc->ks = PAGE_DEFAULT_KEY >> 4;
197 scssc->kc = PAGE_DEFAULT_KEY >> 4;
198 scssc->isc = QDIO_AIRQ_ISC;
199 scssc->schid = schid;
200
201 /* enable the time delay disablement facility */
202 if (css_general_characteristics.aif_tdd)
203 scssc->word_with_d_bit = 0x10000000;
204
205 if (chsc(scssc))
206 return -EIO;
207
208 return chsc_error_from_response(scssc->response.code);
209}
210EXPORT_SYMBOL_GPL(chsc_sadc);
211
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100212static int s390_subchannel_remove_chpid(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Cornelia Huck2ec22982006-12-08 15:54:26 +0100214 spin_lock_irq(sch->lock);
Cornelia Huckc820de32008-07-14 09:58:45 +0200215 if (sch->driver && sch->driver->chp_event)
216 if (sch->driver->chp_event(sch, data, CHP_OFFLINE) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 goto out_unreg;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100218 spin_unlock_irq(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return 0;
Stefan Bader387b7342007-04-27 16:01:33 +0200220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221out_unreg:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 sch->lpm = 0;
Stefan Bader387b7342007-04-27 16:01:33 +0200223 spin_unlock_irq(sch->lock);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200224 css_schedule_eval(sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return 0;
226}
227
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200228void chsc_chp_offline(struct chp_id chpid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Sebastian Ott9f3d6d72016-01-25 10:32:51 +0100230 struct channel_path *chp = chpid_to_chp(chpid);
Cornelia Huck99611f82008-07-14 09:59:02 +0200231 struct chp_link link;
Sebastian Ott9f3d6d72016-01-25 10:32:51 +0100232 char dbf_txt[15];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200234 sprintf(dbf_txt, "chpr%x.%02x", chpid.cssid, chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 CIO_TRACE_EVENT(2, dbf_txt);
236
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200237 if (chp_get_status(chpid) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return;
Cornelia Huck99611f82008-07-14 09:59:02 +0200239 memset(&link, 0, sizeof(struct chp_link));
240 link.chpid = chpid;
Cornelia Huck22806dc2008-04-17 07:45:59 +0200241 /* Wait until previous actions have settled. */
242 css_wait_for_slow_path();
Sebastian Ott9f3d6d72016-01-25 10:32:51 +0100243
244 mutex_lock(&chp->lock);
245 chp_update_desc(chp);
246 mutex_unlock(&chp->lock);
247
Cornelia Huck99611f82008-07-14 09:59:02 +0200248 for_each_subchannel_staged(s390_subchannel_remove_chpid, NULL, &link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100251static int __s390_process_res_acc(struct subchannel *sch, void *data)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800252{
Cornelia Huck2ec22982006-12-08 15:54:26 +0100253 spin_lock_irq(sch->lock);
Cornelia Huckc820de32008-07-14 09:58:45 +0200254 if (sch->driver && sch->driver->chp_event)
255 sch->driver->chp_event(sch, data, CHP_ONLINE);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100256 spin_unlock_irq(sch->lock);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100257
Peter Oberparleiterdd9963f2006-09-20 15:59:54 +0200258 return 0;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800259}
260
Cornelia Huck99611f82008-07-14 09:59:02 +0200261static void s390_process_res_acc(struct chp_link *link)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800262{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 char dbf_txt[15];
264
Cornelia Huck99611f82008-07-14 09:59:02 +0200265 sprintf(dbf_txt, "accpr%x.%02x", link->chpid.cssid,
266 link->chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 CIO_TRACE_EVENT( 2, dbf_txt);
Cornelia Huck99611f82008-07-14 09:59:02 +0200268 if (link->fla != 0) {
269 sprintf(dbf_txt, "fla%x", link->fla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 CIO_TRACE_EVENT( 2, dbf_txt);
271 }
Cornelia Huck22806dc2008-04-17 07:45:59 +0200272 /* Wait until previous actions have settled. */
273 css_wait_for_slow_path();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /*
275 * I/O resources may have become accessible.
276 * Scan through all subchannels that may be concerned and
277 * do a validation on those.
278 * The more information we have (info), the less scanning
279 * will we have to do.
280 */
Peter Oberparleiter449666d2013-11-26 14:55:56 +0100281 for_each_subchannel_staged(__s390_process_res_acc, NULL, link);
282 css_schedule_reprobe();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100285struct chsc_sei_nt0_area {
286 u8 flags;
287 u8 vf; /* validity flags */
288 u8 rs; /* reporting source */
289 u8 cc; /* content code */
290 u16 fla; /* full link address */
291 u16 rsid; /* reporting source id */
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100292 u32 reserved1;
293 u32 reserved2;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100294 /* ccdf has to be big enough for a link-incident record */
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100295 u8 ccdf[PAGE_SIZE - 24 - 16]; /* content-code dependent field */
296} __packed;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100297
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100298struct chsc_sei_nt2_area {
299 u8 flags; /* p and v bit */
300 u8 reserved1;
301 u8 reserved2;
302 u8 cc; /* content code */
303 u32 reserved3[13];
304 u8 ccdf[PAGE_SIZE - 24 - 56]; /* content-code dependent field */
305} __packed;
306
Sebastian Ott509d97b2013-01-15 19:02:01 +0100307#define CHSC_SEI_NT0 (1ULL << 63)
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100308#define CHSC_SEI_NT2 (1ULL << 61)
309
310struct chsc_sei {
311 struct chsc_header request;
312 u32 reserved1;
313 u64 ntsm; /* notification type mask */
314 struct chsc_header response;
Sebastian Ott509d97b2013-01-15 19:02:01 +0100315 u32 :24;
316 u8 nt;
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100317 union {
318 struct chsc_sei_nt0_area nt0_area;
319 struct chsc_sei_nt2_area nt2_area;
320 u8 nt_area[PAGE_SIZE - 24];
321 } u;
322} __packed;
323
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +0200324/*
325 * Node Descriptor as defined in SA22-7204, "Common I/O-Device Commands"
326 */
327
328#define ND_VALIDITY_VALID 0
329#define ND_VALIDITY_OUTDATED 1
330#define ND_VALIDITY_INVALID 2
331
332struct node_descriptor {
333 /* Flags. */
334 union {
335 struct {
336 u32 validity:3;
337 u32 reserved:5;
338 } __packed;
339 u8 byte0;
340 } __packed;
341
342 /* Node parameters. */
343 u32 params:24;
344
345 /* Node ID. */
346 char type[6];
347 char model[3];
348 char manufacturer[3];
349 char plant[2];
350 char seq[12];
351 u16 tag;
352} __packed;
353
354/*
355 * Link Incident Record as defined in SA22-7202, "ESCON I/O Interface"
356 */
357
358#define LIR_IQ_CLASS_INFO 0
359#define LIR_IQ_CLASS_DEGRADED 1
360#define LIR_IQ_CLASS_NOT_OPERATIONAL 2
361
362struct lir {
363 struct {
364 u32 null:1;
365 u32 reserved:3;
366 u32 class:2;
367 u32 reserved2:2;
368 } __packed iq;
369 u32 ic:8;
370 u32 reserved:16;
371 struct node_descriptor incident_node;
372 struct node_descriptor attached_node;
373 u8 reserved2[32];
374} __packed;
375
376#define PARAMS_LEN 10 /* PARAMS=xx,xxxxxx */
377#define NODEID_LEN 35 /* NODEID=tttttt/mdl,mmm.ppssssssssssss,xxxx */
378
379/* Copy EBCIDC text, convert to ASCII and optionally add delimiter. */
380static char *store_ebcdic(char *dest, const char *src, unsigned long len,
381 char delim)
382{
383 memcpy(dest, src, len);
384 EBCASC(dest, len);
385
386 if (delim)
387 dest[len++] = delim;
388
389 return dest + len;
390}
391
392/* Format node ID and parameters for output in LIR log message. */
393static void format_node_data(char *params, char *id, struct node_descriptor *nd)
394{
395 memset(params, 0, PARAMS_LEN);
396 memset(id, 0, NODEID_LEN);
397
398 if (nd->validity != ND_VALIDITY_VALID) {
399 strncpy(params, "n/a", PARAMS_LEN - 1);
400 strncpy(id, "n/a", NODEID_LEN - 1);
401 return;
402 }
403
404 /* PARAMS=xx,xxxxxx */
405 snprintf(params, PARAMS_LEN, "%02x,%06x", nd->byte0, nd->params);
406 /* NODEID=tttttt/mdl,mmm.ppssssssssssss,xxxx */
407 id = store_ebcdic(id, nd->type, sizeof(nd->type), '/');
408 id = store_ebcdic(id, nd->model, sizeof(nd->model), ',');
409 id = store_ebcdic(id, nd->manufacturer, sizeof(nd->manufacturer), '.');
410 id = store_ebcdic(id, nd->plant, sizeof(nd->plant), 0);
411 id = store_ebcdic(id, nd->seq, sizeof(nd->seq), ',');
412 sprintf(id, "%04X", nd->tag);
413}
414
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100415static void chsc_process_sei_link_incident(struct chsc_sei_nt0_area *sei_area)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +0200417 struct lir *lir = (struct lir *) &sei_area->ccdf;
418 char iuparams[PARAMS_LEN], iunodeid[NODEID_LEN], auparams[PARAMS_LEN],
419 aunodeid[NODEID_LEN];
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100420
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +0200421 CIO_CRW_EVENT(4, "chsc: link incident (rs=%02x, rs_id=%04x, iq=%02x)\n",
422 sei_area->rs, sei_area->rsid, sei_area->ccdf[0]);
423
424 /* Ignore NULL Link Incident Records. */
425 if (lir->iq.null)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200426 return;
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +0200427
428 /* Inform user that a link requires maintenance actions because it has
429 * become degraded or not operational. Note that this log message is
430 * the primary intention behind a Link Incident Record. */
431
432 format_node_data(iuparams, iunodeid, &lir->incident_node);
433 format_node_data(auparams, aunodeid, &lir->attached_node);
434
435 switch (lir->iq.class) {
436 case LIR_IQ_CLASS_DEGRADED:
437 pr_warn("Link degraded: RS=%02x RSID=%04x IC=%02x "
438 "IUPARAMS=%s IUNODEID=%s AUPARAMS=%s AUNODEID=%s\n",
439 sei_area->rs, sei_area->rsid, lir->ic, iuparams,
440 iunodeid, auparams, aunodeid);
441 break;
442 case LIR_IQ_CLASS_NOT_OPERATIONAL:
443 pr_err("Link stopped: RS=%02x RSID=%04x IC=%02x "
444 "IUPARAMS=%s IUNODEID=%s AUPARAMS=%s AUNODEID=%s\n",
445 sei_area->rs, sei_area->rsid, lir->ic, iuparams,
446 iunodeid, auparams, aunodeid);
447 break;
448 default:
449 break;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200450 }
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100451}
452
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100453static void chsc_process_sei_res_acc(struct chsc_sei_nt0_area *sei_area)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100454{
Cornelia Huck99611f82008-07-14 09:59:02 +0200455 struct chp_link link;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200456 struct chp_id chpid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100457 int status;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100458
459 CIO_CRW_EVENT(4, "chsc: resource accessibility event (rs=%02x, "
460 "rs_id=%04x)\n", sei_area->rs, sei_area->rsid);
461 if (sei_area->rs != 4)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200462 return;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200463 chp_id_init(&chpid);
464 chpid.id = sei_area->rsid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100465 /* allocate a new channel path structure, if needed */
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200466 status = chp_get_status(chpid);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100467 if (status < 0)
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200468 chp_new(chpid);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100469 else if (!status)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200470 return;
Cornelia Huck99611f82008-07-14 09:59:02 +0200471 memset(&link, 0, sizeof(struct chp_link));
472 link.chpid = chpid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100473 if ((sei_area->vf & 0xc0) != 0) {
Cornelia Huck99611f82008-07-14 09:59:02 +0200474 link.fla = sei_area->fla;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100475 if ((sei_area->vf & 0xc0) == 0xc0)
476 /* full link address */
Cornelia Huck99611f82008-07-14 09:59:02 +0200477 link.fla_mask = 0xffff;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100478 else
479 /* link address */
Cornelia Huck99611f82008-07-14 09:59:02 +0200480 link.fla_mask = 0xff00;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100481 }
Cornelia Huck99611f82008-07-14 09:59:02 +0200482 s390_process_res_acc(&link);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100483}
484
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100485static void chsc_process_sei_chp_avail(struct chsc_sei_nt0_area *sei_area)
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200486{
487 struct channel_path *chp;
488 struct chp_id chpid;
489 u8 *data;
490 int num;
491
492 CIO_CRW_EVENT(4, "chsc: channel path availability information\n");
493 if (sei_area->rs != 0)
494 return;
495 data = sei_area->ccdf;
496 chp_id_init(&chpid);
497 for (num = 0; num <= __MAX_CHPID; num++) {
498 if (!chp_test_bit(data, num))
499 continue;
500 chpid.id = num;
501
502 CIO_CRW_EVENT(4, "Update information for channel path "
503 "%x.%02x\n", chpid.cssid, chpid.id);
504 chp = chpid_to_chp(chpid);
505 if (!chp) {
506 chp_new(chpid);
507 continue;
508 }
509 mutex_lock(&chp->lock);
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100510 chp_update_desc(chp);
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200511 mutex_unlock(&chp->lock);
512 }
513}
514
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200515struct chp_config_data {
516 u8 map[32];
517 u8 op;
518 u8 pc;
519};
520
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100521static void chsc_process_sei_chp_config(struct chsc_sei_nt0_area *sei_area)
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200522{
523 struct chp_config_data *data;
524 struct chp_id chpid;
525 int num;
Michael Ernste6d5a422008-12-25 13:39:36 +0100526 char *events[3] = {"configure", "deconfigure", "cancel deconfigure"};
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200527
528 CIO_CRW_EVENT(4, "chsc: channel-path-configuration notification\n");
529 if (sei_area->rs != 0)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200530 return;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200531 data = (struct chp_config_data *) &(sei_area->ccdf);
532 chp_id_init(&chpid);
533 for (num = 0; num <= __MAX_CHPID; num++) {
534 if (!chp_test_bit(data->map, num))
535 continue;
536 chpid.id = num;
Michael Ernste6d5a422008-12-25 13:39:36 +0100537 pr_notice("Processing %s for channel path %x.%02x\n",
538 events[data->op], chpid.cssid, chpid.id);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200539 switch (data->op) {
540 case 0:
541 chp_cfg_schedule(chpid, 1);
542 break;
543 case 1:
544 chp_cfg_schedule(chpid, 0);
545 break;
546 case 2:
547 chp_cfg_cancel_deconfigure(chpid);
548 break;
549 }
550 }
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200551}
552
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100553static void chsc_process_sei_scm_change(struct chsc_sei_nt0_area *sei_area)
Sebastian Ott40ff4cc2012-08-28 16:47:02 +0200554{
555 int ret;
556
557 CIO_CRW_EVENT(4, "chsc: scm change notification\n");
558 if (sei_area->rs != 7)
559 return;
560
561 ret = scm_update_information();
562 if (ret)
563 CIO_CRW_EVENT(0, "chsc: updating change notification"
564 " failed (rc=%d).\n", ret);
565}
566
Sebastian Ottaebfa662013-02-28 12:07:55 +0100567static void chsc_process_sei_scm_avail(struct chsc_sei_nt0_area *sei_area)
568{
569 int ret;
570
571 CIO_CRW_EVENT(4, "chsc: scm available information\n");
572 if (sei_area->rs != 7)
573 return;
574
575 ret = scm_process_availability_information();
576 if (ret)
577 CIO_CRW_EVENT(0, "chsc: process availability information"
578 " failed (rc=%d).\n", ret);
579}
580
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100581static void chsc_process_sei_nt2(struct chsc_sei_nt2_area *sei_area)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100582{
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100583 switch (sei_area->cc) {
584 case 1:
585 zpci_event_error(sei_area->ccdf);
586 break;
587 case 2:
588 zpci_event_availability(sei_area->ccdf);
589 break;
590 default:
Sebastian Ott9a17e972013-01-15 19:04:39 +0100591 CIO_CRW_EVENT(2, "chsc: sei nt2 unhandled cc=%d\n",
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100592 sei_area->cc);
593 break;
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200594 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100595}
596
597static void chsc_process_sei_nt0(struct chsc_sei_nt0_area *sei_area)
598{
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100599 /* which kind of information was stored? */
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100600 switch (sei_area->cc) {
601 case 1: /* link incident*/
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200602 chsc_process_sei_link_incident(sei_area);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100603 break;
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200604 case 2: /* i/o resource accessibility */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200605 chsc_process_sei_res_acc(sei_area);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100606 break;
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200607 case 7: /* channel-path-availability information */
608 chsc_process_sei_chp_avail(sei_area);
609 break;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200610 case 8: /* channel-path-configuration notification */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200611 chsc_process_sei_chp_config(sei_area);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200612 break;
Sebastian Ott40ff4cc2012-08-28 16:47:02 +0200613 case 12: /* scm change notification */
614 chsc_process_sei_scm_change(sei_area);
615 break;
Sebastian Ottaebfa662013-02-28 12:07:55 +0100616 case 14: /* scm available notification */
617 chsc_process_sei_scm_avail(sei_area);
618 break;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100619 default: /* other stuff */
Sebastian Ott9a17e972013-01-15 19:04:39 +0100620 CIO_CRW_EVENT(2, "chsc: sei nt0 unhandled cc=%d\n",
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100621 sei_area->cc);
622 break;
623 }
Sebastian Ott9a17e972013-01-15 19:04:39 +0100624
625 /* Check if we might have lost some information. */
626 if (sei_area->flags & 0x40) {
627 CIO_CRW_EVENT(2, "chsc: event overflow\n");
628 css_schedule_eval_all();
629 }
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100630}
631
Sebastian Ott9a17e972013-01-15 19:04:39 +0100632static void chsc_process_event_information(struct chsc_sei *sei, u64 ntsm)
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100633{
Sebastian Ott06cd7a82014-04-15 20:08:01 +0200634 static int ntsm_unsupported;
635
636 while (true) {
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100637 memset(sei, 0, sizeof(*sei));
638 sei->request.length = 0x0010;
639 sei->request.code = 0x000e;
Sebastian Ott06cd7a82014-04-15 20:08:01 +0200640 if (!ntsm_unsupported)
641 sei->ntsm = ntsm;
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100642
643 if (chsc(sei))
644 break;
645
Sebastian Ott9a17e972013-01-15 19:04:39 +0100646 if (sei->response.code != 0x0001) {
Sebastian Ott06cd7a82014-04-15 20:08:01 +0200647 CIO_CRW_EVENT(2, "chsc: sei failed (rc=%04x, ntsm=%llx)\n",
648 sei->response.code, sei->ntsm);
649
650 if (sei->response.code == 3 && sei->ntsm) {
651 /* Fallback for old firmware. */
652 ntsm_unsupported = 1;
653 continue;
654 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100655 break;
656 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100657
Sebastian Ott9a17e972013-01-15 19:04:39 +0100658 CIO_CRW_EVENT(2, "chsc: sei successful (nt=%d)\n", sei->nt);
659 switch (sei->nt) {
660 case 0:
661 chsc_process_sei_nt0(&sei->u.nt0_area);
662 break;
663 case 2:
664 chsc_process_sei_nt2(&sei->u.nt2_area);
665 break;
666 default:
667 CIO_CRW_EVENT(2, "chsc: unhandled nt: %d\n", sei->nt);
668 break;
669 }
Sebastian Ott06cd7a82014-04-15 20:08:01 +0200670
671 if (!(sei->u.nt0_area.flags & 0x80))
672 break;
673 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100674}
675
Sebastian Ott9a17e972013-01-15 19:04:39 +0100676/*
677 * Handle channel subsystem related CRWs.
678 * Use store event information to find out what's going on.
679 *
680 * Note: Access to sei_page is serialized through machine check handler
681 * thread, so no need for locking.
682 */
Cornelia Huckc1156182008-07-14 09:58:46 +0200683static void chsc_process_crw(struct crw *crw0, struct crw *crw1, int overflow)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100684{
Sebastian Ott9a17e972013-01-15 19:04:39 +0100685 struct chsc_sei *sei = sei_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Cornelia Huckc1156182008-07-14 09:58:46 +0200687 if (overflow) {
688 css_schedule_eval_all();
689 return;
690 }
691 CIO_CRW_EVENT(2, "CRW reports slct=%d, oflw=%d, "
692 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
693 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
694 crw0->erc, crw0->rsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Cornelia Huckc1156182008-07-14 09:58:46 +0200696 CIO_TRACE_EVENT(2, "prcss");
Sebastian Ott9a17e972013-01-15 19:04:39 +0100697 chsc_process_event_information(sei, CHSC_SEI_NT0 | CHSC_SEI_NT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200700void chsc_chp_online(struct chp_id chpid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Sebastian Ott9f3d6d72016-01-25 10:32:51 +0100702 struct channel_path *chp = chpid_to_chp(chpid);
Cornelia Huck99611f82008-07-14 09:59:02 +0200703 struct chp_link link;
Sebastian Ott9f3d6d72016-01-25 10:32:51 +0100704 char dbf_txt[15];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200706 sprintf(dbf_txt, "cadd%x.%02x", chpid.cssid, chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 CIO_TRACE_EVENT(2, dbf_txt);
708
Cornelia Huck22806dc2008-04-17 07:45:59 +0200709 if (chp_get_status(chpid) != 0) {
Cornelia Huck99611f82008-07-14 09:59:02 +0200710 memset(&link, 0, sizeof(struct chp_link));
711 link.chpid = chpid;
Cornelia Huck22806dc2008-04-17 07:45:59 +0200712 /* Wait until previous actions have settled. */
713 css_wait_for_slow_path();
Sebastian Ott9f3d6d72016-01-25 10:32:51 +0100714
715 mutex_lock(&chp->lock);
716 chp_update_desc(chp);
717 mutex_unlock(&chp->lock);
718
Cornelia Huckc820de32008-07-14 09:58:45 +0200719 for_each_subchannel_staged(__s390_process_res_acc, NULL,
Cornelia Huck99611f82008-07-14 09:59:02 +0200720 &link);
Peter Oberparleiter9955e8d12014-02-19 17:43:04 +0100721 css_schedule_reprobe();
Cornelia Huck22806dc2008-04-17 07:45:59 +0200722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200725static void __s390_subchannel_vary_chpid(struct subchannel *sch,
726 struct chp_id chpid, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 unsigned long flags;
Cornelia Huck99611f82008-07-14 09:59:02 +0200729 struct chp_link link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Cornelia Huck99611f82008-07-14 09:59:02 +0200731 memset(&link, 0, sizeof(struct chp_link));
732 link.chpid = chpid;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100733 spin_lock_irqsave(sch->lock, flags);
Cornelia Huckc820de32008-07-14 09:58:45 +0200734 if (sch->driver && sch->driver->chp_event)
Cornelia Huck99611f82008-07-14 09:59:02 +0200735 sch->driver->chp_event(sch, &link,
Cornelia Huckc820de32008-07-14 09:58:45 +0200736 on ? CHP_VARY_ON : CHP_VARY_OFF);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100737 spin_unlock_irqrestore(sch->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100740static int s390_subchannel_vary_chpid_off(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100742 struct chp_id *chpid = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744 __s390_subchannel_vary_chpid(sch, *chpid, 0);
745 return 0;
746}
747
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100748static int s390_subchannel_vary_chpid_on(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100750 struct chp_id *chpid = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 __s390_subchannel_vary_chpid(sch, *chpid, 1);
753 return 0;
754}
755
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200756/**
757 * chsc_chp_vary - propagate channel-path vary operation to subchannels
758 * @chpid: channl-path ID
759 * @on: non-zero for vary online, zero for vary offline
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 */
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200761int chsc_chp_vary(struct chp_id chpid, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200763 struct channel_path *chp = chpid_to_chp(chpid);
Cornelia Huck99611f82008-07-14 09:59:02 +0200764
Cornelia Huck22806dc2008-04-17 07:45:59 +0200765 /* Wait until previous actions have settled. */
766 css_wait_for_slow_path();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 /*
768 * Redo PathVerification on the devices the chpid connects to
769 */
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200770 if (on) {
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100771 /* Try to update the channel path description. */
772 chp_update_desc(chp);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100773 for_each_subchannel_staged(s390_subchannel_vary_chpid_on,
Peter Oberparleiter449666d2013-11-26 14:55:56 +0100774 NULL, &chpid);
775 css_schedule_reprobe();
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200776 } else
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100777 for_each_subchannel_staged(s390_subchannel_vary_chpid_off,
Sebastian Ott3b484ec2011-12-01 13:32:22 +0100778 NULL, &chpid);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return 0;
781}
782
Cornelia Huck495a5b42006-03-24 03:15:14 -0800783static void
784chsc_remove_cmg_attr(struct channel_subsystem *css)
785{
786 int i;
787
788 for (i = 0; i <= __MAX_CHPID; i++) {
789 if (!css->chps[i])
790 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200791 chp_remove_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800792 }
793}
794
795static int
796chsc_add_cmg_attr(struct channel_subsystem *css)
797{
798 int i, ret;
799
800 ret = 0;
801 for (i = 0; i <= __MAX_CHPID; i++) {
802 if (!css->chps[i])
803 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200804 ret = chp_add_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800805 if (ret)
806 goto cleanup;
807 }
808 return ret;
809cleanup:
810 for (--i; i >= 0; i--) {
811 if (!css->chps[i])
812 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200813 chp_remove_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800814 }
815 return ret;
816}
817
Sebastian Ott34196f82010-10-25 16:10:29 +0200818int __chsc_do_secm(struct channel_subsystem *css, int enable)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800819{
820 struct {
821 struct chsc_header request;
822 u32 operation_code : 2;
823 u32 : 30;
824 u32 key : 4;
825 u32 : 28;
826 u32 zeroes1;
827 u32 cub_addr1;
828 u32 zeroes2;
829 u32 cub_addr2;
830 u32 reserved[13];
831 struct chsc_header response;
832 u32 status : 8;
833 u32 : 4;
834 u32 fmt : 4;
835 u32 : 16;
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +0100836 } __attribute__ ((packed)) *secm_area;
Sebastian Ottd53c51f2016-09-28 13:36:19 +0200837 unsigned long flags;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800838 int ret, ccode;
839
Sebastian Ottd53c51f2016-09-28 13:36:19 +0200840 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ott34196f82010-10-25 16:10:29 +0200841 memset(chsc_page, 0, PAGE_SIZE);
842 secm_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800843 secm_area->request.length = 0x0050;
844 secm_area->request.code = 0x0016;
845
Heiko Carstensd1bf8592010-02-26 22:37:30 +0100846 secm_area->key = PAGE_DEFAULT_KEY >> 4;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800847 secm_area->cub_addr1 = (u64)(unsigned long)css->cub_addr1;
848 secm_area->cub_addr2 = (u64)(unsigned long)css->cub_addr2;
849
850 secm_area->operation_code = enable ? 0 : 1;
851
852 ccode = chsc(secm_area);
Sebastian Ott34196f82010-10-25 16:10:29 +0200853 if (ccode > 0) {
854 ret = (ccode == 3) ? -ENODEV : -EBUSY;
855 goto out;
856 }
Cornelia Huck495a5b42006-03-24 03:15:14 -0800857
858 switch (secm_area->response.code) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100859 case 0x0102:
860 case 0x0103:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800861 ret = -EINVAL;
Sebastian Ott17e7d872009-03-26 15:24:17 +0100862 break;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800863 default:
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100864 ret = chsc_error_from_response(secm_area->response.code);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800865 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100866 if (ret != 0)
867 CIO_CRW_EVENT(2, "chsc: secm failed (rc=%04x)\n",
868 secm_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200869out:
Sebastian Ottd53c51f2016-09-28 13:36:19 +0200870 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800871 return ret;
872}
873
874int
875chsc_secm(struct channel_subsystem *css, int enable)
876{
Cornelia Huck495a5b42006-03-24 03:15:14 -0800877 int ret;
878
Cornelia Huck495a5b42006-03-24 03:15:14 -0800879 if (enable && !css->cm_enabled) {
880 css->cub_addr1 = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
881 css->cub_addr2 = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
882 if (!css->cub_addr1 || !css->cub_addr2) {
883 free_page((unsigned long)css->cub_addr1);
884 free_page((unsigned long)css->cub_addr2);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800885 return -ENOMEM;
886 }
887 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200888 ret = __chsc_do_secm(css, enable);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800889 if (!ret) {
890 css->cm_enabled = enable;
891 if (css->cm_enabled) {
892 ret = chsc_add_cmg_attr(css);
893 if (ret) {
Sebastian Ott34196f82010-10-25 16:10:29 +0200894 __chsc_do_secm(css, 0);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800895 css->cm_enabled = 0;
896 }
897 } else
898 chsc_remove_cmg_attr(css);
899 }
Cornelia Huck8c4941c2007-04-27 16:01:38 +0200900 if (!css->cm_enabled) {
Cornelia Huck495a5b42006-03-24 03:15:14 -0800901 free_page((unsigned long)css->cub_addr1);
902 free_page((unsigned long)css->cub_addr2);
903 }
Cornelia Huck495a5b42006-03-24 03:15:14 -0800904 return ret;
905}
906
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200907int chsc_determine_channel_path_desc(struct chp_id chpid, int fmt, int rfmt,
Sebastian Ott906c9762010-10-25 16:10:30 +0200908 int c, int m, void *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Sebastian Ott906c9762010-10-25 16:10:30 +0200910 struct chsc_scpd *scpd_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 int ccode, ret;
912
Sebastian Ottf9773762016-06-21 13:59:08 +0200913 if ((rfmt == 1 || rfmt == 0) && c == 1 &&
914 !css_general_characteristics.fcs)
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200915 return -EINVAL;
916 if ((rfmt == 2) && !css_general_characteristics.cib)
917 return -EINVAL;
Sebastian Ottfcc6dd42016-06-22 19:42:40 +0200918 if ((rfmt == 3) && !css_general_characteristics.util_str)
919 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Sebastian Ott906c9762010-10-25 16:10:30 +0200921 memset(page, 0, PAGE_SIZE);
922 scpd_area = page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800923 scpd_area->request.length = 0x0010;
924 scpd_area->request.code = 0x0002;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200925 scpd_area->cssid = chpid.cssid;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200926 scpd_area->first_chpid = chpid.id;
927 scpd_area->last_chpid = chpid.id;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200928 scpd_area->m = m;
929 scpd_area->c = c;
930 scpd_area->fmt = fmt;
931 scpd_area->rfmt = rfmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 ccode = chsc(scpd_area);
Sebastian Ott906c9762010-10-25 16:10:30 +0200934 if (ccode > 0)
935 return (ccode == 3) ? -ENODEV : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100937 ret = chsc_error_from_response(scpd_area->response.code);
Sebastian Ott906c9762010-10-25 16:10:30 +0200938 if (ret)
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100939 CIO_CRW_EVENT(2, "chsc: scpd failed (rc=%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 scpd_area->response.code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return ret;
942}
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200943EXPORT_SYMBOL_GPL(chsc_determine_channel_path_desc);
944
Sebastian Ottded27d82017-06-29 13:27:22 +0200945#define chsc_det_chp_desc(FMT, c) \
946int chsc_determine_fmt##FMT##_channel_path_desc( \
947 struct chp_id chpid, struct channel_path_desc_fmt##FMT *desc) \
948{ \
949 struct chsc_scpd *scpd_area; \
950 unsigned long flags; \
951 int ret; \
952 \
953 spin_lock_irqsave(&chsc_page_lock, flags); \
954 scpd_area = chsc_page; \
955 ret = chsc_determine_channel_path_desc(chpid, 0, FMT, c, 0, \
956 scpd_area); \
957 if (ret) \
958 goto out; \
959 \
960 memcpy(desc, scpd_area->data, sizeof(*desc)); \
961out: \
962 spin_unlock_irqrestore(&chsc_page_lock, flags); \
963 return ret; \
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200964}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Sebastian Ottded27d82017-06-29 13:27:22 +0200966chsc_det_chp_desc(0, 0)
967chsc_det_chp_desc(1, 1)
Sebastian Ottfcc6dd42016-06-22 19:42:40 +0200968chsc_det_chp_desc(3, 0)
Sebastian Ottce322cc2011-01-05 12:47:56 +0100969
Cornelia Huck495a5b42006-03-24 03:15:14 -0800970static void
971chsc_initialize_cmg_chars(struct channel_path *chp, u8 cmcv,
972 struct cmg_chars *chars)
973{
Sebastian Ott34196f82010-10-25 16:10:29 +0200974 int i, mask;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800975
Sebastian Ott34196f82010-10-25 16:10:29 +0200976 for (i = 0; i < NR_MEASUREMENT_CHARS; i++) {
977 mask = 0x80 >> (i + 3);
978 if (cmcv & mask)
Sebastian Ott0d9bfe92016-01-25 10:30:27 +0100979 chp->cmg_chars.values[i] = chars->values[i];
Sebastian Ott34196f82010-10-25 16:10:29 +0200980 else
Sebastian Ott0d9bfe92016-01-25 10:30:27 +0100981 chp->cmg_chars.values[i] = 0;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800982 }
983}
984
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200985int chsc_get_channel_measurement_chars(struct channel_path *chp)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800986{
Sebastian Ottd53c51f2016-09-28 13:36:19 +0200987 unsigned long flags;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800988 int ccode, ret;
989
990 struct {
991 struct chsc_header request;
992 u32 : 24;
993 u32 first_chpid : 8;
994 u32 : 24;
995 u32 last_chpid : 8;
996 u32 zeroes1;
997 struct chsc_header response;
998 u32 zeroes2;
999 u32 not_valid : 1;
1000 u32 shared : 1;
1001 u32 : 22;
1002 u32 chpid : 8;
1003 u32 cmcv : 5;
1004 u32 : 11;
1005 u32 cmgq : 8;
1006 u32 cmg : 8;
1007 u32 zeroes3;
1008 u32 data[NR_MEASUREMENT_CHARS];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +01001009 } __attribute__ ((packed)) *scmc_area;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001010
Sebastian Ott61f0bfc2016-01-25 10:31:33 +01001011 chp->shared = -1;
1012 chp->cmg = -1;
1013
1014 if (!css_chsc_characteristics.scmc || !css_chsc_characteristics.secm)
Sebastian Ott0b601372016-07-14 11:30:37 +02001015 return -EINVAL;
Sebastian Ott61f0bfc2016-01-25 10:31:33 +01001016
Sebastian Ottd53c51f2016-09-28 13:36:19 +02001017 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ott34196f82010-10-25 16:10:29 +02001018 memset(chsc_page, 0, PAGE_SIZE);
1019 scmc_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001020 scmc_area->request.length = 0x0010;
1021 scmc_area->request.code = 0x0022;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +02001022 scmc_area->first_chpid = chp->chpid.id;
1023 scmc_area->last_chpid = chp->chpid.id;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001024
1025 ccode = chsc(scmc_area);
1026 if (ccode > 0) {
1027 ret = (ccode == 3) ? -ENODEV : -EBUSY;
1028 goto out;
1029 }
1030
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001031 ret = chsc_error_from_response(scmc_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +02001032 if (ret) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001033 CIO_CRW_EVENT(2, "chsc: scmc failed (rc=%04x)\n",
Cornelia Huck495a5b42006-03-24 03:15:14 -08001034 scmc_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +02001035 goto out;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001036 }
Sebastian Ott61f0bfc2016-01-25 10:31:33 +01001037 if (scmc_area->not_valid)
Sebastian Ott34196f82010-10-25 16:10:29 +02001038 goto out;
Sebastian Ott61f0bfc2016-01-25 10:31:33 +01001039
Sebastian Ott34196f82010-10-25 16:10:29 +02001040 chp->cmg = scmc_area->cmg;
1041 chp->shared = scmc_area->shared;
1042 if (chp->cmg != 2 && chp->cmg != 3) {
1043 /* No cmg-dependent data. */
1044 goto out;
1045 }
Sebastian Ott34196f82010-10-25 16:10:29 +02001046 chsc_initialize_cmg_chars(chp, scmc_area->cmcv,
1047 (struct cmg_chars *) &scmc_area->data);
Cornelia Huck495a5b42006-03-24 03:15:14 -08001048out:
Sebastian Ottd53c51f2016-09-28 13:36:19 +02001049 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huck495a5b42006-03-24 03:15:14 -08001050 return ret;
1051}
1052
Sebastian Ott34aec072010-10-25 16:10:28 +02001053int __init chsc_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
Cornelia Huckc1156182008-07-14 09:58:46 +02001055 int ret;
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 sei_page = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
Sebastian Ott34196f82010-10-25 16:10:29 +02001058 chsc_page = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
1059 if (!sei_page || !chsc_page) {
1060 ret = -ENOMEM;
1061 goto out_err;
Cornelia Huckc1156182008-07-14 09:58:46 +02001062 }
Heiko Carstensf5daba12009-03-26 15:24:01 +01001063 ret = crw_register_handler(CRW_RSC_CSS, chsc_process_crw);
Cornelia Huckc1156182008-07-14 09:58:46 +02001064 if (ret)
Sebastian Ott34196f82010-10-25 16:10:29 +02001065 goto out_err;
1066 return ret;
1067out_err:
1068 free_page((unsigned long)chsc_page);
1069 free_page((unsigned long)sei_page);
Cornelia Huckc1156182008-07-14 09:58:46 +02001070 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071}
1072
Sebastian Ott34aec072010-10-25 16:10:28 +02001073void __init chsc_init_cleanup(void)
Cornelia Huck4434a382007-07-27 12:29:21 +02001074{
Heiko Carstensf5daba12009-03-26 15:24:01 +01001075 crw_unregister_handler(CRW_RSC_CSS);
Sebastian Ott34196f82010-10-25 16:10:29 +02001076 free_page((unsigned long)chsc_page);
Sebastian Ott34aec072010-10-25 16:10:28 +02001077 free_page((unsigned long)sei_page);
Cornelia Huck4434a382007-07-27 12:29:21 +02001078}
1079
Sebastian Ott18e22a12015-06-29 18:39:54 +02001080int __chsc_enable_facility(struct chsc_sda_area *sda_area, int operation_code)
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001081{
1082 int ret;
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001083
Sebastian Ott34196f82010-10-25 16:10:29 +02001084 sda_area->request.length = 0x0400;
1085 sda_area->request.code = 0x0031;
1086 sda_area->operation_code = operation_code;
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001087
Sebastian Ott34196f82010-10-25 16:10:29 +02001088 ret = chsc(sda_area);
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001089 if (ret > 0) {
1090 ret = (ret == 3) ? -ENODEV : -EBUSY;
1091 goto out;
1092 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001093
Sebastian Ott34196f82010-10-25 16:10:29 +02001094 switch (sda_area->response.code) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001095 case 0x0101:
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001096 ret = -EOPNOTSUPP;
1097 break;
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001098 default:
Sebastian Ott34196f82010-10-25 16:10:29 +02001099 ret = chsc_error_from_response(sda_area->response.code);
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001100 }
Sebastian Ott18e22a12015-06-29 18:39:54 +02001101out:
1102 return ret;
1103}
1104
1105int chsc_enable_facility(int operation_code)
1106{
1107 struct chsc_sda_area *sda_area;
1108 unsigned long flags;
1109 int ret;
1110
1111 spin_lock_irqsave(&chsc_page_lock, flags);
1112 memset(chsc_page, 0, PAGE_SIZE);
1113 sda_area = chsc_page;
1114
1115 ret = __chsc_enable_facility(sda_area, operation_code);
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001116 if (ret != 0)
1117 CIO_CRW_EVENT(2, "chsc: sda (oc=%x) failed (rc=%04x)\n",
Sebastian Ott34196f82010-10-25 16:10:29 +02001118 operation_code, sda_area->response.code);
Sebastian Ott18e22a12015-06-29 18:39:54 +02001119
Sebastian Ott34196f82010-10-25 16:10:29 +02001120 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001121 return ret;
1122}
1123
Sebastian Otte2e0de92016-06-17 19:45:23 +02001124int __init chsc_get_cssid(int idx)
1125{
1126 struct {
1127 struct chsc_header request;
1128 u8 atype;
1129 u32 : 24;
1130 u32 reserved1[6];
1131 struct chsc_header response;
1132 u32 reserved2[3];
1133 struct {
1134 u8 cssid;
1135 u32 : 24;
1136 } list[0];
1137 } __packed *sdcal_area;
1138 int ret;
1139
1140 spin_lock_irq(&chsc_page_lock);
1141 memset(chsc_page, 0, PAGE_SIZE);
1142 sdcal_area = chsc_page;
1143 sdcal_area->request.length = 0x0020;
1144 sdcal_area->request.code = 0x0034;
1145 sdcal_area->atype = 4;
1146
1147 ret = chsc(sdcal_area);
1148 if (ret) {
1149 ret = (ret == 3) ? -ENODEV : -EBUSY;
1150 goto exit;
1151 }
1152
1153 ret = chsc_error_from_response(sdcal_area->response.code);
1154 if (ret) {
1155 CIO_CRW_EVENT(2, "chsc: sdcal failed (rc=%04x)\n",
1156 sdcal_area->response.code);
1157 goto exit;
1158 }
1159
1160 if ((addr_t) &sdcal_area->list[idx] <
1161 (addr_t) &sdcal_area->response + sdcal_area->response.length)
1162 ret = sdcal_area->list[idx].cssid;
1163 else
1164 ret = -ENODEV;
1165exit:
1166 spin_unlock_irq(&chsc_page_lock);
1167 return ret;
1168}
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170struct css_general_char css_general_characteristics;
1171struct css_chsc_char css_chsc_characteristics;
1172
1173int __init
1174chsc_determine_css_characteristics(void)
1175{
Sebastian Ottd53c51f2016-09-28 13:36:19 +02001176 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 int result;
1178 struct {
1179 struct chsc_header request;
1180 u32 reserved1;
1181 u32 reserved2;
1182 u32 reserved3;
1183 struct chsc_header response;
1184 u32 reserved4;
1185 u32 general_char[510];
Sebastian Ott34aec072010-10-25 16:10:28 +02001186 u32 chsc_char[508];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +01001187 } __attribute__ ((packed)) *scsc_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Sebastian Ottd53c51f2016-09-28 13:36:19 +02001189 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ott34196f82010-10-25 16:10:29 +02001190 memset(chsc_page, 0, PAGE_SIZE);
1191 scsc_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001192 scsc_area->request.length = 0x0010;
1193 scsc_area->request.code = 0x0010;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 result = chsc(scsc_area);
1196 if (result) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001197 result = (result == 3) ? -ENODEV : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 goto exit;
1199 }
1200
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001201 result = chsc_error_from_response(scsc_area->response.code);
1202 if (result == 0) {
1203 memcpy(&css_general_characteristics, scsc_area->general_char,
1204 sizeof(css_general_characteristics));
1205 memcpy(&css_chsc_characteristics, scsc_area->chsc_char,
1206 sizeof(css_chsc_characteristics));
1207 } else
1208 CIO_CRW_EVENT(2, "chsc: scsc failed (rc=%04x)\n",
1209 scsc_area->response.code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210exit:
Sebastian Ottd53c51f2016-09-28 13:36:19 +02001211 spin_unlock_irqrestore(&chsc_page_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 return result;
1213}
1214
1215EXPORT_SYMBOL_GPL(css_general_characteristics);
1216EXPORT_SYMBOL_GPL(css_chsc_characteristics);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001217
Martin Schwidefsky2f82f572016-05-31 09:09:57 +02001218int chsc_sstpc(void *page, unsigned int op, u16 ctrl, u64 *clock_delta)
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001219{
1220 struct {
1221 struct chsc_header request;
1222 unsigned int rsvd0;
1223 unsigned int op : 8;
1224 unsigned int rsvd1 : 8;
1225 unsigned int ctrl : 16;
1226 unsigned int rsvd2[5];
1227 struct chsc_header response;
Martin Schwidefsky2f82f572016-05-31 09:09:57 +02001228 unsigned int rsvd3[3];
1229 u64 clock_delta;
1230 unsigned int rsvd4[2];
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001231 } __attribute__ ((packed)) *rr;
1232 int rc;
1233
1234 memset(page, 0, PAGE_SIZE);
1235 rr = page;
1236 rr->request.length = 0x0020;
1237 rr->request.code = 0x0033;
1238 rr->op = op;
1239 rr->ctrl = ctrl;
1240 rc = chsc(rr);
1241 if (rc)
1242 return -EIO;
1243 rc = (rr->response.code == 0x0001) ? 0 : -EIO;
Martin Schwidefsky2f82f572016-05-31 09:09:57 +02001244 if (clock_delta)
1245 *clock_delta = rr->clock_delta;
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001246 return rc;
1247}
1248
1249int chsc_sstpi(void *page, void *result, size_t size)
1250{
1251 struct {
1252 struct chsc_header request;
1253 unsigned int rsvd0[3];
1254 struct chsc_header response;
Heiko Carstens9fbd5a02016-12-15 11:05:13 +01001255 char data[];
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001256 } __attribute__ ((packed)) *rr;
1257 int rc;
1258
1259 memset(page, 0, PAGE_SIZE);
1260 rr = page;
1261 rr->request.length = 0x0010;
1262 rr->request.code = 0x0038;
1263 rc = chsc(rr);
1264 if (rc)
1265 return -EIO;
1266 memcpy(result, &rr->data, size);
1267 return (rr->response.code == 0x0001) ? 0 : -EIO;
1268}
1269
Michael Ernstfd0457a2010-08-09 18:12:50 +02001270int chsc_siosl(struct subchannel_id schid)
1271{
Sebastian Ott34196f82010-10-25 16:10:29 +02001272 struct {
1273 struct chsc_header request;
1274 u32 word1;
1275 struct subchannel_id sid;
1276 u32 word3;
1277 struct chsc_header response;
1278 u32 word[11];
1279 } __attribute__ ((packed)) *siosl_area;
Michael Ernstfd0457a2010-08-09 18:12:50 +02001280 unsigned long flags;
1281 int ccode;
1282 int rc;
1283
Sebastian Ott34196f82010-10-25 16:10:29 +02001284 spin_lock_irqsave(&chsc_page_lock, flags);
1285 memset(chsc_page, 0, PAGE_SIZE);
1286 siosl_area = chsc_page;
1287 siosl_area->request.length = 0x0010;
1288 siosl_area->request.code = 0x0046;
1289 siosl_area->word1 = 0x80000000;
1290 siosl_area->sid = schid;
Michael Ernstfd0457a2010-08-09 18:12:50 +02001291
Sebastian Ott34196f82010-10-25 16:10:29 +02001292 ccode = chsc(siosl_area);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001293 if (ccode > 0) {
1294 if (ccode == 3)
1295 rc = -ENODEV;
1296 else
1297 rc = -EBUSY;
1298 CIO_MSG_EVENT(2, "chsc: chsc failed for 0.%x.%04x (ccode=%d)\n",
1299 schid.ssid, schid.sch_no, ccode);
1300 goto out;
1301 }
Sebastian Ott34196f82010-10-25 16:10:29 +02001302 rc = chsc_error_from_response(siosl_area->response.code);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001303 if (rc)
1304 CIO_MSG_EVENT(2, "chsc: siosl failed for 0.%x.%04x (rc=%04x)\n",
1305 schid.ssid, schid.sch_no,
Sebastian Ott34196f82010-10-25 16:10:29 +02001306 siosl_area->response.code);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001307 else
1308 CIO_MSG_EVENT(4, "chsc: siosl succeeded for 0.%x.%04x\n",
1309 schid.ssid, schid.sch_no);
1310out:
Sebastian Ott34196f82010-10-25 16:10:29 +02001311 spin_unlock_irqrestore(&chsc_page_lock, flags);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001312 return rc;
1313}
1314EXPORT_SYMBOL_GPL(chsc_siosl);
Sebastian Ott184b08a2012-08-28 16:45:42 +02001315
1316/**
1317 * chsc_scm_info() - store SCM information (SSI)
1318 * @scm_area: request and response block for SSI
1319 * @token: continuation token
1320 *
1321 * Returns 0 on success.
1322 */
1323int chsc_scm_info(struct chsc_scm_info *scm_area, u64 token)
1324{
1325 int ccode, ret;
1326
1327 memset(scm_area, 0, sizeof(*scm_area));
1328 scm_area->request.length = 0x0020;
1329 scm_area->request.code = 0x004C;
1330 scm_area->reqtok = token;
1331
1332 ccode = chsc(scm_area);
1333 if (ccode > 0) {
1334 ret = (ccode == 3) ? -ENODEV : -EBUSY;
1335 goto out;
1336 }
1337 ret = chsc_error_from_response(scm_area->response.code);
1338 if (ret != 0)
1339 CIO_MSG_EVENT(2, "chsc: scm info failed (rc=%04x)\n",
1340 scm_area->response.code);
1341out:
1342 return ret;
1343}
1344EXPORT_SYMBOL_GPL(chsc_scm_info);
Eugene Crosser1c59a862013-04-24 12:00:23 +02001345
1346/**
1347 * chsc_pnso_brinfo() - Perform Network-Subchannel Operation, Bridge Info.
1348 * @schid: id of the subchannel on which PNSO is performed
1349 * @brinfo_area: request and response block for the operation
1350 * @resume_token: resume token for multiblock response
1351 * @cnc: Boolean change-notification control
1352 *
1353 * brinfo_area must be allocated by the caller with get_zeroed_page(GFP_KERNEL)
1354 *
1355 * Returns 0 on success.
1356 */
1357int chsc_pnso_brinfo(struct subchannel_id schid,
1358 struct chsc_pnso_area *brinfo_area,
1359 struct chsc_brinfo_resume_token resume_token,
1360 int cnc)
1361{
1362 memset(brinfo_area, 0, sizeof(*brinfo_area));
1363 brinfo_area->request.length = 0x0030;
1364 brinfo_area->request.code = 0x003d; /* network-subchannel operation */
1365 brinfo_area->m = schid.m;
1366 brinfo_area->ssid = schid.ssid;
1367 brinfo_area->sch = schid.sch_no;
1368 brinfo_area->cssid = schid.cssid;
1369 brinfo_area->oc = 0; /* Store-network-bridging-information list */
1370 brinfo_area->resume_token = resume_token;
1371 brinfo_area->n = (cnc != 0);
1372 if (chsc(brinfo_area))
1373 return -EIO;
1374 return chsc_error_from_response(brinfo_area->response.code);
1375}
1376EXPORT_SYMBOL_GPL(chsc_pnso_brinfo);