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