1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * IUCV base infrastructure.
5 * Copyright IBM Corp. 2001, 2009
11 * 2Gb awareness and general cleanup:
13 * Rewritten for af_iucv:
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 const struct bus_type iucv_bus = {
72 .match = iucv_bus_match,
74 EXPORT_SYMBOL(iucv_bus);
76 static struct device *iucv_root;
78 static void iucv_release_device(struct device *device)
83 struct device *iucv_alloc_device(const struct attribute_group **attrs,
84 struct device_driver *driver,
85 void *priv, const char *fmt, ...)
91 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
95 rc = dev_set_name(dev, fmt, vargs);
100 dev->parent = iucv_root;
101 dev->driver = driver;
103 dev->release = iucv_release_device;
104 dev_set_drvdata(dev, priv);
111 EXPORT_SYMBOL(iucv_alloc_device);
113 static int iucv_available;
115 /* General IUCV interrupt structure */
116 struct iucv_irq_data {
123 struct iucv_irq_list {
124 struct list_head list;
125 struct iucv_irq_data data;
128 static struct iucv_irq_data *iucv_irq_data[NR_CPUS];
129 static cpumask_t iucv_buffer_cpumask = { CPU_BITS_NONE };
130 static cpumask_t iucv_irq_cpumask = { CPU_BITS_NONE };
133 * Queue of interrupt buffers lock for delivery via the tasklet
134 * (fast but can't call smp_call_function).
136 static LIST_HEAD(iucv_task_queue);
139 * The tasklet for fast delivery of iucv interrupts.
141 static void iucv_tasklet_fn(unsigned long);
142 static DECLARE_TASKLET_OLD(iucv_tasklet, iucv_tasklet_fn);
145 * Queue of interrupt buffers for delivery via a work queue
146 * (slower but can call smp_call_function).
148 static LIST_HEAD(iucv_work_queue);
151 * The work element to deliver path pending interrupts.
153 static void iucv_work_fn(struct work_struct *work);
154 static DECLARE_WORK(iucv_work, iucv_work_fn);
157 * Spinlock protecting task and work queue.
159 static DEFINE_SPINLOCK(iucv_queue_lock);
161 enum iucv_command_codes {
163 IUCV_RETRIEVE_BUFFER = 2,
171 IUCV_DECLARE_BUFFER = 12,
176 IUCV_SETCONTROLMASK = 17,
180 * Error messages that are used with the iucv_sever function. They get
181 * converted to EBCDIC.
183 static char iucv_error_no_listener[16] = "NO LISTENER";
184 static char iucv_error_no_memory[16] = "NO MEMORY";
185 static char iucv_error_pathid[16] = "INVALID PATHID";
188 * iucv_handler_list: List of registered handlers.
190 static LIST_HEAD(iucv_handler_list);
193 * iucv_path_table: array of pointers to iucv_path structures.
195 static struct iucv_path **iucv_path_table;
196 static unsigned long iucv_max_pathid;
199 * iucv_lock: spinlock protecting iucv_handler_list and iucv_pathid_table
201 static DEFINE_SPINLOCK(iucv_table_lock);
204 * iucv_active_cpu: contains the number of the cpu executing the tasklet
205 * or the work handler. Needed for iucv_path_sever called from tasklet.
207 static int iucv_active_cpu = -1;
210 * Mutex and wait queue for iucv_register/iucv_unregister.
212 static DEFINE_MUTEX(iucv_register_mutex);
215 * Counter for number of non-smp capable handlers.
217 static int iucv_nonsmp_handler;
220 * IUCV control data structure. Used by iucv_path_accept, iucv_path_connect,
221 * iucv_path_quiesce and iucv_path_sever.
223 struct iucv_cmd_control {
232 } __attribute__ ((packed,aligned(8)));
235 * Data in parameter list iucv structure. Used by iucv_message_send,
236 * iucv_message_send2way and iucv_message_reply.
238 struct iucv_cmd_dpl {
250 } __attribute__ ((packed,aligned(8)));
253 * Data in buffer iucv structure. Used by iucv_message_receive,
254 * iucv_message_reject, iucv_message_send, iucv_message_send2way
255 * and iucv_declare_cpu.
270 } __attribute__ ((packed,aligned(8)));
273 * Purge message iucv structure. Used by iucv_message_purge.
275 struct iucv_cmd_purge {
286 } __attribute__ ((packed,aligned(8)));
289 * Set mask iucv structure. Used by iucv_enable_cpu.
291 struct iucv_cmd_set_mask {
296 } __attribute__ ((packed,aligned(8)));
299 struct iucv_cmd_control ctrl;
300 struct iucv_cmd_dpl dpl;
301 struct iucv_cmd_db db;
302 struct iucv_cmd_purge purge;
303 struct iucv_cmd_set_mask set_mask;
307 * Anchor for per-cpu IUCV command parameter block.
309 static union iucv_param *iucv_param[NR_CPUS];
310 static union iucv_param *iucv_param_irq[NR_CPUS];
314 * @command: identifier of IUCV call to CP.
315 * @parm: pointer to a struct iucv_parm block
317 * Calls CP to execute IUCV commands.
319 * Returns the result of the CP IUCV call.
321 static inline int __iucv_call_b2f0(int command, union iucv_param *parm)
323 unsigned long reg1 = virt_to_phys(parm);
329 " .long 0xb2f01000\n"
332 : [cc] "=&d" (cc), "+m" (*parm)
333 : [reg0] "d" ((unsigned long)command),
339 static inline int iucv_call_b2f0(int command, union iucv_param *parm)
343 ccode = __iucv_call_b2f0(command, parm);
344 return ccode == 1 ? parm->ctrl.iprcode : ccode;
350 * Determines the maximum number of connections that may be established.
352 * Returns the maximum number of connections or -EPERM is IUCV is not
355 static int __iucv_query_maxconn(void *param, unsigned long *max_pathid)
357 unsigned long reg1 = virt_to_phys(param);
363 " .long 0xb2f01000\n"
367 : [cc] "=&d" (cc), [reg1] "+&d" (reg1)
368 : [cmd] "K" (IUCV_QUERY)
374 static int iucv_query_maxconn(void)
376 unsigned long max_pathid;
380 param = kzalloc(sizeof(union iucv_param), GFP_KERNEL | GFP_DMA);
383 ccode = __iucv_query_maxconn(param, &max_pathid);
385 iucv_max_pathid = max_pathid;
387 return ccode ? -EPERM : 0;
394 * Allow iucv interrupts on this cpu.
396 static void iucv_allow_cpu(void *data)
398 int cpu = smp_processor_id();
399 union iucv_param *parm;
402 * Enable all iucv interrupts.
403 * ipmask contains bits for the different interrupts
404 * 0x80 - Flag to allow nonpriority message pending interrupts
405 * 0x40 - Flag to allow priority message pending interrupts
406 * 0x20 - Flag to allow nonpriority message completion interrupts
407 * 0x10 - Flag to allow priority message completion interrupts
408 * 0x08 - Flag to allow IUCV control interrupts
410 parm = iucv_param_irq[cpu];
411 memset(parm, 0, sizeof(union iucv_param));
412 parm->set_mask.ipmask = 0xf8;
413 iucv_call_b2f0(IUCV_SETMASK, parm);
416 * Enable all iucv control interrupts.
417 * ipmask contains bits for the different interrupts
418 * 0x80 - Flag to allow pending connections interrupts
419 * 0x40 - Flag to allow connection complete interrupts
420 * 0x20 - Flag to allow connection severed interrupts
421 * 0x10 - Flag to allow connection quiesced interrupts
422 * 0x08 - Flag to allow connection resumed interrupts
424 memset(parm, 0, sizeof(union iucv_param));
425 parm->set_mask.ipmask = 0xf8;
426 iucv_call_b2f0(IUCV_SETCONTROLMASK, parm);
427 /* Set indication that iucv interrupts are allowed for this cpu. */
428 cpumask_set_cpu(cpu, &iucv_irq_cpumask);
435 * Block iucv interrupts on this cpu.
437 static void iucv_block_cpu(void *data)
439 int cpu = smp_processor_id();
440 union iucv_param *parm;
442 /* Disable all iucv interrupts. */
443 parm = iucv_param_irq[cpu];
444 memset(parm, 0, sizeof(union iucv_param));
445 iucv_call_b2f0(IUCV_SETMASK, parm);
447 /* Clear indication that iucv interrupts are allowed for this cpu. */
448 cpumask_clear_cpu(cpu, &iucv_irq_cpumask);
455 * Declare a interrupt buffer on this cpu.
457 static void iucv_declare_cpu(void *data)
459 int cpu = smp_processor_id();
460 union iucv_param *parm;
463 if (cpumask_test_cpu(cpu, &iucv_buffer_cpumask))
466 /* Declare interrupt buffer. */
467 parm = iucv_param_irq[cpu];
468 memset(parm, 0, sizeof(union iucv_param));
469 parm->db.ipbfadr1 = virt_to_dma32(iucv_irq_data[cpu]);
470 rc = iucv_call_b2f0(IUCV_DECLARE_BUFFER, parm);
472 char *err = "Unknown";
475 err = "Directory error";
478 err = "Invalid length";
481 err = "Buffer already exists";
484 err = "Buffer overlap";
487 err = "Paging or storage error";
490 pr_warn("Defining an interrupt buffer on CPU %i failed with 0x%02x (%s)\n",
495 /* Set indication that an iucv buffer exists for this cpu. */
496 cpumask_set_cpu(cpu, &iucv_buffer_cpumask);
498 if (iucv_nonsmp_handler == 0 || cpumask_empty(&iucv_irq_cpumask))
499 /* Enable iucv interrupts on this cpu. */
500 iucv_allow_cpu(NULL);
502 /* Disable iucv interrupts on this cpu. */
503 iucv_block_cpu(NULL);
510 * Retrieve interrupt buffer on this cpu.
512 static void iucv_retrieve_cpu(void *data)
514 int cpu = smp_processor_id();
515 union iucv_param *parm;
517 if (!cpumask_test_cpu(cpu, &iucv_buffer_cpumask))
520 /* Block iucv interrupts. */
521 iucv_block_cpu(NULL);
523 /* Retrieve interrupt buffer. */
524 parm = iucv_param_irq[cpu];
525 iucv_call_b2f0(IUCV_RETRIEVE_BUFFER, parm);
527 /* Clear indication that an iucv buffer exists for this cpu. */
528 cpumask_clear_cpu(cpu, &iucv_buffer_cpumask);
534 * Allow iucv interrupts on all cpus.
536 static void iucv_setmask_mp(void)
541 for_each_online_cpu(cpu)
542 /* Enable all cpus with a declared buffer. */
543 if (cpumask_test_cpu(cpu, &iucv_buffer_cpumask) &&
544 !cpumask_test_cpu(cpu, &iucv_irq_cpumask))
545 smp_call_function_single(cpu, iucv_allow_cpu,
553 * Allow iucv interrupts on a single cpu.
555 static void iucv_setmask_up(void)
557 static cpumask_t cpumask;
560 /* Disable all cpu but the first in cpu_irq_cpumask. */
561 cpumask_copy(&cpumask, &iucv_irq_cpumask);
562 cpumask_clear_cpu(cpumask_first(&iucv_irq_cpumask), &cpumask);
563 for_each_cpu(cpu, &cpumask)
564 smp_call_function_single(cpu, iucv_block_cpu, NULL, 1);
570 * This function makes iucv ready for use. It allocates the pathid
571 * table, declares an iucv interrupt buffer and enables the iucv
572 * interrupts. Called when the first user has registered an iucv
575 static int iucv_enable(void)
582 alloc_size = iucv_max_pathid * sizeof(*iucv_path_table);
583 iucv_path_table = kzalloc(alloc_size, GFP_KERNEL);
584 if (!iucv_path_table)
586 /* Declare per cpu buffers. */
588 for_each_online_cpu(cpu)
589 smp_call_function_single(cpu, iucv_declare_cpu, NULL, 1);
590 if (cpumask_empty(&iucv_buffer_cpumask))
591 /* No cpu could declare an iucv buffer. */
596 kfree(iucv_path_table);
597 iucv_path_table = NULL;
605 * This function shuts down iucv. It disables iucv interrupts, retrieves
606 * the iucv interrupt buffer and frees the pathid table. Called after the
607 * last user unregister its iucv handler.
609 static void iucv_disable(void)
612 on_each_cpu(iucv_retrieve_cpu, NULL, 1);
613 kfree(iucv_path_table);
614 iucv_path_table = NULL;
618 static int iucv_cpu_dead(unsigned int cpu)
620 kfree(iucv_param_irq[cpu]);
621 iucv_param_irq[cpu] = NULL;
622 kfree(iucv_param[cpu]);
623 iucv_param[cpu] = NULL;
624 kfree(iucv_irq_data[cpu]);
625 iucv_irq_data[cpu] = NULL;
629 static int iucv_cpu_prepare(unsigned int cpu)
631 /* Note: GFP_DMA used to get memory below 2G */
632 iucv_irq_data[cpu] = kmalloc_node(sizeof(struct iucv_irq_data),
633 GFP_KERNEL|GFP_DMA, cpu_to_node(cpu));
634 if (!iucv_irq_data[cpu])
637 /* Allocate parameter blocks. */
638 iucv_param[cpu] = kmalloc_node(sizeof(union iucv_param),
639 GFP_KERNEL|GFP_DMA, cpu_to_node(cpu));
640 if (!iucv_param[cpu])
643 iucv_param_irq[cpu] = kmalloc_node(sizeof(union iucv_param),
644 GFP_KERNEL|GFP_DMA, cpu_to_node(cpu));
645 if (!iucv_param_irq[cpu])
655 static int iucv_cpu_online(unsigned int cpu)
657 if (!iucv_path_table)
659 iucv_declare_cpu(NULL);
663 static int iucv_cpu_down_prep(unsigned int cpu)
665 cpumask_var_t cpumask;
668 if (!iucv_path_table)
671 if (!alloc_cpumask_var(&cpumask, GFP_KERNEL))
674 cpumask_copy(cpumask, &iucv_buffer_cpumask);
675 cpumask_clear_cpu(cpu, cpumask);
676 if (cpumask_empty(cpumask)) {
677 /* Can't offline last IUCV enabled cpu. */
682 iucv_retrieve_cpu(NULL);
683 if (!cpumask_empty(&iucv_irq_cpumask))
686 smp_call_function_single(cpumask_first(&iucv_buffer_cpumask),
687 iucv_allow_cpu, NULL, 1);
690 free_cpumask_var(cpumask);
696 * @pathid: path identification number.
697 * @userdata: 16-bytes of user data.
699 * Sever an iucv path to free up the pathid. Used internally.
701 static int iucv_sever_pathid(u16 pathid, u8 *userdata)
703 union iucv_param *parm;
705 parm = iucv_param_irq[smp_processor_id()];
706 memset(parm, 0, sizeof(union iucv_param));
708 memcpy(parm->ctrl.ipuser, userdata, sizeof(parm->ctrl.ipuser));
709 parm->ctrl.ippathid = pathid;
710 return iucv_call_b2f0(IUCV_SEVER, parm);
714 * __iucv_cleanup_queue
715 * @dummy: unused dummy argument
717 * Nop function called via smp_call_function to force work items from
718 * pending external iucv interrupts to the work queue.
720 static void __iucv_cleanup_queue(void *dummy)
727 * Function called after a path has been severed to find all remaining
728 * work items for the now stale pathid. The caller needs to hold the
731 static void iucv_cleanup_queue(void)
733 struct iucv_irq_list *p, *n;
736 * When a path is severed, the pathid can be reused immediately
737 * on a iucv connect or a connection pending interrupt. Remove
738 * all entries from the task queue that refer to a stale pathid
739 * (iucv_path_table[ix] == NULL). Only then do the iucv connect
740 * or deliver the connection pending interrupt. To get all the
741 * pending interrupts force them to the work queue by calling
742 * an empty function on all cpus.
744 smp_call_function(__iucv_cleanup_queue, NULL, 1);
745 spin_lock_irq(&iucv_queue_lock);
746 list_for_each_entry_safe(p, n, &iucv_task_queue, list) {
747 /* Remove stale work items from the task queue. */
748 if (iucv_path_table[p->data.ippathid] == NULL) {
753 spin_unlock_irq(&iucv_queue_lock);
758 * @handler: address of iucv handler structure
759 * @smp: != 0 indicates that the handler can deal with out of order messages
761 * Registers a driver with IUCV.
763 * Returns 0 on success, -ENOMEM if the memory allocation for the pathid
764 * table failed, or -EIO if IUCV_DECLARE_BUFFER failed on all cpus.
766 int iucv_register(struct iucv_handler *handler, int smp)
772 mutex_lock(&iucv_register_mutex);
774 iucv_nonsmp_handler++;
775 if (list_empty(&iucv_handler_list)) {
779 } else if (!smp && iucv_nonsmp_handler == 1)
781 INIT_LIST_HEAD(&handler->paths);
783 spin_lock_bh(&iucv_table_lock);
784 list_add_tail(&handler->list, &iucv_handler_list);
785 spin_unlock_bh(&iucv_table_lock);
788 mutex_unlock(&iucv_register_mutex);
791 EXPORT_SYMBOL(iucv_register);
795 * @handler: address of iucv handler structure
796 * @smp: != 0 indicates that the handler can deal with out of order messages
798 * Unregister driver from IUCV.
800 void iucv_unregister(struct iucv_handler *handler, int smp)
802 struct iucv_path *p, *n;
804 mutex_lock(&iucv_register_mutex);
805 spin_lock_bh(&iucv_table_lock);
806 /* Remove handler from the iucv_handler_list. */
807 list_del_init(&handler->list);
808 /* Sever all pathids still referring to the handler. */
809 list_for_each_entry_safe(p, n, &handler->paths, list) {
810 iucv_sever_pathid(p->pathid, NULL);
811 iucv_path_table[p->pathid] = NULL;
815 spin_unlock_bh(&iucv_table_lock);
817 iucv_nonsmp_handler--;
818 if (list_empty(&iucv_handler_list))
820 else if (!smp && iucv_nonsmp_handler == 0)
822 mutex_unlock(&iucv_register_mutex);
824 EXPORT_SYMBOL(iucv_unregister);
826 static int iucv_reboot_event(struct notifier_block *this,
827 unsigned long event, void *ptr)
831 if (cpumask_empty(&iucv_irq_cpumask))
835 on_each_cpu_mask(&iucv_irq_cpumask, iucv_block_cpu, NULL, 1);
837 for (i = 0; i < iucv_max_pathid; i++) {
838 if (iucv_path_table[i])
839 iucv_sever_pathid(i, NULL);
847 static struct notifier_block iucv_reboot_notifier = {
848 .notifier_call = iucv_reboot_event,
853 * @path: address of iucv path structure
854 * @handler: address of iucv handler structure
855 * @userdata: 16 bytes of data reflected to the communication partner
856 * @private: private data passed to interrupt handlers for this path
858 * This function is issued after the user received a connection pending
859 * external interrupt and now wishes to complete the IUCV communication path.
861 * Returns the result of the CP IUCV call.
863 int iucv_path_accept(struct iucv_path *path, struct iucv_handler *handler,
864 u8 *userdata, void *private)
866 union iucv_param *parm;
870 if (cpumask_empty(&iucv_buffer_cpumask)) {
874 /* Prepare parameter block. */
875 parm = iucv_param[smp_processor_id()];
876 memset(parm, 0, sizeof(union iucv_param));
877 parm->ctrl.ippathid = path->pathid;
878 parm->ctrl.ipmsglim = path->msglim;
880 memcpy(parm->ctrl.ipuser, userdata, sizeof(parm->ctrl.ipuser));
881 parm->ctrl.ipflags1 = path->flags;
883 rc = iucv_call_b2f0(IUCV_ACCEPT, parm);
885 path->private = private;
886 path->msglim = parm->ctrl.ipmsglim;
887 path->flags = parm->ctrl.ipflags1;
893 EXPORT_SYMBOL(iucv_path_accept);
897 * @path: address of iucv path structure
898 * @handler: address of iucv handler structure
899 * @userid: 8-byte user identification
900 * @system: 8-byte target system identification
901 * @userdata: 16 bytes of data reflected to the communication partner
902 * @private: private data passed to interrupt handlers for this path
904 * This function establishes an IUCV path. Although the connect may complete
905 * successfully, you are not able to use the path until you receive an IUCV
906 * Connection Complete external interrupt.
908 * Returns the result of the CP IUCV call.
910 int iucv_path_connect(struct iucv_path *path, struct iucv_handler *handler,
911 u8 *userid, u8 *system, u8 *userdata,
914 union iucv_param *parm;
917 spin_lock_bh(&iucv_table_lock);
918 iucv_cleanup_queue();
919 if (cpumask_empty(&iucv_buffer_cpumask)) {
923 parm = iucv_param[smp_processor_id()];
924 memset(parm, 0, sizeof(union iucv_param));
925 parm->ctrl.ipmsglim = path->msglim;
926 parm->ctrl.ipflags1 = path->flags;
928 memcpy(parm->ctrl.ipvmid, userid, sizeof(parm->ctrl.ipvmid));
929 ASCEBC(parm->ctrl.ipvmid, sizeof(parm->ctrl.ipvmid));
930 EBC_TOUPPER(parm->ctrl.ipvmid, sizeof(parm->ctrl.ipvmid));
933 memcpy(parm->ctrl.iptarget, system,
934 sizeof(parm->ctrl.iptarget));
935 ASCEBC(parm->ctrl.iptarget, sizeof(parm->ctrl.iptarget));
936 EBC_TOUPPER(parm->ctrl.iptarget, sizeof(parm->ctrl.iptarget));
939 memcpy(parm->ctrl.ipuser, userdata, sizeof(parm->ctrl.ipuser));
941 rc = iucv_call_b2f0(IUCV_CONNECT, parm);
943 if (parm->ctrl.ippathid < iucv_max_pathid) {
944 path->pathid = parm->ctrl.ippathid;
945 path->msglim = parm->ctrl.ipmsglim;
946 path->flags = parm->ctrl.ipflags1;
947 path->handler = handler;
948 path->private = private;
949 list_add_tail(&path->list, &handler->paths);
950 iucv_path_table[path->pathid] = path;
952 iucv_sever_pathid(parm->ctrl.ippathid,
958 spin_unlock_bh(&iucv_table_lock);
961 EXPORT_SYMBOL(iucv_path_connect);
965 * @path: address of iucv path structure
966 * @userdata: 16 bytes of data reflected to the communication partner
968 * This function temporarily suspends incoming messages on an IUCV path.
969 * You can later reactivate the path by invoking the iucv_resume function.
971 * Returns the result from the CP IUCV call.
973 int iucv_path_quiesce(struct iucv_path *path, u8 *userdata)
975 union iucv_param *parm;
979 if (cpumask_empty(&iucv_buffer_cpumask)) {
983 parm = iucv_param[smp_processor_id()];
984 memset(parm, 0, sizeof(union iucv_param));
986 memcpy(parm->ctrl.ipuser, userdata, sizeof(parm->ctrl.ipuser));
987 parm->ctrl.ippathid = path->pathid;
988 rc = iucv_call_b2f0(IUCV_QUIESCE, parm);
993 EXPORT_SYMBOL(iucv_path_quiesce);
997 * @path: address of iucv path structure
998 * @userdata: 16 bytes of data reflected to the communication partner
1000 * This function resumes incoming messages on an IUCV path that has
1001 * been stopped with iucv_path_quiesce.
1003 * Returns the result from the CP IUCV call.
1005 int iucv_path_resume(struct iucv_path *path, u8 *userdata)
1007 union iucv_param *parm;
1011 if (cpumask_empty(&iucv_buffer_cpumask)) {
1015 parm = iucv_param[smp_processor_id()];
1016 memset(parm, 0, sizeof(union iucv_param));
1018 memcpy(parm->ctrl.ipuser, userdata, sizeof(parm->ctrl.ipuser));
1019 parm->ctrl.ippathid = path->pathid;
1020 rc = iucv_call_b2f0(IUCV_RESUME, parm);
1028 * @path: address of iucv path structure
1029 * @userdata: 16 bytes of data reflected to the communication partner
1031 * This function terminates an IUCV path.
1033 * Returns the result from the CP IUCV call.
1035 int iucv_path_sever(struct iucv_path *path, u8 *userdata)
1040 if (cpumask_empty(&iucv_buffer_cpumask)) {
1044 if (iucv_active_cpu != smp_processor_id())
1045 spin_lock_bh(&iucv_table_lock);
1046 rc = iucv_sever_pathid(path->pathid, userdata);
1047 iucv_path_table[path->pathid] = NULL;
1048 list_del_init(&path->list);
1049 if (iucv_active_cpu != smp_processor_id())
1050 spin_unlock_bh(&iucv_table_lock);
1055 EXPORT_SYMBOL(iucv_path_sever);
1058 * iucv_message_purge
1059 * @path: address of iucv path structure
1060 * @msg: address of iucv msg structure
1061 * @srccls: source class of message
1063 * Cancels a message you have sent.
1065 * Returns the result from the CP IUCV call.
1067 int iucv_message_purge(struct iucv_path *path, struct iucv_message *msg,
1070 union iucv_param *parm;
1074 if (cpumask_empty(&iucv_buffer_cpumask)) {
1078 parm = iucv_param[smp_processor_id()];
1079 memset(parm, 0, sizeof(union iucv_param));
1080 parm->purge.ippathid = path->pathid;
1081 parm->purge.ipmsgid = msg->id;
1082 parm->purge.ipsrccls = srccls;
1083 parm->purge.ipflags1 = IUCV_IPSRCCLS | IUCV_IPFGMID | IUCV_IPFGPID;
1084 rc = iucv_call_b2f0(IUCV_PURGE, parm);
1086 msg->audit = (*(u32 *) &parm->purge.ipaudit) >> 8;
1087 msg->tag = parm->purge.ipmsgtag;
1093 EXPORT_SYMBOL(iucv_message_purge);
1096 * iucv_message_receive_iprmdata
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 * Internal function used by iucv_message_receive and __iucv_message_receive
1105 * to receive RMDATA data stored in struct iucv_message.
1107 static int iucv_message_receive_iprmdata(struct iucv_path *path,
1108 struct iucv_message *msg,
1109 u8 flags, void *buffer,
1110 size_t size, size_t *residual)
1112 struct iucv_array *array;
1117 * Message is 8 bytes long and has been stored to the
1118 * message descriptor itself.
1121 *residual = abs(size - 8);
1123 if (flags & IUCV_IPBUFLST) {
1124 /* Copy to struct iucv_array. */
1125 size = (size < 8) ? size : 8;
1126 for (array = buffer; size > 0; array++) {
1127 copy = min_t(size_t, size, array->length);
1128 memcpy(dma32_to_virt(array->address), rmmsg, copy);
1133 /* Copy to direct buffer. */
1134 memcpy(buffer, rmmsg, min_t(size_t, size, 8));
1140 * __iucv_message_receive
1141 * @path: address of iucv path structure
1142 * @msg: address of iucv msg structure
1143 * @flags: how the message is received (IUCV_IPBUFLST)
1144 * @buffer: address of data buffer or address of struct iucv_array
1145 * @size: length of data buffer
1148 * This function receives messages that are being sent to you over
1149 * established paths. This function will deal with RMDATA messages
1150 * embedded in struct iucv_message as well.
1152 * Locking: no locking
1154 * Returns the result from the CP IUCV call.
1156 int __iucv_message_receive(struct iucv_path *path, struct iucv_message *msg,
1157 u8 flags, void *buffer, size_t size, size_t *residual)
1159 union iucv_param *parm;
1162 if (msg->flags & IUCV_IPRMDATA)
1163 return iucv_message_receive_iprmdata(path, msg, flags,
1164 buffer, size, residual);
1165 if (cpumask_empty(&iucv_buffer_cpumask))
1168 parm = iucv_param[smp_processor_id()];
1169 memset(parm, 0, sizeof(union iucv_param));
1170 parm->db.ipbfadr1 = virt_to_dma32(buffer);
1171 parm->db.ipbfln1f = (u32) size;
1172 parm->db.ipmsgid = msg->id;
1173 parm->db.ippathid = path->pathid;
1174 parm->db.iptrgcls = msg->class;
1175 parm->db.ipflags1 = (flags | IUCV_IPFGPID |
1176 IUCV_IPFGMID | IUCV_IPTRGCLS);
1177 rc = iucv_call_b2f0(IUCV_RECEIVE, parm);
1178 if (!rc || rc == 5) {
1179 msg->flags = parm->db.ipflags1;
1181 *residual = parm->db.ipbfln1f;
1185 EXPORT_SYMBOL(__iucv_message_receive);
1188 * iucv_message_receive
1189 * @path: address of iucv path structure
1190 * @msg: address of iucv msg structure
1191 * @flags: how the message is received (IUCV_IPBUFLST)
1192 * @buffer: address of data buffer or address of struct iucv_array
1193 * @size: length of data buffer
1196 * This function receives messages that are being sent to you over
1197 * established paths. This function will deal with RMDATA messages
1198 * embedded in struct iucv_message as well.
1200 * Locking: local_bh_enable/local_bh_disable
1202 * Returns the result from the CP IUCV call.
1204 int iucv_message_receive(struct iucv_path *path, struct iucv_message *msg,
1205 u8 flags, void *buffer, size_t size, size_t *residual)
1209 if (msg->flags & IUCV_IPRMDATA)
1210 return iucv_message_receive_iprmdata(path, msg, flags,
1211 buffer, size, residual);
1213 rc = __iucv_message_receive(path, msg, flags, buffer, size, residual);
1217 EXPORT_SYMBOL(iucv_message_receive);
1220 * iucv_message_reject
1221 * @path: address of iucv path structure
1222 * @msg: address of iucv msg structure
1224 * The reject function refuses a specified message. Between the time you
1225 * are notified of a message and the time that you complete the message,
1226 * the message may be rejected.
1228 * Returns the result from the CP IUCV call.
1230 int iucv_message_reject(struct iucv_path *path, struct iucv_message *msg)
1232 union iucv_param *parm;
1236 if (cpumask_empty(&iucv_buffer_cpumask)) {
1240 parm = iucv_param[smp_processor_id()];
1241 memset(parm, 0, sizeof(union iucv_param));
1242 parm->db.ippathid = path->pathid;
1243 parm->db.ipmsgid = msg->id;
1244 parm->db.iptrgcls = msg->class;
1245 parm->db.ipflags1 = (IUCV_IPTRGCLS | IUCV_IPFGMID | IUCV_IPFGPID);
1246 rc = iucv_call_b2f0(IUCV_REJECT, parm);
1251 EXPORT_SYMBOL(iucv_message_reject);
1254 * iucv_message_reply
1255 * @path: address of iucv path structure
1256 * @msg: address of iucv msg structure
1257 * @flags: how the reply is sent (IUCV_IPRMDATA, IUCV_IPPRTY, IUCV_IPBUFLST)
1258 * @reply: address of reply data buffer or address of struct iucv_array
1259 * @size: length of reply data buffer
1261 * This function responds to the two-way messages that you receive. You
1262 * must identify completely the message to which you wish to reply. ie,
1263 * pathid, msgid, and trgcls. Prmmsg signifies the data is moved into
1264 * the parameter list.
1266 * Returns the result from the CP IUCV call.
1268 int iucv_message_reply(struct iucv_path *path, struct iucv_message *msg,
1269 u8 flags, void *reply, size_t size)
1271 union iucv_param *parm;
1275 if (cpumask_empty(&iucv_buffer_cpumask)) {
1279 parm = iucv_param[smp_processor_id()];
1280 memset(parm, 0, sizeof(union iucv_param));
1281 if (flags & IUCV_IPRMDATA) {
1282 parm->dpl.ippathid = path->pathid;
1283 parm->dpl.ipflags1 = flags;
1284 parm->dpl.ipmsgid = msg->id;
1285 parm->dpl.iptrgcls = msg->class;
1286 memcpy(parm->dpl.iprmmsg, reply, min_t(size_t, size, 8));
1288 parm->db.ipbfadr1 = virt_to_dma32(reply);
1289 parm->db.ipbfln1f = (u32) size;
1290 parm->db.ippathid = path->pathid;
1291 parm->db.ipflags1 = flags;
1292 parm->db.ipmsgid = msg->id;
1293 parm->db.iptrgcls = msg->class;
1295 rc = iucv_call_b2f0(IUCV_REPLY, parm);
1300 EXPORT_SYMBOL(iucv_message_reply);
1303 * __iucv_message_send
1304 * @path: address of iucv path structure
1305 * @msg: address of iucv msg structure
1306 * @flags: how the message is sent (IUCV_IPRMDATA, IUCV_IPPRTY, IUCV_IPBUFLST)
1307 * @srccls: source class of message
1308 * @buffer: address of send buffer or address of struct iucv_array
1309 * @size: length of send buffer
1311 * This function transmits data to another application. Data to be
1312 * transmitted is in a buffer and this is a one-way message and the
1313 * receiver will not reply to the message.
1315 * Locking: no locking
1317 * Returns the result from the CP IUCV call.
1319 int __iucv_message_send(struct iucv_path *path, struct iucv_message *msg,
1320 u8 flags, u32 srccls, void *buffer, size_t size)
1322 union iucv_param *parm;
1325 if (cpumask_empty(&iucv_buffer_cpumask)) {
1329 parm = iucv_param[smp_processor_id()];
1330 memset(parm, 0, sizeof(union iucv_param));
1331 if (flags & IUCV_IPRMDATA) {
1332 /* Message of 8 bytes can be placed into the parameter list. */
1333 parm->dpl.ippathid = path->pathid;
1334 parm->dpl.ipflags1 = flags | IUCV_IPNORPY;
1335 parm->dpl.iptrgcls = msg->class;
1336 parm->dpl.ipsrccls = srccls;
1337 parm->dpl.ipmsgtag = msg->tag;
1338 memcpy(parm->dpl.iprmmsg, buffer, 8);
1340 parm->db.ipbfadr1 = virt_to_dma32(buffer);
1341 parm->db.ipbfln1f = (u32) size;
1342 parm->db.ippathid = path->pathid;
1343 parm->db.ipflags1 = flags | IUCV_IPNORPY;
1344 parm->db.iptrgcls = msg->class;
1345 parm->db.ipsrccls = srccls;
1346 parm->db.ipmsgtag = msg->tag;
1348 rc = iucv_call_b2f0(IUCV_SEND, parm);
1350 msg->id = parm->db.ipmsgid;
1354 EXPORT_SYMBOL(__iucv_message_send);
1358 * @path: address of iucv path structure
1359 * @msg: address of iucv msg structure
1360 * @flags: how the message is sent (IUCV_IPRMDATA, IUCV_IPPRTY, IUCV_IPBUFLST)
1361 * @srccls: source class of message
1362 * @buffer: address of send buffer or address of struct iucv_array
1363 * @size: length of send buffer
1365 * This function transmits data to another application. Data to be
1366 * transmitted is in a buffer and this is a one-way message and the
1367 * receiver will not reply to the message.
1369 * Locking: local_bh_enable/local_bh_disable
1371 * Returns the result from the CP IUCV call.
1373 int iucv_message_send(struct iucv_path *path, struct iucv_message *msg,
1374 u8 flags, u32 srccls, void *buffer, size_t size)
1379 rc = __iucv_message_send(path, msg, flags, srccls, buffer, size);
1383 EXPORT_SYMBOL(iucv_message_send);
1386 * iucv_message_send2way
1387 * @path: address of iucv path structure
1388 * @msg: address of iucv msg structure
1389 * @flags: how the message is sent and the reply is received
1390 * (IUCV_IPRMDATA, IUCV_IPBUFLST, IUCV_IPPRTY, IUCV_ANSLST)
1391 * @srccls: source class of message
1392 * @buffer: address of send buffer or address of struct iucv_array
1393 * @size: length of send buffer
1394 * @answer: address of answer buffer or address of struct iucv_array
1395 * @asize: size of reply buffer
1396 * @residual: ignored
1398 * This function transmits data to another application. Data to be
1399 * transmitted is in a buffer. The receiver of the send is expected to
1400 * reply to the message and a buffer is provided into which IUCV moves
1401 * the reply to this message.
1403 * Returns the result from the CP IUCV call.
1405 int iucv_message_send2way(struct iucv_path *path, struct iucv_message *msg,
1406 u8 flags, u32 srccls, void *buffer, size_t size,
1407 void *answer, size_t asize, size_t *residual)
1409 union iucv_param *parm;
1413 if (cpumask_empty(&iucv_buffer_cpumask)) {
1417 parm = iucv_param[smp_processor_id()];
1418 memset(parm, 0, sizeof(union iucv_param));
1419 if (flags & IUCV_IPRMDATA) {
1420 parm->dpl.ippathid = path->pathid;
1421 parm->dpl.ipflags1 = path->flags; /* priority message */
1422 parm->dpl.iptrgcls = msg->class;
1423 parm->dpl.ipsrccls = srccls;
1424 parm->dpl.ipmsgtag = msg->tag;
1425 parm->dpl.ipbfadr2 = virt_to_dma32(answer);
1426 parm->dpl.ipbfln2f = (u32) asize;
1427 memcpy(parm->dpl.iprmmsg, buffer, 8);
1429 parm->db.ippathid = path->pathid;
1430 parm->db.ipflags1 = path->flags; /* priority message */
1431 parm->db.iptrgcls = msg->class;
1432 parm->db.ipsrccls = srccls;
1433 parm->db.ipmsgtag = msg->tag;
1434 parm->db.ipbfadr1 = virt_to_dma32(buffer);
1435 parm->db.ipbfln1f = (u32) size;
1436 parm->db.ipbfadr2 = virt_to_dma32(answer);
1437 parm->db.ipbfln2f = (u32) asize;
1439 rc = iucv_call_b2f0(IUCV_SEND, parm);
1441 msg->id = parm->db.ipmsgid;
1446 EXPORT_SYMBOL(iucv_message_send2way);
1448 struct iucv_path_pending {
1463 * @data: Pointer to external interrupt buffer
1465 * Process connection pending work item. Called from tasklet while holding
1468 static void iucv_path_pending(struct iucv_irq_data *data)
1470 struct iucv_path_pending *ipp = (void *) data;
1471 struct iucv_handler *handler;
1472 struct iucv_path *path;
1475 BUG_ON(iucv_path_table[ipp->ippathid]);
1476 /* New pathid, handler found. Create a new path struct. */
1477 error = iucv_error_no_memory;
1478 path = iucv_path_alloc(ipp->ipmsglim, ipp->ipflags1, GFP_ATOMIC);
1481 path->pathid = ipp->ippathid;
1482 iucv_path_table[path->pathid] = path;
1483 EBCASC(ipp->ipvmid, 8);
1485 /* Call registered handler until one is found that wants the path. */
1486 list_for_each_entry(handler, &iucv_handler_list, list) {
1487 if (!handler->path_pending)
1490 * Add path to handler to allow a call to iucv_path_sever
1491 * inside the path_pending function. If the handler returns
1492 * an error remove the path from the handler again.
1494 list_add(&path->list, &handler->paths);
1495 path->handler = handler;
1496 if (!handler->path_pending(path, ipp->ipvmid, ipp->ipuser))
1498 list_del(&path->list);
1499 path->handler = NULL;
1501 /* No handler wanted the path. */
1502 iucv_path_table[path->pathid] = NULL;
1503 iucv_path_free(path);
1504 error = iucv_error_no_listener;
1506 iucv_sever_pathid(ipp->ippathid, error);
1509 struct iucv_path_complete {
1523 * iucv_path_complete
1524 * @data: Pointer to external interrupt buffer
1526 * Process connection complete work item. Called from tasklet while holding
1529 static void iucv_path_complete(struct iucv_irq_data *data)
1531 struct iucv_path_complete *ipc = (void *) data;
1532 struct iucv_path *path = iucv_path_table[ipc->ippathid];
1535 path->flags = ipc->ipflags1;
1536 if (path && path->handler && path->handler->path_complete)
1537 path->handler->path_complete(path, ipc->ipuser);
1540 struct iucv_path_severed {
1554 * @data: Pointer to external interrupt buffer
1556 * Process connection severed work item. Called from tasklet while holding
1559 static void iucv_path_severed(struct iucv_irq_data *data)
1561 struct iucv_path_severed *ips = (void *) data;
1562 struct iucv_path *path = iucv_path_table[ips->ippathid];
1564 if (!path || !path->handler) /* Already severed */
1566 if (path->handler->path_severed)
1567 path->handler->path_severed(path, ips->ipuser);
1569 iucv_sever_pathid(path->pathid, NULL);
1570 iucv_path_table[path->pathid] = NULL;
1571 list_del(&path->list);
1572 iucv_path_free(path);
1576 struct iucv_path_quiesced {
1589 * iucv_path_quiesced
1590 * @data: Pointer to external interrupt buffer
1592 * Process connection quiesced work item. Called from tasklet while holding
1595 static void iucv_path_quiesced(struct iucv_irq_data *data)
1597 struct iucv_path_quiesced *ipq = (void *) data;
1598 struct iucv_path *path = iucv_path_table[ipq->ippathid];
1600 if (path && path->handler && path->handler->path_quiesced)
1601 path->handler->path_quiesced(path, ipq->ipuser);
1604 struct iucv_path_resumed {
1618 * @data: Pointer to external interrupt buffer
1620 * Process connection resumed work item. Called from tasklet while holding
1623 static void iucv_path_resumed(struct iucv_irq_data *data)
1625 struct iucv_path_resumed *ipr = (void *) data;
1626 struct iucv_path *path = iucv_path_table[ipr->ippathid];
1628 if (path && path->handler && path->handler->path_resumed)
1629 path->handler->path_resumed(path, ipr->ipuser);
1632 struct iucv_message_complete {
1648 * iucv_message_complete
1649 * @data: Pointer to external interrupt buffer
1651 * Process message complete work item. Called from tasklet while holding
1654 static void iucv_message_complete(struct iucv_irq_data *data)
1656 struct iucv_message_complete *imc = (void *) data;
1657 struct iucv_path *path = iucv_path_table[imc->ippathid];
1658 struct iucv_message msg;
1660 if (path && path->handler && path->handler->message_complete) {
1661 msg.flags = imc->ipflags1;
1662 msg.id = imc->ipmsgid;
1663 msg.audit = imc->ipaudit;
1664 memcpy(msg.rmmsg, imc->iprmmsg, 8);
1665 msg.class = imc->ipsrccls;
1666 msg.tag = imc->ipmsgtag;
1667 msg.length = imc->ipbfln2f;
1668 path->handler->message_complete(path, &msg);
1672 struct iucv_message_pending {
1695 * iucv_message_pending
1696 * @data: Pointer to external interrupt buffer
1698 * Process message pending work item. Called from tasklet while holding
1701 static void iucv_message_pending(struct iucv_irq_data *data)
1703 struct iucv_message_pending *imp = (void *) data;
1704 struct iucv_path *path = iucv_path_table[imp->ippathid];
1705 struct iucv_message msg;
1707 if (path && path->handler && path->handler->message_pending) {
1708 msg.flags = imp->ipflags1;
1709 msg.id = imp->ipmsgid;
1710 msg.class = imp->iptrgcls;
1711 if (imp->ipflags1 & IUCV_IPRMDATA) {
1712 memcpy(msg.rmmsg, &imp->rmmsg, 8);
1715 msg.length = imp->rmmsg.ln1msg2.ipbfln1f;
1716 msg.reply_size = imp->ipbfln2f;
1717 path->handler->message_pending(path, &msg);
1724 * This tasklet loops over the queue of irq buffers created by
1725 * iucv_external_interrupt, calls the appropriate action handler
1726 * and then frees the buffer.
1728 static void iucv_tasklet_fn(unsigned long ignored)
1730 typedef void iucv_irq_fn(struct iucv_irq_data *);
1731 static iucv_irq_fn *irq_fn[] = {
1732 [0x02] = iucv_path_complete,
1733 [0x03] = iucv_path_severed,
1734 [0x04] = iucv_path_quiesced,
1735 [0x05] = iucv_path_resumed,
1736 [0x06] = iucv_message_complete,
1737 [0x07] = iucv_message_complete,
1738 [0x08] = iucv_message_pending,
1739 [0x09] = iucv_message_pending,
1741 LIST_HEAD(task_queue);
1742 struct iucv_irq_list *p, *n;
1744 /* Serialize tasklet, iucv_path_sever and iucv_path_connect. */
1745 if (!spin_trylock(&iucv_table_lock)) {
1746 tasklet_schedule(&iucv_tasklet);
1749 iucv_active_cpu = smp_processor_id();
1751 spin_lock_irq(&iucv_queue_lock);
1752 list_splice_init(&iucv_task_queue, &task_queue);
1753 spin_unlock_irq(&iucv_queue_lock);
1755 list_for_each_entry_safe(p, n, &task_queue, list) {
1756 list_del_init(&p->list);
1757 irq_fn[p->data.iptype](&p->data);
1761 iucv_active_cpu = -1;
1762 spin_unlock(&iucv_table_lock);
1768 * This work function loops over the queue of path pending irq blocks
1769 * created by iucv_external_interrupt, calls the appropriate action
1770 * handler and then frees the buffer.
1772 static void iucv_work_fn(struct work_struct *work)
1774 LIST_HEAD(work_queue);
1775 struct iucv_irq_list *p, *n;
1777 /* Serialize tasklet, iucv_path_sever and iucv_path_connect. */
1778 spin_lock_bh(&iucv_table_lock);
1779 iucv_active_cpu = smp_processor_id();
1781 spin_lock_irq(&iucv_queue_lock);
1782 list_splice_init(&iucv_work_queue, &work_queue);
1783 spin_unlock_irq(&iucv_queue_lock);
1785 iucv_cleanup_queue();
1786 list_for_each_entry_safe(p, n, &work_queue, list) {
1787 list_del_init(&p->list);
1788 iucv_path_pending(&p->data);
1792 iucv_active_cpu = -1;
1793 spin_unlock_bh(&iucv_table_lock);
1797 * iucv_external_interrupt
1799 * Handles external interrupts coming in from CP.
1800 * Places the interrupt buffer on a queue and schedules iucv_tasklet_fn().
1802 static void iucv_external_interrupt(struct ext_code ext_code,
1803 unsigned int param32, unsigned long param64)
1805 struct iucv_irq_data *p;
1806 struct iucv_irq_list *work;
1808 inc_irq_stat(IRQEXT_IUC);
1809 p = iucv_irq_data[smp_processor_id()];
1810 if (p->ippathid >= iucv_max_pathid) {
1811 WARN_ON(p->ippathid >= iucv_max_pathid);
1812 iucv_sever_pathid(p->ippathid, iucv_error_no_listener);
1815 BUG_ON(p->iptype < 0x01 || p->iptype > 0x09);
1816 work = kmalloc(sizeof(struct iucv_irq_list), GFP_ATOMIC);
1818 pr_warn("iucv_external_interrupt: out of memory\n");
1821 memcpy(&work->data, p, sizeof(work->data));
1822 spin_lock(&iucv_queue_lock);
1823 if (p->iptype == 0x01) {
1824 /* Path pending interrupt. */
1825 list_add_tail(&work->list, &iucv_work_queue);
1826 schedule_work(&iucv_work);
1828 /* The other interrupts. */
1829 list_add_tail(&work->list, &iucv_task_queue);
1830 tasklet_schedule(&iucv_tasklet);
1832 spin_unlock(&iucv_queue_lock);
1835 struct iucv_interface iucv_if = {
1836 .message_receive = iucv_message_receive,
1837 .__message_receive = __iucv_message_receive,
1838 .message_reply = iucv_message_reply,
1839 .message_reject = iucv_message_reject,
1840 .message_send = iucv_message_send,
1841 .__message_send = __iucv_message_send,
1842 .message_send2way = iucv_message_send2way,
1843 .message_purge = iucv_message_purge,
1844 .path_accept = iucv_path_accept,
1845 .path_connect = iucv_path_connect,
1846 .path_quiesce = iucv_path_quiesce,
1847 .path_resume = iucv_path_resume,
1848 .path_sever = iucv_path_sever,
1849 .iucv_register = iucv_register,
1850 .iucv_unregister = iucv_unregister,
1854 EXPORT_SYMBOL(iucv_if);
1856 static enum cpuhp_state iucv_online;
1860 * Allocates and initializes various data structures.
1862 static int __init iucv_init(void)
1866 if (!MACHINE_IS_VM) {
1867 rc = -EPROTONOSUPPORT;
1870 system_ctl_set_bit(0, CR0_IUCV_BIT);
1871 rc = iucv_query_maxconn();
1874 rc = register_external_irq(EXT_IRQ_IUCV, iucv_external_interrupt);
1877 iucv_root = root_device_register("iucv");
1878 if (IS_ERR(iucv_root)) {
1879 rc = PTR_ERR(iucv_root);
1883 rc = cpuhp_setup_state(CPUHP_NET_IUCV_PREPARE, "net/iucv:prepare",
1884 iucv_cpu_prepare, iucv_cpu_dead);
1887 rc = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "net/iucv:online",
1888 iucv_cpu_online, iucv_cpu_down_prep);
1893 rc = register_reboot_notifier(&iucv_reboot_notifier);
1896 ASCEBC(iucv_error_no_listener, 16);
1897 ASCEBC(iucv_error_no_memory, 16);
1898 ASCEBC(iucv_error_pathid, 16);
1900 rc = bus_register(&iucv_bus);
1903 iucv_if.root = iucv_root;
1904 iucv_if.bus = &iucv_bus;
1908 unregister_reboot_notifier(&iucv_reboot_notifier);
1910 cpuhp_remove_state(iucv_online);
1912 cpuhp_remove_state(CPUHP_NET_IUCV_PREPARE);
1914 root_device_unregister(iucv_root);
1916 unregister_external_irq(EXT_IRQ_IUCV, iucv_external_interrupt);
1918 system_ctl_clear_bit(0, 1);
1926 * Frees everything allocated from iucv_init.
1928 static void __exit iucv_exit(void)
1930 struct iucv_irq_list *p, *n;
1932 spin_lock_irq(&iucv_queue_lock);
1933 list_for_each_entry_safe(p, n, &iucv_task_queue, list)
1935 list_for_each_entry_safe(p, n, &iucv_work_queue, list)
1937 spin_unlock_irq(&iucv_queue_lock);
1938 unregister_reboot_notifier(&iucv_reboot_notifier);
1940 cpuhp_remove_state_nocalls(iucv_online);
1941 cpuhp_remove_state(CPUHP_NET_IUCV_PREPARE);
1942 root_device_unregister(iucv_root);
1943 bus_unregister(&iucv_bus);
1944 unregister_external_irq(EXT_IRQ_IUCV, iucv_external_interrupt);
1947 subsys_initcall(iucv_init);
1948 module_exit(iucv_exit);
1951 MODULE_DESCRIPTION("Linux for S/390 IUCV lowlevel driver");
1952 MODULE_LICENSE("GPL");