1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright IBM Corp. 2006, 2012
4 * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com>
5 * Martin Schwidefsky <schwidefsky@de.ibm.com>
6 * Ralph Wuerthner <rwuerthn@de.ibm.com>
7 * Felix Beck <felix.beck@de.ibm.com>
8 * Holger Dengler <hd@linux.vnet.ibm.com>
10 * Adjunct processor bus.
13 #define KMSG_COMPONENT "ap"
14 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
16 #include <linux/kernel_stat.h>
17 #include <linux/moduleparam.h>
18 #include <linux/init.h>
19 #include <linux/delay.h>
20 #include <linux/err.h>
21 #include <linux/interrupt.h>
22 #include <linux/workqueue.h>
23 #include <linux/slab.h>
24 #include <linux/notifier.h>
25 #include <linux/kthread.h>
26 #include <linux/mutex.h>
27 #include <linux/suspend.h>
29 #include <linux/atomic.h>
31 #include <linux/hrtimer.h>
32 #include <linux/ktime.h>
33 #include <asm/facility.h>
34 #include <linux/crypto.h>
35 #include <linux/mod_devicetable.h>
36 #include <linux/debugfs.h>
37 #include <linux/ctype.h>
43 * Module parameters; note though this file itself isn't modular.
45 int ap_domain_index
= -1; /* Adjunct Processor Domain Index */
46 static DEFINE_SPINLOCK(ap_domain_lock
);
47 module_param_named(domain
, ap_domain_index
, int, 0440);
48 MODULE_PARM_DESC(domain
, "domain index for ap devices");
49 EXPORT_SYMBOL(ap_domain_index
);
51 static int ap_thread_flag
;
52 module_param_named(poll_thread
, ap_thread_flag
, int, 0440);
53 MODULE_PARM_DESC(poll_thread
, "Turn on/off poll thread, default is 0 (off).");
56 module_param_named(apmask
, apm_str
, charp
, 0440);
57 MODULE_PARM_DESC(apmask
, "AP bus adapter mask.");
60 module_param_named(aqmask
, aqm_str
, charp
, 0440);
61 MODULE_PARM_DESC(aqmask
, "AP bus domain mask.");
63 static struct device
*ap_root_device
;
65 DEFINE_SPINLOCK(ap_list_lock
);
66 LIST_HEAD(ap_card_list
);
68 /* Default permissions (ioctl, card and domain masking) */
69 struct ap_perms ap_perms
;
70 EXPORT_SYMBOL(ap_perms
);
71 DEFINE_MUTEX(ap_perms_mutex
);
72 EXPORT_SYMBOL(ap_perms_mutex
);
74 static struct ap_config_info
*ap_configuration
;
75 static bool initialised
;
78 * AP bus related debug feature things.
80 debug_info_t
*ap_dbf_info
;
83 * Workqueue timer for bus rescan.
85 static struct timer_list ap_config_timer
;
86 static int ap_config_time
= AP_CONFIG_TIME
;
87 static void ap_scan_bus(struct work_struct
*);
88 static DECLARE_WORK(ap_scan_work
, ap_scan_bus
);
91 * Tasklet & timer for AP request polling and interrupts
93 static void ap_tasklet_fn(unsigned long);
94 static DECLARE_TASKLET(ap_tasklet
, ap_tasklet_fn
, 0);
95 static DECLARE_WAIT_QUEUE_HEAD(ap_poll_wait
);
96 static struct task_struct
*ap_poll_kthread
;
97 static DEFINE_MUTEX(ap_poll_thread_mutex
);
98 static DEFINE_SPINLOCK(ap_poll_timer_lock
);
99 static struct hrtimer ap_poll_timer
;
101 * In LPAR poll with 4kHz frequency. Poll every 250000 nanoseconds.
102 * If z/VM change to 1500000 nanoseconds to adjust to z/VM polling.
104 static unsigned long long poll_timeout
= 250000;
107 static int ap_suspend_flag
;
108 /* Maximum domain id */
109 static int ap_max_domain_id
;
111 * Flag to check if domain was set through module parameter domain=. This is
112 * important when supsend and resume is done in a z/VM environment where the
113 * domain might change.
115 static int user_set_domain
;
116 static struct bus_type ap_bus_type
;
118 /* Adapter interrupt definitions */
119 static void ap_interrupt_handler(struct airq_struct
*airq
);
121 static int ap_airq_flag
;
123 static struct airq_struct ap_airq
= {
124 .handler
= ap_interrupt_handler
,
129 * ap_using_interrupts() - Returns non-zero if interrupt support is
132 static inline int ap_using_interrupts(void)
138 * ap_airq_ptr() - Get the address of the adapter interrupt indicator
140 * Returns the address of the local-summary-indicator of the adapter
141 * interrupt handler for AP, or NULL if adapter interrupts are not
144 void *ap_airq_ptr(void)
146 if (ap_using_interrupts())
147 return ap_airq
.lsi_ptr
;
152 * ap_interrupts_available(): Test if AP interrupts are available.
154 * Returns 1 if AP interrupts are available.
156 static int ap_interrupts_available(void)
158 return test_facility(65);
162 * ap_configuration_available(): Test if AP configuration
163 * information is available.
165 * Returns 1 if AP configuration information is available.
167 static int ap_configuration_available(void)
169 return test_facility(12);
173 * ap_apft_available(): Test if AP facilities test (APFT)
174 * facility is available.
176 * Returns 1 if APFT is is available.
178 static int ap_apft_available(void)
180 return test_facility(15);
184 * ap_qact_available(): Test if the PQAP(QACT) subfunction is available.
186 * Returns 1 if the QACT subfunction is available.
188 static inline int ap_qact_available(void)
190 if (ap_configuration
)
191 return ap_configuration
->qact
;
196 * ap_query_configuration(): Fetch cryptographic config info
198 * Returns the ap configuration info fetched via PQAP(QCI).
199 * On success 0 is returned, on failure a negative errno
200 * is returned, e.g. if the PQAP(QCI) instruction is not
201 * available, the return value will be -EOPNOTSUPP.
203 static inline int ap_query_configuration(struct ap_config_info
*info
)
205 if (!ap_configuration_available())
211 EXPORT_SYMBOL(ap_query_configuration
);
214 * ap_init_configuration(): Allocate and query configuration array.
216 static void ap_init_configuration(void)
218 if (!ap_configuration_available())
221 ap_configuration
= kzalloc(sizeof(*ap_configuration
), GFP_KERNEL
);
222 if (!ap_configuration
)
224 if (ap_query_configuration(ap_configuration
) != 0) {
225 kfree(ap_configuration
);
226 ap_configuration
= NULL
;
232 * ap_test_config(): helper function to extract the nrth bit
233 * within the unsigned int array field.
235 static inline int ap_test_config(unsigned int *field
, unsigned int nr
)
237 return ap_test_bit((field
+ (nr
>> 5)), (nr
& 0x1f));
241 * ap_test_config_card_id(): Test, whether an AP card ID is configured.
244 * Returns 0 if the card is not configured
245 * 1 if the card is configured or
246 * if the configuration information is not available
248 static inline int ap_test_config_card_id(unsigned int id
)
250 if (!ap_configuration
) /* QCI not supported */
251 /* only ids 0...3F may be probed */
252 return id
< 0x40 ? 1 : 0;
253 return ap_test_config(ap_configuration
->apm
, id
);
257 * ap_test_config_usage_domain(): Test, whether an AP usage domain
259 * @domain AP usage domain ID
261 * Returns 0 if the usage domain is not configured
262 * 1 if the usage domain is configured or
263 * if the configuration information is not available
265 int ap_test_config_usage_domain(unsigned int domain
)
267 if (!ap_configuration
) /* QCI not supported */
269 return ap_test_config(ap_configuration
->aqm
, domain
);
271 EXPORT_SYMBOL(ap_test_config_usage_domain
);
274 * ap_test_config_ctrl_domain(): Test, whether an AP control domain
276 * @domain AP control domain ID
278 * Returns 1 if the control domain is configured
279 * 0 in all other cases
281 int ap_test_config_ctrl_domain(unsigned int domain
)
283 if (!ap_configuration
) /* QCI not supported */
285 return ap_test_config(ap_configuration
->adm
, domain
);
287 EXPORT_SYMBOL(ap_test_config_ctrl_domain
);
290 * ap_query_queue(): Check if an AP queue is available.
291 * @qid: The AP queue number
292 * @queue_depth: Pointer to queue depth value
293 * @device_type: Pointer to device type value
294 * @facilities: Pointer to facility indicator
296 static int ap_query_queue(ap_qid_t qid
, int *queue_depth
, int *device_type
,
297 unsigned int *facilities
)
299 struct ap_queue_status status
;
303 if (!ap_test_config_card_id(AP_QID_CARD(qid
)))
306 status
= ap_test_queue(qid
, ap_apft_available(), &info
);
307 switch (status
.response_code
) {
308 case AP_RESPONSE_NORMAL
:
309 *queue_depth
= (int)(info
& 0xff);
310 *device_type
= (int)((info
>> 24) & 0xff);
311 *facilities
= (unsigned int)(info
>> 32);
312 /* Update maximum domain id */
313 nd
= (info
>> 16) & 0xff;
314 /* if N bit is available, z13 and newer */
315 if ((info
& (1UL << 57)) && nd
> 0)
316 ap_max_domain_id
= nd
;
317 else /* older machine types */
318 ap_max_domain_id
= 15;
319 switch (*device_type
) {
320 /* For CEX2 and CEX3 the available functions
321 * are not reflected by the facilities bits.
322 * Instead it is coded into the type. So here
323 * modify the function bits based on the type.
325 case AP_DEVICE_TYPE_CEX2A
:
326 case AP_DEVICE_TYPE_CEX3A
:
327 *facilities
|= 0x08000000;
329 case AP_DEVICE_TYPE_CEX2C
:
330 case AP_DEVICE_TYPE_CEX3C
:
331 *facilities
|= 0x10000000;
337 case AP_RESPONSE_Q_NOT_AVAIL
:
338 case AP_RESPONSE_DECONFIGURED
:
339 case AP_RESPONSE_CHECKSTOPPED
:
340 case AP_RESPONSE_INVALID_ADDRESS
:
342 case AP_RESPONSE_RESET_IN_PROGRESS
:
343 case AP_RESPONSE_OTHERWISE_CHANGED
:
344 case AP_RESPONSE_BUSY
:
351 void ap_wait(enum ap_wait wait
)
357 case AP_WAIT_INTERRUPT
:
358 if (ap_using_interrupts())
360 if (ap_poll_kthread
) {
361 wake_up(&ap_poll_wait
);
365 case AP_WAIT_TIMEOUT
:
366 spin_lock_bh(&ap_poll_timer_lock
);
367 if (!hrtimer_is_queued(&ap_poll_timer
)) {
368 hr_time
= poll_timeout
;
369 hrtimer_forward_now(&ap_poll_timer
, hr_time
);
370 hrtimer_restart(&ap_poll_timer
);
372 spin_unlock_bh(&ap_poll_timer_lock
);
381 * ap_request_timeout(): Handling of request timeouts
382 * @t: timer making this callback
384 * Handles request timeouts.
386 void ap_request_timeout(struct timer_list
*t
)
388 struct ap_queue
*aq
= from_timer(aq
, t
, timeout
);
392 spin_lock_bh(&aq
->lock
);
393 ap_wait(ap_sm_event(aq
, AP_EVENT_TIMEOUT
));
394 spin_unlock_bh(&aq
->lock
);
398 * ap_poll_timeout(): AP receive polling for finished AP requests.
399 * @unused: Unused pointer.
401 * Schedules the AP tasklet using a high resolution timer.
403 static enum hrtimer_restart
ap_poll_timeout(struct hrtimer
*unused
)
405 if (!ap_suspend_flag
)
406 tasklet_schedule(&ap_tasklet
);
407 return HRTIMER_NORESTART
;
411 * ap_interrupt_handler() - Schedule ap_tasklet on interrupt
412 * @airq: pointer to adapter interrupt descriptor
414 static void ap_interrupt_handler(struct airq_struct
*airq
)
416 inc_irq_stat(IRQIO_APB
);
417 if (!ap_suspend_flag
)
418 tasklet_schedule(&ap_tasklet
);
422 * ap_tasklet_fn(): Tasklet to poll all AP devices.
423 * @dummy: Unused variable
425 * Poll all AP devices on the bus.
427 static void ap_tasklet_fn(unsigned long dummy
)
431 enum ap_wait wait
= AP_WAIT_NONE
;
433 /* Reset the indicator if interrupts are used. Thus new interrupts can
434 * be received. Doing it in the beginning of the tasklet is therefor
435 * important that no requests on any AP get lost.
437 if (ap_using_interrupts())
438 xchg(ap_airq
.lsi_ptr
, 0);
440 spin_lock_bh(&ap_list_lock
);
441 for_each_ap_card(ac
) {
442 for_each_ap_queue(aq
, ac
) {
443 spin_lock_bh(&aq
->lock
);
444 wait
= min(wait
, ap_sm_event_loop(aq
, AP_EVENT_POLL
));
445 spin_unlock_bh(&aq
->lock
);
448 spin_unlock_bh(&ap_list_lock
);
453 static int ap_pending_requests(void)
458 spin_lock_bh(&ap_list_lock
);
459 for_each_ap_card(ac
) {
460 for_each_ap_queue(aq
, ac
) {
461 if (aq
->queue_count
== 0)
463 spin_unlock_bh(&ap_list_lock
);
467 spin_unlock_bh(&ap_list_lock
);
472 * ap_poll_thread(): Thread that polls for finished requests.
473 * @data: Unused pointer
475 * AP bus poll thread. The purpose of this thread is to poll for
476 * finished requests in a loop if there is a "free" cpu - that is
477 * a cpu that doesn't have anything better to do. The polling stops
478 * as soon as there is another task or if all messages have been
481 static int ap_poll_thread(void *data
)
483 DECLARE_WAITQUEUE(wait
, current
);
485 set_user_nice(current
, MAX_NICE
);
487 while (!kthread_should_stop()) {
488 add_wait_queue(&ap_poll_wait
, &wait
);
489 set_current_state(TASK_INTERRUPTIBLE
);
490 if (ap_suspend_flag
|| !ap_pending_requests()) {
494 set_current_state(TASK_RUNNING
);
495 remove_wait_queue(&ap_poll_wait
, &wait
);
496 if (need_resched()) {
507 static int ap_poll_thread_start(void)
511 if (ap_using_interrupts() || ap_poll_kthread
)
513 mutex_lock(&ap_poll_thread_mutex
);
514 ap_poll_kthread
= kthread_run(ap_poll_thread
, NULL
, "appoll");
515 rc
= PTR_ERR_OR_ZERO(ap_poll_kthread
);
517 ap_poll_kthread
= NULL
;
518 mutex_unlock(&ap_poll_thread_mutex
);
522 static void ap_poll_thread_stop(void)
524 if (!ap_poll_kthread
)
526 mutex_lock(&ap_poll_thread_mutex
);
527 kthread_stop(ap_poll_kthread
);
528 ap_poll_kthread
= NULL
;
529 mutex_unlock(&ap_poll_thread_mutex
);
532 #define is_card_dev(x) ((x)->parent == ap_root_device)
533 #define is_queue_dev(x) ((x)->parent != ap_root_device)
537 * @dev: Pointer to device
538 * @drv: Pointer to device_driver
540 * AP bus driver registration/unregistration.
542 static int ap_bus_match(struct device
*dev
, struct device_driver
*drv
)
544 struct ap_driver
*ap_drv
= to_ap_drv(drv
);
545 struct ap_device_id
*id
;
548 * Compare device type of the device with the list of
549 * supported types of the device_driver.
551 for (id
= ap_drv
->ids
; id
->match_flags
; id
++) {
552 if (is_card_dev(dev
) &&
553 id
->match_flags
& AP_DEVICE_ID_MATCH_CARD_TYPE
&&
554 id
->dev_type
== to_ap_dev(dev
)->device_type
)
556 if (is_queue_dev(dev
) &&
557 id
->match_flags
& AP_DEVICE_ID_MATCH_QUEUE_TYPE
&&
558 id
->dev_type
== to_ap_dev(dev
)->device_type
)
565 * ap_uevent(): Uevent function for AP devices.
566 * @dev: Pointer to device
567 * @env: Pointer to kobj_uevent_env
569 * It sets up a single environment variable DEV_TYPE which contains the
570 * hardware device type.
572 static int ap_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
574 struct ap_device
*ap_dev
= to_ap_dev(dev
);
580 /* Set up DEV_TYPE environment variable. */
581 retval
= add_uevent_var(env
, "DEV_TYPE=%04X", ap_dev
->device_type
);
586 retval
= add_uevent_var(env
, "MODALIAS=ap:t%02X", ap_dev
->device_type
);
591 static int ap_dev_suspend(struct device
*dev
)
593 struct ap_device
*ap_dev
= to_ap_dev(dev
);
595 if (ap_dev
->drv
&& ap_dev
->drv
->suspend
)
596 ap_dev
->drv
->suspend(ap_dev
);
600 static int ap_dev_resume(struct device
*dev
)
602 struct ap_device
*ap_dev
= to_ap_dev(dev
);
604 if (ap_dev
->drv
&& ap_dev
->drv
->resume
)
605 ap_dev
->drv
->resume(ap_dev
);
609 static void ap_bus_suspend(void)
611 AP_DBF(DBF_DEBUG
, "%s running\n", __func__
);
615 * Disable scanning for devices, thus we do not want to scan
616 * for them after removing.
618 flush_work(&ap_scan_work
);
619 tasklet_disable(&ap_tasklet
);
622 static int __ap_card_devices_unregister(struct device
*dev
, void *dummy
)
624 if (is_card_dev(dev
))
625 device_unregister(dev
);
629 static int __ap_queue_devices_unregister(struct device
*dev
, void *dummy
)
631 if (is_queue_dev(dev
))
632 device_unregister(dev
);
636 static int __ap_queue_devices_with_id_unregister(struct device
*dev
, void *data
)
638 if (is_queue_dev(dev
) &&
639 AP_QID_CARD(to_ap_queue(dev
)->qid
) == (int)(long) data
)
640 device_unregister(dev
);
644 static void ap_bus_resume(void)
648 AP_DBF(DBF_DEBUG
, "%s running\n", __func__
);
650 /* remove all queue devices */
651 bus_for_each_dev(&ap_bus_type
, NULL
, NULL
,
652 __ap_queue_devices_unregister
);
653 /* remove all card devices */
654 bus_for_each_dev(&ap_bus_type
, NULL
, NULL
,
655 __ap_card_devices_unregister
);
657 /* Reset thin interrupt setting */
658 if (ap_interrupts_available() && !ap_using_interrupts()) {
659 rc
= register_adapter_interrupt(&ap_airq
);
660 ap_airq_flag
= (rc
== 0);
662 if (!ap_interrupts_available() && ap_using_interrupts()) {
663 unregister_adapter_interrupt(&ap_airq
);
667 if (!user_set_domain
)
668 ap_domain_index
= -1;
669 /* Get things going again */
672 xchg(ap_airq
.lsi_ptr
, 0);
673 tasklet_enable(&ap_tasklet
);
674 queue_work(system_long_wq
, &ap_scan_work
);
677 static int ap_power_event(struct notifier_block
*this, unsigned long event
,
681 case PM_HIBERNATION_PREPARE
:
682 case PM_SUSPEND_PREPARE
:
685 case PM_POST_HIBERNATION
:
686 case PM_POST_SUSPEND
:
694 static struct notifier_block ap_power_notifier
= {
695 .notifier_call
= ap_power_event
,
698 static SIMPLE_DEV_PM_OPS(ap_bus_pm_ops
, ap_dev_suspend
, ap_dev_resume
);
700 static struct bus_type ap_bus_type
= {
702 .match
= &ap_bus_match
,
703 .uevent
= &ap_uevent
,
704 .pm
= &ap_bus_pm_ops
,
707 static int __ap_revise_reserved(struct device
*dev
, void *dummy
)
709 int rc
, card
, queue
, devres
, drvres
;
711 if (is_queue_dev(dev
)) {
712 card
= AP_QID_CARD(to_ap_queue(dev
)->qid
);
713 queue
= AP_QID_QUEUE(to_ap_queue(dev
)->qid
);
714 mutex_lock(&ap_perms_mutex
);
715 devres
= test_bit_inv(card
, ap_perms
.apm
)
716 && test_bit_inv(queue
, ap_perms
.aqm
);
717 mutex_unlock(&ap_perms_mutex
);
718 drvres
= to_ap_drv(dev
->driver
)->flags
719 & AP_DRIVER_FLAG_DEFAULT
;
720 if (!!devres
!= !!drvres
) {
721 AP_DBF(DBF_DEBUG
, "reprobing queue=%02x.%04x\n",
723 rc
= device_reprobe(dev
);
730 static void ap_bus_revise_bindings(void)
732 bus_for_each_dev(&ap_bus_type
, NULL
, NULL
, __ap_revise_reserved
);
735 int ap_owned_by_def_drv(int card
, int queue
)
739 if (card
< 0 || card
>= AP_DEVICES
|| queue
< 0 || queue
>= AP_DOMAINS
)
742 mutex_lock(&ap_perms_mutex
);
744 if (test_bit_inv(card
, ap_perms
.apm
)
745 && test_bit_inv(queue
, ap_perms
.aqm
))
748 mutex_unlock(&ap_perms_mutex
);
752 EXPORT_SYMBOL(ap_owned_by_def_drv
);
754 int ap_apqn_in_matrix_owned_by_def_drv(unsigned long *apm
,
757 int card
, queue
, rc
= 0;
759 mutex_lock(&ap_perms_mutex
);
761 for (card
= 0; !rc
&& card
< AP_DEVICES
; card
++)
762 if (test_bit_inv(card
, apm
) &&
763 test_bit_inv(card
, ap_perms
.apm
))
764 for (queue
= 0; !rc
&& queue
< AP_DOMAINS
; queue
++)
765 if (test_bit_inv(queue
, aqm
) &&
766 test_bit_inv(queue
, ap_perms
.aqm
))
769 mutex_unlock(&ap_perms_mutex
);
773 EXPORT_SYMBOL(ap_apqn_in_matrix_owned_by_def_drv
);
775 static int ap_device_probe(struct device
*dev
)
777 struct ap_device
*ap_dev
= to_ap_dev(dev
);
778 struct ap_driver
*ap_drv
= to_ap_drv(dev
->driver
);
779 int card
, queue
, devres
, drvres
, rc
;
781 if (is_queue_dev(dev
)) {
783 * If the apqn is marked as reserved/used by ap bus and
784 * default drivers, only probe with drivers with the default
785 * flag set. If it is not marked, only probe with drivers
786 * with the default flag not set.
788 card
= AP_QID_CARD(to_ap_queue(dev
)->qid
);
789 queue
= AP_QID_QUEUE(to_ap_queue(dev
)->qid
);
790 mutex_lock(&ap_perms_mutex
);
791 devres
= test_bit_inv(card
, ap_perms
.apm
)
792 && test_bit_inv(queue
, ap_perms
.aqm
);
793 mutex_unlock(&ap_perms_mutex
);
794 drvres
= ap_drv
->flags
& AP_DRIVER_FLAG_DEFAULT
;
795 if (!!devres
!= !!drvres
)
797 /* (re-)init queue's state machine */
798 ap_queue_reinit_state(to_ap_queue(dev
));
801 /* Add queue/card to list of active queues/cards */
802 spin_lock_bh(&ap_list_lock
);
803 if (is_card_dev(dev
))
804 list_add(&to_ap_card(dev
)->list
, &ap_card_list
);
806 list_add(&to_ap_queue(dev
)->list
,
807 &to_ap_queue(dev
)->card
->queues
);
808 spin_unlock_bh(&ap_list_lock
);
810 ap_dev
->drv
= ap_drv
;
811 rc
= ap_drv
->probe
? ap_drv
->probe(ap_dev
) : -ENODEV
;
814 spin_lock_bh(&ap_list_lock
);
815 if (is_card_dev(dev
))
816 list_del_init(&to_ap_card(dev
)->list
);
818 list_del_init(&to_ap_queue(dev
)->list
);
819 spin_unlock_bh(&ap_list_lock
);
826 static int ap_device_remove(struct device
*dev
)
828 struct ap_device
*ap_dev
= to_ap_dev(dev
);
829 struct ap_driver
*ap_drv
= ap_dev
->drv
;
831 /* prepare ap queue device removal */
832 if (is_queue_dev(dev
))
833 ap_queue_prepare_remove(to_ap_queue(dev
));
835 /* driver's chance to clean up gracefully */
837 ap_drv
->remove(ap_dev
);
839 /* now do the ap queue device remove */
840 if (is_queue_dev(dev
))
841 ap_queue_remove(to_ap_queue(dev
));
843 /* Remove queue/card from list of active queues/cards */
844 spin_lock_bh(&ap_list_lock
);
845 if (is_card_dev(dev
))
846 list_del_init(&to_ap_card(dev
)->list
);
848 list_del_init(&to_ap_queue(dev
)->list
);
849 spin_unlock_bh(&ap_list_lock
);
854 int ap_driver_register(struct ap_driver
*ap_drv
, struct module
*owner
,
857 struct device_driver
*drv
= &ap_drv
->driver
;
862 drv
->bus
= &ap_bus_type
;
863 drv
->probe
= ap_device_probe
;
864 drv
->remove
= ap_device_remove
;
867 return driver_register(drv
);
869 EXPORT_SYMBOL(ap_driver_register
);
871 void ap_driver_unregister(struct ap_driver
*ap_drv
)
873 driver_unregister(&ap_drv
->driver
);
875 EXPORT_SYMBOL(ap_driver_unregister
);
877 void ap_bus_force_rescan(void)
881 /* processing a asynchronous bus rescan */
882 del_timer(&ap_config_timer
);
883 queue_work(system_long_wq
, &ap_scan_work
);
884 flush_work(&ap_scan_work
);
886 EXPORT_SYMBOL(ap_bus_force_rescan
);
889 * A config change has happened, force an ap bus rescan.
891 void ap_bus_cfg_chg(void)
893 AP_DBF(DBF_INFO
, "%s config change, forcing bus rescan\n", __func__
);
895 ap_bus_force_rescan();
899 * hex2bitmap() - parse hex mask string and set bitmap.
900 * Valid strings are "0x012345678" with at least one valid hex number.
901 * Rest of the bitmap to the right is padded with 0. No spaces allowed
902 * within the string, the leading 0x may be omitted.
903 * Returns the bitmask with exactly the bits set as given by the hex
904 * string (both in big endian order).
906 static int hex2bitmap(const char *str
, unsigned long *bitmap
, int bits
)
910 /* bits needs to be a multiple of 8 */
914 if (str
[0] == '0' && str
[1] == 'x')
919 for (i
= 0; isxdigit(*str
) && i
< bits
; str
++) {
920 b
= hex_to_bin(*str
);
921 for (n
= 0; n
< 4; n
++)
923 set_bit_inv(i
+ n
, bitmap
);
935 * modify_bitmap() - parse bitmask argument and modify an existing
936 * bit mask accordingly. A concatenation (done with ',') of these
937 * terms is recognized:
938 * +<bitnr>[-<bitnr>] or -<bitnr>[-<bitnr>]
939 * <bitnr> may be any valid number (hex, decimal or octal) in the range
940 * 0...bits-1; the leading + or - is required. Here are some examples:
941 * +0-15,+32,-128,-0xFF
942 * -0-255,+1-16,+0x128
943 * +1,+2,+3,+4,-5,-7-10
944 * Returns the new bitmap after all changes have been applied. Every
945 * positive value in the string will set a bit and every negative value
946 * in the string will clear a bit. As a bit may be touched more than once,
947 * the last 'operation' wins:
948 * +0-255,-128 = first bits 0-255 will be set, then bit 128 will be
949 * cleared again. All other bits are unmodified.
951 static int modify_bitmap(const char *str
, unsigned long *bitmap
, int bits
)
956 /* bits needs to be a multiple of 8 */
962 if (sign
!= '+' && sign
!= '-')
964 a
= z
= simple_strtoul(str
, &np
, 0);
965 if (str
== np
|| a
>= bits
)
969 z
= simple_strtoul(++str
, &np
, 0);
970 if (str
== np
|| a
> z
|| z
>= bits
)
974 for (i
= a
; i
<= z
; i
++)
976 set_bit_inv(i
, bitmap
);
978 clear_bit_inv(i
, bitmap
);
979 while (*str
== ',' || *str
== '\n')
986 int ap_parse_mask_str(const char *str
,
987 unsigned long *bitmap
, int bits
,
990 unsigned long *newmap
, size
;
993 /* bits needs to be a multiple of 8 */
997 size
= BITS_TO_LONGS(bits
)*sizeof(unsigned long);
998 newmap
= kmalloc(size
, GFP_KERNEL
);
1001 if (mutex_lock_interruptible(lock
)) {
1003 return -ERESTARTSYS
;
1006 if (*str
== '+' || *str
== '-') {
1007 memcpy(newmap
, bitmap
, size
);
1008 rc
= modify_bitmap(str
, newmap
, bits
);
1010 memset(newmap
, 0, size
);
1011 rc
= hex2bitmap(str
, newmap
, bits
);
1014 memcpy(bitmap
, newmap
, size
);
1019 EXPORT_SYMBOL(ap_parse_mask_str
);
1022 * AP bus attributes.
1025 static ssize_t
ap_domain_show(struct bus_type
*bus
, char *buf
)
1027 return snprintf(buf
, PAGE_SIZE
, "%d\n", ap_domain_index
);
1030 static ssize_t
ap_domain_store(struct bus_type
*bus
,
1031 const char *buf
, size_t count
)
1035 if (sscanf(buf
, "%i\n", &domain
) != 1 ||
1036 domain
< 0 || domain
> ap_max_domain_id
||
1037 !test_bit_inv(domain
, ap_perms
.aqm
))
1039 spin_lock_bh(&ap_domain_lock
);
1040 ap_domain_index
= domain
;
1041 spin_unlock_bh(&ap_domain_lock
);
1043 AP_DBF(DBF_DEBUG
, "stored new default domain=%d\n", domain
);
1048 static BUS_ATTR_RW(ap_domain
);
1050 static ssize_t
ap_control_domain_mask_show(struct bus_type
*bus
, char *buf
)
1052 if (!ap_configuration
) /* QCI not supported */
1053 return snprintf(buf
, PAGE_SIZE
, "not supported\n");
1055 return snprintf(buf
, PAGE_SIZE
,
1056 "0x%08x%08x%08x%08x%08x%08x%08x%08x\n",
1057 ap_configuration
->adm
[0], ap_configuration
->adm
[1],
1058 ap_configuration
->adm
[2], ap_configuration
->adm
[3],
1059 ap_configuration
->adm
[4], ap_configuration
->adm
[5],
1060 ap_configuration
->adm
[6], ap_configuration
->adm
[7]);
1063 static BUS_ATTR_RO(ap_control_domain_mask
);
1065 static ssize_t
ap_usage_domain_mask_show(struct bus_type
*bus
, char *buf
)
1067 if (!ap_configuration
) /* QCI not supported */
1068 return snprintf(buf
, PAGE_SIZE
, "not supported\n");
1070 return snprintf(buf
, PAGE_SIZE
,
1071 "0x%08x%08x%08x%08x%08x%08x%08x%08x\n",
1072 ap_configuration
->aqm
[0], ap_configuration
->aqm
[1],
1073 ap_configuration
->aqm
[2], ap_configuration
->aqm
[3],
1074 ap_configuration
->aqm
[4], ap_configuration
->aqm
[5],
1075 ap_configuration
->aqm
[6], ap_configuration
->aqm
[7]);
1078 static BUS_ATTR_RO(ap_usage_domain_mask
);
1080 static ssize_t
ap_adapter_mask_show(struct bus_type
*bus
, char *buf
)
1082 if (!ap_configuration
) /* QCI not supported */
1083 return snprintf(buf
, PAGE_SIZE
, "not supported\n");
1085 return snprintf(buf
, PAGE_SIZE
,
1086 "0x%08x%08x%08x%08x%08x%08x%08x%08x\n",
1087 ap_configuration
->apm
[0], ap_configuration
->apm
[1],
1088 ap_configuration
->apm
[2], ap_configuration
->apm
[3],
1089 ap_configuration
->apm
[4], ap_configuration
->apm
[5],
1090 ap_configuration
->apm
[6], ap_configuration
->apm
[7]);
1093 static BUS_ATTR_RO(ap_adapter_mask
);
1095 static ssize_t
ap_interrupts_show(struct bus_type
*bus
, char *buf
)
1097 return snprintf(buf
, PAGE_SIZE
, "%d\n",
1098 ap_using_interrupts() ? 1 : 0);
1101 static BUS_ATTR_RO(ap_interrupts
);
1103 static ssize_t
config_time_show(struct bus_type
*bus
, char *buf
)
1105 return snprintf(buf
, PAGE_SIZE
, "%d\n", ap_config_time
);
1108 static ssize_t
config_time_store(struct bus_type
*bus
,
1109 const char *buf
, size_t count
)
1113 if (sscanf(buf
, "%d\n", &time
) != 1 || time
< 5 || time
> 120)
1115 ap_config_time
= time
;
1116 mod_timer(&ap_config_timer
, jiffies
+ ap_config_time
* HZ
);
1120 static BUS_ATTR_RW(config_time
);
1122 static ssize_t
poll_thread_show(struct bus_type
*bus
, char *buf
)
1124 return snprintf(buf
, PAGE_SIZE
, "%d\n", ap_poll_kthread
? 1 : 0);
1127 static ssize_t
poll_thread_store(struct bus_type
*bus
,
1128 const char *buf
, size_t count
)
1132 if (sscanf(buf
, "%d\n", &flag
) != 1)
1135 rc
= ap_poll_thread_start();
1139 ap_poll_thread_stop();
1143 static BUS_ATTR_RW(poll_thread
);
1145 static ssize_t
poll_timeout_show(struct bus_type
*bus
, char *buf
)
1147 return snprintf(buf
, PAGE_SIZE
, "%llu\n", poll_timeout
);
1150 static ssize_t
poll_timeout_store(struct bus_type
*bus
, const char *buf
,
1153 unsigned long long time
;
1156 /* 120 seconds = maximum poll interval */
1157 if (sscanf(buf
, "%llu\n", &time
) != 1 || time
< 1 ||
1158 time
> 120000000000ULL)
1160 poll_timeout
= time
;
1161 hr_time
= poll_timeout
;
1163 spin_lock_bh(&ap_poll_timer_lock
);
1164 hrtimer_cancel(&ap_poll_timer
);
1165 hrtimer_set_expires(&ap_poll_timer
, hr_time
);
1166 hrtimer_start_expires(&ap_poll_timer
, HRTIMER_MODE_ABS
);
1167 spin_unlock_bh(&ap_poll_timer_lock
);
1172 static BUS_ATTR_RW(poll_timeout
);
1174 static ssize_t
ap_max_domain_id_show(struct bus_type
*bus
, char *buf
)
1178 if (ap_configuration
)
1179 max_domain_id
= ap_max_domain_id
? : -1;
1182 return snprintf(buf
, PAGE_SIZE
, "%d\n", max_domain_id
);
1185 static BUS_ATTR_RO(ap_max_domain_id
);
1187 static ssize_t
apmask_show(struct bus_type
*bus
, char *buf
)
1191 if (mutex_lock_interruptible(&ap_perms_mutex
))
1192 return -ERESTARTSYS
;
1193 rc
= snprintf(buf
, PAGE_SIZE
,
1194 "0x%016lx%016lx%016lx%016lx\n",
1195 ap_perms
.apm
[0], ap_perms
.apm
[1],
1196 ap_perms
.apm
[2], ap_perms
.apm
[3]);
1197 mutex_unlock(&ap_perms_mutex
);
1202 static ssize_t
apmask_store(struct bus_type
*bus
, const char *buf
,
1207 rc
= ap_parse_mask_str(buf
, ap_perms
.apm
, AP_DEVICES
, &ap_perms_mutex
);
1211 ap_bus_revise_bindings();
1216 static BUS_ATTR_RW(apmask
);
1218 static ssize_t
aqmask_show(struct bus_type
*bus
, char *buf
)
1222 if (mutex_lock_interruptible(&ap_perms_mutex
))
1223 return -ERESTARTSYS
;
1224 rc
= snprintf(buf
, PAGE_SIZE
,
1225 "0x%016lx%016lx%016lx%016lx\n",
1226 ap_perms
.aqm
[0], ap_perms
.aqm
[1],
1227 ap_perms
.aqm
[2], ap_perms
.aqm
[3]);
1228 mutex_unlock(&ap_perms_mutex
);
1233 static ssize_t
aqmask_store(struct bus_type
*bus
, const char *buf
,
1238 rc
= ap_parse_mask_str(buf
, ap_perms
.aqm
, AP_DOMAINS
, &ap_perms_mutex
);
1242 ap_bus_revise_bindings();
1247 static BUS_ATTR_RW(aqmask
);
1249 static struct bus_attribute
*const ap_bus_attrs
[] = {
1250 &bus_attr_ap_domain
,
1251 &bus_attr_ap_control_domain_mask
,
1252 &bus_attr_ap_usage_domain_mask
,
1253 &bus_attr_ap_adapter_mask
,
1254 &bus_attr_config_time
,
1255 &bus_attr_poll_thread
,
1256 &bus_attr_ap_interrupts
,
1257 &bus_attr_poll_timeout
,
1258 &bus_attr_ap_max_domain_id
,
1265 * ap_select_domain(): Select an AP domain if possible and we haven't
1266 * already done so before.
1268 static void ap_select_domain(void)
1270 int count
, max_count
, best_domain
;
1271 struct ap_queue_status status
;
1275 * We want to use a single domain. Either the one specified with
1276 * the "domain=" parameter or the domain with the maximum number
1279 spin_lock_bh(&ap_domain_lock
);
1280 if (ap_domain_index
>= 0) {
1281 /* Domain has already been selected. */
1282 spin_unlock_bh(&ap_domain_lock
);
1287 for (i
= 0; i
< AP_DOMAINS
; i
++) {
1288 if (!ap_test_config_usage_domain(i
) ||
1289 !test_bit_inv(i
, ap_perms
.aqm
))
1292 for (j
= 0; j
< AP_DEVICES
; j
++) {
1293 if (!ap_test_config_card_id(j
))
1295 status
= ap_test_queue(AP_MKQID(j
, i
),
1296 ap_apft_available(),
1298 if (status
.response_code
!= AP_RESPONSE_NORMAL
)
1302 if (count
> max_count
) {
1307 if (best_domain
>= 0) {
1308 ap_domain_index
= best_domain
;
1309 AP_DBF(DBF_DEBUG
, "new ap_domain_index=%d\n", ap_domain_index
);
1311 spin_unlock_bh(&ap_domain_lock
);
1315 * This function checks the type and returns either 0 for not
1316 * supported or the highest compatible type value (which may
1317 * include the input type value).
1319 static int ap_get_compatible_type(ap_qid_t qid
, int rawtype
, unsigned int func
)
1323 /* < CEX2A is not supported */
1324 if (rawtype
< AP_DEVICE_TYPE_CEX2A
)
1326 /* up to CEX6 known and fully supported */
1327 if (rawtype
<= AP_DEVICE_TYPE_CEX6
)
1330 * unknown new type > CEX6, check for compatibility
1331 * to the highest known and supported type which is
1332 * currently CEX6 with the help of the QACT function.
1334 if (ap_qact_available()) {
1335 struct ap_queue_status status
;
1336 union ap_qact_ap_info apinfo
= {0};
1338 apinfo
.mode
= (func
>> 26) & 0x07;
1339 apinfo
.cat
= AP_DEVICE_TYPE_CEX6
;
1340 status
= ap_qact(qid
, 0, &apinfo
);
1341 if (status
.response_code
== AP_RESPONSE_NORMAL
1342 && apinfo
.cat
>= AP_DEVICE_TYPE_CEX2A
1343 && apinfo
.cat
<= AP_DEVICE_TYPE_CEX6
)
1344 comp_type
= apinfo
.cat
;
1347 AP_DBF(DBF_WARN
, "queue=%02x.%04x unable to map type %d\n",
1348 AP_QID_CARD(qid
), AP_QID_QUEUE(qid
), rawtype
);
1349 else if (comp_type
!= rawtype
)
1350 AP_DBF(DBF_INFO
, "queue=%02x.%04x map type %d to %d\n",
1351 AP_QID_CARD(qid
), AP_QID_QUEUE(qid
), rawtype
, comp_type
);
1356 * Helper function to be used with bus_find_dev
1357 * matches for the card device with the given id
1359 static int __match_card_device_with_id(struct device
*dev
, void *data
)
1361 return is_card_dev(dev
) && to_ap_card(dev
)->id
== (int)(long) data
;
1365 * Helper function to be used with bus_find_dev
1366 * matches for the queue device with a given qid
1368 static int __match_queue_device_with_qid(struct device
*dev
, void *data
)
1370 return is_queue_dev(dev
) && to_ap_queue(dev
)->qid
== (int)(long) data
;
1374 * Helper function to be used with bus_find_dev
1375 * matches any queue device with given queue id
1377 static int __match_queue_device_with_queue_id(struct device
*dev
, void *data
)
1379 return is_queue_dev(dev
)
1380 && AP_QID_QUEUE(to_ap_queue(dev
)->qid
) == (int)(long) data
;
1384 * Helper function for ap_scan_bus().
1385 * Does the scan bus job for the given adapter id.
1387 static void _ap_scan_bus_adapter(int id
)
1393 struct ap_queue
*aq
;
1394 int rc
, dom
, depth
, type
, comp_type
, borked
;
1396 /* check if there is a card device registered with this id */
1397 dev
= bus_find_device(&ap_bus_type
, NULL
,
1399 __match_card_device_with_id
);
1400 ac
= dev
? to_ap_card(dev
) : NULL
;
1401 if (!ap_test_config_card_id(id
)) {
1403 /* Card device has been removed from configuration */
1404 bus_for_each_dev(&ap_bus_type
, NULL
,
1406 __ap_queue_devices_with_id_unregister
);
1407 device_unregister(dev
);
1414 * This card id is enabled in the configuration. If we already have
1415 * a card device with this id, check if type and functions are still
1416 * the very same. Also verify that at least one queue is available.
1419 /* find the first valid queue */
1420 for (dom
= 0; dom
< AP_DOMAINS
; dom
++) {
1421 qid
= AP_MKQID(id
, dom
);
1422 if (ap_query_queue(qid
, &depth
, &type
, &func
) == 0)
1426 if (dom
>= AP_DOMAINS
) {
1427 /* no accessible queue on this card */
1429 } else if (ac
->raw_hwtype
!= type
) {
1430 /* card type has changed */
1431 AP_DBF(DBF_INFO
, "card=%02x type changed.\n", id
);
1433 } else if (ac
->functions
!= func
) {
1434 /* card functions have changed */
1435 AP_DBF(DBF_INFO
, "card=%02x functions changed.\n", id
);
1439 /* unregister card device and associated queues */
1440 bus_for_each_dev(&ap_bus_type
, NULL
,
1442 __ap_queue_devices_with_id_unregister
);
1443 device_unregister(dev
);
1445 /* go back if there is no valid queue on this card */
1446 if (dom
>= AP_DOMAINS
)
1453 * Go through all possible queue ids. Check and maybe create or release
1454 * queue devices for this card. If there exists no card device yet,
1455 * create a card device also.
1457 for (dom
= 0; dom
< AP_DOMAINS
; dom
++) {
1458 qid
= AP_MKQID(id
, dom
);
1459 dev
= bus_find_device(&ap_bus_type
, NULL
,
1461 __match_queue_device_with_qid
);
1462 aq
= dev
? to_ap_queue(dev
) : NULL
;
1463 if (!ap_test_config_usage_domain(dom
)) {
1465 /* Queue device exists but has been
1466 * removed from configuration.
1468 device_unregister(dev
);
1473 /* try to fetch infos about this queue */
1474 rc
= ap_query_queue(qid
, &depth
, &type
, &func
);
1479 spin_lock_bh(&aq
->lock
);
1480 borked
= aq
->state
== AP_STATE_BORKED
;
1481 spin_unlock_bh(&aq
->lock
);
1484 /* Remove broken device */
1486 "removing broken queue=%02x.%04x\n",
1488 device_unregister(dev
);
1495 /* a new queue device is needed, check out comp type */
1496 comp_type
= ap_get_compatible_type(qid
, type
, func
);
1499 /* maybe a card device needs to be created first */
1501 ac
= ap_card_create(id
, depth
, type
, comp_type
, func
);
1504 ac
->ap_dev
.device
.bus
= &ap_bus_type
;
1505 ac
->ap_dev
.device
.parent
= ap_root_device
;
1506 dev_set_name(&ac
->ap_dev
.device
, "card%02x", id
);
1507 /* Register card device with AP bus */
1508 rc
= device_register(&ac
->ap_dev
.device
);
1510 put_device(&ac
->ap_dev
.device
);
1514 /* get it and thus adjust reference counter */
1515 get_device(&ac
->ap_dev
.device
);
1517 /* now create the new queue device */
1518 aq
= ap_queue_create(qid
, comp_type
);
1522 aq
->ap_dev
.device
.bus
= &ap_bus_type
;
1523 aq
->ap_dev
.device
.parent
= &ac
->ap_dev
.device
;
1524 dev_set_name(&aq
->ap_dev
.device
, "%02x.%04x", id
, dom
);
1525 /* Register queue device */
1526 rc
= device_register(&aq
->ap_dev
.device
);
1528 put_device(&aq
->ap_dev
.device
);
1531 } /* end domain loop */
1534 put_device(&ac
->ap_dev
.device
);
1538 * ap_scan_bus(): Scan the AP bus for new devices
1539 * Runs periodically, workqueue timer (ap_config_time)
1541 static void ap_scan_bus(struct work_struct
*unused
)
1545 AP_DBF(DBF_DEBUG
, "%s running\n", __func__
);
1547 ap_query_configuration(ap_configuration
);
1550 /* loop over all possible adapters */
1551 for (id
= 0; id
< AP_DEVICES
; id
++)
1552 _ap_scan_bus_adapter(id
);
1554 /* check if there is at least one queue available with default domain */
1555 if (ap_domain_index
>= 0) {
1556 struct device
*dev
=
1557 bus_find_device(&ap_bus_type
, NULL
,
1558 (void *)(long) ap_domain_index
,
1559 __match_queue_device_with_queue_id
);
1564 "no queue device with default domain %d available\n",
1568 mod_timer(&ap_config_timer
, jiffies
+ ap_config_time
* HZ
);
1571 static void ap_config_timeout(struct timer_list
*unused
)
1573 if (ap_suspend_flag
)
1575 queue_work(system_long_wq
, &ap_scan_work
);
1578 static int __init
ap_debug_init(void)
1580 ap_dbf_info
= debug_register("ap", 1, 1,
1581 DBF_MAX_SPRINTF_ARGS
* sizeof(long));
1582 debug_register_view(ap_dbf_info
, &debug_sprintf_view
);
1583 debug_set_level(ap_dbf_info
, DBF_ERR
);
1588 static void __init
ap_perms_init(void)
1590 /* all resources useable if no kernel parameter string given */
1591 memset(&ap_perms
.ioctlm
, 0xFF, sizeof(ap_perms
.ioctlm
));
1592 memset(&ap_perms
.apm
, 0xFF, sizeof(ap_perms
.apm
));
1593 memset(&ap_perms
.aqm
, 0xFF, sizeof(ap_perms
.aqm
));
1595 /* apm kernel parameter string */
1597 memset(&ap_perms
.apm
, 0, sizeof(ap_perms
.apm
));
1598 ap_parse_mask_str(apm_str
, ap_perms
.apm
, AP_DEVICES
,
1602 /* aqm kernel parameter string */
1604 memset(&ap_perms
.aqm
, 0, sizeof(ap_perms
.aqm
));
1605 ap_parse_mask_str(aqm_str
, ap_perms
.aqm
, AP_DOMAINS
,
1611 * ap_module_init(): The module initialization code.
1613 * Initializes the module.
1615 static int __init
ap_module_init(void)
1620 rc
= ap_debug_init();
1624 if (!ap_instructions_available()) {
1625 pr_warn("The hardware system does not support AP instructions\n");
1629 /* set up the AP permissions (ioctls, ap and aq masks) */
1632 /* Get AP configuration data if available */
1633 ap_init_configuration();
1635 if (ap_configuration
)
1637 ap_max_domain_id
? ap_max_domain_id
: AP_DOMAINS
- 1;
1640 if (ap_domain_index
< -1 || ap_domain_index
> max_domain_id
||
1641 (ap_domain_index
>= 0 &&
1642 !test_bit_inv(ap_domain_index
, ap_perms
.aqm
))) {
1643 pr_warn("%d is not a valid cryptographic domain\n",
1645 ap_domain_index
= -1;
1647 /* In resume callback we need to know if the user had set the domain.
1648 * If so, we can not just reset it.
1650 if (ap_domain_index
>= 0)
1651 user_set_domain
= 1;
1653 if (ap_interrupts_available()) {
1654 rc
= register_adapter_interrupt(&ap_airq
);
1655 ap_airq_flag
= (rc
== 0);
1658 /* Create /sys/bus/ap. */
1659 rc
= bus_register(&ap_bus_type
);
1662 for (i
= 0; ap_bus_attrs
[i
]; i
++) {
1663 rc
= bus_create_file(&ap_bus_type
, ap_bus_attrs
[i
]);
1668 /* Create /sys/devices/ap. */
1669 ap_root_device
= root_device_register("ap");
1670 rc
= PTR_ERR_OR_ZERO(ap_root_device
);
1674 /* Setup the AP bus rescan timer. */
1675 timer_setup(&ap_config_timer
, ap_config_timeout
, 0);
1678 * Setup the high resultion poll timer.
1679 * If we are running under z/VM adjust polling to z/VM polling rate.
1682 poll_timeout
= 1500000;
1683 spin_lock_init(&ap_poll_timer_lock
);
1684 hrtimer_init(&ap_poll_timer
, CLOCK_MONOTONIC
, HRTIMER_MODE_ABS
);
1685 ap_poll_timer
.function
= ap_poll_timeout
;
1687 /* Start the low priority AP bus poll thread. */
1688 if (ap_thread_flag
) {
1689 rc
= ap_poll_thread_start();
1694 rc
= register_pm_notifier(&ap_power_notifier
);
1698 queue_work(system_long_wq
, &ap_scan_work
);
1704 ap_poll_thread_stop();
1706 hrtimer_cancel(&ap_poll_timer
);
1707 root_device_unregister(ap_root_device
);
1710 bus_remove_file(&ap_bus_type
, ap_bus_attrs
[i
]);
1711 bus_unregister(&ap_bus_type
);
1713 if (ap_using_interrupts())
1714 unregister_adapter_interrupt(&ap_airq
);
1715 kfree(ap_configuration
);
1718 device_initcall(ap_module_init
);