Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 1 | /* |
Ralph Wuerthner | 5432114 | 2006-09-20 15:58:36 +0200 | [diff] [blame] | 2 | * zcrypt 2.1.0 |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 3 | * |
Holger Dengler | 5e55a48 | 2012-08-28 16:45:36 +0200 | [diff] [blame] | 4 | * Copyright IBM Corp. 2001, 2012 |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 5 | * Author(s): Robert Burroughs |
| 6 | * Eric Rossman (edrossma@us.ibm.com) |
| 7 | * Cornelia Huck <cornelia.huck@de.ibm.com> |
| 8 | * |
| 9 | * Hotplug & misc device support: Jochen Roehrig (roehrig@de.ibm.com) |
| 10 | * Major cleanup & driver split: Martin Schwidefsky <schwidefsky@de.ibm.com> |
| 11 | * Ralph Wuerthner <rwuerthn@de.ibm.com> |
Holger Dengler | 5e55a48 | 2012-08-28 16:45:36 +0200 | [diff] [blame] | 12 | * MSGTYPE restruct: Holger Dengler <hd@linux.vnet.ibm.com> |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 13 | * |
| 14 | * This program is free software; you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License as published by |
| 16 | * the Free Software Foundation; either version 2, or (at your option) |
| 17 | * any later version. |
| 18 | * |
| 19 | * This program is distributed in the hope that it will be useful, |
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | * GNU General Public License for more details. |
| 23 | * |
| 24 | * You should have received a copy of the GNU General Public License |
| 25 | * along with this program; if not, write to the Free Software |
| 26 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 27 | */ |
| 28 | |
| 29 | #ifndef _ZCRYPT_API_H_ |
| 30 | #define _ZCRYPT_API_H_ |
| 31 | |
Holger Dengler | dabecb2 | 2012-09-10 21:34:26 +0200 | [diff] [blame] | 32 | #include <linux/atomic.h> |
| 33 | #include <asm/debug.h> |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 34 | #include <asm/zcrypt.h> |
Holger Dengler | dabecb2 | 2012-09-10 21:34:26 +0200 | [diff] [blame] | 35 | #include "ap_bus.h" |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 36 | |
| 37 | /* deprecated status calls */ |
| 38 | #define ICAZ90STATUS _IOR(ZCRYPT_IOCTL_MAGIC, 0x10, struct ica_z90_status) |
| 39 | #define Z90STAT_PCIXCCCOUNT _IOR(ZCRYPT_IOCTL_MAGIC, 0x43, int) |
| 40 | |
| 41 | /** |
| 42 | * This structure is deprecated and the corresponding ioctl() has been |
| 43 | * replaced with individual ioctl()s for each piece of data! |
| 44 | */ |
| 45 | struct ica_z90_status { |
| 46 | int totalcount; |
| 47 | int leedslitecount; // PCICA |
| 48 | int leeds2count; // PCICC |
| 49 | // int PCIXCCCount; is not in struct for backward compatibility |
| 50 | int requestqWaitCount; |
| 51 | int pendingqWaitCount; |
| 52 | int totalOpenCount; |
| 53 | int cryptoDomain; |
| 54 | // status: 0=not there, 1=PCICA, 2=PCICC, 3=PCIXCC_MCL2, 4=PCIXCC_MCL3, |
| 55 | // 5=CEX2C |
| 56 | unsigned char status[64]; |
| 57 | // qdepth: # work elements waiting for each device |
| 58 | unsigned char qdepth[64]; |
| 59 | }; |
| 60 | |
| 61 | /** |
| 62 | * device type for an actual device is either PCICA, PCICC, PCIXCC_MCL2, |
| 63 | * PCIXCC_MCL3, CEX2C, or CEX2A |
| 64 | * |
| 65 | * NOTE: PCIXCC_MCL3 refers to a PCIXCC with May 2004 version of Licensed |
| 66 | * Internal Code (LIC) (EC J12220 level 29). |
| 67 | * PCIXCC_MCL2 refers to any LIC before this level. |
| 68 | */ |
| 69 | #define ZCRYPT_PCICA 1 |
| 70 | #define ZCRYPT_PCICC 2 |
| 71 | #define ZCRYPT_PCIXCC_MCL2 3 |
| 72 | #define ZCRYPT_PCIXCC_MCL3 4 |
| 73 | #define ZCRYPT_CEX2C 5 |
| 74 | #define ZCRYPT_CEX2A 6 |
Felix Beck | 8e89b6b | 2009-12-07 12:51:57 +0100 | [diff] [blame] | 75 | #define ZCRYPT_CEX3C 7 |
| 76 | #define ZCRYPT_CEX3A 8 |
Ingo Tuchscherer | 91f3e3ea | 2013-11-20 10:47:13 +0100 | [diff] [blame] | 77 | #define ZCRYPT_CEX4 10 |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 78 | |
Ralph Wuerthner | 2f7c8bd | 2008-04-17 07:46:15 +0200 | [diff] [blame] | 79 | /** |
| 80 | * 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] | 81 | * 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] | 82 | * limitations for AP requests. |
| 83 | */ |
| 84 | #define ZCRYPT_RNG_BUFFER_SIZE 4096 |
| 85 | |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 86 | struct zcrypt_device; |
| 87 | |
| 88 | struct zcrypt_ops { |
| 89 | long (*rsa_modexpo)(struct zcrypt_device *, struct ica_rsa_modexpo *); |
| 90 | long (*rsa_modexpo_crt)(struct zcrypt_device *, |
| 91 | struct ica_rsa_modexpo_crt *); |
Ralph Wuerthner | 5432114 | 2006-09-20 15:58:36 +0200 | [diff] [blame] | 92 | long (*send_cprb)(struct zcrypt_device *, struct ica_xcRB *); |
Ingo Tuchscherer | 91f3e3ea | 2013-11-20 10:47:13 +0100 | [diff] [blame] | 93 | long (*send_ep11_cprb)(struct zcrypt_device *, struct ep11_urb *); |
Ralph Wuerthner | 2f7c8bd | 2008-04-17 07:46:15 +0200 | [diff] [blame] | 94 | long (*rng)(struct zcrypt_device *, char *); |
Holger Dengler | 5e55a48 | 2012-08-28 16:45:36 +0200 | [diff] [blame] | 95 | struct list_head list; /* zcrypt ops list. */ |
| 96 | struct module *owner; |
| 97 | int variant; |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 98 | }; |
| 99 | |
| 100 | struct zcrypt_device { |
| 101 | struct list_head list; /* Device list. */ |
| 102 | spinlock_t lock; /* Per device lock. */ |
| 103 | struct kref refcount; /* device refcounting */ |
| 104 | struct ap_device *ap_dev; /* The "real" ap device. */ |
| 105 | struct zcrypt_ops *ops; /* Crypto operations. */ |
| 106 | int online; /* User online/offline */ |
| 107 | |
| 108 | int user_space_type; /* User space device id. */ |
| 109 | char *type_string; /* User space device name. */ |
| 110 | int min_mod_size; /* Min number of bits. */ |
| 111 | int max_mod_size; /* Max number of bits. */ |
| 112 | int short_crt; /* Card has crt length restriction. */ |
| 113 | int speed_rating; /* Speed of the crypto device. */ |
| 114 | |
| 115 | int request_count; /* # current requests. */ |
| 116 | |
| 117 | struct ap_message reply; /* Per-device reply structure. */ |
Felix Beck | c2567f8 | 2011-01-05 12:47:47 +0100 | [diff] [blame] | 118 | int max_exp_bit_length; |
Holger Dengler | dabecb2 | 2012-09-10 21:34:26 +0200 | [diff] [blame] | 119 | |
| 120 | debug_info_t *dbf_area; /* debugging */ |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 121 | }; |
| 122 | |
Holger Dengler | dabecb2 | 2012-09-10 21:34:26 +0200 | [diff] [blame] | 123 | /* transport layer rescanning */ |
| 124 | extern atomic_t zcrypt_rescan_req; |
| 125 | |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 126 | struct zcrypt_device *zcrypt_device_alloc(size_t); |
| 127 | void zcrypt_device_free(struct zcrypt_device *); |
| 128 | void zcrypt_device_get(struct zcrypt_device *); |
| 129 | int zcrypt_device_put(struct zcrypt_device *); |
| 130 | int zcrypt_device_register(struct zcrypt_device *); |
| 131 | void zcrypt_device_unregister(struct zcrypt_device *); |
Holger Dengler | 5e55a48 | 2012-08-28 16:45:36 +0200 | [diff] [blame] | 132 | void zcrypt_msgtype_register(struct zcrypt_ops *); |
| 133 | void zcrypt_msgtype_unregister(struct zcrypt_ops *); |
| 134 | struct zcrypt_ops *zcrypt_msgtype_request(unsigned char *, int); |
| 135 | void zcrypt_msgtype_release(struct zcrypt_ops *); |
Martin Schwidefsky | 2dbc241 | 2006-09-20 15:58:27 +0200 | [diff] [blame] | 136 | int zcrypt_api_init(void); |
| 137 | void zcrypt_api_exit(void); |
| 138 | |
| 139 | #endif /* _ZCRYPT_API_H_ */ |