blob: 3aceb9219d7bd46a43e9db3bacfa03d354805564 [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
56#include "isci.h"
57#include "scic_io_request.h"
58#include "scic_remote_device.h"
59#include "scic_port.h"
60
61#include "port.h"
62#include "request.h"
63#include "host.h"
Dan Williamsd044af12011-03-08 09:52:49 -080064#include "probe_roms.h"
Christoph Hellwigca841f02011-03-28 09:21:04 -040065#include "core/scic_sds_controller.h"
Dan Williams6f231dd2011-07-02 22:56:22 -070066
Dan Williamsc7ef4032011-02-18 09:25:05 -080067irqreturn_t isci_msix_isr(int vec, void *data)
Dan Williams6f231dd2011-07-02 22:56:22 -070068{
Dan Williamsc7ef4032011-02-18 09:25:05 -080069 struct isci_host *ihost = data;
70 struct scic_sds_controller *scic = ihost->core_controller;
Dan Williams6f231dd2011-07-02 22:56:22 -070071
Dan Williams0cf89d12011-02-18 09:25:07 -080072 if (scic_sds_controller_isr(scic))
73 tasklet_schedule(&ihost->completion_tasklet);
Dan Williams6f231dd2011-07-02 22:56:22 -070074
Dan Williamsc7ef4032011-02-18 09:25:05 -080075 return IRQ_HANDLED;
Dan Williams6f231dd2011-07-02 22:56:22 -070076}
77
Dan Williamsc7ef4032011-02-18 09:25:05 -080078irqreturn_t isci_intx_isr(int vec, void *data)
Dan Williams6f231dd2011-07-02 22:56:22 -070079{
Dan Williams6f231dd2011-07-02 22:56:22 -070080 irqreturn_t ret = IRQ_NONE;
Dan Williams31e824e2011-04-19 12:32:51 -070081 struct isci_host *ihost = data;
82 struct scic_sds_controller *scic = ihost->core_controller;
Dan Williams6f231dd2011-07-02 22:56:22 -070083
Dan Williams31e824e2011-04-19 12:32:51 -070084 if (scic_sds_controller_isr(scic)) {
85 writel(SMU_ISR_COMPLETION, &scic->smu_registers->interrupt_status);
86 tasklet_schedule(&ihost->completion_tasklet);
87 ret = IRQ_HANDLED;
88 } else if (scic_sds_controller_error_isr(scic)) {
89 spin_lock(&ihost->scic_lock);
90 scic_sds_controller_error_handler(scic);
91 spin_unlock(&ihost->scic_lock);
92 ret = IRQ_HANDLED;
Dan Williams6f231dd2011-07-02 22:56:22 -070093 }
Dan Williams92f4f0f2011-02-18 09:25:11 -080094
Dan Williams6f231dd2011-07-02 22:56:22 -070095 return ret;
96}
97
Dan Williams92f4f0f2011-02-18 09:25:11 -080098irqreturn_t isci_error_isr(int vec, void *data)
99{
100 struct isci_host *ihost = data;
101 struct scic_sds_controller *scic = ihost->core_controller;
102
103 if (scic_sds_controller_error_isr(scic))
104 scic_sds_controller_error_handler(scic);
105
106 return IRQ_HANDLED;
107}
Dan Williams6f231dd2011-07-02 22:56:22 -0700108
109/**
110 * isci_host_start_complete() - This function is called by the core library,
111 * through the ISCI Module, to indicate controller start status.
112 * @isci_host: This parameter specifies the ISCI host object
113 * @completion_status: This parameter specifies the completion status from the
114 * core library.
115 *
116 */
Dan Williams0cf89d12011-02-18 09:25:07 -0800117void isci_host_start_complete(struct isci_host *ihost, enum sci_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -0700118{
Dan Williams0cf89d12011-02-18 09:25:07 -0800119 if (completion_status != SCI_SUCCESS)
120 dev_info(&ihost->pdev->dev,
121 "controller start timed out, continuing...\n");
122 isci_host_change_state(ihost, isci_ready);
123 clear_bit(IHOST_START_PENDING, &ihost->flags);
124 wake_up(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700125}
126
Dan Williamsc7ef4032011-02-18 09:25:05 -0800127int isci_host_scan_finished(struct Scsi_Host *shost, unsigned long time)
Dan Williams6f231dd2011-07-02 22:56:22 -0700128{
Dan Williams4393aa42011-03-31 13:10:44 -0700129 struct isci_host *ihost = SHOST_TO_SAS_HA(shost)->lldd_ha;
Dan Williams6f231dd2011-07-02 22:56:22 -0700130
Edmund Nadolski77950f52011-02-18 09:25:09 -0800131 if (test_bit(IHOST_START_PENDING, &ihost->flags))
Dan Williams6f231dd2011-07-02 22:56:22 -0700132 return 0;
Dan Williams6f231dd2011-07-02 22:56:22 -0700133
Edmund Nadolski77950f52011-02-18 09:25:09 -0800134 /* todo: use sas_flush_discovery once it is upstream */
135 scsi_flush_work(shost);
136
137 scsi_flush_work(shost);
Dan Williams6f231dd2011-07-02 22:56:22 -0700138
Dan Williams0cf89d12011-02-18 09:25:07 -0800139 dev_dbg(&ihost->pdev->dev,
140 "%s: ihost->status = %d, time = %ld\n",
141 __func__, isci_host_get_state(ihost), time);
Dan Williams6f231dd2011-07-02 22:56:22 -0700142
Dan Williams6f231dd2011-07-02 22:56:22 -0700143 return 1;
144
145}
146
Dan Williams6f231dd2011-07-02 22:56:22 -0700147void isci_host_scan_start(struct Scsi_Host *shost)
148{
Dan Williams4393aa42011-03-31 13:10:44 -0700149 struct isci_host *ihost = SHOST_TO_SAS_HA(shost)->lldd_ha;
Dan Williams0cf89d12011-02-18 09:25:07 -0800150 struct scic_sds_controller *scic = ihost->core_controller;
151 unsigned long tmo = scic_controller_get_suggested_start_timeout(scic);
Dan Williams6f231dd2011-07-02 22:56:22 -0700152
Dan Williams0cf89d12011-02-18 09:25:07 -0800153 set_bit(IHOST_START_PENDING, &ihost->flags);
Edmund Nadolski77950f52011-02-18 09:25:09 -0800154
155 spin_lock_irq(&ihost->scic_lock);
Dan Williams0cf89d12011-02-18 09:25:07 -0800156 scic_controller_start(scic, tmo);
Edmund Nadolski77950f52011-02-18 09:25:09 -0800157 scic_controller_enable_interrupts(scic);
158 spin_unlock_irq(&ihost->scic_lock);
Dan Williams6f231dd2011-07-02 22:56:22 -0700159}
160
Dan Williams0cf89d12011-02-18 09:25:07 -0800161void isci_host_stop_complete(struct isci_host *ihost, enum sci_status completion_status)
Dan Williams6f231dd2011-07-02 22:56:22 -0700162{
Dan Williams0cf89d12011-02-18 09:25:07 -0800163 isci_host_change_state(ihost, isci_stopped);
164 scic_controller_disable_interrupts(ihost->core_controller);
165 clear_bit(IHOST_STOP_PENDING, &ihost->flags);
166 wake_up(&ihost->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700167}
168
Dan Williams6f231dd2011-07-02 22:56:22 -0700169/**
170 * isci_host_completion_routine() - This function is the delayed service
171 * routine that calls the sci core library's completion handler. It's
172 * scheduled as a tasklet from the interrupt service routine when interrupts
173 * in use, or set as the timeout function in polled mode.
174 * @data: This parameter specifies the ISCI host object
175 *
176 */
177static void isci_host_completion_routine(unsigned long data)
178{
179 struct isci_host *isci_host = (struct isci_host *)data;
Jeff Skirvin11b00c12011-03-04 14:06:40 -0800180 struct list_head completed_request_list;
181 struct list_head errored_request_list;
182 struct list_head *current_position;
183 struct list_head *next_position;
Dan Williams6f231dd2011-07-02 22:56:22 -0700184 struct isci_request *request;
185 struct isci_request *next_request;
Jeff Skirvin11b00c12011-03-04 14:06:40 -0800186 struct sas_task *task;
Dan Williams6f231dd2011-07-02 22:56:22 -0700187
188 INIT_LIST_HEAD(&completed_request_list);
Jeff Skirvin11b00c12011-03-04 14:06:40 -0800189 INIT_LIST_HEAD(&errored_request_list);
Dan Williams6f231dd2011-07-02 22:56:22 -0700190
191 spin_lock_irq(&isci_host->scic_lock);
192
Dan Williamsc7ef4032011-02-18 09:25:05 -0800193 scic_sds_controller_completion_handler(isci_host->core_controller);
194
Dan Williams6f231dd2011-07-02 22:56:22 -0700195 /* Take the lists of completed I/Os from the host. */
Jeff Skirvin11b00c12011-03-04 14:06:40 -0800196
Dan Williams6f231dd2011-07-02 22:56:22 -0700197 list_splice_init(&isci_host->requests_to_complete,
198 &completed_request_list);
199
Jeff Skirvin11b00c12011-03-04 14:06:40 -0800200 /* Take the list of errored I/Os from the host. */
201 list_splice_init(&isci_host->requests_to_errorback,
202 &errored_request_list);
Dan Williams6f231dd2011-07-02 22:56:22 -0700203
204 spin_unlock_irq(&isci_host->scic_lock);
205
206 /* Process any completions in the lists. */
207 list_for_each_safe(current_position, next_position,
208 &completed_request_list) {
209
210 request = list_entry(current_position, struct isci_request,
211 completed_node);
212 task = isci_request_access_task(request);
213
214 /* Normal notification (task_done) */
215 dev_dbg(&isci_host->pdev->dev,
216 "%s: Normal - request/task = %p/%p\n",
217 __func__,
218 request,
219 task);
220
Jeff Skirvin11b00c12011-03-04 14:06:40 -0800221 /* Return the task to libsas */
222 if (task != NULL) {
Dan Williams6f231dd2011-07-02 22:56:22 -0700223
Jeff Skirvin11b00c12011-03-04 14:06:40 -0800224 task->lldd_task = NULL;
225 if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED)) {
226
227 /* If the task is already in the abort path,
228 * the task_done callback cannot be called.
229 */
230 task->task_done(task);
231 }
232 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700233 /* Free the request object. */
234 isci_request_free(isci_host, request);
235 }
Jeff Skirvin11b00c12011-03-04 14:06:40 -0800236 list_for_each_entry_safe(request, next_request, &errored_request_list,
Dan Williams6f231dd2011-07-02 22:56:22 -0700237 completed_node) {
238
239 task = isci_request_access_task(request);
240
241 /* Use sas_task_abort */
242 dev_warn(&isci_host->pdev->dev,
243 "%s: Error - request/task = %p/%p\n",
244 __func__,
245 request,
246 task);
247
Jeff Skirvin11b00c12011-03-04 14:06:40 -0800248 if (task != NULL) {
249
250 /* Put the task into the abort path if it's not there
251 * already.
252 */
253 if (!(task->task_state_flags & SAS_TASK_STATE_ABORTED))
254 sas_task_abort(task);
255
256 } else {
257 /* This is a case where the request has completed with a
258 * status such that it needed further target servicing,
259 * but the sas_task reference has already been removed
260 * from the request. Since it was errored, it was not
261 * being aborted, so there is nothing to do except free
262 * it.
263 */
264
265 spin_lock_irq(&isci_host->scic_lock);
266 /* Remove the request from the remote device's list
267 * of pending requests.
268 */
269 list_del_init(&request->dev_node);
270 spin_unlock_irq(&isci_host->scic_lock);
271
272 /* Free the request object. */
273 isci_request_free(isci_host, request);
274 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700275 }
276
277}
278
Dan Williams0cf89d12011-02-18 09:25:07 -0800279void isci_host_deinit(struct isci_host *ihost)
Dan Williams6f231dd2011-07-02 22:56:22 -0700280{
Dan Williams0cf89d12011-02-18 09:25:07 -0800281 struct scic_sds_controller *scic = ihost->core_controller;
Dan Williams6f231dd2011-07-02 22:56:22 -0700282 int i;
283
Dan Williams0cf89d12011-02-18 09:25:07 -0800284 isci_host_change_state(ihost, isci_stopping);
Dan Williams6f231dd2011-07-02 22:56:22 -0700285 for (i = 0; i < SCI_MAX_PORTS; i++) {
Dan Williams0cf89d12011-02-18 09:25:07 -0800286 struct isci_port *port = &ihost->isci_ports[i];
287 struct isci_remote_device *idev, *d;
288
289 list_for_each_entry_safe(idev, d, &port->remote_dev_list, node) {
290 isci_remote_device_change_state(idev, isci_stopping);
Dan Williams6ad31fe2011-03-04 12:10:29 -0800291 isci_remote_device_stop(ihost, idev);
Dan Williams6f231dd2011-07-02 22:56:22 -0700292 }
293 }
294
Dan Williams0cf89d12011-02-18 09:25:07 -0800295 set_bit(IHOST_STOP_PENDING, &ihost->flags);
Dan Williams7c40a802011-03-02 11:49:26 -0800296
297 spin_lock_irq(&ihost->scic_lock);
Dan Williams0cf89d12011-02-18 09:25:07 -0800298 scic_controller_stop(scic, SCIC_CONTROLLER_STOP_TIMEOUT);
Dan Williams7c40a802011-03-02 11:49:26 -0800299 spin_unlock_irq(&ihost->scic_lock);
300
Dan Williams0cf89d12011-02-18 09:25:07 -0800301 wait_for_stop(ihost);
302 scic_controller_reset(scic);
Dan Williams7c40a802011-03-02 11:49:26 -0800303 isci_timer_list_destroy(ihost);
Dan Williams6f231dd2011-07-02 22:56:22 -0700304}
305
Dan Williams6f231dd2011-07-02 22:56:22 -0700306static void __iomem *scu_base(struct isci_host *isci_host)
307{
308 struct pci_dev *pdev = isci_host->pdev;
309 int id = isci_host->id;
310
311 return pcim_iomap_table(pdev)[SCI_SCU_BAR * 2] + SCI_SCU_BAR_SIZE * id;
312}
313
314static void __iomem *smu_base(struct isci_host *isci_host)
315{
316 struct pci_dev *pdev = isci_host->pdev;
317 int id = isci_host->id;
318
319 return pcim_iomap_table(pdev)[SCI_SMU_BAR * 2] + SCI_SMU_BAR_SIZE * id;
320}
321
Dave Jiangb5f18a22011-03-16 14:57:23 -0700322static void isci_user_parameters_get(
323 struct isci_host *isci_host,
324 union scic_user_parameters *scic_user_params)
325{
326 struct scic_sds_user_parameters *u = &scic_user_params->sds1;
327 int i;
328
329 for (i = 0; i < SCI_MAX_PHYS; i++) {
330 struct sci_phy_user_params *u_phy = &u->phys[i];
331
332 u_phy->max_speed_generation = phy_gen;
333
334 /* we are not exporting these for now */
335 u_phy->align_insertion_frequency = 0x7f;
336 u_phy->in_connection_align_insertion_frequency = 0xff;
337 u_phy->notify_enable_spin_up_insertion_frequency = 0x33;
338 }
339
340 u->stp_inactivity_timeout = stp_inactive_to;
341 u->ssp_inactivity_timeout = ssp_inactive_to;
342 u->stp_max_occupancy_timeout = stp_max_occ_to;
343 u->ssp_max_occupancy_timeout = ssp_max_occ_to;
344 u->no_outbound_task_timeout = no_outbound_task_to;
345 u->max_number_concurrent_device_spin_up = max_concurr_spinup;
346}
347
Dan Williams6f231dd2011-07-02 22:56:22 -0700348int isci_host_init(struct isci_host *isci_host)
349{
Dan Williamsd9c37392011-03-03 17:59:32 -0800350 int err = 0, i;
Dan Williams6f231dd2011-07-02 22:56:22 -0700351 enum sci_status status;
352 struct scic_sds_controller *controller;
Dan Williams4711ba12011-03-11 10:43:57 -0800353 union scic_oem_parameters oem;
Dan Williams6f231dd2011-07-02 22:56:22 -0700354 union scic_user_parameters scic_user_params;
Dan Williamsd044af12011-03-08 09:52:49 -0800355 struct isci_pci_info *pci_info = to_pci_info(isci_host->pdev);
Dan Williams6f231dd2011-07-02 22:56:22 -0700356
Dan Williams7c40a802011-03-02 11:49:26 -0800357 isci_timer_list_construct(isci_host);
Dan Williams6f231dd2011-07-02 22:56:22 -0700358
359 controller = scic_controller_alloc(&isci_host->pdev->dev);
360
361 if (!controller) {
Dave Jiang858d4aa2011-02-22 01:27:03 -0800362 dev_err(&isci_host->pdev->dev,
363 "%s: failed (%d)\n",
364 __func__,
365 err);
366 return -ENOMEM;
Dan Williams6f231dd2011-07-02 22:56:22 -0700367 }
368
369 isci_host->core_controller = controller;
Dan Williams4711ba12011-03-11 10:43:57 -0800370 sci_object_set_association(isci_host->core_controller, isci_host);
Dan Williams6f231dd2011-07-02 22:56:22 -0700371 spin_lock_init(&isci_host->state_lock);
372 spin_lock_init(&isci_host->scic_lock);
373 spin_lock_init(&isci_host->queue_lock);
Dan Williams0cf89d12011-02-18 09:25:07 -0800374 init_waitqueue_head(&isci_host->eventq);
Dan Williams6f231dd2011-07-02 22:56:22 -0700375
376 isci_host_change_state(isci_host, isci_starting);
377 isci_host->can_queue = ISCI_CAN_QUEUE_VAL;
378
379 status = scic_controller_construct(controller, scu_base(isci_host),
380 smu_base(isci_host));
381
382 if (status != SCI_SUCCESS) {
383 dev_err(&isci_host->pdev->dev,
384 "%s: scic_controller_construct failed - status = %x\n",
385 __func__,
386 status);
Dave Jiang858d4aa2011-02-22 01:27:03 -0800387 return -ENODEV;
Dan Williams6f231dd2011-07-02 22:56:22 -0700388 }
389
390 isci_host->sas_ha.dev = &isci_host->pdev->dev;
391 isci_host->sas_ha.lldd_ha = isci_host;
392
Dan Williamsd044af12011-03-08 09:52:49 -0800393 /*
394 * grab initial values stored in the controller object for OEM and USER
395 * parameters
396 */
Dave Jiangb5f18a22011-03-16 14:57:23 -0700397 isci_user_parameters_get(isci_host, &scic_user_params);
Dan Williamsd044af12011-03-08 09:52:49 -0800398 status = scic_user_parameters_set(isci_host->core_controller,
399 &scic_user_params);
400 if (status != SCI_SUCCESS) {
401 dev_warn(&isci_host->pdev->dev,
402 "%s: scic_user_parameters_set failed\n",
403 __func__);
404 return -ENODEV;
405 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700406
Dan Williams4711ba12011-03-11 10:43:57 -0800407 scic_oem_parameters_get(controller, &oem);
Dan Williamsd044af12011-03-08 09:52:49 -0800408
409 /* grab any OEM parameters specified in orom */
410 if (pci_info->orom) {
Dan Williams4711ba12011-03-11 10:43:57 -0800411 status = isci_parse_oem_parameters(&oem,
Dan Williamsd044af12011-03-08 09:52:49 -0800412 pci_info->orom,
413 isci_host->id);
Dan Williams6f231dd2011-07-02 22:56:22 -0700414 if (status != SCI_SUCCESS) {
415 dev_warn(&isci_host->pdev->dev,
416 "parsing firmware oem parameters failed\n");
Dave Jiang858d4aa2011-02-22 01:27:03 -0800417 return -EINVAL;
Dan Williams6f231dd2011-07-02 22:56:22 -0700418 }
Dan Williams4711ba12011-03-11 10:43:57 -0800419 }
420
421 status = scic_oem_parameters_set(isci_host->core_controller, &oem);
422 if (status != SCI_SUCCESS) {
423 dev_warn(&isci_host->pdev->dev,
424 "%s: scic_oem_parameters_set failed\n",
425 __func__);
426 return -ENODEV;
Dan Williams6f231dd2011-07-02 22:56:22 -0700427 }
428
Dan Williams6f231dd2011-07-02 22:56:22 -0700429 tasklet_init(&isci_host->completion_tasklet,
Dan Williamsc7ef4032011-02-18 09:25:05 -0800430 isci_host_completion_routine, (unsigned long)isci_host);
Dan Williams6f231dd2011-07-02 22:56:22 -0700431
Dan Williams6f231dd2011-07-02 22:56:22 -0700432 INIT_LIST_HEAD(&isci_host->requests_to_complete);
Jeff Skirvin11b00c12011-03-04 14:06:40 -0800433 INIT_LIST_HEAD(&isci_host->requests_to_errorback);
Dan Williams6f231dd2011-07-02 22:56:22 -0700434
Dan Williams7c40a802011-03-02 11:49:26 -0800435 spin_lock_irq(&isci_host->scic_lock);
436 status = scic_controller_initialize(isci_host->core_controller);
437 spin_unlock_irq(&isci_host->scic_lock);
438 if (status != SCI_SUCCESS) {
439 dev_warn(&isci_host->pdev->dev,
440 "%s: scic_controller_initialize failed -"
441 " status = 0x%x\n",
442 __func__, status);
443 return -ENODEV;
444 }
445
Christoph Hellwigbc5c9672011-04-02 08:15:04 -0400446 err = scic_controller_mem_init(isci_host->core_controller);
Dan Williams6f231dd2011-07-02 22:56:22 -0700447 if (err)
Dave Jiang858d4aa2011-02-22 01:27:03 -0800448 return err;
Dan Williams6f231dd2011-07-02 22:56:22 -0700449
450 /*
451 * keep the pool alloc size around, will use it for a bounds checking
452 * when trying to convert virtual addresses to physical addresses
453 */
454 isci_host->dma_pool_alloc_size = sizeof(struct isci_request) +
455 scic_io_request_get_object_size();
456 isci_host->dma_pool = dmam_pool_create(DRV_NAME, &isci_host->pdev->dev,
457 isci_host->dma_pool_alloc_size,
458 SLAB_HWCACHE_ALIGN, 0);
459
Dave Jiang858d4aa2011-02-22 01:27:03 -0800460 if (!isci_host->dma_pool)
461 return -ENOMEM;
Dan Williams6f231dd2011-07-02 22:56:22 -0700462
Dan Williamsd9c37392011-03-03 17:59:32 -0800463 for (i = 0; i < SCI_MAX_PORTS; i++)
464 isci_port_init(&isci_host->isci_ports[i], isci_host, i);
Dan Williams6f231dd2011-07-02 22:56:22 -0700465
Dan Williamsd9c37392011-03-03 17:59:32 -0800466 for (i = 0; i < SCI_MAX_PHYS; i++)
467 isci_phy_init(&isci_host->phys[i], isci_host, i);
468
469 for (i = 0; i < SCI_MAX_REMOTE_DEVICES; i++) {
Dan Williams57f20f42011-04-21 18:14:45 -0700470 struct isci_remote_device *idev = &isci_host->devices[i];
Dan Williamsd9c37392011-03-03 17:59:32 -0800471
472 INIT_LIST_HEAD(&idev->reqs_in_process);
473 INIT_LIST_HEAD(&idev->node);
474 spin_lock_init(&idev->state_lock);
475 }
Dan Williams6f231dd2011-07-02 22:56:22 -0700476
Dave Jiang858d4aa2011-02-22 01:27:03 -0800477 return 0;
Dan Williams6f231dd2011-07-02 22:56:22 -0700478}