blob: 13c1c99ef294496f1641ae3df41e1549475547f2 [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 Williamsce2b3262011-05-08 15:49:15 -070056#ifndef _SCI_HOST_H_
Dan Williams6f231dd2011-07-02 22:56:22 -070057#define _SCI_HOST_H_
58
Artur Wojcikcc3dbd02011-05-04 07:58:16 +000059#include "scic_sds_controller.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070060#include "remote_device.h"
Dan Williamsce2b3262011-05-08 15:49:15 -070061#include "phy.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070062
Dan Williams6f231dd2011-07-02 22:56:22 -070063struct isci_host {
Artur Wojcikcc3dbd02011-05-04 07:58:16 +000064 struct scic_sds_controller sci;
Dan Williams6f231dd2011-07-02 22:56:22 -070065 union scic_oem_parameters oem_parameters;
66
67 int id; /* unique within a given pci device */
Dan Williams7c40a802011-03-02 11:49:26 -080068 struct list_head timers;
Dan Williams6f231dd2011-07-02 22:56:22 -070069 void *core_ctrl_memory;
70 struct dma_pool *dma_pool;
Dan Williams6f231dd2011-07-02 22:56:22 -070071 struct isci_phy phys[SCI_MAX_PHYS];
Dan Williamse5313812011-05-07 10:11:43 -070072 struct isci_port ports[SCI_MAX_PORTS + 1]; /* includes dummy port */
Dan Williams6f231dd2011-07-02 22:56:22 -070073 struct sas_ha_struct sas_ha;
74
75 int can_queue;
76 spinlock_t queue_lock;
77 spinlock_t state_lock;
78
79 struct pci_dev *pdev;
Dan Williams6f231dd2011-07-02 22:56:22 -070080
81 enum isci_status status;
Dan Williams0cf89d12011-02-18 09:25:07 -080082 #define IHOST_START_PENDING 0
83 #define IHOST_STOP_PENDING 1
84 unsigned long flags;
85 wait_queue_head_t eventq;
Dan Williams6f231dd2011-07-02 22:56:22 -070086 struct Scsi_Host *shost;
87 struct tasklet_struct completion_tasklet;
Dan Williams6f231dd2011-07-02 22:56:22 -070088 struct list_head requests_to_complete;
Jeff Skirvin11b00c12011-03-04 14:06:40 -080089 struct list_head requests_to_errorback;
Dan Williams6f231dd2011-07-02 22:56:22 -070090 spinlock_t scic_lock;
Dan Williamsd9c37392011-03-03 17:59:32 -080091
Dan Williams57f20f42011-04-21 18:14:45 -070092 struct isci_remote_device devices[SCI_MAX_REMOTE_DEVICES];
Dan Williams6f231dd2011-07-02 22:56:22 -070093};
94
Dan Williams6f231dd2011-07-02 22:56:22 -070095/**
96 * struct isci_pci_info - This class represents the pci function containing the
97 * controllers. Depending on PCI SKU, there could be up to 2 controllers in
98 * the PCI function.
99 */
100#define SCI_MAX_MSIX_INT (SCI_NUM_MSI_X_INT*SCI_MAX_CONTROLLERS)
101
102struct isci_pci_info {
103 struct msix_entry msix_entries[SCI_MAX_MSIX_INT];
Dan Williamsb329aff2011-03-07 16:02:25 -0800104 struct isci_host *hosts[SCI_MAX_CONTROLLERS];
Dan Williamsd044af12011-03-08 09:52:49 -0800105 struct isci_orom *orom;
Dan Williams6f231dd2011-07-02 22:56:22 -0700106};
107
108static inline struct isci_pci_info *to_pci_info(struct pci_dev *pdev)
109{
110 return pci_get_drvdata(pdev);
111}
112
Dan Williamsb329aff2011-03-07 16:02:25 -0800113#define for_each_isci_host(id, ihost, pdev) \
114 for (id = 0, ihost = to_pci_info(pdev)->hosts[id]; \
115 id < ARRAY_SIZE(to_pci_info(pdev)->hosts) && ihost; \
116 ihost = to_pci_info(pdev)->hosts[++id])
Dan Williams6f231dd2011-07-02 22:56:22 -0700117
118static inline
119enum isci_status isci_host_get_state(
120 struct isci_host *isci_host)
121{
122 return isci_host->status;
123}
124
125
126static inline void isci_host_change_state(
127 struct isci_host *isci_host,
128 enum isci_status status)
129{
130 unsigned long flags;
131
132 dev_dbg(&isci_host->pdev->dev,
133 "%s: isci_host = %p, state = 0x%x",
134 __func__,
135 isci_host,
136 status);
137 spin_lock_irqsave(&isci_host->state_lock, flags);
138 isci_host->status = status;
139 spin_unlock_irqrestore(&isci_host->state_lock, flags);
140
141}
142
143static inline int isci_host_can_queue(
144 struct isci_host *isci_host,
145 int num)
146{
147 int ret = 0;
148 unsigned long flags;
149
150 spin_lock_irqsave(&isci_host->queue_lock, flags);
151 if ((isci_host->can_queue - num) < 0) {
152 dev_dbg(&isci_host->pdev->dev,
153 "%s: isci_host->can_queue = %d\n",
154 __func__,
155 isci_host->can_queue);
156 ret = -SAS_QUEUE_FULL;
157
158 } else
159 isci_host->can_queue -= num;
160
161 spin_unlock_irqrestore(&isci_host->queue_lock, flags);
162
163 return ret;
164}
165
166static inline void isci_host_can_dequeue(
167 struct isci_host *isci_host,
168 int num)
169{
170 unsigned long flags;
171
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
Dan Williams0cf89d12011-02-18 09:25:07 -0800177static inline void wait_for_start(struct isci_host *ihost)
178{
179 wait_event(ihost->eventq, !test_bit(IHOST_START_PENDING, &ihost->flags));
180}
181
182static inline void wait_for_stop(struct isci_host *ihost)
183{
184 wait_event(ihost->eventq, !test_bit(IHOST_STOP_PENDING, &ihost->flags));
185}
186
Dan Williams6ad31fe2011-03-04 12:10:29 -0800187static inline void wait_for_device_start(struct isci_host *ihost, struct isci_remote_device *idev)
188{
189 wait_event(ihost->eventq, !test_bit(IDEV_START_PENDING, &idev->flags));
190}
191
192static inline void wait_for_device_stop(struct isci_host *ihost, struct isci_remote_device *idev)
193{
Dan Williamsd9c37392011-03-03 17:59:32 -0800194 wait_event(ihost->eventq, !test_bit(IDEV_STOP_PENDING, &idev->flags));
Dan Williams6ad31fe2011-03-04 12:10:29 -0800195}
Dan Williams0cf89d12011-02-18 09:25:07 -0800196
Dan Williams4393aa42011-03-31 13:10:44 -0700197static inline struct isci_host *dev_to_ihost(struct domain_device *dev)
198{
199 return dev->port->ha->lldd_ha;
200}
Dan Williams6f231dd2011-07-02 22:56:22 -0700201
Artur Wojcikcc3dbd02011-05-04 07:58:16 +0000202static inline struct isci_host *scic_to_ihost(struct scic_sds_controller *scic)
203{
204 /* XXX delete after merging scic_sds_contoller and isci_host */
205 struct isci_host *ihost = container_of(scic, typeof(*ihost), sci);
206
207 return ihost;
208}
209
Dan Williams6f231dd2011-07-02 22:56:22 -0700210/**
211 * isci_host_scan_finished() -
212 *
213 * This function is one of the SCSI Host Template functions. The SCSI midlayer
214 * calls this function during a target scan, approx. once every 10 millisecs.
215 */
216int isci_host_scan_finished(
217 struct Scsi_Host *,
218 unsigned long);
219
220
221/**
222 * isci_host_scan_start() -
223 *
224 * This function is one of the SCSI Host Template function, called by the SCSI
225 * mid layer berfore a target scan begins. The core library controller start
226 * routine is called from here.
227 */
228void isci_host_scan_start(
229 struct Scsi_Host *);
230
231/**
232 * isci_host_start_complete() -
233 *
234 * This function is called by the core library, through the ISCI Module, to
235 * indicate controller start status.
236 */
237void isci_host_start_complete(
238 struct isci_host *,
239 enum sci_status);
240
241void isci_host_stop_complete(
242 struct isci_host *isci_host,
243 enum sci_status completion_status);
244
245int isci_host_init(struct isci_host *);
246
247void isci_host_init_controller_names(
248 struct isci_host *isci_host,
249 unsigned int controller_idx);
250
251void isci_host_deinit(
252 struct isci_host *);
253
254void isci_host_port_link_up(
255 struct isci_host *,
256 struct scic_sds_port *,
257 struct scic_sds_phy *);
258int isci_host_dev_found(struct domain_device *);
259
260void isci_host_remote_device_start_complete(
261 struct isci_host *,
262 struct isci_remote_device *,
263 enum sci_status);
264
265#endif /* !defined(_SCI_HOST_H_) */