s390/ap: use the common driver-data pointer
[linux-2.6-microblaze.git] / drivers / s390 / crypto / zcrypt_cex2a.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  *  Copyright IBM Corp. 2001, 2012
4  *  Author(s): Robert Burroughs
5  *             Eric Rossman (edrossma@us.ibm.com)
6  *
7  *  Hotplug & misc device support: Jochen Roehrig (roehrig@de.ibm.com)
8  *  Major cleanup & driver split: Martin Schwidefsky <schwidefsky@de.ibm.com>
9  *                                Ralph Wuerthner <rwuerthn@de.ibm.com>
10  *  MSGTYPE restruct:             Holger Dengler <hd@linux.vnet.ibm.com>
11  */
12
13 #include <linux/module.h>
14 #include <linux/slab.h>
15 #include <linux/init.h>
16 #include <linux/err.h>
17 #include <linux/atomic.h>
18 #include <linux/uaccess.h>
19 #include <linux/mod_devicetable.h>
20
21 #include "ap_bus.h"
22 #include "zcrypt_api.h"
23 #include "zcrypt_error.h"
24 #include "zcrypt_cex2a.h"
25 #include "zcrypt_msgtype50.h"
26
27 #define CEX2A_MIN_MOD_SIZE        1     /*    8 bits    */
28 #define CEX2A_MAX_MOD_SIZE      256     /* 2048 bits    */
29 #define CEX3A_MIN_MOD_SIZE      CEX2A_MIN_MOD_SIZE
30 #define CEX3A_MAX_MOD_SIZE      512     /* 4096 bits    */
31
32 #define CEX2A_MAX_MESSAGE_SIZE  0x390   /* sizeof(struct type50_crb2_msg)    */
33 #define CEX2A_MAX_RESPONSE_SIZE 0x110   /* max outputdatalength + type80_hdr */
34
35 #define CEX3A_MAX_RESPONSE_SIZE 0x210   /* 512 bit modulus
36                                          * (max outputdatalength) +
37                                          * type80_hdr*/
38 #define CEX3A_MAX_MESSAGE_SIZE  sizeof(struct type50_crb3_msg)
39
40 #define CEX2A_CLEANUP_TIME      (15*HZ)
41 #define CEX3A_CLEANUP_TIME      CEX2A_CLEANUP_TIME
42
43 MODULE_AUTHOR("IBM Corporation");
44 MODULE_DESCRIPTION("CEX2A/CEX3A Cryptographic Coprocessor device driver, " \
45                    "Copyright IBM Corp. 2001, 2018");
46 MODULE_LICENSE("GPL");
47
48 static struct ap_device_id zcrypt_cex2a_card_ids[] = {
49         { .dev_type = AP_DEVICE_TYPE_CEX2A,
50           .match_flags = AP_DEVICE_ID_MATCH_CARD_TYPE },
51         { .dev_type = AP_DEVICE_TYPE_CEX3A,
52           .match_flags = AP_DEVICE_ID_MATCH_CARD_TYPE },
53         { /* end of list */ },
54 };
55
56 MODULE_DEVICE_TABLE(ap, zcrypt_cex2a_card_ids);
57
58 static struct ap_device_id zcrypt_cex2a_queue_ids[] = {
59         { .dev_type = AP_DEVICE_TYPE_CEX2A,
60           .match_flags = AP_DEVICE_ID_MATCH_QUEUE_TYPE },
61         { .dev_type = AP_DEVICE_TYPE_CEX3A,
62           .match_flags = AP_DEVICE_ID_MATCH_QUEUE_TYPE },
63         { /* end of list */ },
64 };
65
66 MODULE_DEVICE_TABLE(ap, zcrypt_cex2a_queue_ids);
67
68 /**
69  * Probe function for CEX2A card devices. It always accepts the AP device
70  * since the bus_match already checked the card type.
71  * @ap_dev: pointer to the AP device.
72  */
73 static int zcrypt_cex2a_card_probe(struct ap_device *ap_dev)
74 {
75         /*
76          * Normalized speed ratings per crypto adapter
77          * MEX_1k, MEX_2k, MEX_4k, CRT_1k, CRT_2k, CRT_4k, RNG, SECKEY
78          */
79         static const int CEX2A_SPEED_IDX[] = {
80                 800, 1000, 2000,  900, 1200, 2400, 0, 0};
81         static const int CEX3A_SPEED_IDX[] = {
82                 400,  500, 1000,  450,  550, 1200, 0, 0};
83
84         struct ap_card *ac = to_ap_card(&ap_dev->device);
85         struct zcrypt_card *zc;
86         int rc = 0;
87
88         zc = zcrypt_card_alloc();
89         if (!zc)
90                 return -ENOMEM;
91         zc->card = ac;
92         dev_set_drvdata(&ap_dev->device, zc);
93
94         if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX2A) {
95                 zc->min_mod_size = CEX2A_MIN_MOD_SIZE;
96                 zc->max_mod_size = CEX2A_MAX_MOD_SIZE;
97                 zc->speed_rating = CEX2A_SPEED_IDX;
98                 zc->max_exp_bit_length = CEX2A_MAX_MOD_SIZE;
99                 zc->type_string = "CEX2A";
100                 zc->user_space_type = ZCRYPT_CEX2A;
101         } else if (ac->ap_dev.device_type == AP_DEVICE_TYPE_CEX3A) {
102                 zc->min_mod_size = CEX2A_MIN_MOD_SIZE;
103                 zc->max_mod_size = CEX2A_MAX_MOD_SIZE;
104                 zc->max_exp_bit_length = CEX2A_MAX_MOD_SIZE;
105                 if (ap_test_bit(&ac->functions, AP_FUNC_MEX4K) &&
106                     ap_test_bit(&ac->functions, AP_FUNC_CRT4K)) {
107                         zc->max_mod_size = CEX3A_MAX_MOD_SIZE;
108                         zc->max_exp_bit_length = CEX3A_MAX_MOD_SIZE;
109                 }
110                 zc->speed_rating = CEX3A_SPEED_IDX;
111                 zc->type_string = "CEX3A";
112                 zc->user_space_type = ZCRYPT_CEX3A;
113         } else {
114                 zcrypt_card_free(zc);
115                 return -ENODEV;
116         }
117         zc->online = 1;
118
119         rc = zcrypt_card_register(zc);
120         if (rc) {
121                 zcrypt_card_free(zc);
122         }
123
124         return rc;
125 }
126
127 /**
128  * This is called to remove the CEX2A card driver information
129  * if an AP card device is removed.
130  */
131 static void zcrypt_cex2a_card_remove(struct ap_device *ap_dev)
132 {
133         struct zcrypt_card *zc = dev_get_drvdata(&ap_dev->device);
134
135         if (zc)
136                 zcrypt_card_unregister(zc);
137 }
138
139 static struct ap_driver zcrypt_cex2a_card_driver = {
140         .probe = zcrypt_cex2a_card_probe,
141         .remove = zcrypt_cex2a_card_remove,
142         .ids = zcrypt_cex2a_card_ids,
143         .flags = AP_DRIVER_FLAG_DEFAULT,
144 };
145
146 /**
147  * Probe function for CEX2A queue devices. It always accepts the AP device
148  * since the bus_match already checked the queue type.
149  * @ap_dev: pointer to the AP device.
150  */
151 static int zcrypt_cex2a_queue_probe(struct ap_device *ap_dev)
152 {
153         struct ap_queue *aq = to_ap_queue(&ap_dev->device);
154         struct zcrypt_queue *zq = NULL;
155         int rc;
156
157         switch (ap_dev->device_type) {
158         case AP_DEVICE_TYPE_CEX2A:
159                 zq = zcrypt_queue_alloc(CEX2A_MAX_RESPONSE_SIZE);
160                 if (!zq)
161                         return -ENOMEM;
162                 break;
163         case AP_DEVICE_TYPE_CEX3A:
164                 zq = zcrypt_queue_alloc(CEX3A_MAX_RESPONSE_SIZE);
165                 if (!zq)
166                         return -ENOMEM;
167                 break;
168         }
169         if (!zq)
170                 return -ENODEV;
171         zq->ops = zcrypt_msgtype(MSGTYPE50_NAME, MSGTYPE50_VARIANT_DEFAULT);
172         zq->queue = aq;
173         zq->online = 1;
174         atomic_set(&zq->load, 0);
175         ap_queue_init_state(aq);
176         ap_queue_init_reply(aq, &zq->reply);
177         aq->request_timeout = CEX2A_CLEANUP_TIME;
178         dev_set_drvdata(&ap_dev->device, zq);
179         rc = zcrypt_queue_register(zq);
180         if (rc) {
181                 zcrypt_queue_free(zq);
182         }
183
184         return rc;
185 }
186
187 /**
188  * This is called to remove the CEX2A queue driver information
189  * if an AP queue device is removed.
190  */
191 static void zcrypt_cex2a_queue_remove(struct ap_device *ap_dev)
192 {
193         struct zcrypt_queue *zq = dev_get_drvdata(&ap_dev->device);
194
195         if (zq)
196                 zcrypt_queue_unregister(zq);
197 }
198
199 static struct ap_driver zcrypt_cex2a_queue_driver = {
200         .probe = zcrypt_cex2a_queue_probe,
201         .remove = zcrypt_cex2a_queue_remove,
202         .ids = zcrypt_cex2a_queue_ids,
203         .flags = AP_DRIVER_FLAG_DEFAULT,
204 };
205
206 int __init zcrypt_cex2a_init(void)
207 {
208         int rc;
209
210         rc = ap_driver_register(&zcrypt_cex2a_card_driver,
211                                 THIS_MODULE, "cex2acard");
212         if (rc)
213                 return rc;
214
215         rc = ap_driver_register(&zcrypt_cex2a_queue_driver,
216                                 THIS_MODULE, "cex2aqueue");
217         if (rc)
218                 ap_driver_unregister(&zcrypt_cex2a_card_driver);
219
220         return rc;
221 }
222
223 void __exit zcrypt_cex2a_exit(void)
224 {
225         ap_driver_unregister(&zcrypt_cex2a_queue_driver);
226         ap_driver_unregister(&zcrypt_cex2a_card_driver);
227 }
228
229 module_init(zcrypt_cex2a_init);
230 module_exit(zcrypt_cex2a_exit);