blob: 02b2d35de1a7dd3c3aa3a4ae1aabd739b737a2c0 [file] [log] [blame]
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +02001/*
Ralph Wuerthner54321142006-09-20 15:58:36 +02002 * zcrypt 2.1.0
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +02003 *
Holger Dengler5e55a482012-08-28 16:45:36 +02004 * Copyright IBM Corp. 2001, 2012
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +02005 * 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 Dengler5e55a482012-08-28 16:45:36 +020012 * MSGTYPE restruct: Holger Dengler <hd@linux.vnet.ibm.com>
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +020013 *
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
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +020032#include "ap_bus.h"
33#include <asm/zcrypt.h>
34
35/* deprecated status calls */
36#define ICAZ90STATUS _IOR(ZCRYPT_IOCTL_MAGIC, 0x10, struct ica_z90_status)
37#define Z90STAT_PCIXCCCOUNT _IOR(ZCRYPT_IOCTL_MAGIC, 0x43, int)
38
39/**
40 * This structure is deprecated and the corresponding ioctl() has been
41 * replaced with individual ioctl()s for each piece of data!
42 */
43struct ica_z90_status {
44 int totalcount;
45 int leedslitecount; // PCICA
46 int leeds2count; // PCICC
47 // int PCIXCCCount; is not in struct for backward compatibility
48 int requestqWaitCount;
49 int pendingqWaitCount;
50 int totalOpenCount;
51 int cryptoDomain;
52 // status: 0=not there, 1=PCICA, 2=PCICC, 3=PCIXCC_MCL2, 4=PCIXCC_MCL3,
53 // 5=CEX2C
54 unsigned char status[64];
55 // qdepth: # work elements waiting for each device
56 unsigned char qdepth[64];
57};
58
59/**
60 * device type for an actual device is either PCICA, PCICC, PCIXCC_MCL2,
61 * PCIXCC_MCL3, CEX2C, or CEX2A
62 *
63 * NOTE: PCIXCC_MCL3 refers to a PCIXCC with May 2004 version of Licensed
64 * Internal Code (LIC) (EC J12220 level 29).
65 * PCIXCC_MCL2 refers to any LIC before this level.
66 */
67#define ZCRYPT_PCICA 1
68#define ZCRYPT_PCICC 2
69#define ZCRYPT_PCIXCC_MCL2 3
70#define ZCRYPT_PCIXCC_MCL3 4
71#define ZCRYPT_CEX2C 5
72#define ZCRYPT_CEX2A 6
Felix Beck8e89b6b2009-12-07 12:51:57 +010073#define ZCRYPT_CEX3C 7
74#define ZCRYPT_CEX3A 8
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +020075
Ralph Wuerthner2f7c8bd2008-04-17 07:46:15 +020076/**
77 * Large random numbers are pulled in 4096 byte chunks from the crypto cards
Lucas De Marchi25985ed2011-03-30 22:57:33 -030078 * and stored in a page. Be careful when increasing this buffer due to size
Ralph Wuerthner2f7c8bd2008-04-17 07:46:15 +020079 * limitations for AP requests.
80 */
81#define ZCRYPT_RNG_BUFFER_SIZE 4096
82
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +020083struct zcrypt_device;
84
85struct zcrypt_ops {
86 long (*rsa_modexpo)(struct zcrypt_device *, struct ica_rsa_modexpo *);
87 long (*rsa_modexpo_crt)(struct zcrypt_device *,
88 struct ica_rsa_modexpo_crt *);
Ralph Wuerthner54321142006-09-20 15:58:36 +020089 long (*send_cprb)(struct zcrypt_device *, struct ica_xcRB *);
Ralph Wuerthner2f7c8bd2008-04-17 07:46:15 +020090 long (*rng)(struct zcrypt_device *, char *);
Holger Dengler5e55a482012-08-28 16:45:36 +020091 struct list_head list; /* zcrypt ops list. */
92 struct module *owner;
93 int variant;
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +020094};
95
96struct zcrypt_device {
97 struct list_head list; /* Device list. */
98 spinlock_t lock; /* Per device lock. */
99 struct kref refcount; /* device refcounting */
100 struct ap_device *ap_dev; /* The "real" ap device. */
101 struct zcrypt_ops *ops; /* Crypto operations. */
102 int online; /* User online/offline */
103
104 int user_space_type; /* User space device id. */
105 char *type_string; /* User space device name. */
106 int min_mod_size; /* Min number of bits. */
107 int max_mod_size; /* Max number of bits. */
108 int short_crt; /* Card has crt length restriction. */
109 int speed_rating; /* Speed of the crypto device. */
110
111 int request_count; /* # current requests. */
112
113 struct ap_message reply; /* Per-device reply structure. */
Felix Beckc2567f82011-01-05 12:47:47 +0100114 int max_exp_bit_length;
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +0200115};
116
117struct zcrypt_device *zcrypt_device_alloc(size_t);
118void zcrypt_device_free(struct zcrypt_device *);
119void zcrypt_device_get(struct zcrypt_device *);
120int zcrypt_device_put(struct zcrypt_device *);
121int zcrypt_device_register(struct zcrypt_device *);
122void zcrypt_device_unregister(struct zcrypt_device *);
Holger Dengler5e55a482012-08-28 16:45:36 +0200123void zcrypt_msgtype_register(struct zcrypt_ops *);
124void zcrypt_msgtype_unregister(struct zcrypt_ops *);
125struct zcrypt_ops *zcrypt_msgtype_request(unsigned char *, int);
126void zcrypt_msgtype_release(struct zcrypt_ops *);
Martin Schwidefsky2dbc2412006-09-20 15:58:27 +0200127int zcrypt_api_init(void);
128void zcrypt_api_exit(void);
129
130#endif /* _ZCRYPT_API_H_ */