Merge remote-tracking branches 'spi/fix/atmel', 'spi/fix/bcm63xx', 'spi/fix/doc'...
[sfrench/cifs-2.6.git] / drivers / s390 / crypto / ap_bus.c
1 /*
2  * Copyright IBM Corp. 2006, 2012
3  * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com>
4  *            Martin Schwidefsky <schwidefsky@de.ibm.com>
5  *            Ralph Wuerthner <rwuerthn@de.ibm.com>
6  *            Felix Beck <felix.beck@de.ibm.com>
7  *            Holger Dengler <hd@linux.vnet.ibm.com>
8  *
9  * Adjunct processor bus.
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2, or (at your option)
14  * any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  */
25
26 #define KMSG_COMPONENT "ap"
27 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
28
29 #include <linux/kernel_stat.h>
30 #include <linux/moduleparam.h>
31 #include <linux/init.h>
32 #include <linux/delay.h>
33 #include <linux/err.h>
34 #include <linux/interrupt.h>
35 #include <linux/workqueue.h>
36 #include <linux/slab.h>
37 #include <linux/notifier.h>
38 #include <linux/kthread.h>
39 #include <linux/mutex.h>
40 #include <linux/suspend.h>
41 #include <asm/reset.h>
42 #include <asm/airq.h>
43 #include <linux/atomic.h>
44 #include <asm/isc.h>
45 #include <linux/hrtimer.h>
46 #include <linux/ktime.h>
47 #include <asm/facility.h>
48 #include <linux/crypto.h>
49 #include <linux/mod_devicetable.h>
50 #include <linux/debugfs.h>
51
52 #include "ap_bus.h"
53 #include "ap_asm.h"
54 #include "ap_debug.h"
55
56 /*
57  * Module parameters; note though this file itself isn't modular.
58  */
59 int ap_domain_index = -1;       /* Adjunct Processor Domain Index */
60 static DEFINE_SPINLOCK(ap_domain_lock);
61 module_param_named(domain, ap_domain_index, int, S_IRUSR|S_IRGRP);
62 MODULE_PARM_DESC(domain, "domain index for ap devices");
63 EXPORT_SYMBOL(ap_domain_index);
64
65 static int ap_thread_flag = 0;
66 module_param_named(poll_thread, ap_thread_flag, int, S_IRUSR|S_IRGRP);
67 MODULE_PARM_DESC(poll_thread, "Turn on/off poll thread, default is 0 (off).");
68
69 static struct device *ap_root_device;
70
71 DEFINE_SPINLOCK(ap_list_lock);
72 LIST_HEAD(ap_card_list);
73
74 static struct ap_config_info *ap_configuration;
75 static bool initialised;
76
77 /*
78  * AP bus related debug feature things.
79  */
80 debug_info_t *ap_dbf_info;
81
82 /*
83  * Workqueue timer for bus rescan.
84  */
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);
89
90 /*
91  * Tasklet & timer for AP request polling and interrupts
92  */
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 = NULL;
97 static DEFINE_MUTEX(ap_poll_thread_mutex);
98 static DEFINE_SPINLOCK(ap_poll_timer_lock);
99 static struct hrtimer ap_poll_timer;
100 /* In LPAR poll with 4kHz frequency. Poll every 250000 nanoseconds.
101  * If z/VM change to 1500000 nanoseconds to adjust to z/VM polling.*/
102 static unsigned long long poll_timeout = 250000;
103
104 /* Suspend flag */
105 static int ap_suspend_flag;
106 /* Maximum domain id */
107 static int ap_max_domain_id;
108 /* Flag to check if domain was set through module parameter domain=. This is
109  * important when supsend and resume is done in a z/VM environment where the
110  * domain might change. */
111 static int user_set_domain = 0;
112 static struct bus_type ap_bus_type;
113
114 /* Adapter interrupt definitions */
115 static void ap_interrupt_handler(struct airq_struct *airq);
116
117 static int ap_airq_flag;
118
119 static struct airq_struct ap_airq = {
120         .handler = ap_interrupt_handler,
121         .isc = AP_ISC,
122 };
123
124 /**
125  * ap_using_interrupts() - Returns non-zero if interrupt support is
126  * available.
127  */
128 static inline int ap_using_interrupts(void)
129 {
130         return ap_airq_flag;
131 }
132
133 /**
134  * ap_airq_ptr() - Get the address of the adapter interrupt indicator
135  *
136  * Returns the address of the local-summary-indicator of the adapter
137  * interrupt handler for AP, or NULL if adapter interrupts are not
138  * available.
139  */
140 void *ap_airq_ptr(void)
141 {
142         if (ap_using_interrupts())
143                 return ap_airq.lsi_ptr;
144         return NULL;
145 }
146
147 /**
148  * ap_interrupts_available(): Test if AP interrupts are available.
149  *
150  * Returns 1 if AP interrupts are available.
151  */
152 static int ap_interrupts_available(void)
153 {
154         return test_facility(65);
155 }
156
157 /**
158  * ap_configuration_available(): Test if AP configuration
159  * information is available.
160  *
161  * Returns 1 if AP configuration information is available.
162  */
163 static int ap_configuration_available(void)
164 {
165         return test_facility(12);
166 }
167
168 /**
169  * ap_test_queue(): Test adjunct processor queue.
170  * @qid: The AP queue number
171  * @info: Pointer to queue descriptor
172  *
173  * Returns AP queue status structure.
174  */
175 static inline struct ap_queue_status
176 ap_test_queue(ap_qid_t qid, unsigned long *info)
177 {
178         if (test_facility(15))
179                 qid |= 1UL << 23;               /* set APFT T bit*/
180         return ap_tapq(qid, info);
181 }
182
183 static inline int ap_query_configuration(void)
184 {
185         if (!ap_configuration)
186                 return -EOPNOTSUPP;
187         return ap_qci(ap_configuration);
188 }
189
190 /**
191  * ap_init_configuration(): Allocate and query configuration array.
192  */
193 static void ap_init_configuration(void)
194 {
195         if (!ap_configuration_available())
196                 return;
197
198         ap_configuration = kzalloc(sizeof(*ap_configuration), GFP_KERNEL);
199         if (!ap_configuration)
200                 return;
201         if (ap_query_configuration() != 0) {
202                 kfree(ap_configuration);
203                 ap_configuration = NULL;
204                 return;
205         }
206 }
207
208 /*
209  * ap_test_config(): helper function to extract the nrth bit
210  *                   within the unsigned int array field.
211  */
212 static inline int ap_test_config(unsigned int *field, unsigned int nr)
213 {
214         return ap_test_bit((field + (nr >> 5)), (nr & 0x1f));
215 }
216
217 /*
218  * ap_test_config_card_id(): Test, whether an AP card ID is configured.
219  * @id AP card ID
220  *
221  * Returns 0 if the card is not configured
222  *         1 if the card is configured or
223  *           if the configuration information is not available
224  */
225 static inline int ap_test_config_card_id(unsigned int id)
226 {
227         if (!ap_configuration)  /* QCI not supported */
228                 return 1;
229         return ap_test_config(ap_configuration->apm, id);
230 }
231
232 /*
233  * ap_test_config_domain(): Test, whether an AP usage domain is configured.
234  * @domain AP usage domain ID
235  *
236  * Returns 0 if the usage domain is not configured
237  *         1 if the usage domain is configured or
238  *           if the configuration information is not available
239  */
240 static inline int ap_test_config_domain(unsigned int domain)
241 {
242         if (!ap_configuration)  /* QCI not supported */
243                 return domain < 16;
244         return ap_test_config(ap_configuration->aqm, domain);
245 }
246
247 /**
248  * ap_query_queue(): Check if an AP queue is available.
249  * @qid: The AP queue number
250  * @queue_depth: Pointer to queue depth value
251  * @device_type: Pointer to device type value
252  * @facilities: Pointer to facility indicator
253  */
254 static int ap_query_queue(ap_qid_t qid, int *queue_depth, int *device_type,
255                           unsigned int *facilities)
256 {
257         struct ap_queue_status status;
258         unsigned long info;
259         int nd;
260
261         if (!ap_test_config_card_id(AP_QID_CARD(qid)))
262                 return -ENODEV;
263
264         status = ap_test_queue(qid, &info);
265         switch (status.response_code) {
266         case AP_RESPONSE_NORMAL:
267                 *queue_depth = (int)(info & 0xff);
268                 *device_type = (int)((info >> 24) & 0xff);
269                 *facilities = (unsigned int)(info >> 32);
270                 /* Update maximum domain id */
271                 nd = (info >> 16) & 0xff;
272                 /* if N bit is available, z13 and newer */
273                 if ((info & (1UL << 57)) && nd > 0)
274                         ap_max_domain_id = nd;
275                 else /* older machine types */
276                         ap_max_domain_id = 15;
277                 switch (*device_type) {
278                         /* For CEX2 and CEX3 the available functions
279                          * are not refrected by the facilities bits.
280                          * Instead it is coded into the type. So here
281                          * modify the function bits based on the type.
282                          */
283                 case AP_DEVICE_TYPE_CEX2A:
284                 case AP_DEVICE_TYPE_CEX3A:
285                         *facilities |= 0x08000000;
286                         break;
287                 case AP_DEVICE_TYPE_CEX2C:
288                 case AP_DEVICE_TYPE_CEX3C:
289                         *facilities |= 0x10000000;
290                         break;
291                 default:
292                         break;
293                 }
294                 return 0;
295         case AP_RESPONSE_Q_NOT_AVAIL:
296         case AP_RESPONSE_DECONFIGURED:
297         case AP_RESPONSE_CHECKSTOPPED:
298         case AP_RESPONSE_INVALID_ADDRESS:
299                 return -ENODEV;
300         case AP_RESPONSE_RESET_IN_PROGRESS:
301         case AP_RESPONSE_OTHERWISE_CHANGED:
302         case AP_RESPONSE_BUSY:
303                 return -EBUSY;
304         default:
305                 BUG();
306         }
307 }
308
309 void ap_wait(enum ap_wait wait)
310 {
311         ktime_t hr_time;
312
313         switch (wait) {
314         case AP_WAIT_AGAIN:
315         case AP_WAIT_INTERRUPT:
316                 if (ap_using_interrupts())
317                         break;
318                 if (ap_poll_kthread) {
319                         wake_up(&ap_poll_wait);
320                         break;
321                 }
322                 /* Fall through */
323         case AP_WAIT_TIMEOUT:
324                 spin_lock_bh(&ap_poll_timer_lock);
325                 if (!hrtimer_is_queued(&ap_poll_timer)) {
326                         hr_time = poll_timeout;
327                         hrtimer_forward_now(&ap_poll_timer, hr_time);
328                         hrtimer_restart(&ap_poll_timer);
329                 }
330                 spin_unlock_bh(&ap_poll_timer_lock);
331                 break;
332         case AP_WAIT_NONE:
333         default:
334                 break;
335         }
336 }
337
338 /**
339  * ap_request_timeout(): Handling of request timeouts
340  * @data: Holds the AP device.
341  *
342  * Handles request timeouts.
343  */
344 void ap_request_timeout(unsigned long data)
345 {
346         struct ap_queue *aq = (struct ap_queue *) data;
347
348         if (ap_suspend_flag)
349                 return;
350         spin_lock_bh(&aq->lock);
351         ap_wait(ap_sm_event(aq, AP_EVENT_TIMEOUT));
352         spin_unlock_bh(&aq->lock);
353 }
354
355 /**
356  * ap_poll_timeout(): AP receive polling for finished AP requests.
357  * @unused: Unused pointer.
358  *
359  * Schedules the AP tasklet using a high resolution timer.
360  */
361 static enum hrtimer_restart ap_poll_timeout(struct hrtimer *unused)
362 {
363         if (!ap_suspend_flag)
364                 tasklet_schedule(&ap_tasklet);
365         return HRTIMER_NORESTART;
366 }
367
368 /**
369  * ap_interrupt_handler() - Schedule ap_tasklet on interrupt
370  * @airq: pointer to adapter interrupt descriptor
371  */
372 static void ap_interrupt_handler(struct airq_struct *airq)
373 {
374         inc_irq_stat(IRQIO_APB);
375         if (!ap_suspend_flag)
376                 tasklet_schedule(&ap_tasklet);
377 }
378
379 /**
380  * ap_tasklet_fn(): Tasklet to poll all AP devices.
381  * @dummy: Unused variable
382  *
383  * Poll all AP devices on the bus.
384  */
385 static void ap_tasklet_fn(unsigned long dummy)
386 {
387         struct ap_card *ac;
388         struct ap_queue *aq;
389         enum ap_wait wait = AP_WAIT_NONE;
390
391         /* Reset the indicator if interrupts are used. Thus new interrupts can
392          * be received. Doing it in the beginning of the tasklet is therefor
393          * important that no requests on any AP get lost.
394          */
395         if (ap_using_interrupts())
396                 xchg(ap_airq.lsi_ptr, 0);
397
398         spin_lock_bh(&ap_list_lock);
399         for_each_ap_card(ac) {
400                 for_each_ap_queue(aq, ac) {
401                         spin_lock_bh(&aq->lock);
402                         wait = min(wait, ap_sm_event_loop(aq, AP_EVENT_POLL));
403                         spin_unlock_bh(&aq->lock);
404                 }
405         }
406         spin_unlock_bh(&ap_list_lock);
407
408         ap_wait(wait);
409 }
410
411 static int ap_pending_requests(void)
412 {
413         struct ap_card *ac;
414         struct ap_queue *aq;
415
416         spin_lock_bh(&ap_list_lock);
417         for_each_ap_card(ac) {
418                 for_each_ap_queue(aq, ac) {
419                         if (aq->queue_count == 0)
420                                 continue;
421                         spin_unlock_bh(&ap_list_lock);
422                         return 1;
423                 }
424         }
425         spin_unlock_bh(&ap_list_lock);
426         return 0;
427 }
428
429 /**
430  * ap_poll_thread(): Thread that polls for finished requests.
431  * @data: Unused pointer
432  *
433  * AP bus poll thread. The purpose of this thread is to poll for
434  * finished requests in a loop if there is a "free" cpu - that is
435  * a cpu that doesn't have anything better to do. The polling stops
436  * as soon as there is another task or if all messages have been
437  * delivered.
438  */
439 static int ap_poll_thread(void *data)
440 {
441         DECLARE_WAITQUEUE(wait, current);
442
443         set_user_nice(current, MAX_NICE);
444         set_freezable();
445         while (!kthread_should_stop()) {
446                 add_wait_queue(&ap_poll_wait, &wait);
447                 set_current_state(TASK_INTERRUPTIBLE);
448                 if (ap_suspend_flag || !ap_pending_requests()) {
449                         schedule();
450                         try_to_freeze();
451                 }
452                 set_current_state(TASK_RUNNING);
453                 remove_wait_queue(&ap_poll_wait, &wait);
454                 if (need_resched()) {
455                         schedule();
456                         try_to_freeze();
457                         continue;
458                 }
459                 ap_tasklet_fn(0);
460         }
461
462         return 0;
463 }
464
465 static int ap_poll_thread_start(void)
466 {
467         int rc;
468
469         if (ap_using_interrupts() || ap_poll_kthread)
470                 return 0;
471         mutex_lock(&ap_poll_thread_mutex);
472         ap_poll_kthread = kthread_run(ap_poll_thread, NULL, "appoll");
473         rc = PTR_RET(ap_poll_kthread);
474         if (rc)
475                 ap_poll_kthread = NULL;
476         mutex_unlock(&ap_poll_thread_mutex);
477         return rc;
478 }
479
480 static void ap_poll_thread_stop(void)
481 {
482         if (!ap_poll_kthread)
483                 return;
484         mutex_lock(&ap_poll_thread_mutex);
485         kthread_stop(ap_poll_kthread);
486         ap_poll_kthread = NULL;
487         mutex_unlock(&ap_poll_thread_mutex);
488 }
489
490 #define is_card_dev(x) ((x)->parent == ap_root_device)
491 #define is_queue_dev(x) ((x)->parent != ap_root_device)
492
493 /**
494  * ap_bus_match()
495  * @dev: Pointer to device
496  * @drv: Pointer to device_driver
497  *
498  * AP bus driver registration/unregistration.
499  */
500 static int ap_bus_match(struct device *dev, struct device_driver *drv)
501 {
502         struct ap_driver *ap_drv = to_ap_drv(drv);
503         struct ap_device_id *id;
504
505         /*
506          * Compare device type of the device with the list of
507          * supported types of the device_driver.
508          */
509         for (id = ap_drv->ids; id->match_flags; id++) {
510                 if (is_card_dev(dev) &&
511                     id->match_flags & AP_DEVICE_ID_MATCH_CARD_TYPE &&
512                     id->dev_type == to_ap_dev(dev)->device_type)
513                         return 1;
514                 if (is_queue_dev(dev) &&
515                     id->match_flags & AP_DEVICE_ID_MATCH_QUEUE_TYPE &&
516                     id->dev_type == to_ap_dev(dev)->device_type)
517                         return 1;
518         }
519         return 0;
520 }
521
522 /**
523  * ap_uevent(): Uevent function for AP devices.
524  * @dev: Pointer to device
525  * @env: Pointer to kobj_uevent_env
526  *
527  * It sets up a single environment variable DEV_TYPE which contains the
528  * hardware device type.
529  */
530 static int ap_uevent (struct device *dev, struct kobj_uevent_env *env)
531 {
532         struct ap_device *ap_dev = to_ap_dev(dev);
533         int retval = 0;
534
535         if (!ap_dev)
536                 return -ENODEV;
537
538         /* Set up DEV_TYPE environment variable. */
539         retval = add_uevent_var(env, "DEV_TYPE=%04X", ap_dev->device_type);
540         if (retval)
541                 return retval;
542
543         /* Add MODALIAS= */
544         retval = add_uevent_var(env, "MODALIAS=ap:t%02X", ap_dev->device_type);
545
546         return retval;
547 }
548
549 static int ap_dev_suspend(struct device *dev)
550 {
551         struct ap_device *ap_dev = to_ap_dev(dev);
552
553         if (ap_dev->drv && ap_dev->drv->suspend)
554                 ap_dev->drv->suspend(ap_dev);
555         return 0;
556 }
557
558 static int ap_dev_resume(struct device *dev)
559 {
560         struct ap_device *ap_dev = to_ap_dev(dev);
561
562         if (ap_dev->drv && ap_dev->drv->resume)
563                 ap_dev->drv->resume(ap_dev);
564         return 0;
565 }
566
567 static void ap_bus_suspend(void)
568 {
569         AP_DBF(DBF_DEBUG, "ap_bus_suspend running\n");
570
571         ap_suspend_flag = 1;
572         /*
573          * Disable scanning for devices, thus we do not want to scan
574          * for them after removing.
575          */
576         flush_work(&ap_scan_work);
577         tasklet_disable(&ap_tasklet);
578 }
579
580 static int __ap_card_devices_unregister(struct device *dev, void *dummy)
581 {
582         if (is_card_dev(dev))
583                 device_unregister(dev);
584         return 0;
585 }
586
587 static int __ap_queue_devices_unregister(struct device *dev, void *dummy)
588 {
589         if (is_queue_dev(dev))
590                 device_unregister(dev);
591         return 0;
592 }
593
594 static int __ap_queue_devices_with_id_unregister(struct device *dev, void *data)
595 {
596         if (is_queue_dev(dev) &&
597             AP_QID_CARD(to_ap_queue(dev)->qid) == (int)(long) data)
598                 device_unregister(dev);
599         return 0;
600 }
601
602 static void ap_bus_resume(void)
603 {
604         int rc;
605
606         AP_DBF(DBF_DEBUG, "ap_bus_resume running\n");
607
608         /* remove all queue devices */
609         bus_for_each_dev(&ap_bus_type, NULL, NULL,
610                          __ap_queue_devices_unregister);
611         /* remove all card devices */
612         bus_for_each_dev(&ap_bus_type, NULL, NULL,
613                          __ap_card_devices_unregister);
614
615         /* Reset thin interrupt setting */
616         if (ap_interrupts_available() && !ap_using_interrupts()) {
617                 rc = register_adapter_interrupt(&ap_airq);
618                 ap_airq_flag = (rc == 0);
619         }
620         if (!ap_interrupts_available() && ap_using_interrupts()) {
621                 unregister_adapter_interrupt(&ap_airq);
622                 ap_airq_flag = 0;
623         }
624         /* Reset domain */
625         if (!user_set_domain)
626                 ap_domain_index = -1;
627         /* Get things going again */
628         ap_suspend_flag = 0;
629         if (ap_airq_flag)
630                 xchg(ap_airq.lsi_ptr, 0);
631         tasklet_enable(&ap_tasklet);
632         queue_work(system_long_wq, &ap_scan_work);
633 }
634
635 static int ap_power_event(struct notifier_block *this, unsigned long event,
636                           void *ptr)
637 {
638         switch (event) {
639         case PM_HIBERNATION_PREPARE:
640         case PM_SUSPEND_PREPARE:
641                 ap_bus_suspend();
642                 break;
643         case PM_POST_HIBERNATION:
644         case PM_POST_SUSPEND:
645                 ap_bus_resume();
646                 break;
647         default:
648                 break;
649         }
650         return NOTIFY_DONE;
651 }
652 static struct notifier_block ap_power_notifier = {
653         .notifier_call = ap_power_event,
654 };
655
656 static SIMPLE_DEV_PM_OPS(ap_bus_pm_ops, ap_dev_suspend, ap_dev_resume);
657
658 static struct bus_type ap_bus_type = {
659         .name = "ap",
660         .match = &ap_bus_match,
661         .uevent = &ap_uevent,
662         .pm = &ap_bus_pm_ops,
663 };
664
665 static int ap_device_probe(struct device *dev)
666 {
667         struct ap_device *ap_dev = to_ap_dev(dev);
668         struct ap_driver *ap_drv = to_ap_drv(dev->driver);
669         int rc;
670
671         /* Add queue/card to list of active queues/cards */
672         spin_lock_bh(&ap_list_lock);
673         if (is_card_dev(dev))
674                 list_add(&to_ap_card(dev)->list, &ap_card_list);
675         else
676                 list_add(&to_ap_queue(dev)->list,
677                          &to_ap_queue(dev)->card->queues);
678         spin_unlock_bh(&ap_list_lock);
679
680         ap_dev->drv = ap_drv;
681         rc = ap_drv->probe ? ap_drv->probe(ap_dev) : -ENODEV;
682
683         if (rc) {
684                 spin_lock_bh(&ap_list_lock);
685                 if (is_card_dev(dev))
686                         list_del_init(&to_ap_card(dev)->list);
687                 else
688                         list_del_init(&to_ap_queue(dev)->list);
689                 spin_unlock_bh(&ap_list_lock);
690                 ap_dev->drv = NULL;
691         }
692
693         return rc;
694 }
695
696 static int ap_device_remove(struct device *dev)
697 {
698         struct ap_device *ap_dev = to_ap_dev(dev);
699         struct ap_driver *ap_drv = ap_dev->drv;
700
701         if (ap_drv->remove)
702                 ap_drv->remove(ap_dev);
703
704         /* Remove queue/card from list of active queues/cards */
705         spin_lock_bh(&ap_list_lock);
706         if (is_card_dev(dev))
707                 list_del_init(&to_ap_card(dev)->list);
708         else
709                 list_del_init(&to_ap_queue(dev)->list);
710         spin_unlock_bh(&ap_list_lock);
711
712         return 0;
713 }
714
715 int ap_driver_register(struct ap_driver *ap_drv, struct module *owner,
716                        char *name)
717 {
718         struct device_driver *drv = &ap_drv->driver;
719
720         if (!initialised)
721                 return -ENODEV;
722
723         drv->bus = &ap_bus_type;
724         drv->probe = ap_device_probe;
725         drv->remove = ap_device_remove;
726         drv->owner = owner;
727         drv->name = name;
728         return driver_register(drv);
729 }
730 EXPORT_SYMBOL(ap_driver_register);
731
732 void ap_driver_unregister(struct ap_driver *ap_drv)
733 {
734         driver_unregister(&ap_drv->driver);
735 }
736 EXPORT_SYMBOL(ap_driver_unregister);
737
738 void ap_bus_force_rescan(void)
739 {
740         if (ap_suspend_flag)
741                 return;
742         /* processing a asynchronous bus rescan */
743         del_timer(&ap_config_timer);
744         queue_work(system_long_wq, &ap_scan_work);
745         flush_work(&ap_scan_work);
746 }
747 EXPORT_SYMBOL(ap_bus_force_rescan);
748
749 /*
750  * AP bus attributes.
751  */
752 static ssize_t ap_domain_show(struct bus_type *bus, char *buf)
753 {
754         return snprintf(buf, PAGE_SIZE, "%d\n", ap_domain_index);
755 }
756
757 static ssize_t ap_domain_store(struct bus_type *bus,
758                                const char *buf, size_t count)
759 {
760         int domain;
761
762         if (sscanf(buf, "%i\n", &domain) != 1 ||
763             domain < 0 || domain > ap_max_domain_id)
764                 return -EINVAL;
765         spin_lock_bh(&ap_domain_lock);
766         ap_domain_index = domain;
767         spin_unlock_bh(&ap_domain_lock);
768
769         AP_DBF(DBF_DEBUG, "store new default domain=%d\n", domain);
770
771         return count;
772 }
773
774 static BUS_ATTR(ap_domain, 0644, ap_domain_show, ap_domain_store);
775
776 static ssize_t ap_control_domain_mask_show(struct bus_type *bus, char *buf)
777 {
778         if (!ap_configuration)  /* QCI not supported */
779                 return snprintf(buf, PAGE_SIZE, "not supported\n");
780
781         return snprintf(buf, PAGE_SIZE,
782                         "0x%08x%08x%08x%08x%08x%08x%08x%08x\n",
783                         ap_configuration->adm[0], ap_configuration->adm[1],
784                         ap_configuration->adm[2], ap_configuration->adm[3],
785                         ap_configuration->adm[4], ap_configuration->adm[5],
786                         ap_configuration->adm[6], ap_configuration->adm[7]);
787 }
788
789 static BUS_ATTR(ap_control_domain_mask, 0444,
790                 ap_control_domain_mask_show, NULL);
791
792 static ssize_t ap_usage_domain_mask_show(struct bus_type *bus, char *buf)
793 {
794         if (!ap_configuration)  /* QCI not supported */
795                 return snprintf(buf, PAGE_SIZE, "not supported\n");
796
797         return snprintf(buf, PAGE_SIZE,
798                         "0x%08x%08x%08x%08x%08x%08x%08x%08x\n",
799                         ap_configuration->aqm[0], ap_configuration->aqm[1],
800                         ap_configuration->aqm[2], ap_configuration->aqm[3],
801                         ap_configuration->aqm[4], ap_configuration->aqm[5],
802                         ap_configuration->aqm[6], ap_configuration->aqm[7]);
803 }
804
805 static BUS_ATTR(ap_usage_domain_mask, 0444,
806                 ap_usage_domain_mask_show, NULL);
807
808 static ssize_t ap_config_time_show(struct bus_type *bus, char *buf)
809 {
810         return snprintf(buf, PAGE_SIZE, "%d\n", ap_config_time);
811 }
812
813 static ssize_t ap_interrupts_show(struct bus_type *bus, char *buf)
814 {
815         return snprintf(buf, PAGE_SIZE, "%d\n",
816                         ap_using_interrupts() ? 1 : 0);
817 }
818
819 static BUS_ATTR(ap_interrupts, 0444, ap_interrupts_show, NULL);
820
821 static ssize_t ap_config_time_store(struct bus_type *bus,
822                                     const char *buf, size_t count)
823 {
824         int time;
825
826         if (sscanf(buf, "%d\n", &time) != 1 || time < 5 || time > 120)
827                 return -EINVAL;
828         ap_config_time = time;
829         mod_timer(&ap_config_timer, jiffies + ap_config_time * HZ);
830         return count;
831 }
832
833 static BUS_ATTR(config_time, 0644, ap_config_time_show, ap_config_time_store);
834
835 static ssize_t ap_poll_thread_show(struct bus_type *bus, char *buf)
836 {
837         return snprintf(buf, PAGE_SIZE, "%d\n", ap_poll_kthread ? 1 : 0);
838 }
839
840 static ssize_t ap_poll_thread_store(struct bus_type *bus,
841                                     const char *buf, size_t count)
842 {
843         int flag, rc;
844
845         if (sscanf(buf, "%d\n", &flag) != 1)
846                 return -EINVAL;
847         if (flag) {
848                 rc = ap_poll_thread_start();
849                 if (rc)
850                         count = rc;
851         } else
852                 ap_poll_thread_stop();
853         return count;
854 }
855
856 static BUS_ATTR(poll_thread, 0644, ap_poll_thread_show, ap_poll_thread_store);
857
858 static ssize_t poll_timeout_show(struct bus_type *bus, char *buf)
859 {
860         return snprintf(buf, PAGE_SIZE, "%llu\n", poll_timeout);
861 }
862
863 static ssize_t poll_timeout_store(struct bus_type *bus, const char *buf,
864                                   size_t count)
865 {
866         unsigned long long time;
867         ktime_t hr_time;
868
869         /* 120 seconds = maximum poll interval */
870         if (sscanf(buf, "%llu\n", &time) != 1 || time < 1 ||
871             time > 120000000000ULL)
872                 return -EINVAL;
873         poll_timeout = time;
874         hr_time = poll_timeout;
875
876         spin_lock_bh(&ap_poll_timer_lock);
877         hrtimer_cancel(&ap_poll_timer);
878         hrtimer_set_expires(&ap_poll_timer, hr_time);
879         hrtimer_start_expires(&ap_poll_timer, HRTIMER_MODE_ABS);
880         spin_unlock_bh(&ap_poll_timer_lock);
881
882         return count;
883 }
884
885 static BUS_ATTR(poll_timeout, 0644, poll_timeout_show, poll_timeout_store);
886
887 static ssize_t ap_max_domain_id_show(struct bus_type *bus, char *buf)
888 {
889         int max_domain_id;
890
891         if (ap_configuration)
892                 max_domain_id = ap_max_domain_id ? : -1;
893         else
894                 max_domain_id = 15;
895         return snprintf(buf, PAGE_SIZE, "%d\n", max_domain_id);
896 }
897
898 static BUS_ATTR(ap_max_domain_id, 0444, ap_max_domain_id_show, NULL);
899
900 static struct bus_attribute *const ap_bus_attrs[] = {
901         &bus_attr_ap_domain,
902         &bus_attr_ap_control_domain_mask,
903         &bus_attr_ap_usage_domain_mask,
904         &bus_attr_config_time,
905         &bus_attr_poll_thread,
906         &bus_attr_ap_interrupts,
907         &bus_attr_poll_timeout,
908         &bus_attr_ap_max_domain_id,
909         NULL,
910 };
911
912 /**
913  * ap_select_domain(): Select an AP domain.
914  *
915  * Pick one of the 16 AP domains.
916  */
917 static int ap_select_domain(void)
918 {
919         int count, max_count, best_domain;
920         struct ap_queue_status status;
921         int i, j;
922
923         /*
924          * We want to use a single domain. Either the one specified with
925          * the "domain=" parameter or the domain with the maximum number
926          * of devices.
927          */
928         spin_lock_bh(&ap_domain_lock);
929         if (ap_domain_index >= 0) {
930                 /* Domain has already been selected. */
931                 spin_unlock_bh(&ap_domain_lock);
932                 return 0;
933         }
934         best_domain = -1;
935         max_count = 0;
936         for (i = 0; i < AP_DOMAINS; i++) {
937                 if (!ap_test_config_domain(i))
938                         continue;
939                 count = 0;
940                 for (j = 0; j < AP_DEVICES; j++) {
941                         if (!ap_test_config_card_id(j))
942                                 continue;
943                         status = ap_test_queue(AP_MKQID(j, i), NULL);
944                         if (status.response_code != AP_RESPONSE_NORMAL)
945                                 continue;
946                         count++;
947                 }
948                 if (count > max_count) {
949                         max_count = count;
950                         best_domain = i;
951                 }
952         }
953         if (best_domain >= 0){
954                 ap_domain_index = best_domain;
955                 spin_unlock_bh(&ap_domain_lock);
956                 return 0;
957         }
958         spin_unlock_bh(&ap_domain_lock);
959         return -ENODEV;
960 }
961
962 /*
963  * helper function to be used with bus_find_dev
964  * matches for the card device with the given id
965  */
966 static int __match_card_device_with_id(struct device *dev, void *data)
967 {
968         return is_card_dev(dev) && to_ap_card(dev)->id == (int)(long) data;
969 }
970
971 /* helper function to be used with bus_find_dev
972  * matches for the queue device with a given qid
973  */
974 static int __match_queue_device_with_qid(struct device *dev, void *data)
975 {
976         return is_queue_dev(dev) && to_ap_queue(dev)->qid == (int)(long) data;
977 }
978
979 /**
980  * ap_scan_bus(): Scan the AP bus for new devices
981  * Runs periodically, workqueue timer (ap_config_time)
982  */
983 static void ap_scan_bus(struct work_struct *unused)
984 {
985         struct ap_queue *aq;
986         struct ap_card *ac;
987         struct device *dev;
988         ap_qid_t qid;
989         int depth = 0, type = 0;
990         unsigned int functions = 0;
991         int rc, id, dom, borked, domains;
992
993         AP_DBF(DBF_DEBUG, "ap_scan_bus running\n");
994
995         ap_query_configuration();
996         if (ap_select_domain() != 0)
997                 goto out;
998
999         for (id = 0; id < AP_DEVICES; id++) {
1000                 /* check if device is registered */
1001                 dev = bus_find_device(&ap_bus_type, NULL,
1002                                       (void *)(long) id,
1003                                       __match_card_device_with_id);
1004                 ac = dev ? to_ap_card(dev) : NULL;
1005                 if (!ap_test_config_card_id(id)) {
1006                         if (dev) {
1007                                 /* Card device has been removed from
1008                                  * configuration, remove the belonging
1009                                  * queue devices.
1010                                  */
1011                                 bus_for_each_dev(&ap_bus_type, NULL,
1012                                         (void *)(long) id,
1013                                         __ap_queue_devices_with_id_unregister);
1014                                 /* now remove the card device */
1015                                 device_unregister(dev);
1016                                 put_device(dev);
1017                         }
1018                         continue;
1019                 }
1020                 /* According to the configuration there should be a card
1021                  * device, so check if there is at least one valid queue
1022                  * and maybe create queue devices and the card device.
1023                  */
1024                 domains = 0;
1025                 for (dom = 0; dom < AP_DOMAINS; dom++) {
1026                         qid = AP_MKQID(id, dom);
1027                         dev = bus_find_device(&ap_bus_type, NULL,
1028                                               (void *)(long) qid,
1029                                               __match_queue_device_with_qid);
1030                         aq = dev ? to_ap_queue(dev) : NULL;
1031                         if (!ap_test_config_domain(dom)) {
1032                                 if (dev) {
1033                                         /* Queue device exists but has been
1034                                          * removed from configuration.
1035                                          */
1036                                         device_unregister(dev);
1037                                         put_device(dev);
1038                                 }
1039                                 continue;
1040                         }
1041                         rc = ap_query_queue(qid, &depth, &type, &functions);
1042                         if (dev) {
1043                                 spin_lock_bh(&aq->lock);
1044                                 if (rc == -ENODEV ||
1045                                     /* adapter reconfiguration */
1046                                     (ac && ac->functions != functions))
1047                                         aq->state = AP_STATE_BORKED;
1048                                 borked = aq->state == AP_STATE_BORKED;
1049                                 spin_unlock_bh(&aq->lock);
1050                                 if (borked)     /* Remove broken device */
1051                                         device_unregister(dev);
1052                                 put_device(dev);
1053                                 if (!borked) {
1054                                         domains++;
1055                                         continue;
1056                                 }
1057                         }
1058                         if (rc)
1059                                 continue;
1060                         /* new queue device needed */
1061                         if (!ac) {
1062                                 /* but first create the card device */
1063                                 ac = ap_card_create(id, depth,
1064                                                     type, functions);
1065                                 if (!ac)
1066                                         continue;
1067                                 ac->ap_dev.device.bus = &ap_bus_type;
1068                                 ac->ap_dev.device.parent = ap_root_device;
1069                                 dev_set_name(&ac->ap_dev.device,
1070                                              "card%02x", id);
1071                                 /* Register card with AP bus */
1072                                 rc = device_register(&ac->ap_dev.device);
1073                                 if (rc) {
1074                                         put_device(&ac->ap_dev.device);
1075                                         ac = NULL;
1076                                         break;
1077                                 }
1078                                 /* get it and thus adjust reference counter */
1079                                 get_device(&ac->ap_dev.device);
1080                         }
1081                         /* now create the new queue device */
1082                         aq = ap_queue_create(qid, type);
1083                         if (!aq)
1084                                 continue;
1085                         aq->card = ac;
1086                         aq->ap_dev.device.bus = &ap_bus_type;
1087                         aq->ap_dev.device.parent = &ac->ap_dev.device;
1088                         dev_set_name(&aq->ap_dev.device,
1089                                      "%02x.%04x", id, dom);
1090                         /* Start with a device reset */
1091                         spin_lock_bh(&aq->lock);
1092                         ap_wait(ap_sm_event(aq, AP_EVENT_POLL));
1093                         spin_unlock_bh(&aq->lock);
1094                         /* Register device */
1095                         rc = device_register(&aq->ap_dev.device);
1096                         if (rc) {
1097                                 put_device(&aq->ap_dev.device);
1098                                 continue;
1099                         }
1100                         domains++;
1101                 } /* end domain loop */
1102                 if (ac) {
1103                         /* remove card dev if there are no queue devices */
1104                         if (!domains)
1105                                 device_unregister(&ac->ap_dev.device);
1106                         put_device(&ac->ap_dev.device);
1107                 }
1108         } /* end device loop */
1109 out:
1110         mod_timer(&ap_config_timer, jiffies + ap_config_time * HZ);
1111 }
1112
1113 static void ap_config_timeout(unsigned long ptr)
1114 {
1115         if (ap_suspend_flag)
1116                 return;
1117         queue_work(system_long_wq, &ap_scan_work);
1118 }
1119
1120 static void ap_reset_all(void)
1121 {
1122         int i, j;
1123
1124         for (i = 0; i < AP_DOMAINS; i++) {
1125                 if (!ap_test_config_domain(i))
1126                         continue;
1127                 for (j = 0; j < AP_DEVICES; j++) {
1128                         if (!ap_test_config_card_id(j))
1129                                 continue;
1130                         ap_rapq(AP_MKQID(j, i));
1131                 }
1132         }
1133 }
1134
1135 static struct reset_call ap_reset_call = {
1136         .fn = ap_reset_all,
1137 };
1138
1139 int __init ap_debug_init(void)
1140 {
1141         ap_dbf_info = debug_register("ap", 1, 1,
1142                                      DBF_MAX_SPRINTF_ARGS * sizeof(long));
1143         debug_register_view(ap_dbf_info, &debug_sprintf_view);
1144         debug_set_level(ap_dbf_info, DBF_ERR);
1145
1146         return 0;
1147 }
1148
1149 void ap_debug_exit(void)
1150 {
1151         debug_unregister(ap_dbf_info);
1152 }
1153
1154 /**
1155  * ap_module_init(): The module initialization code.
1156  *
1157  * Initializes the module.
1158  */
1159 int __init ap_module_init(void)
1160 {
1161         int max_domain_id;
1162         int rc, i;
1163
1164         rc = ap_debug_init();
1165         if (rc)
1166                 return rc;
1167
1168         if (ap_instructions_available() != 0) {
1169                 pr_warn("The hardware system does not support AP instructions\n");
1170                 return -ENODEV;
1171         }
1172
1173         /* Get AP configuration data if available */
1174         ap_init_configuration();
1175
1176         if (ap_configuration)
1177                 max_domain_id = ap_max_domain_id ? : (AP_DOMAINS - 1);
1178         else
1179                 max_domain_id = 15;
1180         if (ap_domain_index < -1 || ap_domain_index > max_domain_id) {
1181                 pr_warn("%d is not a valid cryptographic domain\n",
1182                         ap_domain_index);
1183                 rc = -EINVAL;
1184                 goto out_free;
1185         }
1186         /* In resume callback we need to know if the user had set the domain.
1187          * If so, we can not just reset it.
1188          */
1189         if (ap_domain_index >= 0)
1190                 user_set_domain = 1;
1191
1192         if (ap_interrupts_available()) {
1193                 rc = register_adapter_interrupt(&ap_airq);
1194                 ap_airq_flag = (rc == 0);
1195         }
1196
1197         register_reset_call(&ap_reset_call);
1198
1199         /* Create /sys/bus/ap. */
1200         rc = bus_register(&ap_bus_type);
1201         if (rc)
1202                 goto out;
1203         for (i = 0; ap_bus_attrs[i]; i++) {
1204                 rc = bus_create_file(&ap_bus_type, ap_bus_attrs[i]);
1205                 if (rc)
1206                         goto out_bus;
1207         }
1208
1209         /* Create /sys/devices/ap. */
1210         ap_root_device = root_device_register("ap");
1211         rc = PTR_RET(ap_root_device);
1212         if (rc)
1213                 goto out_bus;
1214
1215         /* Setup the AP bus rescan timer. */
1216         setup_timer(&ap_config_timer, ap_config_timeout, 0);
1217
1218         /*
1219          * Setup the high resultion poll timer.
1220          * If we are running under z/VM adjust polling to z/VM polling rate.
1221          */
1222         if (MACHINE_IS_VM)
1223                 poll_timeout = 1500000;
1224         spin_lock_init(&ap_poll_timer_lock);
1225         hrtimer_init(&ap_poll_timer, CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
1226         ap_poll_timer.function = ap_poll_timeout;
1227
1228         /* Start the low priority AP bus poll thread. */
1229         if (ap_thread_flag) {
1230                 rc = ap_poll_thread_start();
1231                 if (rc)
1232                         goto out_work;
1233         }
1234
1235         rc = register_pm_notifier(&ap_power_notifier);
1236         if (rc)
1237                 goto out_pm;
1238
1239         queue_work(system_long_wq, &ap_scan_work);
1240         initialised = true;
1241
1242         return 0;
1243
1244 out_pm:
1245         ap_poll_thread_stop();
1246 out_work:
1247         hrtimer_cancel(&ap_poll_timer);
1248         root_device_unregister(ap_root_device);
1249 out_bus:
1250         while (i--)
1251                 bus_remove_file(&ap_bus_type, ap_bus_attrs[i]);
1252         bus_unregister(&ap_bus_type);
1253 out:
1254         unregister_reset_call(&ap_reset_call);
1255         if (ap_using_interrupts())
1256                 unregister_adapter_interrupt(&ap_airq);
1257 out_free:
1258         kfree(ap_configuration);
1259         return rc;
1260 }
1261 device_initcall(ap_module_init);