2 * drivers/s390/cio/chsc.c
3 * S/390 common I/O routines -- channel subsystem call
5 * Copyright IBM Corp. 1999,2010
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>
20 #include <asm/chpid.h>
26 #include "cio_debug.h"
31 static void *sei_page
;
32 static void *chsc_page
;
33 static DEFINE_SPINLOCK(chsc_page_lock
);
36 * chsc_error_from_response() - convert a chsc response to an error
37 * @response: chsc response code
39 * Returns an appropriate Linux error code for @response.
41 int chsc_error_from_response(int response
)
60 EXPORT_SYMBOL_GPL(chsc_error_from_response
);
62 struct chsc_ssd_area
{
63 struct chsc_header request
;
67 u16 f_sch
; /* first subchannel */
69 u16 l_sch
; /* last subchannel */
71 struct chsc_header response
;
75 u8 st
: 3; /* subchannel type */
77 u8 unit_addr
; /* unit address */
78 u16 devno
; /* device number */
81 u16 sch
; /* subchannel */
82 u8 chpid
[8]; /* chpids 0-7 */
83 u16 fla
[8]; /* full link addresses 0-7 */
84 } __attribute__ ((packed
));
86 int chsc_get_ssd_info(struct subchannel_id schid
, struct chsc_ssd_info
*ssd
)
88 struct chsc_ssd_area
*ssd_area
;
94 spin_lock_irq(&chsc_page_lock
);
95 memset(chsc_page
, 0, PAGE_SIZE
);
97 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
;
103 ccode
= chsc(ssd_area
);
104 /* Check response. */
106 ret
= (ccode
== 3) ? -ENODEV
: -EBUSY
;
109 ret
= chsc_error_from_response(ssd_area
->response
.code
);
111 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
);
116 if (!ssd_area
->sch_valid
) {
122 memset(ssd
, 0, sizeof(struct chsc_ssd_info
));
123 if ((ssd_area
->st
!= SUBCHANNEL_TYPE_IO
) &&
124 (ssd_area
->st
!= SUBCHANNEL_TYPE_MSG
))
126 ssd
->path_mask
= ssd_area
->path_mask
;
127 ssd
->fla_valid_mask
= ssd_area
->fla_valid_mask
;
128 for (i
= 0; i
< 8; i
++) {
130 if (ssd_area
->path_mask
& mask
) {
131 chp_id_init(&ssd
->chpid
[i
]);
132 ssd
->chpid
[i
].id
= ssd_area
->chpid
[i
];
134 if (ssd_area
->fla_valid_mask
& mask
)
135 ssd
->fla
[i
] = ssd_area
->fla
[i
];
138 spin_unlock_irq(&chsc_page_lock
);
142 static int s390_subchannel_remove_chpid(struct subchannel
*sch
, void *data
)
144 spin_lock_irq(sch
->lock
);
145 if (sch
->driver
&& sch
->driver
->chp_event
)
146 if (sch
->driver
->chp_event(sch
, data
, CHP_OFFLINE
) != 0)
148 spin_unlock_irq(sch
->lock
);
153 spin_unlock_irq(sch
->lock
);
154 css_schedule_eval(sch
->schid
);
158 void chsc_chp_offline(struct chp_id chpid
)
161 struct chp_link link
;
163 sprintf(dbf_txt
, "chpr%x.%02x", chpid
.cssid
, chpid
.id
);
164 CIO_TRACE_EVENT(2, dbf_txt
);
166 if (chp_get_status(chpid
) <= 0)
168 memset(&link
, 0, sizeof(struct chp_link
));
170 /* Wait until previous actions have settled. */
171 css_wait_for_slow_path();
172 for_each_subchannel_staged(s390_subchannel_remove_chpid
, NULL
, &link
);
175 static int s390_process_res_acc_new_sch(struct subchannel_id schid
, void *data
)
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...
186 if (stsch_err(schid
, &schib
))
190 /* Put it on the slow path. */
191 css_schedule_eval(schid
);
195 static int __s390_process_res_acc(struct subchannel
*sch
, void *data
)
197 spin_lock_irq(sch
->lock
);
198 if (sch
->driver
&& sch
->driver
->chp_event
)
199 sch
->driver
->chp_event(sch
, data
, CHP_ONLINE
);
200 spin_unlock_irq(sch
->lock
);
205 static void s390_process_res_acc(struct chp_link
*link
)
209 sprintf(dbf_txt
, "accpr%x.%02x", link
->chpid
.cssid
,
211 CIO_TRACE_EVENT( 2, dbf_txt
);
212 if (link
->fla
!= 0) {
213 sprintf(dbf_txt
, "fla%x", link
->fla
);
214 CIO_TRACE_EVENT( 2, dbf_txt
);
216 /* Wait until previous actions have settled. */
217 css_wait_for_slow_path();
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.
225 for_each_subchannel_staged(__s390_process_res_acc
,
226 s390_process_res_acc_new_sch
, link
);
230 __get_chpid_from_lir(void *data
)
236 /* incident-node descriptor */
238 /* attached-node descriptor */
240 /* incident-specific information */
242 } __attribute__ ((packed
)) *lir
;
246 /* NULL link incident record */
248 if (!(lir
->indesc
[0]&0xc0000000))
249 /* node descriptor not valid */
251 if (!(lir
->indesc
[0]&0x10000000))
252 /* don't handle device-type nodes - FIXME */
254 /* Byte 3 contains the chpid. Could also be CTCA, but we don't care */
256 return (u16
) (lir
->indesc
[0]&0x000000ff);
259 struct chsc_sei_area
{
260 struct chsc_header request
;
264 struct chsc_header response
;
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 */
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
));
278 static void chsc_process_sei_link_incident(struct chsc_sei_area
*sei_area
)
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)
287 id
= __get_chpid_from_lir(sei_area
->ccdf
);
289 CIO_CRW_EVENT(4, "chsc: link incident - invalid LIR\n");
293 chsc_chp_offline(chpid
);
297 static void chsc_process_sei_res_acc(struct chsc_sei_area
*sei_area
)
299 struct chp_link link
;
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)
308 chpid
.id
= sei_area
->rsid
;
309 /* allocate a new channel path structure, if needed */
310 status
= chp_get_status(chpid
);
315 memset(&link
, 0, sizeof(struct chp_link
));
317 if ((sei_area
->vf
& 0xc0) != 0) {
318 link
.fla
= sei_area
->fla
;
319 if ((sei_area
->vf
& 0xc0) == 0xc0)
320 /* full link address */
321 link
.fla_mask
= 0xffff;
324 link
.fla_mask
= 0xff00;
326 s390_process_res_acc(&link
);
329 static void chsc_process_sei_chp_avail(struct chsc_sei_area
*sei_area
)
331 struct channel_path
*chp
;
336 CIO_CRW_EVENT(4, "chsc: channel path availability information\n");
337 if (sei_area
->rs
!= 0)
339 data
= sei_area
->ccdf
;
341 for (num
= 0; num
<= __MAX_CHPID
; num
++) {
342 if (!chp_test_bit(data
, num
))
346 CIO_CRW_EVENT(4, "Update information for channel path "
347 "%x.%02x\n", chpid
.cssid
, chpid
.id
);
348 chp
= chpid_to_chp(chpid
);
353 mutex_lock(&chp
->lock
);
354 chsc_determine_base_channel_path_desc(chpid
, &chp
->desc
);
355 mutex_unlock(&chp
->lock
);
359 struct chp_config_data
{
365 static void chsc_process_sei_chp_config(struct chsc_sei_area
*sei_area
)
367 struct chp_config_data
*data
;
370 char *events
[3] = {"configure", "deconfigure", "cancel deconfigure"};
372 CIO_CRW_EVENT(4, "chsc: channel-path-configuration notification\n");
373 if (sei_area
->rs
!= 0)
375 data
= (struct chp_config_data
*) &(sei_area
->ccdf
);
377 for (num
= 0; num
<= __MAX_CHPID
; num
++) {
378 if (!chp_test_bit(data
->map
, num
))
381 pr_notice("Processing %s for channel path %x.%02x\n",
382 events
[data
->op
], chpid
.cssid
, chpid
.id
);
385 chp_cfg_schedule(chpid
, 1);
388 chp_cfg_schedule(chpid
, 0);
391 chp_cfg_cancel_deconfigure(chpid
);
397 static void chsc_process_sei(struct chsc_sei_area
*sei_area
)
399 /* Check if we might have lost some information. */
400 if (sei_area
->flags
& 0x40) {
401 CIO_CRW_EVENT(2, "chsc: event overflow\n");
402 css_schedule_eval_all();
404 /* which kind of information was stored? */
405 switch (sei_area
->cc
) {
406 case 1: /* link incident*/
407 chsc_process_sei_link_incident(sei_area
);
409 case 2: /* i/o resource accessibility */
410 chsc_process_sei_res_acc(sei_area
);
412 case 7: /* channel-path-availability information */
413 chsc_process_sei_chp_avail(sei_area
);
415 case 8: /* channel-path-configuration notification */
416 chsc_process_sei_chp_config(sei_area
);
418 default: /* other stuff */
419 CIO_CRW_EVENT(4, "chsc: unhandled sei content code %d\n",
425 static void chsc_process_crw(struct crw
*crw0
, struct crw
*crw1
, int overflow
)
427 struct chsc_sei_area
*sei_area
;
430 css_schedule_eval_all();
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
);
439 /* Access to sei_page is serialized through machine check handler
440 * thread, so no need for locking. */
443 CIO_TRACE_EVENT(2, "prcss");
445 memset(sei_area
, 0, sizeof(*sei_area
));
446 sei_area
->request
.length
= 0x0010;
447 sei_area
->request
.code
= 0x000e;
451 if (sei_area
->response
.code
== 0x0001) {
452 CIO_CRW_EVENT(4, "chsc: sei successful\n");
453 chsc_process_sei(sei_area
);
455 CIO_CRW_EVENT(2, "chsc: sei failed (rc=%04x)\n",
456 sei_area
->response
.code
);
459 } while (sei_area
->flags
& 0x80);
462 void chsc_chp_online(struct chp_id chpid
)
465 struct chp_link link
;
467 sprintf(dbf_txt
, "cadd%x.%02x", chpid
.cssid
, chpid
.id
);
468 CIO_TRACE_EVENT(2, dbf_txt
);
470 if (chp_get_status(chpid
) != 0) {
471 memset(&link
, 0, sizeof(struct chp_link
));
473 /* Wait until previous actions have settled. */
474 css_wait_for_slow_path();
475 for_each_subchannel_staged(__s390_process_res_acc
, NULL
,
480 static void __s390_subchannel_vary_chpid(struct subchannel
*sch
,
481 struct chp_id chpid
, int on
)
484 struct chp_link link
;
486 memset(&link
, 0, sizeof(struct chp_link
));
488 spin_lock_irqsave(sch
->lock
, flags
);
489 if (sch
->driver
&& sch
->driver
->chp_event
)
490 sch
->driver
->chp_event(sch
, &link
,
491 on
? CHP_VARY_ON
: CHP_VARY_OFF
);
492 spin_unlock_irqrestore(sch
->lock
, flags
);
495 static int s390_subchannel_vary_chpid_off(struct subchannel
*sch
, void *data
)
497 struct chp_id
*chpid
= data
;
499 __s390_subchannel_vary_chpid(sch
, *chpid
, 0);
503 static int s390_subchannel_vary_chpid_on(struct subchannel
*sch
, void *data
)
505 struct chp_id
*chpid
= data
;
507 __s390_subchannel_vary_chpid(sch
, *chpid
, 1);
512 __s390_vary_chpid_on(struct subchannel_id schid
, void *data
)
516 if (stsch_err(schid
, &schib
))
519 /* Put it on the slow path. */
520 css_schedule_eval(schid
);
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
529 int chsc_chp_vary(struct chp_id chpid
, int on
)
531 struct channel_path
*chp
= chpid_to_chp(chpid
);
533 /* Wait until previous actions have settled. */
534 css_wait_for_slow_path();
536 * Redo PathVerification on the devices the chpid connects to
539 /* Try to update the channel path descritor. */
540 chsc_determine_base_channel_path_desc(chpid
, &chp
->desc
);
541 for_each_subchannel_staged(s390_subchannel_vary_chpid_on
,
542 __s390_vary_chpid_on
, &chpid
);
544 for_each_subchannel_staged(s390_subchannel_vary_chpid_off
,
551 chsc_remove_cmg_attr(struct channel_subsystem
*css
)
555 for (i
= 0; i
<= __MAX_CHPID
; i
++) {
558 chp_remove_cmg_attr(css
->chps
[i
]);
563 chsc_add_cmg_attr(struct channel_subsystem
*css
)
568 for (i
= 0; i
<= __MAX_CHPID
; i
++) {
571 ret
= chp_add_cmg_attr(css
->chps
[i
]);
577 for (--i
; i
>= 0; i
--) {
580 chp_remove_cmg_attr(css
->chps
[i
]);
585 int __chsc_do_secm(struct channel_subsystem
*css
, int enable
)
588 struct chsc_header request
;
589 u32 operation_code
: 2;
598 struct chsc_header response
;
603 } __attribute__ ((packed
)) *secm_area
;
606 spin_lock_irq(&chsc_page_lock
);
607 memset(chsc_page
, 0, PAGE_SIZE
);
608 secm_area
= chsc_page
;
609 secm_area
->request
.length
= 0x0050;
610 secm_area
->request
.code
= 0x0016;
612 secm_area
->key
= PAGE_DEFAULT_KEY
>> 4;
613 secm_area
->cub_addr1
= (u64
)(unsigned long)css
->cub_addr1
;
614 secm_area
->cub_addr2
= (u64
)(unsigned long)css
->cub_addr2
;
616 secm_area
->operation_code
= enable
? 0 : 1;
618 ccode
= chsc(secm_area
);
620 ret
= (ccode
== 3) ? -ENODEV
: -EBUSY
;
624 switch (secm_area
->response
.code
) {
630 ret
= chsc_error_from_response(secm_area
->response
.code
);
633 CIO_CRW_EVENT(2, "chsc: secm failed (rc=%04x)\n",
634 secm_area
->response
.code
);
636 spin_unlock_irq(&chsc_page_lock
);
641 chsc_secm(struct channel_subsystem
*css
, int enable
)
645 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
);
654 ret
= __chsc_do_secm(css
, enable
);
656 css
->cm_enabled
= enable
;
657 if (css
->cm_enabled
) {
658 ret
= chsc_add_cmg_attr(css
);
660 __chsc_do_secm(css
, 0);
664 chsc_remove_cmg_attr(css
);
666 if (!css
->cm_enabled
) {
667 free_page((unsigned long)css
->cub_addr1
);
668 free_page((unsigned long)css
->cub_addr2
);
673 int chsc_determine_channel_path_desc(struct chp_id chpid
, int fmt
, int rfmt
,
674 int c
, int m
, void *page
)
676 struct chsc_scpd
*scpd_area
;
679 if ((rfmt
== 1) && !css_general_characteristics
.fcs
)
681 if ((rfmt
== 2) && !css_general_characteristics
.cib
)
684 memset(page
, 0, PAGE_SIZE
);
686 scpd_area
->request
.length
= 0x0010;
687 scpd_area
->request
.code
= 0x0002;
688 scpd_area
->cssid
= chpid
.cssid
;
689 scpd_area
->first_chpid
= chpid
.id
;
690 scpd_area
->last_chpid
= chpid
.id
;
693 scpd_area
->fmt
= fmt
;
694 scpd_area
->rfmt
= rfmt
;
696 ccode
= chsc(scpd_area
);
698 return (ccode
== 3) ? -ENODEV
: -EBUSY
;
700 ret
= chsc_error_from_response(scpd_area
->response
.code
);
702 CIO_CRW_EVENT(2, "chsc: scpd failed (rc=%04x)\n",
703 scpd_area
->response
.code
);
706 EXPORT_SYMBOL_GPL(chsc_determine_channel_path_desc
);
708 int chsc_determine_base_channel_path_desc(struct chp_id chpid
,
709 struct channel_path_desc
*desc
)
711 struct chsc_response_struct
*chsc_resp
;
712 struct chsc_scpd
*scpd_area
;
716 spin_lock_irqsave(&chsc_page_lock
, flags
);
717 scpd_area
= chsc_page
;
718 ret
= chsc_determine_channel_path_desc(chpid
, 0, 0, 0, 0, scpd_area
);
721 chsc_resp
= (void *)&scpd_area
->response
;
722 memcpy(desc
, &chsc_resp
->data
, sizeof(*desc
));
724 spin_unlock_irqrestore(&chsc_page_lock
, flags
);
728 int chsc_determine_fmt1_channel_path_desc(struct chp_id chpid
,
729 struct channel_path_desc_fmt1
*desc
)
731 struct chsc_response_struct
*chsc_resp
;
732 struct chsc_scpd
*scpd_area
;
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
);
740 chsc_resp
= (void *)&scpd_area
->response
;
741 memcpy(desc
, &chsc_resp
->data
, sizeof(*desc
));
743 spin_unlock_irq(&chsc_page_lock
);
748 chsc_initialize_cmg_chars(struct channel_path
*chp
, u8 cmcv
,
749 struct cmg_chars
*chars
)
751 struct cmg_chars
*cmg_chars
;
754 cmg_chars
= chp
->cmg_chars
;
755 for (i
= 0; i
< NR_MEASUREMENT_CHARS
; i
++) {
756 mask
= 0x80 >> (i
+ 3);
758 cmg_chars
->values
[i
] = chars
->values
[i
];
760 cmg_chars
->values
[i
] = 0;
764 int chsc_get_channel_measurement_chars(struct channel_path
*chp
)
766 struct cmg_chars
*cmg_chars
;
770 struct chsc_header request
;
776 struct chsc_header response
;
787 u32 data
[NR_MEASUREMENT_CHARS
];
788 } __attribute__ ((packed
)) *scmc_area
;
790 chp
->cmg_chars
= NULL
;
791 cmg_chars
= kmalloc(sizeof(*cmg_chars
), GFP_KERNEL
);
795 spin_lock_irq(&chsc_page_lock
);
796 memset(chsc_page
, 0, PAGE_SIZE
);
797 scmc_area
= chsc_page
;
798 scmc_area
->request
.length
= 0x0010;
799 scmc_area
->request
.code
= 0x0022;
800 scmc_area
->first_chpid
= chp
->chpid
.id
;
801 scmc_area
->last_chpid
= chp
->chpid
.id
;
803 ccode
= chsc(scmc_area
);
805 ret
= (ccode
== 3) ? -ENODEV
: -EBUSY
;
809 ret
= chsc_error_from_response(scmc_area
->response
.code
);
811 CIO_CRW_EVENT(2, "chsc: scmc failed (rc=%04x)\n",
812 scmc_area
->response
.code
);
815 if (scmc_area
->not_valid
) {
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. */
826 chp
->cmg_chars
= cmg_chars
;
827 chsc_initialize_cmg_chars(chp
, scmc_area
->cmcv
,
828 (struct cmg_chars
*) &scmc_area
->data
);
830 spin_unlock_irq(&chsc_page_lock
);
837 int __init
chsc_init(void)
841 sei_page
= (void *)get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
842 chsc_page
= (void *)get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
843 if (!sei_page
|| !chsc_page
) {
847 ret
= crw_register_handler(CRW_RSC_CSS
, chsc_process_crw
);
852 free_page((unsigned long)chsc_page
);
853 free_page((unsigned long)sei_page
);
857 void __init
chsc_init_cleanup(void)
859 crw_unregister_handler(CRW_RSC_CSS
);
860 free_page((unsigned long)chsc_page
);
861 free_page((unsigned long)sei_page
);
864 int chsc_enable_facility(int operation_code
)
869 struct chsc_header request
;
876 u32 operation_data_area
[252];
877 struct chsc_header response
;
881 } __attribute__ ((packed
)) *sda_area
;
883 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
;
890 ret
= chsc(sda_area
);
892 ret
= (ret
== 3) ? -ENODEV
: -EBUSY
;
896 switch (sda_area
->response
.code
) {
901 ret
= chsc_error_from_response(sda_area
->response
.code
);
904 CIO_CRW_EVENT(2, "chsc: sda (oc=%x) failed (rc=%04x)\n",
905 operation_code
, sda_area
->response
.code
);
907 spin_unlock_irqrestore(&chsc_page_lock
, flags
);
911 struct css_general_char css_general_characteristics
;
912 struct css_chsc_char css_chsc_characteristics
;
915 chsc_determine_css_characteristics(void)
919 struct chsc_header request
;
923 struct chsc_header response
;
925 u32 general_char
[510];
927 } __attribute__ ((packed
)) *scsc_area
;
929 spin_lock_irq(&chsc_page_lock
);
930 memset(chsc_page
, 0, PAGE_SIZE
);
931 scsc_area
= chsc_page
;
932 scsc_area
->request
.length
= 0x0010;
933 scsc_area
->request
.code
= 0x0010;
935 result
= chsc(scsc_area
);
937 result
= (result
== 3) ? -ENODEV
: -EBUSY
;
941 result
= chsc_error_from_response(scsc_area
->response
.code
);
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
));
948 CIO_CRW_EVENT(2, "chsc: scsc failed (rc=%04x)\n",
949 scsc_area
->response
.code
);
951 spin_unlock_irq(&chsc_page_lock
);
955 EXPORT_SYMBOL_GPL(css_general_characteristics
);
956 EXPORT_SYMBOL_GPL(css_chsc_characteristics
);
958 int chsc_sstpc(void *page
, unsigned int op
, u16 ctrl
)
961 struct chsc_header request
;
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
;
972 memset(page
, 0, PAGE_SIZE
);
974 rr
->request
.length
= 0x0020;
975 rr
->request
.code
= 0x0033;
981 rc
= (rr
->response
.code
== 0x0001) ? 0 : -EIO
;
985 int chsc_sstpi(void *page
, void *result
, size_t size
)
988 struct chsc_header request
;
989 unsigned int rsvd0
[3];
990 struct chsc_header response
;
992 } __attribute__ ((packed
)) *rr
;
995 memset(page
, 0, PAGE_SIZE
);
997 rr
->request
.length
= 0x0010;
998 rr
->request
.code
= 0x0038;
1002 memcpy(result
, &rr
->data
, size
);
1003 return (rr
->response
.code
== 0x0001) ? 0 : -EIO
;
1006 int chsc_siosl(struct subchannel_id schid
)
1009 struct chsc_header request
;
1011 struct subchannel_id sid
;
1013 struct chsc_header response
;
1015 } __attribute__ ((packed
)) *siosl_area
;
1016 unsigned long flags
;
1020 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
;
1028 ccode
= chsc(siosl_area
);
1034 CIO_MSG_EVENT(2, "chsc: chsc failed for 0.%x.%04x (ccode=%d)\n",
1035 schid
.ssid
, schid
.sch_no
, ccode
);
1038 rc
= chsc_error_from_response(siosl_area
->response
.code
);
1040 CIO_MSG_EVENT(2, "chsc: siosl failed for 0.%x.%04x (rc=%04x)\n",
1041 schid
.ssid
, schid
.sch_no
,
1042 siosl_area
->response
.code
);
1044 CIO_MSG_EVENT(4, "chsc: siosl succeeded for 0.%x.%04x\n",
1045 schid
.ssid
, schid
.sch_no
);
1047 spin_unlock_irqrestore(&chsc_page_lock
, flags
);
1050 EXPORT_SYMBOL_GPL(chsc_siosl
);