zcrypt_api.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. * linux/drivers/s390/crypto/zcrypt_api.h
  3. *
  4. * zcrypt 2.1.0
  5. *
  6. * Copyright (C) 2001, 2006 IBM Corporation
  7. * Author(s): Robert Burroughs
  8. * Eric Rossman (edrossma@us.ibm.com)
  9. * Cornelia Huck <cornelia.huck@de.ibm.com>
  10. *
  11. * Hotplug & misc device support: Jochen Roehrig (roehrig@de.ibm.com)
  12. * Major cleanup & driver split: Martin Schwidefsky <schwidefsky@de.ibm.com>
  13. * Ralph Wuerthner <rwuerthn@de.ibm.com>
  14. *
  15. * This program is free software; you can redistribute it and/or modify
  16. * it under the terms of the GNU General Public License as published by
  17. * the Free Software Foundation; either version 2, or (at your option)
  18. * any later version.
  19. *
  20. * This program is distributed in the hope that it will be useful,
  21. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. * GNU General Public License for more details.
  24. *
  25. * You should have received a copy of the GNU General Public License
  26. * along with this program; if not, write to the Free Software
  27. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  28. */
  29. #ifndef _ZCRYPT_API_H_
  30. #define _ZCRYPT_API_H_
  31. /**
  32. * Macro definitions
  33. *
  34. * PDEBUG debugs in the form "zcrypt: function_name -> message"
  35. *
  36. * PRINTK is like PDEBUG, except that it is always enabled
  37. * PRINTKN is like PRINTK, except that it does not include the function name
  38. * PRINTKW is like PRINTK, except that it uses KERN_WARNING
  39. * PRINTKC is like PRINTK, except that it uses KERN_CRIT
  40. */
  41. #define DEV_NAME "zcrypt"
  42. #define PRINTK(fmt, args...) \
  43. printk(KERN_DEBUG DEV_NAME ": %s -> " fmt, __FUNCTION__ , ## args)
  44. #define PRINTKN(fmt, args...) \
  45. printk(KERN_DEBUG DEV_NAME ": " fmt, ## args)
  46. #define PRINTKW(fmt, args...) \
  47. printk(KERN_WARNING DEV_NAME ": %s -> " fmt, __FUNCTION__ , ## args)
  48. #define PRINTKC(fmt, args...) \
  49. printk(KERN_CRIT DEV_NAME ": %s -> " fmt, __FUNCTION__ , ## args)
  50. #ifdef ZCRYPT_DEBUG
  51. #define PDEBUG(fmt, args...) \
  52. printk(KERN_DEBUG DEV_NAME ": %s -> " fmt, __FUNCTION__ , ## args)
  53. #else
  54. #define PDEBUG(fmt, args...) do {} while (0)
  55. #endif
  56. #include "ap_bus.h"
  57. #include <asm/zcrypt.h>
  58. /* deprecated status calls */
  59. #define ICAZ90STATUS _IOR(ZCRYPT_IOCTL_MAGIC, 0x10, struct ica_z90_status)
  60. #define Z90STAT_PCIXCCCOUNT _IOR(ZCRYPT_IOCTL_MAGIC, 0x43, int)
  61. /**
  62. * This structure is deprecated and the corresponding ioctl() has been
  63. * replaced with individual ioctl()s for each piece of data!
  64. */
  65. struct ica_z90_status {
  66. int totalcount;
  67. int leedslitecount; // PCICA
  68. int leeds2count; // PCICC
  69. // int PCIXCCCount; is not in struct for backward compatibility
  70. int requestqWaitCount;
  71. int pendingqWaitCount;
  72. int totalOpenCount;
  73. int cryptoDomain;
  74. // status: 0=not there, 1=PCICA, 2=PCICC, 3=PCIXCC_MCL2, 4=PCIXCC_MCL3,
  75. // 5=CEX2C
  76. unsigned char status[64];
  77. // qdepth: # work elements waiting for each device
  78. unsigned char qdepth[64];
  79. };
  80. /**
  81. * device type for an actual device is either PCICA, PCICC, PCIXCC_MCL2,
  82. * PCIXCC_MCL3, CEX2C, or CEX2A
  83. *
  84. * NOTE: PCIXCC_MCL3 refers to a PCIXCC with May 2004 version of Licensed
  85. * Internal Code (LIC) (EC J12220 level 29).
  86. * PCIXCC_MCL2 refers to any LIC before this level.
  87. */
  88. #define ZCRYPT_PCICA 1
  89. #define ZCRYPT_PCICC 2
  90. #define ZCRYPT_PCIXCC_MCL2 3
  91. #define ZCRYPT_PCIXCC_MCL3 4
  92. #define ZCRYPT_CEX2C 5
  93. #define ZCRYPT_CEX2A 6
  94. struct zcrypt_device;
  95. struct zcrypt_ops {
  96. long (*rsa_modexpo)(struct zcrypt_device *, struct ica_rsa_modexpo *);
  97. long (*rsa_modexpo_crt)(struct zcrypt_device *,
  98. struct ica_rsa_modexpo_crt *);
  99. long (*send_cprb)(struct zcrypt_device *, struct ica_xcRB *);
  100. };
  101. struct zcrypt_device {
  102. struct list_head list; /* Device list. */
  103. spinlock_t lock; /* Per device lock. */
  104. struct kref refcount; /* device refcounting */
  105. struct ap_device *ap_dev; /* The "real" ap device. */
  106. struct zcrypt_ops *ops; /* Crypto operations. */
  107. int online; /* User online/offline */
  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. int request_count; /* # current requests. */
  115. struct ap_message reply; /* Per-device reply structure. */
  116. };
  117. struct zcrypt_device *zcrypt_device_alloc(size_t);
  118. void zcrypt_device_free(struct zcrypt_device *);
  119. void zcrypt_device_get(struct zcrypt_device *);
  120. int zcrypt_device_put(struct zcrypt_device *);
  121. int zcrypt_device_register(struct zcrypt_device *);
  122. void zcrypt_device_unregister(struct zcrypt_device *);
  123. int zcrypt_api_init(void);
  124. void zcrypt_api_exit(void);
  125. #endif /* _ZCRYPT_API_H_ */