1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright IBM Corp. 2001, 2019
4 * Author(s): Robert Burroughs
5 * Eric Rossman (edrossma@us.ibm.com)
6 * Cornelia Huck <cornelia.huck@de.ibm.com>
8 * Hotplug & misc device support: Jochen Roehrig (roehrig@de.ibm.com)
9 * Major cleanup & driver split: Martin Schwidefsky <schwidefsky@de.ibm.com>
10 * Ralph Wuerthner <rwuerthn@de.ibm.com>
11 * MSGTYPE restruct: Holger Dengler <hd@linux.vnet.ibm.com>
14 #ifndef _ZCRYPT_API_H_
15 #define _ZCRYPT_API_H_
17 #include <linux/atomic.h>
18 #include <asm/debug.h>
19 #include <asm/zcrypt.h>
23 * Supported device types
25 #define ZCRYPT_CEX2C 5
26 #define ZCRYPT_CEX2A 6
27 #define ZCRYPT_CEX3C 7
28 #define ZCRYPT_CEX3A 8
29 #define ZCRYPT_CEX4 10
30 #define ZCRYPT_CEX5 11
31 #define ZCRYPT_CEX6 12
32 #define ZCRYPT_CEX7 13
35 * Large random numbers are pulled in 4096 byte chunks from the crypto cards
36 * and stored in a page. Be careful when increasing this buffer due to size
37 * limitations for AP requests.
39 #define ZCRYPT_RNG_BUFFER_SIZE 4096
42 * Identifier for Crypto Request Performance Index
58 /* struct to hold tracking information for a userspace request/response */
60 int again_counter
; /* retry attempts counter */
61 int last_qid
; /* last qid used */
62 int last_rc
; /* last return code */
63 #ifdef CONFIG_ZCRYPT_DEBUG
64 struct ap_fi fi
; /* failure injection cmd */
68 /* defines related to message tracking */
69 #define TRACK_AGAIN_MAX 10
70 #define TRACK_AGAIN_CARD_WEIGHT_PENALTY 1000
71 #define TRACK_AGAIN_QUEUE_WEIGHT_PENALTY 10000
74 long (*rsa_modexpo
)(struct zcrypt_queue
*, struct ica_rsa_modexpo
*,
76 long (*rsa_modexpo_crt
)(struct zcrypt_queue
*,
77 struct ica_rsa_modexpo_crt
*,
79 long (*send_cprb
)(bool userspace
, struct zcrypt_queue
*, struct ica_xcRB
*,
81 long (*send_ep11_cprb
)(bool userspace
, struct zcrypt_queue
*, struct ep11_urb
*,
83 long (*rng
)(struct zcrypt_queue
*, char *, struct ap_message
*);
84 struct list_head list
; /* zcrypt ops list. */
91 struct list_head list
; /* Device list. */
92 struct list_head zqueues
; /* List of zcrypt queues */
93 struct kref refcount
; /* device refcounting */
94 struct ap_card
*card
; /* The "real" ap card device. */
95 int online
; /* User online/offline */
97 int user_space_type
; /* User space device id. */
98 char *type_string
; /* User space device name. */
99 int min_mod_size
; /* Min number of bits. */
100 int max_mod_size
; /* Max number of bits. */
101 int max_exp_bit_length
;
102 const int *speed_rating
; /* Speed idx of crypto ops. */
103 atomic_t load
; /* Utilization of the crypto device */
105 int request_count
; /* # current requests. */
108 struct zcrypt_queue
{
109 struct list_head list
; /* Device list. */
110 struct kref refcount
; /* device refcounting */
111 struct zcrypt_card
*zcard
;
112 struct zcrypt_ops
*ops
; /* Crypto operations. */
113 struct ap_queue
*queue
; /* The "real" ap queue device. */
114 int online
; /* User online/offline */
116 atomic_t load
; /* Utilization of the crypto device */
118 int request_count
; /* # current requests. */
120 struct ap_message reply
; /* Per-device reply structure. */
123 /* transport layer rescanning */
124 extern atomic_t zcrypt_rescan_req
;
126 extern spinlock_t zcrypt_list_lock
;
127 extern int zcrypt_device_count
;
128 extern struct list_head zcrypt_card_list
;
130 #define for_each_zcrypt_card(_zc) \
131 list_for_each_entry(_zc, &zcrypt_card_list, list)
133 #define for_each_zcrypt_queue(_zq, _zc) \
134 list_for_each_entry(_zq, &(_zc)->zqueues, list)
136 struct zcrypt_card
*zcrypt_card_alloc(void);
137 void zcrypt_card_free(struct zcrypt_card
*);
138 void zcrypt_card_get(struct zcrypt_card
*);
139 int zcrypt_card_put(struct zcrypt_card
*);
140 int zcrypt_card_register(struct zcrypt_card
*);
141 void zcrypt_card_unregister(struct zcrypt_card
*);
143 struct zcrypt_queue
*zcrypt_queue_alloc(size_t);
144 void zcrypt_queue_free(struct zcrypt_queue
*);
145 void zcrypt_queue_get(struct zcrypt_queue
*);
146 int zcrypt_queue_put(struct zcrypt_queue
*);
147 int zcrypt_queue_register(struct zcrypt_queue
*);
148 void zcrypt_queue_unregister(struct zcrypt_queue
*);
149 void zcrypt_queue_force_online(struct zcrypt_queue
*, int);
151 int zcrypt_rng_device_add(void);
152 void zcrypt_rng_device_remove(void);
154 void zcrypt_msgtype_register(struct zcrypt_ops
*);
155 void zcrypt_msgtype_unregister(struct zcrypt_ops
*);
156 struct zcrypt_ops
*zcrypt_msgtype(unsigned char *, int);
157 int zcrypt_api_init(void);
158 void zcrypt_api_exit(void);
159 long zcrypt_send_cprb(struct ica_xcRB
*xcRB
);
160 long zcrypt_send_ep11_cprb(struct ep11_urb
*urb
);
161 void zcrypt_device_status_mask_ext(struct zcrypt_device_status_ext
*devstatus
);
162 int zcrypt_device_status_ext(int card
, int queue
,
163 struct zcrypt_device_status_ext
*devstatus
);
165 int zcrypt_wait_api_operational(void);
167 static inline unsigned long z_copy_from_user(bool userspace
,
169 const void __user
*from
,
172 if (likely(userspace
))
173 return copy_from_user(to
, from
, n
);
174 memcpy(to
, (void __force
*) from
, n
);
178 static inline unsigned long z_copy_to_user(bool userspace
,
183 if (likely(userspace
))
184 return copy_to_user(to
, from
, n
);
185 memcpy((void __force
*) to
, from
, n
);
189 #endif /* _ZCRYPT_API_H_ */