host.h 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  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 "scic_sds_controller.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 isci_host {
  73. struct scic_sds_controller sci;
  74. union scic_oem_parameters oem_parameters;
  75. int id; /* unique within a given pci device */
  76. struct list_head timers;
  77. void *core_ctrl_memory;
  78. struct dma_pool *dma_pool;
  79. unsigned int dma_pool_alloc_size;
  80. struct isci_phy phys[SCI_MAX_PHYS];
  81. /* isci_ports and sas_ports are implicitly parallel to the
  82. * ports maintained by the core
  83. */
  84. struct isci_port isci_ports[SCI_MAX_PORTS];
  85. struct asd_sas_port sas_ports[SCI_MAX_PORTS];
  86. struct sas_ha_struct sas_ha;
  87. int can_queue;
  88. spinlock_t queue_lock;
  89. spinlock_t state_lock;
  90. struct pci_dev *pdev;
  91. enum isci_status status;
  92. #define IHOST_START_PENDING 0
  93. #define IHOST_STOP_PENDING 1
  94. unsigned long flags;
  95. wait_queue_head_t eventq;
  96. struct Scsi_Host *shost;
  97. struct tasklet_struct completion_tasklet;
  98. struct list_head requests_to_complete;
  99. struct list_head requests_to_errorback;
  100. spinlock_t scic_lock;
  101. struct isci_remote_device devices[SCI_MAX_REMOTE_DEVICES];
  102. };
  103. /**
  104. * struct isci_pci_info - This class represents the pci function containing the
  105. * controllers. Depending on PCI SKU, there could be up to 2 controllers in
  106. * the PCI function.
  107. */
  108. #define SCI_MAX_MSIX_INT (SCI_NUM_MSI_X_INT*SCI_MAX_CONTROLLERS)
  109. struct isci_pci_info {
  110. struct msix_entry msix_entries[SCI_MAX_MSIX_INT];
  111. struct isci_host *hosts[SCI_MAX_CONTROLLERS];
  112. struct isci_orom *orom;
  113. };
  114. static inline struct isci_pci_info *to_pci_info(struct pci_dev *pdev)
  115. {
  116. return pci_get_drvdata(pdev);
  117. }
  118. #define for_each_isci_host(id, ihost, pdev) \
  119. for (id = 0, ihost = to_pci_info(pdev)->hosts[id]; \
  120. id < ARRAY_SIZE(to_pci_info(pdev)->hosts) && ihost; \
  121. ihost = to_pci_info(pdev)->hosts[++id])
  122. static inline
  123. enum isci_status isci_host_get_state(
  124. struct isci_host *isci_host)
  125. {
  126. return isci_host->status;
  127. }
  128. static inline void isci_host_change_state(
  129. struct isci_host *isci_host,
  130. enum isci_status status)
  131. {
  132. unsigned long flags;
  133. dev_dbg(&isci_host->pdev->dev,
  134. "%s: isci_host = %p, state = 0x%x",
  135. __func__,
  136. isci_host,
  137. status);
  138. spin_lock_irqsave(&isci_host->state_lock, flags);
  139. isci_host->status = status;
  140. spin_unlock_irqrestore(&isci_host->state_lock, flags);
  141. }
  142. static inline int isci_host_can_queue(
  143. struct isci_host *isci_host,
  144. int num)
  145. {
  146. int ret = 0;
  147. unsigned long flags;
  148. spin_lock_irqsave(&isci_host->queue_lock, flags);
  149. if ((isci_host->can_queue - num) < 0) {
  150. dev_dbg(&isci_host->pdev->dev,
  151. "%s: isci_host->can_queue = %d\n",
  152. __func__,
  153. isci_host->can_queue);
  154. ret = -SAS_QUEUE_FULL;
  155. } else
  156. isci_host->can_queue -= num;
  157. spin_unlock_irqrestore(&isci_host->queue_lock, flags);
  158. return ret;
  159. }
  160. static inline void isci_host_can_dequeue(
  161. struct isci_host *isci_host,
  162. int num)
  163. {
  164. unsigned long flags;
  165. spin_lock_irqsave(&isci_host->queue_lock, flags);
  166. isci_host->can_queue += num;
  167. spin_unlock_irqrestore(&isci_host->queue_lock, flags);
  168. }
  169. static inline void wait_for_start(struct isci_host *ihost)
  170. {
  171. wait_event(ihost->eventq, !test_bit(IHOST_START_PENDING, &ihost->flags));
  172. }
  173. static inline void wait_for_stop(struct isci_host *ihost)
  174. {
  175. wait_event(ihost->eventq, !test_bit(IHOST_STOP_PENDING, &ihost->flags));
  176. }
  177. static inline void wait_for_device_start(struct isci_host *ihost, struct isci_remote_device *idev)
  178. {
  179. wait_event(ihost->eventq, !test_bit(IDEV_START_PENDING, &idev->flags));
  180. }
  181. static inline void wait_for_device_stop(struct isci_host *ihost, struct isci_remote_device *idev)
  182. {
  183. wait_event(ihost->eventq, !test_bit(IDEV_STOP_PENDING, &idev->flags));
  184. }
  185. static inline struct isci_host *dev_to_ihost(struct domain_device *dev)
  186. {
  187. return dev->port->ha->lldd_ha;
  188. }
  189. static inline struct isci_host *scic_to_ihost(struct scic_sds_controller *scic)
  190. {
  191. /* XXX delete after merging scic_sds_contoller and isci_host */
  192. struct isci_host *ihost = container_of(scic, typeof(*ihost), sci);
  193. return ihost;
  194. }
  195. /**
  196. * isci_host_scan_finished() -
  197. *
  198. * This function is one of the SCSI Host Template functions. The SCSI midlayer
  199. * calls this function during a target scan, approx. once every 10 millisecs.
  200. */
  201. int isci_host_scan_finished(
  202. struct Scsi_Host *,
  203. unsigned long);
  204. /**
  205. * isci_host_scan_start() -
  206. *
  207. * This function is one of the SCSI Host Template function, called by the SCSI
  208. * mid layer berfore a target scan begins. The core library controller start
  209. * routine is called from here.
  210. */
  211. void isci_host_scan_start(
  212. struct Scsi_Host *);
  213. /**
  214. * isci_host_start_complete() -
  215. *
  216. * This function is called by the core library, through the ISCI Module, to
  217. * indicate controller start status.
  218. */
  219. void isci_host_start_complete(
  220. struct isci_host *,
  221. enum sci_status);
  222. void isci_host_stop_complete(
  223. struct isci_host *isci_host,
  224. enum sci_status completion_status);
  225. int isci_host_init(struct isci_host *);
  226. void isci_host_init_controller_names(
  227. struct isci_host *isci_host,
  228. unsigned int controller_idx);
  229. void isci_host_deinit(
  230. struct isci_host *);
  231. void isci_host_port_link_up(
  232. struct isci_host *,
  233. struct scic_sds_port *,
  234. struct scic_sds_phy *);
  235. int isci_host_dev_found(struct domain_device *);
  236. void isci_host_remote_device_start_complete(
  237. struct isci_host *,
  238. struct isci_remote_device *,
  239. enum sci_status);
  240. #endif /* !defined(_SCI_HOST_H_) */