2 * Driver for s390 chsc subchannels
4 * Copyright IBM Corp. 2008, 2011
6 * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com>
10 #include <linux/slab.h>
11 #include <linux/compat.h>
12 #include <linux/device.h>
13 #include <linux/module.h>
14 #include <linux/uaccess.h>
15 #include <linux/miscdevice.h>
16 #include <linux/kernel_stat.h>
18 #include <asm/compat.h>
24 #include "cio_debug.h"
29 static debug_info_t
*chsc_debug_msg_id
;
30 static debug_info_t
*chsc_debug_log_id
;
32 static struct chsc_request
*on_close_request
;
33 static struct chsc_async_area
*on_close_chsc_area
;
34 static DEFINE_MUTEX(on_close_mutex
);
36 #define CHSC_MSG(imp, args...) do { \
37 debug_sprintf_event(chsc_debug_msg_id, imp , ##args); \
40 #define CHSC_LOG(imp, txt) do { \
41 debug_text_event(chsc_debug_log_id, imp , txt); \
44 static void CHSC_LOG_HEX(int level
, void *data
, int length
)
47 debug_event(chsc_debug_log_id
, level
, data
, length
);
48 length
-= chsc_debug_log_id
->buf_size
;
49 data
+= chsc_debug_log_id
->buf_size
;
53 MODULE_AUTHOR("IBM Corporation");
54 MODULE_DESCRIPTION("driver for s390 chsc subchannels");
55 MODULE_LICENSE("GPL");
57 static void chsc_subchannel_irq(struct subchannel
*sch
)
59 struct chsc_private
*private = dev_get_drvdata(&sch
->dev
);
60 struct chsc_request
*request
= private->request
;
61 struct irb
*irb
= this_cpu_ptr(&cio_irb
);
64 CHSC_LOG_HEX(4, irb
, sizeof(*irb
));
65 inc_irq_stat(IRQIO_CSC
);
67 /* Copy irb to provided request and set done. */
69 CHSC_MSG(0, "Interrupt on sch 0.%x.%04x with no request\n",
70 sch
->schid
.ssid
, sch
->schid
.sch_no
);
73 private->request
= NULL
;
74 memcpy(&request
->irb
, irb
, sizeof(*irb
));
75 cio_update_schib(sch
);
76 complete(&request
->completion
);
77 put_device(&sch
->dev
);
80 static int chsc_subchannel_probe(struct subchannel
*sch
)
82 struct chsc_private
*private;
85 CHSC_MSG(6, "Detected chsc subchannel 0.%x.%04x\n",
86 sch
->schid
.ssid
, sch
->schid
.sch_no
);
87 sch
->isc
= CHSC_SCH_ISC
;
88 private = kzalloc(sizeof(*private), GFP_KERNEL
);
91 dev_set_drvdata(&sch
->dev
, private);
92 ret
= cio_enable_subchannel(sch
, (u32
)(unsigned long)sch
);
94 CHSC_MSG(0, "Failed to enable 0.%x.%04x: %d\n",
95 sch
->schid
.ssid
, sch
->schid
.sch_no
, ret
);
96 dev_set_drvdata(&sch
->dev
, NULL
);
99 if (dev_get_uevent_suppress(&sch
->dev
)) {
100 dev_set_uevent_suppress(&sch
->dev
, 0);
101 kobject_uevent(&sch
->dev
.kobj
, KOBJ_ADD
);
107 static int chsc_subchannel_remove(struct subchannel
*sch
)
109 struct chsc_private
*private;
111 cio_disable_subchannel(sch
);
112 private = dev_get_drvdata(&sch
->dev
);
113 dev_set_drvdata(&sch
->dev
, NULL
);
114 if (private->request
) {
115 complete(&private->request
->completion
);
116 put_device(&sch
->dev
);
122 static void chsc_subchannel_shutdown(struct subchannel
*sch
)
124 cio_disable_subchannel(sch
);
127 static int chsc_subchannel_prepare(struct subchannel
*sch
)
132 * Don't allow suspend while the subchannel is not idle
133 * since we don't have a way to clear the subchannel and
134 * cannot disable it with a request running.
136 cc
= stsch_err(sch
->schid
, &schib
);
137 if (!cc
&& scsw_stctl(&schib
.scsw
))
142 static int chsc_subchannel_freeze(struct subchannel
*sch
)
144 return cio_disable_subchannel(sch
);
147 static int chsc_subchannel_restore(struct subchannel
*sch
)
149 return cio_enable_subchannel(sch
, (u32
)(unsigned long)sch
);
152 static struct css_device_id chsc_subchannel_ids
[] = {
153 { .match_flags
= 0x1, .type
=SUBCHANNEL_TYPE_CHSC
, },
154 { /* end of list */ },
156 MODULE_DEVICE_TABLE(css
, chsc_subchannel_ids
);
158 static struct css_driver chsc_subchannel_driver
= {
160 .owner
= THIS_MODULE
,
161 .name
= "chsc_subchannel",
163 .subchannel_type
= chsc_subchannel_ids
,
164 .irq
= chsc_subchannel_irq
,
165 .probe
= chsc_subchannel_probe
,
166 .remove
= chsc_subchannel_remove
,
167 .shutdown
= chsc_subchannel_shutdown
,
168 .prepare
= chsc_subchannel_prepare
,
169 .freeze
= chsc_subchannel_freeze
,
170 .thaw
= chsc_subchannel_restore
,
171 .restore
= chsc_subchannel_restore
,
174 static int __init
chsc_init_dbfs(void)
176 chsc_debug_msg_id
= debug_register("chsc_msg", 8, 1, 4 * sizeof(long));
177 if (!chsc_debug_msg_id
)
179 debug_register_view(chsc_debug_msg_id
, &debug_sprintf_view
);
180 debug_set_level(chsc_debug_msg_id
, 2);
181 chsc_debug_log_id
= debug_register("chsc_log", 16, 1, 16);
182 if (!chsc_debug_log_id
)
184 debug_register_view(chsc_debug_log_id
, &debug_hex_ascii_view
);
185 debug_set_level(chsc_debug_log_id
, 2);
188 if (chsc_debug_msg_id
)
189 debug_unregister(chsc_debug_msg_id
);
193 static void chsc_remove_dbfs(void)
195 debug_unregister(chsc_debug_log_id
);
196 debug_unregister(chsc_debug_msg_id
);
199 static int __init
chsc_init_sch_driver(void)
201 return css_driver_register(&chsc_subchannel_driver
);
204 static void chsc_cleanup_sch_driver(void)
206 css_driver_unregister(&chsc_subchannel_driver
);
209 static DEFINE_SPINLOCK(chsc_lock
);
211 static int chsc_subchannel_match_next_free(struct device
*dev
, void *data
)
213 struct subchannel
*sch
= to_subchannel(dev
);
215 return sch
->schib
.pmcw
.ena
&& !scsw_fctl(&sch
->schib
.scsw
);
218 static struct subchannel
*chsc_get_next_subchannel(struct subchannel
*sch
)
222 dev
= driver_find_device(&chsc_subchannel_driver
.drv
,
223 sch
? &sch
->dev
: NULL
, NULL
,
224 chsc_subchannel_match_next_free
);
225 return dev
? to_subchannel(dev
) : NULL
;
229 * chsc_async() - try to start a chsc request asynchronously
230 * @chsc_area: request to be started
231 * @request: request structure to associate
233 * Tries to start a chsc request on one of the existing chsc subchannels.
235 * %0 if the request was performed synchronously
236 * %-EINPROGRESS if the request was successfully started
237 * %-EBUSY if all chsc subchannels are busy
238 * %-ENODEV if no chsc subchannels are available
240 * interrupts disabled, chsc_lock held
242 static int chsc_async(struct chsc_async_area
*chsc_area
,
243 struct chsc_request
*request
)
246 struct chsc_private
*private;
247 struct subchannel
*sch
= NULL
;
251 chsc_area
->header
.key
= PAGE_DEFAULT_KEY
>> 4;
252 while ((sch
= chsc_get_next_subchannel(sch
))) {
253 spin_lock(sch
->lock
);
254 private = dev_get_drvdata(&sch
->dev
);
255 if (private->request
) {
256 spin_unlock(sch
->lock
);
260 chsc_area
->header
.sid
= sch
->schid
;
261 CHSC_LOG(2, "schid");
262 CHSC_LOG_HEX(2, &sch
->schid
, sizeof(sch
->schid
));
263 cc
= chsc(chsc_area
);
264 snprintf(dbf
, sizeof(dbf
), "cc:%d", cc
);
271 sch
->schib
.scsw
.cmd
.fctl
|= SCSW_FCTL_START_FUNC
;
273 private->request
= request
;
281 spin_unlock(sch
->lock
);
282 CHSC_MSG(2, "chsc on 0.%x.%04x returned cc=%d\n",
283 sch
->schid
.ssid
, sch
->schid
.sch_no
, cc
);
284 if (ret
== -EINPROGRESS
)
286 put_device(&sch
->dev
);
293 static void chsc_log_command(void *chsc_area
)
297 snprintf(dbf
, sizeof(dbf
), "CHSC:%x", ((uint16_t *)chsc_area
)[1]);
299 CHSC_LOG_HEX(0, chsc_area
, 32);
302 static int chsc_examine_irb(struct chsc_request
*request
)
306 if (!(scsw_stctl(&request
->irb
.scsw
) & SCSW_STCTL_STATUS_PEND
))
308 backed_up
= scsw_cstat(&request
->irb
.scsw
) & SCHN_STAT_CHAIN_CHECK
;
309 request
->irb
.scsw
.cmd
.cstat
&= ~SCHN_STAT_CHAIN_CHECK
;
310 if (scsw_cstat(&request
->irb
.scsw
) == 0)
314 if (scsw_cstat(&request
->irb
.scsw
) & SCHN_STAT_PROG_CHECK
)
316 if (scsw_cstat(&request
->irb
.scsw
) & SCHN_STAT_PROT_CHECK
)
318 if (scsw_cstat(&request
->irb
.scsw
) & SCHN_STAT_CHN_DATA_CHK
)
320 if (scsw_cstat(&request
->irb
.scsw
) & SCHN_STAT_CHN_CTRL_CHK
)
325 static int chsc_ioctl_start(void __user
*user_area
)
327 struct chsc_request
*request
;
328 struct chsc_async_area
*chsc_area
;
332 if (!css_general_characteristics
.dynio
)
333 /* It makes no sense to try. */
335 chsc_area
= (void *)get_zeroed_page(GFP_DMA
| GFP_KERNEL
);
338 request
= kzalloc(sizeof(*request
), GFP_KERNEL
);
343 init_completion(&request
->completion
);
344 if (copy_from_user(chsc_area
, user_area
, PAGE_SIZE
)) {
348 chsc_log_command(chsc_area
);
349 spin_lock_irq(&chsc_lock
);
350 ret
= chsc_async(chsc_area
, request
);
351 spin_unlock_irq(&chsc_lock
);
352 if (ret
== -EINPROGRESS
) {
353 wait_for_completion(&request
->completion
);
354 ret
= chsc_examine_irb(request
);
356 /* copy area back to user */
358 if (copy_to_user(user_area
, chsc_area
, PAGE_SIZE
))
361 snprintf(dbf
, sizeof(dbf
), "ret:%d", ret
);
364 free_page((unsigned long)chsc_area
);
368 static int chsc_ioctl_on_close_set(void __user
*user_area
)
373 mutex_lock(&on_close_mutex
);
374 if (on_close_chsc_area
) {
378 on_close_request
= kzalloc(sizeof(*on_close_request
), GFP_KERNEL
);
379 if (!on_close_request
) {
383 on_close_chsc_area
= (void *)get_zeroed_page(GFP_DMA
| GFP_KERNEL
);
384 if (!on_close_chsc_area
) {
386 goto out_free_request
;
388 if (copy_from_user(on_close_chsc_area
, user_area
, PAGE_SIZE
)) {
396 free_page((unsigned long)on_close_chsc_area
);
397 on_close_chsc_area
= NULL
;
399 kfree(on_close_request
);
400 on_close_request
= NULL
;
402 mutex_unlock(&on_close_mutex
);
403 snprintf(dbf
, sizeof(dbf
), "ocsret:%d", ret
);
408 static int chsc_ioctl_on_close_remove(void)
413 mutex_lock(&on_close_mutex
);
414 if (!on_close_chsc_area
) {
418 free_page((unsigned long)on_close_chsc_area
);
419 on_close_chsc_area
= NULL
;
420 kfree(on_close_request
);
421 on_close_request
= NULL
;
424 mutex_unlock(&on_close_mutex
);
425 snprintf(dbf
, sizeof(dbf
), "ocrret:%d", ret
);
430 static int chsc_ioctl_start_sync(void __user
*user_area
)
432 struct chsc_sync_area
*chsc_area
;
435 chsc_area
= (void *)get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
438 if (copy_from_user(chsc_area
, user_area
, PAGE_SIZE
)) {
442 if (chsc_area
->header
.code
& 0x4000) {
446 chsc_log_command(chsc_area
);
447 ccode
= chsc(chsc_area
);
452 if (copy_to_user(user_area
, chsc_area
, PAGE_SIZE
))
457 free_page((unsigned long)chsc_area
);
461 static int chsc_ioctl_info_channel_path(void __user
*user_cd
)
463 struct chsc_chp_cd
*cd
;
466 struct chsc_header request
;
477 struct chsc_header response
;
478 u8 data
[PAGE_SIZE
- 20];
479 } __attribute__ ((packed
)) *scpcd_area
;
481 scpcd_area
= (void *)get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
484 cd
= kzalloc(sizeof(*cd
), GFP_KERNEL
);
489 if (copy_from_user(cd
, user_cd
, sizeof(*cd
))) {
493 scpcd_area
->request
.length
= 0x0010;
494 scpcd_area
->request
.code
= 0x0028;
495 scpcd_area
->m
= cd
->m
;
496 scpcd_area
->fmt1
= cd
->fmt
;
497 scpcd_area
->cssid
= cd
->chpid
.cssid
;
498 scpcd_area
->first_chpid
= cd
->chpid
.id
;
499 scpcd_area
->last_chpid
= cd
->chpid
.id
;
501 ccode
= chsc(scpcd_area
);
506 if (scpcd_area
->response
.code
!= 0x0001) {
508 CHSC_MSG(0, "scpcd: response code=%x\n",
509 scpcd_area
->response
.code
);
512 memcpy(&cd
->cpcb
, &scpcd_area
->response
, scpcd_area
->response
.length
);
513 if (copy_to_user(user_cd
, cd
, sizeof(*cd
)))
519 free_page((unsigned long)scpcd_area
);
523 static int chsc_ioctl_info_cu(void __user
*user_cd
)
525 struct chsc_cu_cd
*cd
;
528 struct chsc_header request
;
539 struct chsc_header response
;
540 u8 data
[PAGE_SIZE
- 20];
541 } __attribute__ ((packed
)) *scucd_area
;
543 scucd_area
= (void *)get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
546 cd
= kzalloc(sizeof(*cd
), GFP_KERNEL
);
551 if (copy_from_user(cd
, user_cd
, sizeof(*cd
))) {
555 scucd_area
->request
.length
= 0x0010;
556 scucd_area
->request
.code
= 0x0028;
557 scucd_area
->m
= cd
->m
;
558 scucd_area
->fmt1
= cd
->fmt
;
559 scucd_area
->cssid
= cd
->cssid
;
560 scucd_area
->first_cun
= cd
->cun
;
561 scucd_area
->last_cun
= cd
->cun
;
563 ccode
= chsc(scucd_area
);
568 if (scucd_area
->response
.code
!= 0x0001) {
570 CHSC_MSG(0, "scucd: response code=%x\n",
571 scucd_area
->response
.code
);
574 memcpy(&cd
->cucb
, &scucd_area
->response
, scucd_area
->response
.length
);
575 if (copy_to_user(user_cd
, cd
, sizeof(*cd
)))
581 free_page((unsigned long)scucd_area
);
585 static int chsc_ioctl_info_sch_cu(void __user
*user_cud
)
587 struct chsc_sch_cud
*cud
;
590 struct chsc_header request
;
602 struct chsc_header response
;
603 u8 data
[PAGE_SIZE
- 20];
604 } __attribute__ ((packed
)) *sscud_area
;
606 sscud_area
= (void *)get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
609 cud
= kzalloc(sizeof(*cud
), GFP_KERNEL
);
614 if (copy_from_user(cud
, user_cud
, sizeof(*cud
))) {
618 sscud_area
->request
.length
= 0x0010;
619 sscud_area
->request
.code
= 0x0006;
620 sscud_area
->m
= cud
->schid
.m
;
621 sscud_area
->fmt1
= cud
->fmt
;
622 sscud_area
->ssid
= cud
->schid
.ssid
;
623 sscud_area
->first_sch
= cud
->schid
.sch_no
;
624 sscud_area
->cssid
= cud
->schid
.cssid
;
625 sscud_area
->last_sch
= cud
->schid
.sch_no
;
627 ccode
= chsc(sscud_area
);
632 if (sscud_area
->response
.code
!= 0x0001) {
634 CHSC_MSG(0, "sscud: response code=%x\n",
635 sscud_area
->response
.code
);
638 memcpy(&cud
->scub
, &sscud_area
->response
, sscud_area
->response
.length
);
639 if (copy_to_user(user_cud
, cud
, sizeof(*cud
)))
645 free_page((unsigned long)sscud_area
);
649 static int chsc_ioctl_conf_info(void __user
*user_ci
)
651 struct chsc_conf_info
*ci
;
654 struct chsc_header request
;
664 struct chsc_header response
;
665 u8 data
[PAGE_SIZE
- 20];
666 } __attribute__ ((packed
)) *sci_area
;
668 sci_area
= (void *)get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
671 ci
= kzalloc(sizeof(*ci
), GFP_KERNEL
);
676 if (copy_from_user(ci
, user_ci
, sizeof(*ci
))) {
680 sci_area
->request
.length
= 0x0010;
681 sci_area
->request
.code
= 0x0012;
682 sci_area
->m
= ci
->id
.m
;
683 sci_area
->fmt1
= ci
->fmt
;
684 sci_area
->cssid
= ci
->id
.cssid
;
685 sci_area
->ssid
= ci
->id
.ssid
;
687 ccode
= chsc(sci_area
);
692 if (sci_area
->response
.code
!= 0x0001) {
694 CHSC_MSG(0, "sci: response code=%x\n",
695 sci_area
->response
.code
);
698 memcpy(&ci
->scid
, &sci_area
->response
, sci_area
->response
.length
);
699 if (copy_to_user(user_ci
, ci
, sizeof(*ci
)))
705 free_page((unsigned long)sci_area
);
709 static int chsc_ioctl_conf_comp_list(void __user
*user_ccl
)
711 struct chsc_comp_list
*ccl
;
714 struct chsc_header request
;
722 struct chsc_header response
;
723 u8 data
[PAGE_SIZE
- 36];
724 } __attribute__ ((packed
)) *sccl_area
;
731 } __attribute__ ((packed
)) *chpid_parm
;
737 } __attribute__ ((packed
)) *cssids_parm
;
739 sccl_area
= (void *)get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
742 ccl
= kzalloc(sizeof(*ccl
), GFP_KERNEL
);
747 if (copy_from_user(ccl
, user_ccl
, sizeof(*ccl
))) {
751 sccl_area
->request
.length
= 0x0020;
752 sccl_area
->request
.code
= 0x0030;
753 sccl_area
->fmt
= ccl
->req
.fmt
;
754 sccl_area
->ctype
= ccl
->req
.ctype
;
755 switch (sccl_area
->ctype
) {
758 chpid_parm
= (void *)&sccl_area
->list_parm
;
759 chpid_parm
->m
= ccl
->req
.chpid
.m
;
760 chpid_parm
->cssid
= ccl
->req
.chpid
.chp
.cssid
;
761 chpid_parm
->chpid
= ccl
->req
.chpid
.chp
.id
;
764 case CCL_CSS_IMG_CONF_CHAR
:
765 cssids_parm
= (void *)&sccl_area
->list_parm
;
766 cssids_parm
->f_cssid
= ccl
->req
.cssids
.f_cssid
;
767 cssids_parm
->l_cssid
= ccl
->req
.cssids
.l_cssid
;
770 ccode
= chsc(sccl_area
);
775 if (sccl_area
->response
.code
!= 0x0001) {
777 CHSC_MSG(0, "sccl: response code=%x\n",
778 sccl_area
->response
.code
);
781 memcpy(&ccl
->sccl
, &sccl_area
->response
, sccl_area
->response
.length
);
782 if (copy_to_user(user_ccl
, ccl
, sizeof(*ccl
)))
788 free_page((unsigned long)sccl_area
);
792 static int chsc_ioctl_chpd(void __user
*user_chpd
)
794 struct chsc_scpd
*scpd_area
;
795 struct chsc_cpd_info
*chpd
;
798 chpd
= kzalloc(sizeof(*chpd
), GFP_KERNEL
);
799 scpd_area
= (void *)get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
800 if (!scpd_area
|| !chpd
) {
804 if (copy_from_user(chpd
, user_chpd
, sizeof(*chpd
))) {
808 ret
= chsc_determine_channel_path_desc(chpd
->chpid
, chpd
->fmt
,
809 chpd
->rfmt
, chpd
->c
, chpd
->m
,
813 memcpy(&chpd
->chpdb
, &scpd_area
->response
, scpd_area
->response
.length
);
814 if (copy_to_user(user_chpd
, chpd
, sizeof(*chpd
)))
818 free_page((unsigned long)scpd_area
);
822 static int chsc_ioctl_dcal(void __user
*user_dcal
)
824 struct chsc_dcal
*dcal
;
827 struct chsc_header request
;
835 struct chsc_header response
;
836 u8 data
[PAGE_SIZE
- 36];
837 } __attribute__ ((packed
)) *sdcal_area
;
839 sdcal_area
= (void *)get_zeroed_page(GFP_KERNEL
| GFP_DMA
);
842 dcal
= kzalloc(sizeof(*dcal
), GFP_KERNEL
);
847 if (copy_from_user(dcal
, user_dcal
, sizeof(*dcal
))) {
851 sdcal_area
->request
.length
= 0x0020;
852 sdcal_area
->request
.code
= 0x0034;
853 sdcal_area
->atype
= dcal
->req
.atype
;
854 sdcal_area
->fmt
= dcal
->req
.fmt
;
855 memcpy(&sdcal_area
->list_parm
, &dcal
->req
.list_parm
,
856 sizeof(sdcal_area
->list_parm
));
858 ccode
= chsc(sdcal_area
);
863 if (sdcal_area
->response
.code
!= 0x0001) {
865 CHSC_MSG(0, "sdcal: response code=%x\n",
866 sdcal_area
->response
.code
);
869 memcpy(&dcal
->sdcal
, &sdcal_area
->response
,
870 sdcal_area
->response
.length
);
871 if (copy_to_user(user_dcal
, dcal
, sizeof(*dcal
)))
877 free_page((unsigned long)sdcal_area
);
881 static long chsc_ioctl(struct file
*filp
, unsigned int cmd
,
886 CHSC_MSG(2, "chsc_ioctl called, cmd=%x\n", cmd
);
887 if (is_compat_task())
888 argp
= compat_ptr(arg
);
890 argp
= (void __user
*)arg
;
893 return chsc_ioctl_start(argp
);
894 case CHSC_START_SYNC
:
895 return chsc_ioctl_start_sync(argp
);
896 case CHSC_INFO_CHANNEL_PATH
:
897 return chsc_ioctl_info_channel_path(argp
);
899 return chsc_ioctl_info_cu(argp
);
900 case CHSC_INFO_SCH_CU
:
901 return chsc_ioctl_info_sch_cu(argp
);
903 return chsc_ioctl_conf_info(argp
);
905 return chsc_ioctl_conf_comp_list(argp
);
907 return chsc_ioctl_chpd(argp
);
909 return chsc_ioctl_dcal(argp
);
910 case CHSC_ON_CLOSE_SET
:
911 return chsc_ioctl_on_close_set(argp
);
912 case CHSC_ON_CLOSE_REMOVE
:
913 return chsc_ioctl_on_close_remove();
914 default: /* unknown ioctl number */
919 static atomic_t chsc_ready_for_use
= ATOMIC_INIT(1);
921 static int chsc_open(struct inode
*inode
, struct file
*file
)
923 if (!atomic_dec_and_test(&chsc_ready_for_use
)) {
924 atomic_inc(&chsc_ready_for_use
);
927 return nonseekable_open(inode
, file
);
930 static int chsc_release(struct inode
*inode
, struct file
*filp
)
935 mutex_lock(&on_close_mutex
);
936 if (!on_close_chsc_area
)
938 init_completion(&on_close_request
->completion
);
939 CHSC_LOG(0, "on_close");
940 chsc_log_command(on_close_chsc_area
);
941 spin_lock_irq(&chsc_lock
);
942 ret
= chsc_async(on_close_chsc_area
, on_close_request
);
943 spin_unlock_irq(&chsc_lock
);
944 if (ret
== -EINPROGRESS
) {
945 wait_for_completion(&on_close_request
->completion
);
946 ret
= chsc_examine_irb(on_close_request
);
948 snprintf(dbf
, sizeof(dbf
), "relret:%d", ret
);
950 free_page((unsigned long)on_close_chsc_area
);
951 on_close_chsc_area
= NULL
;
952 kfree(on_close_request
);
953 on_close_request
= NULL
;
955 mutex_unlock(&on_close_mutex
);
956 atomic_inc(&chsc_ready_for_use
);
960 static const struct file_operations chsc_fops
= {
961 .owner
= THIS_MODULE
,
963 .release
= chsc_release
,
964 .unlocked_ioctl
= chsc_ioctl
,
965 .compat_ioctl
= chsc_ioctl
,
969 static struct miscdevice chsc_misc_device
= {
970 .minor
= MISC_DYNAMIC_MINOR
,
975 static int __init
chsc_misc_init(void)
977 return misc_register(&chsc_misc_device
);
980 static void chsc_misc_cleanup(void)
982 misc_deregister(&chsc_misc_device
);
985 static int __init
chsc_sch_init(void)
989 ret
= chsc_init_dbfs();
992 isc_register(CHSC_SCH_ISC
);
993 ret
= chsc_init_sch_driver();
996 ret
= chsc_misc_init();
1001 chsc_cleanup_sch_driver();
1003 isc_unregister(CHSC_SCH_ISC
);
1008 static void __exit
chsc_sch_exit(void)
1010 chsc_misc_cleanup();
1011 chsc_cleanup_sch_driver();
1012 isc_unregister(CHSC_SCH_ISC
);
1016 module_init(chsc_sch_init
);
1017 module_exit(chsc_sch_exit
);