blob: 8372094ef5add3ffe5aad03c2c65b9abb51d0aad [file] [log] [blame]
Dan Williams6f231dd2011-07-02 22:56:22 -07001/*
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
Dan Williams6f231dd2011-07-02 22:56:22 -070056
57#if !defined(_SCI_HOST_H_)
58#define _SCI_HOST_H_
59
60#include "phy.h"
61/*#include "task.h"*/
62#include "timers.h"
63#include "remote_device.h"
Dan Williamsd9c37392011-03-03 17:59:32 -080064#include "scic_remote_device.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070065
66#define DRV_NAME "isci"
67#define SCI_PCI_BAR_COUNT 2
68#define SCI_NUM_MSI_X_INT 2
69#define SCI_SMU_BAR 0
70#define SCI_SMU_BAR_SIZE (16*1024)
71#define SCI_SCU_BAR 1
72#define SCI_SCU_BAR_SIZE (4*1024*1024)
73#define SCI_IO_SPACE_BAR0 2
74#define SCI_IO_SPACE_BAR1 3
Dan Williams6f231dd2011-07-02 22:56:22 -070075#define ISCI_CAN_QUEUE_VAL 250 /* < SCI_MAX_IO_REQUESTS ? */
76#define SCIC_CONTROLLER_STOP_TIMEOUT 5000
77
78struct coherent_memory_info {
79 struct list_head node;
80 dma_addr_t dma_handle;
81 void *vaddr;
82 size_t size;
83 struct sci_physical_memory_descriptor *mde;
84};
85
86struct isci_host {
87 struct scic_sds_controller *core_controller;
Dan Williams6f231dd2011-07-02 22:56:22 -070088 union scic_oem_parameters oem_parameters;
89
90 int id; /* unique within a given pci device */
Dan Williams7c40a802011-03-02 11:49:26 -080091 struct list_head timers;
Dan Williams6f231dd2011-07-02 22:56:22 -070092 void *core_ctrl_memory;
93 struct dma_pool *dma_pool;
94 unsigned int dma_pool_alloc_size;
95 struct isci_phy phys[SCI_MAX_PHYS];
96
97 /* isci_ports and sas_ports are implicitly parallel to the
98 * ports maintained by the core
99 */
100 struct isci_port isci_ports[SCI_MAX_PORTS];
101 struct asd_sas_port sas_ports[SCI_MAX_PORTS];
102 struct sas_ha_struct sas_ha;
103
104 int can_queue;
105 spinlock_t queue_lock;
106 spinlock_t state_lock;
107
108 struct pci_dev *pdev;
Dan Williams6f231dd2011-07-02 22:56:22 -0700109
110 enum isci_status status;
Dan Williams0cf89d12011-02-18 09:25:07 -0800111 #define IHOST_START_PENDING 0
112 #define IHOST_STOP_PENDING 1
113 unsigned long flags;
114 wait_queue_head_t eventq;
Dan Williams6f231dd2011-07-02 22:56:22 -0700115 struct Scsi_Host *shost;
116 struct tasklet_struct completion_tasklet;
117 struct list_head mdl_struct_list;
118 struct list_head requests_to_complete;
Jeff Skirvin11b00c12011-03-04 14:06:40 -0800119 struct list_head requests_to_errorback;
Dan Williams6f231dd2011-07-02 22:56:22 -0700120 spinlock_t scic_lock;
Dan Williamsd9c37392011-03-03 17:59:32 -0800121
122 /* careful only access this via idev_by_id */
123 struct isci_remote_device devices[0];
Dan Williams6f231dd2011-07-02 22:56:22 -0700124};
125
Dan Williamsd9c37392011-03-03 17:59:32 -0800126static inline struct isci_remote_device *idev_by_id(struct isci_host *ihost, int i)
127{
128 void *p = ihost->devices;
129
130 return p + i * (sizeof(struct isci_remote_device) +
131 scic_remote_device_get_object_size());
132}
Dan Williams6f231dd2011-07-02 22:56:22 -0700133
134/**
135 * struct isci_pci_info - This class represents the pci function containing the
136 * controllers. Depending on PCI SKU, there could be up to 2 controllers in
137 * the PCI function.
138 */
139#define SCI_MAX_MSIX_INT (SCI_NUM_MSI_X_INT*SCI_MAX_CONTROLLERS)
140
141struct isci_pci_info {
142 struct msix_entry msix_entries[SCI_MAX_MSIX_INT];
Dan Williamsb329aff2011-03-07 16:02:25 -0800143 struct isci_host *hosts[SCI_MAX_CONTROLLERS];
Dan Williamsd044af12011-03-08 09:52:49 -0800144 struct isci_orom *orom;
Dan Williams6f231dd2011-07-02 22:56:22 -0700145};
146
147static inline struct isci_pci_info *to_pci_info(struct pci_dev *pdev)
148{
149 return pci_get_drvdata(pdev);
150}
151
Dan Williamsb329aff2011-03-07 16:02:25 -0800152#define for_each_isci_host(id, ihost, pdev) \
153 for (id = 0, ihost = to_pci_info(pdev)->hosts[id]; \
154 id < ARRAY_SIZE(to_pci_info(pdev)->hosts) && ihost; \
155 ihost = to_pci_info(pdev)->hosts[++id])
Dan Williams6f231dd2011-07-02 22:56:22 -0700156
157static inline
158enum isci_status isci_host_get_state(
159 struct isci_host *isci_host)
160{
161 return isci_host->status;
162}
163
164
165static inline void isci_host_change_state(
166 struct isci_host *isci_host,
167 enum isci_status status)
168{
169 unsigned long flags;
170
171 dev_dbg(&isci_host->pdev->dev,
172 "%s: isci_host = %p, state = 0x%x",
173 __func__,
174 isci_host,
175 status);
176 spin_lock_irqsave(&isci_host->state_lock, flags);
177 isci_host->status = status;
178 spin_unlock_irqrestore(&isci_host->state_lock, flags);
179
180}
181
182static inline int isci_host_can_queue(
183 struct isci_host *isci_host,
184 int num)
185{
186 int ret = 0;
187 unsigned long flags;
188
189 spin_lock_irqsave(&isci_host->queue_lock, flags);
190 if ((isci_host->can_queue - num) < 0) {
191 dev_dbg(&isci_host->pdev->dev,
192 "%s: isci_host->can_queue = %d\n",
193 __func__,
194 isci_host->can_queue);
195 ret = -SAS_QUEUE_FULL;
196
197 } else
198 isci_host->can_queue -= num;
199
200 spin_unlock_irqrestore(&isci_host->queue_lock, flags);
201
202 return ret;
203}
204
205static inline void isci_host_can_dequeue(
206 struct isci_host *isci_host,
207 int num)
208{
209 unsigned long flags;
210
211 spin_lock_irqsave(&isci_host->queue_lock, flags);
212 isci_host->can_queue += num;
213 spin_unlock_irqrestore(&isci_host->queue_lock, flags);
214}
215
Dan Williams0cf89d12011-02-18 09:25:07 -0800216static inline void wait_for_start(struct isci_host *ihost)
217{
218 wait_event(ihost->eventq, !test_bit(IHOST_START_PENDING, &ihost->flags));
219}
220
221static inline void wait_for_stop(struct isci_host *ihost)
222{
223 wait_event(ihost->eventq, !test_bit(IHOST_STOP_PENDING, &ihost->flags));
224}
225
Dan Williams6ad31fe2011-03-04 12:10:29 -0800226static inline void wait_for_device_start(struct isci_host *ihost, struct isci_remote_device *idev)
227{
228 wait_event(ihost->eventq, !test_bit(IDEV_START_PENDING, &idev->flags));
229}
230
231static inline void wait_for_device_stop(struct isci_host *ihost, struct isci_remote_device *idev)
232{
Dan Williamsd9c37392011-03-03 17:59:32 -0800233 wait_event(ihost->eventq, !test_bit(IDEV_STOP_PENDING, &idev->flags));
Dan Williams6ad31fe2011-03-04 12:10:29 -0800234}
Dan Williams0cf89d12011-02-18 09:25:07 -0800235
Dan Williams4393aa42011-03-31 13:10:44 -0700236static inline struct isci_host *dev_to_ihost(struct domain_device *dev)
237{
238 return dev->port->ha->lldd_ha;
239}
Dan Williams6f231dd2011-07-02 22:56:22 -0700240
241/**
242 * isci_host_scan_finished() -
243 *
244 * This function is one of the SCSI Host Template functions. The SCSI midlayer
245 * calls this function during a target scan, approx. once every 10 millisecs.
246 */
247int isci_host_scan_finished(
248 struct Scsi_Host *,
249 unsigned long);
250
251
252/**
253 * isci_host_scan_start() -
254 *
255 * This function is one of the SCSI Host Template function, called by the SCSI
256 * mid layer berfore a target scan begins. The core library controller start
257 * routine is called from here.
258 */
259void isci_host_scan_start(
260 struct Scsi_Host *);
261
262/**
263 * isci_host_start_complete() -
264 *
265 * This function is called by the core library, through the ISCI Module, to
266 * indicate controller start status.
267 */
268void isci_host_start_complete(
269 struct isci_host *,
270 enum sci_status);
271
272void isci_host_stop_complete(
273 struct isci_host *isci_host,
274 enum sci_status completion_status);
275
276int isci_host_init(struct isci_host *);
277
278void isci_host_init_controller_names(
279 struct isci_host *isci_host,
280 unsigned int controller_idx);
281
282void isci_host_deinit(
283 struct isci_host *);
284
285void isci_host_port_link_up(
286 struct isci_host *,
287 struct scic_sds_port *,
288 struct scic_sds_phy *);
289int isci_host_dev_found(struct domain_device *);
290
291void isci_host_remote_device_start_complete(
292 struct isci_host *,
293 struct isci_remote_device *,
294 enum sci_status);
295
296#endif /* !defined(_SCI_HOST_H_) */