2 * IUCV base infrastructure.
4 * Copyright IBM Corp. 2001, 2009
8 * Alan Altmark (Alan_Altmark@us.ibm.com) Sept. 2000
9 * Xenia Tkatschow (xenia@us.ibm.com)
10 * 2Gb awareness and general cleanup:
11 * Fritz Elfert (elfert@de.ibm.com, felfert@millenux.com)
12 * Rewritten for af_iucv:
13 * Martin Schwidefsky <schwidefsky@de.ibm.com>
15 * Ursula Braun (ursula.braun@de.ibm.com)
19 * CP Programming Service, IBM document # SC24-5760
21 * This program is free software; you can redistribute it and/or modify
22 * it under the terms of the GNU General Public License as published by
23 * the Free Software Foundation; either version 2, or (at your option)
26 * This program is distributed in the hope that it will be useful,
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29 * GNU General Public License for more details.
31 * You should have received a copy of the GNU General Public License
32 * along with this program; if not, write to the Free Software
33 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
36 #define KMSG_COMPONENT "iucv"
37 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
39 #include <linux/kernel_stat.h>
40 #include <linux/module.h>
41 #include <linux/moduleparam.h>
42 #include <linux/spinlock.h>
43 #include <linux/kernel.h>
44 #include <linux/slab.h>
45 #include <linux/init.h>
46 #include <linux/interrupt.h>
47 #include <linux/list.h>
48 #include <linux/errno.h>
49 #include <linux/err.h>
50 #include <linux/device.h>
51 #include <linux/cpu.h>
52 #include <linux/reboot.h>
53 #include <net/iucv/iucv.h>
54 #include <asm/atomic.h>
55 #include <asm/ebcdic.h>
57 #include <asm/s390_ext.h>
62 * All flags are defined in the field IPFLAGS1 of each function
63 * and can be found in CP Programming Services.
64 * IPSRCCLS - Indicates you have specified a source class.
65 * IPTRGCLS - Indicates you have specified a target class.
66 * IPFGPID - Indicates you have specified a pathid.
67 * IPFGMID - Indicates you have specified a message ID.
68 * IPNORPY - Indicates a one-way message. No reply expected.
69 * IPALL - Indicates that all paths are affected.
71 #define IUCV_IPSRCCLS 0x01
72 #define IUCV_IPTRGCLS 0x01
73 #define IUCV_IPFGPID 0x02
74 #define IUCV_IPFGMID 0x04
75 #define IUCV_IPNORPY 0x10
76 #define IUCV_IPALL 0x80
78 static int iucv_bus_match(struct device
*dev
, struct device_driver
*drv
)
87 IUCV_PM_RESTORING
= 3,
89 static enum iucv_pm_states iucv_pm_state
;
91 static int iucv_pm_prepare(struct device
*);
92 static void iucv_pm_complete(struct device
*);
93 static int iucv_pm_freeze(struct device
*);
94 static int iucv_pm_thaw(struct device
*);
95 static int iucv_pm_restore(struct device
*);
97 static const struct dev_pm_ops iucv_pm_ops
= {
98 .prepare
= iucv_pm_prepare
,
99 .complete
= iucv_pm_complete
,
100 .freeze
= iucv_pm_freeze
,
101 .thaw
= iucv_pm_thaw
,
102 .restore
= iucv_pm_restore
,
105 struct bus_type iucv_bus
= {
107 .match
= iucv_bus_match
,
110 EXPORT_SYMBOL(iucv_bus
);
112 struct device
*iucv_root
;
113 EXPORT_SYMBOL(iucv_root
);
115 static int iucv_available
;
117 /* General IUCV interrupt structure */
118 struct iucv_irq_data
{
125 struct iucv_irq_list
{
126 struct list_head list
;
127 struct iucv_irq_data data
;
130 static struct iucv_irq_data
*iucv_irq_data
[NR_CPUS
];
131 static cpumask_t iucv_buffer_cpumask
= CPU_MASK_NONE
;
132 static cpumask_t iucv_irq_cpumask
= CPU_MASK_NONE
;
135 * Queue of interrupt buffers lock for delivery via the tasklet
136 * (fast but can't call smp_call_function).
138 static LIST_HEAD(iucv_task_queue
);
141 * The tasklet for fast delivery of iucv interrupts.
143 static void iucv_tasklet_fn(unsigned long);
144 static DECLARE_TASKLET(iucv_tasklet
, iucv_tasklet_fn
,0);
147 * Queue of interrupt buffers for delivery via a work queue
148 * (slower but can call smp_call_function).
150 static LIST_HEAD(iucv_work_queue
);
153 * The work element to deliver path pending interrupts.
155 static void iucv_work_fn(struct work_struct
*work
);
156 static DECLARE_WORK(iucv_work
, iucv_work_fn
);
159 * Spinlock protecting task and work queue.
161 static DEFINE_SPINLOCK(iucv_queue_lock
);
163 enum iucv_command_codes
{
165 IUCV_RETRIEVE_BUFFER
= 2,
173 IUCV_DECLARE_BUFFER
= 12,
178 IUCV_SETCONTROLMASK
= 17,
182 * Error messages that are used with the iucv_sever function. They get
183 * converted to EBCDIC.
185 static char iucv_error_no_listener
[16] = "NO LISTENER";
186 static char iucv_error_no_memory
[16] = "NO MEMORY";
187 static char iucv_error_pathid
[16] = "INVALID PATHID";
190 * iucv_handler_list: List of registered handlers.
192 static LIST_HEAD(iucv_handler_list
);
195 * iucv_path_table: an array of iucv_path structures.
197 static struct iucv_path
**iucv_path_table
;
198 static unsigned long iucv_max_pathid
;
201 * iucv_lock: spinlock protecting iucv_handler_list and iucv_pathid_table
203 static DEFINE_SPINLOCK(iucv_table_lock
);
206 * iucv_active_cpu: contains the number of the cpu executing the tasklet
207 * or the work handler. Needed for iucv_path_sever called from tasklet.
209 static int iucv_active_cpu
= -1;
212 * Mutex and wait queue for iucv_register/iucv_unregister.
214 static DEFINE_MUTEX(iucv_register_mutex
);
217 * Counter for number of non-smp capable handlers.
219 static int iucv_nonsmp_handler
;
222 * IUCV control data structure. Used by iucv_path_accept, iucv_path_connect,
223 * iucv_path_quiesce and iucv_path_sever.
225 struct iucv_cmd_control
{
234 } __attribute__ ((packed
,aligned(8)));
237 * Data in parameter list iucv structure. Used by iucv_message_send,
238 * iucv_message_send2way and iucv_message_reply.
240 struct iucv_cmd_dpl
{
252 } __attribute__ ((packed
,aligned(8)));
255 * Data in buffer iucv structure. Used by iucv_message_receive,
256 * iucv_message_reject, iucv_message_send, iucv_message_send2way
257 * and iucv_declare_cpu.
272 } __attribute__ ((packed
,aligned(8)));
275 * Purge message iucv structure. Used by iucv_message_purge.
277 struct iucv_cmd_purge
{
288 } __attribute__ ((packed
,aligned(8)));
291 * Set mask iucv structure. Used by iucv_enable_cpu.
293 struct iucv_cmd_set_mask
{
298 } __attribute__ ((packed
,aligned(8)));
301 struct iucv_cmd_control ctrl
;
302 struct iucv_cmd_dpl dpl
;
303 struct iucv_cmd_db db
;
304 struct iucv_cmd_purge purge
;
305 struct iucv_cmd_set_mask set_mask
;
309 * Anchor for per-cpu IUCV command parameter block.
311 static union iucv_param
*iucv_param
[NR_CPUS
];
312 static union iucv_param
*iucv_param_irq
[NR_CPUS
];
316 * @code: identifier of IUCV call to CP.
317 * @parm: pointer to a struct iucv_parm block
319 * Calls CP to execute IUCV commands.
321 * Returns the result of the CP IUCV call.
323 static inline int iucv_call_b2f0(int command
, union iucv_param
*parm
)
325 register unsigned long reg0
asm ("0");
326 register unsigned long reg1
asm ("1");
330 reg1
= virt_to_phys(parm
);
332 " .long 0xb2f01000\n"
335 : "=d" (ccode
), "=m" (*parm
), "+d" (reg0
), "+a" (reg1
)
336 : "m" (*parm
) : "cc");
337 return (ccode
== 1) ? parm
->ctrl
.iprcode
: ccode
;
343 * Determines the maximum number of connections that may be established.
345 * Returns the maximum number of connections or -EPERM is IUCV is not
348 static int iucv_query_maxconn(void)
350 register unsigned long reg0
asm ("0");
351 register unsigned long reg1
asm ("1");
355 param
= kzalloc(sizeof(union iucv_param
), GFP_KERNEL
|GFP_DMA
);
359 reg1
= (unsigned long) param
;
361 " .long 0xb2f01000\n"
364 : "=d" (ccode
), "+d" (reg0
), "+d" (reg1
) : : "cc");
366 iucv_max_pathid
= reg1
;
368 return ccode
? -EPERM
: 0;
375 * Allow iucv interrupts on this cpu.
377 static void iucv_allow_cpu(void *data
)
379 int cpu
= smp_processor_id();
380 union iucv_param
*parm
;
383 * Enable all iucv interrupts.
384 * ipmask contains bits for the different interrupts
385 * 0x80 - Flag to allow nonpriority message pending interrupts
386 * 0x40 - Flag to allow priority message pending interrupts
387 * 0x20 - Flag to allow nonpriority message completion interrupts
388 * 0x10 - Flag to allow priority message completion interrupts
389 * 0x08 - Flag to allow IUCV control interrupts
391 parm
= iucv_param_irq
[cpu
];
392 memset(parm
, 0, sizeof(union iucv_param
));
393 parm
->set_mask
.ipmask
= 0xf8;
394 iucv_call_b2f0(IUCV_SETMASK
, parm
);
397 * Enable all iucv control interrupts.
398 * ipmask contains bits for the different interrupts
399 * 0x80 - Flag to allow pending connections interrupts
400 * 0x40 - Flag to allow connection complete interrupts
401 * 0x20 - Flag to allow connection severed interrupts
402 * 0x10 - Flag to allow connection quiesced interrupts
403 * 0x08 - Flag to allow connection resumed interrupts
405 memset(parm
, 0, sizeof(union iucv_param
));
406 parm
->set_mask
.ipmask
= 0xf8;
407 iucv_call_b2f0(IUCV_SETCONTROLMASK
, parm
);
408 /* Set indication that iucv interrupts are allowed for this cpu. */
409 cpu_set(cpu
, iucv_irq_cpumask
);
416 * Block iucv interrupts on this cpu.
418 static void iucv_block_cpu(void *data
)
420 int cpu
= smp_processor_id();
421 union iucv_param
*parm
;
423 /* Disable all iucv interrupts. */
424 parm
= iucv_param_irq
[cpu
];
425 memset(parm
, 0, sizeof(union iucv_param
));
426 iucv_call_b2f0(IUCV_SETMASK
, parm
);
428 /* Clear indication that iucv interrupts are allowed for this cpu. */
429 cpu_clear(cpu
, iucv_irq_cpumask
);
433 * iucv_block_cpu_almost
436 * Allow connection-severed interrupts only on this cpu.
438 static void iucv_block_cpu_almost(void *data
)
440 int cpu
= smp_processor_id();
441 union iucv_param
*parm
;
443 /* Allow iucv control interrupts only */
444 parm
= iucv_param_irq
[cpu
];
445 memset(parm
, 0, sizeof(union iucv_param
));
446 parm
->set_mask
.ipmask
= 0x08;
447 iucv_call_b2f0(IUCV_SETMASK
, parm
);
448 /* Allow iucv-severed interrupt only */
449 memset(parm
, 0, sizeof(union iucv_param
));
450 parm
->set_mask
.ipmask
= 0x20;
451 iucv_call_b2f0(IUCV_SETCONTROLMASK
, parm
);
453 /* Clear indication that iucv interrupts are allowed for this cpu. */
454 cpu_clear(cpu
, iucv_irq_cpumask
);
461 * Declare a interrupt buffer on this cpu.
463 static void iucv_declare_cpu(void *data
)
465 int cpu
= smp_processor_id();
466 union iucv_param
*parm
;
469 if (cpu_isset(cpu
, iucv_buffer_cpumask
))
472 /* Declare interrupt buffer. */
473 parm
= iucv_param_irq
[cpu
];
474 memset(parm
, 0, sizeof(union iucv_param
));
475 parm
->db
.ipbfadr1
= virt_to_phys(iucv_irq_data
[cpu
]);
476 rc
= iucv_call_b2f0(IUCV_DECLARE_BUFFER
, parm
);
478 char *err
= "Unknown";
481 err
= "Directory error";
484 err
= "Invalid length";
487 err
= "Buffer already exists";
490 err
= "Buffer overlap";
493 err
= "Paging or storage error";
496 pr_warning("Defining an interrupt buffer on CPU %i"
497 " failed with 0x%02x (%s)\n", cpu
, rc
, err
);
501 /* Set indication that an iucv buffer exists for this cpu. */
502 cpu_set(cpu
, iucv_buffer_cpumask
);
504 if (iucv_nonsmp_handler
== 0 || cpus_empty(iucv_irq_cpumask
))
505 /* Enable iucv interrupts on this cpu. */
506 iucv_allow_cpu(NULL
);
508 /* Disable iucv interrupts on this cpu. */
509 iucv_block_cpu(NULL
);
516 * Retrieve interrupt buffer on this cpu.
518 static void iucv_retrieve_cpu(void *data
)
520 int cpu
= smp_processor_id();
521 union iucv_param
*parm
;
523 if (!cpu_isset(cpu
, iucv_buffer_cpumask
))
526 /* Block iucv interrupts. */
527 iucv_block_cpu(NULL
);
529 /* Retrieve interrupt buffer. */
530 parm
= iucv_param_irq
[cpu
];
531 iucv_call_b2f0(IUCV_RETRIEVE_BUFFER
, parm
);
533 /* Clear indication that an iucv buffer exists for this cpu. */
534 cpu_clear(cpu
, iucv_buffer_cpumask
);
540 * Allow iucv interrupts on all cpus.
542 static void iucv_setmask_mp(void)
547 for_each_online_cpu(cpu
)
548 /* Enable all cpus with a declared buffer. */
549 if (cpu_isset(cpu
, iucv_buffer_cpumask
) &&
550 !cpu_isset(cpu
, iucv_irq_cpumask
))
551 smp_call_function_single(cpu
, iucv_allow_cpu
,
559 * Allow iucv interrupts on a single cpu.
561 static void iucv_setmask_up(void)
566 /* Disable all cpu but the first in cpu_irq_cpumask. */
567 cpumask
= iucv_irq_cpumask
;
568 cpu_clear(first_cpu(iucv_irq_cpumask
), cpumask
);
569 for_each_cpu_mask_nr(cpu
, cpumask
)
570 smp_call_function_single(cpu
, iucv_block_cpu
, NULL
, 1);
576 * This function makes iucv ready for use. It allocates the pathid
577 * table, declares an iucv interrupt buffer and enables the iucv
578 * interrupts. Called when the first user has registered an iucv
581 static int iucv_enable(void)
588 alloc_size
= iucv_max_pathid
* sizeof(struct iucv_path
);
589 iucv_path_table
= kzalloc(alloc_size
, GFP_KERNEL
);
590 if (!iucv_path_table
)
592 /* Declare per cpu buffers. */
594 for_each_online_cpu(cpu
)
595 smp_call_function_single(cpu
, iucv_declare_cpu
, NULL
, 1);
596 if (cpus_empty(iucv_buffer_cpumask
))
597 /* No cpu could declare an iucv buffer. */
602 kfree(iucv_path_table
);
603 iucv_path_table
= NULL
;
611 * This function shuts down iucv. It disables iucv interrupts, retrieves
612 * the iucv interrupt buffer and frees the pathid table. Called after the
613 * last user unregister its iucv handler.
615 static void iucv_disable(void)
618 on_each_cpu(iucv_retrieve_cpu
, NULL
, 1);
619 kfree(iucv_path_table
);
620 iucv_path_table
= NULL
;
624 static int __cpuinit
iucv_cpu_notify(struct notifier_block
*self
,
625 unsigned long action
, void *hcpu
)
628 long cpu
= (long) hcpu
;
632 case CPU_UP_PREPARE_FROZEN
:
633 iucv_irq_data
[cpu
] = kmalloc_node(sizeof(struct iucv_irq_data
),
634 GFP_KERNEL
|GFP_DMA
, cpu_to_node(cpu
));
635 if (!iucv_irq_data
[cpu
])
636 return notifier_from_errno(-ENOMEM
);
638 iucv_param
[cpu
] = kmalloc_node(sizeof(union iucv_param
),
639 GFP_KERNEL
|GFP_DMA
, cpu_to_node(cpu
));
640 if (!iucv_param
[cpu
]) {
641 kfree(iucv_irq_data
[cpu
]);
642 iucv_irq_data
[cpu
] = NULL
;
643 return notifier_from_errno(-ENOMEM
);
645 iucv_param_irq
[cpu
] = kmalloc_node(sizeof(union iucv_param
),
646 GFP_KERNEL
|GFP_DMA
, cpu_to_node(cpu
));
647 if (!iucv_param_irq
[cpu
]) {
648 kfree(iucv_param
[cpu
]);
649 iucv_param
[cpu
] = NULL
;
650 kfree(iucv_irq_data
[cpu
]);
651 iucv_irq_data
[cpu
] = NULL
;
652 return notifier_from_errno(-ENOMEM
);
655 case CPU_UP_CANCELED
:
656 case CPU_UP_CANCELED_FROZEN
:
658 case CPU_DEAD_FROZEN
:
659 kfree(iucv_param_irq
[cpu
]);
660 iucv_param_irq
[cpu
] = NULL
;
661 kfree(iucv_param
[cpu
]);
662 iucv_param
[cpu
] = NULL
;
663 kfree(iucv_irq_data
[cpu
]);
664 iucv_irq_data
[cpu
] = NULL
;
667 case CPU_ONLINE_FROZEN
:
668 case CPU_DOWN_FAILED
:
669 case CPU_DOWN_FAILED_FROZEN
:
670 if (!iucv_path_table
)
672 smp_call_function_single(cpu
, iucv_declare_cpu
, NULL
, 1);
674 case CPU_DOWN_PREPARE
:
675 case CPU_DOWN_PREPARE_FROZEN
:
676 if (!iucv_path_table
)
678 cpumask
= iucv_buffer_cpumask
;
679 cpu_clear(cpu
, cpumask
);
680 if (cpus_empty(cpumask
))
681 /* Can't offline last IUCV enabled cpu. */
682 return notifier_from_errno(-EINVAL
);
683 smp_call_function_single(cpu
, iucv_retrieve_cpu
, NULL
, 1);
684 if (cpus_empty(iucv_irq_cpumask
))
685 smp_call_function_single(first_cpu(iucv_buffer_cpumask
),
686 iucv_allow_cpu
, NULL
, 1);
692 static struct notifier_block __refdata iucv_cpu_notifier
= {
693 .notifier_call
= iucv_cpu_notify
,
698 * @pathid: path identification number.
699 * @userdata: 16-bytes of user data.
701 * Sever an iucv path to free up the pathid. Used internally.
703 static int iucv_sever_pathid(u16 pathid
, u8 userdata
[16])
705 union iucv_param
*parm
;
707 parm
= iucv_param_irq
[smp_processor_id()];
708 memset(parm
, 0, sizeof(union iucv_param
));
710 memcpy(parm
->ctrl
.ipuser
, userdata
, sizeof(parm
->ctrl
.ipuser
));
711 parm
->ctrl
.ippathid
= pathid
;
712 return iucv_call_b2f0(IUCV_SEVER
, parm
);
716 * __iucv_cleanup_queue
717 * @dummy: unused dummy argument
719 * Nop function called via smp_call_function to force work items from
720 * pending external iucv interrupts to the work queue.
722 static void __iucv_cleanup_queue(void *dummy
)
729 * Function called after a path has been severed to find all remaining
730 * work items for the now stale pathid. The caller needs to hold the
733 static void iucv_cleanup_queue(void)
735 struct iucv_irq_list
*p
, *n
;
738 * When a path is severed, the pathid can be reused immediatly
739 * on a iucv connect or a connection pending interrupt. Remove
740 * all entries from the task queue that refer to a stale pathid
741 * (iucv_path_table[ix] == NULL). Only then do the iucv connect
742 * or deliver the connection pending interrupt. To get all the
743 * pending interrupts force them to the work queue by calling
744 * an empty function on all cpus.
746 smp_call_function(__iucv_cleanup_queue
, NULL
, 1);
747 spin_lock_irq(&iucv_queue_lock
);
748 list_for_each_entry_safe(p
, n
, &iucv_task_queue
, list
) {
749 /* Remove stale work items from the task queue. */
750 if (iucv_path_table
[p
->data
.ippathid
] == NULL
) {
755 spin_unlock_irq(&iucv_queue_lock
);
760 * @handler: address of iucv handler structure
761 * @smp: != 0 indicates that the handler can deal with out of order messages
763 * Registers a driver with IUCV.
765 * Returns 0 on success, -ENOMEM if the memory allocation for the pathid
766 * table failed, or -EIO if IUCV_DECLARE_BUFFER failed on all cpus.
768 int iucv_register(struct iucv_handler
*handler
, int smp
)
774 mutex_lock(&iucv_register_mutex
);
776 iucv_nonsmp_handler
++;
777 if (list_empty(&iucv_handler_list
)) {
781 } else if (!smp
&& iucv_nonsmp_handler
== 1)
783 INIT_LIST_HEAD(&handler
->paths
);
785 spin_lock_bh(&iucv_table_lock
);
786 list_add_tail(&handler
->list
, &iucv_handler_list
);
787 spin_unlock_bh(&iucv_table_lock
);
790 mutex_unlock(&iucv_register_mutex
);
793 EXPORT_SYMBOL(iucv_register
);
797 * @handler: address of iucv handler structure
798 * @smp: != 0 indicates that the handler can deal with out of order messages
800 * Unregister driver from IUCV.
802 void iucv_unregister(struct iucv_handler
*handler
, int smp
)
804 struct iucv_path
*p
, *n
;
806 mutex_lock(&iucv_register_mutex
);
807 spin_lock_bh(&iucv_table_lock
);
808 /* Remove handler from the iucv_handler_list. */
809 list_del_init(&handler
->list
);
810 /* Sever all pathids still refering to the handler. */
811 list_for_each_entry_safe(p
, n
, &handler
->paths
, list
) {
812 iucv_sever_pathid(p
->pathid
, NULL
);
813 iucv_path_table
[p
->pathid
] = NULL
;
817 spin_unlock_bh(&iucv_table_lock
);
819 iucv_nonsmp_handler
--;
820 if (list_empty(&iucv_handler_list
))
822 else if (!smp
&& iucv_nonsmp_handler
== 0)
824 mutex_unlock(&iucv_register_mutex
);
826 EXPORT_SYMBOL(iucv_unregister
);
828 static int iucv_reboot_event(struct notifier_block
*this,
829 unsigned long event
, void *ptr
)
834 on_each_cpu(iucv_block_cpu
, NULL
, 1);
836 for (i
= 0; i
< iucv_max_pathid
; i
++) {
837 if (iucv_path_table
[i
])
838 rc
= iucv_sever_pathid(i
, NULL
);
846 static struct notifier_block iucv_reboot_notifier
= {
847 .notifier_call
= iucv_reboot_event
,
852 * @path: address of iucv path structure
853 * @handler: address of iucv handler structure
854 * @userdata: 16 bytes of data reflected to the communication partner
855 * @private: private data passed to interrupt handlers for this path
857 * This function is issued after the user received a connection pending
858 * external interrupt and now wishes to complete the IUCV communication path.
860 * Returns the result of the CP IUCV call.
862 int iucv_path_accept(struct iucv_path
*path
, struct iucv_handler
*handler
,
863 u8 userdata
[16], void *private)
865 union iucv_param
*parm
;
869 if (cpus_empty(iucv_buffer_cpumask
)) {
873 /* Prepare parameter block. */
874 parm
= iucv_param
[smp_processor_id()];
875 memset(parm
, 0, sizeof(union iucv_param
));
876 parm
->ctrl
.ippathid
= path
->pathid
;
877 parm
->ctrl
.ipmsglim
= path
->msglim
;
879 memcpy(parm
->ctrl
.ipuser
, userdata
, sizeof(parm
->ctrl
.ipuser
));
880 parm
->ctrl
.ipflags1
= path
->flags
;
882 rc
= iucv_call_b2f0(IUCV_ACCEPT
, parm
);
884 path
->private = private;
885 path
->msglim
= parm
->ctrl
.ipmsglim
;
886 path
->flags
= parm
->ctrl
.ipflags1
;
892 EXPORT_SYMBOL(iucv_path_accept
);
896 * @path: address of iucv path structure
897 * @handler: address of iucv handler structure
898 * @userid: 8-byte user identification
899 * @system: 8-byte target system identification
900 * @userdata: 16 bytes of data reflected to the communication partner
901 * @private: private data passed to interrupt handlers for this path
903 * This function establishes an IUCV path. Although the connect may complete
904 * successfully, you are not able to use the path until you receive an IUCV
905 * Connection Complete external interrupt.
907 * Returns the result of the CP IUCV call.
909 int iucv_path_connect(struct iucv_path
*path
, struct iucv_handler
*handler
,
910 u8 userid
[8], u8 system
[8], u8 userdata
[16],
913 union iucv_param
*parm
;
916 spin_lock_bh(&iucv_table_lock
);
917 iucv_cleanup_queue();
918 if (cpus_empty(iucv_buffer_cpumask
)) {
922 parm
= iucv_param
[smp_processor_id()];
923 memset(parm
, 0, sizeof(union iucv_param
));
924 parm
->ctrl
.ipmsglim
= path
->msglim
;
925 parm
->ctrl
.ipflags1
= path
->flags
;
927 memcpy(parm
->ctrl
.ipvmid
, userid
, sizeof(parm
->ctrl
.ipvmid
));
928 ASCEBC(parm
->ctrl
.ipvmid
, sizeof(parm
->ctrl
.ipvmid
));
929 EBC_TOUPPER(parm
->ctrl
.ipvmid
, sizeof(parm
->ctrl
.ipvmid
));
932 memcpy(parm
->ctrl
.iptarget
, system
,
933 sizeof(parm
->ctrl
.iptarget
));
934 ASCEBC(parm
->ctrl
.iptarget
, sizeof(parm
->ctrl
.iptarget
));
935 EBC_TOUPPER(parm
->ctrl
.iptarget
, sizeof(parm
->ctrl
.iptarget
));
938 memcpy(parm
->ctrl
.ipuser
, userdata
, sizeof(parm
->ctrl
.ipuser
));
940 rc
= iucv_call_b2f0(IUCV_CONNECT
, parm
);
942 if (parm
->ctrl
.ippathid
< iucv_max_pathid
) {
943 path
->pathid
= parm
->ctrl
.ippathid
;
944 path
->msglim
= parm
->ctrl
.ipmsglim
;
945 path
->flags
= parm
->ctrl
.ipflags1
;
946 path
->handler
= handler
;
947 path
->private = private;
948 list_add_tail(&path
->list
, &handler
->paths
);
949 iucv_path_table
[path
->pathid
] = path
;
951 iucv_sever_pathid(parm
->ctrl
.ippathid
,
957 spin_unlock_bh(&iucv_table_lock
);
960 EXPORT_SYMBOL(iucv_path_connect
);
964 * @path: address of iucv path structure
965 * @userdata: 16 bytes of data reflected to the communication partner
967 * This function temporarily suspends incoming messages on an IUCV path.
968 * You can later reactivate the path by invoking the iucv_resume function.
970 * Returns the result from the CP IUCV call.
972 int iucv_path_quiesce(struct iucv_path
*path
, u8 userdata
[16])
974 union iucv_param
*parm
;
978 if (cpus_empty(iucv_buffer_cpumask
)) {
982 parm
= iucv_param
[smp_processor_id()];
983 memset(parm
, 0, sizeof(union iucv_param
));
985 memcpy(parm
->ctrl
.ipuser
, userdata
, sizeof(parm
->ctrl
.ipuser
));
986 parm
->ctrl
.ippathid
= path
->pathid
;
987 rc
= iucv_call_b2f0(IUCV_QUIESCE
, parm
);
992 EXPORT_SYMBOL(iucv_path_quiesce
);
996 * @path: address of iucv path structure
997 * @userdata: 16 bytes of data reflected to the communication partner
999 * This function resumes incoming messages on an IUCV path that has
1000 * been stopped with iucv_path_quiesce.
1002 * Returns the result from the CP IUCV call.
1004 int iucv_path_resume(struct iucv_path
*path
, u8 userdata
[16])
1006 union iucv_param
*parm
;
1010 if (cpus_empty(iucv_buffer_cpumask
)) {
1014 parm
= iucv_param
[smp_processor_id()];
1015 memset(parm
, 0, sizeof(union iucv_param
));
1017 memcpy(parm
->ctrl
.ipuser
, userdata
, sizeof(parm
->ctrl
.ipuser
));
1018 parm
->ctrl
.ippathid
= path
->pathid
;
1019 rc
= iucv_call_b2f0(IUCV_RESUME
, parm
);
1027 * @path: address of iucv path structure
1028 * @userdata: 16 bytes of data reflected to the communication partner
1030 * This function terminates an IUCV path.
1032 * Returns the result from the CP IUCV call.
1034 int iucv_path_sever(struct iucv_path
*path
, u8 userdata
[16])
1039 if (cpus_empty(iucv_buffer_cpumask
)) {
1043 if (iucv_active_cpu
!= smp_processor_id())
1044 spin_lock_bh(&iucv_table_lock
);
1045 rc
= iucv_sever_pathid(path
->pathid
, userdata
);
1046 iucv_path_table
[path
->pathid
] = NULL
;
1047 list_del_init(&path
->list
);
1048 if (iucv_active_cpu
!= smp_processor_id())
1049 spin_unlock_bh(&iucv_table_lock
);
1054 EXPORT_SYMBOL(iucv_path_sever
);
1057 * iucv_message_purge
1058 * @path: address of iucv path structure
1059 * @msg: address of iucv msg structure
1060 * @srccls: source class of message
1062 * Cancels a message you have sent.
1064 * Returns the result from the CP IUCV call.
1066 int iucv_message_purge(struct iucv_path
*path
, struct iucv_message
*msg
,
1069 union iucv_param
*parm
;
1073 if (cpus_empty(iucv_buffer_cpumask
)) {
1077 parm
= iucv_param
[smp_processor_id()];
1078 memset(parm
, 0, sizeof(union iucv_param
));
1079 parm
->purge
.ippathid
= path
->pathid
;
1080 parm
->purge
.ipmsgid
= msg
->id
;
1081 parm
->purge
.ipsrccls
= srccls
;
1082 parm
->purge
.ipflags1
= IUCV_IPSRCCLS
| IUCV_IPFGMID
| IUCV_IPFGPID
;
1083 rc
= iucv_call_b2f0(IUCV_PURGE
, parm
);
1085 msg
->audit
= (*(u32
*) &parm
->purge
.ipaudit
) >> 8;
1086 msg
->tag
= parm
->purge
.ipmsgtag
;
1092 EXPORT_SYMBOL(iucv_message_purge
);
1095 * iucv_message_receive_iprmdata
1096 * @path: address of iucv path structure
1097 * @msg: address of iucv msg structure
1098 * @flags: how the message is received (IUCV_IPBUFLST)
1099 * @buffer: address of data buffer or address of struct iucv_array
1100 * @size: length of data buffer
1103 * Internal function used by iucv_message_receive and __iucv_message_receive
1104 * to receive RMDATA data stored in struct iucv_message.
1106 static int iucv_message_receive_iprmdata(struct iucv_path
*path
,
1107 struct iucv_message
*msg
,
1108 u8 flags
, void *buffer
,
1109 size_t size
, size_t *residual
)
1111 struct iucv_array
*array
;
1116 * Message is 8 bytes long and has been stored to the
1117 * message descriptor itself.
1120 *residual
= abs(size
- 8);
1122 if (flags
& IUCV_IPBUFLST
) {
1123 /* Copy to struct iucv_array. */
1124 size
= (size
< 8) ? size
: 8;
1125 for (array
= buffer
; size
> 0; array
++) {
1126 copy
= min_t(size_t, size
, array
->length
);
1127 memcpy((u8
*)(addr_t
) array
->address
,
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 (cpus_empty(iucv_buffer_cpumask
)) {
1169 parm
= iucv_param
[smp_processor_id()];
1170 memset(parm
, 0, sizeof(union iucv_param
));
1171 parm
->db
.ipbfadr1
= (u32
)(addr_t
) buffer
;
1172 parm
->db
.ipbfln1f
= (u32
) size
;
1173 parm
->db
.ipmsgid
= msg
->id
;
1174 parm
->db
.ippathid
= path
->pathid
;
1175 parm
->db
.iptrgcls
= msg
->class;
1176 parm
->db
.ipflags1
= (flags
| IUCV_IPFGPID
|
1177 IUCV_IPFGMID
| IUCV_IPTRGCLS
);
1178 rc
= iucv_call_b2f0(IUCV_RECEIVE
, parm
);
1179 if (!rc
|| rc
== 5) {
1180 msg
->flags
= parm
->db
.ipflags1
;
1182 *residual
= parm
->db
.ipbfln1f
;
1187 EXPORT_SYMBOL(__iucv_message_receive
);
1190 * iucv_message_receive
1191 * @path: address of iucv path structure
1192 * @msg: address of iucv msg structure
1193 * @flags: how the message is received (IUCV_IPBUFLST)
1194 * @buffer: address of data buffer or address of struct iucv_array
1195 * @size: length of data buffer
1198 * This function receives messages that are being sent to you over
1199 * established paths. This function will deal with RMDATA messages
1200 * embedded in struct iucv_message as well.
1202 * Locking: local_bh_enable/local_bh_disable
1204 * Returns the result from the CP IUCV call.
1206 int iucv_message_receive(struct iucv_path
*path
, struct iucv_message
*msg
,
1207 u8 flags
, void *buffer
, size_t size
, size_t *residual
)
1211 if (msg
->flags
& IUCV_IPRMDATA
)
1212 return iucv_message_receive_iprmdata(path
, msg
, flags
,
1213 buffer
, size
, residual
);
1215 rc
= __iucv_message_receive(path
, msg
, flags
, buffer
, size
, residual
);
1219 EXPORT_SYMBOL(iucv_message_receive
);
1222 * iucv_message_reject
1223 * @path: address of iucv path structure
1224 * @msg: address of iucv msg structure
1226 * The reject function refuses a specified message. Between the time you
1227 * are notified of a message and the time that you complete the message,
1228 * the message may be rejected.
1230 * Returns the result from the CP IUCV call.
1232 int iucv_message_reject(struct iucv_path
*path
, struct iucv_message
*msg
)
1234 union iucv_param
*parm
;
1238 if (cpus_empty(iucv_buffer_cpumask
)) {
1242 parm
= iucv_param
[smp_processor_id()];
1243 memset(parm
, 0, sizeof(union iucv_param
));
1244 parm
->db
.ippathid
= path
->pathid
;
1245 parm
->db
.ipmsgid
= msg
->id
;
1246 parm
->db
.iptrgcls
= msg
->class;
1247 parm
->db
.ipflags1
= (IUCV_IPTRGCLS
| IUCV_IPFGMID
| IUCV_IPFGPID
);
1248 rc
= iucv_call_b2f0(IUCV_REJECT
, parm
);
1253 EXPORT_SYMBOL(iucv_message_reject
);
1256 * iucv_message_reply
1257 * @path: address of iucv path structure
1258 * @msg: address of iucv msg structure
1259 * @flags: how the reply is sent (IUCV_IPRMDATA, IUCV_IPPRTY, IUCV_IPBUFLST)
1260 * @reply: address of reply data buffer or address of struct iucv_array
1261 * @size: length of reply data buffer
1263 * This function responds to the two-way messages that you receive. You
1264 * must identify completely the message to which you wish to reply. ie,
1265 * pathid, msgid, and trgcls. Prmmsg signifies the data is moved into
1266 * the parameter list.
1268 * Returns the result from the CP IUCV call.
1270 int iucv_message_reply(struct iucv_path
*path
, struct iucv_message
*msg
,
1271 u8 flags
, void *reply
, size_t size
)
1273 union iucv_param
*parm
;
1277 if (cpus_empty(iucv_buffer_cpumask
)) {
1281 parm
= iucv_param
[smp_processor_id()];
1282 memset(parm
, 0, sizeof(union iucv_param
));
1283 if (flags
& IUCV_IPRMDATA
) {
1284 parm
->dpl
.ippathid
= path
->pathid
;
1285 parm
->dpl
.ipflags1
= flags
;
1286 parm
->dpl
.ipmsgid
= msg
->id
;
1287 parm
->dpl
.iptrgcls
= msg
->class;
1288 memcpy(parm
->dpl
.iprmmsg
, reply
, min_t(size_t, size
, 8));
1290 parm
->db
.ipbfadr1
= (u32
)(addr_t
) reply
;
1291 parm
->db
.ipbfln1f
= (u32
) size
;
1292 parm
->db
.ippathid
= path
->pathid
;
1293 parm
->db
.ipflags1
= flags
;
1294 parm
->db
.ipmsgid
= msg
->id
;
1295 parm
->db
.iptrgcls
= msg
->class;
1297 rc
= iucv_call_b2f0(IUCV_REPLY
, parm
);
1302 EXPORT_SYMBOL(iucv_message_reply
);
1305 * __iucv_message_send
1306 * @path: address of iucv path structure
1307 * @msg: address of iucv msg structure
1308 * @flags: how the message is sent (IUCV_IPRMDATA, IUCV_IPPRTY, IUCV_IPBUFLST)
1309 * @srccls: source class of message
1310 * @buffer: address of send buffer or address of struct iucv_array
1311 * @size: length of send buffer
1313 * This function transmits data to another application. Data to be
1314 * transmitted is in a buffer and this is a one-way message and the
1315 * receiver will not reply to the message.
1317 * Locking: no locking
1319 * Returns the result from the CP IUCV call.
1321 int __iucv_message_send(struct iucv_path
*path
, struct iucv_message
*msg
,
1322 u8 flags
, u32 srccls
, void *buffer
, size_t size
)
1324 union iucv_param
*parm
;
1327 if (cpus_empty(iucv_buffer_cpumask
)) {
1331 parm
= iucv_param
[smp_processor_id()];
1332 memset(parm
, 0, sizeof(union iucv_param
));
1333 if (flags
& IUCV_IPRMDATA
) {
1334 /* Message of 8 bytes can be placed into the parameter list. */
1335 parm
->dpl
.ippathid
= path
->pathid
;
1336 parm
->dpl
.ipflags1
= flags
| IUCV_IPNORPY
;
1337 parm
->dpl
.iptrgcls
= msg
->class;
1338 parm
->dpl
.ipsrccls
= srccls
;
1339 parm
->dpl
.ipmsgtag
= msg
->tag
;
1340 memcpy(parm
->dpl
.iprmmsg
, buffer
, 8);
1342 parm
->db
.ipbfadr1
= (u32
)(addr_t
) buffer
;
1343 parm
->db
.ipbfln1f
= (u32
) size
;
1344 parm
->db
.ippathid
= path
->pathid
;
1345 parm
->db
.ipflags1
= flags
| IUCV_IPNORPY
;
1346 parm
->db
.iptrgcls
= msg
->class;
1347 parm
->db
.ipsrccls
= srccls
;
1348 parm
->db
.ipmsgtag
= msg
->tag
;
1350 rc
= iucv_call_b2f0(IUCV_SEND
, parm
);
1352 msg
->id
= parm
->db
.ipmsgid
;
1356 EXPORT_SYMBOL(__iucv_message_send
);
1360 * @path: address of iucv path structure
1361 * @msg: address of iucv msg structure
1362 * @flags: how the message is sent (IUCV_IPRMDATA, IUCV_IPPRTY, IUCV_IPBUFLST)
1363 * @srccls: source class of message
1364 * @buffer: address of send buffer or address of struct iucv_array
1365 * @size: length of send buffer
1367 * This function transmits data to another application. Data to be
1368 * transmitted is in a buffer and this is a one-way message and the
1369 * receiver will not reply to the message.
1371 * Locking: local_bh_enable/local_bh_disable
1373 * Returns the result from the CP IUCV call.
1375 int iucv_message_send(struct iucv_path
*path
, struct iucv_message
*msg
,
1376 u8 flags
, u32 srccls
, void *buffer
, size_t size
)
1381 rc
= __iucv_message_send(path
, msg
, flags
, srccls
, buffer
, size
);
1385 EXPORT_SYMBOL(iucv_message_send
);
1388 * iucv_message_send2way
1389 * @path: address of iucv path structure
1390 * @msg: address of iucv msg structure
1391 * @flags: how the message is sent and the reply is received
1392 * (IUCV_IPRMDATA, IUCV_IPBUFLST, IUCV_IPPRTY, IUCV_ANSLST)
1393 * @srccls: source class of message
1394 * @buffer: address of send buffer or address of struct iucv_array
1395 * @size: length of send buffer
1396 * @ansbuf: address of answer buffer or address of struct iucv_array
1397 * @asize: size of reply buffer
1399 * This function transmits data to another application. Data to be
1400 * transmitted is in a buffer. The receiver of the send is expected to
1401 * reply to the message and a buffer is provided into which IUCV moves
1402 * the reply to this message.
1404 * Returns the result from the CP IUCV call.
1406 int iucv_message_send2way(struct iucv_path
*path
, struct iucv_message
*msg
,
1407 u8 flags
, u32 srccls
, void *buffer
, size_t size
,
1408 void *answer
, size_t asize
, size_t *residual
)
1410 union iucv_param
*parm
;
1414 if (cpus_empty(iucv_buffer_cpumask
)) {
1418 parm
= iucv_param
[smp_processor_id()];
1419 memset(parm
, 0, sizeof(union iucv_param
));
1420 if (flags
& IUCV_IPRMDATA
) {
1421 parm
->dpl
.ippathid
= path
->pathid
;
1422 parm
->dpl
.ipflags1
= path
->flags
; /* priority message */
1423 parm
->dpl
.iptrgcls
= msg
->class;
1424 parm
->dpl
.ipsrccls
= srccls
;
1425 parm
->dpl
.ipmsgtag
= msg
->tag
;
1426 parm
->dpl
.ipbfadr2
= (u32
)(addr_t
) answer
;
1427 parm
->dpl
.ipbfln2f
= (u32
) asize
;
1428 memcpy(parm
->dpl
.iprmmsg
, buffer
, 8);
1430 parm
->db
.ippathid
= path
->pathid
;
1431 parm
->db
.ipflags1
= path
->flags
; /* priority message */
1432 parm
->db
.iptrgcls
= msg
->class;
1433 parm
->db
.ipsrccls
= srccls
;
1434 parm
->db
.ipmsgtag
= msg
->tag
;
1435 parm
->db
.ipbfadr1
= (u32
)(addr_t
) buffer
;
1436 parm
->db
.ipbfln1f
= (u32
) size
;
1437 parm
->db
.ipbfadr2
= (u32
)(addr_t
) answer
;
1438 parm
->db
.ipbfln2f
= (u32
) asize
;
1440 rc
= iucv_call_b2f0(IUCV_SEND
, parm
);
1442 msg
->id
= parm
->db
.ipmsgid
;
1447 EXPORT_SYMBOL(iucv_message_send2way
);
1451 * @data: Pointer to external interrupt buffer
1453 * Process connection pending work item. Called from tasklet while holding
1456 struct iucv_path_pending
{
1469 static void iucv_path_pending(struct iucv_irq_data
*data
)
1471 struct iucv_path_pending
*ipp
= (void *) data
;
1472 struct iucv_handler
*handler
;
1473 struct iucv_path
*path
;
1476 BUG_ON(iucv_path_table
[ipp
->ippathid
]);
1477 /* New pathid, handler found. Create a new path struct. */
1478 error
= iucv_error_no_memory
;
1479 path
= iucv_path_alloc(ipp
->ipmsglim
, ipp
->ipflags1
, GFP_ATOMIC
);
1482 path
->pathid
= ipp
->ippathid
;
1483 iucv_path_table
[path
->pathid
] = path
;
1484 EBCASC(ipp
->ipvmid
, 8);
1486 /* Call registered handler until one is found that wants the path. */
1487 list_for_each_entry(handler
, &iucv_handler_list
, list
) {
1488 if (!handler
->path_pending
)
1491 * Add path to handler to allow a call to iucv_path_sever
1492 * inside the path_pending function. If the handler returns
1493 * an error remove the path from the handler again.
1495 list_add(&path
->list
, &handler
->paths
);
1496 path
->handler
= handler
;
1497 if (!handler
->path_pending(path
, ipp
->ipvmid
, ipp
->ipuser
))
1499 list_del(&path
->list
);
1500 path
->handler
= NULL
;
1502 /* No handler wanted the path. */
1503 iucv_path_table
[path
->pathid
] = NULL
;
1504 iucv_path_free(path
);
1505 error
= iucv_error_no_listener
;
1507 iucv_sever_pathid(ipp
->ippathid
, error
);
1511 * iucv_path_complete
1512 * @data: Pointer to external interrupt buffer
1514 * Process connection complete work item. Called from tasklet while holding
1517 struct iucv_path_complete
{
1530 static void iucv_path_complete(struct iucv_irq_data
*data
)
1532 struct iucv_path_complete
*ipc
= (void *) data
;
1533 struct iucv_path
*path
= iucv_path_table
[ipc
->ippathid
];
1536 path
->flags
= ipc
->ipflags1
;
1537 if (path
&& path
->handler
&& path
->handler
->path_complete
)
1538 path
->handler
->path_complete(path
, ipc
->ipuser
);
1543 * @data: Pointer to external interrupt buffer
1545 * Process connection severed work item. Called from tasklet while holding
1548 struct iucv_path_severed
{
1560 static void iucv_path_severed(struct iucv_irq_data
*data
)
1562 struct iucv_path_severed
*ips
= (void *) data
;
1563 struct iucv_path
*path
= iucv_path_table
[ips
->ippathid
];
1565 if (!path
|| !path
->handler
) /* Already severed */
1567 if (path
->handler
->path_severed
)
1568 path
->handler
->path_severed(path
, ips
->ipuser
);
1570 iucv_sever_pathid(path
->pathid
, NULL
);
1571 iucv_path_table
[path
->pathid
] = NULL
;
1572 list_del(&path
->list
);
1573 iucv_path_free(path
);
1578 * iucv_path_quiesced
1579 * @data: Pointer to external interrupt buffer
1581 * Process connection quiesced work item. Called from tasklet while holding
1584 struct iucv_path_quiesced
{
1596 static void iucv_path_quiesced(struct iucv_irq_data
*data
)
1598 struct iucv_path_quiesced
*ipq
= (void *) data
;
1599 struct iucv_path
*path
= iucv_path_table
[ipq
->ippathid
];
1601 if (path
&& path
->handler
&& path
->handler
->path_quiesced
)
1602 path
->handler
->path_quiesced(path
, ipq
->ipuser
);
1607 * @data: Pointer to external interrupt buffer
1609 * Process connection resumed work item. Called from tasklet while holding
1612 struct iucv_path_resumed
{
1624 static void iucv_path_resumed(struct iucv_irq_data
*data
)
1626 struct iucv_path_resumed
*ipr
= (void *) data
;
1627 struct iucv_path
*path
= iucv_path_table
[ipr
->ippathid
];
1629 if (path
&& path
->handler
&& path
->handler
->path_resumed
)
1630 path
->handler
->path_resumed(path
, ipr
->ipuser
);
1634 * iucv_message_complete
1635 * @data: Pointer to external interrupt buffer
1637 * Process message complete work item. Called from tasklet while holding
1640 struct iucv_message_complete
{
1655 static void iucv_message_complete(struct iucv_irq_data
*data
)
1657 struct iucv_message_complete
*imc
= (void *) data
;
1658 struct iucv_path
*path
= iucv_path_table
[imc
->ippathid
];
1659 struct iucv_message msg
;
1661 if (path
&& path
->handler
&& path
->handler
->message_complete
) {
1662 msg
.flags
= imc
->ipflags1
;
1663 msg
.id
= imc
->ipmsgid
;
1664 msg
.audit
= imc
->ipaudit
;
1665 memcpy(msg
.rmmsg
, imc
->iprmmsg
, 8);
1666 msg
.class = imc
->ipsrccls
;
1667 msg
.tag
= imc
->ipmsgtag
;
1668 msg
.length
= imc
->ipbfln2f
;
1669 path
->handler
->message_complete(path
, &msg
);
1674 * iucv_message_pending
1675 * @data: Pointer to external interrupt buffer
1677 * Process message pending work item. Called from tasklet while holding
1680 struct iucv_message_pending
{
1700 static void iucv_message_pending(struct iucv_irq_data
*data
)
1702 struct iucv_message_pending
*imp
= (void *) data
;
1703 struct iucv_path
*path
= iucv_path_table
[imp
->ippathid
];
1704 struct iucv_message msg
;
1706 if (path
&& path
->handler
&& path
->handler
->message_pending
) {
1707 msg
.flags
= imp
->ipflags1
;
1708 msg
.id
= imp
->ipmsgid
;
1709 msg
.class = imp
->iptrgcls
;
1710 if (imp
->ipflags1
& IUCV_IPRMDATA
) {
1711 memcpy(msg
.rmmsg
, imp
->ln1msg1
.iprmmsg1
, 8);
1714 msg
.length
= imp
->ln1msg2
.ipbfln1f
;
1715 msg
.reply_size
= imp
->ipbfln2f
;
1716 path
->handler
->message_pending(path
, &msg
);
1723 * This tasklet loops over the queue of irq buffers created by
1724 * iucv_external_interrupt, calls the appropriate action handler
1725 * and then frees the buffer.
1727 static void iucv_tasklet_fn(unsigned long ignored
)
1729 typedef void iucv_irq_fn(struct iucv_irq_data
*);
1730 static iucv_irq_fn
*irq_fn
[] = {
1731 [0x02] = iucv_path_complete
,
1732 [0x03] = iucv_path_severed
,
1733 [0x04] = iucv_path_quiesced
,
1734 [0x05] = iucv_path_resumed
,
1735 [0x06] = iucv_message_complete
,
1736 [0x07] = iucv_message_complete
,
1737 [0x08] = iucv_message_pending
,
1738 [0x09] = iucv_message_pending
,
1740 LIST_HEAD(task_queue
);
1741 struct iucv_irq_list
*p
, *n
;
1743 /* Serialize tasklet, iucv_path_sever and iucv_path_connect. */
1744 if (!spin_trylock(&iucv_table_lock
)) {
1745 tasklet_schedule(&iucv_tasklet
);
1748 iucv_active_cpu
= smp_processor_id();
1750 spin_lock_irq(&iucv_queue_lock
);
1751 list_splice_init(&iucv_task_queue
, &task_queue
);
1752 spin_unlock_irq(&iucv_queue_lock
);
1754 list_for_each_entry_safe(p
, n
, &task_queue
, list
) {
1755 list_del_init(&p
->list
);
1756 irq_fn
[p
->data
.iptype
](&p
->data
);
1760 iucv_active_cpu
= -1;
1761 spin_unlock(&iucv_table_lock
);
1767 * This work function loops over the queue of path pending irq blocks
1768 * created by iucv_external_interrupt, calls the appropriate action
1769 * handler and then frees the buffer.
1771 static void iucv_work_fn(struct work_struct
*work
)
1773 LIST_HEAD(work_queue
);
1774 struct iucv_irq_list
*p
, *n
;
1776 /* Serialize tasklet, iucv_path_sever and iucv_path_connect. */
1777 spin_lock_bh(&iucv_table_lock
);
1778 iucv_active_cpu
= smp_processor_id();
1780 spin_lock_irq(&iucv_queue_lock
);
1781 list_splice_init(&iucv_work_queue
, &work_queue
);
1782 spin_unlock_irq(&iucv_queue_lock
);
1784 iucv_cleanup_queue();
1785 list_for_each_entry_safe(p
, n
, &work_queue
, list
) {
1786 list_del_init(&p
->list
);
1787 iucv_path_pending(&p
->data
);
1791 iucv_active_cpu
= -1;
1792 spin_unlock_bh(&iucv_table_lock
);
1796 * 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(unsigned int ext_int_code
,
1803 unsigned int param32
, unsigned long param64
)
1805 struct iucv_irq_data
*p
;
1806 struct iucv_irq_list
*work
;
1808 kstat_cpu(smp_processor_id()).irqs
[EXTINT_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_warning("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 static int iucv_pm_prepare(struct device
*dev
)
1839 #ifdef CONFIG_PM_DEBUG
1840 printk(KERN_INFO
"iucv_pm_prepare\n");
1842 if (dev
->driver
&& dev
->driver
->pm
&& dev
->driver
->pm
->prepare
)
1843 rc
= dev
->driver
->pm
->prepare(dev
);
1847 static void iucv_pm_complete(struct device
*dev
)
1849 #ifdef CONFIG_PM_DEBUG
1850 printk(KERN_INFO
"iucv_pm_complete\n");
1852 if (dev
->driver
&& dev
->driver
->pm
&& dev
->driver
->pm
->complete
)
1853 dev
->driver
->pm
->complete(dev
);
1857 * iucv_path_table_empty() - determine if iucv path table is empty
1859 * Returns 0 if there are still iucv pathes defined
1860 * 1 if there are no iucv pathes defined
1862 int iucv_path_table_empty(void)
1866 for (i
= 0; i
< iucv_max_pathid
; i
++) {
1867 if (iucv_path_table
[i
])
1874 * iucv_pm_freeze() - Freeze PM callback
1875 * @dev: iucv-based device
1877 * disable iucv interrupts
1878 * invoke callback function of the iucv-based driver
1879 * shut down iucv, if no iucv-pathes are established anymore
1881 static int iucv_pm_freeze(struct device
*dev
)
1884 struct iucv_irq_list
*p
, *n
;
1887 #ifdef CONFIG_PM_DEBUG
1888 printk(KERN_WARNING
"iucv_pm_freeze\n");
1890 if (iucv_pm_state
!= IUCV_PM_FREEZING
) {
1891 for_each_cpu_mask_nr(cpu
, iucv_irq_cpumask
)
1892 smp_call_function_single(cpu
, iucv_block_cpu_almost
,
1894 cancel_work_sync(&iucv_work
);
1895 list_for_each_entry_safe(p
, n
, &iucv_work_queue
, list
) {
1896 list_del_init(&p
->list
);
1897 iucv_sever_pathid(p
->data
.ippathid
,
1898 iucv_error_no_listener
);
1902 iucv_pm_state
= IUCV_PM_FREEZING
;
1903 if (dev
->driver
&& dev
->driver
->pm
&& dev
->driver
->pm
->freeze
)
1904 rc
= dev
->driver
->pm
->freeze(dev
);
1905 if (iucv_path_table_empty())
1911 * iucv_pm_thaw() - Thaw PM callback
1912 * @dev: iucv-based device
1914 * make iucv ready for use again: allocate path table, declare interrupt buffers
1915 * and enable iucv interrupts
1916 * invoke callback function of the iucv-based driver
1918 static int iucv_pm_thaw(struct device
*dev
)
1922 #ifdef CONFIG_PM_DEBUG
1923 printk(KERN_WARNING
"iucv_pm_thaw\n");
1925 iucv_pm_state
= IUCV_PM_THAWING
;
1926 if (!iucv_path_table
) {
1931 if (cpus_empty(iucv_irq_cpumask
)) {
1932 if (iucv_nonsmp_handler
)
1933 /* enable interrupts on one cpu */
1934 iucv_allow_cpu(NULL
);
1936 /* enable interrupts on all cpus */
1939 if (dev
->driver
&& dev
->driver
->pm
&& dev
->driver
->pm
->thaw
)
1940 rc
= dev
->driver
->pm
->thaw(dev
);
1946 * iucv_pm_restore() - Restore PM callback
1947 * @dev: iucv-based device
1949 * make iucv ready for use again: allocate path table, declare interrupt buffers
1950 * and enable iucv interrupts
1951 * invoke callback function of the iucv-based driver
1953 static int iucv_pm_restore(struct device
*dev
)
1957 #ifdef CONFIG_PM_DEBUG
1958 printk(KERN_WARNING
"iucv_pm_restore %p\n", iucv_path_table
);
1960 if ((iucv_pm_state
!= IUCV_PM_RESTORING
) && iucv_path_table
)
1961 pr_warning("Suspending Linux did not completely close all IUCV "
1963 iucv_pm_state
= IUCV_PM_RESTORING
;
1964 if (cpus_empty(iucv_irq_cpumask
)) {
1965 rc
= iucv_query_maxconn();
1970 if (dev
->driver
&& dev
->driver
->pm
&& dev
->driver
->pm
->restore
)
1971 rc
= dev
->driver
->pm
->restore(dev
);
1979 * Allocates and initializes various data structures.
1981 static int __init
iucv_init(void)
1986 if (!MACHINE_IS_VM
) {
1987 rc
= -EPROTONOSUPPORT
;
1990 rc
= iucv_query_maxconn();
1993 rc
= register_external_interrupt(0x4000, iucv_external_interrupt
);
1996 iucv_root
= root_device_register("iucv");
1997 if (IS_ERR(iucv_root
)) {
1998 rc
= PTR_ERR(iucv_root
);
2002 for_each_online_cpu(cpu
) {
2003 /* Note: GFP_DMA used to get memory below 2G */
2004 iucv_irq_data
[cpu
] = kmalloc_node(sizeof(struct iucv_irq_data
),
2005 GFP_KERNEL
|GFP_DMA
, cpu_to_node(cpu
));
2006 if (!iucv_irq_data
[cpu
]) {
2011 /* Allocate parameter blocks. */
2012 iucv_param
[cpu
] = kmalloc_node(sizeof(union iucv_param
),
2013 GFP_KERNEL
|GFP_DMA
, cpu_to_node(cpu
));
2014 if (!iucv_param
[cpu
]) {
2018 iucv_param_irq
[cpu
] = kmalloc_node(sizeof(union iucv_param
),
2019 GFP_KERNEL
|GFP_DMA
, cpu_to_node(cpu
));
2020 if (!iucv_param_irq
[cpu
]) {
2026 rc
= register_hotcpu_notifier(&iucv_cpu_notifier
);
2029 rc
= register_reboot_notifier(&iucv_reboot_notifier
);
2032 ASCEBC(iucv_error_no_listener
, 16);
2033 ASCEBC(iucv_error_no_memory
, 16);
2034 ASCEBC(iucv_error_pathid
, 16);
2036 rc
= bus_register(&iucv_bus
);
2042 unregister_reboot_notifier(&iucv_reboot_notifier
);
2044 unregister_hotcpu_notifier(&iucv_cpu_notifier
);
2046 for_each_possible_cpu(cpu
) {
2047 kfree(iucv_param_irq
[cpu
]);
2048 iucv_param_irq
[cpu
] = NULL
;
2049 kfree(iucv_param
[cpu
]);
2050 iucv_param
[cpu
] = NULL
;
2051 kfree(iucv_irq_data
[cpu
]);
2052 iucv_irq_data
[cpu
] = NULL
;
2054 root_device_unregister(iucv_root
);
2056 unregister_external_interrupt(0x4000, iucv_external_interrupt
);
2064 * Frees everything allocated from iucv_init.
2066 static void __exit
iucv_exit(void)
2068 struct iucv_irq_list
*p
, *n
;
2071 spin_lock_irq(&iucv_queue_lock
);
2072 list_for_each_entry_safe(p
, n
, &iucv_task_queue
, list
)
2074 list_for_each_entry_safe(p
, n
, &iucv_work_queue
, list
)
2076 spin_unlock_irq(&iucv_queue_lock
);
2077 unregister_reboot_notifier(&iucv_reboot_notifier
);
2078 unregister_hotcpu_notifier(&iucv_cpu_notifier
);
2079 for_each_possible_cpu(cpu
) {
2080 kfree(iucv_param_irq
[cpu
]);
2081 iucv_param_irq
[cpu
] = NULL
;
2082 kfree(iucv_param
[cpu
]);
2083 iucv_param
[cpu
] = NULL
;
2084 kfree(iucv_irq_data
[cpu
]);
2085 iucv_irq_data
[cpu
] = NULL
;
2087 root_device_unregister(iucv_root
);
2088 bus_unregister(&iucv_bus
);
2089 unregister_external_interrupt(0x4000, iucv_external_interrupt
);
2092 subsys_initcall(iucv_init
);
2093 module_exit(iucv_exit
);
2095 MODULE_AUTHOR("(C) 2001 IBM Corp. by Fritz Elfert (felfert@millenux.com)");
2096 MODULE_DESCRIPTION("Linux for S/390 IUCV lowlevel driver");
2097 MODULE_LICENSE("GPL");