host.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  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. u8 sas_addr[SAS_ADDR_SIZE];
  99. enum isci_status status;
  100. #define IHOST_START_PENDING 0
  101. #define IHOST_STOP_PENDING 1
  102. unsigned long flags;
  103. wait_queue_head_t eventq;
  104. struct Scsi_Host *shost;
  105. struct tasklet_struct completion_tasklet;
  106. struct list_head mdl_struct_list;
  107. struct list_head requests_to_complete;
  108. struct list_head requests_to_abort;
  109. spinlock_t scic_lock;
  110. struct isci_host *next;
  111. };
  112. /**
  113. * struct isci_pci_info - This class represents the pci function containing the
  114. * controllers. Depending on PCI SKU, there could be up to 2 controllers in
  115. * the PCI function.
  116. */
  117. #define SCI_MAX_MSIX_INT (SCI_NUM_MSI_X_INT*SCI_MAX_CONTROLLERS)
  118. struct isci_pci_info {
  119. struct msix_entry msix_entries[SCI_MAX_MSIX_INT];
  120. int core_lib_array_index;
  121. struct isci_host *hosts;
  122. };
  123. static inline struct isci_pci_info *to_pci_info(struct pci_dev *pdev)
  124. {
  125. return pci_get_drvdata(pdev);
  126. }
  127. #define for_each_isci_host(isci_host, pdev) \
  128. for (isci_host = to_pci_info(pdev)->hosts;\
  129. isci_host; isci_host = isci_host->next)
  130. static inline
  131. enum isci_status isci_host_get_state(
  132. struct isci_host *isci_host)
  133. {
  134. return isci_host->status;
  135. }
  136. static inline void isci_host_change_state(
  137. struct isci_host *isci_host,
  138. enum isci_status status)
  139. {
  140. unsigned long flags;
  141. dev_dbg(&isci_host->pdev->dev,
  142. "%s: isci_host = %p, state = 0x%x",
  143. __func__,
  144. isci_host,
  145. status);
  146. spin_lock_irqsave(&isci_host->state_lock, flags);
  147. isci_host->status = status;
  148. spin_unlock_irqrestore(&isci_host->state_lock, flags);
  149. }
  150. static inline int isci_host_can_queue(
  151. struct isci_host *isci_host,
  152. int num)
  153. {
  154. int ret = 0;
  155. unsigned long flags;
  156. spin_lock_irqsave(&isci_host->queue_lock, flags);
  157. if ((isci_host->can_queue - num) < 0) {
  158. dev_dbg(&isci_host->pdev->dev,
  159. "%s: isci_host->can_queue = %d\n",
  160. __func__,
  161. isci_host->can_queue);
  162. ret = -SAS_QUEUE_FULL;
  163. } else
  164. isci_host->can_queue -= num;
  165. spin_unlock_irqrestore(&isci_host->queue_lock, flags);
  166. return ret;
  167. }
  168. static inline void isci_host_can_dequeue(
  169. struct isci_host *isci_host,
  170. int num)
  171. {
  172. unsigned long flags;
  173. spin_lock_irqsave(&isci_host->queue_lock, flags);
  174. isci_host->can_queue += num;
  175. spin_unlock_irqrestore(&isci_host->queue_lock, flags);
  176. }
  177. static inline void wait_for_start(struct isci_host *ihost)
  178. {
  179. wait_event(ihost->eventq, !test_bit(IHOST_START_PENDING, &ihost->flags));
  180. }
  181. static inline void wait_for_stop(struct isci_host *ihost)
  182. {
  183. wait_event(ihost->eventq, !test_bit(IHOST_STOP_PENDING, &ihost->flags));
  184. }
  185. /**
  186. * isci_host_from_sas_ha() - This accessor retrieves the isci_host object
  187. * reference from the Linux sas_ha_struct reference.
  188. * @ha_struct,: This parameter points to the Linux sas_ha_struct object
  189. *
  190. * A reference to the associated isci_host structure.
  191. */
  192. #define isci_host_from_sas_ha(ha_struct) \
  193. ((struct isci_host *)(ha_struct)->lldd_ha)
  194. /**
  195. * isci_host_scan_finished() -
  196. *
  197. * This function is one of the SCSI Host Template functions. The SCSI midlayer
  198. * calls this function during a target scan, approx. once every 10 millisecs.
  199. */
  200. int isci_host_scan_finished(
  201. struct Scsi_Host *,
  202. unsigned long);
  203. /**
  204. * isci_host_scan_start() -
  205. *
  206. * This function is one of the SCSI Host Template function, called by the SCSI
  207. * mid layer berfore a target scan begins. The core library controller start
  208. * routine is called from here.
  209. */
  210. void isci_host_scan_start(
  211. struct Scsi_Host *);
  212. /**
  213. * isci_host_start_complete() -
  214. *
  215. * This function is called by the core library, through the ISCI Module, to
  216. * indicate controller start status.
  217. */
  218. void isci_host_start_complete(
  219. struct isci_host *,
  220. enum sci_status);
  221. void isci_host_stop_complete(
  222. struct isci_host *isci_host,
  223. enum sci_status completion_status);
  224. int isci_host_init(struct isci_host *);
  225. void isci_host_init_controller_names(
  226. struct isci_host *isci_host,
  227. unsigned int controller_idx);
  228. void isci_host_deinit(
  229. struct isci_host *);
  230. void isci_host_port_link_up(
  231. struct isci_host *,
  232. struct scic_sds_port *,
  233. struct scic_sds_phy *);
  234. int isci_host_dev_found(struct domain_device *);
  235. void isci_host_remote_device_start_complete(
  236. struct isci_host *,
  237. struct isci_remote_device *,
  238. enum sci_status);
  239. #endif /* !defined(_SCI_HOST_H_) */