1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * IUCV base infrastructure.
5 * Copyright IBM Corp. 2001, 2009
9 * Alan Altmark (Alan_Altmark@us.ibm.com) Sept. 2000
10 * Xenia Tkatschow (xenia@us.ibm.com)
11 * 2Gb awareness and general cleanup:
12 * Fritz Elfert (elfert@de.ibm.com, felfert@millenux.com)
13 * Rewritten for af_iucv:
14 * Martin Schwidefsky <schwidefsky@de.ibm.com>
16 * Ursula Braun (ursula.braun@de.ibm.com)
20 * CP Programming Service, IBM document # SC24-5760
23 #define KMSG_COMPONENT "iucv"
24 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
26 #include <linux/kernel_stat.h>
27 #include <linux/module.h>
28 #include <linux/moduleparam.h>
29 #include <linux/spinlock.h>
30 #include <linux/kernel.h>
31 #include <linux/slab.h>
32 #include <linux/init.h>
33 #include <linux/interrupt.h>
34 #include <linux/list.h>
35 #include <linux/errno.h>
36 #include <linux/err.h>
37 #include <linux/device.h>
38 #include <linux/cpu.h>
39 #include <linux/reboot.h>
40 #include <net/iucv/iucv.h>
41 #include <linux/atomic.h>
42 #include <asm/ebcdic.h>
49 * All flags are defined in the field IPFLAGS1 of each function
50 * and can be found in CP Programming Services.
51 * IPSRCCLS - Indicates you have specified a source class.
52 * IPTRGCLS - Indicates you have specified a target class.
53 * IPFGPID - Indicates you have specified a pathid.
54 * IPFGMID - Indicates you have specified a message ID.
55 * IPNORPY - Indicates a one-way message. No reply expected.
56 * IPALL - Indicates that all paths are affected.
58 #define IUCV_IPSRCCLS 0x01
59 #define IUCV_IPTRGCLS 0x01
60 #define IUCV_IPFGPID 0x02
61 #define IUCV_IPFGMID 0x04
62 #define IUCV_IPNORPY 0x10
63 #define IUCV_IPALL 0x80
65 static int iucv_bus_match(struct device *dev, struct device_driver *drv)
70 struct bus_type iucv_bus = {
72 .match = iucv_bus_match,
74 EXPORT_SYMBOL(iucv_bus);
76 struct device *iucv_root;
77 EXPORT_SYMBOL(iucv_root);
79 static int iucv_available;
81 /* General IUCV interrupt structure */
82 struct iucv_irq_data {
89 struct iucv_irq_list {
90 struct list_head list;
91 struct iucv_irq_data data;
94 static struct iucv_irq_data *iucv_irq_data[NR_CPUS];
95 static cpumask_t iucv_buffer_cpumask = { CPU_BITS_NONE };
96 static cpumask_t iucv_irq_cpumask = { CPU_BITS_NONE };
99 * Queue of interrupt buffers lock for delivery via the tasklet
100 * (fast but can't call smp_call_function).
102 static LIST_HEAD(iucv_task_queue);
105 * The tasklet for fast delivery of iucv interrupts.
107 static void iucv_tasklet_fn(unsigned long);
108 static DECLARE_TASKLET_OLD(iucv_tasklet, iucv_tasklet_fn);
111 * Queue of interrupt buffers for delivery via a work queue
112 * (slower but can call smp_call_function).
114 static LIST_HEAD(iucv_work_queue);
117 * The work element to deliver path pending interrupts.
119 static void iucv_work_fn(struct work_struct *work);
120 static DECLARE_WORK(iucv_work, iucv_work_fn);
123 * Spinlock protecting task and work queue.
125 static DEFINE_SPINLOCK(iucv_queue_lock);
127 enum iucv_command_codes {
129 IUCV_RETRIEVE_BUFFER = 2,
137 IUCV_DECLARE_BUFFER = 12,
142 IUCV_SETCONTROLMASK = 17,
146 * Error messages that are used with the iucv_sever function. They get
147 * converted to EBCDIC.
149 static char iucv_error_no_listener[16] = "NO LISTENER";
150 static char iucv_error_no_memory[16] = "NO MEMORY";
151 static char iucv_error_pathid[16] = "INVALID PATHID";
154 * iucv_handler_list: List of registered handlers.
156 static LIST_HEAD(iucv_handler_list);
159 * iucv_path_table: an array of iucv_path structures.
161 static struct iucv_path **iucv_path_table;
162 static unsigned long iucv_max_pathid;
165 * iucv_lock: spinlock protecting iucv_handler_list and iucv_pathid_table
167 static DEFINE_SPINLOCK(iucv_table_lock);
170 * iucv_active_cpu: contains the number of the cpu executing the tasklet
171 * or the work handler. Needed for iucv_path_sever called from tasklet.
173 static int iucv_active_cpu = -1;
176 * Mutex and wait queue for iucv_register/iucv_unregister.
178 static DEFINE_MUTEX(iucv_register_mutex);
181 * Counter for number of non-smp capable handlers.
183 static int iucv_nonsmp_handler;
186 * IUCV control data structure. Used by iucv_path_accept, iucv_path_connect,
187 * iucv_path_quiesce and iucv_path_sever.
189 struct iucv_cmd_control {
198 } __attribute__ ((packed,aligned(8)));
201 * Data in parameter list iucv structure. Used by iucv_message_send,
202 * iucv_message_send2way and iucv_message_reply.
204 struct iucv_cmd_dpl {
216 } __attribute__ ((packed,aligned(8)));
219 * Data in buffer iucv structure. Used by iucv_message_receive,
220 * iucv_message_reject, iucv_message_send, iucv_message_send2way
221 * and iucv_declare_cpu.
236 } __attribute__ ((packed,aligned(8)));
239 * Purge message iucv structure. Used by iucv_message_purge.
241 struct iucv_cmd_purge {
252 } __attribute__ ((packed,aligned(8)));
255 * Set mask iucv structure. Used by iucv_enable_cpu.
257 struct iucv_cmd_set_mask {
262 } __attribute__ ((packed,aligned(8)));
265 struct iucv_cmd_control ctrl;
266 struct iucv_cmd_dpl dpl;
267 struct iucv_cmd_db db;
268 struct iucv_cmd_purge purge;
269 struct iucv_cmd_set_mask set_mask;
273 * Anchor for per-cpu IUCV command parameter block.
275 static union iucv_param *iucv_param[NR_CPUS];
276 static union iucv_param *iucv_param_irq[NR_CPUS];
280 * @code: identifier of IUCV call to CP.
281 * @parm: pointer to a struct iucv_parm block
283 * Calls CP to execute IUCV commands.
285 * Returns the result of the CP IUCV call.
287 static inline int __iucv_call_b2f0(int command, union iucv_param *parm)
294 " .long 0xb2f01000\n"
297 : [cc] "=&d" (cc), "+m" (*parm)
298 : [reg0] "d" ((unsigned long)command),
299 [reg1] "d" ((unsigned long)parm)
304 static inline int iucv_call_b2f0(int command, union iucv_param *parm)
308 ccode = __iucv_call_b2f0(command, parm);
309 return ccode == 1 ? parm->ctrl.iprcode : ccode;
315 * Determines the maximum number of connections that may be established.
317 * Returns the maximum number of connections or -EPERM is IUCV is not
320 static int __iucv_query_maxconn(void *param, unsigned long *max_pathid)
322 unsigned long reg1 = (unsigned long)param;
328 " .long 0xb2f01000\n"
332 : [cc] "=&d" (cc), [reg1] "+&d" (reg1)
333 : [cmd] "K" (IUCV_QUERY)
339 static int iucv_query_maxconn(void)
341 unsigned long max_pathid;
345 param = kzalloc(sizeof(union iucv_param), GFP_KERNEL | GFP_DMA);
348 ccode = __iucv_query_maxconn(param, &max_pathid);
350 iucv_max_pathid = max_pathid;
352 return ccode ? -EPERM : 0;
359 * Allow iucv interrupts on this cpu.
361 static void iucv_allow_cpu(void *data)
363 int cpu = smp_processor_id();
364 union iucv_param *parm;
367 * Enable all iucv interrupts.
368 * ipmask contains bits for the different interrupts
369 * 0x80 - Flag to allow nonpriority message pending interrupts
370 * 0x40 - Flag to allow priority message pending interrupts
371 * 0x20 - Flag to allow nonpriority message completion interrupts
372 * 0x10 - Flag to allow priority message completion interrupts
373 * 0x08 - Flag to allow IUCV control interrupts
375 parm = iucv_param_irq[cpu];
376 memset(parm, 0, sizeof(union iucv_param));
377 parm->set_mask.ipmask = 0xf8;
378 iucv_call_b2f0(IUCV_SETMASK, parm);
381 * Enable all iucv control interrupts.
382 * ipmask contains bits for the different interrupts
383 * 0x80 - Flag to allow pending connections interrupts
384 * 0x40 - Flag to allow connection complete interrupts
385 * 0x20 - Flag to allow connection severed interrupts
386 * 0x10 - Flag to allow connection quiesced interrupts
387 * 0x08 - Flag to allow connection resumed interrupts
389 memset(parm, 0, sizeof(union iucv_param));
390 parm->set_mask.ipmask = 0xf8;
391 iucv_call_b2f0(IUCV_SETCONTROLMASK, parm);
392 /* Set indication that iucv interrupts are allowed for this cpu. */
393 cpumask_set_cpu(cpu, &iucv_irq_cpumask);
400 * Block iucv interrupts on this cpu.
402 static void iucv_block_cpu(void *data)
404 int cpu = smp_processor_id();
405 union iucv_param *parm;
407 /* Disable all iucv interrupts. */
408 parm = iucv_param_irq[cpu];
409 memset(parm, 0, sizeof(union iucv_param));
410 iucv_call_b2f0(IUCV_SETMASK, parm);
412 /* Clear indication that iucv interrupts are allowed for this cpu. */
413 cpumask_clear_cpu(cpu, &iucv_irq_cpumask);
420 * Declare a interrupt buffer on this cpu.
422 static void iucv_declare_cpu(void *data)
424 int cpu = smp_processor_id();
425 union iucv_param *parm;
428 if (cpumask_test_cpu(cpu, &iucv_buffer_cpumask))
431 /* Declare interrupt buffer. */
432 parm = iucv_param_irq[cpu];
433 memset(parm, 0, sizeof(union iucv_param));
434 parm->db.ipbfadr1 = virt_to_phys(iucv_irq_data[cpu]);
435 rc = iucv_call_b2f0(IUCV_DECLARE_BUFFER, parm);
437 char *err = "Unknown";
440 err = "Directory error";
443 err = "Invalid length";
446 err = "Buffer already exists";
449 err = "Buffer overlap";
452 err = "Paging or storage error";
455 pr_warn("Defining an interrupt buffer on CPU %i failed with 0x%02x (%s)\n",
460 /* Set indication that an iucv buffer exists for this cpu. */
461 cpumask_set_cpu(cpu, &iucv_buffer_cpumask);
463 if (iucv_nonsmp_handler == 0 || cpumask_empty(&iucv_irq_cpumask))
464 /* Enable iucv interrupts on this cpu. */
465 iucv_allow_cpu(NULL);
467 /* Disable iucv interrupts on this cpu. */
468 iucv_block_cpu(NULL);
475 * Retrieve interrupt buffer on this cpu.
477 static void iucv_retrieve_cpu(void *data)
479 int cpu = smp_processor_id();
480 union iucv_param *parm;
482 if (!cpumask_test_cpu(cpu, &iucv_buffer_cpumask))
485 /* Block iucv interrupts. */
486 iucv_block_cpu(NULL);
488 /* Retrieve interrupt buffer. */
489 parm = iucv_param_irq[cpu];
490 iucv_call_b2f0(IUCV_RETRIEVE_BUFFER, parm);
492 /* Clear indication that an iucv buffer exists for this cpu. */
493 cpumask_clear_cpu(cpu, &iucv_buffer_cpumask);
499 * Allow iucv interrupts on all cpus.
501 static void iucv_setmask_mp(void)
506 for_each_online_cpu(cpu)
507 /* Enable all cpus with a declared buffer. */
508 if (cpumask_test_cpu(cpu, &iucv_buffer_cpumask) &&
509 !cpumask_test_cpu(cpu, &iucv_irq_cpumask))
510 smp_call_function_single(cpu, iucv_allow_cpu,
518 * Allow iucv interrupts on a single cpu.
520 static void iucv_setmask_up(void)
525 /* Disable all cpu but the first in cpu_irq_cpumask. */
526 cpumask_copy(&cpumask, &iucv_irq_cpumask);
527 cpumask_clear_cpu(cpumask_first(&iucv_irq_cpumask), &cpumask);
528 for_each_cpu(cpu, &cpumask)
529 smp_call_function_single(cpu, iucv_block_cpu, NULL, 1);
535 * This function makes iucv ready for use. It allocates the pathid
536 * table, declares an iucv interrupt buffer and enables the iucv
537 * interrupts. Called when the first user has registered an iucv
540 static int iucv_enable(void)
547 alloc_size = iucv_max_pathid * sizeof(struct iucv_path);
548 iucv_path_table = kzalloc(alloc_size, GFP_KERNEL);
549 if (!iucv_path_table)
551 /* Declare per cpu buffers. */
553 for_each_online_cpu(cpu)
554 smp_call_function_single(cpu, iucv_declare_cpu, NULL, 1);
555 if (cpumask_empty(&iucv_buffer_cpumask))
556 /* No cpu could declare an iucv buffer. */
561 kfree(iucv_path_table);
562 iucv_path_table = NULL;
570 * This function shuts down iucv. It disables iucv interrupts, retrieves
571 * the iucv interrupt buffer and frees the pathid table. Called after the
572 * last user unregister its iucv handler.
574 static void iucv_disable(void)
577 on_each_cpu(iucv_retrieve_cpu, NULL, 1);
578 kfree(iucv_path_table);
579 iucv_path_table = NULL;
583 static int iucv_cpu_dead(unsigned int cpu)
585 kfree(iucv_param_irq[cpu]);
586 iucv_param_irq[cpu] = NULL;
587 kfree(iucv_param[cpu]);
588 iucv_param[cpu] = NULL;
589 kfree(iucv_irq_data[cpu]);
590 iucv_irq_data[cpu] = NULL;
594 static int iucv_cpu_prepare(unsigned int cpu)
596 /* Note: GFP_DMA used to get memory below 2G */
597 iucv_irq_data[cpu] = kmalloc_node(sizeof(struct iucv_irq_data),
598 GFP_KERNEL|GFP_DMA, cpu_to_node(cpu));
599 if (!iucv_irq_data[cpu])
602 /* Allocate parameter blocks. */
603 iucv_param[cpu] = kmalloc_node(sizeof(union iucv_param),
604 GFP_KERNEL|GFP_DMA, cpu_to_node(cpu));
605 if (!iucv_param[cpu])
608 iucv_param_irq[cpu] = kmalloc_node(sizeof(union iucv_param),
609 GFP_KERNEL|GFP_DMA, cpu_to_node(cpu));
610 if (!iucv_param_irq[cpu])
620 static int iucv_cpu_online(unsigned int cpu)
622 if (!iucv_path_table)
624 iucv_declare_cpu(NULL);
628 static int iucv_cpu_down_prep(unsigned int cpu)
632 if (!iucv_path_table)
635 cpumask_copy(&cpumask, &iucv_buffer_cpumask);
636 cpumask_clear_cpu(cpu, &cpumask);
637 if (cpumask_empty(&cpumask))
638 /* Can't offline last IUCV enabled cpu. */
641 iucv_retrieve_cpu(NULL);
642 if (!cpumask_empty(&iucv_irq_cpumask))
644 smp_call_function_single(cpumask_first(&iucv_buffer_cpumask),
645 iucv_allow_cpu, NULL, 1);
651 * @pathid: path identification number.
652 * @userdata: 16-bytes of user data.
654 * Sever an iucv path to free up the pathid. Used internally.
656 static int iucv_sever_pathid(u16 pathid, u8 *userdata)
658 union iucv_param *parm;
660 parm = iucv_param_irq[smp_processor_id()];
661 memset(parm, 0, sizeof(union iucv_param));
663 memcpy(parm->ctrl.ipuser, userdata, sizeof(parm->ctrl.ipuser));
664 parm->ctrl.ippathid = pathid;
665 return iucv_call_b2f0(IUCV_SEVER, parm);
669 * __iucv_cleanup_queue
670 * @dummy: unused dummy argument
672 * Nop function called via smp_call_function to force work items from
673 * pending external iucv interrupts to the work queue.
675 static void __iucv_cleanup_queue(void *dummy)
682 * Function called after a path has been severed to find all remaining
683 * work items for the now stale pathid. The caller needs to hold the
686 static void iucv_cleanup_queue(void)
688 struct iucv_irq_list *p, *n;
691 * When a path is severed, the pathid can be reused immediately
692 * on a iucv connect or a connection pending interrupt. Remove
693 * all entries from the task queue that refer to a stale pathid
694 * (iucv_path_table[ix] == NULL). Only then do the iucv connect
695 * or deliver the connection pending interrupt. To get all the
696 * pending interrupts force them to the work queue by calling
697 * an empty function on all cpus.
699 smp_call_function(__iucv_cleanup_queue, NULL, 1);
700 spin_lock_irq(&iucv_queue_lock);
701 list_for_each_entry_safe(p, n, &iucv_task_queue, list) {
702 /* Remove stale work items from the task queue. */
703 if (iucv_path_table[p->data.ippathid] == NULL) {
708 spin_unlock_irq(&iucv_queue_lock);
713 * @handler: address of iucv handler structure
714 * @smp: != 0 indicates that the handler can deal with out of order messages
716 * Registers a driver with IUCV.
718 * Returns 0 on success, -ENOMEM if the memory allocation for the pathid
719 * table failed, or -EIO if IUCV_DECLARE_BUFFER failed on all cpus.
721 int iucv_register(struct iucv_handler *handler, int smp)
727 mutex_lock(&iucv_register_mutex);
729 iucv_nonsmp_handler++;
730 if (list_empty(&iucv_handler_list)) {
734 } else if (!smp && iucv_nonsmp_handler == 1)
736 INIT_LIST_HEAD(&handler->paths);
738 spin_lock_bh(&iucv_table_lock);
739 list_add_tail(&handler->list, &iucv_handler_list);
740 spin_unlock_bh(&iucv_table_lock);
743 mutex_unlock(&iucv_register_mutex);
746 EXPORT_SYMBOL(iucv_register);
750 * @handler: address of iucv handler structure
751 * @smp: != 0 indicates that the handler can deal with out of order messages
753 * Unregister driver from IUCV.
755 void iucv_unregister(struct iucv_handler *handler, int smp)
757 struct iucv_path *p, *n;
759 mutex_lock(&iucv_register_mutex);
760 spin_lock_bh(&iucv_table_lock);
761 /* Remove handler from the iucv_handler_list. */
762 list_del_init(&handler->list);
763 /* Sever all pathids still referring to the handler. */
764 list_for_each_entry_safe(p, n, &handler->paths, list) {
765 iucv_sever_pathid(p->pathid, NULL);
766 iucv_path_table[p->pathid] = NULL;
770 spin_unlock_bh(&iucv_table_lock);
772 iucv_nonsmp_handler--;
773 if (list_empty(&iucv_handler_list))
775 else if (!smp && iucv_nonsmp_handler == 0)
777 mutex_unlock(&iucv_register_mutex);
779 EXPORT_SYMBOL(iucv_unregister);
781 static int iucv_reboot_event(struct notifier_block *this,
782 unsigned long event, void *ptr)
786 if (cpumask_empty(&iucv_irq_cpumask))
790 on_each_cpu_mask(&iucv_irq_cpumask, iucv_block_cpu, NULL, 1);
792 for (i = 0; i < iucv_max_pathid; i++) {
793 if (iucv_path_table[i])
794 iucv_sever_pathid(i, NULL);
802 static struct notifier_block iucv_reboot_notifier = {
803 .notifier_call = iucv_reboot_event,
808 * @path: address of iucv path structure
809 * @handler: address of iucv handler structure
810 * @userdata: 16 bytes of data reflected to the communication partner
811 * @private: private data passed to interrupt handlers for this path
813 * This function is issued after the user received a connection pending
814 * external interrupt and now wishes to complete the IUCV communication path.
816 * Returns the result of the CP IUCV call.
818 int iucv_path_accept(struct iucv_path *path, struct iucv_handler *handler,
819 u8 *userdata, void *private)
821 union iucv_param *parm;
825 if (cpumask_empty(&iucv_buffer_cpumask)) {
829 /* Prepare parameter block. */
830 parm = iucv_param[smp_processor_id()];
831 memset(parm, 0, sizeof(union iucv_param));
832 parm->ctrl.ippathid = path->pathid;
833 parm->ctrl.ipmsglim = path->msglim;
835 memcpy(parm->ctrl.ipuser, userdata, sizeof(parm->ctrl.ipuser));
836 parm->ctrl.ipflags1 = path->flags;
838 rc = iucv_call_b2f0(IUCV_ACCEPT, parm);
840 path->private = private;
841 path->msglim = parm->ctrl.ipmsglim;
842 path->flags = parm->ctrl.ipflags1;
848 EXPORT_SYMBOL(iucv_path_accept);
852 * @path: address of iucv path structure
853 * @handler: address of iucv handler structure
854 * @userid: 8-byte user identification
855 * @system: 8-byte target system identification
856 * @userdata: 16 bytes of data reflected to the communication partner
857 * @private: private data passed to interrupt handlers for this path
859 * This function establishes an IUCV path. Although the connect may complete
860 * successfully, you are not able to use the path until you receive an IUCV
861 * Connection Complete external interrupt.
863 * Returns the result of the CP IUCV call.
865 int iucv_path_connect(struct iucv_path *path, struct iucv_handler *handler,
866 u8 *userid, u8 *system, u8 *userdata,
869 union iucv_param *parm;
872 spin_lock_bh(&iucv_table_lock);
873 iucv_cleanup_queue();
874 if (cpumask_empty(&iucv_buffer_cpumask)) {
878 parm = iucv_param[smp_processor_id()];
879 memset(parm, 0, sizeof(union iucv_param));
880 parm->ctrl.ipmsglim = path->msglim;
881 parm->ctrl.ipflags1 = path->flags;
883 memcpy(parm->ctrl.ipvmid, userid, sizeof(parm->ctrl.ipvmid));
884 ASCEBC(parm->ctrl.ipvmid, sizeof(parm->ctrl.ipvmid));
885 EBC_TOUPPER(parm->ctrl.ipvmid, sizeof(parm->ctrl.ipvmid));
888 memcpy(parm->ctrl.iptarget, system,
889 sizeof(parm->ctrl.iptarget));
890 ASCEBC(parm->ctrl.iptarget, sizeof(parm->ctrl.iptarget));
891 EBC_TOUPPER(parm->ctrl.iptarget, sizeof(parm->ctrl.iptarget));
894 memcpy(parm->ctrl.ipuser, userdata, sizeof(parm->ctrl.ipuser));
896 rc = iucv_call_b2f0(IUCV_CONNECT, parm);
898 if (parm->ctrl.ippathid < iucv_max_pathid) {
899 path->pathid = parm->ctrl.ippathid;
900 path->msglim = parm->ctrl.ipmsglim;
901 path->flags = parm->ctrl.ipflags1;
902 path->handler = handler;
903 path->private = private;
904 list_add_tail(&path->list, &handler->paths);
905 iucv_path_table[path->pathid] = path;
907 iucv_sever_pathid(parm->ctrl.ippathid,
913 spin_unlock_bh(&iucv_table_lock);
916 EXPORT_SYMBOL(iucv_path_connect);
920 * @path: address of iucv path structure
921 * @userdata: 16 bytes of data reflected to the communication partner
923 * This function temporarily suspends incoming messages on an IUCV path.
924 * You can later reactivate the path by invoking the iucv_resume function.
926 * Returns the result from the CP IUCV call.
928 int iucv_path_quiesce(struct iucv_path *path, u8 *userdata)
930 union iucv_param *parm;
934 if (cpumask_empty(&iucv_buffer_cpumask)) {
938 parm = iucv_param[smp_processor_id()];
939 memset(parm, 0, sizeof(union iucv_param));
941 memcpy(parm->ctrl.ipuser, userdata, sizeof(parm->ctrl.ipuser));
942 parm->ctrl.ippathid = path->pathid;
943 rc = iucv_call_b2f0(IUCV_QUIESCE, parm);
948 EXPORT_SYMBOL(iucv_path_quiesce);
952 * @path: address of iucv path structure
953 * @userdata: 16 bytes of data reflected to the communication partner
955 * This function resumes incoming messages on an IUCV path that has
956 * been stopped with iucv_path_quiesce.
958 * Returns the result from the CP IUCV call.
960 int iucv_path_resume(struct iucv_path *path, u8 *userdata)
962 union iucv_param *parm;
966 if (cpumask_empty(&iucv_buffer_cpumask)) {
970 parm = iucv_param[smp_processor_id()];
971 memset(parm, 0, sizeof(union iucv_param));
973 memcpy(parm->ctrl.ipuser, userdata, sizeof(parm->ctrl.ipuser));
974 parm->ctrl.ippathid = path->pathid;
975 rc = iucv_call_b2f0(IUCV_RESUME, parm);
983 * @path: address of iucv path structure
984 * @userdata: 16 bytes of data reflected to the communication partner
986 * This function terminates an IUCV path.
988 * Returns the result from the CP IUCV call.
990 int iucv_path_sever(struct iucv_path *path, u8 *userdata)
995 if (cpumask_empty(&iucv_buffer_cpumask)) {
999 if (iucv_active_cpu != smp_processor_id())
1000 spin_lock_bh(&iucv_table_lock);
1001 rc = iucv_sever_pathid(path->pathid, userdata);
1002 iucv_path_table[path->pathid] = NULL;
1003 list_del_init(&path->list);
1004 if (iucv_active_cpu != smp_processor_id())
1005 spin_unlock_bh(&iucv_table_lock);
1010 EXPORT_SYMBOL(iucv_path_sever);
1013 * iucv_message_purge
1014 * @path: address of iucv path structure
1015 * @msg: address of iucv msg structure
1016 * @srccls: source class of message
1018 * Cancels a message you have sent.
1020 * Returns the result from the CP IUCV call.
1022 int iucv_message_purge(struct iucv_path *path, struct iucv_message *msg,
1025 union iucv_param *parm;
1029 if (cpumask_empty(&iucv_buffer_cpumask)) {
1033 parm = iucv_param[smp_processor_id()];
1034 memset(parm, 0, sizeof(union iucv_param));
1035 parm->purge.ippathid = path->pathid;
1036 parm->purge.ipmsgid = msg->id;
1037 parm->purge.ipsrccls = srccls;
1038 parm->purge.ipflags1 = IUCV_IPSRCCLS | IUCV_IPFGMID | IUCV_IPFGPID;
1039 rc = iucv_call_b2f0(IUCV_PURGE, parm);
1041 msg->audit = (*(u32 *) &parm->purge.ipaudit) >> 8;
1042 msg->tag = parm->purge.ipmsgtag;
1048 EXPORT_SYMBOL(iucv_message_purge);
1051 * iucv_message_receive_iprmdata
1052 * @path: address of iucv path structure
1053 * @msg: address of iucv msg structure
1054 * @flags: how the message is received (IUCV_IPBUFLST)
1055 * @buffer: address of data buffer or address of struct iucv_array
1056 * @size: length of data buffer
1059 * Internal function used by iucv_message_receive and __iucv_message_receive
1060 * to receive RMDATA data stored in struct iucv_message.
1062 static int iucv_message_receive_iprmdata(struct iucv_path *path,
1063 struct iucv_message *msg,
1064 u8 flags, void *buffer,
1065 size_t size, size_t *residual)
1067 struct iucv_array *array;
1072 * Message is 8 bytes long and has been stored to the
1073 * message descriptor itself.
1076 *residual = abs(size - 8);
1078 if (flags & IUCV_IPBUFLST) {
1079 /* Copy to struct iucv_array. */
1080 size = (size < 8) ? size : 8;
1081 for (array = buffer; size > 0; array++) {
1082 copy = min_t(size_t, size, array->length);
1083 memcpy((u8 *)(addr_t) array->address,
1089 /* Copy to direct buffer. */
1090 memcpy(buffer, rmmsg, min_t(size_t, size, 8));
1096 * __iucv_message_receive
1097 * @path: address of iucv path structure
1098 * @msg: address of iucv msg structure
1099 * @flags: how the message is received (IUCV_IPBUFLST)
1100 * @buffer: address of data buffer or address of struct iucv_array
1101 * @size: length of data buffer
1104 * This function receives messages that are being sent to you over
1105 * established paths. This function will deal with RMDATA messages
1106 * embedded in struct iucv_message as well.
1108 * Locking: no locking
1110 * Returns the result from the CP IUCV call.
1112 int __iucv_message_receive(struct iucv_path *path, struct iucv_message *msg,
1113 u8 flags, void *buffer, size_t size, size_t *residual)
1115 union iucv_param *parm;
1118 if (msg->flags & IUCV_IPRMDATA)
1119 return iucv_message_receive_iprmdata(path, msg, flags,
1120 buffer, size, residual);
1121 if (cpumask_empty(&iucv_buffer_cpumask))
1124 parm = iucv_param[smp_processor_id()];
1125 memset(parm, 0, sizeof(union iucv_param));
1126 parm->db.ipbfadr1 = (u32)(addr_t) buffer;
1127 parm->db.ipbfln1f = (u32) size;
1128 parm->db.ipmsgid = msg->id;
1129 parm->db.ippathid = path->pathid;
1130 parm->db.iptrgcls = msg->class;
1131 parm->db.ipflags1 = (flags | IUCV_IPFGPID |
1132 IUCV_IPFGMID | IUCV_IPTRGCLS);
1133 rc = iucv_call_b2f0(IUCV_RECEIVE, parm);
1134 if (!rc || rc == 5) {
1135 msg->flags = parm->db.ipflags1;
1137 *residual = parm->db.ipbfln1f;
1141 EXPORT_SYMBOL(__iucv_message_receive);
1144 * iucv_message_receive
1145 * @path: address of iucv path structure
1146 * @msg: address of iucv msg structure
1147 * @flags: how the message is received (IUCV_IPBUFLST)
1148 * @buffer: address of data buffer or address of struct iucv_array
1149 * @size: length of data buffer
1152 * This function receives messages that are being sent to you over
1153 * established paths. This function will deal with RMDATA messages
1154 * embedded in struct iucv_message as well.
1156 * Locking: local_bh_enable/local_bh_disable
1158 * Returns the result from the CP IUCV call.
1160 int iucv_message_receive(struct iucv_path *path, struct iucv_message *msg,
1161 u8 flags, void *buffer, size_t size, size_t *residual)
1165 if (msg->flags & IUCV_IPRMDATA)
1166 return iucv_message_receive_iprmdata(path, msg, flags,
1167 buffer, size, residual);
1169 rc = __iucv_message_receive(path, msg, flags, buffer, size, residual);
1173 EXPORT_SYMBOL(iucv_message_receive);
1176 * iucv_message_reject
1177 * @path: address of iucv path structure
1178 * @msg: address of iucv msg structure
1180 * The reject function refuses a specified message. Between the time you
1181 * are notified of a message and the time that you complete the message,
1182 * the message may be rejected.
1184 * Returns the result from the CP IUCV call.
1186 int iucv_message_reject(struct iucv_path *path, struct iucv_message *msg)
1188 union iucv_param *parm;
1192 if (cpumask_empty(&iucv_buffer_cpumask)) {
1196 parm = iucv_param[smp_processor_id()];
1197 memset(parm, 0, sizeof(union iucv_param));
1198 parm->db.ippathid = path->pathid;
1199 parm->db.ipmsgid = msg->id;
1200 parm->db.iptrgcls = msg->class;
1201 parm->db.ipflags1 = (IUCV_IPTRGCLS | IUCV_IPFGMID | IUCV_IPFGPID);
1202 rc = iucv_call_b2f0(IUCV_REJECT, parm);
1207 EXPORT_SYMBOL(iucv_message_reject);
1210 * iucv_message_reply
1211 * @path: address of iucv path structure
1212 * @msg: address of iucv msg structure
1213 * @flags: how the reply is sent (IUCV_IPRMDATA, IUCV_IPPRTY, IUCV_IPBUFLST)
1214 * @reply: address of reply data buffer or address of struct iucv_array
1215 * @size: length of reply data buffer
1217 * This function responds to the two-way messages that you receive. You
1218 * must identify completely the message to which you wish to reply. ie,
1219 * pathid, msgid, and trgcls. Prmmsg signifies the data is moved into
1220 * the parameter list.
1222 * Returns the result from the CP IUCV call.
1224 int iucv_message_reply(struct iucv_path *path, struct iucv_message *msg,
1225 u8 flags, void *reply, size_t size)
1227 union iucv_param *parm;
1231 if (cpumask_empty(&iucv_buffer_cpumask)) {
1235 parm = iucv_param[smp_processor_id()];
1236 memset(parm, 0, sizeof(union iucv_param));
1237 if (flags & IUCV_IPRMDATA) {
1238 parm->dpl.ippathid = path->pathid;
1239 parm->dpl.ipflags1 = flags;
1240 parm->dpl.ipmsgid = msg->id;
1241 parm->dpl.iptrgcls = msg->class;
1242 memcpy(parm->dpl.iprmmsg, reply, min_t(size_t, size, 8));
1244 parm->db.ipbfadr1 = (u32)(addr_t) reply;
1245 parm->db.ipbfln1f = (u32) size;
1246 parm->db.ippathid = path->pathid;
1247 parm->db.ipflags1 = flags;
1248 parm->db.ipmsgid = msg->id;
1249 parm->db.iptrgcls = msg->class;
1251 rc = iucv_call_b2f0(IUCV_REPLY, parm);
1256 EXPORT_SYMBOL(iucv_message_reply);
1259 * __iucv_message_send
1260 * @path: address of iucv path structure
1261 * @msg: address of iucv msg structure
1262 * @flags: how the message is sent (IUCV_IPRMDATA, IUCV_IPPRTY, IUCV_IPBUFLST)
1263 * @srccls: source class of message
1264 * @buffer: address of send buffer or address of struct iucv_array
1265 * @size: length of send buffer
1267 * This function transmits data to another application. Data to be
1268 * transmitted is in a buffer and this is a one-way message and the
1269 * receiver will not reply to the message.
1271 * Locking: no locking
1273 * Returns the result from the CP IUCV call.
1275 int __iucv_message_send(struct iucv_path *path, struct iucv_message *msg,
1276 u8 flags, u32 srccls, void *buffer, size_t size)
1278 union iucv_param *parm;
1281 if (cpumask_empty(&iucv_buffer_cpumask)) {
1285 parm = iucv_param[smp_processor_id()];
1286 memset(parm, 0, sizeof(union iucv_param));
1287 if (flags & IUCV_IPRMDATA) {
1288 /* Message of 8 bytes can be placed into the parameter list. */
1289 parm->dpl.ippathid = path->pathid;
1290 parm->dpl.ipflags1 = flags | IUCV_IPNORPY;
1291 parm->dpl.iptrgcls = msg->class;
1292 parm->dpl.ipsrccls = srccls;
1293 parm->dpl.ipmsgtag = msg->tag;
1294 memcpy(parm->dpl.iprmmsg, buffer, 8);
1296 parm->db.ipbfadr1 = (u32)(addr_t) buffer;
1297 parm->db.ipbfln1f = (u32) size;
1298 parm->db.ippathid = path->pathid;
1299 parm->db.ipflags1 = flags | IUCV_IPNORPY;
1300 parm->db.iptrgcls = msg->class;
1301 parm->db.ipsrccls = srccls;
1302 parm->db.ipmsgtag = msg->tag;
1304 rc = iucv_call_b2f0(IUCV_SEND, parm);
1306 msg->id = parm->db.ipmsgid;
1310 EXPORT_SYMBOL(__iucv_message_send);
1314 * @path: address of iucv path structure
1315 * @msg: address of iucv msg structure
1316 * @flags: how the message is sent (IUCV_IPRMDATA, IUCV_IPPRTY, IUCV_IPBUFLST)
1317 * @srccls: source class of message
1318 * @buffer: address of send buffer or address of struct iucv_array
1319 * @size: length of send buffer
1321 * This function transmits data to another application. Data to be
1322 * transmitted is in a buffer and this is a one-way message and the
1323 * receiver will not reply to the message.
1325 * Locking: local_bh_enable/local_bh_disable
1327 * Returns the result from the CP IUCV call.
1329 int iucv_message_send(struct iucv_path *path, struct iucv_message *msg,
1330 u8 flags, u32 srccls, void *buffer, size_t size)
1335 rc = __iucv_message_send(path, msg, flags, srccls, buffer, size);
1339 EXPORT_SYMBOL(iucv_message_send);
1342 * iucv_message_send2way
1343 * @path: address of iucv path structure
1344 * @msg: address of iucv msg structure
1345 * @flags: how the message is sent and the reply is received
1346 * (IUCV_IPRMDATA, IUCV_IPBUFLST, IUCV_IPPRTY, IUCV_ANSLST)
1347 * @srccls: source class of message
1348 * @buffer: address of send buffer or address of struct iucv_array
1349 * @size: length of send buffer
1350 * @ansbuf: address of answer buffer or address of struct iucv_array
1351 * @asize: size of reply buffer
1353 * This function transmits data to another application. Data to be
1354 * transmitted is in a buffer. The receiver of the send is expected to
1355 * reply to the message and a buffer is provided into which IUCV moves
1356 * the reply to this message.
1358 * Returns the result from the CP IUCV call.
1360 int iucv_message_send2way(struct iucv_path *path, struct iucv_message *msg,
1361 u8 flags, u32 srccls, void *buffer, size_t size,
1362 void *answer, size_t asize, size_t *residual)
1364 union iucv_param *parm;
1368 if (cpumask_empty(&iucv_buffer_cpumask)) {
1372 parm = iucv_param[smp_processor_id()];
1373 memset(parm, 0, sizeof(union iucv_param));
1374 if (flags & IUCV_IPRMDATA) {
1375 parm->dpl.ippathid = path->pathid;
1376 parm->dpl.ipflags1 = path->flags; /* priority message */
1377 parm->dpl.iptrgcls = msg->class;
1378 parm->dpl.ipsrccls = srccls;
1379 parm->dpl.ipmsgtag = msg->tag;
1380 parm->dpl.ipbfadr2 = (u32)(addr_t) answer;
1381 parm->dpl.ipbfln2f = (u32) asize;
1382 memcpy(parm->dpl.iprmmsg, buffer, 8);
1384 parm->db.ippathid = path->pathid;
1385 parm->db.ipflags1 = path->flags; /* priority message */
1386 parm->db.iptrgcls = msg->class;
1387 parm->db.ipsrccls = srccls;
1388 parm->db.ipmsgtag = msg->tag;
1389 parm->db.ipbfadr1 = (u32)(addr_t) buffer;
1390 parm->db.ipbfln1f = (u32) size;
1391 parm->db.ipbfadr2 = (u32)(addr_t) answer;
1392 parm->db.ipbfln2f = (u32) asize;
1394 rc = iucv_call_b2f0(IUCV_SEND, parm);
1396 msg->id = parm->db.ipmsgid;
1401 EXPORT_SYMBOL(iucv_message_send2way);
1405 * @data: Pointer to external interrupt buffer
1407 * Process connection pending work item. Called from tasklet while holding
1410 struct iucv_path_pending {
1423 static void iucv_path_pending(struct iucv_irq_data *data)
1425 struct iucv_path_pending *ipp = (void *) data;
1426 struct iucv_handler *handler;
1427 struct iucv_path *path;
1430 BUG_ON(iucv_path_table[ipp->ippathid]);
1431 /* New pathid, handler found. Create a new path struct. */
1432 error = iucv_error_no_memory;
1433 path = iucv_path_alloc(ipp->ipmsglim, ipp->ipflags1, GFP_ATOMIC);
1436 path->pathid = ipp->ippathid;
1437 iucv_path_table[path->pathid] = path;
1438 EBCASC(ipp->ipvmid, 8);
1440 /* Call registered handler until one is found that wants the path. */
1441 list_for_each_entry(handler, &iucv_handler_list, list) {
1442 if (!handler->path_pending)
1445 * Add path to handler to allow a call to iucv_path_sever
1446 * inside the path_pending function. If the handler returns
1447 * an error remove the path from the handler again.
1449 list_add(&path->list, &handler->paths);
1450 path->handler = handler;
1451 if (!handler->path_pending(path, ipp->ipvmid, ipp->ipuser))
1453 list_del(&path->list);
1454 path->handler = NULL;
1456 /* No handler wanted the path. */
1457 iucv_path_table[path->pathid] = NULL;
1458 iucv_path_free(path);
1459 error = iucv_error_no_listener;
1461 iucv_sever_pathid(ipp->ippathid, error);
1465 * iucv_path_complete
1466 * @data: Pointer to external interrupt buffer
1468 * Process connection complete work item. Called from tasklet while holding
1471 struct iucv_path_complete {
1484 static void iucv_path_complete(struct iucv_irq_data *data)
1486 struct iucv_path_complete *ipc = (void *) data;
1487 struct iucv_path *path = iucv_path_table[ipc->ippathid];
1490 path->flags = ipc->ipflags1;
1491 if (path && path->handler && path->handler->path_complete)
1492 path->handler->path_complete(path, ipc->ipuser);
1497 * @data: Pointer to external interrupt buffer
1499 * Process connection severed work item. Called from tasklet while holding
1502 struct iucv_path_severed {
1514 static void iucv_path_severed(struct iucv_irq_data *data)
1516 struct iucv_path_severed *ips = (void *) data;
1517 struct iucv_path *path = iucv_path_table[ips->ippathid];
1519 if (!path || !path->handler) /* Already severed */
1521 if (path->handler->path_severed)
1522 path->handler->path_severed(path, ips->ipuser);
1524 iucv_sever_pathid(path->pathid, NULL);
1525 iucv_path_table[path->pathid] = NULL;
1526 list_del(&path->list);
1527 iucv_path_free(path);
1532 * iucv_path_quiesced
1533 * @data: Pointer to external interrupt buffer
1535 * Process connection quiesced work item. Called from tasklet while holding
1538 struct iucv_path_quiesced {
1550 static void iucv_path_quiesced(struct iucv_irq_data *data)
1552 struct iucv_path_quiesced *ipq = (void *) data;
1553 struct iucv_path *path = iucv_path_table[ipq->ippathid];
1555 if (path && path->handler && path->handler->path_quiesced)
1556 path->handler->path_quiesced(path, ipq->ipuser);
1561 * @data: Pointer to external interrupt buffer
1563 * Process connection resumed work item. Called from tasklet while holding
1566 struct iucv_path_resumed {
1578 static void iucv_path_resumed(struct iucv_irq_data *data)
1580 struct iucv_path_resumed *ipr = (void *) data;
1581 struct iucv_path *path = iucv_path_table[ipr->ippathid];
1583 if (path && path->handler && path->handler->path_resumed)
1584 path->handler->path_resumed(path, ipr->ipuser);
1588 * iucv_message_complete
1589 * @data: Pointer to external interrupt buffer
1591 * Process message complete work item. Called from tasklet while holding
1594 struct iucv_message_complete {
1609 static void iucv_message_complete(struct iucv_irq_data *data)
1611 struct iucv_message_complete *imc = (void *) data;
1612 struct iucv_path *path = iucv_path_table[imc->ippathid];
1613 struct iucv_message msg;
1615 if (path && path->handler && path->handler->message_complete) {
1616 msg.flags = imc->ipflags1;
1617 msg.id = imc->ipmsgid;
1618 msg.audit = imc->ipaudit;
1619 memcpy(msg.rmmsg, imc->iprmmsg, 8);
1620 msg.class = imc->ipsrccls;
1621 msg.tag = imc->ipmsgtag;
1622 msg.length = imc->ipbfln2f;
1623 path->handler->message_complete(path, &msg);
1628 * iucv_message_pending
1629 * @data: Pointer to external interrupt buffer
1631 * Process message pending work item. Called from tasklet while holding
1634 struct iucv_message_pending {
1656 static void iucv_message_pending(struct iucv_irq_data *data)
1658 struct iucv_message_pending *imp = (void *) data;
1659 struct iucv_path *path = iucv_path_table[imp->ippathid];
1660 struct iucv_message msg;
1662 if (path && path->handler && path->handler->message_pending) {
1663 msg.flags = imp->ipflags1;
1664 msg.id = imp->ipmsgid;
1665 msg.class = imp->iptrgcls;
1666 if (imp->ipflags1 & IUCV_IPRMDATA) {
1667 memcpy(msg.rmmsg, &imp->rmmsg, 8);
1670 msg.length = imp->rmmsg.ln1msg2.ipbfln1f;
1671 msg.reply_size = imp->ipbfln2f;
1672 path->handler->message_pending(path, &msg);
1679 * This tasklet loops over the queue of irq buffers created by
1680 * iucv_external_interrupt, calls the appropriate action handler
1681 * and then frees the buffer.
1683 static void iucv_tasklet_fn(unsigned long ignored)
1685 typedef void iucv_irq_fn(struct iucv_irq_data *);
1686 static iucv_irq_fn *irq_fn[] = {
1687 [0x02] = iucv_path_complete,
1688 [0x03] = iucv_path_severed,
1689 [0x04] = iucv_path_quiesced,
1690 [0x05] = iucv_path_resumed,
1691 [0x06] = iucv_message_complete,
1692 [0x07] = iucv_message_complete,
1693 [0x08] = iucv_message_pending,
1694 [0x09] = iucv_message_pending,
1696 LIST_HEAD(task_queue);
1697 struct iucv_irq_list *p, *n;
1699 /* Serialize tasklet, iucv_path_sever and iucv_path_connect. */
1700 if (!spin_trylock(&iucv_table_lock)) {
1701 tasklet_schedule(&iucv_tasklet);
1704 iucv_active_cpu = smp_processor_id();
1706 spin_lock_irq(&iucv_queue_lock);
1707 list_splice_init(&iucv_task_queue, &task_queue);
1708 spin_unlock_irq(&iucv_queue_lock);
1710 list_for_each_entry_safe(p, n, &task_queue, list) {
1711 list_del_init(&p->list);
1712 irq_fn[p->data.iptype](&p->data);
1716 iucv_active_cpu = -1;
1717 spin_unlock(&iucv_table_lock);
1723 * This work function loops over the queue of path pending irq blocks
1724 * created by iucv_external_interrupt, calls the appropriate action
1725 * handler and then frees the buffer.
1727 static void iucv_work_fn(struct work_struct *work)
1729 LIST_HEAD(work_queue);
1730 struct iucv_irq_list *p, *n;
1732 /* Serialize tasklet, iucv_path_sever and iucv_path_connect. */
1733 spin_lock_bh(&iucv_table_lock);
1734 iucv_active_cpu = smp_processor_id();
1736 spin_lock_irq(&iucv_queue_lock);
1737 list_splice_init(&iucv_work_queue, &work_queue);
1738 spin_unlock_irq(&iucv_queue_lock);
1740 iucv_cleanup_queue();
1741 list_for_each_entry_safe(p, n, &work_queue, list) {
1742 list_del_init(&p->list);
1743 iucv_path_pending(&p->data);
1747 iucv_active_cpu = -1;
1748 spin_unlock_bh(&iucv_table_lock);
1752 * iucv_external_interrupt
1755 * Handles external interrupts coming in from CP.
1756 * Places the interrupt buffer on a queue and schedules iucv_tasklet_fn().
1758 static void iucv_external_interrupt(struct ext_code ext_code,
1759 unsigned int param32, unsigned long param64)
1761 struct iucv_irq_data *p;
1762 struct iucv_irq_list *work;
1764 inc_irq_stat(IRQEXT_IUC);
1765 p = iucv_irq_data[smp_processor_id()];
1766 if (p->ippathid >= iucv_max_pathid) {
1767 WARN_ON(p->ippathid >= iucv_max_pathid);
1768 iucv_sever_pathid(p->ippathid, iucv_error_no_listener);
1771 BUG_ON(p->iptype < 0x01 || p->iptype > 0x09);
1772 work = kmalloc(sizeof(struct iucv_irq_list), GFP_ATOMIC);
1774 pr_warn("iucv_external_interrupt: out of memory\n");
1777 memcpy(&work->data, p, sizeof(work->data));
1778 spin_lock(&iucv_queue_lock);
1779 if (p->iptype == 0x01) {
1780 /* Path pending interrupt. */
1781 list_add_tail(&work->list, &iucv_work_queue);
1782 schedule_work(&iucv_work);
1784 /* The other interrupts. */
1785 list_add_tail(&work->list, &iucv_task_queue);
1786 tasklet_schedule(&iucv_tasklet);
1788 spin_unlock(&iucv_queue_lock);
1791 struct iucv_interface iucv_if = {
1792 .message_receive = iucv_message_receive,
1793 .__message_receive = __iucv_message_receive,
1794 .message_reply = iucv_message_reply,
1795 .message_reject = iucv_message_reject,
1796 .message_send = iucv_message_send,
1797 .__message_send = __iucv_message_send,
1798 .message_send2way = iucv_message_send2way,
1799 .message_purge = iucv_message_purge,
1800 .path_accept = iucv_path_accept,
1801 .path_connect = iucv_path_connect,
1802 .path_quiesce = iucv_path_quiesce,
1803 .path_resume = iucv_path_resume,
1804 .path_sever = iucv_path_sever,
1805 .iucv_register = iucv_register,
1806 .iucv_unregister = iucv_unregister,
1810 EXPORT_SYMBOL(iucv_if);
1812 static enum cpuhp_state iucv_online;
1816 * Allocates and initializes various data structures.
1818 static int __init iucv_init(void)
1822 if (!MACHINE_IS_VM) {
1823 rc = -EPROTONOSUPPORT;
1827 rc = iucv_query_maxconn();
1830 rc = register_external_irq(EXT_IRQ_IUCV, iucv_external_interrupt);
1833 iucv_root = root_device_register("iucv");
1834 if (IS_ERR(iucv_root)) {
1835 rc = PTR_ERR(iucv_root);
1839 rc = cpuhp_setup_state(CPUHP_NET_IUCV_PREPARE, "net/iucv:prepare",
1840 iucv_cpu_prepare, iucv_cpu_dead);
1843 rc = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "net/iucv:online",
1844 iucv_cpu_online, iucv_cpu_down_prep);
1849 rc = register_reboot_notifier(&iucv_reboot_notifier);
1852 ASCEBC(iucv_error_no_listener, 16);
1853 ASCEBC(iucv_error_no_memory, 16);
1854 ASCEBC(iucv_error_pathid, 16);
1856 rc = bus_register(&iucv_bus);
1859 iucv_if.root = iucv_root;
1860 iucv_if.bus = &iucv_bus;
1864 unregister_reboot_notifier(&iucv_reboot_notifier);
1866 cpuhp_remove_state(iucv_online);
1868 cpuhp_remove_state(CPUHP_NET_IUCV_PREPARE);
1870 root_device_unregister(iucv_root);
1872 unregister_external_irq(EXT_IRQ_IUCV, iucv_external_interrupt);
1874 ctl_clear_bit(0, 1);
1882 * Frees everything allocated from iucv_init.
1884 static void __exit iucv_exit(void)
1886 struct iucv_irq_list *p, *n;
1888 spin_lock_irq(&iucv_queue_lock);
1889 list_for_each_entry_safe(p, n, &iucv_task_queue, list)
1891 list_for_each_entry_safe(p, n, &iucv_work_queue, list)
1893 spin_unlock_irq(&iucv_queue_lock);
1894 unregister_reboot_notifier(&iucv_reboot_notifier);
1896 cpuhp_remove_state_nocalls(iucv_online);
1897 cpuhp_remove_state(CPUHP_NET_IUCV_PREPARE);
1898 root_device_unregister(iucv_root);
1899 bus_unregister(&iucv_bus);
1900 unregister_external_irq(EXT_IRQ_IUCV, iucv_external_interrupt);
1903 subsys_initcall(iucv_init);
1904 module_exit(iucv_exit);
1906 MODULE_AUTHOR("(C) 2001 IBM Corp. by Fritz Elfert (felfert@millenux.com)");
1907 MODULE_DESCRIPTION("Linux for S/390 IUCV lowlevel driver");
1908 MODULE_LICENSE("GPL");