blob: 13299f902676e647d43dce13d95f864c81300f53 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include "css.h"
26#include "cio.h"
27#include "cio_debug.h"
28#include "ioasm.h"
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020029#include "chp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "chsc.h"
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static void *sei_page;
Sebastian Ott34196f82010-10-25 16:10:29 +020033static void *chsc_page;
34static DEFINE_SPINLOCK(chsc_page_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Cornelia Huckdae39842008-07-17 17:16:47 +020036/**
37 * chsc_error_from_response() - convert a chsc response to an error
38 * @response: chsc response code
39 *
40 * Returns an appropriate Linux error code for @response.
41 */
42int chsc_error_from_response(int response)
Cornelia Huckb9c9a212008-02-05 16:50:34 +010043{
44 switch (response) {
45 case 0x0001:
46 return 0;
47 case 0x0002:
48 case 0x0003:
49 case 0x0006:
50 case 0x0007:
51 case 0x0008:
52 case 0x000a:
Michael Ernstfd0457a2010-08-09 18:12:50 +020053 case 0x0104:
Cornelia Huckb9c9a212008-02-05 16:50:34 +010054 return -EINVAL;
55 case 0x0004:
56 return -EOPNOTSUPP;
Sebastian Ott184b08a2012-08-28 16:45:42 +020057 case 0x000b:
58 return -EBUSY;
59 case 0x0100:
60 case 0x0102:
61 return -ENOMEM;
Cornelia Huckb9c9a212008-02-05 16:50:34 +010062 default:
63 return -EIO;
64 }
65}
Cornelia Huckdae39842008-07-17 17:16:47 +020066EXPORT_SYMBOL_GPL(chsc_error_from_response);
Cornelia Huckb9c9a212008-02-05 16:50:34 +010067
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020068struct chsc_ssd_area {
69 struct chsc_header request;
70 u16 :10;
71 u16 ssid:2;
72 u16 :4;
73 u16 f_sch; /* first subchannel */
74 u16 :16;
75 u16 l_sch; /* last subchannel */
76 u32 :32;
77 struct chsc_header response;
78 u32 :32;
79 u8 sch_valid : 1;
80 u8 dev_valid : 1;
81 u8 st : 3; /* subchannel type */
82 u8 zeroes : 3;
83 u8 unit_addr; /* unit address */
84 u16 devno; /* device number */
85 u8 path_mask;
86 u8 fla_valid_mask;
87 u16 sch; /* subchannel */
88 u8 chpid[8]; /* chpids 0-7 */
89 u16 fla[8]; /* full link addresses 0-7 */
90} __attribute__ ((packed));
91
92int chsc_get_ssd_info(struct subchannel_id schid, struct chsc_ssd_info *ssd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020094 struct chsc_ssd_area *ssd_area;
95 int ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 int ret;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020097 int i;
98 int mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Sebastian Ott34196f82010-10-25 16:10:29 +0200100 spin_lock_irq(&chsc_page_lock);
101 memset(chsc_page, 0, PAGE_SIZE);
102 ssd_area = chsc_page;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200103 ssd_area->request.length = 0x0010;
104 ssd_area->request.code = 0x0004;
105 ssd_area->ssid = schid.ssid;
106 ssd_area->f_sch = schid.sch_no;
107 ssd_area->l_sch = schid.sch_no;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200108
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200109 ccode = chsc(ssd_area);
110 /* Check response. */
111 if (ccode > 0) {
112 ret = (ccode == 3) ? -ENODEV : -EBUSY;
Sebastian Ott34196f82010-10-25 16:10:29 +0200113 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100115 ret = chsc_error_from_response(ssd_area->response.code);
116 if (ret != 0) {
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200117 CIO_MSG_EVENT(2, "chsc: ssd failed for 0.%x.%04x (rc=%04x)\n",
118 schid.ssid, schid.sch_no,
119 ssd_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200120 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200121 }
122 if (!ssd_area->sch_valid) {
123 ret = -ENODEV;
Sebastian Ott34196f82010-10-25 16:10:29 +0200124 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200125 }
126 /* Copy data */
127 ret = 0;
128 memset(ssd, 0, sizeof(struct chsc_ssd_info));
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100129 if ((ssd_area->st != SUBCHANNEL_TYPE_IO) &&
130 (ssd_area->st != SUBCHANNEL_TYPE_MSG))
Sebastian Ott34196f82010-10-25 16:10:29 +0200131 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200132 ssd->path_mask = ssd_area->path_mask;
133 ssd->fla_valid_mask = ssd_area->fla_valid_mask;
134 for (i = 0; i < 8; i++) {
135 mask = 0x80 >> i;
136 if (ssd_area->path_mask & mask) {
137 chp_id_init(&ssd->chpid[i]);
138 ssd->chpid[i].id = ssd_area->chpid[i];
139 }
140 if (ssd_area->fla_valid_mask & mask)
141 ssd->fla[i] = ssd_area->fla[i];
142 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200143out:
144 spin_unlock_irq(&chsc_page_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return ret;
146}
147
Sebastian Ottda5b6cb2013-06-05 18:58:35 +0200148/**
149 * chsc_ssqd() - store subchannel QDIO data (SSQD)
150 * @schid: id of the subchannel on which SSQD is performed
151 * @ssqd: request and response block for SSQD
152 *
153 * Returns 0 on success.
154 */
155int chsc_ssqd(struct subchannel_id schid, struct chsc_ssqd_area *ssqd)
156{
157 memset(ssqd, 0, sizeof(*ssqd));
158 ssqd->request.length = 0x0010;
159 ssqd->request.code = 0x0024;
160 ssqd->first_sch = schid.sch_no;
161 ssqd->last_sch = schid.sch_no;
162 ssqd->ssid = schid.ssid;
163
164 if (chsc(ssqd))
165 return -EIO;
166
167 return chsc_error_from_response(ssqd->response.code);
168}
169EXPORT_SYMBOL_GPL(chsc_ssqd);
170
Sebastian Ottca4ba152013-06-05 18:59:22 +0200171/**
172 * chsc_sadc() - set adapter device controls (SADC)
173 * @schid: id of the subchannel on which SADC is performed
174 * @scssc: request and response block for SADC
175 * @summary_indicator_addr: summary indicator address
176 * @subchannel_indicator_addr: subchannel indicator address
177 *
178 * Returns 0 on success.
179 */
180int chsc_sadc(struct subchannel_id schid, struct chsc_scssc_area *scssc,
181 u64 summary_indicator_addr, u64 subchannel_indicator_addr)
182{
183 memset(scssc, 0, sizeof(*scssc));
184 scssc->request.length = 0x0fe0;
185 scssc->request.code = 0x0021;
186 scssc->operation_code = 0;
187
188 scssc->summary_indicator_addr = summary_indicator_addr;
189 scssc->subchannel_indicator_addr = subchannel_indicator_addr;
190
191 scssc->ks = PAGE_DEFAULT_KEY >> 4;
192 scssc->kc = PAGE_DEFAULT_KEY >> 4;
193 scssc->isc = QDIO_AIRQ_ISC;
194 scssc->schid = schid;
195
196 /* enable the time delay disablement facility */
197 if (css_general_characteristics.aif_tdd)
198 scssc->word_with_d_bit = 0x10000000;
199
200 if (chsc(scssc))
201 return -EIO;
202
203 return chsc_error_from_response(scssc->response.code);
204}
205EXPORT_SYMBOL_GPL(chsc_sadc);
206
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100207static int s390_subchannel_remove_chpid(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
Cornelia Huck2ec22982006-12-08 15:54:26 +0100209 spin_lock_irq(sch->lock);
Cornelia Huckc820de32008-07-14 09:58:45 +0200210 if (sch->driver && sch->driver->chp_event)
211 if (sch->driver->chp_event(sch, data, CHP_OFFLINE) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 goto out_unreg;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100213 spin_unlock_irq(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return 0;
Stefan Bader387b7342007-04-27 16:01:33 +0200215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216out_unreg:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 sch->lpm = 0;
Stefan Bader387b7342007-04-27 16:01:33 +0200218 spin_unlock_irq(sch->lock);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200219 css_schedule_eval(sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return 0;
221}
222
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200223void chsc_chp_offline(struct chp_id chpid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 char dbf_txt[15];
Cornelia Huck99611f82008-07-14 09:59:02 +0200226 struct chp_link link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200228 sprintf(dbf_txt, "chpr%x.%02x", chpid.cssid, chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 CIO_TRACE_EVENT(2, dbf_txt);
230
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200231 if (chp_get_status(chpid) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return;
Cornelia Huck99611f82008-07-14 09:59:02 +0200233 memset(&link, 0, sizeof(struct chp_link));
234 link.chpid = chpid;
Cornelia Huck22806dc2008-04-17 07:45:59 +0200235 /* Wait until previous actions have settled. */
236 css_wait_for_slow_path();
Cornelia Huck99611f82008-07-14 09:59:02 +0200237 for_each_subchannel_staged(s390_subchannel_remove_chpid, NULL, &link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100240static int s390_process_res_acc_new_sch(struct subchannel_id schid, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800242 struct schib schib;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800243 /*
244 * We don't know the device yet, but since a path
245 * may be available now to the device we'll have
246 * to do recognition again.
247 * Since we don't have any idea about which chpid
248 * that beast may be on we'll have to do a stsch
249 * on all devices, grr...
250 */
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800251 if (stsch_err(schid, &schib))
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800252 /* We're through */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200253 return -ENXIO;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800254
255 /* Put it on the slow path. */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200256 css_schedule_eval(schid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800257 return 0;
258}
259
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100260static int __s390_process_res_acc(struct subchannel *sch, void *data)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800261{
Cornelia Huck2ec22982006-12-08 15:54:26 +0100262 spin_lock_irq(sch->lock);
Cornelia Huckc820de32008-07-14 09:58:45 +0200263 if (sch->driver && sch->driver->chp_event)
264 sch->driver->chp_event(sch, data, CHP_ONLINE);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100265 spin_unlock_irq(sch->lock);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100266
Peter Oberparleiterdd9963f2006-09-20 15:59:54 +0200267 return 0;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800268}
269
Cornelia Huck99611f82008-07-14 09:59:02 +0200270static void s390_process_res_acc(struct chp_link *link)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800271{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 char dbf_txt[15];
273
Cornelia Huck99611f82008-07-14 09:59:02 +0200274 sprintf(dbf_txt, "accpr%x.%02x", link->chpid.cssid,
275 link->chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 CIO_TRACE_EVENT( 2, dbf_txt);
Cornelia Huck99611f82008-07-14 09:59:02 +0200277 if (link->fla != 0) {
278 sprintf(dbf_txt, "fla%x", link->fla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 CIO_TRACE_EVENT( 2, dbf_txt);
280 }
Cornelia Huck22806dc2008-04-17 07:45:59 +0200281 /* Wait until previous actions have settled. */
282 css_wait_for_slow_path();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 /*
284 * I/O resources may have become accessible.
285 * Scan through all subchannels that may be concerned and
286 * do a validation on those.
287 * The more information we have (info), the less scanning
288 * will we have to do.
289 */
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100290 for_each_subchannel_staged(__s390_process_res_acc,
Cornelia Huck99611f82008-07-14 09:59:02 +0200291 s390_process_res_acc_new_sch, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294static int
295__get_chpid_from_lir(void *data)
296{
297 struct lir {
298 u8 iq;
299 u8 ic;
300 u16 sci;
301 /* incident-node descriptor */
302 u32 indesc[28];
303 /* attached-node descriptor */
304 u32 andesc[28];
305 /* incident-specific information */
306 u32 isinfo[28];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +0100307 } __attribute__ ((packed)) *lir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Cornelia Huck12975ae2006-10-11 15:31:47 +0200309 lir = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (!(lir->iq&0x80))
311 /* NULL link incident record */
312 return -EINVAL;
313 if (!(lir->indesc[0]&0xc0000000))
314 /* node descriptor not valid */
315 return -EINVAL;
316 if (!(lir->indesc[0]&0x10000000))
317 /* don't handle device-type nodes - FIXME */
318 return -EINVAL;
319 /* Byte 3 contains the chpid. Could also be CTCA, but we don't care */
320
321 return (u16) (lir->indesc[0]&0x000000ff);
322}
323
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100324struct chsc_sei_nt0_area {
325 u8 flags;
326 u8 vf; /* validity flags */
327 u8 rs; /* reporting source */
328 u8 cc; /* content code */
329 u16 fla; /* full link address */
330 u16 rsid; /* reporting source id */
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100331 u32 reserved1;
332 u32 reserved2;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100333 /* ccdf has to be big enough for a link-incident record */
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100334 u8 ccdf[PAGE_SIZE - 24 - 16]; /* content-code dependent field */
335} __packed;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100336
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100337struct chsc_sei_nt2_area {
338 u8 flags; /* p and v bit */
339 u8 reserved1;
340 u8 reserved2;
341 u8 cc; /* content code */
342 u32 reserved3[13];
343 u8 ccdf[PAGE_SIZE - 24 - 56]; /* content-code dependent field */
344} __packed;
345
Sebastian Ott509d97b2013-01-15 19:02:01 +0100346#define CHSC_SEI_NT0 (1ULL << 63)
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100347#define CHSC_SEI_NT2 (1ULL << 61)
348
349struct chsc_sei {
350 struct chsc_header request;
351 u32 reserved1;
352 u64 ntsm; /* notification type mask */
353 struct chsc_header response;
Sebastian Ott509d97b2013-01-15 19:02:01 +0100354 u32 :24;
355 u8 nt;
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100356 union {
357 struct chsc_sei_nt0_area nt0_area;
358 struct chsc_sei_nt2_area nt2_area;
359 u8 nt_area[PAGE_SIZE - 24];
360 } u;
361} __packed;
362
363static void chsc_process_sei_link_incident(struct chsc_sei_nt0_area *sei_area)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200365 struct chp_id chpid;
366 int id;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100367
368 CIO_CRW_EVENT(4, "chsc: link incident (rs=%02x, rs_id=%04x)\n",
369 sei_area->rs, sei_area->rsid);
370 if (sei_area->rs != 4)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200371 return;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200372 id = __get_chpid_from_lir(sei_area->ccdf);
373 if (id < 0)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100374 CIO_CRW_EVENT(4, "chsc: link incident - invalid LIR\n");
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200375 else {
376 chp_id_init(&chpid);
377 chpid.id = id;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200378 chsc_chp_offline(chpid);
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200379 }
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100380}
381
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100382static void chsc_process_sei_res_acc(struct chsc_sei_nt0_area *sei_area)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100383{
Cornelia Huck99611f82008-07-14 09:59:02 +0200384 struct chp_link link;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200385 struct chp_id chpid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100386 int status;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100387
388 CIO_CRW_EVENT(4, "chsc: resource accessibility event (rs=%02x, "
389 "rs_id=%04x)\n", sei_area->rs, sei_area->rsid);
390 if (sei_area->rs != 4)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200391 return;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200392 chp_id_init(&chpid);
393 chpid.id = sei_area->rsid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100394 /* allocate a new channel path structure, if needed */
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200395 status = chp_get_status(chpid);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100396 if (status < 0)
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200397 chp_new(chpid);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100398 else if (!status)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200399 return;
Cornelia Huck99611f82008-07-14 09:59:02 +0200400 memset(&link, 0, sizeof(struct chp_link));
401 link.chpid = chpid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100402 if ((sei_area->vf & 0xc0) != 0) {
Cornelia Huck99611f82008-07-14 09:59:02 +0200403 link.fla = sei_area->fla;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100404 if ((sei_area->vf & 0xc0) == 0xc0)
405 /* full link address */
Cornelia Huck99611f82008-07-14 09:59:02 +0200406 link.fla_mask = 0xffff;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100407 else
408 /* link address */
Cornelia Huck99611f82008-07-14 09:59:02 +0200409 link.fla_mask = 0xff00;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100410 }
Cornelia Huck99611f82008-07-14 09:59:02 +0200411 s390_process_res_acc(&link);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100412}
413
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100414static void chsc_process_sei_chp_avail(struct chsc_sei_nt0_area *sei_area)
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200415{
416 struct channel_path *chp;
417 struct chp_id chpid;
418 u8 *data;
419 int num;
420
421 CIO_CRW_EVENT(4, "chsc: channel path availability information\n");
422 if (sei_area->rs != 0)
423 return;
424 data = sei_area->ccdf;
425 chp_id_init(&chpid);
426 for (num = 0; num <= __MAX_CHPID; num++) {
427 if (!chp_test_bit(data, num))
428 continue;
429 chpid.id = num;
430
431 CIO_CRW_EVENT(4, "Update information for channel path "
432 "%x.%02x\n", chpid.cssid, chpid.id);
433 chp = chpid_to_chp(chpid);
434 if (!chp) {
435 chp_new(chpid);
436 continue;
437 }
438 mutex_lock(&chp->lock);
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100439 chp_update_desc(chp);
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200440 mutex_unlock(&chp->lock);
441 }
442}
443
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200444struct chp_config_data {
445 u8 map[32];
446 u8 op;
447 u8 pc;
448};
449
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100450static void chsc_process_sei_chp_config(struct chsc_sei_nt0_area *sei_area)
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200451{
452 struct chp_config_data *data;
453 struct chp_id chpid;
454 int num;
Michael Ernste6d5a422008-12-25 13:39:36 +0100455 char *events[3] = {"configure", "deconfigure", "cancel deconfigure"};
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200456
457 CIO_CRW_EVENT(4, "chsc: channel-path-configuration notification\n");
458 if (sei_area->rs != 0)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200459 return;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200460 data = (struct chp_config_data *) &(sei_area->ccdf);
461 chp_id_init(&chpid);
462 for (num = 0; num <= __MAX_CHPID; num++) {
463 if (!chp_test_bit(data->map, num))
464 continue;
465 chpid.id = num;
Michael Ernste6d5a422008-12-25 13:39:36 +0100466 pr_notice("Processing %s for channel path %x.%02x\n",
467 events[data->op], chpid.cssid, chpid.id);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200468 switch (data->op) {
469 case 0:
470 chp_cfg_schedule(chpid, 1);
471 break;
472 case 1:
473 chp_cfg_schedule(chpid, 0);
474 break;
475 case 2:
476 chp_cfg_cancel_deconfigure(chpid);
477 break;
478 }
479 }
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200480}
481
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100482static void chsc_process_sei_scm_change(struct chsc_sei_nt0_area *sei_area)
Sebastian Ott40ff4cc2012-08-28 16:47:02 +0200483{
484 int ret;
485
486 CIO_CRW_EVENT(4, "chsc: scm change notification\n");
487 if (sei_area->rs != 7)
488 return;
489
490 ret = scm_update_information();
491 if (ret)
492 CIO_CRW_EVENT(0, "chsc: updating change notification"
493 " failed (rc=%d).\n", ret);
494}
495
Sebastian Ottaebfa662013-02-28 12:07:55 +0100496static void chsc_process_sei_scm_avail(struct chsc_sei_nt0_area *sei_area)
497{
498 int ret;
499
500 CIO_CRW_EVENT(4, "chsc: scm available information\n");
501 if (sei_area->rs != 7)
502 return;
503
504 ret = scm_process_availability_information();
505 if (ret)
506 CIO_CRW_EVENT(0, "chsc: process availability information"
507 " failed (rc=%d).\n", ret);
508}
509
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100510static void chsc_process_sei_nt2(struct chsc_sei_nt2_area *sei_area)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100511{
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100512 switch (sei_area->cc) {
513 case 1:
514 zpci_event_error(sei_area->ccdf);
515 break;
516 case 2:
517 zpci_event_availability(sei_area->ccdf);
518 break;
519 default:
Sebastian Ott9a17e972013-01-15 19:04:39 +0100520 CIO_CRW_EVENT(2, "chsc: sei nt2 unhandled cc=%d\n",
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100521 sei_area->cc);
522 break;
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200523 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100524}
525
526static void chsc_process_sei_nt0(struct chsc_sei_nt0_area *sei_area)
527{
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100528 /* which kind of information was stored? */
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100529 switch (sei_area->cc) {
530 case 1: /* link incident*/
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200531 chsc_process_sei_link_incident(sei_area);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100532 break;
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200533 case 2: /* i/o resource accessibility */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200534 chsc_process_sei_res_acc(sei_area);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100535 break;
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200536 case 7: /* channel-path-availability information */
537 chsc_process_sei_chp_avail(sei_area);
538 break;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200539 case 8: /* channel-path-configuration notification */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200540 chsc_process_sei_chp_config(sei_area);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200541 break;
Sebastian Ott40ff4cc2012-08-28 16:47:02 +0200542 case 12: /* scm change notification */
543 chsc_process_sei_scm_change(sei_area);
544 break;
Sebastian Ottaebfa662013-02-28 12:07:55 +0100545 case 14: /* scm available notification */
546 chsc_process_sei_scm_avail(sei_area);
547 break;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100548 default: /* other stuff */
Sebastian Ott9a17e972013-01-15 19:04:39 +0100549 CIO_CRW_EVENT(2, "chsc: sei nt0 unhandled cc=%d\n",
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100550 sei_area->cc);
551 break;
552 }
Sebastian Ott9a17e972013-01-15 19:04:39 +0100553
554 /* Check if we might have lost some information. */
555 if (sei_area->flags & 0x40) {
556 CIO_CRW_EVENT(2, "chsc: event overflow\n");
557 css_schedule_eval_all();
558 }
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100559}
560
Sebastian Ott9a17e972013-01-15 19:04:39 +0100561static void chsc_process_event_information(struct chsc_sei *sei, u64 ntsm)
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100562{
563 do {
564 memset(sei, 0, sizeof(*sei));
565 sei->request.length = 0x0010;
566 sei->request.code = 0x000e;
567 sei->ntsm = ntsm;
568
569 if (chsc(sei))
570 break;
571
Sebastian Ott9a17e972013-01-15 19:04:39 +0100572 if (sei->response.code != 0x0001) {
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100573 CIO_CRW_EVENT(2, "chsc: sei failed (rc=%04x)\n",
574 sei->response.code);
575 break;
576 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100577
Sebastian Ott9a17e972013-01-15 19:04:39 +0100578 CIO_CRW_EVENT(2, "chsc: sei successful (nt=%d)\n", sei->nt);
579 switch (sei->nt) {
580 case 0:
581 chsc_process_sei_nt0(&sei->u.nt0_area);
582 break;
583 case 2:
584 chsc_process_sei_nt2(&sei->u.nt2_area);
585 break;
586 default:
587 CIO_CRW_EVENT(2, "chsc: unhandled nt: %d\n", sei->nt);
588 break;
589 }
590 } while (sei->u.nt0_area.flags & 0x80);
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100591}
592
Sebastian Ott9a17e972013-01-15 19:04:39 +0100593/*
594 * Handle channel subsystem related CRWs.
595 * Use store event information to find out what's going on.
596 *
597 * Note: Access to sei_page is serialized through machine check handler
598 * thread, so no need for locking.
599 */
Cornelia Huckc1156182008-07-14 09:58:46 +0200600static void chsc_process_crw(struct crw *crw0, struct crw *crw1, int overflow)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100601{
Sebastian Ott9a17e972013-01-15 19:04:39 +0100602 struct chsc_sei *sei = sei_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Cornelia Huckc1156182008-07-14 09:58:46 +0200604 if (overflow) {
605 css_schedule_eval_all();
606 return;
607 }
608 CIO_CRW_EVENT(2, "CRW reports slct=%d, oflw=%d, "
609 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
610 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
611 crw0->erc, crw0->rsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Cornelia Huckc1156182008-07-14 09:58:46 +0200613 CIO_TRACE_EVENT(2, "prcss");
Sebastian Ott9a17e972013-01-15 19:04:39 +0100614 chsc_process_event_information(sei, CHSC_SEI_NT0 | CHSC_SEI_NT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615}
616
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200617void chsc_chp_online(struct chp_id chpid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 char dbf_txt[15];
Cornelia Huck99611f82008-07-14 09:59:02 +0200620 struct chp_link link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200622 sprintf(dbf_txt, "cadd%x.%02x", chpid.cssid, chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 CIO_TRACE_EVENT(2, dbf_txt);
624
Cornelia Huck22806dc2008-04-17 07:45:59 +0200625 if (chp_get_status(chpid) != 0) {
Cornelia Huck99611f82008-07-14 09:59:02 +0200626 memset(&link, 0, sizeof(struct chp_link));
627 link.chpid = chpid;
Cornelia Huck22806dc2008-04-17 07:45:59 +0200628 /* Wait until previous actions have settled. */
629 css_wait_for_slow_path();
Cornelia Huckc820de32008-07-14 09:58:45 +0200630 for_each_subchannel_staged(__s390_process_res_acc, NULL,
Cornelia Huck99611f82008-07-14 09:59:02 +0200631 &link);
Cornelia Huck22806dc2008-04-17 07:45:59 +0200632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200635static void __s390_subchannel_vary_chpid(struct subchannel *sch,
636 struct chp_id chpid, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 unsigned long flags;
Cornelia Huck99611f82008-07-14 09:59:02 +0200639 struct chp_link link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Cornelia Huck99611f82008-07-14 09:59:02 +0200641 memset(&link, 0, sizeof(struct chp_link));
642 link.chpid = chpid;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100643 spin_lock_irqsave(sch->lock, flags);
Cornelia Huckc820de32008-07-14 09:58:45 +0200644 if (sch->driver && sch->driver->chp_event)
Cornelia Huck99611f82008-07-14 09:59:02 +0200645 sch->driver->chp_event(sch, &link,
Cornelia Huckc820de32008-07-14 09:58:45 +0200646 on ? CHP_VARY_ON : CHP_VARY_OFF);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100647 spin_unlock_irqrestore(sch->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100650static int s390_subchannel_vary_chpid_off(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100652 struct chp_id *chpid = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 __s390_subchannel_vary_chpid(sch, *chpid, 0);
655 return 0;
656}
657
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100658static int s390_subchannel_vary_chpid_on(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100660 struct chp_id *chpid = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 __s390_subchannel_vary_chpid(sch, *chpid, 1);
663 return 0;
664}
665
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800666static int
667__s390_vary_chpid_on(struct subchannel_id schid, void *data)
668{
669 struct schib schib;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800670
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800671 if (stsch_err(schid, &schib))
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800672 /* We're through */
673 return -ENXIO;
674 /* Put it on the slow path. */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200675 css_schedule_eval(schid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800676 return 0;
677}
678
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200679/**
680 * chsc_chp_vary - propagate channel-path vary operation to subchannels
681 * @chpid: channl-path ID
682 * @on: non-zero for vary online, zero for vary offline
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 */
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200684int chsc_chp_vary(struct chp_id chpid, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200686 struct channel_path *chp = chpid_to_chp(chpid);
Cornelia Huck99611f82008-07-14 09:59:02 +0200687
Cornelia Huck22806dc2008-04-17 07:45:59 +0200688 /* Wait until previous actions have settled. */
689 css_wait_for_slow_path();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 /*
691 * Redo PathVerification on the devices the chpid connects to
692 */
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200693 if (on) {
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100694 /* Try to update the channel path description. */
695 chp_update_desc(chp);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100696 for_each_subchannel_staged(s390_subchannel_vary_chpid_on,
Sebastian Ott3b484ec2011-12-01 13:32:22 +0100697 __s390_vary_chpid_on, &chpid);
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200698 } else
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100699 for_each_subchannel_staged(s390_subchannel_vary_chpid_off,
Sebastian Ott3b484ec2011-12-01 13:32:22 +0100700 NULL, &chpid);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return 0;
703}
704
Cornelia Huck495a5b42006-03-24 03:15:14 -0800705static void
706chsc_remove_cmg_attr(struct channel_subsystem *css)
707{
708 int i;
709
710 for (i = 0; i <= __MAX_CHPID; i++) {
711 if (!css->chps[i])
712 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200713 chp_remove_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800714 }
715}
716
717static int
718chsc_add_cmg_attr(struct channel_subsystem *css)
719{
720 int i, ret;
721
722 ret = 0;
723 for (i = 0; i <= __MAX_CHPID; i++) {
724 if (!css->chps[i])
725 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200726 ret = chp_add_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800727 if (ret)
728 goto cleanup;
729 }
730 return ret;
731cleanup:
732 for (--i; i >= 0; i--) {
733 if (!css->chps[i])
734 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200735 chp_remove_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800736 }
737 return ret;
738}
739
Sebastian Ott34196f82010-10-25 16:10:29 +0200740int __chsc_do_secm(struct channel_subsystem *css, int enable)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800741{
742 struct {
743 struct chsc_header request;
744 u32 operation_code : 2;
745 u32 : 30;
746 u32 key : 4;
747 u32 : 28;
748 u32 zeroes1;
749 u32 cub_addr1;
750 u32 zeroes2;
751 u32 cub_addr2;
752 u32 reserved[13];
753 struct chsc_header response;
754 u32 status : 8;
755 u32 : 4;
756 u32 fmt : 4;
757 u32 : 16;
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +0100758 } __attribute__ ((packed)) *secm_area;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800759 int ret, ccode;
760
Sebastian Ott34196f82010-10-25 16:10:29 +0200761 spin_lock_irq(&chsc_page_lock);
762 memset(chsc_page, 0, PAGE_SIZE);
763 secm_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800764 secm_area->request.length = 0x0050;
765 secm_area->request.code = 0x0016;
766
Heiko Carstensd1bf8592010-02-26 22:37:30 +0100767 secm_area->key = PAGE_DEFAULT_KEY >> 4;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800768 secm_area->cub_addr1 = (u64)(unsigned long)css->cub_addr1;
769 secm_area->cub_addr2 = (u64)(unsigned long)css->cub_addr2;
770
771 secm_area->operation_code = enable ? 0 : 1;
772
773 ccode = chsc(secm_area);
Sebastian Ott34196f82010-10-25 16:10:29 +0200774 if (ccode > 0) {
775 ret = (ccode == 3) ? -ENODEV : -EBUSY;
776 goto out;
777 }
Cornelia Huck495a5b42006-03-24 03:15:14 -0800778
779 switch (secm_area->response.code) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100780 case 0x0102:
781 case 0x0103:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800782 ret = -EINVAL;
Sebastian Ott17e7d872009-03-26 15:24:17 +0100783 break;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800784 default:
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100785 ret = chsc_error_from_response(secm_area->response.code);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800786 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100787 if (ret != 0)
788 CIO_CRW_EVENT(2, "chsc: secm failed (rc=%04x)\n",
789 secm_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200790out:
791 spin_unlock_irq(&chsc_page_lock);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800792 return ret;
793}
794
795int
796chsc_secm(struct channel_subsystem *css, int enable)
797{
Cornelia Huck495a5b42006-03-24 03:15:14 -0800798 int ret;
799
Cornelia Huck495a5b42006-03-24 03:15:14 -0800800 if (enable && !css->cm_enabled) {
801 css->cub_addr1 = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
802 css->cub_addr2 = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
803 if (!css->cub_addr1 || !css->cub_addr2) {
804 free_page((unsigned long)css->cub_addr1);
805 free_page((unsigned long)css->cub_addr2);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800806 return -ENOMEM;
807 }
808 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200809 ret = __chsc_do_secm(css, enable);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800810 if (!ret) {
811 css->cm_enabled = enable;
812 if (css->cm_enabled) {
813 ret = chsc_add_cmg_attr(css);
814 if (ret) {
Sebastian Ott34196f82010-10-25 16:10:29 +0200815 __chsc_do_secm(css, 0);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800816 css->cm_enabled = 0;
817 }
818 } else
819 chsc_remove_cmg_attr(css);
820 }
Cornelia Huck8c4941c2007-04-27 16:01:38 +0200821 if (!css->cm_enabled) {
Cornelia Huck495a5b42006-03-24 03:15:14 -0800822 free_page((unsigned long)css->cub_addr1);
823 free_page((unsigned long)css->cub_addr2);
824 }
Cornelia Huck495a5b42006-03-24 03:15:14 -0800825 return ret;
826}
827
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200828int chsc_determine_channel_path_desc(struct chp_id chpid, int fmt, int rfmt,
Sebastian Ott906c9762010-10-25 16:10:30 +0200829 int c, int m, void *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
Sebastian Ott906c9762010-10-25 16:10:30 +0200831 struct chsc_scpd *scpd_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 int ccode, ret;
833
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200834 if ((rfmt == 1) && !css_general_characteristics.fcs)
835 return -EINVAL;
836 if ((rfmt == 2) && !css_general_characteristics.cib)
837 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Sebastian Ott906c9762010-10-25 16:10:30 +0200839 memset(page, 0, PAGE_SIZE);
840 scpd_area = page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800841 scpd_area->request.length = 0x0010;
842 scpd_area->request.code = 0x0002;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200843 scpd_area->cssid = chpid.cssid;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200844 scpd_area->first_chpid = chpid.id;
845 scpd_area->last_chpid = chpid.id;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200846 scpd_area->m = m;
847 scpd_area->c = c;
848 scpd_area->fmt = fmt;
849 scpd_area->rfmt = rfmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 ccode = chsc(scpd_area);
Sebastian Ott906c9762010-10-25 16:10:30 +0200852 if (ccode > 0)
853 return (ccode == 3) ? -ENODEV : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100855 ret = chsc_error_from_response(scpd_area->response.code);
Sebastian Ott906c9762010-10-25 16:10:30 +0200856 if (ret)
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100857 CIO_CRW_EVENT(2, "chsc: scpd failed (rc=%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 scpd_area->response.code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return ret;
860}
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200861EXPORT_SYMBOL_GPL(chsc_determine_channel_path_desc);
862
863int chsc_determine_base_channel_path_desc(struct chp_id chpid,
864 struct channel_path_desc *desc)
865{
866 struct chsc_response_struct *chsc_resp;
Sebastian Ott906c9762010-10-25 16:10:30 +0200867 struct chsc_scpd *scpd_area;
Sebastian Ott62da1772010-10-25 16:10:32 +0200868 unsigned long flags;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200869 int ret;
870
Sebastian Ott62da1772010-10-25 16:10:32 +0200871 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ott906c9762010-10-25 16:10:30 +0200872 scpd_area = chsc_page;
873 ret = chsc_determine_channel_path_desc(chpid, 0, 0, 0, 0, scpd_area);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200874 if (ret)
Sebastian Ott906c9762010-10-25 16:10:30 +0200875 goto out;
876 chsc_resp = (void *)&scpd_area->response;
Sebastian Ott878c4952010-07-19 09:22:37 +0200877 memcpy(desc, &chsc_resp->data, sizeof(*desc));
Sebastian Ott906c9762010-10-25 16:10:30 +0200878out:
Sebastian Ott62da1772010-10-25 16:10:32 +0200879 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200880 return ret;
881}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Sebastian Ottce322cc2011-01-05 12:47:56 +0100883int chsc_determine_fmt1_channel_path_desc(struct chp_id chpid,
884 struct channel_path_desc_fmt1 *desc)
885{
886 struct chsc_response_struct *chsc_resp;
887 struct chsc_scpd *scpd_area;
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100888 unsigned long flags;
Sebastian Ottce322cc2011-01-05 12:47:56 +0100889 int ret;
890
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100891 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ottce322cc2011-01-05 12:47:56 +0100892 scpd_area = chsc_page;
893 ret = chsc_determine_channel_path_desc(chpid, 0, 0, 1, 0, scpd_area);
894 if (ret)
895 goto out;
896 chsc_resp = (void *)&scpd_area->response;
897 memcpy(desc, &chsc_resp->data, sizeof(*desc));
898out:
Peter Oberparleitercce0eac2013-03-11 12:58:18 +0100899 spin_unlock_irqrestore(&chsc_page_lock, flags);
Sebastian Ottce322cc2011-01-05 12:47:56 +0100900 return ret;
901}
902
Cornelia Huck495a5b42006-03-24 03:15:14 -0800903static void
904chsc_initialize_cmg_chars(struct channel_path *chp, u8 cmcv,
905 struct cmg_chars *chars)
906{
Sebastian Ott34196f82010-10-25 16:10:29 +0200907 struct cmg_chars *cmg_chars;
908 int i, mask;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800909
Sebastian Ott34196f82010-10-25 16:10:29 +0200910 cmg_chars = chp->cmg_chars;
911 for (i = 0; i < NR_MEASUREMENT_CHARS; i++) {
912 mask = 0x80 >> (i + 3);
913 if (cmcv & mask)
914 cmg_chars->values[i] = chars->values[i];
915 else
916 cmg_chars->values[i] = 0;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800917 }
918}
919
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200920int chsc_get_channel_measurement_chars(struct channel_path *chp)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800921{
Sebastian Ott34196f82010-10-25 16:10:29 +0200922 struct cmg_chars *cmg_chars;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800923 int ccode, ret;
924
925 struct {
926 struct chsc_header request;
927 u32 : 24;
928 u32 first_chpid : 8;
929 u32 : 24;
930 u32 last_chpid : 8;
931 u32 zeroes1;
932 struct chsc_header response;
933 u32 zeroes2;
934 u32 not_valid : 1;
935 u32 shared : 1;
936 u32 : 22;
937 u32 chpid : 8;
938 u32 cmcv : 5;
939 u32 : 11;
940 u32 cmgq : 8;
941 u32 cmg : 8;
942 u32 zeroes3;
943 u32 data[NR_MEASUREMENT_CHARS];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +0100944 } __attribute__ ((packed)) *scmc_area;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800945
Sebastian Ott34196f82010-10-25 16:10:29 +0200946 chp->cmg_chars = NULL;
947 cmg_chars = kmalloc(sizeof(*cmg_chars), GFP_KERNEL);
948 if (!cmg_chars)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800949 return -ENOMEM;
950
Sebastian Ott34196f82010-10-25 16:10:29 +0200951 spin_lock_irq(&chsc_page_lock);
952 memset(chsc_page, 0, PAGE_SIZE);
953 scmc_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800954 scmc_area->request.length = 0x0010;
955 scmc_area->request.code = 0x0022;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200956 scmc_area->first_chpid = chp->chpid.id;
957 scmc_area->last_chpid = chp->chpid.id;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800958
959 ccode = chsc(scmc_area);
960 if (ccode > 0) {
961 ret = (ccode == 3) ? -ENODEV : -EBUSY;
962 goto out;
963 }
964
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100965 ret = chsc_error_from_response(scmc_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200966 if (ret) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100967 CIO_CRW_EVENT(2, "chsc: scmc failed (rc=%04x)\n",
Cornelia Huck495a5b42006-03-24 03:15:14 -0800968 scmc_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200969 goto out;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800970 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200971 if (scmc_area->not_valid) {
972 chp->cmg = -1;
973 chp->shared = -1;
974 goto out;
975 }
976 chp->cmg = scmc_area->cmg;
977 chp->shared = scmc_area->shared;
978 if (chp->cmg != 2 && chp->cmg != 3) {
979 /* No cmg-dependent data. */
980 goto out;
981 }
982 chp->cmg_chars = cmg_chars;
983 chsc_initialize_cmg_chars(chp, scmc_area->cmcv,
984 (struct cmg_chars *) &scmc_area->data);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800985out:
Sebastian Ott34196f82010-10-25 16:10:29 +0200986 spin_unlock_irq(&chsc_page_lock);
987 if (!chp->cmg_chars)
988 kfree(cmg_chars);
989
Cornelia Huck495a5b42006-03-24 03:15:14 -0800990 return ret;
991}
992
Sebastian Ott34aec072010-10-25 16:10:28 +0200993int __init chsc_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Cornelia Huckc1156182008-07-14 09:58:46 +0200995 int ret;
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 sei_page = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
Sebastian Ott34196f82010-10-25 16:10:29 +0200998 chsc_page = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
999 if (!sei_page || !chsc_page) {
1000 ret = -ENOMEM;
1001 goto out_err;
Cornelia Huckc1156182008-07-14 09:58:46 +02001002 }
Heiko Carstensf5daba12009-03-26 15:24:01 +01001003 ret = crw_register_handler(CRW_RSC_CSS, chsc_process_crw);
Cornelia Huckc1156182008-07-14 09:58:46 +02001004 if (ret)
Sebastian Ott34196f82010-10-25 16:10:29 +02001005 goto out_err;
1006 return ret;
1007out_err:
1008 free_page((unsigned long)chsc_page);
1009 free_page((unsigned long)sei_page);
Cornelia Huckc1156182008-07-14 09:58:46 +02001010 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
Sebastian Ott34aec072010-10-25 16:10:28 +02001013void __init chsc_init_cleanup(void)
Cornelia Huck4434a382007-07-27 12:29:21 +02001014{
Heiko Carstensf5daba12009-03-26 15:24:01 +01001015 crw_unregister_handler(CRW_RSC_CSS);
Sebastian Ott34196f82010-10-25 16:10:29 +02001016 free_page((unsigned long)chsc_page);
Sebastian Ott34aec072010-10-25 16:10:28 +02001017 free_page((unsigned long)sei_page);
Cornelia Huck4434a382007-07-27 12:29:21 +02001018}
1019
Sebastian Ott818c2722010-04-22 17:17:03 +02001020int chsc_enable_facility(int operation_code)
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001021{
Sebastian Ott34196f82010-10-25 16:10:29 +02001022 unsigned long flags;
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001023 int ret;
Sebastian Ott34196f82010-10-25 16:10:29 +02001024 struct {
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001025 struct chsc_header request;
1026 u8 reserved1:4;
1027 u8 format:4;
1028 u8 reserved2;
1029 u16 operation_code;
1030 u32 reserved3;
1031 u32 reserved4;
1032 u32 operation_data_area[252];
1033 struct chsc_header response;
1034 u32 reserved5:4;
1035 u32 format2:4;
1036 u32 reserved6:24;
Sebastian Ott34196f82010-10-25 16:10:29 +02001037 } __attribute__ ((packed)) *sda_area;
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001038
Sebastian Ott34196f82010-10-25 16:10:29 +02001039 spin_lock_irqsave(&chsc_page_lock, flags);
1040 memset(chsc_page, 0, PAGE_SIZE);
1041 sda_area = chsc_page;
1042 sda_area->request.length = 0x0400;
1043 sda_area->request.code = 0x0031;
1044 sda_area->operation_code = operation_code;
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001045
Sebastian Ott34196f82010-10-25 16:10:29 +02001046 ret = chsc(sda_area);
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001047 if (ret > 0) {
1048 ret = (ret == 3) ? -ENODEV : -EBUSY;
1049 goto out;
1050 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001051
Sebastian Ott34196f82010-10-25 16:10:29 +02001052 switch (sda_area->response.code) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001053 case 0x0101:
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001054 ret = -EOPNOTSUPP;
1055 break;
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001056 default:
Sebastian Ott34196f82010-10-25 16:10:29 +02001057 ret = chsc_error_from_response(sda_area->response.code);
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001058 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001059 if (ret != 0)
1060 CIO_CRW_EVENT(2, "chsc: sda (oc=%x) failed (rc=%04x)\n",
Sebastian Ott34196f82010-10-25 16:10:29 +02001061 operation_code, sda_area->response.code);
1062out:
1063 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huckfb6958a2006-01-06 00:19:25 -08001064 return ret;
1065}
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067struct css_general_char css_general_characteristics;
1068struct css_chsc_char css_chsc_characteristics;
1069
1070int __init
1071chsc_determine_css_characteristics(void)
1072{
1073 int result;
1074 struct {
1075 struct chsc_header request;
1076 u32 reserved1;
1077 u32 reserved2;
1078 u32 reserved3;
1079 struct chsc_header response;
1080 u32 reserved4;
1081 u32 general_char[510];
Sebastian Ott34aec072010-10-25 16:10:28 +02001082 u32 chsc_char[508];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +01001083 } __attribute__ ((packed)) *scsc_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Sebastian Ott34196f82010-10-25 16:10:29 +02001085 spin_lock_irq(&chsc_page_lock);
1086 memset(chsc_page, 0, PAGE_SIZE);
1087 scsc_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001088 scsc_area->request.length = 0x0010;
1089 scsc_area->request.code = 0x0010;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 result = chsc(scsc_area);
1092 if (result) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001093 result = (result == 3) ? -ENODEV : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 goto exit;
1095 }
1096
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001097 result = chsc_error_from_response(scsc_area->response.code);
1098 if (result == 0) {
1099 memcpy(&css_general_characteristics, scsc_area->general_char,
1100 sizeof(css_general_characteristics));
1101 memcpy(&css_chsc_characteristics, scsc_area->chsc_char,
1102 sizeof(css_chsc_characteristics));
1103 } else
1104 CIO_CRW_EVENT(2, "chsc: scsc failed (rc=%04x)\n",
1105 scsc_area->response.code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106exit:
Sebastian Ott34196f82010-10-25 16:10:29 +02001107 spin_unlock_irq(&chsc_page_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 return result;
1109}
1110
1111EXPORT_SYMBOL_GPL(css_general_characteristics);
1112EXPORT_SYMBOL_GPL(css_chsc_characteristics);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001113
1114int chsc_sstpc(void *page, unsigned int op, u16 ctrl)
1115{
1116 struct {
1117 struct chsc_header request;
1118 unsigned int rsvd0;
1119 unsigned int op : 8;
1120 unsigned int rsvd1 : 8;
1121 unsigned int ctrl : 16;
1122 unsigned int rsvd2[5];
1123 struct chsc_header response;
1124 unsigned int rsvd3[7];
1125 } __attribute__ ((packed)) *rr;
1126 int rc;
1127
1128 memset(page, 0, PAGE_SIZE);
1129 rr = page;
1130 rr->request.length = 0x0020;
1131 rr->request.code = 0x0033;
1132 rr->op = op;
1133 rr->ctrl = ctrl;
1134 rc = chsc(rr);
1135 if (rc)
1136 return -EIO;
1137 rc = (rr->response.code == 0x0001) ? 0 : -EIO;
1138 return rc;
1139}
1140
1141int chsc_sstpi(void *page, void *result, size_t size)
1142{
1143 struct {
1144 struct chsc_header request;
1145 unsigned int rsvd0[3];
1146 struct chsc_header response;
1147 char data[size];
1148 } __attribute__ ((packed)) *rr;
1149 int rc;
1150
1151 memset(page, 0, PAGE_SIZE);
1152 rr = page;
1153 rr->request.length = 0x0010;
1154 rr->request.code = 0x0038;
1155 rc = chsc(rr);
1156 if (rc)
1157 return -EIO;
1158 memcpy(result, &rr->data, size);
1159 return (rr->response.code == 0x0001) ? 0 : -EIO;
1160}
1161
Michael Ernstfd0457a2010-08-09 18:12:50 +02001162int chsc_siosl(struct subchannel_id schid)
1163{
Sebastian Ott34196f82010-10-25 16:10:29 +02001164 struct {
1165 struct chsc_header request;
1166 u32 word1;
1167 struct subchannel_id sid;
1168 u32 word3;
1169 struct chsc_header response;
1170 u32 word[11];
1171 } __attribute__ ((packed)) *siosl_area;
Michael Ernstfd0457a2010-08-09 18:12:50 +02001172 unsigned long flags;
1173 int ccode;
1174 int rc;
1175
Sebastian Ott34196f82010-10-25 16:10:29 +02001176 spin_lock_irqsave(&chsc_page_lock, flags);
1177 memset(chsc_page, 0, PAGE_SIZE);
1178 siosl_area = chsc_page;
1179 siosl_area->request.length = 0x0010;
1180 siosl_area->request.code = 0x0046;
1181 siosl_area->word1 = 0x80000000;
1182 siosl_area->sid = schid;
Michael Ernstfd0457a2010-08-09 18:12:50 +02001183
Sebastian Ott34196f82010-10-25 16:10:29 +02001184 ccode = chsc(siosl_area);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001185 if (ccode > 0) {
1186 if (ccode == 3)
1187 rc = -ENODEV;
1188 else
1189 rc = -EBUSY;
1190 CIO_MSG_EVENT(2, "chsc: chsc failed for 0.%x.%04x (ccode=%d)\n",
1191 schid.ssid, schid.sch_no, ccode);
1192 goto out;
1193 }
Sebastian Ott34196f82010-10-25 16:10:29 +02001194 rc = chsc_error_from_response(siosl_area->response.code);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001195 if (rc)
1196 CIO_MSG_EVENT(2, "chsc: siosl failed for 0.%x.%04x (rc=%04x)\n",
1197 schid.ssid, schid.sch_no,
Sebastian Ott34196f82010-10-25 16:10:29 +02001198 siosl_area->response.code);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001199 else
1200 CIO_MSG_EVENT(4, "chsc: siosl succeeded for 0.%x.%04x\n",
1201 schid.ssid, schid.sch_no);
1202out:
Sebastian Ott34196f82010-10-25 16:10:29 +02001203 spin_unlock_irqrestore(&chsc_page_lock, flags);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001204 return rc;
1205}
1206EXPORT_SYMBOL_GPL(chsc_siosl);
Sebastian Ott184b08a2012-08-28 16:45:42 +02001207
1208/**
1209 * chsc_scm_info() - store SCM information (SSI)
1210 * @scm_area: request and response block for SSI
1211 * @token: continuation token
1212 *
1213 * Returns 0 on success.
1214 */
1215int chsc_scm_info(struct chsc_scm_info *scm_area, u64 token)
1216{
1217 int ccode, ret;
1218
1219 memset(scm_area, 0, sizeof(*scm_area));
1220 scm_area->request.length = 0x0020;
1221 scm_area->request.code = 0x004C;
1222 scm_area->reqtok = token;
1223
1224 ccode = chsc(scm_area);
1225 if (ccode > 0) {
1226 ret = (ccode == 3) ? -ENODEV : -EBUSY;
1227 goto out;
1228 }
1229 ret = chsc_error_from_response(scm_area->response.code);
1230 if (ret != 0)
1231 CIO_MSG_EVENT(2, "chsc: scm info failed (rc=%04x)\n",
1232 scm_area->response.code);
1233out:
1234 return ret;
1235}
1236EXPORT_SYMBOL_GPL(chsc_scm_info);