ibmvscsi.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /* ------------------------------------------------------------
  2. * ibmvscsi.h
  3. * (C) Copyright IBM Corporation 1994, 2003
  4. * Authors: Colin DeVilbiss (devilbis@us.ibm.com)
  5. * Santiago Leon (santil@us.ibm.com)
  6. * Dave Boutcher (sleddog@us.ibm.com)
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  21. * USA
  22. *
  23. * ------------------------------------------------------------
  24. * Emulation of a SCSI host adapter for Virtual I/O devices
  25. *
  26. * This driver allows the Linux SCSI peripheral drivers to directly
  27. * access devices in the hosting partition, either on an iSeries
  28. * hypervisor system or a converged hypervisor system.
  29. */
  30. #ifndef IBMVSCSI_H
  31. #define IBMVSCSI_H
  32. #include <linux/types.h>
  33. #include <linux/list.h>
  34. #include <linux/completion.h>
  35. #include <linux/interrupt.h>
  36. #include "viosrp.h"
  37. struct scsi_cmnd;
  38. struct Scsi_Host;
  39. /* Number of indirect bufs...the list of these has to fit in the
  40. * additional data of the srp_cmd struct along with the indirect
  41. * descriptor
  42. */
  43. #define MAX_INDIRECT_BUFS 10
  44. #define IBMVSCSI_MAX_REQUESTS_DEFAULT 100
  45. #define IBMVSCSI_MAX_CMDS_PER_LUN 64
  46. /* ------------------------------------------------------------
  47. * Data Structures
  48. */
  49. /* an RPA command/response transport queue */
  50. struct crq_queue {
  51. struct viosrp_crq *msgs;
  52. int size, cur;
  53. dma_addr_t msg_token;
  54. spinlock_t lock;
  55. };
  56. /* a unit of work for the hosting partition */
  57. struct srp_event_struct {
  58. union viosrp_iu *xfer_iu;
  59. struct scsi_cmnd *cmnd;
  60. struct list_head list;
  61. void (*done) (struct srp_event_struct *);
  62. struct viosrp_crq crq;
  63. struct ibmvscsi_host_data *hostdata;
  64. atomic_t free;
  65. union viosrp_iu iu;
  66. void (*cmnd_done) (struct scsi_cmnd *);
  67. struct completion comp;
  68. struct timer_list timer;
  69. union viosrp_iu *sync_srp;
  70. struct srp_direct_buf *ext_list;
  71. dma_addr_t ext_list_token;
  72. };
  73. /* a pool of event structs for use */
  74. struct event_pool {
  75. struct srp_event_struct *events;
  76. u32 size;
  77. int next;
  78. union viosrp_iu *iu_storage;
  79. dma_addr_t iu_token;
  80. };
  81. /* all driver data associated with a host adapter */
  82. struct ibmvscsi_host_data {
  83. atomic_t request_limit;
  84. struct device *dev;
  85. struct event_pool pool;
  86. struct crq_queue queue;
  87. struct tasklet_struct srp_task;
  88. struct list_head sent;
  89. struct Scsi_Host *host;
  90. struct mad_adapter_info_data madapter_info;
  91. };
  92. /* routines for managing a command/response queue */
  93. void ibmvscsi_handle_crq(struct viosrp_crq *crq,
  94. struct ibmvscsi_host_data *hostdata);
  95. struct ibmvscsi_ops {
  96. int (*init_crq_queue)(struct crq_queue *queue,
  97. struct ibmvscsi_host_data *hostdata,
  98. int max_requests);
  99. void (*release_crq_queue)(struct crq_queue *queue,
  100. struct ibmvscsi_host_data *hostdata,
  101. int max_requests);
  102. int (*reset_crq_queue)(struct crq_queue *queue,
  103. struct ibmvscsi_host_data *hostdata);
  104. int (*reenable_crq_queue)(struct crq_queue *queue,
  105. struct ibmvscsi_host_data *hostdata);
  106. int (*send_crq)(struct ibmvscsi_host_data *hostdata,
  107. u64 word1, u64 word2);
  108. };
  109. extern struct ibmvscsi_ops iseriesvscsi_ops;
  110. extern struct ibmvscsi_ops rpavscsi_ops;
  111. #endif /* IBMVSCSI_H */