1 // SPDX-License-Identifier: GPL-2.0
3 * S/390 common I/O routines -- channel subsystem call
5 * Copyright IBM Corp. 1999,2012
11 #define KMSG_COMPONENT "cio"
12 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
14 #include <linux/module.h>
15 #include <linux/slab.h>
16 #include <linux/init.h>
17 #include <linux/device.h>
18 #include <linux/mutex.h>
19 #include <linux/pci.h>
22 #include <asm/chpid.h>
26 #include <asm/ebcdic.h>
31 #include "cio_debug.h"
36 static void *sei_page;
37 static void *chsc_page;
38 static DEFINE_SPINLOCK(chsc_page_lock);
41 * chsc_error_from_response() - convert a chsc response to an error
42 * @response: chsc response code
44 * Returns an appropriate Linux error code for @response.
46 int chsc_error_from_response(int response)
62 case 0x0107: /* "Channel busy" for the op 0x003d */
71 EXPORT_SYMBOL_GPL(chsc_error_from_response);
73 struct chsc_ssd_area {
74 struct chsc_header request;
78 u16 f_sch; /* first subchannel */
80 u16 l_sch; /* last subchannel */
82 struct chsc_header response;
86 u8 st : 3; /* subchannel type */
88 u8 unit_addr; /* unit address */
89 u16 devno; /* device number */
92 u16 sch; /* subchannel */
93 u8 chpid[8]; /* chpids 0-7 */
94 u16 fla[8]; /* full link addresses 0-7 */
95 } __packed __aligned(PAGE_SIZE);
97 int chsc_get_ssd_info(struct subchannel_id schid, struct chsc_ssd_info *ssd)
99 struct chsc_ssd_area *ssd_area;
106 spin_lock_irqsave(&chsc_page_lock, flags);
107 memset(chsc_page, 0, PAGE_SIZE);
108 ssd_area = chsc_page;
109 ssd_area->request.length = 0x0010;
110 ssd_area->request.code = 0x0004;
111 ssd_area->ssid = schid.ssid;
112 ssd_area->f_sch = schid.sch_no;
113 ssd_area->l_sch = schid.sch_no;
115 ccode = chsc(ssd_area);
116 /* Check response. */
118 ret = (ccode == 3) ? -ENODEV : -EBUSY;
121 ret = chsc_error_from_response(ssd_area->response.code);
123 CIO_MSG_EVENT(2, "chsc: ssd failed for 0.%x.%04x (rc=%04x)\n",
124 schid.ssid, schid.sch_no,
125 ssd_area->response.code);
128 if (!ssd_area->sch_valid) {
134 memset(ssd, 0, sizeof(struct chsc_ssd_info));
135 if ((ssd_area->st != SUBCHANNEL_TYPE_IO) &&
136 (ssd_area->st != SUBCHANNEL_TYPE_MSG))
138 ssd->path_mask = ssd_area->path_mask;
139 ssd->fla_valid_mask = ssd_area->fla_valid_mask;
140 for (i = 0; i < 8; i++) {
142 if (ssd_area->path_mask & mask) {
143 chp_id_init(&ssd->chpid[i]);
144 ssd->chpid[i].id = ssd_area->chpid[i];
146 if (ssd_area->fla_valid_mask & mask)
147 ssd->fla[i] = ssd_area->fla[i];
150 spin_unlock_irqrestore(&chsc_page_lock, flags);
155 * chsc_ssqd() - store subchannel QDIO data (SSQD)
156 * @schid: id of the subchannel on which SSQD is performed
157 * @ssqd: request and response block for SSQD
159 * Returns 0 on success.
161 int chsc_ssqd(struct subchannel_id schid, struct chsc_ssqd_area *ssqd)
163 memset(ssqd, 0, sizeof(*ssqd));
164 ssqd->request.length = 0x0010;
165 ssqd->request.code = 0x0024;
166 ssqd->first_sch = schid.sch_no;
167 ssqd->last_sch = schid.sch_no;
168 ssqd->ssid = schid.ssid;
173 return chsc_error_from_response(ssqd->response.code);
175 EXPORT_SYMBOL_GPL(chsc_ssqd);
178 * chsc_sadc() - set adapter device controls (SADC)
179 * @schid: id of the subchannel on which SADC is performed
180 * @scssc: request and response block for SADC
181 * @summary_indicator_addr: summary indicator address
182 * @subchannel_indicator_addr: subchannel indicator address
183 * @isc: Interruption Subclass for this subchannel
185 * Returns 0 on success.
187 int chsc_sadc(struct subchannel_id schid, struct chsc_scssc_area *scssc,
188 u64 summary_indicator_addr, u64 subchannel_indicator_addr, u8 isc)
190 memset(scssc, 0, sizeof(*scssc));
191 scssc->request.length = 0x0fe0;
192 scssc->request.code = 0x0021;
193 scssc->operation_code = 0;
195 scssc->summary_indicator_addr = summary_indicator_addr;
196 scssc->subchannel_indicator_addr = subchannel_indicator_addr;
198 scssc->ks = PAGE_DEFAULT_KEY >> 4;
199 scssc->kc = PAGE_DEFAULT_KEY >> 4;
201 scssc->schid = schid;
203 /* enable the time delay disablement facility */
204 if (css_general_characteristics.aif_tdd)
205 scssc->word_with_d_bit = 0x10000000;
210 return chsc_error_from_response(scssc->response.code);
212 EXPORT_SYMBOL_GPL(chsc_sadc);
214 static int s390_subchannel_remove_chpid(struct subchannel *sch, void *data)
216 spin_lock_irq(sch->lock);
217 if (sch->driver && sch->driver->chp_event)
218 if (sch->driver->chp_event(sch, data, CHP_OFFLINE) != 0)
220 spin_unlock_irq(sch->lock);
225 spin_unlock_irq(sch->lock);
226 css_schedule_eval(sch->schid);
230 void chsc_chp_offline(struct chp_id chpid)
232 struct channel_path *chp = chpid_to_chp(chpid);
233 struct chp_link link;
236 sprintf(dbf_txt, "chpr%x.%02x", chpid.cssid, chpid.id);
237 CIO_TRACE_EVENT(2, dbf_txt);
239 if (chp_get_status(chpid) <= 0)
241 memset(&link, 0, sizeof(struct chp_link));
243 /* Wait until previous actions have settled. */
244 css_wait_for_slow_path();
246 mutex_lock(&chp->lock);
247 chp_update_desc(chp);
248 mutex_unlock(&chp->lock);
250 for_each_subchannel_staged(s390_subchannel_remove_chpid, NULL, &link);
253 static int __s390_process_res_acc(struct subchannel *sch, void *data)
255 spin_lock_irq(sch->lock);
256 if (sch->driver && sch->driver->chp_event)
257 sch->driver->chp_event(sch, data, CHP_ONLINE);
258 spin_unlock_irq(sch->lock);
263 static void s390_process_res_acc(struct chp_link *link)
267 sprintf(dbf_txt, "accpr%x.%02x", link->chpid.cssid,
269 CIO_TRACE_EVENT( 2, dbf_txt);
270 if (link->fla != 0) {
271 sprintf(dbf_txt, "fla%x", link->fla);
272 CIO_TRACE_EVENT( 2, dbf_txt);
274 /* Wait until previous actions have settled. */
275 css_wait_for_slow_path();
277 * I/O resources may have become accessible.
278 * Scan through all subchannels that may be concerned and
279 * do a validation on those.
280 * The more information we have (info), the less scanning
281 * will we have to do.
283 for_each_subchannel_staged(__s390_process_res_acc, NULL, link);
284 css_schedule_reprobe();
287 struct chsc_sei_nt0_area {
289 u8 vf; /* validity flags */
290 u8 rs; /* reporting source */
291 u8 cc; /* content code */
292 u16 fla; /* full link address */
293 u16 rsid; /* reporting source id */
296 /* ccdf has to be big enough for a link-incident record */
297 u8 ccdf[PAGE_SIZE - 24 - 16]; /* content-code dependent field */
300 struct chsc_sei_nt2_area {
301 u8 flags; /* p and v bit */
304 u8 cc; /* content code */
306 u8 ccdf[PAGE_SIZE - 24 - 56]; /* content-code dependent field */
309 #define CHSC_SEI_NT0 (1ULL << 63)
310 #define CHSC_SEI_NT2 (1ULL << 61)
313 struct chsc_header request;
315 u64 ntsm; /* notification type mask */
316 struct chsc_header response;
320 struct chsc_sei_nt0_area nt0_area;
321 struct chsc_sei_nt2_area nt2_area;
322 u8 nt_area[PAGE_SIZE - 24];
324 } __packed __aligned(PAGE_SIZE);
327 * Link Incident Record as defined in SA22-7202, "ESCON I/O Interface"
330 #define LIR_IQ_CLASS_INFO 0
331 #define LIR_IQ_CLASS_DEGRADED 1
332 #define LIR_IQ_CLASS_NOT_OPERATIONAL 2
343 struct node_descriptor incident_node;
344 struct node_descriptor attached_node;
348 #define PARAMS_LEN 10 /* PARAMS=xx,xxxxxx */
349 #define NODEID_LEN 35 /* NODEID=tttttt/mdl,mmm.ppssssssssssss,xxxx */
351 /* Copy EBCIDC text, convert to ASCII and optionally add delimiter. */
352 static char *store_ebcdic(char *dest, const char *src, unsigned long len,
355 memcpy(dest, src, len);
364 /* Format node ID and parameters for output in LIR log message. */
365 static void format_node_data(char *params, char *id, struct node_descriptor *nd)
367 memset(params, 0, PARAMS_LEN);
368 memset(id, 0, NODEID_LEN);
370 if (nd->validity != ND_VALIDITY_VALID) {
371 strncpy(params, "n/a", PARAMS_LEN - 1);
372 strncpy(id, "n/a", NODEID_LEN - 1);
376 /* PARAMS=xx,xxxxxx */
377 snprintf(params, PARAMS_LEN, "%02x,%06x", nd->byte0, nd->params);
378 /* NODEID=tttttt/mdl,mmm.ppssssssssssss,xxxx */
379 id = store_ebcdic(id, nd->type, sizeof(nd->type), '/');
380 id = store_ebcdic(id, nd->model, sizeof(nd->model), ',');
381 id = store_ebcdic(id, nd->manufacturer, sizeof(nd->manufacturer), '.');
382 id = store_ebcdic(id, nd->plant, sizeof(nd->plant), 0);
383 id = store_ebcdic(id, nd->seq, sizeof(nd->seq), ',');
384 sprintf(id, "%04X", nd->tag);
387 static void chsc_process_sei_link_incident(struct chsc_sei_nt0_area *sei_area)
389 struct lir *lir = (struct lir *) &sei_area->ccdf;
390 char iuparams[PARAMS_LEN], iunodeid[NODEID_LEN], auparams[PARAMS_LEN],
391 aunodeid[NODEID_LEN];
393 CIO_CRW_EVENT(4, "chsc: link incident (rs=%02x, rs_id=%04x, iq=%02x)\n",
394 sei_area->rs, sei_area->rsid, sei_area->ccdf[0]);
396 /* Ignore NULL Link Incident Records. */
400 /* Inform user that a link requires maintenance actions because it has
401 * become degraded or not operational. Note that this log message is
402 * the primary intention behind a Link Incident Record. */
404 format_node_data(iuparams, iunodeid, &lir->incident_node);
405 format_node_data(auparams, aunodeid, &lir->attached_node);
407 switch (lir->iq.class) {
408 case LIR_IQ_CLASS_DEGRADED:
409 pr_warn("Link degraded: RS=%02x RSID=%04x IC=%02x "
410 "IUPARAMS=%s IUNODEID=%s AUPARAMS=%s AUNODEID=%s\n",
411 sei_area->rs, sei_area->rsid, lir->ic, iuparams,
412 iunodeid, auparams, aunodeid);
414 case LIR_IQ_CLASS_NOT_OPERATIONAL:
415 pr_err("Link stopped: RS=%02x RSID=%04x IC=%02x "
416 "IUPARAMS=%s IUNODEID=%s AUPARAMS=%s AUNODEID=%s\n",
417 sei_area->rs, sei_area->rsid, lir->ic, iuparams,
418 iunodeid, auparams, aunodeid);
425 static void chsc_process_sei_res_acc(struct chsc_sei_nt0_area *sei_area)
427 struct channel_path *chp;
428 struct chp_link link;
432 CIO_CRW_EVENT(4, "chsc: resource accessibility event (rs=%02x, "
433 "rs_id=%04x)\n", sei_area->rs, sei_area->rsid);
434 if (sei_area->rs != 4)
437 chpid.id = sei_area->rsid;
438 /* allocate a new channel path structure, if needed */
439 status = chp_get_status(chpid);
446 chp = chpid_to_chp(chpid);
447 mutex_lock(&chp->lock);
448 chp_update_desc(chp);
449 mutex_unlock(&chp->lock);
451 memset(&link, 0, sizeof(struct chp_link));
453 if ((sei_area->vf & 0xc0) != 0) {
454 link.fla = sei_area->fla;
455 if ((sei_area->vf & 0xc0) == 0xc0)
456 /* full link address */
457 link.fla_mask = 0xffff;
460 link.fla_mask = 0xff00;
462 s390_process_res_acc(&link);
465 static void chsc_process_sei_chp_avail(struct chsc_sei_nt0_area *sei_area)
467 struct channel_path *chp;
472 CIO_CRW_EVENT(4, "chsc: channel path availability information\n");
473 if (sei_area->rs != 0)
475 data = sei_area->ccdf;
477 for (num = 0; num <= __MAX_CHPID; num++) {
478 if (!chp_test_bit(data, num))
482 CIO_CRW_EVENT(4, "Update information for channel path "
483 "%x.%02x\n", chpid.cssid, chpid.id);
484 chp = chpid_to_chp(chpid);
489 mutex_lock(&chp->lock);
490 chp_update_desc(chp);
491 mutex_unlock(&chp->lock);
495 struct chp_config_data {
501 static void chsc_process_sei_chp_config(struct chsc_sei_nt0_area *sei_area)
503 struct chp_config_data *data;
506 char *events[3] = {"configure", "deconfigure", "cancel deconfigure"};
508 CIO_CRW_EVENT(4, "chsc: channel-path-configuration notification\n");
509 if (sei_area->rs != 0)
511 data = (struct chp_config_data *) &(sei_area->ccdf);
513 for (num = 0; num <= __MAX_CHPID; num++) {
514 if (!chp_test_bit(data->map, num))
517 pr_notice("Processing %s for channel path %x.%02x\n",
518 events[data->op], chpid.cssid, chpid.id);
521 chp_cfg_schedule(chpid, 1);
524 chp_cfg_schedule(chpid, 0);
527 chp_cfg_cancel_deconfigure(chpid);
533 static void chsc_process_sei_scm_change(struct chsc_sei_nt0_area *sei_area)
537 CIO_CRW_EVENT(4, "chsc: scm change notification\n");
538 if (sei_area->rs != 7)
541 ret = scm_update_information();
543 CIO_CRW_EVENT(0, "chsc: updating change notification"
544 " failed (rc=%d).\n", ret);
547 static void chsc_process_sei_scm_avail(struct chsc_sei_nt0_area *sei_area)
551 CIO_CRW_EVENT(4, "chsc: scm available information\n");
552 if (sei_area->rs != 7)
555 ret = scm_process_availability_information();
557 CIO_CRW_EVENT(0, "chsc: process availability information"
558 " failed (rc=%d).\n", ret);
561 static void chsc_process_sei_ap_cfg_chg(struct chsc_sei_nt0_area *sei_area)
563 CIO_CRW_EVENT(3, "chsc: ap config changed\n");
564 if (sei_area->rs != 5)
570 static void chsc_process_sei_nt2(struct chsc_sei_nt2_area *sei_area)
572 switch (sei_area->cc) {
574 zpci_event_error(sei_area->ccdf);
577 zpci_event_availability(sei_area->ccdf);
580 CIO_CRW_EVENT(2, "chsc: sei nt2 unhandled cc=%d\n",
586 static void chsc_process_sei_nt0(struct chsc_sei_nt0_area *sei_area)
588 /* which kind of information was stored? */
589 switch (sei_area->cc) {
590 case 1: /* link incident*/
591 chsc_process_sei_link_incident(sei_area);
593 case 2: /* i/o resource accessibility */
594 chsc_process_sei_res_acc(sei_area);
596 case 3: /* ap config changed */
597 chsc_process_sei_ap_cfg_chg(sei_area);
599 case 7: /* channel-path-availability information */
600 chsc_process_sei_chp_avail(sei_area);
602 case 8: /* channel-path-configuration notification */
603 chsc_process_sei_chp_config(sei_area);
605 case 12: /* scm change notification */
606 chsc_process_sei_scm_change(sei_area);
608 case 14: /* scm available notification */
609 chsc_process_sei_scm_avail(sei_area);
611 default: /* other stuff */
612 CIO_CRW_EVENT(2, "chsc: sei nt0 unhandled cc=%d\n",
617 /* Check if we might have lost some information. */
618 if (sei_area->flags & 0x40) {
619 CIO_CRW_EVENT(2, "chsc: event overflow\n");
620 css_schedule_eval_all();
624 static void chsc_process_event_information(struct chsc_sei *sei, u64 ntsm)
626 static int ntsm_unsupported;
629 memset(sei, 0, sizeof(*sei));
630 sei->request.length = 0x0010;
631 sei->request.code = 0x000e;
632 if (!ntsm_unsupported)
638 if (sei->response.code != 0x0001) {
639 CIO_CRW_EVENT(2, "chsc: sei failed (rc=%04x, ntsm=%llx)\n",
640 sei->response.code, sei->ntsm);
642 if (sei->response.code == 3 && sei->ntsm) {
643 /* Fallback for old firmware. */
644 ntsm_unsupported = 1;
650 CIO_CRW_EVENT(2, "chsc: sei successful (nt=%d)\n", sei->nt);
653 chsc_process_sei_nt0(&sei->u.nt0_area);
656 chsc_process_sei_nt2(&sei->u.nt2_area);
659 CIO_CRW_EVENT(2, "chsc: unhandled nt: %d\n", sei->nt);
663 if (!(sei->u.nt0_area.flags & 0x80))
669 * Handle channel subsystem related CRWs.
670 * Use store event information to find out what's going on.
672 * Note: Access to sei_page is serialized through machine check handler
673 * thread, so no need for locking.
675 static void chsc_process_crw(struct crw *crw0, struct crw *crw1, int overflow)
677 struct chsc_sei *sei = sei_page;
680 css_schedule_eval_all();
683 CIO_CRW_EVENT(2, "CRW reports slct=%d, oflw=%d, "
684 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
685 crw0->slct, crw0->oflw, crw0->chn, crw0->rsc, crw0->anc,
686 crw0->erc, crw0->rsid);
688 CIO_TRACE_EVENT(2, "prcss");
689 chsc_process_event_information(sei, CHSC_SEI_NT0 | CHSC_SEI_NT2);
692 void chsc_chp_online(struct chp_id chpid)
694 struct channel_path *chp = chpid_to_chp(chpid);
695 struct chp_link link;
698 sprintf(dbf_txt, "cadd%x.%02x", chpid.cssid, chpid.id);
699 CIO_TRACE_EVENT(2, dbf_txt);
701 if (chp_get_status(chpid) != 0) {
702 memset(&link, 0, sizeof(struct chp_link));
704 /* Wait until previous actions have settled. */
705 css_wait_for_slow_path();
707 mutex_lock(&chp->lock);
708 chp_update_desc(chp);
709 mutex_unlock(&chp->lock);
711 for_each_subchannel_staged(__s390_process_res_acc, NULL,
713 css_schedule_reprobe();
717 static void __s390_subchannel_vary_chpid(struct subchannel *sch,
718 struct chp_id chpid, int on)
721 struct chp_link link;
723 memset(&link, 0, sizeof(struct chp_link));
725 spin_lock_irqsave(sch->lock, flags);
726 if (sch->driver && sch->driver->chp_event)
727 sch->driver->chp_event(sch, &link,
728 on ? CHP_VARY_ON : CHP_VARY_OFF);
729 spin_unlock_irqrestore(sch->lock, flags);
732 static int s390_subchannel_vary_chpid_off(struct subchannel *sch, void *data)
734 struct chp_id *chpid = data;
736 __s390_subchannel_vary_chpid(sch, *chpid, 0);
740 static int s390_subchannel_vary_chpid_on(struct subchannel *sch, void *data)
742 struct chp_id *chpid = data;
744 __s390_subchannel_vary_chpid(sch, *chpid, 1);
749 * chsc_chp_vary - propagate channel-path vary operation to subchannels
750 * @chpid: channl-path ID
751 * @on: non-zero for vary online, zero for vary offline
753 int chsc_chp_vary(struct chp_id chpid, int on)
755 struct channel_path *chp = chpid_to_chp(chpid);
757 /* Wait until previous actions have settled. */
758 css_wait_for_slow_path();
760 * Redo PathVerification on the devices the chpid connects to
763 /* Try to update the channel path description. */
764 chp_update_desc(chp);
765 for_each_subchannel_staged(s390_subchannel_vary_chpid_on,
767 css_schedule_reprobe();
769 for_each_subchannel_staged(s390_subchannel_vary_chpid_off,
776 chsc_remove_cmg_attr(struct channel_subsystem *css)
780 for (i = 0; i <= __MAX_CHPID; i++) {
783 chp_remove_cmg_attr(css->chps[i]);
788 chsc_add_cmg_attr(struct channel_subsystem *css)
793 for (i = 0; i <= __MAX_CHPID; i++) {
796 ret = chp_add_cmg_attr(css->chps[i]);
802 for (--i; i >= 0; i--) {
805 chp_remove_cmg_attr(css->chps[i]);
810 int __chsc_do_secm(struct channel_subsystem *css, int enable)
813 struct chsc_header request;
814 u32 operation_code : 2;
823 struct chsc_header response;
832 spin_lock_irqsave(&chsc_page_lock, flags);
833 memset(chsc_page, 0, PAGE_SIZE);
834 secm_area = chsc_page;
835 secm_area->request.length = 0x0050;
836 secm_area->request.code = 0x0016;
838 secm_area->key = PAGE_DEFAULT_KEY >> 4;
839 secm_area->cub_addr1 = (u64)(unsigned long)css->cub_addr1;
840 secm_area->cub_addr2 = (u64)(unsigned long)css->cub_addr2;
842 secm_area->operation_code = enable ? 0 : 1;
844 ccode = chsc(secm_area);
846 ret = (ccode == 3) ? -ENODEV : -EBUSY;
850 switch (secm_area->response.code) {
856 ret = chsc_error_from_response(secm_area->response.code);
859 CIO_CRW_EVENT(2, "chsc: secm failed (rc=%04x)\n",
860 secm_area->response.code);
862 spin_unlock_irqrestore(&chsc_page_lock, flags);
867 chsc_secm(struct channel_subsystem *css, int enable)
871 if (enable && !css->cm_enabled) {
872 css->cub_addr1 = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
873 css->cub_addr2 = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
874 if (!css->cub_addr1 || !css->cub_addr2) {
875 free_page((unsigned long)css->cub_addr1);
876 free_page((unsigned long)css->cub_addr2);
880 ret = __chsc_do_secm(css, enable);
882 css->cm_enabled = enable;
883 if (css->cm_enabled) {
884 ret = chsc_add_cmg_attr(css);
886 __chsc_do_secm(css, 0);
890 chsc_remove_cmg_attr(css);
892 if (!css->cm_enabled) {
893 free_page((unsigned long)css->cub_addr1);
894 free_page((unsigned long)css->cub_addr2);
899 int chsc_determine_channel_path_desc(struct chp_id chpid, int fmt, int rfmt,
900 int c, int m, void *page)
902 struct chsc_scpd *scpd_area;
905 if ((rfmt == 1 || rfmt == 0) && c == 1 &&
906 !css_general_characteristics.fcs)
908 if ((rfmt == 2) && !css_general_characteristics.cib)
910 if ((rfmt == 3) && !css_general_characteristics.util_str)
913 memset(page, 0, PAGE_SIZE);
915 scpd_area->request.length = 0x0010;
916 scpd_area->request.code = 0x0002;
917 scpd_area->cssid = chpid.cssid;
918 scpd_area->first_chpid = chpid.id;
919 scpd_area->last_chpid = chpid.id;
922 scpd_area->fmt = fmt;
923 scpd_area->rfmt = rfmt;
925 ccode = chsc(scpd_area);
927 return (ccode == 3) ? -ENODEV : -EBUSY;
929 ret = chsc_error_from_response(scpd_area->response.code);
931 CIO_CRW_EVENT(2, "chsc: scpd failed (rc=%04x)\n",
932 scpd_area->response.code);
935 EXPORT_SYMBOL_GPL(chsc_determine_channel_path_desc);
937 #define chsc_det_chp_desc(FMT, c) \
938 int chsc_determine_fmt##FMT##_channel_path_desc( \
939 struct chp_id chpid, struct channel_path_desc_fmt##FMT *desc) \
941 struct chsc_scpd *scpd_area; \
942 unsigned long flags; \
945 spin_lock_irqsave(&chsc_page_lock, flags); \
946 scpd_area = chsc_page; \
947 ret = chsc_determine_channel_path_desc(chpid, 0, FMT, c, 0, \
952 memcpy(desc, scpd_area->data, sizeof(*desc)); \
954 spin_unlock_irqrestore(&chsc_page_lock, flags); \
958 chsc_det_chp_desc(0, 0)
959 chsc_det_chp_desc(1, 1)
960 chsc_det_chp_desc(3, 0)
963 chsc_initialize_cmg_chars(struct channel_path *chp, u8 cmcv,
964 struct cmg_chars *chars)
968 for (i = 0; i < NR_MEASUREMENT_CHARS; i++) {
969 mask = 0x80 >> (i + 3);
971 chp->cmg_chars.values[i] = chars->values[i];
973 chp->cmg_chars.values[i] = 0;
977 int chsc_get_channel_measurement_chars(struct channel_path *chp)
983 struct chsc_header request;
989 struct chsc_header response;
1000 u32 data[NR_MEASUREMENT_CHARS];
1006 if (!css_chsc_characteristics.scmc || !css_chsc_characteristics.secm)
1009 spin_lock_irqsave(&chsc_page_lock, flags);
1010 memset(chsc_page, 0, PAGE_SIZE);
1011 scmc_area = chsc_page;
1012 scmc_area->request.length = 0x0010;
1013 scmc_area->request.code = 0x0022;
1014 scmc_area->first_chpid = chp->chpid.id;
1015 scmc_area->last_chpid = chp->chpid.id;
1017 ccode = chsc(scmc_area);
1019 ret = (ccode == 3) ? -ENODEV : -EBUSY;
1023 ret = chsc_error_from_response(scmc_area->response.code);
1025 CIO_CRW_EVENT(2, "chsc: scmc failed (rc=%04x)\n",
1026 scmc_area->response.code);
1029 if (scmc_area->not_valid)
1032 chp->cmg = scmc_area->cmg;
1033 chp->shared = scmc_area->shared;
1034 if (chp->cmg != 2 && chp->cmg != 3) {
1035 /* No cmg-dependent data. */
1038 chsc_initialize_cmg_chars(chp, scmc_area->cmcv,
1039 (struct cmg_chars *) &scmc_area->data);
1041 spin_unlock_irqrestore(&chsc_page_lock, flags);
1045 int __init chsc_init(void)
1049 sei_page = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
1050 chsc_page = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA);
1051 if (!sei_page || !chsc_page) {
1055 ret = crw_register_handler(CRW_RSC_CSS, chsc_process_crw);
1060 free_page((unsigned long)chsc_page);
1061 free_page((unsigned long)sei_page);
1065 void __init chsc_init_cleanup(void)
1067 crw_unregister_handler(CRW_RSC_CSS);
1068 free_page((unsigned long)chsc_page);
1069 free_page((unsigned long)sei_page);
1072 int __chsc_enable_facility(struct chsc_sda_area *sda_area, int operation_code)
1076 sda_area->request.length = 0x0400;
1077 sda_area->request.code = 0x0031;
1078 sda_area->operation_code = operation_code;
1080 ret = chsc(sda_area);
1082 ret = (ret == 3) ? -ENODEV : -EBUSY;
1086 switch (sda_area->response.code) {
1091 ret = chsc_error_from_response(sda_area->response.code);
1097 int chsc_enable_facility(int operation_code)
1099 struct chsc_sda_area *sda_area;
1100 unsigned long flags;
1103 spin_lock_irqsave(&chsc_page_lock, flags);
1104 memset(chsc_page, 0, PAGE_SIZE);
1105 sda_area = chsc_page;
1107 ret = __chsc_enable_facility(sda_area, operation_code);
1109 CIO_CRW_EVENT(2, "chsc: sda (oc=%x) failed (rc=%04x)\n",
1110 operation_code, sda_area->response.code);
1112 spin_unlock_irqrestore(&chsc_page_lock, flags);
1116 int __init chsc_get_cssid(int idx)
1119 struct chsc_header request;
1123 struct chsc_header response;
1132 spin_lock_irq(&chsc_page_lock);
1133 memset(chsc_page, 0, PAGE_SIZE);
1134 sdcal_area = chsc_page;
1135 sdcal_area->request.length = 0x0020;
1136 sdcal_area->request.code = 0x0034;
1137 sdcal_area->atype = 4;
1139 ret = chsc(sdcal_area);
1141 ret = (ret == 3) ? -ENODEV : -EBUSY;
1145 ret = chsc_error_from_response(sdcal_area->response.code);
1147 CIO_CRW_EVENT(2, "chsc: sdcal failed (rc=%04x)\n",
1148 sdcal_area->response.code);
1152 if ((addr_t) &sdcal_area->list[idx] <
1153 (addr_t) &sdcal_area->response + sdcal_area->response.length)
1154 ret = sdcal_area->list[idx].cssid;
1158 spin_unlock_irq(&chsc_page_lock);
1162 struct css_general_char css_general_characteristics;
1163 struct css_chsc_char css_chsc_characteristics;
1166 chsc_determine_css_characteristics(void)
1168 unsigned long flags;
1171 struct chsc_header request;
1175 struct chsc_header response;
1177 u32 general_char[510];
1181 spin_lock_irqsave(&chsc_page_lock, flags);
1182 memset(chsc_page, 0, PAGE_SIZE);
1183 scsc_area = chsc_page;
1184 scsc_area->request.length = 0x0010;
1185 scsc_area->request.code = 0x0010;
1187 result = chsc(scsc_area);
1189 result = (result == 3) ? -ENODEV : -EBUSY;
1193 result = chsc_error_from_response(scsc_area->response.code);
1195 memcpy(&css_general_characteristics, scsc_area->general_char,
1196 sizeof(css_general_characteristics));
1197 memcpy(&css_chsc_characteristics, scsc_area->chsc_char,
1198 sizeof(css_chsc_characteristics));
1200 CIO_CRW_EVENT(2, "chsc: scsc failed (rc=%04x)\n",
1201 scsc_area->response.code);
1203 spin_unlock_irqrestore(&chsc_page_lock, flags);
1207 EXPORT_SYMBOL_GPL(css_general_characteristics);
1208 EXPORT_SYMBOL_GPL(css_chsc_characteristics);
1210 int chsc_sstpc(void *page, unsigned int op, u16 ctrl, u64 *clock_delta)
1213 struct chsc_header request;
1215 unsigned int op : 8;
1216 unsigned int rsvd1 : 8;
1217 unsigned int ctrl : 16;
1218 unsigned int rsvd2[5];
1219 struct chsc_header response;
1220 unsigned int rsvd3[3];
1222 unsigned int rsvd4[2];
1226 memset(page, 0, PAGE_SIZE);
1228 rr->request.length = 0x0020;
1229 rr->request.code = 0x0033;
1235 rc = (rr->response.code == 0x0001) ? 0 : -EIO;
1237 *clock_delta = rr->clock_delta;
1241 int chsc_sstpi(void *page, void *result, size_t size)
1244 struct chsc_header request;
1245 unsigned int rsvd0[3];
1246 struct chsc_header response;
1251 memset(page, 0, PAGE_SIZE);
1253 rr->request.length = 0x0010;
1254 rr->request.code = 0x0038;
1258 memcpy(result, &rr->data, size);
1259 return (rr->response.code == 0x0001) ? 0 : -EIO;
1262 int chsc_siosl(struct subchannel_id schid)
1265 struct chsc_header request;
1267 struct subchannel_id sid;
1269 struct chsc_header response;
1272 unsigned long flags;
1276 spin_lock_irqsave(&chsc_page_lock, flags);
1277 memset(chsc_page, 0, PAGE_SIZE);
1278 siosl_area = chsc_page;
1279 siosl_area->request.length = 0x0010;
1280 siosl_area->request.code = 0x0046;
1281 siosl_area->word1 = 0x80000000;
1282 siosl_area->sid = schid;
1284 ccode = chsc(siosl_area);
1290 CIO_MSG_EVENT(2, "chsc: chsc failed for 0.%x.%04x (ccode=%d)\n",
1291 schid.ssid, schid.sch_no, ccode);
1294 rc = chsc_error_from_response(siosl_area->response.code);
1296 CIO_MSG_EVENT(2, "chsc: siosl failed for 0.%x.%04x (rc=%04x)\n",
1297 schid.ssid, schid.sch_no,
1298 siosl_area->response.code);
1300 CIO_MSG_EVENT(4, "chsc: siosl succeeded for 0.%x.%04x\n",
1301 schid.ssid, schid.sch_no);
1303 spin_unlock_irqrestore(&chsc_page_lock, flags);
1306 EXPORT_SYMBOL_GPL(chsc_siosl);
1309 * chsc_scm_info() - store SCM information (SSI)
1310 * @scm_area: request and response block for SSI
1311 * @token: continuation token
1313 * Returns 0 on success.
1315 int chsc_scm_info(struct chsc_scm_info *scm_area, u64 token)
1319 memset(scm_area, 0, sizeof(*scm_area));
1320 scm_area->request.length = 0x0020;
1321 scm_area->request.code = 0x004C;
1322 scm_area->reqtok = token;
1324 ccode = chsc(scm_area);
1326 ret = (ccode == 3) ? -ENODEV : -EBUSY;
1329 ret = chsc_error_from_response(scm_area->response.code);
1331 CIO_MSG_EVENT(2, "chsc: scm info failed (rc=%04x)\n",
1332 scm_area->response.code);
1336 EXPORT_SYMBOL_GPL(chsc_scm_info);
1339 * chsc_pnso_brinfo() - Perform Network-Subchannel Operation, Bridge Info.
1340 * @schid: id of the subchannel on which PNSO is performed
1341 * @brinfo_area: request and response block for the operation
1342 * @resume_token: resume token for multiblock response
1343 * @cnc: Boolean change-notification control
1345 * brinfo_area must be allocated by the caller with get_zeroed_page(GFP_KERNEL)
1347 * Returns 0 on success.
1349 int chsc_pnso_brinfo(struct subchannel_id schid,
1350 struct chsc_pnso_area *brinfo_area,
1351 struct chsc_brinfo_resume_token resume_token,
1354 memset(brinfo_area, 0, sizeof(*brinfo_area));
1355 brinfo_area->request.length = 0x0030;
1356 brinfo_area->request.code = 0x003d; /* network-subchannel operation */
1357 brinfo_area->m = schid.m;
1358 brinfo_area->ssid = schid.ssid;
1359 brinfo_area->sch = schid.sch_no;
1360 brinfo_area->cssid = schid.cssid;
1361 brinfo_area->oc = 0; /* Store-network-bridging-information list */
1362 brinfo_area->resume_token = resume_token;
1363 brinfo_area->n = (cnc != 0);
1364 if (chsc(brinfo_area))
1366 return chsc_error_from_response(brinfo_area->response.code);
1368 EXPORT_SYMBOL_GPL(chsc_pnso_brinfo);
1370 int chsc_sgib(u32 origin)
1373 struct chsc_header request;
1379 /* operation data area begin */
1384 u8 reserved06[4029];
1385 struct chsc_header response;
1390 spin_lock_irq(&chsc_page_lock);
1391 memset(chsc_page, 0, PAGE_SIZE);
1392 sgib_area = chsc_page;
1393 sgib_area->request.length = 0x0fe0;
1394 sgib_area->request.code = 0x0021;
1395 sgib_area->op = 0x1;
1396 sgib_area->gib_origin = origin;
1398 ret = chsc(sgib_area);
1400 ret = chsc_error_from_response(sgib_area->response.code);
1401 spin_unlock_irq(&chsc_page_lock);
1405 EXPORT_SYMBOL_GPL(chsc_sgib);