host.h 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. /*
  2. * This file is provided under a dual BSD/GPLv2 license. When using or
  3. * redistributing this file, you may do so under either license.
  4. *
  5. * GPL LICENSE SUMMARY
  6. *
  7. * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of version 2 of the GNU General Public License as
  11. * published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * 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., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  21. * The full GNU General Public License is included in this distribution
  22. * in the file called LICENSE.GPL.
  23. *
  24. * BSD LICENSE
  25. *
  26. * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
  27. * All rights reserved.
  28. *
  29. * Redistribution and use in source and binary forms, with or without
  30. * modification, are permitted provided that the following conditions
  31. * are met:
  32. *
  33. * * Redistributions of source code must retain the above copyright
  34. * notice, this list of conditions and the following disclaimer.
  35. * * Redistributions in binary form must reproduce the above copyright
  36. * notice, this list of conditions and the following disclaimer in
  37. * the documentation and/or other materials provided with the
  38. * distribution.
  39. * * Neither the name of Intel Corporation nor the names of its
  40. * contributors may be used to endorse or promote products derived
  41. * from this software without specific prior written permission.
  42. *
  43. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  44. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  45. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  46. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  47. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  48. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  49. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  50. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  51. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  52. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  53. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  54. */
  55. #if !defined(_SCI_HOST_H_)
  56. #define _SCI_HOST_H_
  57. #include "phy.h"
  58. /*#include "task.h"*/
  59. #include "timers.h"
  60. #include "remote_device.h"
  61. #define DRV_NAME "isci"
  62. #define SCI_PCI_BAR_COUNT 2
  63. #define SCI_NUM_MSI_X_INT 2
  64. #define SCI_SMU_BAR 0
  65. #define SCI_SMU_BAR_SIZE (16*1024)
  66. #define SCI_SCU_BAR 1
  67. #define SCI_SCU_BAR_SIZE (4*1024*1024)
  68. #define SCI_IO_SPACE_BAR0 2
  69. #define SCI_IO_SPACE_BAR1 3
  70. #define ISCI_CAN_QUEUE_VAL 250 /* < SCI_MAX_IO_REQUESTS ? */
  71. #define SCIC_CONTROLLER_STOP_TIMEOUT 5000
  72. struct coherent_memory_info {
  73. struct list_head node;
  74. dma_addr_t dma_handle;
  75. void *vaddr;
  76. size_t size;
  77. struct sci_physical_memory_descriptor *mde;
  78. };
  79. struct isci_host {
  80. struct scic_sds_controller *core_controller;
  81. union scic_oem_parameters oem_parameters;
  82. int id; /* unique within a given pci device */
  83. struct isci_timer_list timer_list_struct;
  84. void *core_ctrl_memory;
  85. struct dma_pool *dma_pool;
  86. unsigned int dma_pool_alloc_size;
  87. struct isci_phy phys[SCI_MAX_PHYS];
  88. /* isci_ports and sas_ports are implicitly parallel to the
  89. * ports maintained by the core
  90. */
  91. struct isci_port isci_ports[SCI_MAX_PORTS];
  92. struct asd_sas_port sas_ports[SCI_MAX_PORTS];
  93. struct sas_ha_struct sas_ha;
  94. int can_queue;
  95. spinlock_t queue_lock;
  96. spinlock_t state_lock;
  97. struct pci_dev *pdev;
  98. enum isci_status status;
  99. #define IHOST_START_PENDING 0
  100. #define IHOST_STOP_PENDING 1
  101. unsigned long flags;
  102. wait_queue_head_t eventq;
  103. struct Scsi_Host *shost;
  104. struct tasklet_struct completion_tasklet;
  105. struct list_head mdl_struct_list;
  106. struct list_head requests_to_complete;
  107. struct list_head requests_to_abort;
  108. spinlock_t scic_lock;
  109. struct isci_host *next;
  110. };
  111. /**
  112. * struct isci_pci_info - This class represents the pci function containing the
  113. * controllers. Depending on PCI SKU, there could be up to 2 controllers in
  114. * the PCI function.
  115. */
  116. #define SCI_MAX_MSIX_INT (SCI_NUM_MSI_X_INT*SCI_MAX_CONTROLLERS)
  117. struct isci_pci_info {
  118. struct msix_entry msix_entries[SCI_MAX_MSIX_INT];
  119. int core_lib_array_index;
  120. struct isci_host *hosts;
  121. };
  122. static inline struct isci_pci_info *to_pci_info(struct pci_dev *pdev)
  123. {
  124. return pci_get_drvdata(pdev);
  125. }
  126. #define for_each_isci_host(isci_host, pdev) \
  127. for (isci_host = to_pci_info(pdev)->hosts;\
  128. isci_host; isci_host = isci_host->next)
  129. static inline
  130. enum isci_status isci_host_get_state(
  131. struct isci_host *isci_host)
  132. {
  133. return isci_host->status;
  134. }
  135. static inline void isci_host_change_state(
  136. struct isci_host *isci_host,
  137. enum isci_status status)
  138. {
  139. unsigned long flags;
  140. dev_dbg(&isci_host->pdev->dev,
  141. "%s: isci_host = %p, state = 0x%x",
  142. __func__,
  143. isci_host,
  144. status);
  145. spin_lock_irqsave(&isci_host->state_lock, flags);
  146. isci_host->status = status;
  147. spin_unlock_irqrestore(&isci_host->state_lock, flags);
  148. }
  149. static inline int isci_host_can_queue(
  150. struct isci_host *isci_host,
  151. int num)
  152. {
  153. int ret = 0;
  154. unsigned long flags;
  155. spin_lock_irqsave(&isci_host->queue_lock, flags);
  156. if ((isci_host->can_queue - num) < 0) {
  157. dev_dbg(&isci_host->pdev->dev,
  158. "%s: isci_host->can_queue = %d\n",
  159. __func__,
  160. isci_host->can_queue);
  161. ret = -SAS_QUEUE_FULL;
  162. } else
  163. isci_host->can_queue -= num;
  164. spin_unlock_irqrestore(&isci_host->queue_lock, flags);
  165. return ret;
  166. }
  167. static inline void isci_host_can_dequeue(
  168. struct isci_host *isci_host,
  169. int num)
  170. {
  171. unsigned long flags;
  172. spin_lock_irqsave(&isci_host->queue_lock, flags);
  173. isci_host->can_queue += num;
  174. spin_unlock_irqrestore(&isci_host->queue_lock, flags);
  175. }
  176. static inline void wait_for_start(struct isci_host *ihost)
  177. {
  178. wait_event(ihost->eventq, !test_bit(IHOST_START_PENDING, &ihost->flags));
  179. }
  180. static inline void wait_for_stop(struct isci_host *ihost)
  181. {
  182. wait_event(ihost->eventq, !test_bit(IHOST_STOP_PENDING, &ihost->flags));
  183. }
  184. /**
  185. * isci_host_from_sas_ha() - This accessor retrieves the isci_host object
  186. * reference from the Linux sas_ha_struct reference.
  187. * @ha_struct,: This parameter points to the Linux sas_ha_struct object
  188. *
  189. * A reference to the associated isci_host structure.
  190. */
  191. #define isci_host_from_sas_ha(ha_struct) \
  192. ((struct isci_host *)(ha_struct)->lldd_ha)
  193. /**
  194. * isci_host_scan_finished() -
  195. *
  196. * This function is one of the SCSI Host Template functions. The SCSI midlayer
  197. * calls this function during a target scan, approx. once every 10 millisecs.
  198. */
  199. int isci_host_scan_finished(
  200. struct Scsi_Host *,
  201. unsigned long);
  202. /**
  203. * isci_host_scan_start() -
  204. *
  205. * This function is one of the SCSI Host Template function, called by the SCSI
  206. * mid layer berfore a target scan begins. The core library controller start
  207. * routine is called from here.
  208. */
  209. void isci_host_scan_start(
  210. struct Scsi_Host *);
  211. /**
  212. * isci_host_start_complete() -
  213. *
  214. * This function is called by the core library, through the ISCI Module, to
  215. * indicate controller start status.
  216. */
  217. void isci_host_start_complete(
  218. struct isci_host *,
  219. enum sci_status);
  220. void isci_host_stop_complete(
  221. struct isci_host *isci_host,
  222. enum sci_status completion_status);
  223. int isci_host_init(struct isci_host *);
  224. void isci_host_init_controller_names(
  225. struct isci_host *isci_host,
  226. unsigned int controller_idx);
  227. void isci_host_deinit(
  228. struct isci_host *);
  229. void isci_host_port_link_up(
  230. struct isci_host *,
  231. struct scic_sds_port *,
  232. struct scic_sds_phy *);
  233. int isci_host_dev_found(struct domain_device *);
  234. void isci_host_remote_device_start_complete(
  235. struct isci_host *,
  236. struct isci_remote_device *,
  237. enum sci_status);
  238. #endif /* !defined(_SCI_HOST_H_) */