blob: a84631a7391d3ed50c680b939129d159fc25daa3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/s390/cio/chsc.c
3 * S/390 common I/O routines -- channel subsystem call
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Sebastian Ott34aec072010-10-25 16:10:28 +02005 * Copyright IBM Corp. 1999,2010
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Author(s): Ingo Adlung (adlung@de.ibm.com)
Cornelia Huck4ce3b302006-01-14 13:21:04 -08007 * Cornelia Huck (cornelia.huck@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Arnd Bergmann (arndb@de.ibm.com)
9 */
10
Michael Ernste6d5a422008-12-25 13:39:36 +010011#define KMSG_COMPONENT "cio"
12#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/slab.h>
16#include <linux/init.h>
17#include <linux/device.h>
18
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;
56 default:
57 return -EIO;
58 }
59}
Cornelia Huckdae39842008-07-17 17:16:47 +020060EXPORT_SYMBOL_GPL(chsc_error_from_response);
Cornelia Huckb9c9a212008-02-05 16:50:34 +010061
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020062struct chsc_ssd_area {
63 struct chsc_header request;
64 u16 :10;
65 u16 ssid:2;
66 u16 :4;
67 u16 f_sch; /* first subchannel */
68 u16 :16;
69 u16 l_sch; /* last subchannel */
70 u32 :32;
71 struct chsc_header response;
72 u32 :32;
73 u8 sch_valid : 1;
74 u8 dev_valid : 1;
75 u8 st : 3; /* subchannel type */
76 u8 zeroes : 3;
77 u8 unit_addr; /* unit address */
78 u16 devno; /* device number */
79 u8 path_mask;
80 u8 fla_valid_mask;
81 u16 sch; /* subchannel */
82 u8 chpid[8]; /* chpids 0-7 */
83 u16 fla[8]; /* full link addresses 0-7 */
84} __attribute__ ((packed));
85
86int chsc_get_ssd_info(struct subchannel_id schid, struct chsc_ssd_info *ssd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020088 struct chsc_ssd_area *ssd_area;
89 int ccode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 int ret;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020091 int i;
92 int mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Sebastian Ott34196f82010-10-25 16:10:29 +020094 spin_lock_irq(&chsc_page_lock);
95 memset(chsc_page, 0, PAGE_SIZE);
96 ssd_area = chsc_page;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020097 ssd_area->request.length = 0x0010;
98 ssd_area->request.code = 0x0004;
99 ssd_area->ssid = schid.ssid;
100 ssd_area->f_sch = schid.sch_no;
101 ssd_area->l_sch = schid.sch_no;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200102
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200103 ccode = chsc(ssd_area);
104 /* Check response. */
105 if (ccode > 0) {
106 ret = (ccode == 3) ? -ENODEV : -EBUSY;
Sebastian Ott34196f82010-10-25 16:10:29 +0200107 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100109 ret = chsc_error_from_response(ssd_area->response.code);
110 if (ret != 0) {
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200111 CIO_MSG_EVENT(2, "chsc: ssd failed for 0.%x.%04x (rc=%04x)\n",
112 schid.ssid, schid.sch_no,
113 ssd_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200114 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200115 }
116 if (!ssd_area->sch_valid) {
117 ret = -ENODEV;
Sebastian Ott34196f82010-10-25 16:10:29 +0200118 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200119 }
120 /* Copy data */
121 ret = 0;
122 memset(ssd, 0, sizeof(struct chsc_ssd_info));
Cornelia Huckb279a4f2008-01-26 14:10:45 +0100123 if ((ssd_area->st != SUBCHANNEL_TYPE_IO) &&
124 (ssd_area->st != SUBCHANNEL_TYPE_MSG))
Sebastian Ott34196f82010-10-25 16:10:29 +0200125 goto out;
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200126 ssd->path_mask = ssd_area->path_mask;
127 ssd->fla_valid_mask = ssd_area->fla_valid_mask;
128 for (i = 0; i < 8; i++) {
129 mask = 0x80 >> i;
130 if (ssd_area->path_mask & mask) {
131 chp_id_init(&ssd->chpid[i]);
132 ssd->chpid[i].id = ssd_area->chpid[i];
133 }
134 if (ssd_area->fla_valid_mask & mask)
135 ssd->fla[i] = ssd_area->fla[i];
136 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200137out:
138 spin_unlock_irq(&chsc_page_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return ret;
140}
141
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100142static int s390_subchannel_remove_chpid(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Cornelia Huck2ec22982006-12-08 15:54:26 +0100144 spin_lock_irq(sch->lock);
Cornelia Huckc820de32008-07-14 09:58:45 +0200145 if (sch->driver && sch->driver->chp_event)
146 if (sch->driver->chp_event(sch, data, CHP_OFFLINE) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 goto out_unreg;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100148 spin_unlock_irq(sch->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return 0;
Stefan Bader387b7342007-04-27 16:01:33 +0200150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151out_unreg:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 sch->lpm = 0;
Stefan Bader387b7342007-04-27 16:01:33 +0200153 spin_unlock_irq(sch->lock);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200154 css_schedule_eval(sch->schid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 return 0;
156}
157
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200158void chsc_chp_offline(struct chp_id chpid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 char dbf_txt[15];
Cornelia Huck99611f82008-07-14 09:59:02 +0200161 struct chp_link link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200163 sprintf(dbf_txt, "chpr%x.%02x", chpid.cssid, chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 CIO_TRACE_EVENT(2, dbf_txt);
165
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200166 if (chp_get_status(chpid) <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return;
Cornelia Huck99611f82008-07-14 09:59:02 +0200168 memset(&link, 0, sizeof(struct chp_link));
169 link.chpid = chpid;
Cornelia Huck22806dc2008-04-17 07:45:59 +0200170 /* Wait until previous actions have settled. */
171 css_wait_for_slow_path();
Cornelia Huck99611f82008-07-14 09:59:02 +0200172 for_each_subchannel_staged(s390_subchannel_remove_chpid, NULL, &link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100175static int s390_process_res_acc_new_sch(struct subchannel_id schid, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800177 struct schib schib;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800178 /*
179 * We don't know the device yet, but since a path
180 * may be available now to the device we'll have
181 * to do recognition again.
182 * Since we don't have any idea about which chpid
183 * that beast may be on we'll have to do a stsch
184 * on all devices, grr...
185 */
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800186 if (stsch_err(schid, &schib))
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800187 /* We're through */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200188 return -ENXIO;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800189
190 /* Put it on the slow path. */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200191 css_schedule_eval(schid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800192 return 0;
193}
194
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100195static int __s390_process_res_acc(struct subchannel *sch, void *data)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800196{
Cornelia Huck2ec22982006-12-08 15:54:26 +0100197 spin_lock_irq(sch->lock);
Cornelia Huckc820de32008-07-14 09:58:45 +0200198 if (sch->driver && sch->driver->chp_event)
199 sch->driver->chp_event(sch, data, CHP_ONLINE);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100200 spin_unlock_irq(sch->lock);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100201
Peter Oberparleiterdd9963f2006-09-20 15:59:54 +0200202 return 0;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800203}
204
Cornelia Huck99611f82008-07-14 09:59:02 +0200205static void s390_process_res_acc(struct chp_link *link)
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800206{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 char dbf_txt[15];
208
Cornelia Huck99611f82008-07-14 09:59:02 +0200209 sprintf(dbf_txt, "accpr%x.%02x", link->chpid.cssid,
210 link->chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 CIO_TRACE_EVENT( 2, dbf_txt);
Cornelia Huck99611f82008-07-14 09:59:02 +0200212 if (link->fla != 0) {
213 sprintf(dbf_txt, "fla%x", link->fla);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 CIO_TRACE_EVENT( 2, dbf_txt);
215 }
Cornelia Huck22806dc2008-04-17 07:45:59 +0200216 /* Wait until previous actions have settled. */
217 css_wait_for_slow_path();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 /*
219 * I/O resources may have become accessible.
220 * Scan through all subchannels that may be concerned and
221 * do a validation on those.
222 * The more information we have (info), the less scanning
223 * will we have to do.
224 */
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100225 for_each_subchannel_staged(__s390_process_res_acc,
Cornelia Huck99611f82008-07-14 09:59:02 +0200226 s390_process_res_acc_new_sch, link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
229static int
230__get_chpid_from_lir(void *data)
231{
232 struct lir {
233 u8 iq;
234 u8 ic;
235 u16 sci;
236 /* incident-node descriptor */
237 u32 indesc[28];
238 /* attached-node descriptor */
239 u32 andesc[28];
240 /* incident-specific information */
241 u32 isinfo[28];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +0100242 } __attribute__ ((packed)) *lir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Cornelia Huck12975ae2006-10-11 15:31:47 +0200244 lir = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (!(lir->iq&0x80))
246 /* NULL link incident record */
247 return -EINVAL;
248 if (!(lir->indesc[0]&0xc0000000))
249 /* node descriptor not valid */
250 return -EINVAL;
251 if (!(lir->indesc[0]&0x10000000))
252 /* don't handle device-type nodes - FIXME */
253 return -EINVAL;
254 /* Byte 3 contains the chpid. Could also be CTCA, but we don't care */
255
256 return (u16) (lir->indesc[0]&0x000000ff);
257}
258
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100259struct chsc_sei_area {
260 struct chsc_header request;
261 u32 reserved1;
262 u32 reserved2;
263 u32 reserved3;
264 struct chsc_header response;
265 u32 reserved4;
266 u8 flags;
267 u8 vf; /* validity flags */
268 u8 rs; /* reporting source */
269 u8 cc; /* content code */
270 u16 fla; /* full link address */
271 u16 rsid; /* reporting source id */
272 u32 reserved5;
273 u32 reserved6;
274 u8 ccdf[4096 - 16 - 24]; /* content-code dependent field */
275 /* ccdf has to be big enough for a link-incident record */
276} __attribute__ ((packed));
277
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200278static void chsc_process_sei_link_incident(struct chsc_sei_area *sei_area)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200280 struct chp_id chpid;
281 int id;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100282
283 CIO_CRW_EVENT(4, "chsc: link incident (rs=%02x, rs_id=%04x)\n",
284 sei_area->rs, sei_area->rsid);
285 if (sei_area->rs != 4)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200286 return;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200287 id = __get_chpid_from_lir(sei_area->ccdf);
288 if (id < 0)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100289 CIO_CRW_EVENT(4, "chsc: link incident - invalid LIR\n");
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200290 else {
291 chp_id_init(&chpid);
292 chpid.id = id;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200293 chsc_chp_offline(chpid);
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200294 }
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100295}
296
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200297static void chsc_process_sei_res_acc(struct chsc_sei_area *sei_area)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100298{
Cornelia Huck99611f82008-07-14 09:59:02 +0200299 struct chp_link link;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200300 struct chp_id chpid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100301 int status;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100302
303 CIO_CRW_EVENT(4, "chsc: resource accessibility event (rs=%02x, "
304 "rs_id=%04x)\n", sei_area->rs, sei_area->rsid);
305 if (sei_area->rs != 4)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200306 return;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200307 chp_id_init(&chpid);
308 chpid.id = sei_area->rsid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100309 /* allocate a new channel path structure, if needed */
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200310 status = chp_get_status(chpid);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100311 if (status < 0)
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200312 chp_new(chpid);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100313 else if (!status)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200314 return;
Cornelia Huck99611f82008-07-14 09:59:02 +0200315 memset(&link, 0, sizeof(struct chp_link));
316 link.chpid = chpid;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100317 if ((sei_area->vf & 0xc0) != 0) {
Cornelia Huck99611f82008-07-14 09:59:02 +0200318 link.fla = sei_area->fla;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100319 if ((sei_area->vf & 0xc0) == 0xc0)
320 /* full link address */
Cornelia Huck99611f82008-07-14 09:59:02 +0200321 link.fla_mask = 0xffff;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100322 else
323 /* link address */
Cornelia Huck99611f82008-07-14 09:59:02 +0200324 link.fla_mask = 0xff00;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100325 }
Cornelia Huck99611f82008-07-14 09:59:02 +0200326 s390_process_res_acc(&link);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100327}
328
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200329static void chsc_process_sei_chp_avail(struct chsc_sei_area *sei_area)
330{
331 struct channel_path *chp;
332 struct chp_id chpid;
333 u8 *data;
334 int num;
335
336 CIO_CRW_EVENT(4, "chsc: channel path availability information\n");
337 if (sei_area->rs != 0)
338 return;
339 data = sei_area->ccdf;
340 chp_id_init(&chpid);
341 for (num = 0; num <= __MAX_CHPID; num++) {
342 if (!chp_test_bit(data, num))
343 continue;
344 chpid.id = num;
345
346 CIO_CRW_EVENT(4, "Update information for channel path "
347 "%x.%02x\n", chpid.cssid, chpid.id);
348 chp = chpid_to_chp(chpid);
349 if (!chp) {
350 chp_new(chpid);
351 continue;
352 }
353 mutex_lock(&chp->lock);
354 chsc_determine_base_channel_path_desc(chpid, &chp->desc);
355 mutex_unlock(&chp->lock);
356 }
357}
358
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200359struct chp_config_data {
360 u8 map[32];
361 u8 op;
362 u8 pc;
363};
364
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200365static void chsc_process_sei_chp_config(struct chsc_sei_area *sei_area)
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200366{
367 struct chp_config_data *data;
368 struct chp_id chpid;
369 int num;
Michael Ernste6d5a422008-12-25 13:39:36 +0100370 char *events[3] = {"configure", "deconfigure", "cancel deconfigure"};
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200371
372 CIO_CRW_EVENT(4, "chsc: channel-path-configuration notification\n");
373 if (sei_area->rs != 0)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200374 return;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200375 data = (struct chp_config_data *) &(sei_area->ccdf);
376 chp_id_init(&chpid);
377 for (num = 0; num <= __MAX_CHPID; num++) {
378 if (!chp_test_bit(data->map, num))
379 continue;
380 chpid.id = num;
Michael Ernste6d5a422008-12-25 13:39:36 +0100381 pr_notice("Processing %s for channel path %x.%02x\n",
382 events[data->op], chpid.cssid, chpid.id);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200383 switch (data->op) {
384 case 0:
385 chp_cfg_schedule(chpid, 1);
386 break;
387 case 1:
388 chp_cfg_schedule(chpid, 0);
389 break;
390 case 2:
391 chp_cfg_cancel_deconfigure(chpid);
392 break;
393 }
394 }
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200395}
396
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200397static void chsc_process_sei(struct chsc_sei_area *sei_area)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100398{
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100399 /* Check if we might have lost some information. */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200400 if (sei_area->flags & 0x40) {
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100401 CIO_CRW_EVENT(2, "chsc: event overflow\n");
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200402 css_schedule_eval_all();
403 }
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100404 /* which kind of information was stored? */
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100405 switch (sei_area->cc) {
406 case 1: /* link incident*/
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200407 chsc_process_sei_link_incident(sei_area);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100408 break;
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200409 case 2: /* i/o resource accessibility */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200410 chsc_process_sei_res_acc(sei_area);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100411 break;
Sebastian Ottfca894ed2011-05-23 10:24:41 +0200412 case 7: /* channel-path-availability information */
413 chsc_process_sei_chp_avail(sei_area);
414 break;
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200415 case 8: /* channel-path-configuration notification */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200416 chsc_process_sei_chp_config(sei_area);
Peter Oberparleitere5854a52007-04-27 16:01:31 +0200417 break;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100418 default: /* other stuff */
419 CIO_CRW_EVENT(4, "chsc: unhandled sei content code %d\n",
420 sei_area->cc);
421 break;
422 }
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100423}
424
Cornelia Huckc1156182008-07-14 09:58:46 +0200425static void chsc_process_crw(struct crw *crw0, struct crw *crw1, int overflow)
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100426{
427 struct chsc_sei_area *sei_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Cornelia Huckc1156182008-07-14 09:58:46 +0200429 if (overflow) {
430 css_schedule_eval_all();
431 return;
432 }
433 CIO_CRW_EVENT(2, "CRW reports slct=%d, oflw=%d, "
434 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
435 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
436 crw0->erc, crw0->rsid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (!sei_page)
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200438 return;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100439 /* Access to sei_page is serialized through machine check handler
440 * thread, so no need for locking. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 sei_area = sei_page;
442
Cornelia Huckc1156182008-07-14 09:58:46 +0200443 CIO_TRACE_EVENT(2, "prcss");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 memset(sei_area, 0, sizeof(*sei_area));
Cornelia Huck495a5b42006-03-24 03:15:14 -0800446 sei_area->request.length = 0x0010;
447 sei_area->request.code = 0x000e;
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100448 if (chsc(sei_area))
449 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100451 if (sei_area->response.code == 0x0001) {
452 CIO_CRW_EVENT(4, "chsc: sei successful\n");
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200453 chsc_process_sei(sei_area);
Peter Oberparleiter184357a2007-02-05 21:17:42 +0100454 } else {
455 CIO_CRW_EVENT(2, "chsc: sei failed (rc=%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 sei_area->response.code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 break;
458 }
459 } while (sei_area->flags & 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200462void chsc_chp_online(struct chp_id chpid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 char dbf_txt[15];
Cornelia Huck99611f82008-07-14 09:59:02 +0200465 struct chp_link link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200467 sprintf(dbf_txt, "cadd%x.%02x", chpid.cssid, chpid.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 CIO_TRACE_EVENT(2, dbf_txt);
469
Cornelia Huck22806dc2008-04-17 07:45:59 +0200470 if (chp_get_status(chpid) != 0) {
Cornelia Huck99611f82008-07-14 09:59:02 +0200471 memset(&link, 0, sizeof(struct chp_link));
472 link.chpid = chpid;
Cornelia Huck22806dc2008-04-17 07:45:59 +0200473 /* Wait until previous actions have settled. */
474 css_wait_for_slow_path();
Cornelia Huckc820de32008-07-14 09:58:45 +0200475 for_each_subchannel_staged(__s390_process_res_acc, NULL,
Cornelia Huck99611f82008-07-14 09:59:02 +0200476 &link);
Cornelia Huck22806dc2008-04-17 07:45:59 +0200477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200480static void __s390_subchannel_vary_chpid(struct subchannel *sch,
481 struct chp_id chpid, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 unsigned long flags;
Cornelia Huck99611f82008-07-14 09:59:02 +0200484 struct chp_link link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Cornelia Huck99611f82008-07-14 09:59:02 +0200486 memset(&link, 0, sizeof(struct chp_link));
487 link.chpid = chpid;
Cornelia Huck2ec22982006-12-08 15:54:26 +0100488 spin_lock_irqsave(sch->lock, flags);
Cornelia Huckc820de32008-07-14 09:58:45 +0200489 if (sch->driver && sch->driver->chp_event)
Cornelia Huck99611f82008-07-14 09:59:02 +0200490 sch->driver->chp_event(sch, &link,
Cornelia Huckc820de32008-07-14 09:58:45 +0200491 on ? CHP_VARY_ON : CHP_VARY_OFF);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100492 spin_unlock_irqrestore(sch->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100495static int s390_subchannel_vary_chpid_off(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100497 struct chp_id *chpid = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 __s390_subchannel_vary_chpid(sch, *chpid, 0);
500 return 0;
501}
502
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100503static int s390_subchannel_vary_chpid_on(struct subchannel *sch, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100505 struct chp_id *chpid = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 __s390_subchannel_vary_chpid(sch, *chpid, 1);
508 return 0;
509}
510
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800511static int
512__s390_vary_chpid_on(struct subchannel_id schid, void *data)
513{
514 struct schib schib;
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800515
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800516 if (stsch_err(schid, &schib))
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800517 /* We're through */
518 return -ENXIO;
519 /* Put it on the slow path. */
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200520 css_schedule_eval(schid);
Cornelia Huckf97a56f2006-01-06 00:19:22 -0800521 return 0;
522}
523
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200524/**
525 * chsc_chp_vary - propagate channel-path vary operation to subchannels
526 * @chpid: channl-path ID
527 * @on: non-zero for vary online, zero for vary offline
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200529int chsc_chp_vary(struct chp_id chpid, int on)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200531 struct channel_path *chp = chpid_to_chp(chpid);
Cornelia Huck99611f82008-07-14 09:59:02 +0200532
Cornelia Huck22806dc2008-04-17 07:45:59 +0200533 /* Wait until previous actions have settled. */
534 css_wait_for_slow_path();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 /*
536 * Redo PathVerification on the devices the chpid connects to
537 */
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200538 if (on) {
539 /* Try to update the channel path descritor. */
540 chsc_determine_base_channel_path_desc(chpid, &chp->desc);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100541 for_each_subchannel_staged(s390_subchannel_vary_chpid_on,
Sebastian Ott3b484ec2011-12-01 13:32:22 +0100542 __s390_vary_chpid_on, &chpid);
Sebastian Ottc38a90a2010-10-25 16:10:31 +0200543 } else
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100544 for_each_subchannel_staged(s390_subchannel_vary_chpid_off,
Sebastian Ott3b484ec2011-12-01 13:32:22 +0100545 NULL, &chpid);
Peter Oberparleitere82a1562008-01-26 14:10:48 +0100546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return 0;
548}
549
Cornelia Huck495a5b42006-03-24 03:15:14 -0800550static void
551chsc_remove_cmg_attr(struct channel_subsystem *css)
552{
553 int i;
554
555 for (i = 0; i <= __MAX_CHPID; i++) {
556 if (!css->chps[i])
557 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200558 chp_remove_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800559 }
560}
561
562static int
563chsc_add_cmg_attr(struct channel_subsystem *css)
564{
565 int i, ret;
566
567 ret = 0;
568 for (i = 0; i <= __MAX_CHPID; i++) {
569 if (!css->chps[i])
570 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200571 ret = chp_add_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800572 if (ret)
573 goto cleanup;
574 }
575 return ret;
576cleanup:
577 for (--i; i >= 0; i--) {
578 if (!css->chps[i])
579 continue;
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200580 chp_remove_cmg_attr(css->chps[i]);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800581 }
582 return ret;
583}
584
Sebastian Ott34196f82010-10-25 16:10:29 +0200585int __chsc_do_secm(struct channel_subsystem *css, int enable)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800586{
587 struct {
588 struct chsc_header request;
589 u32 operation_code : 2;
590 u32 : 30;
591 u32 key : 4;
592 u32 : 28;
593 u32 zeroes1;
594 u32 cub_addr1;
595 u32 zeroes2;
596 u32 cub_addr2;
597 u32 reserved[13];
598 struct chsc_header response;
599 u32 status : 8;
600 u32 : 4;
601 u32 fmt : 4;
602 u32 : 16;
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +0100603 } __attribute__ ((packed)) *secm_area;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800604 int ret, ccode;
605
Sebastian Ott34196f82010-10-25 16:10:29 +0200606 spin_lock_irq(&chsc_page_lock);
607 memset(chsc_page, 0, PAGE_SIZE);
608 secm_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800609 secm_area->request.length = 0x0050;
610 secm_area->request.code = 0x0016;
611
Heiko Carstensd1bf8592010-02-26 22:37:30 +0100612 secm_area->key = PAGE_DEFAULT_KEY >> 4;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800613 secm_area->cub_addr1 = (u64)(unsigned long)css->cub_addr1;
614 secm_area->cub_addr2 = (u64)(unsigned long)css->cub_addr2;
615
616 secm_area->operation_code = enable ? 0 : 1;
617
618 ccode = chsc(secm_area);
Sebastian Ott34196f82010-10-25 16:10:29 +0200619 if (ccode > 0) {
620 ret = (ccode == 3) ? -ENODEV : -EBUSY;
621 goto out;
622 }
Cornelia Huck495a5b42006-03-24 03:15:14 -0800623
624 switch (secm_area->response.code) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100625 case 0x0102:
626 case 0x0103:
Cornelia Huck495a5b42006-03-24 03:15:14 -0800627 ret = -EINVAL;
Sebastian Ott17e7d872009-03-26 15:24:17 +0100628 break;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800629 default:
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100630 ret = chsc_error_from_response(secm_area->response.code);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800631 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100632 if (ret != 0)
633 CIO_CRW_EVENT(2, "chsc: secm failed (rc=%04x)\n",
634 secm_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200635out:
636 spin_unlock_irq(&chsc_page_lock);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800637 return ret;
638}
639
640int
641chsc_secm(struct channel_subsystem *css, int enable)
642{
Cornelia Huck495a5b42006-03-24 03:15:14 -0800643 int ret;
644
Cornelia Huck495a5b42006-03-24 03:15:14 -0800645 if (enable && !css->cm_enabled) {
646 css->cub_addr1 = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
647 css->cub_addr2 = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
648 if (!css->cub_addr1 || !css->cub_addr2) {
649 free_page((unsigned long)css->cub_addr1);
650 free_page((unsigned long)css->cub_addr2);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800651 return -ENOMEM;
652 }
653 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200654 ret = __chsc_do_secm(css, enable);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800655 if (!ret) {
656 css->cm_enabled = enable;
657 if (css->cm_enabled) {
658 ret = chsc_add_cmg_attr(css);
659 if (ret) {
Sebastian Ott34196f82010-10-25 16:10:29 +0200660 __chsc_do_secm(css, 0);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800661 css->cm_enabled = 0;
662 }
663 } else
664 chsc_remove_cmg_attr(css);
665 }
Cornelia Huck8c4941c2007-04-27 16:01:38 +0200666 if (!css->cm_enabled) {
Cornelia Huck495a5b42006-03-24 03:15:14 -0800667 free_page((unsigned long)css->cub_addr1);
668 free_page((unsigned long)css->cub_addr2);
669 }
Cornelia Huck495a5b42006-03-24 03:15:14 -0800670 return ret;
671}
672
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200673int chsc_determine_channel_path_desc(struct chp_id chpid, int fmt, int rfmt,
Sebastian Ott906c9762010-10-25 16:10:30 +0200674 int c, int m, void *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Sebastian Ott906c9762010-10-25 16:10:30 +0200676 struct chsc_scpd *scpd_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 int ccode, ret;
678
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200679 if ((rfmt == 1) && !css_general_characteristics.fcs)
680 return -EINVAL;
681 if ((rfmt == 2) && !css_general_characteristics.cib)
682 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Sebastian Ott906c9762010-10-25 16:10:30 +0200684 memset(page, 0, PAGE_SIZE);
685 scpd_area = page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800686 scpd_area->request.length = 0x0010;
687 scpd_area->request.code = 0x0002;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200688 scpd_area->cssid = chpid.cssid;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200689 scpd_area->first_chpid = chpid.id;
690 scpd_area->last_chpid = chpid.id;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200691 scpd_area->m = m;
692 scpd_area->c = c;
693 scpd_area->fmt = fmt;
694 scpd_area->rfmt = rfmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 ccode = chsc(scpd_area);
Sebastian Ott906c9762010-10-25 16:10:30 +0200697 if (ccode > 0)
698 return (ccode == 3) ? -ENODEV : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100700 ret = chsc_error_from_response(scpd_area->response.code);
Sebastian Ott906c9762010-10-25 16:10:30 +0200701 if (ret)
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100702 CIO_CRW_EVENT(2, "chsc: scpd failed (rc=%04x)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 scpd_area->response.code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return ret;
705}
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200706EXPORT_SYMBOL_GPL(chsc_determine_channel_path_desc);
707
708int chsc_determine_base_channel_path_desc(struct chp_id chpid,
709 struct channel_path_desc *desc)
710{
711 struct chsc_response_struct *chsc_resp;
Sebastian Ott906c9762010-10-25 16:10:30 +0200712 struct chsc_scpd *scpd_area;
Sebastian Ott62da1772010-10-25 16:10:32 +0200713 unsigned long flags;
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200714 int ret;
715
Sebastian Ott62da1772010-10-25 16:10:32 +0200716 spin_lock_irqsave(&chsc_page_lock, flags);
Sebastian Ott906c9762010-10-25 16:10:30 +0200717 scpd_area = chsc_page;
718 ret = chsc_determine_channel_path_desc(chpid, 0, 0, 0, 0, scpd_area);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200719 if (ret)
Sebastian Ott906c9762010-10-25 16:10:30 +0200720 goto out;
721 chsc_resp = (void *)&scpd_area->response;
Sebastian Ott878c4952010-07-19 09:22:37 +0200722 memcpy(desc, &chsc_resp->data, sizeof(*desc));
Sebastian Ott906c9762010-10-25 16:10:30 +0200723out:
Sebastian Ott62da1772010-10-25 16:10:32 +0200724 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200725 return ret;
726}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Sebastian Ottce322cc2011-01-05 12:47:56 +0100728int chsc_determine_fmt1_channel_path_desc(struct chp_id chpid,
729 struct channel_path_desc_fmt1 *desc)
730{
731 struct chsc_response_struct *chsc_resp;
732 struct chsc_scpd *scpd_area;
733 int ret;
734
735 spin_lock_irq(&chsc_page_lock);
736 scpd_area = chsc_page;
737 ret = chsc_determine_channel_path_desc(chpid, 0, 0, 1, 0, scpd_area);
738 if (ret)
739 goto out;
740 chsc_resp = (void *)&scpd_area->response;
741 memcpy(desc, &chsc_resp->data, sizeof(*desc));
742out:
743 spin_unlock_irq(&chsc_page_lock);
744 return ret;
745}
746
Cornelia Huck495a5b42006-03-24 03:15:14 -0800747static void
748chsc_initialize_cmg_chars(struct channel_path *chp, u8 cmcv,
749 struct cmg_chars *chars)
750{
Sebastian Ott34196f82010-10-25 16:10:29 +0200751 struct cmg_chars *cmg_chars;
752 int i, mask;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800753
Sebastian Ott34196f82010-10-25 16:10:29 +0200754 cmg_chars = chp->cmg_chars;
755 for (i = 0; i < NR_MEASUREMENT_CHARS; i++) {
756 mask = 0x80 >> (i + 3);
757 if (cmcv & mask)
758 cmg_chars->values[i] = chars->values[i];
759 else
760 cmg_chars->values[i] = 0;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800761 }
762}
763
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200764int chsc_get_channel_measurement_chars(struct channel_path *chp)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800765{
Sebastian Ott34196f82010-10-25 16:10:29 +0200766 struct cmg_chars *cmg_chars;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800767 int ccode, ret;
768
769 struct {
770 struct chsc_header request;
771 u32 : 24;
772 u32 first_chpid : 8;
773 u32 : 24;
774 u32 last_chpid : 8;
775 u32 zeroes1;
776 struct chsc_header response;
777 u32 zeroes2;
778 u32 not_valid : 1;
779 u32 shared : 1;
780 u32 : 22;
781 u32 chpid : 8;
782 u32 cmcv : 5;
783 u32 : 11;
784 u32 cmgq : 8;
785 u32 cmg : 8;
786 u32 zeroes3;
787 u32 data[NR_MEASUREMENT_CHARS];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +0100788 } __attribute__ ((packed)) *scmc_area;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800789
Sebastian Ott34196f82010-10-25 16:10:29 +0200790 chp->cmg_chars = NULL;
791 cmg_chars = kmalloc(sizeof(*cmg_chars), GFP_KERNEL);
792 if (!cmg_chars)
Cornelia Huck495a5b42006-03-24 03:15:14 -0800793 return -ENOMEM;
794
Sebastian Ott34196f82010-10-25 16:10:29 +0200795 spin_lock_irq(&chsc_page_lock);
796 memset(chsc_page, 0, PAGE_SIZE);
797 scmc_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800798 scmc_area->request.length = 0x0010;
799 scmc_area->request.code = 0x0022;
Peter Oberparleiterf86635f2007-04-27 16:01:26 +0200800 scmc_area->first_chpid = chp->chpid.id;
801 scmc_area->last_chpid = chp->chpid.id;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800802
803 ccode = chsc(scmc_area);
804 if (ccode > 0) {
805 ret = (ccode == 3) ? -ENODEV : -EBUSY;
806 goto out;
807 }
808
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100809 ret = chsc_error_from_response(scmc_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200810 if (ret) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100811 CIO_CRW_EVENT(2, "chsc: scmc failed (rc=%04x)\n",
Cornelia Huck495a5b42006-03-24 03:15:14 -0800812 scmc_area->response.code);
Sebastian Ott34196f82010-10-25 16:10:29 +0200813 goto out;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800814 }
Sebastian Ott34196f82010-10-25 16:10:29 +0200815 if (scmc_area->not_valid) {
816 chp->cmg = -1;
817 chp->shared = -1;
818 goto out;
819 }
820 chp->cmg = scmc_area->cmg;
821 chp->shared = scmc_area->shared;
822 if (chp->cmg != 2 && chp->cmg != 3) {
823 /* No cmg-dependent data. */
824 goto out;
825 }
826 chp->cmg_chars = cmg_chars;
827 chsc_initialize_cmg_chars(chp, scmc_area->cmcv,
828 (struct cmg_chars *) &scmc_area->data);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800829out:
Sebastian Ott34196f82010-10-25 16:10:29 +0200830 spin_unlock_irq(&chsc_page_lock);
831 if (!chp->cmg_chars)
832 kfree(cmg_chars);
833
Cornelia Huck495a5b42006-03-24 03:15:14 -0800834 return ret;
835}
836
Sebastian Ott34aec072010-10-25 16:10:28 +0200837int __init chsc_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Cornelia Huckc1156182008-07-14 09:58:46 +0200839 int ret;
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 sei_page = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
Sebastian Ott34196f82010-10-25 16:10:29 +0200842 chsc_page = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
843 if (!sei_page || !chsc_page) {
844 ret = -ENOMEM;
845 goto out_err;
Cornelia Huckc1156182008-07-14 09:58:46 +0200846 }
Heiko Carstensf5daba12009-03-26 15:24:01 +0100847 ret = crw_register_handler(CRW_RSC_CSS, chsc_process_crw);
Cornelia Huckc1156182008-07-14 09:58:46 +0200848 if (ret)
Sebastian Ott34196f82010-10-25 16:10:29 +0200849 goto out_err;
850 return ret;
851out_err:
852 free_page((unsigned long)chsc_page);
853 free_page((unsigned long)sei_page);
Cornelia Huckc1156182008-07-14 09:58:46 +0200854 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
Sebastian Ott34aec072010-10-25 16:10:28 +0200857void __init chsc_init_cleanup(void)
Cornelia Huck4434a382007-07-27 12:29:21 +0200858{
Heiko Carstensf5daba12009-03-26 15:24:01 +0100859 crw_unregister_handler(CRW_RSC_CSS);
Sebastian Ott34196f82010-10-25 16:10:29 +0200860 free_page((unsigned long)chsc_page);
Sebastian Ott34aec072010-10-25 16:10:28 +0200861 free_page((unsigned long)sei_page);
Cornelia Huck4434a382007-07-27 12:29:21 +0200862}
863
Sebastian Ott818c2722010-04-22 17:17:03 +0200864int chsc_enable_facility(int operation_code)
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800865{
Sebastian Ott34196f82010-10-25 16:10:29 +0200866 unsigned long flags;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800867 int ret;
Sebastian Ott34196f82010-10-25 16:10:29 +0200868 struct {
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800869 struct chsc_header request;
870 u8 reserved1:4;
871 u8 format:4;
872 u8 reserved2;
873 u16 operation_code;
874 u32 reserved3;
875 u32 reserved4;
876 u32 operation_data_area[252];
877 struct chsc_header response;
878 u32 reserved5:4;
879 u32 format2:4;
880 u32 reserved6:24;
Sebastian Ott34196f82010-10-25 16:10:29 +0200881 } __attribute__ ((packed)) *sda_area;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800882
Sebastian Ott34196f82010-10-25 16:10:29 +0200883 spin_lock_irqsave(&chsc_page_lock, flags);
884 memset(chsc_page, 0, PAGE_SIZE);
885 sda_area = chsc_page;
886 sda_area->request.length = 0x0400;
887 sda_area->request.code = 0x0031;
888 sda_area->operation_code = operation_code;
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800889
Sebastian Ott34196f82010-10-25 16:10:29 +0200890 ret = chsc(sda_area);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800891 if (ret > 0) {
892 ret = (ret == 3) ? -ENODEV : -EBUSY;
893 goto out;
894 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100895
Sebastian Ott34196f82010-10-25 16:10:29 +0200896 switch (sda_area->response.code) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100897 case 0x0101:
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800898 ret = -EOPNOTSUPP;
899 break;
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100900 default:
Sebastian Ott34196f82010-10-25 16:10:29 +0200901 ret = chsc_error_from_response(sda_area->response.code);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800902 }
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100903 if (ret != 0)
904 CIO_CRW_EVENT(2, "chsc: sda (oc=%x) failed (rc=%04x)\n",
Sebastian Ott34196f82010-10-25 16:10:29 +0200905 operation_code, sda_area->response.code);
906out:
907 spin_unlock_irqrestore(&chsc_page_lock, flags);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800908 return ret;
909}
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911struct css_general_char css_general_characteristics;
912struct css_chsc_char css_chsc_characteristics;
913
914int __init
915chsc_determine_css_characteristics(void)
916{
917 int result;
918 struct {
919 struct chsc_header request;
920 u32 reserved1;
921 u32 reserved2;
922 u32 reserved3;
923 struct chsc_header response;
924 u32 reserved4;
925 u32 general_char[510];
Sebastian Ott34aec072010-10-25 16:10:28 +0200926 u32 chsc_char[508];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +0100927 } __attribute__ ((packed)) *scsc_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Sebastian Ott34196f82010-10-25 16:10:29 +0200929 spin_lock_irq(&chsc_page_lock);
930 memset(chsc_page, 0, PAGE_SIZE);
931 scsc_area = chsc_page;
Cornelia Huck495a5b42006-03-24 03:15:14 -0800932 scsc_area->request.length = 0x0010;
933 scsc_area->request.code = 0x0010;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 result = chsc(scsc_area);
936 if (result) {
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100937 result = (result == 3) ? -ENODEV : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 goto exit;
939 }
940
Cornelia Huckb9c9a212008-02-05 16:50:34 +0100941 result = chsc_error_from_response(scsc_area->response.code);
942 if (result == 0) {
943 memcpy(&css_general_characteristics, scsc_area->general_char,
944 sizeof(css_general_characteristics));
945 memcpy(&css_chsc_characteristics, scsc_area->chsc_char,
946 sizeof(css_chsc_characteristics));
947 } else
948 CIO_CRW_EVENT(2, "chsc: scsc failed (rc=%04x)\n",
949 scsc_area->response.code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950exit:
Sebastian Ott34196f82010-10-25 16:10:29 +0200951 spin_unlock_irq(&chsc_page_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 return result;
953}
954
955EXPORT_SYMBOL_GPL(css_general_characteristics);
956EXPORT_SYMBOL_GPL(css_chsc_characteristics);
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200957
958int chsc_sstpc(void *page, unsigned int op, u16 ctrl)
959{
960 struct {
961 struct chsc_header request;
962 unsigned int rsvd0;
963 unsigned int op : 8;
964 unsigned int rsvd1 : 8;
965 unsigned int ctrl : 16;
966 unsigned int rsvd2[5];
967 struct chsc_header response;
968 unsigned int rsvd3[7];
969 } __attribute__ ((packed)) *rr;
970 int rc;
971
972 memset(page, 0, PAGE_SIZE);
973 rr = page;
974 rr->request.length = 0x0020;
975 rr->request.code = 0x0033;
976 rr->op = op;
977 rr->ctrl = ctrl;
978 rc = chsc(rr);
979 if (rc)
980 return -EIO;
981 rc = (rr->response.code == 0x0001) ? 0 : -EIO;
982 return rc;
983}
984
985int chsc_sstpi(void *page, void *result, size_t size)
986{
987 struct {
988 struct chsc_header request;
989 unsigned int rsvd0[3];
990 struct chsc_header response;
991 char data[size];
992 } __attribute__ ((packed)) *rr;
993 int rc;
994
995 memset(page, 0, PAGE_SIZE);
996 rr = page;
997 rr->request.length = 0x0010;
998 rr->request.code = 0x0038;
999 rc = chsc(rr);
1000 if (rc)
1001 return -EIO;
1002 memcpy(result, &rr->data, size);
1003 return (rr->response.code == 0x0001) ? 0 : -EIO;
1004}
1005
Michael Ernstfd0457a2010-08-09 18:12:50 +02001006int chsc_siosl(struct subchannel_id schid)
1007{
Sebastian Ott34196f82010-10-25 16:10:29 +02001008 struct {
1009 struct chsc_header request;
1010 u32 word1;
1011 struct subchannel_id sid;
1012 u32 word3;
1013 struct chsc_header response;
1014 u32 word[11];
1015 } __attribute__ ((packed)) *siosl_area;
Michael Ernstfd0457a2010-08-09 18:12:50 +02001016 unsigned long flags;
1017 int ccode;
1018 int rc;
1019
Sebastian Ott34196f82010-10-25 16:10:29 +02001020 spin_lock_irqsave(&chsc_page_lock, flags);
1021 memset(chsc_page, 0, PAGE_SIZE);
1022 siosl_area = chsc_page;
1023 siosl_area->request.length = 0x0010;
1024 siosl_area->request.code = 0x0046;
1025 siosl_area->word1 = 0x80000000;
1026 siosl_area->sid = schid;
Michael Ernstfd0457a2010-08-09 18:12:50 +02001027
Sebastian Ott34196f82010-10-25 16:10:29 +02001028 ccode = chsc(siosl_area);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001029 if (ccode > 0) {
1030 if (ccode == 3)
1031 rc = -ENODEV;
1032 else
1033 rc = -EBUSY;
1034 CIO_MSG_EVENT(2, "chsc: chsc failed for 0.%x.%04x (ccode=%d)\n",
1035 schid.ssid, schid.sch_no, ccode);
1036 goto out;
1037 }
Sebastian Ott34196f82010-10-25 16:10:29 +02001038 rc = chsc_error_from_response(siosl_area->response.code);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001039 if (rc)
1040 CIO_MSG_EVENT(2, "chsc: siosl failed for 0.%x.%04x (rc=%04x)\n",
1041 schid.ssid, schid.sch_no,
Sebastian Ott34196f82010-10-25 16:10:29 +02001042 siosl_area->response.code);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001043 else
1044 CIO_MSG_EVENT(4, "chsc: siosl succeeded for 0.%x.%04x\n",
1045 schid.ssid, schid.sch_no);
1046out:
Sebastian Ott34196f82010-10-25 16:10:29 +02001047 spin_unlock_irqrestore(&chsc_page_lock, flags);
Michael Ernstfd0457a2010-08-09 18:12:50 +02001048 return rc;
1049}
1050EXPORT_SYMBOL_GPL(chsc_siosl);