blob: 5df0efee54db566d6f13f73060c7d075c42f8276 [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>
Jan Glaubercbc0dd12012-11-29 14:34:48 +010017#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include <asm/cio.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +020020#include <asm/chpid.h>
Cornelia Huck9d92a7e2008-07-14 09:59:05 +020021#include <asm/chsc.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010022#include <asm/crw.h>
Sebastian Ottca4ba152013-06-05 18:59:22 +020023#include <asm/isc.h>
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +020024#include <asm/ebcdic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include "css.h"
27#include "cio.h"
28#include "cio_debug.h"
29#include "ioasm.h"
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020030#include "chp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "chsc.h"
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static void *sei_page;
Sebastian Ott34196f82010-10-25 16:10:29 +020034static void *chsc_page;
35static DEFINE_SPINLOCK(chsc_page_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Cornelia Huckdae39842008-07-17 17:16:47 +020037/**
38 * chsc_error_from_response() - convert a chsc response to an error
39 * @response: chsc response code
40 *
41 * Returns an appropriate Linux error code for @response.
42 */
43int chsc_error_from_response(int response)
Cornelia Huckb9c9a212008-02-05 16:50:34 +010044{
45 switch (response) {
46 case 0x0001:
47 return 0;
48 case 0x0002:
49 case 0x0003:
50 case 0x0006:
51 case 0x0007:
52 case 0x0008:
53 case 0x000a:
Michael Ernstfd0457a2010-08-09 18:12:50 +020054 case 0x0104:
Cornelia Huckb9c9a212008-02-05 16:50:34 +010055 return -EINVAL;
56 case 0x0004:
57 return -EOPNOTSUPP;
Sebastian Ott184b08a2012-08-28 16:45:42 +020058 case 0x000b:
Eugene Crosser1c59a862013-04-24 12:00:23 +020059 case 0x0107: /* "Channel busy" for the op 0x003d */
Sebastian Ott184b08a2012-08-28 16:45:42 +020060 return -EBUSY;
61 case 0x0100:
62 case 0x0102:
63 return -ENOMEM;
Cornelia Huckb9c9a212008-02-05 16:50:34 +010064 default:
65 return -EIO;
66 }
67}
Cornelia Huckdae39842008-07-17 17:16:47 +020068EXPORT_SYMBOL_GPL(chsc_error_from_response);
Cornelia Huckb9c9a212008-02-05 16:50:34 +010069
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020070struct chsc_ssd_area {
71 struct chsc_header request;
72 u16 :10;
73 u16 ssid:2;
74 u16 :4;
75 u16 f_sch; /* first subchannel */
76 u16 :16;
77 u16 l_sch; /* last subchannel */
78 u32 :32;
79 struct chsc_header response;
80 u32 :32;
81 u8 sch_valid : 1;
82 u8 dev_valid : 1;
83 u8 st : 3; /* subchannel type */
84 u8 zeroes : 3;
85 u8 unit_addr; /* unit address */
86 u16 devno; /* device number */
87 u8 path_mask;
88 u8 fla_valid_mask;
89 u16 sch; /* subchannel */
90 u8 chpid[8]; /* chpids 0-7 */
91 u16 fla[8]; /* full link addresses 0-7 */
92} __attribute__ ((packed));
93
94int chsc_get_ssd_info(struct subchannel_id schid, struct chsc_ssd_info *ssd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020096 struct chsc_ssd_area *ssd_area;
97 int ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 int ret;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020099 int i;
100 int mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Sebastian Ott34196f82010-10-25 16:10:29 +0200102 spin_lock_irq(&chsc_page_lock);
103 memset(chsc_page, 0, PAGE_SIZE);
104 ssd_area = chsc_page;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200105 ssd_area->request.length = 0x0010;
106 ssd_area->request.code = 0x0004;
107 ssd_area->ssid = schid.ssid;
108 ssd_area->f_sch = schid.sch_no;
109 ssd_area->l_sch = schid.sch_no;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200110
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200111 ccode = chsc(ssd_area);
112 /* Check response. */
113 if (ccode > 0) {
114 ret = (ccode == 3) ? -ENODEV : -EBUSY;
Sebastian Ott34196f82010-10-25 16:10:29 +0200115 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100117 ret = chsc_error_from_response(ssd_area->response.code);
118 if (ret != 0) {
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200119 CIO_MSG_EVENT(2, "chsc: ssd failed for 0.%x.%04x (rc=%04x)\n",
120 schid.ssid, schid.sch_no,
121 ssd_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200122 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200123 }
124 if (!ssd_area->sch_valid) {
125 ret = -ENODEV;
Sebastian Ott34196f82010-10-25 16:10:29 +0200126 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200127 }
128 /* Copy data */
129 ret = 0;
130 memset(ssd, 0, sizeof(struct chsc_ssd_info));
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100131 if ((ssd_area->st != SUBCHANNEL_TYPE_IO) &&
132 (ssd_area->st != SUBCHANNEL_TYPE_MSG))
Sebastian Ott34196f82010-10-25 16:10:29 +0200133 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200134 ssd->path_mask = ssd_area->path_mask;
135 ssd->fla_valid_mask = ssd_area->fla_valid_mask;
136 for (i = 0; i < 8; i++) {
137 mask = 0x80 >> i;
138 if (ssd_area->path_mask & mask) {
139 chp_id_init(&ssd->chpid[i]);
140 ssd->chpid[i].id = ssd_area->chpid[i];
141 }
142 if (ssd_area->fla_valid_mask & mask)
143 ssd->fla[i] = ssd_area->fla[i];
144 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200145out:
146 spin_unlock_irq(&chsc_page_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 return ret;
148}
149
Sebastian Ottda5b6cb2013-06-05 18:58:35 +0200150/**
151 * chsc_ssqd() - store subchannel QDIO data (SSQD)
152 * @schid: id of the subchannel on which SSQD is performed
153 * @ssqd: request and response block for SSQD
154 *
155 * Returns 0 on success.
156 */
157int chsc_ssqd(struct subchannel_id schid, struct chsc_ssqd_area *ssqd)
158{
159 memset(ssqd, 0, sizeof(*ssqd));
160 ssqd->request.length = 0x0010;
161 ssqd->request.code = 0x0024;
162 ssqd->first_sch = schid.sch_no;
163 ssqd->last_sch = schid.sch_no;
164 ssqd->ssid = schid.ssid;
165
166 if (chsc(ssqd))
167 return -EIO;
168
169 return chsc_error_from_response(ssqd->response.code);
170}
171EXPORT_SYMBOL_GPL(chsc_ssqd);
172
Sebastian Ottca4ba152013-06-05 18:59:22 +0200173/**
174 * chsc_sadc() - set adapter device controls (SADC)
175 * @schid: id of the subchannel on which SADC is performed
176 * @scssc: request and response block for SADC
177 * @summary_indicator_addr: summary indicator address
178 * @subchannel_indicator_addr: subchannel indicator address
179 *
180 * Returns 0 on success.
181 */
182int chsc_sadc(struct subchannel_id schid, struct chsc_scssc_area *scssc,
183 u64 summary_indicator_addr, u64 subchannel_indicator_addr)
184{
185 memset(scssc, 0, sizeof(*scssc));
186 scssc->request.length = 0x0fe0;
187 scssc->request.code = 0x0021;
188 scssc->operation_code = 0;
189
190 scssc->summary_indicator_addr = summary_indicator_addr;
191 scssc->subchannel_indicator_addr = subchannel_indicator_addr;
192
193 scssc->ks = PAGE_DEFAULT_KEY >> 4;
194 scssc->kc = PAGE_DEFAULT_KEY >> 4;
195 scssc->isc = QDIO_AIRQ_ISC;
196 scssc->schid = schid;
197
198 /* enable the time delay disablement facility */
199 if (css_general_characteristics.aif_tdd)
200 scssc->word_with_d_bit = 0x10000000;
201
202 if (chsc(scssc))
203 return -EIO;
204
205 return chsc_error_from_response(scssc->response.code);
206}
207EXPORT_SYMBOL_GPL(chsc_sadc);
208
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100209static int s390_subchannel_remove_chpid(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Cornelia Huck2ec22982006-12-08 15:54:26 +0100211 spin_lock_irq(sch->lock);
Cornelia Huckc820de32008-07-14 09:58:45 +0200212 if (sch->driver && sch->driver->chp_event)
213 if (sch->driver->chp_event(sch, data, CHP_OFFLINE) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 goto out_unreg;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100215 spin_unlock_irq(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return 0;
Stefan Bader387b7342007-04-27 16:01:33 +0200217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218out_unreg:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 sch->lpm = 0;
Stefan Bader387b7342007-04-27 16:01:33 +0200220 spin_unlock_irq(sch->lock);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200221 css_schedule_eval(sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return 0;
223}
224
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200225void chsc_chp_offline(struct chp_id chpid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 char dbf_txt[15];
Cornelia Huck99611f82008-07-14 09:59:02 +0200228 struct chp_link link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200230 sprintf(dbf_txt, "chpr%x.%02x", chpid.cssid, chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 CIO_TRACE_EVENT(2, dbf_txt);
232
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200233 if (chp_get_status(chpid) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return;
Cornelia Huck99611f82008-07-14 09:59:02 +0200235 memset(&link, 0, sizeof(struct chp_link));
236 link.chpid = chpid;
Cornelia Huck22806dc2008-04-17 07:45:59 +0200237 /* Wait until previous actions have settled. */
238 css_wait_for_slow_path();
Cornelia Huck99611f82008-07-14 09:59:02 +0200239 for_each_subchannel_staged(s390_subchannel_remove_chpid, NULL, &link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100242static int __s390_process_res_acc(struct subchannel *sch, void *data)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800243{
Cornelia Huck2ec22982006-12-08 15:54:26 +0100244 spin_lock_irq(sch->lock);
Cornelia Huckc820de32008-07-14 09:58:45 +0200245 if (sch->driver && sch->driver->chp_event)
246 sch->driver->chp_event(sch, data, CHP_ONLINE);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100247 spin_unlock_irq(sch->lock);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100248
Peter Oberparleiterdd9963f2006-09-20 15:59:54 +0200249 return 0;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800250}
251
Cornelia Huck99611f82008-07-14 09:59:02 +0200252static void s390_process_res_acc(struct chp_link *link)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800253{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 char dbf_txt[15];
255
Cornelia Huck99611f82008-07-14 09:59:02 +0200256 sprintf(dbf_txt, "accpr%x.%02x", link->chpid.cssid,
257 link->chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 CIO_TRACE_EVENT( 2, dbf_txt);
Cornelia Huck99611f82008-07-14 09:59:02 +0200259 if (link->fla != 0) {
260 sprintf(dbf_txt, "fla%x", link->fla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 CIO_TRACE_EVENT( 2, dbf_txt);
262 }
Cornelia Huck22806dc2008-04-17 07:45:59 +0200263 /* Wait until previous actions have settled. */
264 css_wait_for_slow_path();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 /*
266 * I/O resources may have become accessible.
267 * Scan through all subchannels that may be concerned and
268 * do a validation on those.
269 * The more information we have (info), the less scanning
270 * will we have to do.
271 */
Peter Oberparleiter449666d2013-11-26 14:55:56 +0100272 for_each_subchannel_staged(__s390_process_res_acc, NULL, link);
273 css_schedule_reprobe();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100276struct chsc_sei_nt0_area {
277 u8 flags;
278 u8 vf; /* validity flags */
279 u8 rs; /* reporting source */
280 u8 cc; /* content code */
281 u16 fla; /* full link address */
282 u16 rsid; /* reporting source id */
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100283 u32 reserved1;
284 u32 reserved2;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100285 /* ccdf has to be big enough for a link-incident record */
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100286 u8 ccdf[PAGE_SIZE - 24 - 16]; /* content-code dependent field */
287} __packed;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100288
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100289struct chsc_sei_nt2_area {
290 u8 flags; /* p and v bit */
291 u8 reserved1;
292 u8 reserved2;
293 u8 cc; /* content code */
294 u32 reserved3[13];
295 u8 ccdf[PAGE_SIZE - 24 - 56]; /* content-code dependent field */
296} __packed;
297
Sebastian Ott509d97b2013-01-15 19:02:01 +0100298#define CHSC_SEI_NT0 (1ULL << 63)
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100299#define CHSC_SEI_NT2 (1ULL << 61)
300
301struct chsc_sei {
302 struct chsc_header request;
303 u32 reserved1;
304 u64 ntsm; /* notification type mask */
305 struct chsc_header response;
Sebastian Ott509d97b2013-01-15 19:02:01 +0100306 u32 :24;
307 u8 nt;
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100308 union {
309 struct chsc_sei_nt0_area nt0_area;
310 struct chsc_sei_nt2_area nt2_area;
311 u8 nt_area[PAGE_SIZE - 24];
312 } u;
313} __packed;
314
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +0200315/*
316 * Node Descriptor as defined in SA22-7204, "Common I/O-Device Commands"
317 */
318
319#define ND_VALIDITY_VALID 0
320#define ND_VALIDITY_OUTDATED 1
321#define ND_VALIDITY_INVALID 2
322
323struct node_descriptor {
324 /* Flags. */
325 union {
326 struct {
327 u32 validity:3;
328 u32 reserved:5;
329 } __packed;
330 u8 byte0;
331 } __packed;
332
333 /* Node parameters. */
334 u32 params:24;
335
336 /* Node ID. */
337 char type[6];
338 char model[3];
339 char manufacturer[3];
340 char plant[2];
341 char seq[12];
342 u16 tag;
343} __packed;
344
345/*
346 * Link Incident Record as defined in SA22-7202, "ESCON I/O Interface"
347 */
348
349#define LIR_IQ_CLASS_INFO 0
350#define LIR_IQ_CLASS_DEGRADED 1
351#define LIR_IQ_CLASS_NOT_OPERATIONAL 2
352
353struct lir {
354 struct {
355 u32 null:1;
356 u32 reserved:3;
357 u32 class:2;
358 u32 reserved2:2;
359 } __packed iq;
360 u32 ic:8;
361 u32 reserved:16;
362 struct node_descriptor incident_node;
363 struct node_descriptor attached_node;
364 u8 reserved2[32];
365} __packed;
366
367#define PARAMS_LEN 10 /* PARAMS=xx,xxxxxx */
368#define NODEID_LEN 35 /* NODEID=tttttt/mdl,mmm.ppssssssssssss,xxxx */
369
370/* Copy EBCIDC text, convert to ASCII and optionally add delimiter. */
371static char *store_ebcdic(char *dest, const char *src, unsigned long len,
372 char delim)
373{
374 memcpy(dest, src, len);
375 EBCASC(dest, len);
376
377 if (delim)
378 dest[len++] = delim;
379
380 return dest + len;
381}
382
383/* Format node ID and parameters for output in LIR log message. */
384static void format_node_data(char *params, char *id, struct node_descriptor *nd)
385{
386 memset(params, 0, PARAMS_LEN);
387 memset(id, 0, NODEID_LEN);
388
389 if (nd->validity != ND_VALIDITY_VALID) {
390 strncpy(params, "n/a", PARAMS_LEN - 1);
391 strncpy(id, "n/a", NODEID_LEN - 1);
392 return;
393 }
394
395 /* PARAMS=xx,xxxxxx */
396 snprintf(params, PARAMS_LEN, "%02x,%06x", nd->byte0, nd->params);
397 /* NODEID=tttttt/mdl,mmm.ppssssssssssss,xxxx */
398 id = store_ebcdic(id, nd->type, sizeof(nd->type), '/');
399 id = store_ebcdic(id, nd->model, sizeof(nd->model), ',');
400 id = store_ebcdic(id, nd->manufacturer, sizeof(nd->manufacturer), '.');
401 id = store_ebcdic(id, nd->plant, sizeof(nd->plant), 0);
402 id = store_ebcdic(id, nd->seq, sizeof(nd->seq), ',');
403 sprintf(id, "%04X", nd->tag);
404}
405
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100406static void chsc_process_sei_link_incident(struct chsc_sei_nt0_area *sei_area)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +0200408 struct lir *lir = (struct lir *) &sei_area->ccdf;
409 char iuparams[PARAMS_LEN], iunodeid[NODEID_LEN], auparams[PARAMS_LEN],
410 aunodeid[NODEID_LEN];
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100411
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +0200412 CIO_CRW_EVENT(4, "chsc: link incident (rs=%02x, rs_id=%04x, iq=%02x)\n",
413 sei_area->rs, sei_area->rsid, sei_area->ccdf[0]);
414
415 /* Ignore NULL Link Incident Records. */
416 if (lir->iq.null)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200417 return;
Peter Oberparleiter1d2334c2015-07-15 14:04:18 +0200418
419 /* Inform user that a link requires maintenance actions because it has
420 * become degraded or not operational. Note that this log message is
421 * the primary intention behind a Link Incident Record. */
422
423 format_node_data(iuparams, iunodeid, &lir->incident_node);
424 format_node_data(auparams, aunodeid, &lir->attached_node);
425
426 switch (lir->iq.class) {
427 case LIR_IQ_CLASS_DEGRADED:
428 pr_warn("Link degraded: RS=%02x RSID=%04x IC=%02x "
429 "IUPARAMS=%s IUNODEID=%s AUPARAMS=%s AUNODEID=%s\n",
430 sei_area->rs, sei_area->rsid, lir->ic, iuparams,
431 iunodeid, auparams, aunodeid);
432 break;
433 case LIR_IQ_CLASS_NOT_OPERATIONAL:
434 pr_err("Link stopped: RS=%02x RSID=%04x IC=%02x "
435 "IUPARAMS=%s IUNODEID=%s AUPARAMS=%s AUNODEID=%s\n",
436 sei_area->rs, sei_area->rsid, lir->ic, iuparams,
437 iunodeid, auparams, aunodeid);
438 break;
439 default:
440 break;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200441 }
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100442}
443
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100444static void chsc_process_sei_res_acc(struct chsc_sei_nt0_area *sei_area)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100445{
Cornelia Huck99611f82008-07-14 09:59:02 +0200446 struct chp_link link;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200447 struct chp_id chpid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100448 int status;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100449
450 CIO_CRW_EVENT(4, "chsc: resource accessibility event (rs=%02x, "
451 "rs_id=%04x)\n", sei_area->rs, sei_area->rsid);
452 if (sei_area->rs != 4)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200453 return;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200454 chp_id_init(&chpid);
455 chpid.id = sei_area->rsid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100456 /* allocate a new channel path structure, if needed */
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200457 status = chp_get_status(chpid);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100458 if (status < 0)
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200459 chp_new(chpid);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100460 else if (!status)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200461 return;
Cornelia Huck99611f82008-07-14 09:59:02 +0200462 memset(&link, 0, sizeof(struct chp_link));
463 link.chpid = chpid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100464 if ((sei_area->vf & 0xc0) != 0) {
Cornelia Huck99611f82008-07-14 09:59:02 +0200465 link.fla = sei_area->fla;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100466 if ((sei_area->vf & 0xc0) == 0xc0)
467 /* full link address */
Cornelia Huck99611f82008-07-14 09:59:02 +0200468 link.fla_mask = 0xffff;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100469 else
470 /* link address */
Cornelia Huck99611f82008-07-14 09:59:02 +0200471 link.fla_mask = 0xff00;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100472 }
Cornelia Huck99611f82008-07-14 09:59:02 +0200473 s390_process_res_acc(&link);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100474}
475
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100476static void chsc_process_sei_chp_avail(struct chsc_sei_nt0_area *sei_area)
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200477{
478 struct channel_path *chp;
479 struct chp_id chpid;
480 u8 *data;
481 int num;
482
483 CIO_CRW_EVENT(4, "chsc: channel path availability information\n");
484 if (sei_area->rs != 0)
485 return;
486 data = sei_area->ccdf;
487 chp_id_init(&chpid);
488 for (num = 0; num <= __MAX_CHPID; num++) {
489 if (!chp_test_bit(data, num))
490 continue;
491 chpid.id = num;
492
493 CIO_CRW_EVENT(4, "Update information for channel path "
494 "%x.%02x\n", chpid.cssid, chpid.id);
495 chp = chpid_to_chp(chpid);
496 if (!chp) {
497 chp_new(chpid);
498 continue;
499 }
500 mutex_lock(&chp->lock);
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100501 chp_update_desc(chp);
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200502 mutex_unlock(&chp->lock);
503 }
504}
505
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200506struct chp_config_data {
507 u8 map[32];
508 u8 op;
509 u8 pc;
510};
511
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100512static void chsc_process_sei_chp_config(struct chsc_sei_nt0_area *sei_area)
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200513{
514 struct chp_config_data *data;
515 struct chp_id chpid;
516 int num;
Michael Ernste6d5a422008-12-25 13:39:36 +0100517 char *events[3] = {"configure", "deconfigure", "cancel deconfigure"};
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200518
519 CIO_CRW_EVENT(4, "chsc: channel-path-configuration notification\n");
520 if (sei_area->rs != 0)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200521 return;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200522 data = (struct chp_config_data *) &(sei_area->ccdf);
523 chp_id_init(&chpid);
524 for (num = 0; num <= __MAX_CHPID; num++) {
525 if (!chp_test_bit(data->map, num))
526 continue;
527 chpid.id = num;
Michael Ernste6d5a422008-12-25 13:39:36 +0100528 pr_notice("Processing %s for channel path %x.%02x\n",
529 events[data->op], chpid.cssid, chpid.id);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200530 switch (data->op) {
531 case 0:
532 chp_cfg_schedule(chpid, 1);
533 break;
534 case 1:
535 chp_cfg_schedule(chpid, 0);
536 break;
537 case 2:
538 chp_cfg_cancel_deconfigure(chpid);
539 break;
540 }
541 }
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200542}
543
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100544static void chsc_process_sei_scm_change(struct chsc_sei_nt0_area *sei_area)
Sebastian Ott40ff4cc2012-08-28 16:47:02 +0200545{
546 int ret;
547
548 CIO_CRW_EVENT(4, "chsc: scm change notification\n");
549 if (sei_area->rs != 7)
550 return;
551
552 ret = scm_update_information();
553 if (ret)
554 CIO_CRW_EVENT(0, "chsc: updating change notification"
555 " failed (rc=%d).\n", ret);
556}
557
Sebastian Ottaebfa662013-02-28 12:07:55 +0100558static void chsc_process_sei_scm_avail(struct chsc_sei_nt0_area *sei_area)
559{
560 int ret;
561
562 CIO_CRW_EVENT(4, "chsc: scm available information\n");
563 if (sei_area->rs != 7)
564 return;
565
566 ret = scm_process_availability_information();
567 if (ret)
568 CIO_CRW_EVENT(0, "chsc: process availability information"
569 " failed (rc=%d).\n", ret);
570}
571
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100572static void chsc_process_sei_nt2(struct chsc_sei_nt2_area *sei_area)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100573{
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100574 switch (sei_area->cc) {
575 case 1:
576 zpci_event_error(sei_area->ccdf);
577 break;
578 case 2:
579 zpci_event_availability(sei_area->ccdf);
580 break;
581 default:
Sebastian Ott9a17e972013-01-15 19:04:39 +0100582 CIO_CRW_EVENT(2, "chsc: sei nt2 unhandled cc=%d\n",
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100583 sei_area->cc);
584 break;
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200585 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100586}
587
588static void chsc_process_sei_nt0(struct chsc_sei_nt0_area *sei_area)
589{
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100590 /* which kind of information was stored? */
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100591 switch (sei_area->cc) {
592 case 1: /* link incident*/
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200593 chsc_process_sei_link_incident(sei_area);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100594 break;
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200595 case 2: /* i/o resource accessibility */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200596 chsc_process_sei_res_acc(sei_area);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100597 break;
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200598 case 7: /* channel-path-availability information */
599 chsc_process_sei_chp_avail(sei_area);
600 break;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200601 case 8: /* channel-path-configuration notification */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200602 chsc_process_sei_chp_config(sei_area);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200603 break;
Sebastian Ott40ff4cc2012-08-28 16:47:02 +0200604 case 12: /* scm change notification */
605 chsc_process_sei_scm_change(sei_area);
606 break;
Sebastian Ottaebfa662013-02-28 12:07:55 +0100607 case 14: /* scm available notification */
608 chsc_process_sei_scm_avail(sei_area);
609 break;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100610 default: /* other stuff */
Sebastian Ott9a17e972013-01-15 19:04:39 +0100611 CIO_CRW_EVENT(2, "chsc: sei nt0 unhandled cc=%d\n",
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100612 sei_area->cc);
613 break;
614 }
Sebastian Ott9a17e972013-01-15 19:04:39 +0100615
616 /* Check if we might have lost some information. */
617 if (sei_area->flags & 0x40) {
618 CIO_CRW_EVENT(2, "chsc: event overflow\n");
619 css_schedule_eval_all();
620 }
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100621}
622
Sebastian Ott9a17e972013-01-15 19:04:39 +0100623static void chsc_process_event_information(struct chsc_sei *sei, u64 ntsm)
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100624{
Sebastian Ott06cd7a82014-04-15 20:08:01 +0200625 static int ntsm_unsupported;
626
627 while (true) {
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100628 memset(sei, 0, sizeof(*sei));
629 sei->request.length = 0x0010;
630 sei->request.code = 0x000e;
Sebastian Ott06cd7a82014-04-15 20:08:01 +0200631 if (!ntsm_unsupported)
632 sei->ntsm = ntsm;
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100633
634 if (chsc(sei))
635 break;
636
Sebastian Ott9a17e972013-01-15 19:04:39 +0100637 if (sei->response.code != 0x0001) {
Sebastian Ott06cd7a82014-04-15 20:08:01 +0200638 CIO_CRW_EVENT(2, "chsc: sei failed (rc=%04x, ntsm=%llx)\n",
639 sei->response.code, sei->ntsm);
640
641 if (sei->response.code == 3 && sei->ntsm) {
642 /* Fallback for old firmware. */
643 ntsm_unsupported = 1;
644 continue;
645 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100646 break;
647 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100648
Sebastian Ott9a17e972013-01-15 19:04:39 +0100649 CIO_CRW_EVENT(2, "chsc: sei successful (nt=%d)\n", sei->nt);
650 switch (sei->nt) {
651 case 0:
652 chsc_process_sei_nt0(&sei->u.nt0_area);
653 break;
654 case 2:
655 chsc_process_sei_nt2(&sei->u.nt2_area);
656 break;
657 default:
658 CIO_CRW_EVENT(2, "chsc: unhandled nt: %d\n", sei->nt);
659 break;
660 }
Sebastian Ott06cd7a82014-04-15 20:08:01 +0200661
662 if (!(sei->u.nt0_area.flags & 0x80))
663 break;
664 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100665}
666
Sebastian Ott9a17e972013-01-15 19:04:39 +0100667/*
668 * Handle channel subsystem related CRWs.
669 * Use store event information to find out what's going on.
670 *
671 * Note: Access to sei_page is serialized through machine check handler
672 * thread, so no need for locking.
673 */
Cornelia Huckc1156182008-07-14 09:58:46 +0200674static void chsc_process_crw(struct crw *crw0, struct crw *crw1, int overflow)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100675{
Sebastian Ott9a17e972013-01-15 19:04:39 +0100676 struct chsc_sei *sei = sei_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Cornelia Huckc1156182008-07-14 09:58:46 +0200678 if (overflow) {
679 css_schedule_eval_all();
680 return;
681 }
682 CIO_CRW_EVENT(2, "CRW reports slct=%d, oflw=%d, "
683 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
684 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
685 crw0->erc, crw0->rsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Cornelia Huckc1156182008-07-14 09:58:46 +0200687 CIO_TRACE_EVENT(2, "prcss");
Sebastian Ott9a17e972013-01-15 19:04:39 +0100688 chsc_process_event_information(sei, CHSC_SEI_NT0 | CHSC_SEI_NT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200691void chsc_chp_online(struct chp_id chpid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 char dbf_txt[15];
Cornelia Huck99611f82008-07-14 09:59:02 +0200694 struct chp_link link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200696 sprintf(dbf_txt, "cadd%x.%02x", chpid.cssid, chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 CIO_TRACE_EVENT(2, dbf_txt);
698
Cornelia Huck22806dc2008-04-17 07:45:59 +0200699 if (chp_get_status(chpid) != 0) {
Cornelia Huck99611f82008-07-14 09:59:02 +0200700 memset(&link, 0, sizeof(struct chp_link));
701 link.chpid = chpid;
Cornelia Huck22806dc2008-04-17 07:45:59 +0200702 /* Wait until previous actions have settled. */
703 css_wait_for_slow_path();
Cornelia Huckc820de32008-07-14 09:58:45 +0200704 for_each_subchannel_staged(__s390_process_res_acc, NULL,
Cornelia Huck99611f82008-07-14 09:59:02 +0200705 &link);
Peter Oberparleiter9955e8d12014-02-19 17:43:04 +0100706 css_schedule_reprobe();
Cornelia Huck22806dc2008-04-17 07:45:59 +0200707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200710static void __s390_subchannel_vary_chpid(struct subchannel *sch,
711 struct chp_id chpid, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 unsigned long flags;
Cornelia Huck99611f82008-07-14 09:59:02 +0200714 struct chp_link link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Cornelia Huck99611f82008-07-14 09:59:02 +0200716 memset(&link, 0, sizeof(struct chp_link));
717 link.chpid = chpid;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100718 spin_lock_irqsave(sch->lock, flags);
Cornelia Huckc820de32008-07-14 09:58:45 +0200719 if (sch->driver && sch->driver->chp_event)
Cornelia Huck99611f82008-07-14 09:59:02 +0200720 sch->driver->chp_event(sch, &link,
Cornelia Huckc820de32008-07-14 09:58:45 +0200721 on ? CHP_VARY_ON : CHP_VARY_OFF);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100722 spin_unlock_irqrestore(sch->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100725static int s390_subchannel_vary_chpid_off(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100727 struct chp_id *chpid = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 __s390_subchannel_vary_chpid(sch, *chpid, 0);
730 return 0;
731}
732
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100733static int s390_subchannel_vary_chpid_on(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100735 struct chp_id *chpid = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 __s390_subchannel_vary_chpid(sch, *chpid, 1);
738 return 0;
739}
740
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200741/**
742 * chsc_chp_vary - propagate channel-path vary operation to subchannels
743 * @chpid: channl-path ID
744 * @on: non-zero for vary online, zero for vary offline
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 */
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200746int chsc_chp_vary(struct chp_id chpid, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200748 struct channel_path *chp = chpid_to_chp(chpid);
Cornelia Huck99611f82008-07-14 09:59:02 +0200749
Cornelia Huck22806dc2008-04-17 07:45:59 +0200750 /* Wait until previous actions have settled. */
751 css_wait_for_slow_path();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 /*
753 * Redo PathVerification on the devices the chpid connects to
754 */
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200755 if (on) {
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100756 /* Try to update the channel path description. */
757 chp_update_desc(chp);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100758 for_each_subchannel_staged(s390_subchannel_vary_chpid_on,
Peter Oberparleiter449666d2013-11-26 14:55:56 +0100759 NULL, &chpid);
760 css_schedule_reprobe();
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200761 } else
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100762 for_each_subchannel_staged(s390_subchannel_vary_chpid_off,
Sebastian Ott3b484ec2011-12-01 13:32:22 +0100763 NULL, &chpid);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return 0;
766}
767
Cornelia Huck495a5b42006-03-24 03:15:14 -0800768static void
769chsc_remove_cmg_attr(struct channel_subsystem *css)
770{
771 int i;
772
773 for (i = 0; i <= __MAX_CHPID; i++) {
774 if (!css->chps[i])
775 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200776 chp_remove_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800777 }
778}
779
780static int
781chsc_add_cmg_attr(struct channel_subsystem *css)
782{
783 int i, ret;
784
785 ret = 0;
786 for (i = 0; i <= __MAX_CHPID; i++) {
787 if (!css->chps[i])
788 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200789 ret = chp_add_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800790 if (ret)
791 goto cleanup;
792 }
793 return ret;
794cleanup:
795 for (--i; i >= 0; i--) {
796 if (!css->chps[i])
797 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200798 chp_remove_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800799 }
800 return ret;
801}
802
Sebastian Ott34196f82010-10-25 16:10:29 +0200803int __chsc_do_secm(struct channel_subsystem *css, int enable)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800804{
805 struct {
806 struct chsc_header request;
807 u32 operation_code : 2;
808 u32 : 30;
809 u32 key : 4;
810 u32 : 28;
811 u32 zeroes1;
812 u32 cub_addr1;
813 u32 zeroes2;
814 u32 cub_addr2;
815 u32 reserved[13];
816 struct chsc_header response;
817 u32 status : 8;
818 u32 : 4;
819 u32 fmt : 4;
820 u32 : 16;
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +0100821 } __attribute__ ((packed)) *secm_area;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800822 int ret, ccode;
823
Sebastian Ott34196f82010-10-25 16:10:29 +0200824 spin_lock_irq(&chsc_page_lock);
825 memset(chsc_page, 0, PAGE_SIZE);
826 secm_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800827 secm_area->request.length = 0x0050;
828 secm_area->request.code = 0x0016;
829
Heiko Carstensd1bf8592010-02-26 22:37:30 +0100830 secm_area->key = PAGE_DEFAULT_KEY >> 4;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800831 secm_area->cub_addr1 = (u64)(unsigned long)css->cub_addr1;
832 secm_area->cub_addr2 = (u64)(unsigned long)css->cub_addr2;
833
834 secm_area->operation_code = enable ? 0 : 1;
835
836 ccode = chsc(secm_area);
Sebastian Ott34196f82010-10-25 16:10:29 +0200837 if (ccode > 0) {
838 ret = (ccode == 3) ? -ENODEV : -EBUSY;
839 goto out;
840 }
Cornelia Huck495a5b42006-03-24 03:15:14 -0800841
842 switch (secm_area->response.code) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100843 case 0x0102:
844 case 0x0103:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800845 ret = -EINVAL;
Sebastian Ott17e7d872009-03-26 15:24:17 +0100846 break;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800847 default:
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100848 ret = chsc_error_from_response(secm_area->response.code);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800849 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100850 if (ret != 0)
851 CIO_CRW_EVENT(2, "chsc: secm failed (rc=%04x)\n",
852 secm_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200853out:
854 spin_unlock_irq(&chsc_page_lock);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800855 return ret;
856}
857
858int
859chsc_secm(struct channel_subsystem *css, int enable)
860{
Cornelia Huck495a5b42006-03-24 03:15:14 -0800861 int ret;
862
Cornelia Huck495a5b42006-03-24 03:15:14 -0800863 if (enable && !css->cm_enabled) {
864 css->cub_addr1 = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
865 css->cub_addr2 = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
866 if (!css->cub_addr1 || !css->cub_addr2) {
867 free_page((unsigned long)css->cub_addr1);
868 free_page((unsigned long)css->cub_addr2);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800869 return -ENOMEM;
870 }
871 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200872 ret = __chsc_do_secm(css, enable);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800873 if (!ret) {
874 css->cm_enabled = enable;
875 if (css->cm_enabled) {
876 ret = chsc_add_cmg_attr(css);
877 if (ret) {
Sebastian Ott34196f82010-10-25 16:10:29 +0200878 __chsc_do_secm(css, 0);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800879 css->cm_enabled = 0;
880 }
881 } else
882 chsc_remove_cmg_attr(css);
883 }
Cornelia Huck8c4941c2007-04-27 16:01:38 +0200884 if (!css->cm_enabled) {
Cornelia Huck495a5b42006-03-24 03:15:14 -0800885 free_page((unsigned long)css->cub_addr1);
886 free_page((unsigned long)css->cub_addr2);
887 }
Cornelia Huck495a5b42006-03-24 03:15:14 -0800888 return ret;
889}
890
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200891int chsc_determine_channel_path_desc(struct chp_id chpid, int fmt, int rfmt,
Sebastian Ott906c9762010-10-25 16:10:30 +0200892 int c, int m, void *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893{
Sebastian Ott906c9762010-10-25 16:10:30 +0200894 struct chsc_scpd *scpd_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 int ccode, ret;
896
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200897 if ((rfmt == 1) && !css_general_characteristics.fcs)
898 return -EINVAL;
899 if ((rfmt == 2) && !css_general_characteristics.cib)
900 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Sebastian Ott906c9762010-10-25 16:10:30 +0200902 memset(page, 0, PAGE_SIZE);
903 scpd_area = page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800904 scpd_area->request.length = 0x0010;
905 scpd_area->request.code = 0x0002;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200906 scpd_area->cssid = chpid.cssid;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200907 scpd_area->first_chpid = chpid.id;
908 scpd_area->last_chpid = chpid.id;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200909 scpd_area->m = m;
910 scpd_area->c = c;
911 scpd_area->fmt = fmt;
912 scpd_area->rfmt = rfmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 ccode = chsc(scpd_area);
Sebastian Ott906c9762010-10-25 16:10:30 +0200915 if (ccode > 0)
916 return (ccode == 3) ? -ENODEV : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100918 ret = chsc_error_from_response(scpd_area->response.code);
Sebastian Ott906c9762010-10-25 16:10:30 +0200919 if (ret)
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100920 CIO_CRW_EVENT(2, "chsc: scpd failed (rc=%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 scpd_area->response.code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return ret;
923}
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200924EXPORT_SYMBOL_GPL(chsc_determine_channel_path_desc);
925
926int chsc_determine_base_channel_path_desc(struct chp_id chpid,
927 struct channel_path_desc *desc)
928{
929 struct chsc_response_struct *chsc_resp;
Sebastian Ott906c9762010-10-25 16:10:30 +0200930 struct chsc_scpd *scpd_area;
Sebastian Ott62da1772010-10-25 16:10:32 +0200931 unsigned long flags;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200932 int ret;
933
Sebastian Ott62da1772010-10-25 16:10:32 +0200934 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ott906c9762010-10-25 16:10:30 +0200935 scpd_area = chsc_page;
936 ret = chsc_determine_channel_path_desc(chpid, 0, 0, 0, 0, scpd_area);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200937 if (ret)
Sebastian Ott906c9762010-10-25 16:10:30 +0200938 goto out;
939 chsc_resp = (void *)&scpd_area->response;
Sebastian Ott878c4952010-07-19 09:22:37 +0200940 memcpy(desc, &chsc_resp->data, sizeof(*desc));
Sebastian Ott906c9762010-10-25 16:10:30 +0200941out:
Sebastian Ott62da1772010-10-25 16:10:32 +0200942 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200943 return ret;
944}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Sebastian Ottce322cc2011-01-05 12:47:56 +0100946int chsc_determine_fmt1_channel_path_desc(struct chp_id chpid,
947 struct channel_path_desc_fmt1 *desc)
948{
949 struct chsc_response_struct *chsc_resp;
950 struct chsc_scpd *scpd_area;
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100951 unsigned long flags;
Sebastian Ottce322cc2011-01-05 12:47:56 +0100952 int ret;
953
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100954 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ottce322cc2011-01-05 12:47:56 +0100955 scpd_area = chsc_page;
956 ret = chsc_determine_channel_path_desc(chpid, 0, 0, 1, 0, scpd_area);
957 if (ret)
958 goto out;
959 chsc_resp = (void *)&scpd_area->response;
960 memcpy(desc, &chsc_resp->data, sizeof(*desc));
961out:
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100962 spin_unlock_irqrestore(&chsc_page_lock, flags);
Sebastian Ottce322cc2011-01-05 12:47:56 +0100963 return ret;
964}
965
Cornelia Huck495a5b42006-03-24 03:15:14 -0800966static void
967chsc_initialize_cmg_chars(struct channel_path *chp, u8 cmcv,
968 struct cmg_chars *chars)
969{
Sebastian Ott34196f82010-10-25 16:10:29 +0200970 int i, mask;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800971
Sebastian Ott34196f82010-10-25 16:10:29 +0200972 for (i = 0; i < NR_MEASUREMENT_CHARS; i++) {
973 mask = 0x80 >> (i + 3);
974 if (cmcv & mask)
Sebastian Ott0d9bfe92016-01-25 10:30:27 +0100975 chp->cmg_chars.values[i] = chars->values[i];
Sebastian Ott34196f82010-10-25 16:10:29 +0200976 else
Sebastian Ott0d9bfe92016-01-25 10:30:27 +0100977 chp->cmg_chars.values[i] = 0;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800978 }
979}
980
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200981int chsc_get_channel_measurement_chars(struct channel_path *chp)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800982{
983 int ccode, ret;
984
985 struct {
986 struct chsc_header request;
987 u32 : 24;
988 u32 first_chpid : 8;
989 u32 : 24;
990 u32 last_chpid : 8;
991 u32 zeroes1;
992 struct chsc_header response;
993 u32 zeroes2;
994 u32 not_valid : 1;
995 u32 shared : 1;
996 u32 : 22;
997 u32 chpid : 8;
998 u32 cmcv : 5;
999 u32 : 11;
1000 u32 cmgq : 8;
1001 u32 cmg : 8;
1002 u32 zeroes3;
1003 u32 data[NR_MEASUREMENT_CHARS];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +01001004 } __attribute__ ((packed)) *scmc_area;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001005
Sebastian Ott34196f82010-10-25 16:10:29 +02001006 spin_lock_irq(&chsc_page_lock);
1007 memset(chsc_page, 0, PAGE_SIZE);
1008 scmc_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001009 scmc_area->request.length = 0x0010;
1010 scmc_area->request.code = 0x0022;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +02001011 scmc_area->first_chpid = chp->chpid.id;
1012 scmc_area->last_chpid = chp->chpid.id;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001013
1014 ccode = chsc(scmc_area);
1015 if (ccode > 0) {
1016 ret = (ccode == 3) ? -ENODEV : -EBUSY;
1017 goto out;
1018 }
1019
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001020 ret = chsc_error_from_response(scmc_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +02001021 if (ret) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001022 CIO_CRW_EVENT(2, "chsc: scmc failed (rc=%04x)\n",
Cornelia Huck495a5b42006-03-24 03:15:14 -08001023 scmc_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +02001024 goto out;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001025 }
Sebastian Ott34196f82010-10-25 16:10:29 +02001026 if (scmc_area->not_valid) {
1027 chp->cmg = -1;
1028 chp->shared = -1;
1029 goto out;
1030 }
1031 chp->cmg = scmc_area->cmg;
1032 chp->shared = scmc_area->shared;
1033 if (chp->cmg != 2 && chp->cmg != 3) {
1034 /* No cmg-dependent data. */
1035 goto out;
1036 }
Sebastian Ott34196f82010-10-25 16:10:29 +02001037 chsc_initialize_cmg_chars(chp, scmc_area->cmcv,
1038 (struct cmg_chars *) &scmc_area->data);
Cornelia Huck495a5b42006-03-24 03:15:14 -08001039out:
Sebastian Ott34196f82010-10-25 16:10:29 +02001040 spin_unlock_irq(&chsc_page_lock);
Cornelia Huck495a5b42006-03-24 03:15:14 -08001041 return ret;
1042}
1043
Sebastian Ott34aec072010-10-25 16:10:28 +02001044int __init chsc_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Cornelia Huckc1156182008-07-14 09:58:46 +02001046 int ret;
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 sei_page = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
Sebastian Ott34196f82010-10-25 16:10:29 +02001049 chsc_page = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
1050 if (!sei_page || !chsc_page) {
1051 ret = -ENOMEM;
1052 goto out_err;
Cornelia Huckc1156182008-07-14 09:58:46 +02001053 }
Heiko Carstensf5daba12009-03-26 15:24:01 +01001054 ret = crw_register_handler(CRW_RSC_CSS, chsc_process_crw);
Cornelia Huckc1156182008-07-14 09:58:46 +02001055 if (ret)
Sebastian Ott34196f82010-10-25 16:10:29 +02001056 goto out_err;
1057 return ret;
1058out_err:
1059 free_page((unsigned long)chsc_page);
1060 free_page((unsigned long)sei_page);
Cornelia Huckc1156182008-07-14 09:58:46 +02001061 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
1063
Sebastian Ott34aec072010-10-25 16:10:28 +02001064void __init chsc_init_cleanup(void)
Cornelia Huck4434a382007-07-27 12:29:21 +02001065{
Heiko Carstensf5daba12009-03-26 15:24:01 +01001066 crw_unregister_handler(CRW_RSC_CSS);
Sebastian Ott34196f82010-10-25 16:10:29 +02001067 free_page((unsigned long)chsc_page);
Sebastian Ott34aec072010-10-25 16:10:28 +02001068 free_page((unsigned long)sei_page);
Cornelia Huck4434a382007-07-27 12:29:21 +02001069}
1070
Sebastian Ott18e22a12015-06-29 18:39:54 +02001071int __chsc_enable_facility(struct chsc_sda_area *sda_area, int operation_code)
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001072{
1073 int ret;
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001074
Sebastian Ott34196f82010-10-25 16:10:29 +02001075 sda_area->request.length = 0x0400;
1076 sda_area->request.code = 0x0031;
1077 sda_area->operation_code = operation_code;
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001078
Sebastian Ott34196f82010-10-25 16:10:29 +02001079 ret = chsc(sda_area);
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001080 if (ret > 0) {
1081 ret = (ret == 3) ? -ENODEV : -EBUSY;
1082 goto out;
1083 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001084
Sebastian Ott34196f82010-10-25 16:10:29 +02001085 switch (sda_area->response.code) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001086 case 0x0101:
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001087 ret = -EOPNOTSUPP;
1088 break;
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001089 default:
Sebastian Ott34196f82010-10-25 16:10:29 +02001090 ret = chsc_error_from_response(sda_area->response.code);
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001091 }
Sebastian Ott18e22a12015-06-29 18:39:54 +02001092out:
1093 return ret;
1094}
1095
1096int chsc_enable_facility(int operation_code)
1097{
1098 struct chsc_sda_area *sda_area;
1099 unsigned long flags;
1100 int ret;
1101
1102 spin_lock_irqsave(&chsc_page_lock, flags);
1103 memset(chsc_page, 0, PAGE_SIZE);
1104 sda_area = chsc_page;
1105
1106 ret = __chsc_enable_facility(sda_area, operation_code);
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001107 if (ret != 0)
1108 CIO_CRW_EVENT(2, "chsc: sda (oc=%x) failed (rc=%04x)\n",
Sebastian Ott34196f82010-10-25 16:10:29 +02001109 operation_code, sda_area->response.code);
Sebastian Ott18e22a12015-06-29 18:39:54 +02001110
Sebastian Ott34196f82010-10-25 16:10:29 +02001111 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001112 return ret;
1113}
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115struct css_general_char css_general_characteristics;
1116struct css_chsc_char css_chsc_characteristics;
1117
1118int __init
1119chsc_determine_css_characteristics(void)
1120{
1121 int result;
1122 struct {
1123 struct chsc_header request;
1124 u32 reserved1;
1125 u32 reserved2;
1126 u32 reserved3;
1127 struct chsc_header response;
1128 u32 reserved4;
1129 u32 general_char[510];
Sebastian Ott34aec072010-10-25 16:10:28 +02001130 u32 chsc_char[508];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +01001131 } __attribute__ ((packed)) *scsc_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Sebastian Ott34196f82010-10-25 16:10:29 +02001133 spin_lock_irq(&chsc_page_lock);
1134 memset(chsc_page, 0, PAGE_SIZE);
1135 scsc_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001136 scsc_area->request.length = 0x0010;
1137 scsc_area->request.code = 0x0010;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 result = chsc(scsc_area);
1140 if (result) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001141 result = (result == 3) ? -ENODEV : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 goto exit;
1143 }
1144
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001145 result = chsc_error_from_response(scsc_area->response.code);
1146 if (result == 0) {
1147 memcpy(&css_general_characteristics, scsc_area->general_char,
1148 sizeof(css_general_characteristics));
1149 memcpy(&css_chsc_characteristics, scsc_area->chsc_char,
1150 sizeof(css_chsc_characteristics));
1151 } else
1152 CIO_CRW_EVENT(2, "chsc: scsc failed (rc=%04x)\n",
1153 scsc_area->response.code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154exit:
Sebastian Ott34196f82010-10-25 16:10:29 +02001155 spin_unlock_irq(&chsc_page_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 return result;
1157}
1158
1159EXPORT_SYMBOL_GPL(css_general_characteristics);
1160EXPORT_SYMBOL_GPL(css_chsc_characteristics);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001161
1162int chsc_sstpc(void *page, unsigned int op, u16 ctrl)
1163{
1164 struct {
1165 struct chsc_header request;
1166 unsigned int rsvd0;
1167 unsigned int op : 8;
1168 unsigned int rsvd1 : 8;
1169 unsigned int ctrl : 16;
1170 unsigned int rsvd2[5];
1171 struct chsc_header response;
1172 unsigned int rsvd3[7];
1173 } __attribute__ ((packed)) *rr;
1174 int rc;
1175
1176 memset(page, 0, PAGE_SIZE);
1177 rr = page;
1178 rr->request.length = 0x0020;
1179 rr->request.code = 0x0033;
1180 rr->op = op;
1181 rr->ctrl = ctrl;
1182 rc = chsc(rr);
1183 if (rc)
1184 return -EIO;
1185 rc = (rr->response.code == 0x0001) ? 0 : -EIO;
1186 return rc;
1187}
1188
1189int chsc_sstpi(void *page, void *result, size_t size)
1190{
1191 struct {
1192 struct chsc_header request;
1193 unsigned int rsvd0[3];
1194 struct chsc_header response;
1195 char data[size];
1196 } __attribute__ ((packed)) *rr;
1197 int rc;
1198
1199 memset(page, 0, PAGE_SIZE);
1200 rr = page;
1201 rr->request.length = 0x0010;
1202 rr->request.code = 0x0038;
1203 rc = chsc(rr);
1204 if (rc)
1205 return -EIO;
1206 memcpy(result, &rr->data, size);
1207 return (rr->response.code == 0x0001) ? 0 : -EIO;
1208}
1209
Michael Ernstfd0457a2010-08-09 18:12:50 +02001210int chsc_siosl(struct subchannel_id schid)
1211{
Sebastian Ott34196f82010-10-25 16:10:29 +02001212 struct {
1213 struct chsc_header request;
1214 u32 word1;
1215 struct subchannel_id sid;
1216 u32 word3;
1217 struct chsc_header response;
1218 u32 word[11];
1219 } __attribute__ ((packed)) *siosl_area;
Michael Ernstfd0457a2010-08-09 18:12:50 +02001220 unsigned long flags;
1221 int ccode;
1222 int rc;
1223
Sebastian Ott34196f82010-10-25 16:10:29 +02001224 spin_lock_irqsave(&chsc_page_lock, flags);
1225 memset(chsc_page, 0, PAGE_SIZE);
1226 siosl_area = chsc_page;
1227 siosl_area->request.length = 0x0010;
1228 siosl_area->request.code = 0x0046;
1229 siosl_area->word1 = 0x80000000;
1230 siosl_area->sid = schid;
Michael Ernstfd0457a2010-08-09 18:12:50 +02001231
Sebastian Ott34196f82010-10-25 16:10:29 +02001232 ccode = chsc(siosl_area);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001233 if (ccode > 0) {
1234 if (ccode == 3)
1235 rc = -ENODEV;
1236 else
1237 rc = -EBUSY;
1238 CIO_MSG_EVENT(2, "chsc: chsc failed for 0.%x.%04x (ccode=%d)\n",
1239 schid.ssid, schid.sch_no, ccode);
1240 goto out;
1241 }
Sebastian Ott34196f82010-10-25 16:10:29 +02001242 rc = chsc_error_from_response(siosl_area->response.code);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001243 if (rc)
1244 CIO_MSG_EVENT(2, "chsc: siosl failed for 0.%x.%04x (rc=%04x)\n",
1245 schid.ssid, schid.sch_no,
Sebastian Ott34196f82010-10-25 16:10:29 +02001246 siosl_area->response.code);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001247 else
1248 CIO_MSG_EVENT(4, "chsc: siosl succeeded for 0.%x.%04x\n",
1249 schid.ssid, schid.sch_no);
1250out:
Sebastian Ott34196f82010-10-25 16:10:29 +02001251 spin_unlock_irqrestore(&chsc_page_lock, flags);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001252 return rc;
1253}
1254EXPORT_SYMBOL_GPL(chsc_siosl);
Sebastian Ott184b08a2012-08-28 16:45:42 +02001255
1256/**
1257 * chsc_scm_info() - store SCM information (SSI)
1258 * @scm_area: request and response block for SSI
1259 * @token: continuation token
1260 *
1261 * Returns 0 on success.
1262 */
1263int chsc_scm_info(struct chsc_scm_info *scm_area, u64 token)
1264{
1265 int ccode, ret;
1266
1267 memset(scm_area, 0, sizeof(*scm_area));
1268 scm_area->request.length = 0x0020;
1269 scm_area->request.code = 0x004C;
1270 scm_area->reqtok = token;
1271
1272 ccode = chsc(scm_area);
1273 if (ccode > 0) {
1274 ret = (ccode == 3) ? -ENODEV : -EBUSY;
1275 goto out;
1276 }
1277 ret = chsc_error_from_response(scm_area->response.code);
1278 if (ret != 0)
1279 CIO_MSG_EVENT(2, "chsc: scm info failed (rc=%04x)\n",
1280 scm_area->response.code);
1281out:
1282 return ret;
1283}
1284EXPORT_SYMBOL_GPL(chsc_scm_info);
Eugene Crosser1c59a862013-04-24 12:00:23 +02001285
1286/**
1287 * chsc_pnso_brinfo() - Perform Network-Subchannel Operation, Bridge Info.
1288 * @schid: id of the subchannel on which PNSO is performed
1289 * @brinfo_area: request and response block for the operation
1290 * @resume_token: resume token for multiblock response
1291 * @cnc: Boolean change-notification control
1292 *
1293 * brinfo_area must be allocated by the caller with get_zeroed_page(GFP_KERNEL)
1294 *
1295 * Returns 0 on success.
1296 */
1297int chsc_pnso_brinfo(struct subchannel_id schid,
1298 struct chsc_pnso_area *brinfo_area,
1299 struct chsc_brinfo_resume_token resume_token,
1300 int cnc)
1301{
1302 memset(brinfo_area, 0, sizeof(*brinfo_area));
1303 brinfo_area->request.length = 0x0030;
1304 brinfo_area->request.code = 0x003d; /* network-subchannel operation */
1305 brinfo_area->m = schid.m;
1306 brinfo_area->ssid = schid.ssid;
1307 brinfo_area->sch = schid.sch_no;
1308 brinfo_area->cssid = schid.cssid;
1309 brinfo_area->oc = 0; /* Store-network-bridging-information list */
1310 brinfo_area->resume_token = resume_token;
1311 brinfo_area->n = (cnc != 0);
1312 if (chsc(brinfo_area))
1313 return -EIO;
1314 return chsc_error_from_response(brinfo_area->response.code);
1315}
1316EXPORT_SYMBOL_GPL(chsc_pnso_brinfo);