blob: 10729bbceceda4f49432e5eb647e04ae9d1399c4 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include "css.h"
25#include "cio.h"
26#include "cio_debug.h"
27#include "ioasm.h"
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020028#include "chp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "chsc.h"
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static void *sei_page;
Sebastian Ott34196f82010-10-25 16:10:29 +020032static void *chsc_page;
33static DEFINE_SPINLOCK(chsc_page_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Cornelia Huckdae39842008-07-17 17:16:47 +020035/**
36 * chsc_error_from_response() - convert a chsc response to an error
37 * @response: chsc response code
38 *
39 * Returns an appropriate Linux error code for @response.
40 */
41int chsc_error_from_response(int response)
Cornelia Huckb9c9a212008-02-05 16:50:34 +010042{
43 switch (response) {
44 case 0x0001:
45 return 0;
46 case 0x0002:
47 case 0x0003:
48 case 0x0006:
49 case 0x0007:
50 case 0x0008:
51 case 0x000a:
Michael Ernstfd0457a2010-08-09 18:12:50 +020052 case 0x0104:
Cornelia Huckb9c9a212008-02-05 16:50:34 +010053 return -EINVAL;
54 case 0x0004:
55 return -EOPNOTSUPP;
Sebastian Ott184b08a2012-08-28 16:45:42 +020056 case 0x000b:
57 return -EBUSY;
58 case 0x0100:
59 case 0x0102:
60 return -ENOMEM;
Cornelia Huckb9c9a212008-02-05 16:50:34 +010061 default:
62 return -EIO;
63 }
64}
Cornelia Huckdae39842008-07-17 17:16:47 +020065EXPORT_SYMBOL_GPL(chsc_error_from_response);
Cornelia Huckb9c9a212008-02-05 16:50:34 +010066
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020067struct chsc_ssd_area {
68 struct chsc_header request;
69 u16 :10;
70 u16 ssid:2;
71 u16 :4;
72 u16 f_sch; /* first subchannel */
73 u16 :16;
74 u16 l_sch; /* last subchannel */
75 u32 :32;
76 struct chsc_header response;
77 u32 :32;
78 u8 sch_valid : 1;
79 u8 dev_valid : 1;
80 u8 st : 3; /* subchannel type */
81 u8 zeroes : 3;
82 u8 unit_addr; /* unit address */
83 u16 devno; /* device number */
84 u8 path_mask;
85 u8 fla_valid_mask;
86 u16 sch; /* subchannel */
87 u8 chpid[8]; /* chpids 0-7 */
88 u16 fla[8]; /* full link addresses 0-7 */
89} __attribute__ ((packed));
90
91int chsc_get_ssd_info(struct subchannel_id schid, struct chsc_ssd_info *ssd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020093 struct chsc_ssd_area *ssd_area;
94 int ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 int ret;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020096 int i;
97 int mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Sebastian Ott34196f82010-10-25 16:10:29 +020099 spin_lock_irq(&chsc_page_lock);
100 memset(chsc_page, 0, PAGE_SIZE);
101 ssd_area = chsc_page;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200102 ssd_area->request.length = 0x0010;
103 ssd_area->request.code = 0x0004;
104 ssd_area->ssid = schid.ssid;
105 ssd_area->f_sch = schid.sch_no;
106 ssd_area->l_sch = schid.sch_no;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200107
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200108 ccode = chsc(ssd_area);
109 /* Check response. */
110 if (ccode > 0) {
111 ret = (ccode == 3) ? -ENODEV : -EBUSY;
Sebastian Ott34196f82010-10-25 16:10:29 +0200112 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100114 ret = chsc_error_from_response(ssd_area->response.code);
115 if (ret != 0) {
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200116 CIO_MSG_EVENT(2, "chsc: ssd failed for 0.%x.%04x (rc=%04x)\n",
117 schid.ssid, schid.sch_no,
118 ssd_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200119 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200120 }
121 if (!ssd_area->sch_valid) {
122 ret = -ENODEV;
Sebastian Ott34196f82010-10-25 16:10:29 +0200123 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200124 }
125 /* Copy data */
126 ret = 0;
127 memset(ssd, 0, sizeof(struct chsc_ssd_info));
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100128 if ((ssd_area->st != SUBCHANNEL_TYPE_IO) &&
129 (ssd_area->st != SUBCHANNEL_TYPE_MSG))
Sebastian Ott34196f82010-10-25 16:10:29 +0200130 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200131 ssd->path_mask = ssd_area->path_mask;
132 ssd->fla_valid_mask = ssd_area->fla_valid_mask;
133 for (i = 0; i < 8; i++) {
134 mask = 0x80 >> i;
135 if (ssd_area->path_mask & mask) {
136 chp_id_init(&ssd->chpid[i]);
137 ssd->chpid[i].id = ssd_area->chpid[i];
138 }
139 if (ssd_area->fla_valid_mask & mask)
140 ssd->fla[i] = ssd_area->fla[i];
141 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200142out:
143 spin_unlock_irq(&chsc_page_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return ret;
145}
146
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100147static int s390_subchannel_remove_chpid(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Cornelia Huck2ec22982006-12-08 15:54:26 +0100149 spin_lock_irq(sch->lock);
Cornelia Huckc820de32008-07-14 09:58:45 +0200150 if (sch->driver && sch->driver->chp_event)
151 if (sch->driver->chp_event(sch, data, CHP_OFFLINE) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 goto out_unreg;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100153 spin_unlock_irq(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return 0;
Stefan Bader387b7342007-04-27 16:01:33 +0200155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156out_unreg:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 sch->lpm = 0;
Stefan Bader387b7342007-04-27 16:01:33 +0200158 spin_unlock_irq(sch->lock);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200159 css_schedule_eval(sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return 0;
161}
162
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200163void chsc_chp_offline(struct chp_id chpid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165 char dbf_txt[15];
Cornelia Huck99611f82008-07-14 09:59:02 +0200166 struct chp_link link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200168 sprintf(dbf_txt, "chpr%x.%02x", chpid.cssid, chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 CIO_TRACE_EVENT(2, dbf_txt);
170
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200171 if (chp_get_status(chpid) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return;
Cornelia Huck99611f82008-07-14 09:59:02 +0200173 memset(&link, 0, sizeof(struct chp_link));
174 link.chpid = chpid;
Cornelia Huck22806dc2008-04-17 07:45:59 +0200175 /* Wait until previous actions have settled. */
176 css_wait_for_slow_path();
Cornelia Huck99611f82008-07-14 09:59:02 +0200177 for_each_subchannel_staged(s390_subchannel_remove_chpid, NULL, &link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100180static int s390_process_res_acc_new_sch(struct subchannel_id schid, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800182 struct schib schib;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800183 /*
184 * We don't know the device yet, but since a path
185 * may be available now to the device we'll have
186 * to do recognition again.
187 * Since we don't have any idea about which chpid
188 * that beast may be on we'll have to do a stsch
189 * on all devices, grr...
190 */
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800191 if (stsch_err(schid, &schib))
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800192 /* We're through */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200193 return -ENXIO;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800194
195 /* Put it on the slow path. */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200196 css_schedule_eval(schid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800197 return 0;
198}
199
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100200static int __s390_process_res_acc(struct subchannel *sch, void *data)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800201{
Cornelia Huck2ec22982006-12-08 15:54:26 +0100202 spin_lock_irq(sch->lock);
Cornelia Huckc820de32008-07-14 09:58:45 +0200203 if (sch->driver && sch->driver->chp_event)
204 sch->driver->chp_event(sch, data, CHP_ONLINE);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100205 spin_unlock_irq(sch->lock);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100206
Peter Oberparleiterdd9963f2006-09-20 15:59:54 +0200207 return 0;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800208}
209
Cornelia Huck99611f82008-07-14 09:59:02 +0200210static void s390_process_res_acc(struct chp_link *link)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800211{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 char dbf_txt[15];
213
Cornelia Huck99611f82008-07-14 09:59:02 +0200214 sprintf(dbf_txt, "accpr%x.%02x", link->chpid.cssid,
215 link->chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 CIO_TRACE_EVENT( 2, dbf_txt);
Cornelia Huck99611f82008-07-14 09:59:02 +0200217 if (link->fla != 0) {
218 sprintf(dbf_txt, "fla%x", link->fla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 CIO_TRACE_EVENT( 2, dbf_txt);
220 }
Cornelia Huck22806dc2008-04-17 07:45:59 +0200221 /* Wait until previous actions have settled. */
222 css_wait_for_slow_path();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 /*
224 * I/O resources may have become accessible.
225 * Scan through all subchannels that may be concerned and
226 * do a validation on those.
227 * The more information we have (info), the less scanning
228 * will we have to do.
229 */
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100230 for_each_subchannel_staged(__s390_process_res_acc,
Cornelia Huck99611f82008-07-14 09:59:02 +0200231 s390_process_res_acc_new_sch, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
234static int
235__get_chpid_from_lir(void *data)
236{
237 struct lir {
238 u8 iq;
239 u8 ic;
240 u16 sci;
241 /* incident-node descriptor */
242 u32 indesc[28];
243 /* attached-node descriptor */
244 u32 andesc[28];
245 /* incident-specific information */
246 u32 isinfo[28];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +0100247 } __attribute__ ((packed)) *lir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Cornelia Huck12975ae2006-10-11 15:31:47 +0200249 lir = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (!(lir->iq&0x80))
251 /* NULL link incident record */
252 return -EINVAL;
253 if (!(lir->indesc[0]&0xc0000000))
254 /* node descriptor not valid */
255 return -EINVAL;
256 if (!(lir->indesc[0]&0x10000000))
257 /* don't handle device-type nodes - FIXME */
258 return -EINVAL;
259 /* Byte 3 contains the chpid. Could also be CTCA, but we don't care */
260
261 return (u16) (lir->indesc[0]&0x000000ff);
262}
263
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100264struct chsc_sei_nt0_area {
265 u8 flags;
266 u8 vf; /* validity flags */
267 u8 rs; /* reporting source */
268 u8 cc; /* content code */
269 u16 fla; /* full link address */
270 u16 rsid; /* reporting source id */
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100271 u32 reserved1;
272 u32 reserved2;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100273 /* ccdf has to be big enough for a link-incident record */
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100274 u8 ccdf[PAGE_SIZE - 24 - 16]; /* content-code dependent field */
275} __packed;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100276
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100277struct chsc_sei_nt2_area {
278 u8 flags; /* p and v bit */
279 u8 reserved1;
280 u8 reserved2;
281 u8 cc; /* content code */
282 u32 reserved3[13];
283 u8 ccdf[PAGE_SIZE - 24 - 56]; /* content-code dependent field */
284} __packed;
285
Sebastian Ott509d97b2013-01-15 19:02:01 +0100286#define CHSC_SEI_NT0 (1ULL << 63)
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100287#define CHSC_SEI_NT2 (1ULL << 61)
288
289struct chsc_sei {
290 struct chsc_header request;
291 u32 reserved1;
292 u64 ntsm; /* notification type mask */
293 struct chsc_header response;
Sebastian Ott509d97b2013-01-15 19:02:01 +0100294 u32 :24;
295 u8 nt;
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100296 union {
297 struct chsc_sei_nt0_area nt0_area;
298 struct chsc_sei_nt2_area nt2_area;
299 u8 nt_area[PAGE_SIZE - 24];
300 } u;
301} __packed;
302
303static void chsc_process_sei_link_incident(struct chsc_sei_nt0_area *sei_area)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200305 struct chp_id chpid;
306 int id;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100307
308 CIO_CRW_EVENT(4, "chsc: link incident (rs=%02x, rs_id=%04x)\n",
309 sei_area->rs, sei_area->rsid);
310 if (sei_area->rs != 4)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200311 return;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200312 id = __get_chpid_from_lir(sei_area->ccdf);
313 if (id < 0)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100314 CIO_CRW_EVENT(4, "chsc: link incident - invalid LIR\n");
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200315 else {
316 chp_id_init(&chpid);
317 chpid.id = id;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200318 chsc_chp_offline(chpid);
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200319 }
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100320}
321
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100322static void chsc_process_sei_res_acc(struct chsc_sei_nt0_area *sei_area)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100323{
Cornelia Huck99611f82008-07-14 09:59:02 +0200324 struct chp_link link;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200325 struct chp_id chpid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100326 int status;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100327
328 CIO_CRW_EVENT(4, "chsc: resource accessibility event (rs=%02x, "
329 "rs_id=%04x)\n", sei_area->rs, sei_area->rsid);
330 if (sei_area->rs != 4)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200331 return;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200332 chp_id_init(&chpid);
333 chpid.id = sei_area->rsid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100334 /* allocate a new channel path structure, if needed */
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200335 status = chp_get_status(chpid);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100336 if (status < 0)
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200337 chp_new(chpid);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100338 else if (!status)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200339 return;
Cornelia Huck99611f82008-07-14 09:59:02 +0200340 memset(&link, 0, sizeof(struct chp_link));
341 link.chpid = chpid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100342 if ((sei_area->vf & 0xc0) != 0) {
Cornelia Huck99611f82008-07-14 09:59:02 +0200343 link.fla = sei_area->fla;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100344 if ((sei_area->vf & 0xc0) == 0xc0)
345 /* full link address */
Cornelia Huck99611f82008-07-14 09:59:02 +0200346 link.fla_mask = 0xffff;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100347 else
348 /* link address */
Cornelia Huck99611f82008-07-14 09:59:02 +0200349 link.fla_mask = 0xff00;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100350 }
Cornelia Huck99611f82008-07-14 09:59:02 +0200351 s390_process_res_acc(&link);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100352}
353
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100354static void chsc_process_sei_chp_avail(struct chsc_sei_nt0_area *sei_area)
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200355{
356 struct channel_path *chp;
357 struct chp_id chpid;
358 u8 *data;
359 int num;
360
361 CIO_CRW_EVENT(4, "chsc: channel path availability information\n");
362 if (sei_area->rs != 0)
363 return;
364 data = sei_area->ccdf;
365 chp_id_init(&chpid);
366 for (num = 0; num <= __MAX_CHPID; num++) {
367 if (!chp_test_bit(data, num))
368 continue;
369 chpid.id = num;
370
371 CIO_CRW_EVENT(4, "Update information for channel path "
372 "%x.%02x\n", chpid.cssid, chpid.id);
373 chp = chpid_to_chp(chpid);
374 if (!chp) {
375 chp_new(chpid);
376 continue;
377 }
378 mutex_lock(&chp->lock);
379 chsc_determine_base_channel_path_desc(chpid, &chp->desc);
380 mutex_unlock(&chp->lock);
381 }
382}
383
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200384struct chp_config_data {
385 u8 map[32];
386 u8 op;
387 u8 pc;
388};
389
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100390static void chsc_process_sei_chp_config(struct chsc_sei_nt0_area *sei_area)
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200391{
392 struct chp_config_data *data;
393 struct chp_id chpid;
394 int num;
Michael Ernste6d5a422008-12-25 13:39:36 +0100395 char *events[3] = {"configure", "deconfigure", "cancel deconfigure"};
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200396
397 CIO_CRW_EVENT(4, "chsc: channel-path-configuration notification\n");
398 if (sei_area->rs != 0)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200399 return;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200400 data = (struct chp_config_data *) &(sei_area->ccdf);
401 chp_id_init(&chpid);
402 for (num = 0; num <= __MAX_CHPID; num++) {
403 if (!chp_test_bit(data->map, num))
404 continue;
405 chpid.id = num;
Michael Ernste6d5a422008-12-25 13:39:36 +0100406 pr_notice("Processing %s for channel path %x.%02x\n",
407 events[data->op], chpid.cssid, chpid.id);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200408 switch (data->op) {
409 case 0:
410 chp_cfg_schedule(chpid, 1);
411 break;
412 case 1:
413 chp_cfg_schedule(chpid, 0);
414 break;
415 case 2:
416 chp_cfg_cancel_deconfigure(chpid);
417 break;
418 }
419 }
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200420}
421
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100422static void chsc_process_sei_scm_change(struct chsc_sei_nt0_area *sei_area)
Sebastian Ott40ff4cc2012-08-28 16:47:02 +0200423{
424 int ret;
425
426 CIO_CRW_EVENT(4, "chsc: scm change notification\n");
427 if (sei_area->rs != 7)
428 return;
429
430 ret = scm_update_information();
431 if (ret)
432 CIO_CRW_EVENT(0, "chsc: updating change notification"
433 " failed (rc=%d).\n", ret);
434}
435
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100436static void chsc_process_sei_nt2(struct chsc_sei_nt2_area *sei_area)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100437{
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100438#ifdef CONFIG_PCI
439 switch (sei_area->cc) {
440 case 1:
441 zpci_event_error(sei_area->ccdf);
442 break;
443 case 2:
444 zpci_event_availability(sei_area->ccdf);
445 break;
446 default:
447 CIO_CRW_EVENT(2, "chsc: unhandled sei content code %d\n",
448 sei_area->cc);
449 break;
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200450 }
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100451#endif
452}
453
454static void chsc_process_sei_nt0(struct chsc_sei_nt0_area *sei_area)
455{
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100456 /* which kind of information was stored? */
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100457 switch (sei_area->cc) {
458 case 1: /* link incident*/
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200459 chsc_process_sei_link_incident(sei_area);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100460 break;
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200461 case 2: /* i/o resource accessibility */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200462 chsc_process_sei_res_acc(sei_area);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100463 break;
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200464 case 7: /* channel-path-availability information */
465 chsc_process_sei_chp_avail(sei_area);
466 break;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200467 case 8: /* channel-path-configuration notification */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200468 chsc_process_sei_chp_config(sei_area);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200469 break;
Sebastian Ott40ff4cc2012-08-28 16:47:02 +0200470 case 12: /* scm change notification */
471 chsc_process_sei_scm_change(sei_area);
472 break;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100473 default: /* other stuff */
474 CIO_CRW_EVENT(4, "chsc: unhandled sei content code %d\n",
475 sei_area->cc);
476 break;
477 }
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100478}
479
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100480static int __chsc_process_crw(struct chsc_sei *sei, u64 ntsm)
481{
482 do {
483 memset(sei, 0, sizeof(*sei));
484 sei->request.length = 0x0010;
485 sei->request.code = 0x000e;
486 sei->ntsm = ntsm;
487
488 if (chsc(sei))
489 break;
490
491 if (sei->response.code == 0x0001) {
492 CIO_CRW_EVENT(2, "chsc: sei successful\n");
493
494 /* Check if we might have lost some information. */
495 if (sei->u.nt0_area.flags & 0x40) {
496 CIO_CRW_EVENT(2, "chsc: event overflow\n");
497 css_schedule_eval_all();
498 }
499
Sebastian Ott509d97b2013-01-15 19:02:01 +0100500 switch (sei->nt) {
501 case 0:
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100502 chsc_process_sei_nt0(&sei->u.nt0_area);
Sebastian Ott509d97b2013-01-15 19:02:01 +0100503 break;
504 case 2:
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100505 chsc_process_sei_nt2(&sei->u.nt2_area);
Sebastian Ott509d97b2013-01-15 19:02:01 +0100506 break;
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100507 default:
Sebastian Ott509d97b2013-01-15 19:02:01 +0100508 CIO_CRW_EVENT(2, "chsc: unhandled nt=%d\n",
509 sei->nt);
510 break;
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100511 }
512 } else {
513 CIO_CRW_EVENT(2, "chsc: sei failed (rc=%04x)\n",
514 sei->response.code);
515 break;
516 }
517 } while (sei->u.nt0_area.flags & 0x80);
518
519 return 0;
520}
521
Cornelia Huckc1156182008-07-14 09:58:46 +0200522static void chsc_process_crw(struct crw *crw0, struct crw *crw1, int overflow)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100523{
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100524 struct chsc_sei *sei;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Cornelia Huckc1156182008-07-14 09:58:46 +0200526 if (overflow) {
527 css_schedule_eval_all();
528 return;
529 }
530 CIO_CRW_EVENT(2, "CRW reports slct=%d, oflw=%d, "
531 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
532 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
533 crw0->erc, crw0->rsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (!sei_page)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200535 return;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100536 /* Access to sei_page is serialized through machine check handler
537 * thread, so no need for locking. */
Jan Glaubercbc0dd12012-11-29 14:34:48 +0100538 sei = sei_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Cornelia Huckc1156182008-07-14 09:58:46 +0200540 CIO_TRACE_EVENT(2, "prcss");
Sebastian Ott509d97b2013-01-15 19:02:01 +0100541 __chsc_process_crw(sei, CHSC_SEI_NT0 | CHSC_SEI_NT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200544void chsc_chp_online(struct chp_id chpid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 char dbf_txt[15];
Cornelia Huck99611f82008-07-14 09:59:02 +0200547 struct chp_link link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200549 sprintf(dbf_txt, "cadd%x.%02x", chpid.cssid, chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 CIO_TRACE_EVENT(2, dbf_txt);
551
Cornelia Huck22806dc2008-04-17 07:45:59 +0200552 if (chp_get_status(chpid) != 0) {
Cornelia Huck99611f82008-07-14 09:59:02 +0200553 memset(&link, 0, sizeof(struct chp_link));
554 link.chpid = chpid;
Cornelia Huck22806dc2008-04-17 07:45:59 +0200555 /* Wait until previous actions have settled. */
556 css_wait_for_slow_path();
Cornelia Huckc820de32008-07-14 09:58:45 +0200557 for_each_subchannel_staged(__s390_process_res_acc, NULL,
Cornelia Huck99611f82008-07-14 09:59:02 +0200558 &link);
Cornelia Huck22806dc2008-04-17 07:45:59 +0200559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200562static void __s390_subchannel_vary_chpid(struct subchannel *sch,
563 struct chp_id chpid, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 unsigned long flags;
Cornelia Huck99611f82008-07-14 09:59:02 +0200566 struct chp_link link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Cornelia Huck99611f82008-07-14 09:59:02 +0200568 memset(&link, 0, sizeof(struct chp_link));
569 link.chpid = chpid;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100570 spin_lock_irqsave(sch->lock, flags);
Cornelia Huckc820de32008-07-14 09:58:45 +0200571 if (sch->driver && sch->driver->chp_event)
Cornelia Huck99611f82008-07-14 09:59:02 +0200572 sch->driver->chp_event(sch, &link,
Cornelia Huckc820de32008-07-14 09:58:45 +0200573 on ? CHP_VARY_ON : CHP_VARY_OFF);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100574 spin_unlock_irqrestore(sch->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575}
576
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100577static int s390_subchannel_vary_chpid_off(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100579 struct chp_id *chpid = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 __s390_subchannel_vary_chpid(sch, *chpid, 0);
582 return 0;
583}
584
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100585static int s390_subchannel_vary_chpid_on(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100587 struct chp_id *chpid = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 __s390_subchannel_vary_chpid(sch, *chpid, 1);
590 return 0;
591}
592
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800593static int
594__s390_vary_chpid_on(struct subchannel_id schid, void *data)
595{
596 struct schib schib;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800597
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800598 if (stsch_err(schid, &schib))
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800599 /* We're through */
600 return -ENXIO;
601 /* Put it on the slow path. */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200602 css_schedule_eval(schid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800603 return 0;
604}
605
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200606/**
607 * chsc_chp_vary - propagate channel-path vary operation to subchannels
608 * @chpid: channl-path ID
609 * @on: non-zero for vary online, zero for vary offline
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 */
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200611int chsc_chp_vary(struct chp_id chpid, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200613 struct channel_path *chp = chpid_to_chp(chpid);
Cornelia Huck99611f82008-07-14 09:59:02 +0200614
Cornelia Huck22806dc2008-04-17 07:45:59 +0200615 /* Wait until previous actions have settled. */
616 css_wait_for_slow_path();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 /*
618 * Redo PathVerification on the devices the chpid connects to
619 */
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200620 if (on) {
621 /* Try to update the channel path descritor. */
622 chsc_determine_base_channel_path_desc(chpid, &chp->desc);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100623 for_each_subchannel_staged(s390_subchannel_vary_chpid_on,
Sebastian Ott3b484ec2011-12-01 13:32:22 +0100624 __s390_vary_chpid_on, &chpid);
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200625 } else
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100626 for_each_subchannel_staged(s390_subchannel_vary_chpid_off,
Sebastian Ott3b484ec2011-12-01 13:32:22 +0100627 NULL, &chpid);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return 0;
630}
631
Cornelia Huck495a5b42006-03-24 03:15:14 -0800632static void
633chsc_remove_cmg_attr(struct channel_subsystem *css)
634{
635 int i;
636
637 for (i = 0; i <= __MAX_CHPID; i++) {
638 if (!css->chps[i])
639 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200640 chp_remove_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800641 }
642}
643
644static int
645chsc_add_cmg_attr(struct channel_subsystem *css)
646{
647 int i, ret;
648
649 ret = 0;
650 for (i = 0; i <= __MAX_CHPID; i++) {
651 if (!css->chps[i])
652 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200653 ret = chp_add_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800654 if (ret)
655 goto cleanup;
656 }
657 return ret;
658cleanup:
659 for (--i; i >= 0; i--) {
660 if (!css->chps[i])
661 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200662 chp_remove_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800663 }
664 return ret;
665}
666
Sebastian Ott34196f82010-10-25 16:10:29 +0200667int __chsc_do_secm(struct channel_subsystem *css, int enable)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800668{
669 struct {
670 struct chsc_header request;
671 u32 operation_code : 2;
672 u32 : 30;
673 u32 key : 4;
674 u32 : 28;
675 u32 zeroes1;
676 u32 cub_addr1;
677 u32 zeroes2;
678 u32 cub_addr2;
679 u32 reserved[13];
680 struct chsc_header response;
681 u32 status : 8;
682 u32 : 4;
683 u32 fmt : 4;
684 u32 : 16;
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +0100685 } __attribute__ ((packed)) *secm_area;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800686 int ret, ccode;
687
Sebastian Ott34196f82010-10-25 16:10:29 +0200688 spin_lock_irq(&chsc_page_lock);
689 memset(chsc_page, 0, PAGE_SIZE);
690 secm_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800691 secm_area->request.length = 0x0050;
692 secm_area->request.code = 0x0016;
693
Heiko Carstensd1bf8592010-02-26 22:37:30 +0100694 secm_area->key = PAGE_DEFAULT_KEY >> 4;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800695 secm_area->cub_addr1 = (u64)(unsigned long)css->cub_addr1;
696 secm_area->cub_addr2 = (u64)(unsigned long)css->cub_addr2;
697
698 secm_area->operation_code = enable ? 0 : 1;
699
700 ccode = chsc(secm_area);
Sebastian Ott34196f82010-10-25 16:10:29 +0200701 if (ccode > 0) {
702 ret = (ccode == 3) ? -ENODEV : -EBUSY;
703 goto out;
704 }
Cornelia Huck495a5b42006-03-24 03:15:14 -0800705
706 switch (secm_area->response.code) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100707 case 0x0102:
708 case 0x0103:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800709 ret = -EINVAL;
Sebastian Ott17e7d872009-03-26 15:24:17 +0100710 break;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800711 default:
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100712 ret = chsc_error_from_response(secm_area->response.code);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800713 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100714 if (ret != 0)
715 CIO_CRW_EVENT(2, "chsc: secm failed (rc=%04x)\n",
716 secm_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200717out:
718 spin_unlock_irq(&chsc_page_lock);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800719 return ret;
720}
721
722int
723chsc_secm(struct channel_subsystem *css, int enable)
724{
Cornelia Huck495a5b42006-03-24 03:15:14 -0800725 int ret;
726
Cornelia Huck495a5b42006-03-24 03:15:14 -0800727 if (enable && !css->cm_enabled) {
728 css->cub_addr1 = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
729 css->cub_addr2 = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
730 if (!css->cub_addr1 || !css->cub_addr2) {
731 free_page((unsigned long)css->cub_addr1);
732 free_page((unsigned long)css->cub_addr2);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800733 return -ENOMEM;
734 }
735 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200736 ret = __chsc_do_secm(css, enable);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800737 if (!ret) {
738 css->cm_enabled = enable;
739 if (css->cm_enabled) {
740 ret = chsc_add_cmg_attr(css);
741 if (ret) {
Sebastian Ott34196f82010-10-25 16:10:29 +0200742 __chsc_do_secm(css, 0);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800743 css->cm_enabled = 0;
744 }
745 } else
746 chsc_remove_cmg_attr(css);
747 }
Cornelia Huck8c4941c2007-04-27 16:01:38 +0200748 if (!css->cm_enabled) {
Cornelia Huck495a5b42006-03-24 03:15:14 -0800749 free_page((unsigned long)css->cub_addr1);
750 free_page((unsigned long)css->cub_addr2);
751 }
Cornelia Huck495a5b42006-03-24 03:15:14 -0800752 return ret;
753}
754
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200755int chsc_determine_channel_path_desc(struct chp_id chpid, int fmt, int rfmt,
Sebastian Ott906c9762010-10-25 16:10:30 +0200756 int c, int m, void *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Sebastian Ott906c9762010-10-25 16:10:30 +0200758 struct chsc_scpd *scpd_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 int ccode, ret;
760
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200761 if ((rfmt == 1) && !css_general_characteristics.fcs)
762 return -EINVAL;
763 if ((rfmt == 2) && !css_general_characteristics.cib)
764 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Sebastian Ott906c9762010-10-25 16:10:30 +0200766 memset(page, 0, PAGE_SIZE);
767 scpd_area = page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800768 scpd_area->request.length = 0x0010;
769 scpd_area->request.code = 0x0002;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200770 scpd_area->cssid = chpid.cssid;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200771 scpd_area->first_chpid = chpid.id;
772 scpd_area->last_chpid = chpid.id;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200773 scpd_area->m = m;
774 scpd_area->c = c;
775 scpd_area->fmt = fmt;
776 scpd_area->rfmt = rfmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 ccode = chsc(scpd_area);
Sebastian Ott906c9762010-10-25 16:10:30 +0200779 if (ccode > 0)
780 return (ccode == 3) ? -ENODEV : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100782 ret = chsc_error_from_response(scpd_area->response.code);
Sebastian Ott906c9762010-10-25 16:10:30 +0200783 if (ret)
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100784 CIO_CRW_EVENT(2, "chsc: scpd failed (rc=%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 scpd_area->response.code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return ret;
787}
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200788EXPORT_SYMBOL_GPL(chsc_determine_channel_path_desc);
789
790int chsc_determine_base_channel_path_desc(struct chp_id chpid,
791 struct channel_path_desc *desc)
792{
793 struct chsc_response_struct *chsc_resp;
Sebastian Ott906c9762010-10-25 16:10:30 +0200794 struct chsc_scpd *scpd_area;
Sebastian Ott62da1772010-10-25 16:10:32 +0200795 unsigned long flags;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200796 int ret;
797
Sebastian Ott62da1772010-10-25 16:10:32 +0200798 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ott906c9762010-10-25 16:10:30 +0200799 scpd_area = chsc_page;
800 ret = chsc_determine_channel_path_desc(chpid, 0, 0, 0, 0, scpd_area);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200801 if (ret)
Sebastian Ott906c9762010-10-25 16:10:30 +0200802 goto out;
803 chsc_resp = (void *)&scpd_area->response;
Sebastian Ott878c4952010-07-19 09:22:37 +0200804 memcpy(desc, &chsc_resp->data, sizeof(*desc));
Sebastian Ott906c9762010-10-25 16:10:30 +0200805out:
Sebastian Ott62da1772010-10-25 16:10:32 +0200806 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200807 return ret;
808}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Sebastian Ottce322cc2011-01-05 12:47:56 +0100810int chsc_determine_fmt1_channel_path_desc(struct chp_id chpid,
811 struct channel_path_desc_fmt1 *desc)
812{
813 struct chsc_response_struct *chsc_resp;
814 struct chsc_scpd *scpd_area;
815 int ret;
816
817 spin_lock_irq(&chsc_page_lock);
818 scpd_area = chsc_page;
819 ret = chsc_determine_channel_path_desc(chpid, 0, 0, 1, 0, scpd_area);
820 if (ret)
821 goto out;
822 chsc_resp = (void *)&scpd_area->response;
823 memcpy(desc, &chsc_resp->data, sizeof(*desc));
824out:
825 spin_unlock_irq(&chsc_page_lock);
826 return ret;
827}
828
Cornelia Huck495a5b42006-03-24 03:15:14 -0800829static void
830chsc_initialize_cmg_chars(struct channel_path *chp, u8 cmcv,
831 struct cmg_chars *chars)
832{
Sebastian Ott34196f82010-10-25 16:10:29 +0200833 struct cmg_chars *cmg_chars;
834 int i, mask;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800835
Sebastian Ott34196f82010-10-25 16:10:29 +0200836 cmg_chars = chp->cmg_chars;
837 for (i = 0; i < NR_MEASUREMENT_CHARS; i++) {
838 mask = 0x80 >> (i + 3);
839 if (cmcv & mask)
840 cmg_chars->values[i] = chars->values[i];
841 else
842 cmg_chars->values[i] = 0;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800843 }
844}
845
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200846int chsc_get_channel_measurement_chars(struct channel_path *chp)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800847{
Sebastian Ott34196f82010-10-25 16:10:29 +0200848 struct cmg_chars *cmg_chars;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800849 int ccode, ret;
850
851 struct {
852 struct chsc_header request;
853 u32 : 24;
854 u32 first_chpid : 8;
855 u32 : 24;
856 u32 last_chpid : 8;
857 u32 zeroes1;
858 struct chsc_header response;
859 u32 zeroes2;
860 u32 not_valid : 1;
861 u32 shared : 1;
862 u32 : 22;
863 u32 chpid : 8;
864 u32 cmcv : 5;
865 u32 : 11;
866 u32 cmgq : 8;
867 u32 cmg : 8;
868 u32 zeroes3;
869 u32 data[NR_MEASUREMENT_CHARS];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +0100870 } __attribute__ ((packed)) *scmc_area;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800871
Sebastian Ott34196f82010-10-25 16:10:29 +0200872 chp->cmg_chars = NULL;
873 cmg_chars = kmalloc(sizeof(*cmg_chars), GFP_KERNEL);
874 if (!cmg_chars)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800875 return -ENOMEM;
876
Sebastian Ott34196f82010-10-25 16:10:29 +0200877 spin_lock_irq(&chsc_page_lock);
878 memset(chsc_page, 0, PAGE_SIZE);
879 scmc_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800880 scmc_area->request.length = 0x0010;
881 scmc_area->request.code = 0x0022;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200882 scmc_area->first_chpid = chp->chpid.id;
883 scmc_area->last_chpid = chp->chpid.id;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800884
885 ccode = chsc(scmc_area);
886 if (ccode > 0) {
887 ret = (ccode == 3) ? -ENODEV : -EBUSY;
888 goto out;
889 }
890
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100891 ret = chsc_error_from_response(scmc_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200892 if (ret) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100893 CIO_CRW_EVENT(2, "chsc: scmc failed (rc=%04x)\n",
Cornelia Huck495a5b42006-03-24 03:15:14 -0800894 scmc_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200895 goto out;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800896 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200897 if (scmc_area->not_valid) {
898 chp->cmg = -1;
899 chp->shared = -1;
900 goto out;
901 }
902 chp->cmg = scmc_area->cmg;
903 chp->shared = scmc_area->shared;
904 if (chp->cmg != 2 && chp->cmg != 3) {
905 /* No cmg-dependent data. */
906 goto out;
907 }
908 chp->cmg_chars = cmg_chars;
909 chsc_initialize_cmg_chars(chp, scmc_area->cmcv,
910 (struct cmg_chars *) &scmc_area->data);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800911out:
Sebastian Ott34196f82010-10-25 16:10:29 +0200912 spin_unlock_irq(&chsc_page_lock);
913 if (!chp->cmg_chars)
914 kfree(cmg_chars);
915
Cornelia Huck495a5b42006-03-24 03:15:14 -0800916 return ret;
917}
918
Sebastian Ott34aec072010-10-25 16:10:28 +0200919int __init chsc_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Cornelia Huckc1156182008-07-14 09:58:46 +0200921 int ret;
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 sei_page = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
Sebastian Ott34196f82010-10-25 16:10:29 +0200924 chsc_page = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
925 if (!sei_page || !chsc_page) {
926 ret = -ENOMEM;
927 goto out_err;
Cornelia Huckc1156182008-07-14 09:58:46 +0200928 }
Heiko Carstensf5daba12009-03-26 15:24:01 +0100929 ret = crw_register_handler(CRW_RSC_CSS, chsc_process_crw);
Cornelia Huckc1156182008-07-14 09:58:46 +0200930 if (ret)
Sebastian Ott34196f82010-10-25 16:10:29 +0200931 goto out_err;
932 return ret;
933out_err:
934 free_page((unsigned long)chsc_page);
935 free_page((unsigned long)sei_page);
Cornelia Huckc1156182008-07-14 09:58:46 +0200936 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
Sebastian Ott34aec072010-10-25 16:10:28 +0200939void __init chsc_init_cleanup(void)
Cornelia Huck4434a382007-07-27 12:29:21 +0200940{
Heiko Carstensf5daba12009-03-26 15:24:01 +0100941 crw_unregister_handler(CRW_RSC_CSS);
Sebastian Ott34196f82010-10-25 16:10:29 +0200942 free_page((unsigned long)chsc_page);
Sebastian Ott34aec072010-10-25 16:10:28 +0200943 free_page((unsigned long)sei_page);
Cornelia Huck4434a382007-07-27 12:29:21 +0200944}
945
Sebastian Ott818c2722010-04-22 17:17:03 +0200946int chsc_enable_facility(int operation_code)
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800947{
Sebastian Ott34196f82010-10-25 16:10:29 +0200948 unsigned long flags;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800949 int ret;
Sebastian Ott34196f82010-10-25 16:10:29 +0200950 struct {
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800951 struct chsc_header request;
952 u8 reserved1:4;
953 u8 format:4;
954 u8 reserved2;
955 u16 operation_code;
956 u32 reserved3;
957 u32 reserved4;
958 u32 operation_data_area[252];
959 struct chsc_header response;
960 u32 reserved5:4;
961 u32 format2:4;
962 u32 reserved6:24;
Sebastian Ott34196f82010-10-25 16:10:29 +0200963 } __attribute__ ((packed)) *sda_area;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800964
Sebastian Ott34196f82010-10-25 16:10:29 +0200965 spin_lock_irqsave(&chsc_page_lock, flags);
966 memset(chsc_page, 0, PAGE_SIZE);
967 sda_area = chsc_page;
968 sda_area->request.length = 0x0400;
969 sda_area->request.code = 0x0031;
970 sda_area->operation_code = operation_code;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800971
Sebastian Ott34196f82010-10-25 16:10:29 +0200972 ret = chsc(sda_area);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800973 if (ret > 0) {
974 ret = (ret == 3) ? -ENODEV : -EBUSY;
975 goto out;
976 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100977
Sebastian Ott34196f82010-10-25 16:10:29 +0200978 switch (sda_area->response.code) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100979 case 0x0101:
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800980 ret = -EOPNOTSUPP;
981 break;
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100982 default:
Sebastian Ott34196f82010-10-25 16:10:29 +0200983 ret = chsc_error_from_response(sda_area->response.code);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800984 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100985 if (ret != 0)
986 CIO_CRW_EVENT(2, "chsc: sda (oc=%x) failed (rc=%04x)\n",
Sebastian Ott34196f82010-10-25 16:10:29 +0200987 operation_code, sda_area->response.code);
988out:
989 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800990 return ret;
991}
992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993struct css_general_char css_general_characteristics;
994struct css_chsc_char css_chsc_characteristics;
995
996int __init
997chsc_determine_css_characteristics(void)
998{
999 int result;
1000 struct {
1001 struct chsc_header request;
1002 u32 reserved1;
1003 u32 reserved2;
1004 u32 reserved3;
1005 struct chsc_header response;
1006 u32 reserved4;
1007 u32 general_char[510];
Sebastian Ott34aec072010-10-25 16:10:28 +02001008 u32 chsc_char[508];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +01001009 } __attribute__ ((packed)) *scsc_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Sebastian Ott34196f82010-10-25 16:10:29 +02001011 spin_lock_irq(&chsc_page_lock);
1012 memset(chsc_page, 0, PAGE_SIZE);
1013 scsc_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -08001014 scsc_area->request.length = 0x0010;
1015 scsc_area->request.code = 0x0010;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
1017 result = chsc(scsc_area);
1018 if (result) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001019 result = (result == 3) ? -ENODEV : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 goto exit;
1021 }
1022
Cornelia Huckb9c9a212008-02-05 16:50:34 +01001023 result = chsc_error_from_response(scsc_area->response.code);
1024 if (result == 0) {
1025 memcpy(&css_general_characteristics, scsc_area->general_char,
1026 sizeof(css_general_characteristics));
1027 memcpy(&css_chsc_characteristics, scsc_area->chsc_char,
1028 sizeof(css_chsc_characteristics));
1029 } else
1030 CIO_CRW_EVENT(2, "chsc: scsc failed (rc=%04x)\n",
1031 scsc_area->response.code);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032exit:
Sebastian Ott34196f82010-10-25 16:10:29 +02001033 spin_unlock_irq(&chsc_page_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 return result;
1035}
1036
1037EXPORT_SYMBOL_GPL(css_general_characteristics);
1038EXPORT_SYMBOL_GPL(css_chsc_characteristics);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +02001039
1040int chsc_sstpc(void *page, unsigned int op, u16 ctrl)
1041{
1042 struct {
1043 struct chsc_header request;
1044 unsigned int rsvd0;
1045 unsigned int op : 8;
1046 unsigned int rsvd1 : 8;
1047 unsigned int ctrl : 16;
1048 unsigned int rsvd2[5];
1049 struct chsc_header response;
1050 unsigned int rsvd3[7];
1051 } __attribute__ ((packed)) *rr;
1052 int rc;
1053
1054 memset(page, 0, PAGE_SIZE);
1055 rr = page;
1056 rr->request.length = 0x0020;
1057 rr->request.code = 0x0033;
1058 rr->op = op;
1059 rr->ctrl = ctrl;
1060 rc = chsc(rr);
1061 if (rc)
1062 return -EIO;
1063 rc = (rr->response.code == 0x0001) ? 0 : -EIO;
1064 return rc;
1065}
1066
1067int chsc_sstpi(void *page, void *result, size_t size)
1068{
1069 struct {
1070 struct chsc_header request;
1071 unsigned int rsvd0[3];
1072 struct chsc_header response;
1073 char data[size];
1074 } __attribute__ ((packed)) *rr;
1075 int rc;
1076
1077 memset(page, 0, PAGE_SIZE);
1078 rr = page;
1079 rr->request.length = 0x0010;
1080 rr->request.code = 0x0038;
1081 rc = chsc(rr);
1082 if (rc)
1083 return -EIO;
1084 memcpy(result, &rr->data, size);
1085 return (rr->response.code == 0x0001) ? 0 : -EIO;
1086}
1087
Michael Ernstfd0457a2010-08-09 18:12:50 +02001088int chsc_siosl(struct subchannel_id schid)
1089{
Sebastian Ott34196f82010-10-25 16:10:29 +02001090 struct {
1091 struct chsc_header request;
1092 u32 word1;
1093 struct subchannel_id sid;
1094 u32 word3;
1095 struct chsc_header response;
1096 u32 word[11];
1097 } __attribute__ ((packed)) *siosl_area;
Michael Ernstfd0457a2010-08-09 18:12:50 +02001098 unsigned long flags;
1099 int ccode;
1100 int rc;
1101
Sebastian Ott34196f82010-10-25 16:10:29 +02001102 spin_lock_irqsave(&chsc_page_lock, flags);
1103 memset(chsc_page, 0, PAGE_SIZE);
1104 siosl_area = chsc_page;
1105 siosl_area->request.length = 0x0010;
1106 siosl_area->request.code = 0x0046;
1107 siosl_area->word1 = 0x80000000;
1108 siosl_area->sid = schid;
Michael Ernstfd0457a2010-08-09 18:12:50 +02001109
Sebastian Ott34196f82010-10-25 16:10:29 +02001110 ccode = chsc(siosl_area);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001111 if (ccode > 0) {
1112 if (ccode == 3)
1113 rc = -ENODEV;
1114 else
1115 rc = -EBUSY;
1116 CIO_MSG_EVENT(2, "chsc: chsc failed for 0.%x.%04x (ccode=%d)\n",
1117 schid.ssid, schid.sch_no, ccode);
1118 goto out;
1119 }
Sebastian Ott34196f82010-10-25 16:10:29 +02001120 rc = chsc_error_from_response(siosl_area->response.code);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001121 if (rc)
1122 CIO_MSG_EVENT(2, "chsc: siosl failed for 0.%x.%04x (rc=%04x)\n",
1123 schid.ssid, schid.sch_no,
Sebastian Ott34196f82010-10-25 16:10:29 +02001124 siosl_area->response.code);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001125 else
1126 CIO_MSG_EVENT(4, "chsc: siosl succeeded for 0.%x.%04x\n",
1127 schid.ssid, schid.sch_no);
1128out:
Sebastian Ott34196f82010-10-25 16:10:29 +02001129 spin_unlock_irqrestore(&chsc_page_lock, flags);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001130 return rc;
1131}
1132EXPORT_SYMBOL_GPL(chsc_siosl);
Sebastian Ott184b08a2012-08-28 16:45:42 +02001133
1134/**
1135 * chsc_scm_info() - store SCM information (SSI)
1136 * @scm_area: request and response block for SSI
1137 * @token: continuation token
1138 *
1139 * Returns 0 on success.
1140 */
1141int chsc_scm_info(struct chsc_scm_info *scm_area, u64 token)
1142{
1143 int ccode, ret;
1144
1145 memset(scm_area, 0, sizeof(*scm_area));
1146 scm_area->request.length = 0x0020;
1147 scm_area->request.code = 0x004C;
1148 scm_area->reqtok = token;
1149
1150 ccode = chsc(scm_area);
1151 if (ccode > 0) {
1152 ret = (ccode == 3) ? -ENODEV : -EBUSY;
1153 goto out;
1154 }
1155 ret = chsc_error_from_response(scm_area->response.code);
1156 if (ret != 0)
1157 CIO_MSG_EVENT(2, "chsc: scm info failed (rc=%04x)\n",
1158 scm_area->response.code);
1159out:
1160 return ret;
1161}
1162EXPORT_SYMBOL_GPL(chsc_scm_info);