bfad_im.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*
  2. * Copyright (c) 2005-2009 Brocade Communications Systems, Inc.
  3. * All rights reserved
  4. * www.brocade.com
  5. *
  6. * Linux driver for Brocade Fibre Channel Host Bus Adapter.
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License (GPL) Version 2 as
  10. * published by the Free Software Foundation
  11. *
  12. * This program is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. */
  17. #ifndef __BFAD_IM_H__
  18. #define __BFAD_IM_H__
  19. #include "fcs/bfa_fcs_fcpim.h"
  20. #include "bfad_im_compat.h"
  21. #define FCPI_NAME " fcpim"
  22. void bfad_flags_set(struct bfad_s *bfad, u32 flags);
  23. bfa_status_t bfad_im_module_init(void);
  24. void bfad_im_module_exit(void);
  25. bfa_status_t bfad_im_probe(struct bfad_s *bfad);
  26. void bfad_im_probe_undo(struct bfad_s *bfad);
  27. void bfad_im_probe_post(struct bfad_im_s *im);
  28. bfa_status_t bfad_im_port_new(struct bfad_s *bfad, struct bfad_port_s *port);
  29. void bfad_im_port_delete(struct bfad_s *bfad, struct bfad_port_s *port);
  30. void bfad_im_port_online(struct bfad_s *bfad, struct bfad_port_s *port);
  31. void bfad_im_port_offline(struct bfad_s *bfad, struct bfad_port_s *port);
  32. void bfad_im_port_clean(struct bfad_im_port_s *im_port);
  33. int bfad_im_scsi_host_alloc(struct bfad_s *bfad,
  34. struct bfad_im_port_s *im_port);
  35. void bfad_im_scsi_host_free(struct bfad_s *bfad,
  36. struct bfad_im_port_s *im_port);
  37. #define MAX_FCP_TARGET 1024
  38. #define MAX_FCP_LUN 16384
  39. #define BFAD_TARGET_RESET_TMO 60
  40. #define BFAD_LUN_RESET_TMO 60
  41. #define ScsiResult(host_code, scsi_code) (((host_code) << 16) | scsi_code)
  42. #define BFA_QUEUE_FULL_RAMP_UP_TIME 120
  43. #define BFAD_KOBJ_NAME_LEN 20
  44. /*
  45. * itnim flags
  46. */
  47. #define ITNIM_MAPPED 0x00000001
  48. #define SCSI_TASK_MGMT 0x00000001
  49. #define IO_DONE_BIT 0
  50. struct bfad_itnim_data_s {
  51. struct bfad_itnim_s *itnim;
  52. };
  53. struct bfad_im_port_s {
  54. struct bfad_s *bfad;
  55. struct bfad_port_s *port;
  56. struct work_struct port_delete_work;
  57. int idr_id;
  58. u16 cur_scsi_id;
  59. struct list_head binding_list;
  60. struct Scsi_Host *shost;
  61. struct list_head itnim_mapped_list;
  62. };
  63. enum bfad_itnim_state {
  64. ITNIM_STATE_NONE,
  65. ITNIM_STATE_ONLINE,
  66. ITNIM_STATE_OFFLINE_PENDING,
  67. ITNIM_STATE_OFFLINE,
  68. ITNIM_STATE_TIMEOUT,
  69. ITNIM_STATE_FREE,
  70. };
  71. /*
  72. * Per itnim data structure
  73. */
  74. struct bfad_itnim_s {
  75. struct list_head list_entry;
  76. struct bfa_fcs_itnim_s fcs_itnim;
  77. struct work_struct itnim_work;
  78. u32 flags;
  79. enum bfad_itnim_state state;
  80. struct bfad_im_s *im;
  81. struct bfad_im_port_s *im_port;
  82. struct bfad_rport_s *drv_rport;
  83. struct fc_rport *fc_rport;
  84. struct bfa_itnim_s *bfa_itnim;
  85. u16 scsi_tgt_id;
  86. u16 queue_work;
  87. unsigned long last_ramp_up_time;
  88. unsigned long last_queue_full_time;
  89. };
  90. enum bfad_binding_type {
  91. FCP_PWWN_BINDING = 0x1,
  92. FCP_NWWN_BINDING = 0x2,
  93. FCP_FCID_BINDING = 0x3,
  94. };
  95. struct bfad_fcp_binding {
  96. struct list_head list_entry;
  97. enum bfad_binding_type binding_type;
  98. u16 scsi_target_id;
  99. u32 fc_id;
  100. wwn_t nwwn;
  101. wwn_t pwwn;
  102. };
  103. struct bfad_im_s {
  104. struct bfad_s *bfad;
  105. struct workqueue_struct *drv_workq;
  106. char drv_workq_name[BFAD_KOBJ_NAME_LEN];
  107. };
  108. struct Scsi_Host *bfad_os_scsi_host_alloc(struct bfad_im_port_s *im_port,
  109. struct bfad_s *);
  110. bfa_status_t bfad_os_thread_workq(struct bfad_s *bfad);
  111. void bfad_os_destroy_workq(struct bfad_im_s *im);
  112. void bfad_os_itnim_process(struct bfad_itnim_s *itnim_drv);
  113. void bfad_os_fc_host_init(struct bfad_im_port_s *im_port);
  114. void bfad_os_init_work(struct bfad_im_port_s *im_port);
  115. void bfad_os_scsi_host_free(struct bfad_s *bfad,
  116. struct bfad_im_port_s *im_port);
  117. void bfad_os_ramp_up_qdepth(struct bfad_itnim_s *itnim,
  118. struct scsi_device *sdev);
  119. void bfad_os_handle_qfull(struct bfad_itnim_s *itnim, struct scsi_device *sdev);
  120. struct bfad_itnim_s *bfad_os_get_itnim(struct bfad_im_port_s *im_port, int id);
  121. int bfad_os_scsi_add_host(struct Scsi_Host *shost,
  122. struct bfad_im_port_s *im_port, struct bfad_s *bfad);
  123. /*
  124. * scsi_host_template entries
  125. */
  126. void bfad_im_itnim_unmap(struct bfad_im_port_s *im_port,
  127. struct bfad_itnim_s *itnim);
  128. extern struct scsi_host_template bfad_im_scsi_host_template;
  129. extern struct scsi_host_template bfad_im_vport_template;
  130. extern struct fc_function_template bfad_im_fc_function_template;
  131. extern struct scsi_transport_template *bfad_im_scsi_transport_template;
  132. #endif