s390: limit brk randomization to 32MB
[linux-block.git] / drivers / s390 / crypto / ap_bus.c
CommitLineData
812141a9 1// SPDX-License-Identifier: GPL-2.0+
1534c382 2/*
75014550 3 * Copyright IBM Corp. 2006, 2012
1534c382
MS
4 * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com>
5 * Martin Schwidefsky <schwidefsky@de.ibm.com>
6 * Ralph Wuerthner <rwuerthn@de.ibm.com>
cb17a636 7 * Felix Beck <felix.beck@de.ibm.com>
6bed05bc 8 * Holger Dengler <hd@linux.vnet.ibm.com>
1534c382
MS
9 *
10 * Adjunct processor bus.
1534c382
MS
11 */
12
136f7a1c
MS
13#define KMSG_COMPONENT "ap"
14#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
15
62d146ff 16#include <linux/kernel_stat.h>
50a0d46c 17#include <linux/moduleparam.h>
1534c382
MS
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>
5a0e3ad6 23#include <linux/slab.h>
1534c382
MS
24#include <linux/notifier.h>
25#include <linux/kthread.h>
26#include <linux/mutex.h>
83e9d5d2 27#include <linux/suspend.h>
cb17a636 28#include <asm/airq.h>
60063497 29#include <linux/atomic.h>
cb17a636 30#include <asm/isc.h>
fe137230
FB
31#include <linux/hrtimer.h>
32#include <linux/ktime.h>
a0616cde 33#include <asm/facility.h>
5d26a105 34#include <linux/crypto.h>
e28d2af4 35#include <linux/mod_devicetable.h>
cccd85bf 36#include <linux/debugfs.h>
7e0bdbe5 37#include <linux/ctype.h>
1534c382
MS
38
39#include "ap_bus.h"
cccd85bf 40#include "ap_debug.h"
1534c382 41
1749a81d 42/*
50a0d46c 43 * Module parameters; note though this file itself isn't modular.
1534c382
MS
44 */
45int ap_domain_index = -1; /* Adjunct Processor Domain Index */
fc1d3f02 46static DEFINE_SPINLOCK(ap_domain_lock);
ac2b96f3 47module_param_named(domain, ap_domain_index, int, 0440);
1534c382
MS
48MODULE_PARM_DESC(domain, "domain index for ap devices");
49EXPORT_SYMBOL(ap_domain_index);
50
ac2b96f3
HF
51static int ap_thread_flag;
52module_param_named(poll_thread, ap_thread_flag, int, 0440);
b90b34c6 53MODULE_PARM_DESC(poll_thread, "Turn on/off poll thread, default is 0 (off).");
1534c382 54
7e0bdbe5
HF
55static char *apm_str;
56module_param_named(apmask, apm_str, charp, 0440);
57MODULE_PARM_DESC(apmask, "AP bus adapter mask.");
58
59static char *aqm_str;
60module_param_named(aqmask, aqm_str, charp, 0440);
61MODULE_PARM_DESC(aqmask, "AP bus domain mask.");
62
e28d2af4
IT
63static struct device *ap_root_device;
64
65DEFINE_SPINLOCK(ap_list_lock);
66LIST_HEAD(ap_card_list);
67
00fab235
HF
68/* Default permissions (ioctl, card and domain masking) */
69struct ap_perms ap_perms;
70EXPORT_SYMBOL(ap_perms);
71DEFINE_MUTEX(ap_perms_mutex);
72EXPORT_SYMBOL(ap_perms_mutex);
7e0bdbe5 73
75014550 74static struct ap_config_info *ap_configuration;
e387753c 75static bool initialised;
1534c382 76
cccd85bf
HF
77/*
78 * AP bus related debug feature things.
79 */
cccd85bf
HF
80debug_info_t *ap_dbf_info;
81
1749a81d 82/*
8139b89d 83 * Workqueue timer for bus rescan.
1534c382 84 */
1534c382
MS
85static struct timer_list ap_config_timer;
86static int ap_config_time = AP_CONFIG_TIME;
3f3007af 87static void ap_scan_bus(struct work_struct *);
8139b89d 88static DECLARE_WORK(ap_scan_work, ap_scan_bus);
1534c382 89
1749a81d 90/*
cb17a636 91 * Tasklet & timer for AP request polling and interrupts
1534c382 92 */
3f3007af
MS
93static void ap_tasklet_fn(unsigned long);
94static DECLARE_TASKLET(ap_tasklet, ap_tasklet_fn, 0);
1534c382 95static DECLARE_WAIT_QUEUE_HEAD(ap_poll_wait);
ac2b96f3 96static struct task_struct *ap_poll_kthread;
1534c382 97static DEFINE_MUTEX(ap_poll_thread_mutex);
93521314 98static DEFINE_SPINLOCK(ap_poll_timer_lock);
fe137230 99static struct hrtimer ap_poll_timer;
ac2b96f3
HF
100/*
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.
103 */
fe137230 104static unsigned long long poll_timeout = 250000;
1534c382 105
772f5472
FB
106/* Suspend flag */
107static int ap_suspend_flag;
889875a1
MS
108/* Maximum domain id */
109static int ap_max_domain_id;
ac2b96f3
HF
110/*
111 * Flag to check if domain was set through module parameter domain=. This is
5314af69 112 * important when supsend and resume is done in a z/VM environment where the
ac2b96f3
HF
113 * domain might change.
114 */
115static int user_set_domain;
772f5472
FB
116static struct bus_type ap_bus_type;
117
f4eae94f 118/* Adapter interrupt definitions */
3f3007af
MS
119static void ap_interrupt_handler(struct airq_struct *airq);
120
f4eae94f
MS
121static int ap_airq_flag;
122
123static struct airq_struct ap_airq = {
124 .handler = ap_interrupt_handler,
125 .isc = AP_ISC,
126};
127
cb17a636
FB
128/**
129 * ap_using_interrupts() - Returns non-zero if interrupt support is
130 * available.
131 */
132static inline int ap_using_interrupts(void)
133{
f4eae94f 134 return ap_airq_flag;
cb17a636
FB
135}
136
e28d2af4
IT
137/**
138 * ap_airq_ptr() - Get the address of the adapter interrupt indicator
139 *
140 * Returns the address of the local-summary-indicator of the adapter
141 * interrupt handler for AP, or NULL if adapter interrupts are not
142 * available.
143 */
144void *ap_airq_ptr(void)
145{
146 if (ap_using_interrupts())
147 return ap_airq.lsi_ptr;
148 return NULL;
149}
150
cb17a636
FB
151/**
152 * ap_interrupts_available(): Test if AP interrupts are available.
153 *
154 * Returns 1 if AP interrupts are available.
155 */
156static int ap_interrupts_available(void)
157{
86cd741b 158 return test_facility(65);
cb17a636
FB
159}
160
75014550
HD
161/**
162 * ap_configuration_available(): Test if AP configuration
163 * information is available.
164 *
165 * Returns 1 if AP configuration information is available.
166 */
167static int ap_configuration_available(void)
168{
86cd741b 169 return test_facility(12);
75014550
HD
170}
171
e7fc5146
TK
172/**
173 * ap_apft_available(): Test if AP facilities test (APFT)
174 * facility is available.
175 *
176 * Returns 1 if APFT is is available.
177 */
178static int ap_apft_available(void)
179{
180 return test_facility(15);
181}
182
9a564108
HF
183/*
184 * ap_qact_available(): Test if the PQAP(QACT) subfunction is available.
185 *
186 * Returns 1 if the QACT subfunction is available.
187 */
188static inline int ap_qact_available(void)
189{
190 if (ap_configuration)
191 return ap_configuration->qact;
192 return 0;
193}
194
050349b5
HF
195/*
196 * ap_query_configuration(): Fetch cryptographic config info
197 *
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.
202 */
f1b0a434 203static inline int ap_query_configuration(struct ap_config_info *info)
11d37673 204{
050349b5 205 if (!ap_configuration_available())
11d37673 206 return -EOPNOTSUPP;
050349b5
HF
207 if (!info)
208 return -EINVAL;
209 return ap_qci(info);
11d37673 210}
050349b5 211EXPORT_SYMBOL(ap_query_configuration);
11d37673 212
889875a1
MS
213/**
214 * ap_init_configuration(): Allocate and query configuration array.
215 */
216static void ap_init_configuration(void)
217{
218 if (!ap_configuration_available())
219 return;
220
221 ap_configuration = kzalloc(sizeof(*ap_configuration), GFP_KERNEL);
222 if (!ap_configuration)
223 return;
050349b5 224 if (ap_query_configuration(ap_configuration) != 0) {
889875a1
MS
225 kfree(ap_configuration);
226 ap_configuration = NULL;
227 return;
228 }
229}
230
231/*
232 * ap_test_config(): helper function to extract the nrth bit
233 * within the unsigned int array field.
234 */
235static inline int ap_test_config(unsigned int *field, unsigned int nr)
236{
237 return ap_test_bit((field + (nr >> 5)), (nr & 0x1f));
238}
239
240/*
241 * ap_test_config_card_id(): Test, whether an AP card ID is configured.
242 * @id AP card ID
243 *
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
247 */
248static inline int ap_test_config_card_id(unsigned int id)
249{
250 if (!ap_configuration) /* QCI not supported */
8f9aca0c
HF
251 /* only ids 0...3F may be probed */
252 return id < 0x40 ? 1 : 0;
889875a1
MS
253 return ap_test_config(ap_configuration->apm, id);
254}
255
256/*
257 * ap_test_config_domain(): Test, whether an AP usage domain is configured.
258 * @domain AP usage domain ID
259 *
260 * Returns 0 if the usage domain is not configured
261 * 1 if the usage domain is configured or
262 * if the configuration information is not available
263 */
264static inline int ap_test_config_domain(unsigned int domain)
265{
266 if (!ap_configuration) /* QCI not supported */
267 return domain < 16;
268 return ap_test_config(ap_configuration->aqm, domain);
269}
270
1534c382 271/**
1749a81d
FB
272 * ap_query_queue(): Check if an AP queue is available.
273 * @qid: The AP queue number
274 * @queue_depth: Pointer to queue depth value
275 * @device_type: Pointer to device type value
6acbe21f 276 * @facilities: Pointer to facility indicator
1534c382 277 */
6acbe21f
MS
278static int ap_query_queue(ap_qid_t qid, int *queue_depth, int *device_type,
279 unsigned int *facilities)
1534c382
MS
280{
281 struct ap_queue_status status;
6acbe21f 282 unsigned long info;
889875a1
MS
283 int nd;
284
e28d2af4 285 if (!ap_test_config_card_id(AP_QID_CARD(qid)))
889875a1 286 return -ENODEV;
1534c382 287
e7fc5146 288 status = ap_test_queue(qid, ap_apft_available(), &info);
c50a160c
IT
289 switch (status.response_code) {
290 case AP_RESPONSE_NORMAL:
6acbe21f
MS
291 *queue_depth = (int)(info & 0xff);
292 *device_type = (int)((info >> 24) & 0xff);
293 *facilities = (unsigned int)(info >> 32);
889875a1
MS
294 /* Update maximum domain id */
295 nd = (info >> 16) & 0xff;
c1c1368d 296 /* if N bit is available, z13 and newer */
889875a1
MS
297 if ((info & (1UL << 57)) && nd > 0)
298 ap_max_domain_id = nd;
c1c1368d
IT
299 else /* older machine types */
300 ap_max_domain_id = 15;
14878424
HF
301 switch (*device_type) {
302 /* For CEX2 and CEX3 the available functions
a7b1868a 303 * are not reflected by the facilities bits.
14878424
HF
304 * Instead it is coded into the type. So here
305 * modify the function bits based on the type.
306 */
307 case AP_DEVICE_TYPE_CEX2A:
308 case AP_DEVICE_TYPE_CEX3A:
309 *facilities |= 0x08000000;
310 break;
311 case AP_DEVICE_TYPE_CEX2C:
312 case AP_DEVICE_TYPE_CEX3C:
313 *facilities |= 0x10000000;
314 break;
315 default:
316 break;
317 }
c50a160c
IT
318 return 0;
319 case AP_RESPONSE_Q_NOT_AVAIL:
320 case AP_RESPONSE_DECONFIGURED:
321 case AP_RESPONSE_CHECKSTOPPED:
322 case AP_RESPONSE_INVALID_ADDRESS:
323 return -ENODEV;
324 case AP_RESPONSE_RESET_IN_PROGRESS:
325 case AP_RESPONSE_OTHERWISE_CHANGED:
326 case AP_RESPONSE_BUSY:
327 return -EBUSY;
328 default:
329 BUG();
1534c382 330 }
1534c382
MS
331}
332
e28d2af4 333void ap_wait(enum ap_wait wait)
3f3007af
MS
334{
335 ktime_t hr_time;
336
337 switch (wait) {
338 case AP_WAIT_AGAIN:
339 case AP_WAIT_INTERRUPT:
340 if (ap_using_interrupts())
341 break;
342 if (ap_poll_kthread) {
343 wake_up(&ap_poll_wait);
344 break;
345 }
346 /* Fall through */
347 case AP_WAIT_TIMEOUT:
348 spin_lock_bh(&ap_poll_timer_lock);
349 if (!hrtimer_is_queued(&ap_poll_timer)) {
8b0e1953 350 hr_time = poll_timeout;
3f3007af
MS
351 hrtimer_forward_now(&ap_poll_timer, hr_time);
352 hrtimer_restart(&ap_poll_timer);
353 }
354 spin_unlock_bh(&ap_poll_timer_lock);
355 break;
356 case AP_WAIT_NONE:
357 default:
358 break;
359 }
360}
361
3f3007af
MS
362/**
363 * ap_request_timeout(): Handling of request timeouts
cefbeb5d 364 * @t: timer making this callback
3f3007af
MS
365 *
366 * Handles request timeouts.
367 */
cefbeb5d 368void ap_request_timeout(struct timer_list *t)
3f3007af 369{
cefbeb5d 370 struct ap_queue *aq = from_timer(aq, t, timeout);
3f3007af
MS
371
372 if (ap_suspend_flag)
373 return;
e28d2af4
IT
374 spin_lock_bh(&aq->lock);
375 ap_wait(ap_sm_event(aq, AP_EVENT_TIMEOUT));
376 spin_unlock_bh(&aq->lock);
3f3007af
MS
377}
378
379/**
380 * ap_poll_timeout(): AP receive polling for finished AP requests.
381 * @unused: Unused pointer.
382 *
383 * Schedules the AP tasklet using a high resolution timer.
384 */
385static enum hrtimer_restart ap_poll_timeout(struct hrtimer *unused)
386{
387 if (!ap_suspend_flag)
388 tasklet_schedule(&ap_tasklet);
389 return HRTIMER_NORESTART;
390}
391
392/**
393 * ap_interrupt_handler() - Schedule ap_tasklet on interrupt
394 * @airq: pointer to adapter interrupt descriptor
395 */
396static void ap_interrupt_handler(struct airq_struct *airq)
397{
398 inc_irq_stat(IRQIO_APB);
399 if (!ap_suspend_flag)
400 tasklet_schedule(&ap_tasklet);
401}
402
403/**
404 * ap_tasklet_fn(): Tasklet to poll all AP devices.
405 * @dummy: Unused variable
406 *
407 * Poll all AP devices on the bus.
408 */
409static void ap_tasklet_fn(unsigned long dummy)
410{
e28d2af4
IT
411 struct ap_card *ac;
412 struct ap_queue *aq;
3f3007af
MS
413 enum ap_wait wait = AP_WAIT_NONE;
414
415 /* Reset the indicator if interrupts are used. Thus new interrupts can
416 * be received. Doing it in the beginning of the tasklet is therefor
417 * important that no requests on any AP get lost.
418 */
419 if (ap_using_interrupts())
420 xchg(ap_airq.lsi_ptr, 0);
421
e28d2af4
IT
422 spin_lock_bh(&ap_list_lock);
423 for_each_ap_card(ac) {
424 for_each_ap_queue(aq, ac) {
425 spin_lock_bh(&aq->lock);
426 wait = min(wait, ap_sm_event_loop(aq, AP_EVENT_POLL));
427 spin_unlock_bh(&aq->lock);
428 }
3f3007af 429 }
e28d2af4
IT
430 spin_unlock_bh(&ap_list_lock);
431
432 ap_wait(wait);
af512ed0
RW
433}
434
9af3e04e
MS
435static int ap_pending_requests(void)
436{
e28d2af4
IT
437 struct ap_card *ac;
438 struct ap_queue *aq;
439
440 spin_lock_bh(&ap_list_lock);
441 for_each_ap_card(ac) {
442 for_each_ap_queue(aq, ac) {
443 if (aq->queue_count == 0)
444 continue;
445 spin_unlock_bh(&ap_list_lock);
446 return 1;
9af3e04e 447 }
9af3e04e 448 }
e28d2af4
IT
449 spin_unlock_bh(&ap_list_lock);
450 return 0;
9af3e04e
MS
451}
452
83e9d5d2
MS
453/**
454 * ap_poll_thread(): Thread that polls for finished requests.
455 * @data: Unused pointer
456 *
457 * AP bus poll thread. The purpose of this thread is to poll for
458 * finished requests in a loop if there is a "free" cpu - that is
459 * a cpu that doesn't have anything better to do. The polling stops
460 * as soon as there is another task or if all messages have been
461 * delivered.
462 */
463static int ap_poll_thread(void *data)
464{
465 DECLARE_WAITQUEUE(wait, current);
83e9d5d2
MS
466
467 set_user_nice(current, MAX_NICE);
468 set_freezable();
469 while (!kthread_should_stop()) {
470 add_wait_queue(&ap_poll_wait, &wait);
471 set_current_state(TASK_INTERRUPTIBLE);
9af3e04e 472 if (ap_suspend_flag || !ap_pending_requests()) {
83e9d5d2
MS
473 schedule();
474 try_to_freeze();
475 }
476 set_current_state(TASK_RUNNING);
477 remove_wait_queue(&ap_poll_wait, &wait);
83e9d5d2
MS
478 if (need_resched()) {
479 schedule();
480 try_to_freeze();
481 continue;
482 }
3f3007af 483 ap_tasklet_fn(0);
9af3e04e
MS
484 }
485
83e9d5d2
MS
486 return 0;
487}
488
489static int ap_poll_thread_start(void)
490{
491 int rc;
492
493 if (ap_using_interrupts() || ap_poll_kthread)
494 return 0;
495 mutex_lock(&ap_poll_thread_mutex);
496 ap_poll_kthread = kthread_run(ap_poll_thread, NULL, "appoll");
9c705206 497 rc = PTR_ERR_OR_ZERO(ap_poll_kthread);
83e9d5d2
MS
498 if (rc)
499 ap_poll_kthread = NULL;
500 mutex_unlock(&ap_poll_thread_mutex);
501 return rc;
502}
503
504static void ap_poll_thread_stop(void)
505{
506 if (!ap_poll_kthread)
507 return;
508 mutex_lock(&ap_poll_thread_mutex);
509 kthread_stop(ap_poll_kthread);
510 ap_poll_kthread = NULL;
511 mutex_unlock(&ap_poll_thread_mutex);
512}
513
e28d2af4
IT
514#define is_card_dev(x) ((x)->parent == ap_root_device)
515#define is_queue_dev(x) ((x)->parent != ap_root_device)
1534c382
MS
516
517/**
1749a81d
FB
518 * ap_bus_match()
519 * @dev: Pointer to device
520 * @drv: Pointer to device_driver
521 *
1534c382
MS
522 * AP bus driver registration/unregistration.
523 */
524static int ap_bus_match(struct device *dev, struct device_driver *drv)
525{
1534c382
MS
526 struct ap_driver *ap_drv = to_ap_drv(drv);
527 struct ap_device_id *id;
528
1749a81d 529 /*
1534c382
MS
530 * Compare device type of the device with the list of
531 * supported types of the device_driver.
532 */
533 for (id = ap_drv->ids; id->match_flags; id++) {
e28d2af4
IT
534 if (is_card_dev(dev) &&
535 id->match_flags & AP_DEVICE_ID_MATCH_CARD_TYPE &&
536 id->dev_type == to_ap_dev(dev)->device_type)
537 return 1;
538 if (is_queue_dev(dev) &&
539 id->match_flags & AP_DEVICE_ID_MATCH_QUEUE_TYPE &&
540 id->dev_type == to_ap_dev(dev)->device_type)
541 return 1;
1534c382
MS
542 }
543 return 0;
544}
545
546/**
1749a81d
FB
547 * ap_uevent(): Uevent function for AP devices.
548 * @dev: Pointer to device
549 * @env: Pointer to kobj_uevent_env
550 *
551 * It sets up a single environment variable DEV_TYPE which contains the
552 * hardware device type.
1534c382 553 */
ac2b96f3 554static int ap_uevent(struct device *dev, struct kobj_uevent_env *env)
1534c382
MS
555{
556 struct ap_device *ap_dev = to_ap_dev(dev);
7eff2e7a 557 int retval = 0;
1534c382
MS
558
559 if (!ap_dev)
560 return -ENODEV;
561
562 /* Set up DEV_TYPE environment variable. */
7eff2e7a 563 retval = add_uevent_var(env, "DEV_TYPE=%04X", ap_dev->device_type);
bf62456e
ER
564 if (retval)
565 return retval;
566
66a4263b 567 /* Add MODALIAS= */
7eff2e7a 568 retval = add_uevent_var(env, "MODALIAS=ap:t%02X", ap_dev->device_type);
bf62456e 569
bf62456e 570 return retval;
1534c382
MS
571}
572
3e488c95 573static int ap_dev_suspend(struct device *dev)
772f5472
FB
574{
575 struct ap_device *ap_dev = to_ap_dev(dev);
772f5472 576
e28d2af4
IT
577 if (ap_dev->drv && ap_dev->drv->suspend)
578 ap_dev->drv->suspend(ap_dev);
579 return 0;
580}
581
582static int ap_dev_resume(struct device *dev)
583{
584 struct ap_device *ap_dev = to_ap_dev(dev);
585
586 if (ap_dev->drv && ap_dev->drv->resume)
587 ap_dev->drv->resume(ap_dev);
83e9d5d2
MS
588 return 0;
589}
5314af69 590
83e9d5d2
MS
591static void ap_bus_suspend(void)
592{
ac2b96f3 593 AP_DBF(DBF_DEBUG, "%s running\n", __func__);
cccd85bf 594
83e9d5d2
MS
595 ap_suspend_flag = 1;
596 /*
597 * Disable scanning for devices, thus we do not want to scan
598 * for them after removing.
599 */
8139b89d 600 flush_work(&ap_scan_work);
83e9d5d2
MS
601 tasklet_disable(&ap_tasklet);
602}
603
e28d2af4
IT
604static int __ap_card_devices_unregister(struct device *dev, void *dummy)
605{
606 if (is_card_dev(dev))
607 device_unregister(dev);
608 return 0;
609}
610
611static int __ap_queue_devices_unregister(struct device *dev, void *dummy)
612{
613 if (is_queue_dev(dev))
614 device_unregister(dev);
615 return 0;
616}
617
618static int __ap_queue_devices_with_id_unregister(struct device *dev, void *data)
83e9d5d2 619{
e28d2af4
IT
620 if (is_queue_dev(dev) &&
621 AP_QID_CARD(to_ap_queue(dev)->qid) == (int)(long) data)
622 device_unregister(dev);
83e9d5d2
MS
623 return 0;
624}
625
626static void ap_bus_resume(void)
772f5472 627{
f4eae94f 628 int rc;
772f5472 629
ac2b96f3 630 AP_DBF(DBF_DEBUG, "%s running\n", __func__);
cccd85bf 631
e28d2af4
IT
632 /* remove all queue devices */
633 bus_for_each_dev(&ap_bus_type, NULL, NULL,
634 __ap_queue_devices_unregister);
635 /* remove all card devices */
636 bus_for_each_dev(&ap_bus_type, NULL, NULL,
637 __ap_card_devices_unregister);
638
83e9d5d2
MS
639 /* Reset thin interrupt setting */
640 if (ap_interrupts_available() && !ap_using_interrupts()) {
641 rc = register_adapter_interrupt(&ap_airq);
642 ap_airq_flag = (rc == 0);
5314af69 643 }
83e9d5d2
MS
644 if (!ap_interrupts_available() && ap_using_interrupts()) {
645 unregister_adapter_interrupt(&ap_airq);
646 ap_airq_flag = 0;
647 }
648 /* Reset domain */
649 if (!user_set_domain)
650 ap_domain_index = -1;
651 /* Get things going again */
652 ap_suspend_flag = 0;
653 if (ap_airq_flag)
654 xchg(ap_airq.lsi_ptr, 0);
655 tasklet_enable(&ap_tasklet);
8139b89d 656 queue_work(system_long_wq, &ap_scan_work);
83e9d5d2 657}
772f5472 658
83e9d5d2
MS
659static int ap_power_event(struct notifier_block *this, unsigned long event,
660 void *ptr)
661{
662 switch (event) {
663 case PM_HIBERNATION_PREPARE:
664 case PM_SUSPEND_PREPARE:
665 ap_bus_suspend();
666 break;
667 case PM_POST_HIBERNATION:
668 case PM_POST_SUSPEND:
669 ap_bus_resume();
670 break;
671 default:
672 break;
673 }
674 return NOTIFY_DONE;
772f5472 675}
83e9d5d2
MS
676static struct notifier_block ap_power_notifier = {
677 .notifier_call = ap_power_event,
678};
772f5472 679
e28d2af4 680static SIMPLE_DEV_PM_OPS(ap_bus_pm_ops, ap_dev_suspend, ap_dev_resume);
3e488c95 681
1534c382
MS
682static struct bus_type ap_bus_type = {
683 .name = "ap",
684 .match = &ap_bus_match,
685 .uevent = &ap_uevent,
3e488c95 686 .pm = &ap_bus_pm_ops,
1534c382
MS
687};
688
7e0bdbe5
HF
689static int __ap_revise_reserved(struct device *dev, void *dummy)
690{
691 int rc, card, queue, devres, drvres;
692
693 if (is_queue_dev(dev)) {
694 card = AP_QID_CARD(to_ap_queue(dev)->qid);
695 queue = AP_QID_QUEUE(to_ap_queue(dev)->qid);
696 mutex_lock(&ap_perms_mutex);
697 devres = test_bit_inv(card, ap_perms.apm)
698 && test_bit_inv(queue, ap_perms.aqm);
699 mutex_unlock(&ap_perms_mutex);
700 drvres = to_ap_drv(dev->driver)->flags
701 & AP_DRIVER_FLAG_DEFAULT;
702 if (!!devres != !!drvres) {
703 AP_DBF(DBF_DEBUG, "reprobing queue=%02x.%04x\n",
704 card, queue);
705 rc = device_reprobe(dev);
706 }
707 }
708
709 return 0;
710}
711
712static void ap_bus_revise_bindings(void)
713{
714 bus_for_each_dev(&ap_bus_type, NULL, NULL, __ap_revise_reserved);
715}
716
717int ap_owned_by_def_drv(int card, int queue)
718{
719 int rc = 0;
720
721 if (card < 0 || card >= AP_DEVICES || queue < 0 || queue >= AP_DOMAINS)
722 return -EINVAL;
723
724 mutex_lock(&ap_perms_mutex);
725
726 if (test_bit_inv(card, ap_perms.apm)
727 && test_bit_inv(queue, ap_perms.aqm))
728 rc = 1;
729
730 mutex_unlock(&ap_perms_mutex);
731
732 return rc;
733}
734EXPORT_SYMBOL(ap_owned_by_def_drv);
735
736int ap_apqn_in_matrix_owned_by_def_drv(unsigned long *apm,
737 unsigned long *aqm)
738{
739 int card, queue, rc = 0;
740
741 mutex_lock(&ap_perms_mutex);
742
743 for (card = 0; !rc && card < AP_DEVICES; card++)
744 if (test_bit_inv(card, apm) &&
745 test_bit_inv(card, ap_perms.apm))
746 for (queue = 0; !rc && queue < AP_DOMAINS; queue++)
747 if (test_bit_inv(queue, aqm) &&
748 test_bit_inv(queue, ap_perms.aqm))
749 rc = 1;
750
751 mutex_unlock(&ap_perms_mutex);
752
753 return rc;
754}
755EXPORT_SYMBOL(ap_apqn_in_matrix_owned_by_def_drv);
756
1534c382
MS
757static int ap_device_probe(struct device *dev)
758{
759 struct ap_device *ap_dev = to_ap_dev(dev);
3f3007af 760 struct ap_driver *ap_drv = to_ap_drv(dev->driver);
7e0bdbe5
HF
761 int card, queue, devres, drvres, rc;
762
763 if (is_queue_dev(dev)) {
764 /*
765 * If the apqn is marked as reserved/used by ap bus and
766 * default drivers, only probe with drivers with the default
767 * flag set. If it is not marked, only probe with drivers
768 * with the default flag not set.
769 */
770 card = AP_QID_CARD(to_ap_queue(dev)->qid);
771 queue = AP_QID_QUEUE(to_ap_queue(dev)->qid);
772 mutex_lock(&ap_perms_mutex);
773 devres = test_bit_inv(card, ap_perms.apm)
774 && test_bit_inv(queue, ap_perms.aqm);
775 mutex_unlock(&ap_perms_mutex);
776 drvres = ap_drv->flags & AP_DRIVER_FLAG_DEFAULT;
777 if (!!devres != !!drvres)
778 return -ENODEV;
104f708f
HF
779 /* (re-)init queue's state machine */
780 ap_queue_reinit_state(to_ap_queue(dev));
7e0bdbe5 781 }
666e68e0 782
e3850508
HF
783 /* Add queue/card to list of active queues/cards */
784 spin_lock_bh(&ap_list_lock);
785 if (is_card_dev(dev))
786 list_add(&to_ap_card(dev)->list, &ap_card_list);
787 else
788 list_add(&to_ap_queue(dev)->list,
789 &to_ap_queue(dev)->card->queues);
790 spin_unlock_bh(&ap_list_lock);
791
3f3007af 792 ap_dev->drv = ap_drv;
1534c382 793 rc = ap_drv->probe ? ap_drv->probe(ap_dev) : -ENODEV;
e3850508
HF
794
795 if (rc) {
796 spin_lock_bh(&ap_list_lock);
797 if (is_card_dev(dev))
798 list_del_init(&to_ap_card(dev)->list);
799 else
800 list_del_init(&to_ap_queue(dev)->list);
801 spin_unlock_bh(&ap_list_lock);
3f3007af 802 ap_dev->drv = NULL;
e3850508
HF
803 }
804
1534c382
MS
805 return rc;
806}
807
1534c382
MS
808static int ap_device_remove(struct device *dev)
809{
810 struct ap_device *ap_dev = to_ap_dev(dev);
811 struct ap_driver *ap_drv = ap_dev->drv;
812
104f708f
HF
813 if (is_queue_dev(dev))
814 ap_queue_remove(to_ap_queue(dev));
e3850508
HF
815 if (ap_drv->remove)
816 ap_drv->remove(ap_dev);
817
818 /* Remove queue/card from list of active queues/cards */
e28d2af4
IT
819 spin_lock_bh(&ap_list_lock);
820 if (is_card_dev(dev))
821 list_del_init(&to_ap_card(dev)->list);
822 else
823 list_del_init(&to_ap_queue(dev)->list);
824 spin_unlock_bh(&ap_list_lock);
e3850508 825
1534c382
MS
826 return 0;
827}
828
829int ap_driver_register(struct ap_driver *ap_drv, struct module *owner,
830 char *name)
831{
832 struct device_driver *drv = &ap_drv->driver;
833
e387753c
SS
834 if (!initialised)
835 return -ENODEV;
836
1534c382
MS
837 drv->bus = &ap_bus_type;
838 drv->probe = ap_device_probe;
839 drv->remove = ap_device_remove;
840 drv->owner = owner;
841 drv->name = name;
842 return driver_register(drv);
843}
844EXPORT_SYMBOL(ap_driver_register);
845
846void ap_driver_unregister(struct ap_driver *ap_drv)
847{
848 driver_unregister(&ap_drv->driver);
849}
850EXPORT_SYMBOL(ap_driver_unregister);
851
dabecb29
HD
852void ap_bus_force_rescan(void)
853{
83e9d5d2
MS
854 if (ap_suspend_flag)
855 return;
56bbe686 856 /* processing a asynchronous bus rescan */
fcd0d1f6 857 del_timer(&ap_config_timer);
8139b89d
MS
858 queue_work(system_long_wq, &ap_scan_work);
859 flush_work(&ap_scan_work);
dabecb29
HD
860}
861EXPORT_SYMBOL(ap_bus_force_rescan);
862
1749a81d 863/*
3d8f60d3
HF
864 * hex2bitmap() - parse hex mask string and set bitmap.
865 * Valid strings are "0x012345678" with at least one valid hex number.
866 * Rest of the bitmap to the right is padded with 0. No spaces allowed
867 * within the string, the leading 0x may be omitted.
868 * Returns the bitmask with exactly the bits set as given by the hex
869 * string (both in big endian order).
1534c382 870 */
7e0bdbe5
HF
871static int hex2bitmap(const char *str, unsigned long *bitmap, int bits)
872{
873 int i, n, b;
874
875 /* bits needs to be a multiple of 8 */
876 if (bits & 0x07)
877 return -EINVAL;
878
7e0bdbe5
HF
879 if (str[0] == '0' && str[1] == 'x')
880 str++;
881 if (*str == 'x')
882 str++;
883
884 for (i = 0; isxdigit(*str) && i < bits; str++) {
885 b = hex_to_bin(*str);
886 for (n = 0; n < 4; n++)
887 if (b & (0x08 >> n))
888 set_bit_inv(i + n, bitmap);
889 i += 4;
890 }
891
3d8f60d3
HF
892 if (*str == '\n')
893 str++;
894 if (*str)
895 return -EINVAL;
896 return 0;
897}
898
899/*
fa108f95
MS
900 * modify_bitmap() - parse bitmask argument and modify an existing
901 * bit mask accordingly. A concatenation (done with ',') of these
902 * terms is recognized:
3d8f60d3
HF
903 * +<bitnr>[-<bitnr>] or -<bitnr>[-<bitnr>]
904 * <bitnr> may be any valid number (hex, decimal or octal) in the range
905 * 0...bits-1; the leading + or - is required. Here are some examples:
906 * +0-15,+32,-128,-0xFF
907 * -0-255,+1-16,+0x128
908 * +1,+2,+3,+4,-5,-7-10
fa108f95
MS
909 * Returns the new bitmap after all changes have been applied. Every
910 * positive value in the string will set a bit and every negative value
911 * in the string will clear a bit. As a bit may be touched more than once,
912 * the last 'operation' wins:
913 * +0-255,-128 = first bits 0-255 will be set, then bit 128 will be
914 * cleared again. All other bits are unmodified.
3d8f60d3 915 */
fa108f95 916static int modify_bitmap(const char *str, unsigned long *bitmap, int bits)
3d8f60d3
HF
917{
918 int a, i, z;
919 char *np, sign;
920
921 /* bits needs to be a multiple of 8 */
922 if (bits & 0x07)
7e0bdbe5
HF
923 return -EINVAL;
924
3d8f60d3
HF
925 while (*str) {
926 sign = *str++;
927 if (sign != '+' && sign != '-')
928 return -EINVAL;
929 a = z = simple_strtoul(str, &np, 0);
930 if (str == np || a >= bits)
931 return -EINVAL;
932 str = np;
933 if (*str == '-') {
934 z = simple_strtoul(++str, &np, 0);
935 if (str == np || a > z || z >= bits)
936 return -EINVAL;
937 str = np;
938 }
939 for (i = a; i <= z; i++)
fa108f95
MS
940 if (sign == '+')
941 set_bit_inv(i, bitmap);
942 else
943 clear_bit_inv(i, bitmap);
3d8f60d3
HF
944 while (*str == ',' || *str == '\n')
945 str++;
946 }
947
7e0bdbe5
HF
948 return 0;
949}
950
00fab235
HF
951int ap_parse_mask_str(const char *str,
952 unsigned long *bitmap, int bits,
953 struct mutex *lock)
3d8f60d3 954{
fa108f95
MS
955 unsigned long *newmap, size;
956 int rc;
3d8f60d3
HF
957
958 /* bits needs to be a multiple of 8 */
959 if (bits & 0x07)
960 return -EINVAL;
961
fa108f95
MS
962 size = BITS_TO_LONGS(bits)*sizeof(unsigned long);
963 newmap = kmalloc(size, GFP_KERNEL);
964 if (!newmap)
965 return -ENOMEM;
966 if (mutex_lock_interruptible(lock)) {
967 kfree(newmap);
968 return -ERESTARTSYS;
969 }
970
3d8f60d3 971 if (*str == '+' || *str == '-') {
fa108f95
MS
972 memcpy(newmap, bitmap, size);
973 rc = modify_bitmap(str, newmap, bits);
3d8f60d3 974 } else {
fa108f95
MS
975 memset(newmap, 0, size);
976 rc = hex2bitmap(str, newmap, bits);
3d8f60d3 977 }
fa108f95
MS
978 if (rc == 0)
979 memcpy(bitmap, newmap, size);
3d8f60d3 980 mutex_unlock(lock);
fa108f95
MS
981 kfree(newmap);
982 return rc;
3d8f60d3 983}
00fab235 984EXPORT_SYMBOL(ap_parse_mask_str);
3d8f60d3
HF
985
986/*
987 * AP bus attributes.
988 */
989
1534c382
MS
990static ssize_t ap_domain_show(struct bus_type *bus, char *buf)
991{
992 return snprintf(buf, PAGE_SIZE, "%d\n", ap_domain_index);
993}
994
fc1d3f02
IT
995static ssize_t ap_domain_store(struct bus_type *bus,
996 const char *buf, size_t count)
997{
998 int domain;
999
1000 if (sscanf(buf, "%i\n", &domain) != 1 ||
7e0bdbe5
HF
1001 domain < 0 || domain > ap_max_domain_id ||
1002 !test_bit_inv(domain, ap_perms.aqm))
fc1d3f02
IT
1003 return -EINVAL;
1004 spin_lock_bh(&ap_domain_lock);
1005 ap_domain_index = domain;
1006 spin_unlock_bh(&ap_domain_lock);
cccd85bf 1007
ac994e80 1008 AP_DBF(DBF_DEBUG, "stored new default domain=%d\n", domain);
cccd85bf 1009
fc1d3f02
IT
1010 return count;
1011}
1012
ac2b96f3 1013static BUS_ATTR_RW(ap_domain);
1534c382 1014
91f3e3ea
IT
1015static ssize_t ap_control_domain_mask_show(struct bus_type *bus, char *buf)
1016{
889875a1
MS
1017 if (!ap_configuration) /* QCI not supported */
1018 return snprintf(buf, PAGE_SIZE, "not supported\n");
e28d2af4 1019
889875a1
MS
1020 return snprintf(buf, PAGE_SIZE,
1021 "0x%08x%08x%08x%08x%08x%08x%08x%08x\n",
91f3e3ea
IT
1022 ap_configuration->adm[0], ap_configuration->adm[1],
1023 ap_configuration->adm[2], ap_configuration->adm[3],
1024 ap_configuration->adm[4], ap_configuration->adm[5],
1025 ap_configuration->adm[6], ap_configuration->adm[7]);
91f3e3ea
IT
1026}
1027
ac2b96f3 1028static BUS_ATTR_RO(ap_control_domain_mask);
91f3e3ea 1029
e28d2af4
IT
1030static ssize_t ap_usage_domain_mask_show(struct bus_type *bus, char *buf)
1031{
1032 if (!ap_configuration) /* QCI not supported */
1033 return snprintf(buf, PAGE_SIZE, "not supported\n");
1034
1035 return snprintf(buf, PAGE_SIZE,
1036 "0x%08x%08x%08x%08x%08x%08x%08x%08x\n",
1037 ap_configuration->aqm[0], ap_configuration->aqm[1],
1038 ap_configuration->aqm[2], ap_configuration->aqm[3],
1039 ap_configuration->aqm[4], ap_configuration->aqm[5],
1040 ap_configuration->aqm[6], ap_configuration->aqm[7]);
1041}
1042
ac2b96f3 1043static BUS_ATTR_RO(ap_usage_domain_mask);
1534c382 1044
aa55bf5f
HF
1045static ssize_t ap_adapter_mask_show(struct bus_type *bus, char *buf)
1046{
1047 if (!ap_configuration) /* QCI not supported */
1048 return snprintf(buf, PAGE_SIZE, "not supported\n");
1049
1050 return snprintf(buf, PAGE_SIZE,
1051 "0x%08x%08x%08x%08x%08x%08x%08x%08x\n",
1052 ap_configuration->apm[0], ap_configuration->apm[1],
1053 ap_configuration->apm[2], ap_configuration->apm[3],
1054 ap_configuration->apm[4], ap_configuration->apm[5],
1055 ap_configuration->apm[6], ap_configuration->apm[7]);
1056}
1057
1058static BUS_ATTR_RO(ap_adapter_mask);
1059
cb17a636
FB
1060static ssize_t ap_interrupts_show(struct bus_type *bus, char *buf)
1061{
1062 return snprintf(buf, PAGE_SIZE, "%d\n",
1063 ap_using_interrupts() ? 1 : 0);
1064}
1065
ac2b96f3
HF
1066static BUS_ATTR_RO(ap_interrupts);
1067
1068static ssize_t config_time_show(struct bus_type *bus, char *buf)
1069{
1070 return snprintf(buf, PAGE_SIZE, "%d\n", ap_config_time);
1071}
cb17a636 1072
ac2b96f3
HF
1073static ssize_t config_time_store(struct bus_type *bus,
1074 const char *buf, size_t count)
1534c382
MS
1075{
1076 int time;
1077
1078 if (sscanf(buf, "%d\n", &time) != 1 || time < 5 || time > 120)
1079 return -EINVAL;
1080 ap_config_time = time;
fcd0d1f6 1081 mod_timer(&ap_config_timer, jiffies + ap_config_time * HZ);
1534c382
MS
1082 return count;
1083}
1084
ac2b96f3 1085static BUS_ATTR_RW(config_time);
1534c382 1086
ac2b96f3 1087static ssize_t poll_thread_show(struct bus_type *bus, char *buf)
1534c382
MS
1088{
1089 return snprintf(buf, PAGE_SIZE, "%d\n", ap_poll_kthread ? 1 : 0);
1090}
1091
ac2b96f3
HF
1092static ssize_t poll_thread_store(struct bus_type *bus,
1093 const char *buf, size_t count)
1534c382
MS
1094{
1095 int flag, rc;
1096
1097 if (sscanf(buf, "%d\n", &flag) != 1)
1098 return -EINVAL;
1099 if (flag) {
1100 rc = ap_poll_thread_start();
1101 if (rc)
83e9d5d2
MS
1102 count = rc;
1103 } else
1534c382
MS
1104 ap_poll_thread_stop();
1105 return count;
1106}
1107
ac2b96f3 1108static BUS_ATTR_RW(poll_thread);
1534c382 1109
fe137230
FB
1110static ssize_t poll_timeout_show(struct bus_type *bus, char *buf)
1111{
1112 return snprintf(buf, PAGE_SIZE, "%llu\n", poll_timeout);
1113}
1114
1115static ssize_t poll_timeout_store(struct bus_type *bus, const char *buf,
1116 size_t count)
1117{
1118 unsigned long long time;
1119 ktime_t hr_time;
1120
1121 /* 120 seconds = maximum poll interval */
cb17a636
FB
1122 if (sscanf(buf, "%llu\n", &time) != 1 || time < 1 ||
1123 time > 120000000000ULL)
fe137230
FB
1124 return -EINVAL;
1125 poll_timeout = time;
8b0e1953 1126 hr_time = poll_timeout;
fe137230 1127
8cc2af7c
IT
1128 spin_lock_bh(&ap_poll_timer_lock);
1129 hrtimer_cancel(&ap_poll_timer);
1130 hrtimer_set_expires(&ap_poll_timer, hr_time);
1131 hrtimer_start_expires(&ap_poll_timer, HRTIMER_MODE_ABS);
1132 spin_unlock_bh(&ap_poll_timer_lock);
1133
fe137230
FB
1134 return count;
1135}
1136
ac2b96f3 1137static BUS_ATTR_RW(poll_timeout);
fe137230 1138
5bc334bf
IT
1139static ssize_t ap_max_domain_id_show(struct bus_type *bus, char *buf)
1140{
889875a1
MS
1141 int max_domain_id;
1142
1143 if (ap_configuration)
1144 max_domain_id = ap_max_domain_id ? : -1;
1145 else
5bc334bf 1146 max_domain_id = 15;
5bc334bf
IT
1147 return snprintf(buf, PAGE_SIZE, "%d\n", max_domain_id);
1148}
1149
ac2b96f3 1150static BUS_ATTR_RO(ap_max_domain_id);
5bc334bf 1151
7e0bdbe5
HF
1152static ssize_t apmask_show(struct bus_type *bus, char *buf)
1153{
1154 int rc;
1155
1156 if (mutex_lock_interruptible(&ap_perms_mutex))
1157 return -ERESTARTSYS;
1158 rc = snprintf(buf, PAGE_SIZE,
1159 "0x%016lx%016lx%016lx%016lx\n",
1160 ap_perms.apm[0], ap_perms.apm[1],
1161 ap_perms.apm[2], ap_perms.apm[3]);
1162 mutex_unlock(&ap_perms_mutex);
1163
1164 return rc;
1165}
1166
1167static ssize_t apmask_store(struct bus_type *bus, const char *buf,
1168 size_t count)
1169{
3d8f60d3 1170 int rc;
7e0bdbe5 1171
00fab235 1172 rc = ap_parse_mask_str(buf, ap_perms.apm, AP_DEVICES, &ap_perms_mutex);
3d8f60d3
HF
1173 if (rc)
1174 return rc;
7e0bdbe5
HF
1175
1176 ap_bus_revise_bindings();
1177
1178 return count;
1179}
1180
1181static BUS_ATTR_RW(apmask);
1182
1183static ssize_t aqmask_show(struct bus_type *bus, char *buf)
1184{
1185 int rc;
1186
1187 if (mutex_lock_interruptible(&ap_perms_mutex))
1188 return -ERESTARTSYS;
1189 rc = snprintf(buf, PAGE_SIZE,
1190 "0x%016lx%016lx%016lx%016lx\n",
1191 ap_perms.aqm[0], ap_perms.aqm[1],
1192 ap_perms.aqm[2], ap_perms.aqm[3]);
1193 mutex_unlock(&ap_perms_mutex);
1194
1195 return rc;
1196}
1197
1198static ssize_t aqmask_store(struct bus_type *bus, const char *buf,
1199 size_t count)
1200{
3d8f60d3 1201 int rc;
7e0bdbe5 1202
00fab235 1203 rc = ap_parse_mask_str(buf, ap_perms.aqm, AP_DOMAINS, &ap_perms_mutex);
3d8f60d3
HF
1204 if (rc)
1205 return rc;
7e0bdbe5
HF
1206
1207 ap_bus_revise_bindings();
1208
1209 return count;
1210}
1211
1212static BUS_ATTR_RW(aqmask);
1213
1534c382
MS
1214static struct bus_attribute *const ap_bus_attrs[] = {
1215 &bus_attr_ap_domain,
91f3e3ea 1216 &bus_attr_ap_control_domain_mask,
e28d2af4 1217 &bus_attr_ap_usage_domain_mask,
aa55bf5f 1218 &bus_attr_ap_adapter_mask,
1534c382
MS
1219 &bus_attr_config_time,
1220 &bus_attr_poll_thread,
cb17a636 1221 &bus_attr_ap_interrupts,
fe137230 1222 &bus_attr_poll_timeout,
5bc334bf 1223 &bus_attr_ap_max_domain_id,
7e0bdbe5
HF
1224 &bus_attr_apmask,
1225 &bus_attr_aqmask,
fe137230 1226 NULL,
1534c382
MS
1227};
1228
1229/**
1c472d46
HP
1230 * ap_select_domain(): Select an AP domain if possible and we haven't
1231 * already done so before.
1534c382 1232 */
1c472d46 1233static void ap_select_domain(void)
1534c382 1234{
6acbe21f
MS
1235 int count, max_count, best_domain;
1236 struct ap_queue_status status;
1237 int i, j;
1534c382 1238
1749a81d 1239 /*
1534c382
MS
1240 * We want to use a single domain. Either the one specified with
1241 * the "domain=" parameter or the domain with the maximum number
1242 * of devices.
1243 */
fc1d3f02
IT
1244 spin_lock_bh(&ap_domain_lock);
1245 if (ap_domain_index >= 0) {
1534c382 1246 /* Domain has already been selected. */
fc1d3f02 1247 spin_unlock_bh(&ap_domain_lock);
1c472d46 1248 return;
fc1d3f02 1249 }
1534c382
MS
1250 best_domain = -1;
1251 max_count = 0;
1252 for (i = 0; i < AP_DOMAINS; i++) {
7e0bdbe5
HF
1253 if (!ap_test_config_domain(i) ||
1254 !test_bit_inv(i, ap_perms.aqm))
75014550 1255 continue;
1534c382
MS
1256 count = 0;
1257 for (j = 0; j < AP_DEVICES; j++) {
75014550
HD
1258 if (!ap_test_config_card_id(j))
1259 continue;
e7fc5146
TK
1260 status = ap_test_queue(AP_MKQID(j, i),
1261 ap_apft_available(),
1262 NULL);
6acbe21f 1263 if (status.response_code != AP_RESPONSE_NORMAL)
1534c382
MS
1264 continue;
1265 count++;
1266 }
1267 if (count > max_count) {
1268 max_count = count;
1269 best_domain = i;
1270 }
1271 }
ac2b96f3 1272 if (best_domain >= 0) {
1534c382 1273 ap_domain_index = best_domain;
ac994e80 1274 AP_DBF(DBF_DEBUG, "new ap_domain_index=%d\n", ap_domain_index);
1534c382 1275 }
fc1d3f02 1276 spin_unlock_bh(&ap_domain_lock);
1534c382
MS
1277}
1278
9a564108
HF
1279/*
1280 * This function checks the type and returns either 0 for not
1281 * supported or the highest compatible type value (which may
1282 * include the input type value).
1283 */
1284static int ap_get_compatible_type(ap_qid_t qid, int rawtype, unsigned int func)
1285{
1286 int comp_type = 0;
1287
1288 /* < CEX2A is not supported */
1289 if (rawtype < AP_DEVICE_TYPE_CEX2A)
1290 return 0;
1291 /* up to CEX6 known and fully supported */
1292 if (rawtype <= AP_DEVICE_TYPE_CEX6)
1293 return rawtype;
1294 /*
1295 * unknown new type > CEX6, check for compatibility
1296 * to the highest known and supported type which is
1297 * currently CEX6 with the help of the QACT function.
1298 */
1299 if (ap_qact_available()) {
1300 struct ap_queue_status status;
56c5c683 1301 union ap_qact_ap_info apinfo = {0};
9a564108
HF
1302
1303 apinfo.mode = (func >> 26) & 0x07;
1304 apinfo.cat = AP_DEVICE_TYPE_CEX6;
1305 status = ap_qact(qid, 0, &apinfo);
1306 if (status.response_code == AP_RESPONSE_NORMAL
1307 && apinfo.cat >= AP_DEVICE_TYPE_CEX2A
1308 && apinfo.cat <= AP_DEVICE_TYPE_CEX6)
1309 comp_type = apinfo.cat;
1310 }
1311 if (!comp_type)
1312 AP_DBF(DBF_WARN, "queue=%02x.%04x unable to map type %d\n",
1313 AP_QID_CARD(qid), AP_QID_QUEUE(qid), rawtype);
1314 else if (comp_type != rawtype)
1315 AP_DBF(DBF_INFO, "queue=%02x.%04x map type %d to %d\n",
1316 AP_QID_CARD(qid), AP_QID_QUEUE(qid), rawtype, comp_type);
1317 return comp_type;
1318}
1319
e28d2af4 1320/*
a7b1868a 1321 * Helper function to be used with bus_find_dev
e28d2af4 1322 * matches for the card device with the given id
1534c382 1323 */
e28d2af4 1324static int __match_card_device_with_id(struct device *dev, void *data)
1534c382 1325{
e28d2af4 1326 return is_card_dev(dev) && to_ap_card(dev)->id == (int)(long) data;
1534c382
MS
1327}
1328
a7b1868a
HF
1329/*
1330 * Helper function to be used with bus_find_dev
e28d2af4
IT
1331 * matches for the queue device with a given qid
1332 */
1333static int __match_queue_device_with_qid(struct device *dev, void *data)
1334{
1335 return is_queue_dev(dev) && to_ap_queue(dev)->qid == (int)(long) data;
1336}
1337
b1af7528
HF
1338/*
1339 * Helper function to be used with bus_find_dev
1340 * matches any queue device with given queue id
1341 */
1342static int __match_queue_device_with_queue_id(struct device *dev, void *data)
1343{
1344 return is_queue_dev(dev)
1345 && AP_QID_QUEUE(to_ap_queue(dev)->qid) == (int)(long) data;
1346}
1347
a7b1868a
HF
1348/*
1349 * Helper function for ap_scan_bus().
1350 * Does the scan bus job for the given adapter id.
e28d2af4 1351 */
a7b1868a 1352static void _ap_scan_bus_adapter(int id)
1534c382 1353{
a7b1868a
HF
1354 ap_qid_t qid;
1355 unsigned int func;
e28d2af4 1356 struct ap_card *ac;
1534c382 1357 struct device *dev;
a7b1868a
HF
1358 struct ap_queue *aq;
1359 int rc, dom, depth, type, comp_type, borked;
1360
1361 /* check if there is a card device registered with this id */
1362 dev = bus_find_device(&ap_bus_type, NULL,
1363 (void *)(long) id,
1364 __match_card_device_with_id);
1365 ac = dev ? to_ap_card(dev) : NULL;
1366 if (!ap_test_config_card_id(id)) {
1367 if (dev) {
1368 /* Card device has been removed from configuration */
1369 bus_for_each_dev(&ap_bus_type, NULL,
1370 (void *)(long) id,
1371 __ap_queue_devices_with_id_unregister);
1372 device_unregister(dev);
1373 put_device(dev);
1374 }
1375 return;
1376 }
cccd85bf 1377
a7b1868a
HF
1378 /*
1379 * This card id is enabled in the configuration. If we already have
1380 * a card device with this id, check if type and functions are still
1381 * the very same. Also verify that at least one queue is available.
1382 */
1383 if (ac) {
1384 /* find the first valid queue */
1385 for (dom = 0; dom < AP_DOMAINS; dom++) {
1386 qid = AP_MKQID(id, dom);
1387 if (ap_query_queue(qid, &depth, &type, &func) == 0)
1388 break;
1389 }
1390 borked = 0;
1391 if (dom >= AP_DOMAINS) {
1392 /* no accessible queue on this card */
1393 borked = 1;
1394 } else if (ac->raw_hwtype != type) {
1395 /* card type has changed */
1396 AP_DBF(DBF_INFO, "card=%02x type changed.\n", id);
1397 borked = 1;
1398 } else if (ac->functions != func) {
1399 /* card functions have changed */
1400 AP_DBF(DBF_INFO, "card=%02x functions changed.\n", id);
1401 borked = 1;
1402 }
1403 if (borked) {
1404 /* unregister card device and associated queues */
1405 bus_for_each_dev(&ap_bus_type, NULL,
1406 (void *)(long) id,
1407 __ap_queue_devices_with_id_unregister);
1408 device_unregister(dev);
1409 put_device(dev);
1410 /* go back if there is no valid queue on this card */
1411 if (dom >= AP_DOMAINS)
1412 return;
1413 ac = NULL;
1414 }
1415 }
889875a1 1416
a7b1868a
HF
1417 /*
1418 * Go through all possible queue ids. Check and maybe create or release
1419 * queue devices for this card. If there exists no card device yet,
1420 * create a card device also.
1421 */
1422 for (dom = 0; dom < AP_DOMAINS; dom++) {
1423 qid = AP_MKQID(id, dom);
1534c382 1424 dev = bus_find_device(&ap_bus_type, NULL,
a7b1868a
HF
1425 (void *)(long) qid,
1426 __match_queue_device_with_qid);
1427 aq = dev ? to_ap_queue(dev) : NULL;
1428 if (!ap_test_config_domain(dom)) {
e28d2af4 1429 if (dev) {
a7b1868a
HF
1430 /* Queue device exists but has been
1431 * removed from configuration.
e28d2af4 1432 */
3f3007af 1433 device_unregister(dev);
e28d2af4
IT
1434 put_device(dev);
1435 }
1534c382
MS
1436 continue;
1437 }
a7b1868a
HF
1438 /* try to fetch infos about this queue */
1439 rc = ap_query_queue(qid, &depth, &type, &func);
1440 if (dev) {
1441 if (rc == -ENODEV)
1442 borked = 1;
1443 else {
e28d2af4 1444 spin_lock_bh(&aq->lock);
e28d2af4
IT
1445 borked = aq->state == AP_STATE_BORKED;
1446 spin_unlock_bh(&aq->lock);
e28d2af4 1447 }
b1af7528
HF
1448 if (borked) {
1449 /* Remove broken device */
1450 AP_DBF(DBF_DEBUG,
1451 "removing broken queue=%02x.%04x\n",
1452 id, dom);
a7b1868a 1453 device_unregister(dev);
b1af7528 1454 }
a7b1868a
HF
1455 put_device(dev);
1456 continue;
1457 }
1458 if (rc)
1459 continue;
1460 /* a new queue device is needed, check out comp type */
1461 comp_type = ap_get_compatible_type(qid, type, func);
1462 if (!comp_type)
1463 continue;
1464 /* maybe a card device needs to be created first */
1465 if (!ac) {
1466 ac = ap_card_create(id, depth, type, comp_type, func);
1467 if (!ac)
e28d2af4 1468 continue;
a7b1868a
HF
1469 ac->ap_dev.device.bus = &ap_bus_type;
1470 ac->ap_dev.device.parent = ap_root_device;
1471 dev_set_name(&ac->ap_dev.device, "card%02x", id);
1472 /* Register card device with AP bus */
1473 rc = device_register(&ac->ap_dev.device);
e28d2af4 1474 if (rc) {
a7b1868a
HF
1475 put_device(&ac->ap_dev.device);
1476 ac = NULL;
1477 break;
e28d2af4 1478 }
a7b1868a
HF
1479 /* get it and thus adjust reference counter */
1480 get_device(&ac->ap_dev.device);
1481 }
1482 /* now create the new queue device */
1483 aq = ap_queue_create(qid, comp_type);
1484 if (!aq)
1485 continue;
1486 aq->card = ac;
1487 aq->ap_dev.device.bus = &ap_bus_type;
1488 aq->ap_dev.device.parent = &ac->ap_dev.device;
1489 dev_set_name(&aq->ap_dev.device, "%02x.%04x", id, dom);
1490 /* Register queue device */
1491 rc = device_register(&aq->ap_dev.device);
1492 if (rc) {
1493 put_device(&aq->ap_dev.device);
1494 continue;
3f3007af 1495 }
a7b1868a
HF
1496 } /* end domain loop */
1497
1498 if (ac)
1499 put_device(&ac->ap_dev.device);
1500}
ac994e80 1501
a7b1868a
HF
1502/**
1503 * ap_scan_bus(): Scan the AP bus for new devices
1504 * Runs periodically, workqueue timer (ap_config_time)
1505 */
1506static void ap_scan_bus(struct work_struct *unused)
1507{
1508 int id;
1509
1510 AP_DBF(DBF_DEBUG, "%s running\n", __func__);
1511
1512 ap_query_configuration(ap_configuration);
1513 ap_select_domain();
1514
1515 /* loop over all possible adapters */
1516 for (id = 0; id < AP_DEVICES; id++)
1517 _ap_scan_bus_adapter(id);
1518
1519 /* check if there is at least one queue available with default domain */
1520 if (ap_domain_index >= 0) {
1521 struct device *dev =
1522 bus_find_device(&ap_bus_type, NULL,
1523 (void *)(long) ap_domain_index,
b1af7528 1524 __match_queue_device_with_queue_id);
a7b1868a
HF
1525 if (dev)
1526 put_device(dev);
1527 else
1528 AP_DBF(DBF_INFO,
1529 "no queue device with default domain %d available\n",
1530 ap_domain_index);
1531 }
ac994e80 1532
fcd0d1f6 1533 mod_timer(&ap_config_timer, jiffies + ap_config_time * HZ);
1534c382
MS
1534}
1535
cefbeb5d 1536static void ap_config_timeout(struct timer_list *unused)
1534c382 1537{
83e9d5d2
MS
1538 if (ap_suspend_flag)
1539 return;
8139b89d 1540 queue_work(system_long_wq, &ap_scan_work);
1534c382 1541}
13e742ba 1542
efda7ade 1543static int __init ap_debug_init(void)
cccd85bf 1544{
cccd85bf
HF
1545 ap_dbf_info = debug_register("ap", 1, 1,
1546 DBF_MAX_SPRINTF_ARGS * sizeof(long));
1547 debug_register_view(ap_dbf_info, &debug_sprintf_view);
1548 debug_set_level(ap_dbf_info, DBF_ERR);
1549
1550 return 0;
1551}
1552
7e0bdbe5
HF
1553static void __init ap_perms_init(void)
1554{
3d8f60d3 1555 /* all resources useable if no kernel parameter string given */
00fab235 1556 memset(&ap_perms.ioctlm, 0xFF, sizeof(ap_perms.ioctlm));
7e0bdbe5
HF
1557 memset(&ap_perms.apm, 0xFF, sizeof(ap_perms.apm));
1558 memset(&ap_perms.aqm, 0xFF, sizeof(ap_perms.aqm));
1559
3d8f60d3 1560 /* apm kernel parameter string */
7e0bdbe5 1561 if (apm_str) {
3d8f60d3 1562 memset(&ap_perms.apm, 0, sizeof(ap_perms.apm));
00fab235
HF
1563 ap_parse_mask_str(apm_str, ap_perms.apm, AP_DEVICES,
1564 &ap_perms_mutex);
7e0bdbe5 1565 }
7e0bdbe5 1566
3d8f60d3
HF
1567 /* aqm kernel parameter string */
1568 if (aqm_str) {
1569 memset(&ap_perms.aqm, 0, sizeof(ap_perms.aqm));
00fab235
HF
1570 ap_parse_mask_str(aqm_str, ap_perms.aqm, AP_DOMAINS,
1571 &ap_perms_mutex);
7e0bdbe5
HF
1572 }
1573}
1574
1534c382 1575/**
1749a81d
FB
1576 * ap_module_init(): The module initialization code.
1577 *
1578 * Initializes the module.
1534c382 1579 */
efda7ade 1580static int __init ap_module_init(void)
1534c382 1581{
889875a1 1582 int max_domain_id;
1534c382
MS
1583 int rc, i;
1584
cccd85bf
HF
1585 rc = ap_debug_init();
1586 if (rc)
1587 return rc;
1588
2395103b 1589 if (!ap_instructions_available()) {
889875a1
MS
1590 pr_warn("The hardware system does not support AP instructions\n");
1591 return -ENODEV;
1592 }
1593
00fab235 1594 /* set up the AP permissions (ioctls, ap and aq masks) */
7e0bdbe5
HF
1595 ap_perms_init();
1596
889875a1
MS
1597 /* Get AP configuration data if available */
1598 ap_init_configuration();
1599
1600 if (ap_configuration)
ac994e80
HF
1601 max_domain_id =
1602 ap_max_domain_id ? ap_max_domain_id : AP_DOMAINS - 1;
889875a1
MS
1603 else
1604 max_domain_id = 15;
7e0bdbe5
HF
1605 if (ap_domain_index < -1 || ap_domain_index > max_domain_id ||
1606 (ap_domain_index >= 0 &&
1607 !test_bit_inv(ap_domain_index, ap_perms.aqm))) {
889875a1
MS
1608 pr_warn("%d is not a valid cryptographic domain\n",
1609 ap_domain_index);
ac994e80 1610 ap_domain_index = -1;
1534c382 1611 }
5314af69
FB
1612 /* In resume callback we need to know if the user had set the domain.
1613 * If so, we can not just reset it.
1614 */
1615 if (ap_domain_index >= 0)
1616 user_set_domain = 1;
1617
cb17a636 1618 if (ap_interrupts_available()) {
f4eae94f
MS
1619 rc = register_adapter_interrupt(&ap_airq);
1620 ap_airq_flag = (rc == 0);
cb17a636
FB
1621 }
1622
1534c382
MS
1623 /* Create /sys/bus/ap. */
1624 rc = bus_register(&ap_bus_type);
1625 if (rc)
1626 goto out;
1627 for (i = 0; ap_bus_attrs[i]; i++) {
1628 rc = bus_create_file(&ap_bus_type, ap_bus_attrs[i]);
1629 if (rc)
1630 goto out_bus;
1631 }
1632
1633 /* Create /sys/devices/ap. */
035da16f 1634 ap_root_device = root_device_register("ap");
9c705206 1635 rc = PTR_ERR_OR_ZERO(ap_root_device);
1534c382
MS
1636 if (rc)
1637 goto out_bus;
1638
1749a81d 1639 /* Setup the AP bus rescan timer. */
cefbeb5d 1640 timer_setup(&ap_config_timer, ap_config_timeout, 0);
1534c382 1641
3f3007af
MS
1642 /*
1643 * Setup the high resultion poll timer.
fe137230
FB
1644 * If we are running under z/VM adjust polling to z/VM polling rate.
1645 */
1646 if (MACHINE_IS_VM)
1647 poll_timeout = 1500000;
93521314 1648 spin_lock_init(&ap_poll_timer_lock);
fe137230
FB
1649 hrtimer_init(&ap_poll_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
1650 ap_poll_timer.function = ap_poll_timeout;
1651
1534c382
MS
1652 /* Start the low priority AP bus poll thread. */
1653 if (ap_thread_flag) {
1654 rc = ap_poll_thread_start();
1655 if (rc)
1656 goto out_work;
1657 }
1658
83e9d5d2
MS
1659 rc = register_pm_notifier(&ap_power_notifier);
1660 if (rc)
1661 goto out_pm;
1662
8139b89d 1663 queue_work(system_long_wq, &ap_scan_work);
e387753c 1664 initialised = true;
3f3007af 1665
1534c382
MS
1666 return 0;
1667
83e9d5d2
MS
1668out_pm:
1669 ap_poll_thread_stop();
1534c382 1670out_work:
fe137230 1671 hrtimer_cancel(&ap_poll_timer);
035da16f 1672 root_device_unregister(ap_root_device);
1534c382
MS
1673out_bus:
1674 while (i--)
1675 bus_remove_file(&ap_bus_type, ap_bus_attrs[i]);
1676 bus_unregister(&ap_bus_type);
1677out:
f4eae94f
MS
1678 if (ap_using_interrupts())
1679 unregister_adapter_interrupt(&ap_airq);
889875a1 1680 kfree(ap_configuration);
1534c382
MS
1681 return rc;
1682}
50a0d46c 1683device_initcall(ap_module_init);