1 // SPDX-License-Identifier: GPL-2.0
3 * S/390 common I/O routines -- channel subsystem call
5 * Copyright IBM Corp. 1999,2012
6 * Author(s): Ingo Adlung (adlung@de.ibm.com)
7 * Cornelia Huck (cornelia.huck@de.ibm.com)
8 * Arnd Bergmann (arndb@de.ibm.com)
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
184 * Returns 0 on success.
186 int chsc_sadc(struct subchannel_id schid
, struct chsc_scssc_area
*scssc
,
187 u64 summary_indicator_addr
, u64 subchannel_indicator_addr
)
189 memset(scssc
, 0, sizeof(*scssc
));
190 scssc
->request
.length
= 0x0fe0;
191 scssc
->request
.code
= 0x0021;
192 scssc
->operation_code
= 0;
194 scssc
->summary_indicator_addr
= summary_indicator_addr
;
195 scssc
->subchannel_indicator_addr
= subchannel_indicator_addr
;
197 scssc
->ks
= PAGE_DEFAULT_KEY
>> 4;
198 scssc
->kc
= PAGE_DEFAULT_KEY
>> 4;
199 scssc
->isc
= QDIO_AIRQ_ISC
;
200 scssc
->schid
= schid
;
202 /* enable the time delay disablement facility */
203 if (css_general_characteristics
.aif_tdd
)
204 scssc
->word_with_d_bit
= 0x10000000;
209 return chsc_error_from_response(scssc
->response
.code
);
211 EXPORT_SYMBOL_GPL(chsc_sadc
);
213 static int s390_subchannel_remove_chpid(struct subchannel
*sch
, void *data
)
215 spin_lock_irq(sch
->lock
);
216 if (sch
->driver
&& sch
->driver
->chp_event
)
217 if (sch
->driver
->chp_event(sch
, data
, CHP_OFFLINE
) != 0)
219 spin_unlock_irq(sch
->lock
);
224 spin_unlock_irq(sch
->lock
);
225 css_schedule_eval(sch
->schid
);
229 void chsc_chp_offline(struct chp_id chpid
)
231 struct channel_path
*chp
= chpid_to_chp(chpid
);
232 struct chp_link link
;
235 sprintf(dbf_txt
, "chpr%x.%02x", chpid
.cssid
, chpid
.id
);
236 CIO_TRACE_EVENT(2, dbf_txt
);
238 if (chp_get_status(chpid
) <= 0)
240 memset(&link
, 0, sizeof(struct chp_link
));
242 /* Wait until previous actions have settled. */
243 css_wait_for_slow_path();
245 mutex_lock(&chp
->lock
);
246 chp_update_desc(chp
);
247 mutex_unlock(&chp
->lock
);
249 for_each_subchannel_staged(s390_subchannel_remove_chpid
, NULL
, &link
);
252 static int __s390_process_res_acc(struct subchannel
*sch
, void *data
)
254 spin_lock_irq(sch
->lock
);
255 if (sch
->driver
&& sch
->driver
->chp_event
)
256 sch
->driver
->chp_event(sch
, data
, CHP_ONLINE
);
257 spin_unlock_irq(sch
->lock
);
262 static void s390_process_res_acc(struct chp_link
*link
)
266 sprintf(dbf_txt
, "accpr%x.%02x", link
->chpid
.cssid
,
268 CIO_TRACE_EVENT( 2, dbf_txt
);
269 if (link
->fla
!= 0) {
270 sprintf(dbf_txt
, "fla%x", link
->fla
);
271 CIO_TRACE_EVENT( 2, dbf_txt
);
273 /* Wait until previous actions have settled. */
274 css_wait_for_slow_path();
276 * I/O resources may have become accessible.
277 * Scan through all subchannels that may be concerned and
278 * do a validation on those.
279 * The more information we have (info), the less scanning
280 * will we have to do.
282 for_each_subchannel_staged(__s390_process_res_acc
, NULL
, link
);
283 css_schedule_reprobe();
286 struct chsc_sei_nt0_area
{
288 u8 vf
; /* validity flags */
289 u8 rs
; /* reporting source */
290 u8 cc
; /* content code */
291 u16 fla
; /* full link address */
292 u16 rsid
; /* reporting source id */
295 /* ccdf has to be big enough for a link-incident record */
296 u8 ccdf
[PAGE_SIZE
- 24 - 16]; /* content-code dependent field */
299 struct chsc_sei_nt2_area
{
300 u8 flags
; /* p and v bit */
303 u8 cc
; /* content code */
305 u8 ccdf
[PAGE_SIZE
- 24 - 56]; /* content-code dependent field */
308 #define CHSC_SEI_NT0 (1ULL << 63)
309 #define CHSC_SEI_NT2 (1ULL << 61)
312 struct chsc_header request
;
314 u64 ntsm
; /* notification type mask */
315 struct chsc_header response
;
319 struct chsc_sei_nt0_area nt0_area
;
320 struct chsc_sei_nt2_area nt2_area
;
321 u8 nt_area
[PAGE_SIZE
- 24];
323 } __packed
__aligned(PAGE_SIZE
);
326 * Link Incident Record as defined in SA22-7202, "ESCON I/O Interface"
329 #define LIR_IQ_CLASS_INFO 0
330 #define LIR_IQ_CLASS_DEGRADED 1
331 #define LIR_IQ_CLASS_NOT_OPERATIONAL 2
342 struct node_descriptor incident_node
;
343 struct node_descriptor attached_node
;
347 #define PARAMS_LEN 10 /* PARAMS=xx,xxxxxx */
348 #define NODEID_LEN 35 /* NODEID=tttttt/mdl,mmm.ppssssssssssss,xxxx */
350 /* Copy EBCIDC text, convert to ASCII and optionally add delimiter. */
351 static char *store_ebcdic(char *dest
, const char *src
, unsigned long len
,
354 memcpy(dest
, src
, len
);
363 /* Format node ID and parameters for output in LIR log message. */
364 static void format_node_data(char *params
, char *id
, struct node_descriptor
*nd
)
366 memset(params
, 0, PARAMS_LEN
);
367 memset(id
, 0, NODEID_LEN
);
369 if (nd
->validity
!= ND_VALIDITY_VALID
) {
370 strncpy(params
, "n/a", PARAMS_LEN
- 1);
371 strncpy(id
, "n/a", NODEID_LEN
- 1);
375 /* PARAMS=xx,xxxxxx */
376 snprintf(params
, PARAMS_LEN
, "%02x,%06x", nd
->byte0
, nd
->params
);
377 /* NODEID=tttttt/mdl,mmm.ppssssssssssss,xxxx */
378 id
= store_ebcdic(id
, nd
->type
, sizeof(nd
->type
), '/');
379 id
= store_ebcdic(id
, nd
->model
, sizeof(nd
->model
), ',');
380 id
= store_ebcdic(id
, nd
->manufacturer
, sizeof(nd
->manufacturer
), '.');
381 id
= store_ebcdic(id
, nd
->plant
, sizeof(nd
->plant
), 0);
382 id
= store_ebcdic(id
, nd
->seq
, sizeof(nd
->seq
), ',');
383 sprintf(id
, "%04X", nd
->tag
);
386 static void chsc_process_sei_link_incident(struct chsc_sei_nt0_area
*sei_area
)
388 struct lir
*lir
= (struct lir
*) &sei_area
->ccdf
;
389 char iuparams
[PARAMS_LEN
], iunodeid
[NODEID_LEN
], auparams
[PARAMS_LEN
],
390 aunodeid
[NODEID_LEN
];
392 CIO_CRW_EVENT(4, "chsc: link incident (rs=%02x, rs_id=%04x, iq=%02x)\n",
393 sei_area
->rs
, sei_area
->rsid
, sei_area
->ccdf
[0]);
395 /* Ignore NULL Link Incident Records. */
399 /* Inform user that a link requires maintenance actions because it has
400 * become degraded or not operational. Note that this log message is
401 * the primary intention behind a Link Incident Record. */
403 format_node_data(iuparams
, iunodeid
, &lir
->incident_node
);
404 format_node_data(auparams
, aunodeid
, &lir
->attached_node
);
406 switch (lir
->iq
.class) {
407 case LIR_IQ_CLASS_DEGRADED
:
408 pr_warn("Link degraded: RS=%02x RSID=%04x IC=%02x "
409 "IUPARAMS=%s IUNODEID=%s AUPARAMS=%s AUNODEID=%s\n",
410 sei_area
->rs
, sei_area
->rsid
, lir
->ic
, iuparams
,
411 iunodeid
, auparams
, aunodeid
);
413 case LIR_IQ_CLASS_NOT_OPERATIONAL
:
414 pr_err("Link stopped: RS=%02x RSID=%04x IC=%02x "
415 "IUPARAMS=%s IUNODEID=%s AUPARAMS=%s AUNODEID=%s\n",
416 sei_area
->rs
, sei_area
->rsid
, lir
->ic
, iuparams
,
417 iunodeid
, auparams
, aunodeid
);
424 static void chsc_process_sei_res_acc(struct chsc_sei_nt0_area
*sei_area
)
426 struct channel_path
*chp
;
427 struct chp_link link
;
431 CIO_CRW_EVENT(4, "chsc: resource accessibility event (rs=%02x, "
432 "rs_id=%04x)\n", sei_area
->rs
, sei_area
->rsid
);
433 if (sei_area
->rs
!= 4)
436 chpid
.id
= sei_area
->rsid
;
437 /* allocate a new channel path structure, if needed */
438 status
= chp_get_status(chpid
);
445 chp
= chpid_to_chp(chpid
);
446 mutex_lock(&chp
->lock
);
447 chp_update_desc(chp
);
448 mutex_unlock(&chp
->lock
);
450 memset(&link
, 0, sizeof(struct chp_link
));
452 if ((sei_area
->vf
& 0xc0) != 0) {
453 link
.fla
= sei_area
->fla
;
454 if ((sei_area
->vf
& 0xc0) == 0xc0)
455 /* full link address */
456 link
.fla_mask
= 0xffff;
459 link
.fla_mask
= 0xff00;
461 s390_process_res_acc(&link
);
464 static void chsc_process_sei_chp_avail(struct chsc_sei_nt0_area
*sei_area
)
466 struct channel_path
*chp
;
471 CIO_CRW_EVENT(4, "chsc: channel path availability information\n");
472 if (sei_area
->rs
!= 0)
474 data
= sei_area
->ccdf
;
476 for (num
= 0; num
<= __MAX_CHPID
; num
++) {
477 if (!chp_test_bit(data
, num
))
481 CIO_CRW_EVENT(4, "Update information for channel path "
482 "%x.%02x\n", chpid
.cssid
, chpid
.id
);
483 chp
= chpid_to_chp(chpid
);
488 mutex_lock(&chp
->lock
);
489 chp_update_desc(chp
);
490 mutex_unlock(&chp
->lock
);
494 struct chp_config_data
{
500 static void chsc_process_sei_chp_config(struct chsc_sei_nt0_area
*sei_area
)
502 struct chp_config_data
*data
;
505 char *events
[3] = {"configure", "deconfigure", "cancel deconfigure"};
507 CIO_CRW_EVENT(4, "chsc: channel-path-configuration notification\n");
508 if (sei_area
->rs
!= 0)
510 data
= (struct chp_config_data
*) &(sei_area
->ccdf
);
512 for (num
= 0; num
<= __MAX_CHPID
; num
++) {
513 if (!chp_test_bit(data
->map
, num
))
516 pr_notice("Processing %s for channel path %x.%02x\n",
517 events
[data
->op
], chpid
.cssid
, chpid
.id
);
520 chp_cfg_schedule(chpid
, 1);
523 chp_cfg_schedule(chpid
, 0);
526 chp_cfg_cancel_deconfigure(chpid
);
532 static void chsc_process_sei_scm_change(struct chsc_sei_nt0_area
*sei_area
)
536 CIO_CRW_EVENT(4, "chsc: scm change notification\n");
537 if (sei_area
->rs
!= 7)
540 ret
= scm_update_information();
542 CIO_CRW_EVENT(0, "chsc: updating change notification"
543 " failed (rc=%d).\n", ret
);
546 static void chsc_process_sei_scm_avail(struct chsc_sei_nt0_area
*sei_area
)
550 CIO_CRW_EVENT(4, "chsc: scm available information\n");
551 if (sei_area
->rs
!= 7)
554 ret
= scm_process_availability_information();
556 CIO_CRW_EVENT(0, "chsc: process availability information"
557 " failed (rc=%d).\n", ret
);
560 static void chsc_process_sei_ap_cfg_chg(struct chsc_sei_nt0_area
*sei_area
)
562 CIO_CRW_EVENT(3, "chsc: ap config changed\n");
563 if (sei_area
->rs
!= 5)
569 static void chsc_process_sei_nt2(struct chsc_sei_nt2_area
*sei_area
)
571 switch (sei_area
->cc
) {
573 zpci_event_error(sei_area
->ccdf
);
576 zpci_event_availability(sei_area
->ccdf
);
579 CIO_CRW_EVENT(2, "chsc: sei nt2 unhandled cc=%d\n",
585 static void chsc_process_sei_nt0(struct chsc_sei_nt0_area
*sei_area
)
587 /* which kind of information was stored? */
588 switch (sei_area
->cc
) {
589 case 1: /* link incident*/
590 chsc_process_sei_link_incident(sei_area
);
592 case 2: /* i/o resource accessibility */
593 chsc_process_sei_res_acc(sei_area
);
595 case 3: /* ap config changed */
596 chsc_process_sei_ap_cfg_chg(sei_area
);
598 case 7: /* channel-path-availability information */
599 chsc_process_sei_chp_avail(sei_area
);
601 case 8: /* channel-path-configuration notification */
602 chsc_process_sei_chp_config(sei_area
);
604 case 12: /* scm change notification */
605 chsc_process_sei_scm_change(sei_area
);
607 case 14: /* scm available notification */
608 chsc_process_sei_scm_avail(sei_area
);
610 default: /* other stuff */
611 CIO_CRW_EVENT(2, "chsc: sei nt0 unhandled cc=%d\n",
616 /* Check if we might have lost some information. */
617 if (sei_area
->flags
& 0x40) {
618 CIO_CRW_EVENT(2, "chsc: event overflow\n");
619 css_schedule_eval_all();
623 static void chsc_process_event_information(struct chsc_sei
*sei
, u64 ntsm
)
625 static int ntsm_unsupported
;
628 memset(sei
, 0, sizeof(*sei
));
629 sei
->request
.length
= 0x0010;
630 sei
->request
.code
= 0x000e;
631 if (!ntsm_unsupported
)
637 if (sei
->response
.code
!= 0x0001) {
638 CIO_CRW_EVENT(2, "chsc: sei failed (rc=%04x, ntsm=%llx)\n",
639 sei
->response
.code
, sei
->ntsm
);
641 if (sei
->response
.code
== 3 && sei
->ntsm
) {
642 /* Fallback for old firmware. */
643 ntsm_unsupported
= 1;
649 CIO_CRW_EVENT(2, "chsc: sei successful (nt=%d)\n", sei
->nt
);
652 chsc_process_sei_nt0(&sei
->u
.nt0_area
);
655 chsc_process_sei_nt2(&sei
->u
.nt2_area
);
658 CIO_CRW_EVENT(2, "chsc: unhandled nt: %d\n", sei
->nt
);
662 if (!(sei
->u
.nt0_area
.flags
& 0x80))
668 * Handle channel subsystem related CRWs.
669 * Use store event information to find out what's going on.
671 * Note: Access to sei_page is serialized through machine check handler
672 * thread, so no need for locking.
674 static void chsc_process_crw(struct crw
*crw0
, struct crw
*crw1
, int overflow
)
676 struct chsc_sei
*sei
= sei_page
;
679 css_schedule_eval_all();
682 CIO_CRW_EVENT(2, "CRW reports slct=%d, oflw=%d, "
683 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
684 crw0
->slct
, crw0
->oflw
, crw0
->chn
, crw0
->rsc
, crw0
->anc
,
685 crw0
->erc
, crw0
->rsid
);
687 CIO_TRACE_EVENT(2, "prcss");
688 chsc_process_event_information(sei
, CHSC_SEI_NT0
| CHSC_SEI_NT2
);
691 void chsc_chp_online(struct chp_id chpid
)
693 struct channel_path
*chp
= chpid_to_chp(chpid
);
694 struct chp_link link
;
697 sprintf(dbf_txt
, "cadd%x.%02x", chpid
.cssid
, chpid
.id
);
698 CIO_TRACE_EVENT(2, dbf_txt
);
700 if (chp_get_status(chpid
) != 0) {
701 memset(&link
, 0, sizeof(struct chp_link
));
703 /* Wait until previous actions have settled. */
704 css_wait_for_slow_path();
706 mutex_lock(&chp
->lock
);
707 chp_update_desc(chp
);
708 mutex_unlock(&chp
->lock
);
710 for_each_subchannel_staged(__s390_process_res_acc
, NULL
,
712 css_schedule_reprobe();
716 static void __s390_subchannel_vary_chpid(struct subchannel
*sch
,
717 struct chp_id chpid
, int on
)
720 struct chp_link link
;
722 memset(&link
, 0, sizeof(struct chp_link
));
724 spin_lock_irqsave(sch
->lock
, flags
);
725 if (sch
->driver
&& sch
->driver
->chp_event
)
726 sch
->driver
->chp_event(sch
, &link
,
727 on
? CHP_VARY_ON
: CHP_VARY_OFF
);
728 spin_unlock_irqrestore(sch
->lock
, flags
);
731 static int s390_subchannel_vary_chpid_off(struct subchannel
*sch
, void *data
)
733 struct chp_id
*chpid
= data
;
735 __s390_subchannel_vary_chpid(sch
, *chpid
, 0);
739 static int s390_subchannel_vary_chpid_on(struct subchannel
*sch
, void *data
)
741 struct chp_id
*chpid
= data
;
743 __s390_subchannel_vary_chpid(sch
, *chpid
, 1);
748 * chsc_chp_vary - propagate channel-path vary operation to subchannels
749 * @chpid: channl-path ID
750 * @on: non-zero for vary online, zero for vary offline
752 int chsc_chp_vary(struct chp_id chpid
, int on
)
754 struct channel_path
*chp
= chpid_to_chp(chpid
);
756 /* Wait until previous actions have settled. */
757 css_wait_for_slow_path();
759 * Redo PathVerification on the devices the chpid connects to
762 /* Try to update the channel path description. */
763 chp_update_desc(chp
);
764 for_each_subchannel_staged(s390_subchannel_vary_chpid_on
,
766 css_schedule_reprobe();
768 for_each_subchannel_staged(s390_subchannel_vary_chpid_off
,
775 chsc_remove_cmg_attr(struct channel_subsystem
*css
)
779 for (i
= 0; i
<= __MAX_CHPID
; i
++) {
782 chp_remove_cmg_attr(css
->chps
[i
]);
787 chsc_add_cmg_attr(struct channel_subsystem
*css
)
792 for (i
= 0; i
<= __MAX_CHPID
; i
++) {
795 ret
= chp_add_cmg_attr(css
->chps
[i
]);
801 for (--i
; i
>= 0; i
--) {
804 chp_remove_cmg_attr(css
->chps
[i
]);
809 int __chsc_do_secm(struct channel_subsystem
*css
, int enable
)
812 struct chsc_header request
;
813 u32 operation_code
: 2;
822 struct chsc_header response
;
831 spin_lock_irqsave(&chsc_page_lock
, flags
);
832 memset(chsc_page
, 0, PAGE_SIZE
);
833 secm_area
= chsc_page
;
834 secm_area
->request
.length
= 0x0050;
835 secm_area
->request
.code
= 0x0016;
837 secm_area
->key
= PAGE_DEFAULT_KEY
>> 4;
838 secm_area
->cub_addr1
= (u64
)(unsigned long)css
->cub_addr1
;
839 secm_area
->cub_addr2
= (u64
)(unsigned long)css
->cub_addr2
;
841 secm_area
->operation_code
= enable
? 0 : 1;
843 ccode
= chsc(secm_area
);
845 ret
= (ccode
== 3) ? -ENODEV
: -EBUSY
;
849 switch (secm_area
->response
.code
) {
855 ret
= chsc_error_from_response(secm_area
->response
.code
);
858 CIO_CRW_EVENT(2, "chsc: secm failed (rc=%04x)\n",
859 secm_area
->response
.code
);
861 spin_unlock_irqrestore(&chsc_page_lock
, flags
);
866 chsc_secm(struct channel_subsystem
*css
, int enable
)
870 if (enable
&& !css
->cm_enabled
) {
871 css
->cub_addr1
= (void *)get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
872 css
->cub_addr2
= (void *)get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
873 if (!css
->cub_addr1
|| !css
->cub_addr2
) {
874 free_page((unsigned long)css
->cub_addr1
);
875 free_page((unsigned long)css
->cub_addr2
);
879 ret
= __chsc_do_secm(css
, enable
);
881 css
->cm_enabled
= enable
;
882 if (css
->cm_enabled
) {
883 ret
= chsc_add_cmg_attr(css
);
885 __chsc_do_secm(css
, 0);
889 chsc_remove_cmg_attr(css
);
891 if (!css
->cm_enabled
) {
892 free_page((unsigned long)css
->cub_addr1
);
893 free_page((unsigned long)css
->cub_addr2
);
898 int chsc_determine_channel_path_desc(struct chp_id chpid
, int fmt
, int rfmt
,
899 int c
, int m
, void *page
)
901 struct chsc_scpd
*scpd_area
;
904 if ((rfmt
== 1 || rfmt
== 0) && c
== 1 &&
905 !css_general_characteristics
.fcs
)
907 if ((rfmt
== 2) && !css_general_characteristics
.cib
)
909 if ((rfmt
== 3) && !css_general_characteristics
.util_str
)
912 memset(page
, 0, PAGE_SIZE
);
914 scpd_area
->request
.length
= 0x0010;
915 scpd_area
->request
.code
= 0x0002;
916 scpd_area
->cssid
= chpid
.cssid
;
917 scpd_area
->first_chpid
= chpid
.id
;
918 scpd_area
->last_chpid
= chpid
.id
;
921 scpd_area
->fmt
= fmt
;
922 scpd_area
->rfmt
= rfmt
;
924 ccode
= chsc(scpd_area
);
926 return (ccode
== 3) ? -ENODEV
: -EBUSY
;
928 ret
= chsc_error_from_response(scpd_area
->response
.code
);
930 CIO_CRW_EVENT(2, "chsc: scpd failed (rc=%04x)\n",
931 scpd_area
->response
.code
);
934 EXPORT_SYMBOL_GPL(chsc_determine_channel_path_desc
);
936 #define chsc_det_chp_desc(FMT, c) \
937 int chsc_determine_fmt##FMT##_channel_path_desc( \
938 struct chp_id chpid, struct channel_path_desc_fmt##FMT *desc) \
940 struct chsc_scpd *scpd_area; \
941 unsigned long flags; \
944 spin_lock_irqsave(&chsc_page_lock, flags); \
945 scpd_area = chsc_page; \
946 ret = chsc_determine_channel_path_desc(chpid, 0, FMT, c, 0, \
951 memcpy(desc, scpd_area->data, sizeof(*desc)); \
953 spin_unlock_irqrestore(&chsc_page_lock, flags); \
957 chsc_det_chp_desc(0, 0)
958 chsc_det_chp_desc(1, 1)
959 chsc_det_chp_desc(3, 0)
962 chsc_initialize_cmg_chars(struct channel_path
*chp
, u8 cmcv
,
963 struct cmg_chars
*chars
)
967 for (i
= 0; i
< NR_MEASUREMENT_CHARS
; i
++) {
968 mask
= 0x80 >> (i
+ 3);
970 chp
->cmg_chars
.values
[i
] = chars
->values
[i
];
972 chp
->cmg_chars
.values
[i
] = 0;
976 int chsc_get_channel_measurement_chars(struct channel_path
*chp
)
982 struct chsc_header request
;
988 struct chsc_header response
;
999 u32 data
[NR_MEASUREMENT_CHARS
];
1005 if (!css_chsc_characteristics
.scmc
|| !css_chsc_characteristics
.secm
)
1008 spin_lock_irqsave(&chsc_page_lock
, flags
);
1009 memset(chsc_page
, 0, PAGE_SIZE
);
1010 scmc_area
= chsc_page
;
1011 scmc_area
->request
.length
= 0x0010;
1012 scmc_area
->request
.code
= 0x0022;
1013 scmc_area
->first_chpid
= chp
->chpid
.id
;
1014 scmc_area
->last_chpid
= chp
->chpid
.id
;
1016 ccode
= chsc(scmc_area
);
1018 ret
= (ccode
== 3) ? -ENODEV
: -EBUSY
;
1022 ret
= chsc_error_from_response(scmc_area
->response
.code
);
1024 CIO_CRW_EVENT(2, "chsc: scmc failed (rc=%04x)\n",
1025 scmc_area
->response
.code
);
1028 if (scmc_area
->not_valid
)
1031 chp
->cmg
= scmc_area
->cmg
;
1032 chp
->shared
= scmc_area
->shared
;
1033 if (chp
->cmg
!= 2 && chp
->cmg
!= 3) {
1034 /* No cmg-dependent data. */
1037 chsc_initialize_cmg_chars(chp
, scmc_area
->cmcv
,
1038 (struct cmg_chars
*) &scmc_area
->data
);
1040 spin_unlock_irqrestore(&chsc_page_lock
, flags
);
1044 int __init
chsc_init(void)
1048 sei_page
= (void *)get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
1049 chsc_page
= (void *)get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
1050 if (!sei_page
|| !chsc_page
) {
1054 ret
= crw_register_handler(CRW_RSC_CSS
, chsc_process_crw
);
1059 free_page((unsigned long)chsc_page
);
1060 free_page((unsigned long)sei_page
);
1064 void __init
chsc_init_cleanup(void)
1066 crw_unregister_handler(CRW_RSC_CSS
);
1067 free_page((unsigned long)chsc_page
);
1068 free_page((unsigned long)sei_page
);
1071 int __chsc_enable_facility(struct chsc_sda_area
*sda_area
, int operation_code
)
1075 sda_area
->request
.length
= 0x0400;
1076 sda_area
->request
.code
= 0x0031;
1077 sda_area
->operation_code
= operation_code
;
1079 ret
= chsc(sda_area
);
1081 ret
= (ret
== 3) ? -ENODEV
: -EBUSY
;
1085 switch (sda_area
->response
.code
) {
1090 ret
= chsc_error_from_response(sda_area
->response
.code
);
1096 int chsc_enable_facility(int operation_code
)
1098 struct chsc_sda_area
*sda_area
;
1099 unsigned long flags
;
1102 spin_lock_irqsave(&chsc_page_lock
, flags
);
1103 memset(chsc_page
, 0, PAGE_SIZE
);
1104 sda_area
= chsc_page
;
1106 ret
= __chsc_enable_facility(sda_area
, operation_code
);
1108 CIO_CRW_EVENT(2, "chsc: sda (oc=%x) failed (rc=%04x)\n",
1109 operation_code
, sda_area
->response
.code
);
1111 spin_unlock_irqrestore(&chsc_page_lock
, flags
);
1115 int __init
chsc_get_cssid(int idx
)
1118 struct chsc_header request
;
1122 struct chsc_header response
;
1131 spin_lock_irq(&chsc_page_lock
);
1132 memset(chsc_page
, 0, PAGE_SIZE
);
1133 sdcal_area
= chsc_page
;
1134 sdcal_area
->request
.length
= 0x0020;
1135 sdcal_area
->request
.code
= 0x0034;
1136 sdcal_area
->atype
= 4;
1138 ret
= chsc(sdcal_area
);
1140 ret
= (ret
== 3) ? -ENODEV
: -EBUSY
;
1144 ret
= chsc_error_from_response(sdcal_area
->response
.code
);
1146 CIO_CRW_EVENT(2, "chsc: sdcal failed (rc=%04x)\n",
1147 sdcal_area
->response
.code
);
1151 if ((addr_t
) &sdcal_area
->list
[idx
] <
1152 (addr_t
) &sdcal_area
->response
+ sdcal_area
->response
.length
)
1153 ret
= sdcal_area
->list
[idx
].cssid
;
1157 spin_unlock_irq(&chsc_page_lock
);
1161 struct css_general_char css_general_characteristics
;
1162 struct css_chsc_char css_chsc_characteristics
;
1165 chsc_determine_css_characteristics(void)
1167 unsigned long flags
;
1170 struct chsc_header request
;
1174 struct chsc_header response
;
1176 u32 general_char
[510];
1180 spin_lock_irqsave(&chsc_page_lock
, flags
);
1181 memset(chsc_page
, 0, PAGE_SIZE
);
1182 scsc_area
= chsc_page
;
1183 scsc_area
->request
.length
= 0x0010;
1184 scsc_area
->request
.code
= 0x0010;
1186 result
= chsc(scsc_area
);
1188 result
= (result
== 3) ? -ENODEV
: -EBUSY
;
1192 result
= chsc_error_from_response(scsc_area
->response
.code
);
1194 memcpy(&css_general_characteristics
, scsc_area
->general_char
,
1195 sizeof(css_general_characteristics
));
1196 memcpy(&css_chsc_characteristics
, scsc_area
->chsc_char
,
1197 sizeof(css_chsc_characteristics
));
1199 CIO_CRW_EVENT(2, "chsc: scsc failed (rc=%04x)\n",
1200 scsc_area
->response
.code
);
1202 spin_unlock_irqrestore(&chsc_page_lock
, flags
);
1206 EXPORT_SYMBOL_GPL(css_general_characteristics
);
1207 EXPORT_SYMBOL_GPL(css_chsc_characteristics
);
1209 int chsc_sstpc(void *page
, unsigned int op
, u16 ctrl
, u64
*clock_delta
)
1212 struct chsc_header request
;
1214 unsigned int op
: 8;
1215 unsigned int rsvd1
: 8;
1216 unsigned int ctrl
: 16;
1217 unsigned int rsvd2
[5];
1218 struct chsc_header response
;
1219 unsigned int rsvd3
[3];
1221 unsigned int rsvd4
[2];
1225 memset(page
, 0, PAGE_SIZE
);
1227 rr
->request
.length
= 0x0020;
1228 rr
->request
.code
= 0x0033;
1234 rc
= (rr
->response
.code
== 0x0001) ? 0 : -EIO
;
1236 *clock_delta
= rr
->clock_delta
;
1240 int chsc_sstpi(void *page
, void *result
, size_t size
)
1243 struct chsc_header request
;
1244 unsigned int rsvd0
[3];
1245 struct chsc_header response
;
1250 memset(page
, 0, PAGE_SIZE
);
1252 rr
->request
.length
= 0x0010;
1253 rr
->request
.code
= 0x0038;
1257 memcpy(result
, &rr
->data
, size
);
1258 return (rr
->response
.code
== 0x0001) ? 0 : -EIO
;
1261 int chsc_siosl(struct subchannel_id schid
)
1264 struct chsc_header request
;
1266 struct subchannel_id sid
;
1268 struct chsc_header response
;
1271 unsigned long flags
;
1275 spin_lock_irqsave(&chsc_page_lock
, flags
);
1276 memset(chsc_page
, 0, PAGE_SIZE
);
1277 siosl_area
= chsc_page
;
1278 siosl_area
->request
.length
= 0x0010;
1279 siosl_area
->request
.code
= 0x0046;
1280 siosl_area
->word1
= 0x80000000;
1281 siosl_area
->sid
= schid
;
1283 ccode
= chsc(siosl_area
);
1289 CIO_MSG_EVENT(2, "chsc: chsc failed for 0.%x.%04x (ccode=%d)\n",
1290 schid
.ssid
, schid
.sch_no
, ccode
);
1293 rc
= chsc_error_from_response(siosl_area
->response
.code
);
1295 CIO_MSG_EVENT(2, "chsc: siosl failed for 0.%x.%04x (rc=%04x)\n",
1296 schid
.ssid
, schid
.sch_no
,
1297 siosl_area
->response
.code
);
1299 CIO_MSG_EVENT(4, "chsc: siosl succeeded for 0.%x.%04x\n",
1300 schid
.ssid
, schid
.sch_no
);
1302 spin_unlock_irqrestore(&chsc_page_lock
, flags
);
1305 EXPORT_SYMBOL_GPL(chsc_siosl
);
1308 * chsc_scm_info() - store SCM information (SSI)
1309 * @scm_area: request and response block for SSI
1310 * @token: continuation token
1312 * Returns 0 on success.
1314 int chsc_scm_info(struct chsc_scm_info
*scm_area
, u64 token
)
1318 memset(scm_area
, 0, sizeof(*scm_area
));
1319 scm_area
->request
.length
= 0x0020;
1320 scm_area
->request
.code
= 0x004C;
1321 scm_area
->reqtok
= token
;
1323 ccode
= chsc(scm_area
);
1325 ret
= (ccode
== 3) ? -ENODEV
: -EBUSY
;
1328 ret
= chsc_error_from_response(scm_area
->response
.code
);
1330 CIO_MSG_EVENT(2, "chsc: scm info failed (rc=%04x)\n",
1331 scm_area
->response
.code
);
1335 EXPORT_SYMBOL_GPL(chsc_scm_info
);
1338 * chsc_pnso_brinfo() - Perform Network-Subchannel Operation, Bridge Info.
1339 * @schid: id of the subchannel on which PNSO is performed
1340 * @brinfo_area: request and response block for the operation
1341 * @resume_token: resume token for multiblock response
1342 * @cnc: Boolean change-notification control
1344 * brinfo_area must be allocated by the caller with get_zeroed_page(GFP_KERNEL)
1346 * Returns 0 on success.
1348 int chsc_pnso_brinfo(struct subchannel_id schid
,
1349 struct chsc_pnso_area
*brinfo_area
,
1350 struct chsc_brinfo_resume_token resume_token
,
1353 memset(brinfo_area
, 0, sizeof(*brinfo_area
));
1354 brinfo_area
->request
.length
= 0x0030;
1355 brinfo_area
->request
.code
= 0x003d; /* network-subchannel operation */
1356 brinfo_area
->m
= schid
.m
;
1357 brinfo_area
->ssid
= schid
.ssid
;
1358 brinfo_area
->sch
= schid
.sch_no
;
1359 brinfo_area
->cssid
= schid
.cssid
;
1360 brinfo_area
->oc
= 0; /* Store-network-bridging-information list */
1361 brinfo_area
->resume_token
= resume_token
;
1362 brinfo_area
->n
= (cnc
!= 0);
1363 if (chsc(brinfo_area
))
1365 return chsc_error_from_response(brinfo_area
->response
.code
);
1367 EXPORT_SYMBOL_GPL(chsc_pnso_brinfo
);
1369 int chsc_sgib(u32 origin
)
1372 struct chsc_header request
;
1378 /* operation data area begin */
1383 u8 reserved06
[4029];
1384 struct chsc_header response
;
1389 spin_lock_irq(&chsc_page_lock
);
1390 memset(chsc_page
, 0, PAGE_SIZE
);
1391 sgib_area
= chsc_page
;
1392 sgib_area
->request
.length
= 0x0fe0;
1393 sgib_area
->request
.code
= 0x0021;
1394 sgib_area
->op
= 0x1;
1395 sgib_area
->gib_origin
= origin
;
1397 ret
= chsc(sgib_area
);
1399 ret
= chsc_error_from_response(sgib_area
->response
.code
);
1400 spin_unlock_irq(&chsc_page_lock
);
1404 EXPORT_SYMBOL_GPL(chsc_sgib
);