Harald Freudenberger | ac2b96f | 2018-08-17 12:36:01 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 2 | /* |
Ralph Wuerthner | 5432114 | 2006-09-20 15:58:36 +0200 | [diff] [blame] | 3 | * zcrypt 2.1.0 |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 4 | * |
Holger Dengler | 5e55a48 | 2012-08-28 16:45:36 +0200 | [diff] [blame] | 5 | * Copyright IBM Corp. 2001, 2012 |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 6 | * Author(s): Robert Burroughs |
| 7 | * Eric Rossman (edrossma@us.ibm.com) |
| 8 | * Cornelia Huck <cornelia.huck@de.ibm.com> |
| 9 | * |
| 10 | * Hotplug & misc device support: Jochen Roehrig (roehrig@de.ibm.com) |
| 11 | * Major cleanup & driver split: Martin Schwidefsky <schwidefsky@de.ibm.com> |
| 12 | * Ralph Wuerthner <rwuerthn@de.ibm.com> |
Holger Dengler | 5e55a48 | 2012-08-28 16:45:36 +0200 | [diff] [blame] | 13 | * MSGTYPE restruct: Holger Dengler <hd@linux.vnet.ibm.com> |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #ifndef _ZCRYPT_API_H_ |
| 17 | #define _ZCRYPT_API_H_ |
| 18 | |
Holger Dengler | dabecb2 | 2012-09-10 21:34:26 +0200 | [diff] [blame] | 19 | #include <linux/atomic.h> |
| 20 | #include <asm/debug.h> |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 21 | #include <asm/zcrypt.h> |
Holger Dengler | dabecb2 | 2012-09-10 21:34:26 +0200 | [diff] [blame] | 22 | #include "ap_bus.h" |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 23 | |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 24 | /** |
| 25 | * device type for an actual device is either PCICA, PCICC, PCIXCC_MCL2, |
| 26 | * PCIXCC_MCL3, CEX2C, or CEX2A |
| 27 | * |
| 28 | * NOTE: PCIXCC_MCL3 refers to a PCIXCC with May 2004 version of Licensed |
| 29 | * Internal Code (LIC) (EC J12220 level 29). |
| 30 | * PCIXCC_MCL2 refers to any LIC before this level. |
| 31 | */ |
| 32 | #define ZCRYPT_PCICA 1 |
| 33 | #define ZCRYPT_PCICC 2 |
| 34 | #define ZCRYPT_PCIXCC_MCL2 3 |
| 35 | #define ZCRYPT_PCIXCC_MCL3 4 |
| 36 | #define ZCRYPT_CEX2C 5 |
| 37 | #define ZCRYPT_CEX2A 6 |
Felix Beck | 8e89b6b | 2009-12-07 12:51:57 +0100 | [diff] [blame] | 38 | #define ZCRYPT_CEX3C 7 |
| 39 | #define ZCRYPT_CEX3A 8 |
Ingo Tuchscherer | 91f3e3ea | 2013-11-20 10:47:13 +0100 | [diff] [blame] | 40 | #define ZCRYPT_CEX4 10 |
Ingo Tuchscherer | bdea1f1b | 2015-01-23 14:56:25 +0100 | [diff] [blame] | 41 | #define ZCRYPT_CEX5 11 |
Harald Freudenberger | 21214b0 | 2017-10-10 11:25:06 +0200 | [diff] [blame] | 42 | #define ZCRYPT_CEX6 12 |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 43 | |
Ralph Wuerthner | 2f7c8bd | 2008-04-17 07:46:15 +0200 | [diff] [blame] | 44 | /** |
| 45 | * Large random numbers are pulled in 4096 byte chunks from the crypto cards |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 46 | * and stored in a page. Be careful when increasing this buffer due to size |
Ralph Wuerthner | 2f7c8bd | 2008-04-17 07:46:15 +0200 | [diff] [blame] | 47 | * limitations for AP requests. |
| 48 | */ |
| 49 | #define ZCRYPT_RNG_BUFFER_SIZE 4096 |
| 50 | |
Ingo Tuchscherer | 34a1516 | 2016-08-25 11:14:15 +0200 | [diff] [blame] | 51 | /* |
| 52 | * Identifier for Crypto Request Performance Index |
| 53 | */ |
| 54 | enum crypto_ops { |
Ingo Tuchscherer | e28d2af | 2016-08-25 11:16:03 +0200 | [diff] [blame] | 55 | MEX_1K, |
Ingo Tuchscherer | 34a1516 | 2016-08-25 11:14:15 +0200 | [diff] [blame] | 56 | MEX_2K, |
| 57 | MEX_4K, |
| 58 | CRT_1K, |
| 59 | CRT_2K, |
| 60 | CRT_4K, |
| 61 | HWRNG, |
| 62 | SECKEY, |
| 63 | NUM_OPS |
| 64 | }; |
| 65 | |
Ingo Tuchscherer | e28d2af | 2016-08-25 11:16:03 +0200 | [diff] [blame] | 66 | struct zcrypt_queue; |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 67 | |
| 68 | struct zcrypt_ops { |
Ingo Tuchscherer | e28d2af | 2016-08-25 11:16:03 +0200 | [diff] [blame] | 69 | long (*rsa_modexpo)(struct zcrypt_queue *, struct ica_rsa_modexpo *); |
| 70 | long (*rsa_modexpo_crt)(struct zcrypt_queue *, |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 71 | struct ica_rsa_modexpo_crt *); |
Ingo Tuchscherer | e28d2af | 2016-08-25 11:16:03 +0200 | [diff] [blame] | 72 | long (*send_cprb)(struct zcrypt_queue *, struct ica_xcRB *, |
Ingo Tuchscherer | 34a1516 | 2016-08-25 11:14:15 +0200 | [diff] [blame] | 73 | struct ap_message *); |
Ingo Tuchscherer | e28d2af | 2016-08-25 11:16:03 +0200 | [diff] [blame] | 74 | long (*send_ep11_cprb)(struct zcrypt_queue *, struct ep11_urb *, |
Ingo Tuchscherer | 34a1516 | 2016-08-25 11:14:15 +0200 | [diff] [blame] | 75 | struct ap_message *); |
Ingo Tuchscherer | e28d2af | 2016-08-25 11:16:03 +0200 | [diff] [blame] | 76 | long (*rng)(struct zcrypt_queue *, char *, struct ap_message *); |
Holger Dengler | 5e55a48 | 2012-08-28 16:45:36 +0200 | [diff] [blame] | 77 | struct list_head list; /* zcrypt ops list. */ |
| 78 | struct module *owner; |
| 79 | int variant; |
Sascha Silbe | 121a868 | 2015-10-28 11:06:08 +0100 | [diff] [blame] | 80 | char name[128]; |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 81 | }; |
| 82 | |
Ingo Tuchscherer | e28d2af | 2016-08-25 11:16:03 +0200 | [diff] [blame] | 83 | struct zcrypt_card { |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 84 | struct list_head list; /* Device list. */ |
Ingo Tuchscherer | e28d2af | 2016-08-25 11:16:03 +0200 | [diff] [blame] | 85 | struct list_head zqueues; /* List of zcrypt queues */ |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 86 | struct kref refcount; /* device refcounting */ |
Ingo Tuchscherer | e28d2af | 2016-08-25 11:16:03 +0200 | [diff] [blame] | 87 | struct ap_card *card; /* The "real" ap card device. */ |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 88 | int online; /* User online/offline */ |
| 89 | |
| 90 | int user_space_type; /* User space device id. */ |
| 91 | char *type_string; /* User space device name. */ |
| 92 | int min_mod_size; /* Min number of bits. */ |
| 93 | int max_mod_size; /* Max number of bits. */ |
Ingo Tuchscherer | e28d2af | 2016-08-25 11:16:03 +0200 | [diff] [blame] | 94 | int max_exp_bit_length; |
Ingo Tuchscherer | 34a1516 | 2016-08-25 11:14:15 +0200 | [diff] [blame] | 95 | int speed_rating[NUM_OPS]; /* Speed idx of crypto ops. */ |
Ingo Tuchscherer | e28d2af | 2016-08-25 11:16:03 +0200 | [diff] [blame] | 96 | atomic_t load; /* Utilization of the crypto device */ |
| 97 | |
| 98 | int request_count; /* # current requests. */ |
Ingo Tuchscherer | e28d2af | 2016-08-25 11:16:03 +0200 | [diff] [blame] | 99 | }; |
| 100 | |
| 101 | struct zcrypt_queue { |
| 102 | struct list_head list; /* Device list. */ |
| 103 | struct kref refcount; /* device refcounting */ |
| 104 | struct zcrypt_card *zcard; |
| 105 | struct zcrypt_ops *ops; /* Crypto operations. */ |
| 106 | struct ap_queue *queue; /* The "real" ap queue device. */ |
| 107 | int online; /* User online/offline */ |
| 108 | |
| 109 | atomic_t load; /* Utilization of the crypto device */ |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 110 | |
| 111 | int request_count; /* # current requests. */ |
| 112 | |
| 113 | struct ap_message reply; /* Per-device reply structure. */ |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 114 | }; |
| 115 | |
Holger Dengler | dabecb2 | 2012-09-10 21:34:26 +0200 | [diff] [blame] | 116 | /* transport layer rescanning */ |
| 117 | extern atomic_t zcrypt_rescan_req; |
| 118 | |
Ingo Tuchscherer | e28d2af | 2016-08-25 11:16:03 +0200 | [diff] [blame] | 119 | extern spinlock_t zcrypt_list_lock; |
| 120 | extern int zcrypt_device_count; |
| 121 | extern struct list_head zcrypt_card_list; |
| 122 | |
Ingo Tuchscherer | e28d2af | 2016-08-25 11:16:03 +0200 | [diff] [blame] | 123 | #define for_each_zcrypt_card(_zc) \ |
| 124 | list_for_each_entry(_zc, &zcrypt_card_list, list) |
| 125 | |
| 126 | #define for_each_zcrypt_queue(_zq, _zc) \ |
| 127 | list_for_each_entry(_zq, &(_zc)->zqueues, list) |
| 128 | |
| 129 | struct zcrypt_card *zcrypt_card_alloc(void); |
| 130 | void zcrypt_card_free(struct zcrypt_card *); |
| 131 | void zcrypt_card_get(struct zcrypt_card *); |
| 132 | int zcrypt_card_put(struct zcrypt_card *); |
| 133 | int zcrypt_card_register(struct zcrypt_card *); |
| 134 | void zcrypt_card_unregister(struct zcrypt_card *); |
| 135 | struct zcrypt_card *zcrypt_card_get_best(unsigned int *, |
| 136 | unsigned int, unsigned int); |
| 137 | void zcrypt_card_put_best(struct zcrypt_card *, unsigned int); |
| 138 | |
| 139 | struct zcrypt_queue *zcrypt_queue_alloc(size_t); |
| 140 | void zcrypt_queue_free(struct zcrypt_queue *); |
| 141 | void zcrypt_queue_get(struct zcrypt_queue *); |
| 142 | int zcrypt_queue_put(struct zcrypt_queue *); |
| 143 | int zcrypt_queue_register(struct zcrypt_queue *); |
| 144 | void zcrypt_queue_unregister(struct zcrypt_queue *); |
| 145 | void zcrypt_queue_force_online(struct zcrypt_queue *, int); |
| 146 | struct zcrypt_queue *zcrypt_queue_get_best(unsigned int, unsigned int); |
| 147 | void zcrypt_queue_put_best(struct zcrypt_queue *, unsigned int); |
| 148 | |
| 149 | int zcrypt_rng_device_add(void); |
| 150 | void zcrypt_rng_device_remove(void); |
| 151 | |
Holger Dengler | 5e55a48 | 2012-08-28 16:45:36 +0200 | [diff] [blame] | 152 | void zcrypt_msgtype_register(struct zcrypt_ops *); |
| 153 | void zcrypt_msgtype_unregister(struct zcrypt_ops *); |
Martin Schwidefsky | 236fb2a | 2016-09-02 15:21:45 +0200 | [diff] [blame] | 154 | struct zcrypt_ops *zcrypt_msgtype(unsigned char *, int); |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 155 | int zcrypt_api_init(void); |
| 156 | void zcrypt_api_exit(void); |
Harald Freudenberger | a1d001e | 2016-11-02 14:32:32 +0100 | [diff] [blame] | 157 | long zcrypt_send_cprb(struct ica_xcRB *xcRB); |
Harald Freudenberger | af4a722 | 2018-04-09 16:18:37 +0200 | [diff] [blame] | 158 | void zcrypt_device_status_mask_ext(struct zcrypt_device_status_ext *devstatus); |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 159 | |
| 160 | #endif /* _ZCRYPT_API_H_ */ |