host.h 8.1 KB

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