blob: 95a895dd4f132883aa7dc8c379332aa917863aa0 [file] [log] [blame]
Erich Chen1c57e862006-07-12 08:59:32 -07001/*
2*******************************************************************************
3** O.S : Linux
4** FILE NAME : arcmsr_hba.c
5** BY : Erich Chen
6** Description: SCSI RAID Device Driver for
7** ARECA RAID Host adapter
8*******************************************************************************
9** Copyright (C) 2002 - 2005, Areca Technology Corporation All rights reserved
10**
11** Web site: www.areca.com.tw
Nick Cheng1a4f5502007-09-13 17:26:40 +080012** E-mail: support@areca.com.tw
Erich Chen1c57e862006-07-12 08:59:32 -070013**
14** This program is free software; you can redistribute it and/or modify
15** it under the terms of the GNU General Public License version 2 as
16** published by the Free Software Foundation.
17** This program is distributed in the hope that it will be useful,
18** but WITHOUT ANY WARRANTY; without even the implied warranty of
19** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20** GNU General Public License for more details.
21*******************************************************************************
22** Redistribution and use in source and binary forms, with or without
23** modification, are permitted provided that the following conditions
24** are met:
25** 1. Redistributions of source code must retain the above copyright
26** notice, this list of conditions and the following disclaimer.
27** 2. Redistributions in binary form must reproduce the above copyright
28** notice, this list of conditions and the following disclaimer in the
29** documentation and/or other materials provided with the distribution.
30** 3. The name of the author may not be used to endorse or promote products
31** derived from this software without specific prior written permission.
32**
33** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
34** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
35** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
36** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
37** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES(INCLUDING,BUT
38** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
39** DATA, OR PROFITS; OR BUSINESS INTERRUPTION)HOWEVER CAUSED AND ON ANY
40** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
41** (INCLUDING NEGLIGENCE OR OTHERWISE)ARISING IN ANY WAY OUT OF THE USE OF
42** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43*******************************************************************************
44** For history of changes, see Documentation/scsi/ChangeLog.arcmsr
45** Firmware Specification, see Documentation/scsi/arcmsr_spec.txt
46*******************************************************************************
47*/
48#include <linux/module.h>
49#include <linux/reboot.h>
50#include <linux/spinlock.h>
51#include <linux/pci_ids.h>
52#include <linux/interrupt.h>
53#include <linux/moduleparam.h>
54#include <linux/errno.h>
55#include <linux/types.h>
56#include <linux/delay.h>
57#include <linux/dma-mapping.h>
58#include <linux/timer.h>
59#include <linux/pci.h>
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +080060#include <linux/aer.h>
Erich Chen1c57e862006-07-12 08:59:32 -070061#include <asm/dma.h>
62#include <asm/io.h>
63#include <asm/system.h>
64#include <asm/uaccess.h>
65#include <scsi/scsi_host.h>
66#include <scsi/scsi.h>
67#include <scsi/scsi_cmnd.h>
68#include <scsi/scsi_tcq.h>
69#include <scsi/scsi_device.h>
70#include <scsi/scsi_transport.h>
71#include <scsi/scsicam.h>
72#include "arcmsr.h"
Nick Chengae52e7f2010-06-18 15:39:12 +080073MODULE_AUTHOR("Nick Cheng <support@areca.com.tw>");
Nick Chengcdd3cb12010-07-13 20:03:04 +080074MODULE_DESCRIPTION("ARECA (ARC11xx/12xx/16xx/1880) SATA/SAS RAID Host Bus Adapter");
Erich Chen1c57e862006-07-12 08:59:32 -070075MODULE_LICENSE("Dual BSD/GPL");
76MODULE_VERSION(ARCMSR_DRIVER_VERSION);
Nick Chengcdd3cb12010-07-13 20:03:04 +080077static int sleeptime = 10;
78static int retrycount = 30;
Nick Chengae52e7f2010-06-18 15:39:12 +080079wait_queue_head_t wait_q;
Nick Cheng1a4f5502007-09-13 17:26:40 +080080static int arcmsr_iop_message_xfer(struct AdapterControlBlock *acb,
81 struct scsi_cmnd *cmd);
82static int arcmsr_iop_confirm(struct AdapterControlBlock *acb);
Erich Chen1c57e862006-07-12 08:59:32 -070083static int arcmsr_abort(struct scsi_cmnd *);
84static int arcmsr_bus_reset(struct scsi_cmnd *);
85static int arcmsr_bios_param(struct scsi_device *sdev,
Nick Cheng1a4f5502007-09-13 17:26:40 +080086 struct block_device *bdev, sector_t capacity, int *info);
87static int arcmsr_queue_command(struct scsi_cmnd *cmd,
88 void (*done) (struct scsi_cmnd *));
Erich Chen1c57e862006-07-12 08:59:32 -070089static int arcmsr_probe(struct pci_dev *pdev,
90 const struct pci_device_id *id);
91static void arcmsr_remove(struct pci_dev *pdev);
92static void arcmsr_shutdown(struct pci_dev *pdev);
93static void arcmsr_iop_init(struct AdapterControlBlock *acb);
94static void arcmsr_free_ccb_pool(struct AdapterControlBlock *acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +080095static u32 arcmsr_disable_outbound_ints(struct AdapterControlBlock *acb);
Erich Chen1c57e862006-07-12 08:59:32 -070096static void arcmsr_stop_adapter_bgrb(struct AdapterControlBlock *acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +080097static void arcmsr_flush_hba_cache(struct AdapterControlBlock *acb);
98static void arcmsr_flush_hbb_cache(struct AdapterControlBlock *acb);
Nick Cheng36b83de2010-05-17 11:22:42 +080099static void arcmsr_request_device_map(unsigned long pacb);
100static void arcmsr_request_hba_device_map(struct AdapterControlBlock *acb);
101static void arcmsr_request_hbb_device_map(struct AdapterControlBlock *acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800102static void arcmsr_request_hbc_device_map(struct AdapterControlBlock *acb);
Nick Cheng36b83de2010-05-17 11:22:42 +0800103static void arcmsr_message_isr_bh_fn(struct work_struct *work);
Nick Chengae52e7f2010-06-18 15:39:12 +0800104static bool arcmsr_get_firmware_spec(struct AdapterControlBlock *acb);
Nick Cheng36b83de2010-05-17 11:22:42 +0800105static void arcmsr_start_adapter_bgrb(struct AdapterControlBlock *acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800106static void arcmsr_hbc_message_isr(struct AdapterControlBlock *pACB);
107static void arcmsr_hardware_reset(struct AdapterControlBlock *acb);
Erich Chen1c57e862006-07-12 08:59:32 -0700108static const char *arcmsr_info(struct Scsi_Host *);
109static irqreturn_t arcmsr_interrupt(struct AdapterControlBlock *acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800110static int arcmsr_adjust_disk_queue_depth(struct scsi_device *sdev,
Mike Christiee881a172009-10-15 17:46:39 -0700111 int queue_depth, int reason)
Erich Chen1c57e862006-07-12 08:59:32 -0700112{
Mike Christiee881a172009-10-15 17:46:39 -0700113 if (reason != SCSI_QDEPTH_DEFAULT)
114 return -EOPNOTSUPP;
115
Erich Chen1c57e862006-07-12 08:59:32 -0700116 if (queue_depth > ARCMSR_MAX_CMD_PERLUN)
117 queue_depth = ARCMSR_MAX_CMD_PERLUN;
118 scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, queue_depth);
119 return queue_depth;
120}
121
122static struct scsi_host_template arcmsr_scsi_host_template = {
123 .module = THIS_MODULE,
Nick Chengcdd3cb12010-07-13 20:03:04 +0800124 .name = "ARCMSR ARECA SATA/SAS RAID Controller"
125 ARCMSR_DRIVER_VERSION,
Erich Chen1c57e862006-07-12 08:59:32 -0700126 .info = arcmsr_info,
127 .queuecommand = arcmsr_queue_command,
Nick Chengcdd3cb12010-07-13 20:03:04 +0800128 .eh_abort_handler = arcmsr_abort,
Erich Chen1c57e862006-07-12 08:59:32 -0700129 .eh_bus_reset_handler = arcmsr_bus_reset,
130 .bios_param = arcmsr_bios_param,
131 .change_queue_depth = arcmsr_adjust_disk_queue_depth,
Nick Chengae52e7f2010-06-18 15:39:12 +0800132 .can_queue = ARCMSR_MAX_FREECCB_NUM,
Nick Chengcdd3cb12010-07-13 20:03:04 +0800133 .this_id = ARCMSR_SCSI_INITIATOR_ID,
134 .sg_tablesize = ARCMSR_DEFAULT_SG_ENTRIES,
135 .max_sectors = ARCMSR_MAX_XFER_SECTORS_C,
Erich Chen1c57e862006-07-12 08:59:32 -0700136 .cmd_per_lun = ARCMSR_MAX_CMD_PERLUN,
137 .use_clustering = ENABLE_CLUSTERING,
138 .shost_attrs = arcmsr_host_attrs,
139};
Erich Chen1c57e862006-07-12 08:59:32 -0700140static struct pci_device_id arcmsr_device_id_table[] = {
141 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1110)},
142 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1120)},
143 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1130)},
144 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1160)},
145 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1170)},
Nick Cheng1a4f5502007-09-13 17:26:40 +0800146 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1200)},
147 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1201)},
148 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1202)},
Erich Chen1c57e862006-07-12 08:59:32 -0700149 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1210)},
150 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1220)},
151 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1230)},
152 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1260)},
153 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1270)},
154 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1280)},
155 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1380)},
156 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1381)},
157 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1680)},
158 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1681)},
Nick Chengae52e7f2010-06-18 15:39:12 +0800159 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1880)},
Erich Chen1c57e862006-07-12 08:59:32 -0700160 {0, 0}, /* Terminating entry */
161};
162MODULE_DEVICE_TABLE(pci, arcmsr_device_id_table);
163static struct pci_driver arcmsr_pci_driver = {
164 .name = "arcmsr",
Nick Chengcdd3cb12010-07-13 20:03:04 +0800165 .id_table = arcmsr_device_id_table,
Erich Chen1c57e862006-07-12 08:59:32 -0700166 .probe = arcmsr_probe,
167 .remove = arcmsr_remove,
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +0800168 .shutdown = arcmsr_shutdown,
Erich Chen1c57e862006-07-12 08:59:32 -0700169};
Nick Chengcdd3cb12010-07-13 20:03:04 +0800170/*
171****************************************************************************
172****************************************************************************
173*/
174int arcmsr_sleep_for_bus_reset(struct scsi_cmnd *cmd)
175{
176 struct Scsi_Host *shost = NULL;
177 int i, isleep;
178 shost = cmd->device->host;
179 isleep = sleeptime / 10;
180 if (isleep > 0) {
181 for (i = 0; i < isleep; i++) {
182 msleep(10000);
183 }
184 }
Erich Chen1c57e862006-07-12 08:59:32 -0700185
Nick Chengcdd3cb12010-07-13 20:03:04 +0800186 isleep = sleeptime % 10;
187 if (isleep > 0) {
188 msleep(isleep*1000);
189 }
190 printk(KERN_NOTICE "wake-up\n");
191 return 0;
192}
193
194static void arcmsr_free_hbb_mu(struct AdapterControlBlock *acb)
Nick Chengae52e7f2010-06-18 15:39:12 +0800195{
196 switch (acb->adapter_type) {
197 case ACB_ADAPTER_TYPE_A:
Nick Chengcdd3cb12010-07-13 20:03:04 +0800198 case ACB_ADAPTER_TYPE_C:
Nick Chengae52e7f2010-06-18 15:39:12 +0800199 break;
200 case ACB_ADAPTER_TYPE_B:{
Nick Chengcdd3cb12010-07-13 20:03:04 +0800201 dma_free_coherent(&acb->pdev->dev,
202 sizeof(struct MessageUnit_B),
203 acb->pmuB, acb->dma_coherent_handle_hbb_mu);
Nick Chengae52e7f2010-06-18 15:39:12 +0800204 }
205 }
206}
207
208static bool arcmsr_remap_pciregion(struct AdapterControlBlock *acb)
209{
210 struct pci_dev *pdev = acb->pdev;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800211 switch (acb->adapter_type){
Nick Chengae52e7f2010-06-18 15:39:12 +0800212 case ACB_ADAPTER_TYPE_A:{
Nick Chengcdd3cb12010-07-13 20:03:04 +0800213 acb->pmuA = ioremap(pci_resource_start(pdev,0), pci_resource_len(pdev,0));
Nick Chengae52e7f2010-06-18 15:39:12 +0800214 if (!acb->pmuA) {
215 printk(KERN_NOTICE "arcmsr%d: memory mapping region fail \n", acb->host->host_no);
216 return false;
217 }
218 break;
219 }
220 case ACB_ADAPTER_TYPE_B:{
221 void __iomem *mem_base0, *mem_base1;
222 mem_base0 = ioremap(pci_resource_start(pdev, 0), pci_resource_len(pdev, 0));
223 if (!mem_base0) {
224 printk(KERN_NOTICE "arcmsr%d: memory mapping region fail \n", acb->host->host_no);
225 return false;
226 }
227 mem_base1 = ioremap(pci_resource_start(pdev, 2), pci_resource_len(pdev, 2));
228 if (!mem_base1) {
229 iounmap(mem_base0);
230 printk(KERN_NOTICE "arcmsr%d: memory mapping region fail \n", acb->host->host_no);
231 return false;
232 }
233 acb->mem_base0 = mem_base0;
234 acb->mem_base1 = mem_base1;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800235 break;
236 }
237 case ACB_ADAPTER_TYPE_C:{
238 acb->pmuC = ioremap_nocache(pci_resource_start(pdev, 1), pci_resource_len(pdev, 1));
239 if (!acb->pmuC) {
240 printk(KERN_NOTICE "arcmsr%d: memory mapping region fail \n", acb->host->host_no);
241 return false;
242 }
243 if (readl(&acb->pmuC->outbound_doorbell) & ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE) {
244 writel(ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE_DOORBELL_CLEAR, &acb->pmuC->outbound_doorbell_clear);/*clear interrupt*/
245 return true;
246 }
247 break;
Nick Chengae52e7f2010-06-18 15:39:12 +0800248 }
249 }
250 return true;
251}
252
253static void arcmsr_unmap_pciregion(struct AdapterControlBlock *acb)
254{
255 switch (acb->adapter_type) {
Nick Chengcdd3cb12010-07-13 20:03:04 +0800256 case ACB_ADAPTER_TYPE_A:{
257 iounmap(acb->pmuA);
258 }
259 break;
260 case ACB_ADAPTER_TYPE_B:{
261 iounmap(acb->mem_base0);
262 iounmap(acb->mem_base1);
263 }
264
265 break;
266 case ACB_ADAPTER_TYPE_C:{
267 iounmap(acb->pmuC);
268 }
Nick Chengae52e7f2010-06-18 15:39:12 +0800269 }
270}
271
David Howells7d12e782006-10-05 14:55:46 +0100272static irqreturn_t arcmsr_do_interrupt(int irq, void *dev_id)
Erich Chen1c57e862006-07-12 08:59:32 -0700273{
274 irqreturn_t handle_state;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800275 struct AdapterControlBlock *acb = dev_id;
Erich Chen1c57e862006-07-12 08:59:32 -0700276
Erich Chen1c57e862006-07-12 08:59:32 -0700277 handle_state = arcmsr_interrupt(acb);
Erich Chen1c57e862006-07-12 08:59:32 -0700278 return handle_state;
279}
280
281static int arcmsr_bios_param(struct scsi_device *sdev,
282 struct block_device *bdev, sector_t capacity, int *geom)
283{
284 int ret, heads, sectors, cylinders, total_capacity;
285 unsigned char *buffer;/* return copy of block device's partition table */
286
287 buffer = scsi_bios_ptable(bdev);
288 if (buffer) {
289 ret = scsi_partsize(buffer, capacity, &geom[2], &geom[0], &geom[1]);
290 kfree(buffer);
291 if (ret != -1)
292 return ret;
293 }
294 total_capacity = capacity;
295 heads = 64;
296 sectors = 32;
297 cylinders = total_capacity / (heads * sectors);
298 if (cylinders > 1024) {
299 heads = 255;
300 sectors = 63;
301 cylinders = total_capacity / (heads * sectors);
302 }
303 geom[0] = heads;
304 geom[1] = sectors;
305 geom[2] = cylinders;
306 return 0;
307}
308
Nick Cheng1a4f5502007-09-13 17:26:40 +0800309static void arcmsr_define_adapter_type(struct AdapterControlBlock *acb)
Erich Chen1c57e862006-07-12 08:59:32 -0700310{
311 struct pci_dev *pdev = acb->pdev;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800312 u16 dev_id;
313 pci_read_config_word(pdev, PCI_DEVICE_ID, &dev_id);
Nick Chengae52e7f2010-06-18 15:39:12 +0800314 acb->dev_id = dev_id;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800315 switch (dev_id) {
Nick Chengcdd3cb12010-07-13 20:03:04 +0800316 case 0x1880: {
317 acb->adapter_type = ACB_ADAPTER_TYPE_C;
318 }
319 break;
320 case 0x1201: {
Nick Cheng1a4f5502007-09-13 17:26:40 +0800321 acb->adapter_type = ACB_ADAPTER_TYPE_B;
322 }
323 break;
Erich Chen1c57e862006-07-12 08:59:32 -0700324
Nick Chengcdd3cb12010-07-13 20:03:04 +0800325 default: acb->adapter_type = ACB_ADAPTER_TYPE_A;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800326 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800327}
Nick Cheng1a4f5502007-09-13 17:26:40 +0800328
Nick Chengae52e7f2010-06-18 15:39:12 +0800329static uint8_t arcmsr_hba_wait_msgint_ready(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +0800330{
Nick Chengae52e7f2010-06-18 15:39:12 +0800331 struct MessageUnit_A __iomem *reg = acb->pmuA;
332 uint32_t Index;
333 uint8_t Retries = 0x00;
Nick Chengae52e7f2010-06-18 15:39:12 +0800334 do {
335 for (Index = 0; Index < 100; Index++) {
336 if (readl(&reg->outbound_intstatus) &
337 ARCMSR_MU_OUTBOUND_MESSAGE0_INT) {
338 writel(ARCMSR_MU_OUTBOUND_MESSAGE0_INT,
339 &reg->outbound_intstatus);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800340 return true;
Nick Chengae52e7f2010-06-18 15:39:12 +0800341 }
342 msleep(10);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800343 }/*max 1 seconds*/
Nick Chengae52e7f2010-06-18 15:39:12 +0800344
345 } while (Retries++ < 20);/*max 20 sec*/
Nick Chengcdd3cb12010-07-13 20:03:04 +0800346 return false;
Nick Chengae52e7f2010-06-18 15:39:12 +0800347}
348
349static uint8_t arcmsr_hbb_wait_msgint_ready(struct AdapterControlBlock *acb)
350{
351 struct MessageUnit_B *reg = acb->pmuB;
352 uint32_t Index;
353 uint8_t Retries = 0x00;
Nick Chengae52e7f2010-06-18 15:39:12 +0800354 do {
355 for (Index = 0; Index < 100; Index++) {
356 if (readl(reg->iop2drv_doorbell)
357 & ARCMSR_IOP2DRV_MESSAGE_CMD_DONE) {
358 writel(ARCMSR_MESSAGE_INT_CLEAR_PATTERN
359 , reg->iop2drv_doorbell);
360 writel(ARCMSR_DRV2IOP_END_OF_INTERRUPT, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800361 return true;
Nick Chengae52e7f2010-06-18 15:39:12 +0800362 }
363 msleep(10);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800364 }/*max 1 seconds*/
Nick Chengae52e7f2010-06-18 15:39:12 +0800365
366 } while (Retries++ < 20);/*max 20 sec*/
Nick Chengcdd3cb12010-07-13 20:03:04 +0800367 return false;
Nick Chengae52e7f2010-06-18 15:39:12 +0800368}
369
Nick Chengcdd3cb12010-07-13 20:03:04 +0800370static uint8_t arcmsr_hbc_wait_msgint_ready(struct AdapterControlBlock *pACB)
371{
372 struct MessageUnit_C *phbcmu = (struct MessageUnit_C *)pACB->pmuC;
373 unsigned char Retries = 0x00;
374 uint32_t Index;
375 do {
376 for (Index = 0; Index < 100; Index++) {
377 if (readl(&phbcmu->outbound_doorbell) & ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE) {
378 writel(ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE_DOORBELL_CLEAR, &phbcmu->outbound_doorbell_clear);/*clear interrupt*/
379 return true;
380 }
381 /* one us delay */
382 msleep(10);
383 } /*max 1 seconds*/
384 } while (Retries++ < 20); /*max 20 sec*/
385 return false;
386}
Nick Chengae52e7f2010-06-18 15:39:12 +0800387static void arcmsr_flush_hba_cache(struct AdapterControlBlock *acb)
388{
389 struct MessageUnit_A __iomem *reg = acb->pmuA;
390 int retry_count = 30;
Nick Chengae52e7f2010-06-18 15:39:12 +0800391 writel(ARCMSR_INBOUND_MESG0_FLUSH_CACHE, &reg->inbound_msgaddr0);
392 do {
Nick Chengcdd3cb12010-07-13 20:03:04 +0800393 if (arcmsr_hba_wait_msgint_ready(acb))
Nick Chengae52e7f2010-06-18 15:39:12 +0800394 break;
395 else {
396 retry_count--;
397 printk(KERN_NOTICE "arcmsr%d: wait 'flush adapter cache' \
398 timeout, retry count down = %d \n", acb->host->host_no, retry_count);
399 }
400 } while (retry_count != 0);
401}
402
403static void arcmsr_flush_hbb_cache(struct AdapterControlBlock *acb)
404{
405 struct MessageUnit_B *reg = acb->pmuB;
406 int retry_count = 30;
Nick Chengae52e7f2010-06-18 15:39:12 +0800407 writel(ARCMSR_MESSAGE_FLUSH_CACHE, reg->drv2iop_doorbell);
408 do {
Nick Chengcdd3cb12010-07-13 20:03:04 +0800409 if (arcmsr_hbb_wait_msgint_ready(acb))
Nick Chengae52e7f2010-06-18 15:39:12 +0800410 break;
411 else {
412 retry_count--;
413 printk(KERN_NOTICE "arcmsr%d: wait 'flush adapter cache' \
414 timeout,retry count down = %d \n", acb->host->host_no, retry_count);
415 }
416 } while (retry_count != 0);
417}
418
Nick Chengcdd3cb12010-07-13 20:03:04 +0800419static void arcmsr_flush_hbc_cache(struct AdapterControlBlock *pACB)
420{
421 struct MessageUnit_C *reg = (struct MessageUnit_C *)pACB->pmuC;
422 int retry_count = 30;/* enlarge wait flush adapter cache time: 10 minute */
423 writel(ARCMSR_INBOUND_MESG0_FLUSH_CACHE, &reg->inbound_msgaddr0);
424 writel(ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE, &reg->inbound_doorbell);
425 do {
426 if (arcmsr_hbc_wait_msgint_ready(pACB)) {
427 break;
428 } else {
429 retry_count--;
430 printk(KERN_NOTICE "arcmsr%d: wait 'flush adapter cache' \
431 timeout,retry count down = %d \n", pACB->host->host_no, retry_count);
432 }
433 } while (retry_count != 0);
434 return;
435}
Nick Chengae52e7f2010-06-18 15:39:12 +0800436static void arcmsr_flush_adapter_cache(struct AdapterControlBlock *acb)
437{
Nick Cheng1a4f5502007-09-13 17:26:40 +0800438 switch (acb->adapter_type) {
439
440 case ACB_ADAPTER_TYPE_A: {
Nick Chengae52e7f2010-06-18 15:39:12 +0800441 arcmsr_flush_hba_cache(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800442 }
443 break;
444
445 case ACB_ADAPTER_TYPE_B: {
Nick Chengae52e7f2010-06-18 15:39:12 +0800446 arcmsr_flush_hbb_cache(acb);
447 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800448 break;
449 case ACB_ADAPTER_TYPE_C: {
450 arcmsr_flush_hbc_cache(acb);
451 }
Nick Chengae52e7f2010-06-18 15:39:12 +0800452 }
453}
Nick Cheng1a4f5502007-09-13 17:26:40 +0800454
Nick Chengae52e7f2010-06-18 15:39:12 +0800455static int arcmsr_alloc_ccb_pool(struct AdapterControlBlock *acb)
456{
Nick Chengcdd3cb12010-07-13 20:03:04 +0800457 struct pci_dev *pdev = acb->pdev;
458 void *dma_coherent;
459 dma_addr_t dma_coherent_handle;
460 struct CommandControlBlock *ccb_tmp;
461 int i = 0, j = 0;
462 dma_addr_t cdb_phyaddr;
463 unsigned long roundup_ccbsize = 0, offset;
464 unsigned long max_xfer_len;
465 unsigned long max_sg_entrys;
466 uint32_t firm_config_version;
467 for (i = 0; i < ARCMSR_MAX_TARGETID; i++)
468 for (j = 0; j < ARCMSR_MAX_TARGETLUN; j++)
469 acb->devstate[i][j] = ARECA_RAID_GONE;
Nick Chengae52e7f2010-06-18 15:39:12 +0800470
Nick Chengcdd3cb12010-07-13 20:03:04 +0800471 max_xfer_len = ARCMSR_MAX_XFER_LEN;
472 max_sg_entrys = ARCMSR_DEFAULT_SG_ENTRIES;
473 firm_config_version = acb->firm_cfg_version;
474 if((firm_config_version & 0xFF) >= 3){
475 max_xfer_len = (ARCMSR_CDB_SG_PAGE_LENGTH << ((firm_config_version >> 8) & 0xFF)) * 1024;/* max 4M byte */
476 max_sg_entrys = (max_xfer_len/4096);
477 }
478 acb->host->max_sectors = max_xfer_len/512;
479 acb->host->sg_tablesize = max_sg_entrys;
480 roundup_ccbsize = roundup(sizeof(struct CommandControlBlock) + (max_sg_entrys - 1) * sizeof(struct SG64ENTRY), 32);
481 acb->uncache_size = roundup_ccbsize * ARCMSR_MAX_FREECCB_NUM + 32;
482 dma_coherent = dma_alloc_coherent(&pdev->dev, acb->uncache_size, &dma_coherent_handle, GFP_KERNEL);
483 if(!dma_coherent){
484 printk(KERN_NOTICE "arcmsr%d: dma_alloc_coherent got error \n", acb->host->host_no);
485 return -ENOMEM;
486 }
487 acb->dma_coherent = dma_coherent;
488 acb->dma_coherent_handle = dma_coherent_handle;
489 memset(dma_coherent, 0, acb->uncache_size);
490 offset = roundup((unsigned long)dma_coherent, 32) - (unsigned long)dma_coherent;
491 dma_coherent_handle = dma_coherent_handle + offset;
492 dma_coherent = (struct CommandControlBlock *)dma_coherent + offset;
493 ccb_tmp = dma_coherent;
494 acb->vir2phy_offset = (unsigned long)dma_coherent - (unsigned long)dma_coherent_handle;
495 for(i = 0; i < ARCMSR_MAX_FREECCB_NUM; i++){
496 cdb_phyaddr = dma_coherent_handle + offsetof(struct CommandControlBlock, arcmsr_cdb);
497 ccb_tmp->cdb_phyaddr_pattern = ((acb->adapter_type == ACB_ADAPTER_TYPE_C) ? cdb_phyaddr : (cdb_phyaddr >> 5));
498 acb->pccb_pool[i] = ccb_tmp;
499 ccb_tmp->acb = acb;
500 INIT_LIST_HEAD(&ccb_tmp->list);
501 list_add_tail(&ccb_tmp->list, &acb->ccb_free_list);
502 ccb_tmp = (struct CommandControlBlock *)((unsigned long)ccb_tmp + roundup_ccbsize);
503 dma_coherent_handle = dma_coherent_handle + roundup_ccbsize;
Erich Chen1c57e862006-07-12 08:59:32 -0700504 }
Erich Chen1c57e862006-07-12 08:59:32 -0700505 return 0;
506}
Nick Cheng36b83de2010-05-17 11:22:42 +0800507
Nick Chengcdd3cb12010-07-13 20:03:04 +0800508static void arcmsr_message_isr_bh_fn(struct work_struct *work)
509{
510 struct AdapterControlBlock *acb = container_of(work,struct AdapterControlBlock, arcmsr_do_message_isr_bh);
Nick Cheng36b83de2010-05-17 11:22:42 +0800511 switch (acb->adapter_type) {
512 case ACB_ADAPTER_TYPE_A: {
513
514 struct MessageUnit_A __iomem *reg = acb->pmuA;
515 char *acb_dev_map = (char *)acb->device_map;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800516 uint32_t __iomem *signature = (uint32_t __iomem*) (&reg->message_rwbuffer[0]);
517 char __iomem *devicemap = (char __iomem*) (&reg->message_rwbuffer[21]);
Nick Cheng36b83de2010-05-17 11:22:42 +0800518 int target, lun;
519 struct scsi_device *psdev;
520 char diff;
521
522 atomic_inc(&acb->rq_map_token);
523 if (readl(signature) == ARCMSR_SIGNATURE_GET_CONFIG) {
Nick Chengcdd3cb12010-07-13 20:03:04 +0800524 for(target = 0; target < ARCMSR_MAX_TARGETID -1; target++) {
Nick Cheng36b83de2010-05-17 11:22:42 +0800525 diff = (*acb_dev_map)^readb(devicemap);
526 if (diff != 0) {
527 char temp;
528 *acb_dev_map = readb(devicemap);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800529 temp =*acb_dev_map;
530 for(lun = 0; lun < ARCMSR_MAX_TARGETLUN; lun++) {
531 if((temp & 0x01)==1 && (diff & 0x01) == 1) {
Nick Cheng36b83de2010-05-17 11:22:42 +0800532 scsi_add_device(acb->host, 0, target, lun);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800533 }else if((temp & 0x01) == 0 && (diff & 0x01) == 1) {
Nick Cheng36b83de2010-05-17 11:22:42 +0800534 psdev = scsi_device_lookup(acb->host, 0, target, lun);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800535 if (psdev != NULL ) {
Nick Cheng36b83de2010-05-17 11:22:42 +0800536 scsi_remove_device(psdev);
537 scsi_device_put(psdev);
538 }
539 }
540 temp >>= 1;
541 diff >>= 1;
542 }
543 }
544 devicemap++;
545 acb_dev_map++;
546 }
547 }
548 break;
549 }
550
551 case ACB_ADAPTER_TYPE_B: {
552 struct MessageUnit_B *reg = acb->pmuB;
553 char *acb_dev_map = (char *)acb->device_map;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800554 uint32_t __iomem *signature = (uint32_t __iomem*)(&reg->message_rwbuffer[0]);
555 char __iomem *devicemap = (char __iomem*)(&reg->message_rwbuffer[21]);
556 int target, lun;
557 struct scsi_device *psdev;
558 char diff;
559
560 atomic_inc(&acb->rq_map_token);
561 if (readl(signature) == ARCMSR_SIGNATURE_GET_CONFIG) {
562 for(target = 0; target < ARCMSR_MAX_TARGETID -1; target++) {
563 diff = (*acb_dev_map)^readb(devicemap);
564 if (diff != 0) {
565 char temp;
566 *acb_dev_map = readb(devicemap);
567 temp =*acb_dev_map;
568 for(lun = 0; lun < ARCMSR_MAX_TARGETLUN; lun++) {
569 if((temp & 0x01)==1 && (diff & 0x01) == 1) {
570 scsi_add_device(acb->host, 0, target, lun);
571 }else if((temp & 0x01) == 0 && (diff & 0x01) == 1) {
572 psdev = scsi_device_lookup(acb->host, 0, target, lun);
573 if (psdev != NULL ) {
574 scsi_remove_device(psdev);
575 scsi_device_put(psdev);
576 }
577 }
578 temp >>= 1;
579 diff >>= 1;
580 }
581 }
582 devicemap++;
583 acb_dev_map++;
584 }
585 }
586 }
587 break;
588 case ACB_ADAPTER_TYPE_C: {
589 struct MessageUnit_C *reg = acb->pmuC;
590 char *acb_dev_map = (char *)acb->device_map;
591 uint32_t __iomem *signature = (uint32_t __iomem *)(&reg->msgcode_rwbuffer[0]);
592 char __iomem *devicemap = (char __iomem *)(&reg->msgcode_rwbuffer[21]);
Nick Cheng36b83de2010-05-17 11:22:42 +0800593 int target, lun;
594 struct scsi_device *psdev;
595 char diff;
596
597 atomic_inc(&acb->rq_map_token);
598 if (readl(signature) == ARCMSR_SIGNATURE_GET_CONFIG) {
599 for (target = 0; target < ARCMSR_MAX_TARGETID - 1; target++) {
600 diff = (*acb_dev_map)^readb(devicemap);
601 if (diff != 0) {
602 char temp;
603 *acb_dev_map = readb(devicemap);
604 temp = *acb_dev_map;
605 for (lun = 0; lun < ARCMSR_MAX_TARGETLUN; lun++) {
606 if ((temp & 0x01) == 1 && (diff & 0x01) == 1) {
607 scsi_add_device(acb->host, 0, target, lun);
608 } else if ((temp & 0x01) == 0 && (diff & 0x01) == 1) {
609 psdev = scsi_device_lookup(acb->host, 0, target, lun);
610 if (psdev != NULL) {
611 scsi_remove_device(psdev);
612 scsi_device_put(psdev);
613 }
614 }
615 temp >>= 1;
616 diff >>= 1;
617 }
618 }
619 devicemap++;
620 acb_dev_map++;
621 }
622 }
623 }
624 }
625}
Erich Chen1c57e862006-07-12 08:59:32 -0700626
Nick Chengae52e7f2010-06-18 15:39:12 +0800627static int arcmsr_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Erich Chen1c57e862006-07-12 08:59:32 -0700628{
629 struct Scsi_Host *host;
630 struct AdapterControlBlock *acb;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800631 uint8_t bus,dev_fun;
Erich Chen1c57e862006-07-12 08:59:32 -0700632 int error;
Erich Chen1c57e862006-07-12 08:59:32 -0700633 error = pci_enable_device(pdev);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800634 if(error){
Nick Chengae52e7f2010-06-18 15:39:12 +0800635 return -ENODEV;
Erich Chen1c57e862006-07-12 08:59:32 -0700636 }
Nick Chengae52e7f2010-06-18 15:39:12 +0800637 host = scsi_host_alloc(&arcmsr_scsi_host_template, sizeof(struct AdapterControlBlock));
Nick Chengcdd3cb12010-07-13 20:03:04 +0800638 if(!host){
639 goto pci_disable_dev;
Nick Chengae52e7f2010-06-18 15:39:12 +0800640 }
Yang Hongyang6a355282009-04-06 19:01:13 -0700641 error = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
Nick Chengcdd3cb12010-07-13 20:03:04 +0800642 if(error){
Yang Hongyang284901a2009-04-06 19:01:15 -0700643 error = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Nick Chengcdd3cb12010-07-13 20:03:04 +0800644 if(error){
Erich Chen1c57e862006-07-12 08:59:32 -0700645 printk(KERN_WARNING
646 "scsi%d: No suitable DMA mask available\n",
647 host->host_no);
Nick Chengae52e7f2010-06-18 15:39:12 +0800648 goto scsi_host_release;
Erich Chen1c57e862006-07-12 08:59:32 -0700649 }
650 }
Nick Chengae52e7f2010-06-18 15:39:12 +0800651 init_waitqueue_head(&wait_q);
Erich Chen1c57e862006-07-12 08:59:32 -0700652 bus = pdev->bus->number;
653 dev_fun = pdev->devfn;
Nick Chengae52e7f2010-06-18 15:39:12 +0800654 acb = (struct AdapterControlBlock *) host->hostdata;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800655 memset(acb,0,sizeof(struct AdapterControlBlock));
Erich Chen1c57e862006-07-12 08:59:32 -0700656 acb->pdev = pdev;
Nick Chengae52e7f2010-06-18 15:39:12 +0800657 acb->host = host;
Erich Chen1c57e862006-07-12 08:59:32 -0700658 host->max_lun = ARCMSR_MAX_TARGETLUN;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800659 host->max_id = ARCMSR_MAX_TARGETID; /*16:8*/
660 host->max_cmd_len = 16; /*this is issue of 64bit LBA ,over 2T byte*/
661 host->can_queue = ARCMSR_MAX_FREECCB_NUM; /* max simultaneous cmds */
662 host->cmd_per_lun = ARCMSR_MAX_CMD_PERLUN;
Erich Chen1c57e862006-07-12 08:59:32 -0700663 host->this_id = ARCMSR_SCSI_INITIATOR_ID;
664 host->unique_id = (bus << 8) | dev_fun;
Nick Chengae52e7f2010-06-18 15:39:12 +0800665 pci_set_drvdata(pdev, host);
666 pci_set_master(pdev);
Erich Chen1c57e862006-07-12 08:59:32 -0700667 error = pci_request_regions(pdev, "arcmsr");
Nick Chengcdd3cb12010-07-13 20:03:04 +0800668 if(error){
Nick Chengae52e7f2010-06-18 15:39:12 +0800669 goto scsi_host_release;
Erich Chen1c57e862006-07-12 08:59:32 -0700670 }
Nick Chengae52e7f2010-06-18 15:39:12 +0800671 spin_lock_init(&acb->eh_lock);
672 spin_lock_init(&acb->ccblist_lock);
Erich Chen1c57e862006-07-12 08:59:32 -0700673 acb->acb_flags |= (ACB_F_MESSAGE_WQBUFFER_CLEARED |
Nick Chengcdd3cb12010-07-13 20:03:04 +0800674 ACB_F_MESSAGE_RQBUFFER_CLEARED |
675 ACB_F_MESSAGE_WQBUFFER_READED);
Erich Chen1c57e862006-07-12 08:59:32 -0700676 acb->acb_flags &= ~ACB_F_SCSISTOPADAPTER;
677 INIT_LIST_HEAD(&acb->ccb_free_list);
Nick Chengae52e7f2010-06-18 15:39:12 +0800678 arcmsr_define_adapter_type(acb);
679 error = arcmsr_remap_pciregion(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800680 if(!error){
Nick Chengae52e7f2010-06-18 15:39:12 +0800681 goto pci_release_regs;
682 }
683 error = arcmsr_get_firmware_spec(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800684 if(!error){
Nick Chengae52e7f2010-06-18 15:39:12 +0800685 goto unmap_pci_region;
686 }
Erich Chen1c57e862006-07-12 08:59:32 -0700687 error = arcmsr_alloc_ccb_pool(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800688 if(error){
Nick Chengae52e7f2010-06-18 15:39:12 +0800689 goto free_hbb_mu;
690 }
Nick Cheng36b83de2010-05-17 11:22:42 +0800691 arcmsr_iop_init(acb);
Erich Chen1c57e862006-07-12 08:59:32 -0700692 error = scsi_add_host(host, &pdev->dev);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800693 if(error){
Nick Chengae52e7f2010-06-18 15:39:12 +0800694 goto RAID_controller_stop;
695 }
696 error = request_irq(pdev->irq, arcmsr_do_interrupt, IRQF_SHARED, "arcmsr", acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800697 if(error){
Nick Chengae52e7f2010-06-18 15:39:12 +0800698 goto scsi_host_remove;
699 }
700 host->irq = pdev->irq;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800701 scsi_scan_host(host);
Nick Chengae52e7f2010-06-18 15:39:12 +0800702 INIT_WORK(&acb->arcmsr_do_message_isr_bh, arcmsr_message_isr_bh_fn);
Nick Cheng36b83de2010-05-17 11:22:42 +0800703 atomic_set(&acb->rq_map_token, 16);
Nick Chengae52e7f2010-06-18 15:39:12 +0800704 atomic_set(&acb->ante_token_value, 16);
705 acb->fw_flag = FW_NORMAL;
Nick Cheng36b83de2010-05-17 11:22:42 +0800706 init_timer(&acb->eternal_timer);
Nick Chengae52e7f2010-06-18 15:39:12 +0800707 acb->eternal_timer.expires = jiffies + msecs_to_jiffies(6 * HZ);
Nick Cheng36b83de2010-05-17 11:22:42 +0800708 acb->eternal_timer.data = (unsigned long) acb;
709 acb->eternal_timer.function = &arcmsr_request_device_map;
710 add_timer(&acb->eternal_timer);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800711 if(arcmsr_alloc_sysfs_attr(acb))
Nick Chengae52e7f2010-06-18 15:39:12 +0800712 goto out_free_sysfs;
Erich Chen1c57e862006-07-12 08:59:32 -0700713 return 0;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800714out_free_sysfs:
Nick Chengae52e7f2010-06-18 15:39:12 +0800715scsi_host_remove:
716 scsi_remove_host(host);
717RAID_controller_stop:
718 arcmsr_stop_adapter_bgrb(acb);
719 arcmsr_flush_adapter_cache(acb);
Erich Chen1c57e862006-07-12 08:59:32 -0700720 arcmsr_free_ccb_pool(acb);
Nick Chengae52e7f2010-06-18 15:39:12 +0800721free_hbb_mu:
Nick Chengcdd3cb12010-07-13 20:03:04 +0800722 arcmsr_free_hbb_mu(acb);
Nick Chengae52e7f2010-06-18 15:39:12 +0800723unmap_pci_region:
724 arcmsr_unmap_pciregion(acb);
725pci_release_regs:
Erich Chen1c57e862006-07-12 08:59:32 -0700726 pci_release_regions(pdev);
Nick Chengae52e7f2010-06-18 15:39:12 +0800727scsi_host_release:
Erich Chen1c57e862006-07-12 08:59:32 -0700728 scsi_host_put(host);
Nick Chengae52e7f2010-06-18 15:39:12 +0800729pci_disable_dev:
Erich Chen1c57e862006-07-12 08:59:32 -0700730 pci_disable_device(pdev);
Nick Chengae52e7f2010-06-18 15:39:12 +0800731 return -ENODEV;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800732}
733
Nick Cheng36b83de2010-05-17 11:22:42 +0800734static uint8_t arcmsr_abort_hba_allcmd(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +0800735{
Al Viro80da1ad2007-10-29 05:08:28 +0000736 struct MessageUnit_A __iomem *reg = acb->pmuA;
Erich Chen1c57e862006-07-12 08:59:32 -0700737 writel(ARCMSR_INBOUND_MESG0_ABORT_CMD, &reg->inbound_msgaddr0);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800738 if (!arcmsr_hba_wait_msgint_ready(acb)) {
Erich Chen1c57e862006-07-12 08:59:32 -0700739 printk(KERN_NOTICE
740 "arcmsr%d: wait 'abort all outstanding command' timeout \n"
741 , acb->host->host_no);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800742 return false;
Nick Cheng36b83de2010-05-17 11:22:42 +0800743 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800744 return true;
Erich Chen1c57e862006-07-12 08:59:32 -0700745}
746
Nick Cheng36b83de2010-05-17 11:22:42 +0800747static uint8_t arcmsr_abort_hbb_allcmd(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +0800748{
Al Viro80da1ad2007-10-29 05:08:28 +0000749 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800750
Nick Chengae52e7f2010-06-18 15:39:12 +0800751 writel(ARCMSR_MESSAGE_ABORT_CMD, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800752 if (!arcmsr_hbb_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +0800753 printk(KERN_NOTICE
754 "arcmsr%d: wait 'abort all outstanding command' timeout \n"
755 , acb->host->host_no);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800756 return false;
Nick Cheng36b83de2010-05-17 11:22:42 +0800757 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800758 return true;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800759}
Nick Chengcdd3cb12010-07-13 20:03:04 +0800760static uint8_t arcmsr_abort_hbc_allcmd(struct AdapterControlBlock *pACB)
761{
762 struct MessageUnit_C *reg = (struct MessageUnit_C *)pACB->pmuC;
763 writel(ARCMSR_INBOUND_MESG0_ABORT_CMD, &reg->inbound_msgaddr0);
764 writel(ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE, &reg->inbound_doorbell);
765 if (!arcmsr_hbc_wait_msgint_ready(pACB)) {
766 printk(KERN_NOTICE
767 "arcmsr%d: wait 'abort all outstanding command' timeout \n"
768 , pACB->host->host_no);
769 return false;
770 }
771 return true;
772}
Nick Cheng36b83de2010-05-17 11:22:42 +0800773static uint8_t arcmsr_abort_allcmd(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +0800774{
Nick Cheng36b83de2010-05-17 11:22:42 +0800775 uint8_t rtnval = 0;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800776 switch (acb->adapter_type) {
777 case ACB_ADAPTER_TYPE_A: {
Nick Cheng36b83de2010-05-17 11:22:42 +0800778 rtnval = arcmsr_abort_hba_allcmd(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800779 }
780 break;
781
782 case ACB_ADAPTER_TYPE_B: {
Nick Cheng36b83de2010-05-17 11:22:42 +0800783 rtnval = arcmsr_abort_hbb_allcmd(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800784 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800785 break;
786
787 case ACB_ADAPTER_TYPE_C: {
788 rtnval = arcmsr_abort_hbc_allcmd(acb);
789 }
Nick Cheng1a4f5502007-09-13 17:26:40 +0800790 }
Nick Cheng36b83de2010-05-17 11:22:42 +0800791 return rtnval;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800792}
793
Nick Chengae52e7f2010-06-18 15:39:12 +0800794static bool arcmsr_hbb_enable_driver_mode(struct AdapterControlBlock *pacb)
795{
796 struct MessageUnit_B *reg = pacb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +0800797 writel(ARCMSR_MESSAGE_START_DRIVER_MODE, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800798 if (!arcmsr_hbb_wait_msgint_ready(pacb)) {
Nick Chengae52e7f2010-06-18 15:39:12 +0800799 printk(KERN_ERR "arcmsr%d: can't set driver mode. \n", pacb->host->host_no);
800 return false;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800801 }
802 return true;
Nick Chengae52e7f2010-06-18 15:39:12 +0800803}
804
Erich Chen1c57e862006-07-12 08:59:32 -0700805static void arcmsr_pci_unmap_dma(struct CommandControlBlock *ccb)
806{
Erich Chen1c57e862006-07-12 08:59:32 -0700807 struct scsi_cmnd *pcmd = ccb->pcmd;
808
FUJITA Tomonorideff2622007-05-14 19:25:56 +0900809 scsi_dma_unmap(pcmd);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800810}
Erich Chen1c57e862006-07-12 08:59:32 -0700811
Nick Chengae52e7f2010-06-18 15:39:12 +0800812static void arcmsr_ccb_complete(struct CommandControlBlock *ccb)
Erich Chen1c57e862006-07-12 08:59:32 -0700813{
814 struct AdapterControlBlock *acb = ccb->acb;
815 struct scsi_cmnd *pcmd = ccb->pcmd;
Nick Chengae52e7f2010-06-18 15:39:12 +0800816 unsigned long flags;
Nick Chengae52e7f2010-06-18 15:39:12 +0800817 atomic_dec(&acb->ccboutstandingcount);
Erich Chen1c57e862006-07-12 08:59:32 -0700818 arcmsr_pci_unmap_dma(ccb);
Erich Chen1c57e862006-07-12 08:59:32 -0700819 ccb->startdone = ARCMSR_CCB_DONE;
Nick Chengae52e7f2010-06-18 15:39:12 +0800820 spin_lock_irqsave(&acb->ccblist_lock, flags);
Erich Chen1c57e862006-07-12 08:59:32 -0700821 list_add_tail(&ccb->list, &acb->ccb_free_list);
Nick Chengae52e7f2010-06-18 15:39:12 +0800822 spin_unlock_irqrestore(&acb->ccblist_lock, flags);
Erich Chen1c57e862006-07-12 08:59:32 -0700823 pcmd->scsi_done(pcmd);
824}
825
Nick Cheng1a4f5502007-09-13 17:26:40 +0800826static void arcmsr_report_sense_info(struct CommandControlBlock *ccb)
827{
828
829 struct scsi_cmnd *pcmd = ccb->pcmd;
830 struct SENSE_DATA *sensebuffer = (struct SENSE_DATA *)pcmd->sense_buffer;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800831 pcmd->result = DID_OK << 16;
832 if (sensebuffer) {
833 int sense_data_length =
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +0900834 sizeof(struct SENSE_DATA) < SCSI_SENSE_BUFFERSIZE
835 ? sizeof(struct SENSE_DATA) : SCSI_SENSE_BUFFERSIZE;
836 memset(sensebuffer, 0, SCSI_SENSE_BUFFERSIZE);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800837 memcpy(sensebuffer, ccb->arcmsr_cdb.SenseData, sense_data_length);
838 sensebuffer->ErrorCode = SCSI_SENSE_CURRENT_ERRORS;
839 sensebuffer->Valid = 1;
840 }
841}
842
843static u32 arcmsr_disable_outbound_ints(struct AdapterControlBlock *acb)
844{
845 u32 orig_mask = 0;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800846 switch (acb->adapter_type) {
Nick Cheng1a4f5502007-09-13 17:26:40 +0800847 case ACB_ADAPTER_TYPE_A : {
Al Viro80da1ad2007-10-29 05:08:28 +0000848 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng36b83de2010-05-17 11:22:42 +0800849 orig_mask = readl(&reg->outbound_intmask);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800850 writel(orig_mask|ARCMSR_MU_OUTBOUND_ALL_INTMASKENABLE, \
851 &reg->outbound_intmask);
852 }
853 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800854 case ACB_ADAPTER_TYPE_B : {
Al Viro80da1ad2007-10-29 05:08:28 +0000855 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +0800856 orig_mask = readl(reg->iop2drv_doorbell_mask);
857 writel(0, reg->iop2drv_doorbell_mask);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800858 }
859 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800860 case ACB_ADAPTER_TYPE_C:{
861 struct MessageUnit_C *reg = (struct MessageUnit_C *)acb->pmuC;
862 /* disable all outbound interrupt */
863 orig_mask = readl(&reg->host_int_mask); /* disable outbound message0 int */
864 writel(orig_mask|ARCMSR_HBCMU_ALL_INTMASKENABLE, &reg->host_int_mask);
865 }
866 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800867 }
868 return orig_mask;
869}
870
Nick Chengcdd3cb12010-07-13 20:03:04 +0800871static void arcmsr_report_ccb_state(struct AdapterControlBlock *acb,
872 struct CommandControlBlock *ccb, bool error)
Nick Cheng1a4f5502007-09-13 17:26:40 +0800873{
Nick Cheng1a4f5502007-09-13 17:26:40 +0800874 uint8_t id, lun;
875 id = ccb->pcmd->device->id;
876 lun = ccb->pcmd->device->lun;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800877 if (!error) {
Nick Cheng1a4f5502007-09-13 17:26:40 +0800878 if (acb->devstate[id][lun] == ARECA_RAID_GONE)
879 acb->devstate[id][lun] = ARECA_RAID_GOOD;
880 ccb->pcmd->result = DID_OK << 16;
Nick Chengae52e7f2010-06-18 15:39:12 +0800881 arcmsr_ccb_complete(ccb);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800882 }else{
Nick Cheng1a4f5502007-09-13 17:26:40 +0800883 switch (ccb->arcmsr_cdb.DeviceStatus) {
884 case ARCMSR_DEV_SELECT_TIMEOUT: {
885 acb->devstate[id][lun] = ARECA_RAID_GONE;
886 ccb->pcmd->result = DID_NO_CONNECT << 16;
Nick Chengae52e7f2010-06-18 15:39:12 +0800887 arcmsr_ccb_complete(ccb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800888 }
889 break;
890
891 case ARCMSR_DEV_ABORTED:
892
893 case ARCMSR_DEV_INIT_FAIL: {
894 acb->devstate[id][lun] = ARECA_RAID_GONE;
895 ccb->pcmd->result = DID_BAD_TARGET << 16;
Nick Chengae52e7f2010-06-18 15:39:12 +0800896 arcmsr_ccb_complete(ccb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800897 }
898 break;
899
900 case ARCMSR_DEV_CHECK_CONDITION: {
901 acb->devstate[id][lun] = ARECA_RAID_GOOD;
902 arcmsr_report_sense_info(ccb);
Nick Chengae52e7f2010-06-18 15:39:12 +0800903 arcmsr_ccb_complete(ccb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800904 }
905 break;
906
907 default:
Nick Chengcdd3cb12010-07-13 20:03:04 +0800908 printk(KERN_NOTICE
909 "arcmsr%d: scsi id = %d lun = %d isr get command error done, \
910 but got unknown DeviceStatus = 0x%x \n"
911 , acb->host->host_no
912 , id
913 , lun
914 , ccb->arcmsr_cdb.DeviceStatus);
915 acb->devstate[id][lun] = ARECA_RAID_GONE;
916 ccb->pcmd->result = DID_NO_CONNECT << 16;
917 arcmsr_ccb_complete(ccb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800918 break;
919 }
920 }
921}
922
Nick Chengcdd3cb12010-07-13 20:03:04 +0800923static void arcmsr_drain_donequeue(struct AdapterControlBlock *acb, struct CommandControlBlock *pCCB, bool error)
Nick Cheng1a4f5502007-09-13 17:26:40 +0800924
925{
Nick Chengae52e7f2010-06-18 15:39:12 +0800926 int id, lun;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800927 if ((pCCB->acb != acb) || (pCCB->startdone != ARCMSR_CCB_START)) {
928 if (pCCB->startdone == ARCMSR_CCB_ABORTED) {
929 struct scsi_cmnd *abortcmd = pCCB->pcmd;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800930 if (abortcmd) {
Nick Chengae52e7f2010-06-18 15:39:12 +0800931 id = abortcmd->device->id;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800932 lun = abortcmd->device->lun;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800933 abortcmd->result |= DID_ABORT << 16;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800934 arcmsr_ccb_complete(pCCB);
935 printk(KERN_NOTICE "arcmsr%d: pCCB ='0x%p' isr got aborted command \n",
936 acb->host->host_no, pCCB);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800937 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800938 return;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800939 }
940 printk(KERN_NOTICE "arcmsr%d: isr get an illegal ccb command \
941 done acb = '0x%p'"
942 "ccb = '0x%p' ccbacb = '0x%p' startdone = 0x%x"
943 " ccboutstandingcount = %d \n"
944 , acb->host->host_no
945 , acb
Nick Chengcdd3cb12010-07-13 20:03:04 +0800946 , pCCB
947 , pCCB->acb
948 , pCCB->startdone
Nick Cheng1a4f5502007-09-13 17:26:40 +0800949 , atomic_read(&acb->ccboutstandingcount));
Nick Chengcdd3cb12010-07-13 20:03:04 +0800950 return;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800951 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800952 arcmsr_report_ccb_state(acb, pCCB, error);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800953}
954
955static void arcmsr_done4abort_postqueue(struct AdapterControlBlock *acb)
956{
957 int i = 0;
958 uint32_t flag_ccb;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800959 struct ARCMSR_CDB *pARCMSR_CDB;
960 bool error;
961 struct CommandControlBlock *pCCB;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800962 switch (acb->adapter_type) {
963
964 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +0000965 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800966 uint32_t outbound_intstatus;
Al Viro80da1ad2007-10-29 05:08:28 +0000967 outbound_intstatus = readl(&reg->outbound_intstatus) &
Nick Cheng1a4f5502007-09-13 17:26:40 +0800968 acb->outbound_int_enable;
969 /*clear and abort all outbound posted Q*/
970 writel(outbound_intstatus, &reg->outbound_intstatus);/*clear interrupt*/
Nick Chengcdd3cb12010-07-13 20:03:04 +0800971 while(((flag_ccb = readl(&reg->outbound_queueport)) != 0xFFFFFFFF)
Nick Cheng1a4f5502007-09-13 17:26:40 +0800972 && (i++ < ARCMSR_MAX_OUTSTANDING_CMD)) {
Nick Chengcdd3cb12010-07-13 20:03:04 +0800973 pARCMSR_CDB = (struct ARCMSR_CDB *)(acb->vir2phy_offset + (flag_ccb << 5));/*frame must be 32 bytes aligned*/
974 pCCB = container_of(pARCMSR_CDB, struct CommandControlBlock, arcmsr_cdb);
975 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE0) ? true : false;
976 arcmsr_drain_donequeue(acb, pCCB, error);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800977 }
978 }
979 break;
980
981 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +0000982 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800983 /*clear all outbound posted Q*/
Nick Chengcdd3cb12010-07-13 20:03:04 +0800984 writel(ARCMSR_DOORBELL_INT_CLEAR_PATTERN, &reg->iop2drv_doorbell); /* clear doorbell interrupt */
Nick Cheng1a4f5502007-09-13 17:26:40 +0800985 for (i = 0; i < ARCMSR_MAX_HBB_POSTQUEUE; i++) {
986 if ((flag_ccb = readl(&reg->done_qbuffer[i])) != 0) {
987 writel(0, &reg->done_qbuffer[i]);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800988 pARCMSR_CDB = (struct ARCMSR_CDB *)(acb->vir2phy_offset+(flag_ccb << 5));/*frame must be 32 bytes aligned*/
989 pCCB = container_of(pARCMSR_CDB, struct CommandControlBlock, arcmsr_cdb);
990 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE0) ? true : false;
991 arcmsr_drain_donequeue(acb, pCCB, error);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800992 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800993 reg->post_qbuffer[i] = 0;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800994 }
995 reg->doneq_index = 0;
996 reg->postq_index = 0;
997 }
998 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800999 case ACB_ADAPTER_TYPE_C: {
1000 struct MessageUnit_C *reg = acb->pmuC;
1001 struct ARCMSR_CDB *pARCMSR_CDB;
1002 uint32_t flag_ccb, ccb_cdb_phy;
1003 bool error;
1004 struct CommandControlBlock *pCCB;
1005 while ((readl(&reg->host_int_status) & ARCMSR_HBCMU_OUTBOUND_POSTQUEUE_ISR) && (i++ < ARCMSR_MAX_OUTSTANDING_CMD)) {
1006 /*need to do*/
1007 flag_ccb = readl(&reg->outbound_queueport_low);
1008 ccb_cdb_phy = (flag_ccb & 0xFFFFFFF0);
1009 pARCMSR_CDB = (struct ARCMSR_CDB *)(acb->vir2phy_offset+ccb_cdb_phy);/*frame must be 32 bytes aligned*/
1010 pCCB = container_of(pARCMSR_CDB, struct CommandControlBlock, arcmsr_cdb);
1011 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE1) ? true : false;
1012 arcmsr_drain_donequeue(acb, pCCB, error);
1013 }
1014 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001015 }
1016}
Erich Chen1c57e862006-07-12 08:59:32 -07001017static void arcmsr_remove(struct pci_dev *pdev)
1018{
1019 struct Scsi_Host *host = pci_get_drvdata(pdev);
1020 struct AdapterControlBlock *acb =
1021 (struct AdapterControlBlock *) host->hostdata;
Erich Chen1c57e862006-07-12 08:59:32 -07001022 int poll_count = 0;
Erich Chen1c57e862006-07-12 08:59:32 -07001023 arcmsr_free_sysfs_attr(acb);
1024 scsi_remove_host(host);
Nick Cheng36b83de2010-05-17 11:22:42 +08001025 flush_scheduled_work();
1026 del_timer_sync(&acb->eternal_timer);
1027 arcmsr_disable_outbound_ints(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001028 arcmsr_stop_adapter_bgrb(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001029 arcmsr_flush_adapter_cache(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001030 acb->acb_flags |= ACB_F_SCSISTOPADAPTER;
1031 acb->acb_flags &= ~ACB_F_IOP_INITED;
1032
Nick Chengcdd3cb12010-07-13 20:03:04 +08001033 for (poll_count = 0; poll_count < ARCMSR_MAX_OUTSTANDING_CMD; poll_count++){
Erich Chen1c57e862006-07-12 08:59:32 -07001034 if (!atomic_read(&acb->ccboutstandingcount))
1035 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001036 arcmsr_interrupt(acb);/* FIXME: need spinlock */
Erich Chen1c57e862006-07-12 08:59:32 -07001037 msleep(25);
1038 }
1039
1040 if (atomic_read(&acb->ccboutstandingcount)) {
1041 int i;
1042
1043 arcmsr_abort_allcmd(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001044 arcmsr_done4abort_postqueue(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001045 for (i = 0; i < ARCMSR_MAX_FREECCB_NUM; i++) {
1046 struct CommandControlBlock *ccb = acb->pccb_pool[i];
1047 if (ccb->startdone == ARCMSR_CCB_START) {
1048 ccb->startdone = ARCMSR_CCB_ABORTED;
1049 ccb->pcmd->result = DID_ABORT << 16;
Nick Chengae52e7f2010-06-18 15:39:12 +08001050 arcmsr_ccb_complete(ccb);
Erich Chen1c57e862006-07-12 08:59:32 -07001051 }
1052 }
1053 }
Erich Chen1c57e862006-07-12 08:59:32 -07001054 free_irq(pdev->irq, acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001055 arcmsr_free_ccb_pool(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001056 arcmsr_free_hbb_mu(acb);
1057 arcmsr_unmap_pciregion(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001058 pci_release_regions(pdev);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001059 scsi_host_put(host);
Erich Chen1c57e862006-07-12 08:59:32 -07001060 pci_disable_device(pdev);
1061 pci_set_drvdata(pdev, NULL);
1062}
1063
1064static void arcmsr_shutdown(struct pci_dev *pdev)
1065{
1066 struct Scsi_Host *host = pci_get_drvdata(pdev);
1067 struct AdapterControlBlock *acb =
1068 (struct AdapterControlBlock *)host->hostdata;
Nick Cheng36b83de2010-05-17 11:22:42 +08001069 del_timer_sync(&acb->eternal_timer);
1070 arcmsr_disable_outbound_ints(acb);
1071 flush_scheduled_work();
Erich Chen1c57e862006-07-12 08:59:32 -07001072 arcmsr_stop_adapter_bgrb(acb);
1073 arcmsr_flush_adapter_cache(acb);
1074}
1075
1076static int arcmsr_module_init(void)
1077{
1078 int error = 0;
Erich Chen1c57e862006-07-12 08:59:32 -07001079 error = pci_register_driver(&arcmsr_pci_driver);
1080 return error;
1081}
1082
1083static void arcmsr_module_exit(void)
1084{
1085 pci_unregister_driver(&arcmsr_pci_driver);
1086}
1087module_init(arcmsr_module_init);
1088module_exit(arcmsr_module_exit);
1089
Nick Cheng36b83de2010-05-17 11:22:42 +08001090static void arcmsr_enable_outbound_ints(struct AdapterControlBlock *acb,
Nick Cheng1a4f5502007-09-13 17:26:40 +08001091 u32 intmask_org)
Erich Chen1c57e862006-07-12 08:59:32 -07001092{
Erich Chen1c57e862006-07-12 08:59:32 -07001093 u32 mask;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001094 switch (acb->adapter_type) {
1095
Nick Chengcdd3cb12010-07-13 20:03:04 +08001096 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00001097 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001098 mask = intmask_org & ~(ARCMSR_MU_OUTBOUND_POSTQUEUE_INTMASKENABLE |
Nick Cheng36b83de2010-05-17 11:22:42 +08001099 ARCMSR_MU_OUTBOUND_DOORBELL_INTMASKENABLE|
1100 ARCMSR_MU_OUTBOUND_MESSAGE0_INTMASKENABLE);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001101 writel(mask, &reg->outbound_intmask);
1102 acb->outbound_int_enable = ~(intmask_org & mask) & 0x000000ff;
1103 }
1104 break;
Erich Chen1c57e862006-07-12 08:59:32 -07001105
Nick Chengcdd3cb12010-07-13 20:03:04 +08001106 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00001107 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng36b83de2010-05-17 11:22:42 +08001108 mask = intmask_org | (ARCMSR_IOP2DRV_DATA_WRITE_OK |
1109 ARCMSR_IOP2DRV_DATA_READ_OK |
1110 ARCMSR_IOP2DRV_CDB_DONE |
1111 ARCMSR_IOP2DRV_MESSAGE_CMD_DONE);
Nick Chengae52e7f2010-06-18 15:39:12 +08001112 writel(mask, reg->iop2drv_doorbell_mask);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001113 acb->outbound_int_enable = (intmask_org | mask) & 0x0000000f;
1114 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08001115 break;
1116 case ACB_ADAPTER_TYPE_C: {
1117 struct MessageUnit_C *reg = acb->pmuC;
1118 mask = ~(ARCMSR_HBCMU_UTILITY_A_ISR_MASK | ARCMSR_HBCMU_OUTBOUND_DOORBELL_ISR_MASK|ARCMSR_HBCMU_OUTBOUND_POSTQUEUE_ISR_MASK);
1119 writel(intmask_org & mask, &reg->host_int_mask);
1120 acb->outbound_int_enable = ~(intmask_org & mask) & 0x0000000f;
1121 }
Erich Chen1c57e862006-07-12 08:59:32 -07001122 }
1123}
1124
Nick Cheng76d78302008-02-04 23:53:24 -08001125static int arcmsr_build_ccb(struct AdapterControlBlock *acb,
Erich Chen1c57e862006-07-12 08:59:32 -07001126 struct CommandControlBlock *ccb, struct scsi_cmnd *pcmd)
1127{
1128 struct ARCMSR_CDB *arcmsr_cdb = (struct ARCMSR_CDB *)&ccb->arcmsr_cdb;
1129 int8_t *psge = (int8_t *)&arcmsr_cdb->u;
Al Viro80da1ad2007-10-29 05:08:28 +00001130 __le32 address_lo, address_hi;
Erich Chen1c57e862006-07-12 08:59:32 -07001131 int arccdbsize = 0x30;
Nick Chengae52e7f2010-06-18 15:39:12 +08001132 __le32 length = 0;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001133 int i;
Nick Chengae52e7f2010-06-18 15:39:12 +08001134 struct scatterlist *sg;
FUJITA Tomonorideff2622007-05-14 19:25:56 +09001135 int nseg;
Erich Chen1c57e862006-07-12 08:59:32 -07001136 ccb->pcmd = pcmd;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001137 memset(arcmsr_cdb, 0, sizeof(struct ARCMSR_CDB));
Erich Chen1c57e862006-07-12 08:59:32 -07001138 arcmsr_cdb->TargetID = pcmd->device->id;
1139 arcmsr_cdb->LUN = pcmd->device->lun;
1140 arcmsr_cdb->Function = 1;
Nick Chengae52e7f2010-06-18 15:39:12 +08001141 arcmsr_cdb->Context = 0;
Erich Chen1c57e862006-07-12 08:59:32 -07001142 memcpy(arcmsr_cdb->Cdb, pcmd->cmnd, pcmd->cmd_len);
Erich Chen1c57e862006-07-12 08:59:32 -07001143
FUJITA Tomonorideff2622007-05-14 19:25:56 +09001144 nseg = scsi_dma_map(pcmd);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001145 if (unlikely(nseg > acb->host->sg_tablesize || nseg < 0))
Nick Cheng76d78302008-02-04 23:53:24 -08001146 return FAILED;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001147 scsi_for_each_sg(pcmd, sg, nseg, i) {
1148 /* Get the physical address of the current data pointer */
1149 length = cpu_to_le32(sg_dma_len(sg));
1150 address_lo = cpu_to_le32(dma_addr_lo32(sg_dma_address(sg)));
1151 address_hi = cpu_to_le32(dma_addr_hi32(sg_dma_address(sg)));
1152 if (address_hi == 0) {
1153 struct SG32ENTRY *pdma_sg = (struct SG32ENTRY *)psge;
Erich Chen1c57e862006-07-12 08:59:32 -07001154
Nick Chengcdd3cb12010-07-13 20:03:04 +08001155 pdma_sg->address = address_lo;
1156 pdma_sg->length = length;
1157 psge += sizeof (struct SG32ENTRY);
1158 arccdbsize += sizeof (struct SG32ENTRY);
1159 } else {
1160 struct SG64ENTRY *pdma_sg = (struct SG64ENTRY *)psge;
Erich Chen1c57e862006-07-12 08:59:32 -07001161
Nick Chengcdd3cb12010-07-13 20:03:04 +08001162 pdma_sg->addresshigh = address_hi;
1163 pdma_sg->address = address_lo;
1164 pdma_sg->length = length|cpu_to_le32(IS_SG64_ADDR);
1165 psge += sizeof (struct SG64ENTRY);
1166 arccdbsize += sizeof (struct SG64ENTRY);
Erich Chen1c57e862006-07-12 08:59:32 -07001167 }
Erich Chen1c57e862006-07-12 08:59:32 -07001168 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08001169 arcmsr_cdb->sgcount = (uint8_t)nseg;
1170 arcmsr_cdb->DataLength = scsi_bufflen(pcmd);
1171 arcmsr_cdb->msgPages = arccdbsize/0x100 + (arccdbsize % 0x100 ? 1 : 0);
1172 if ( arccdbsize > 256)
1173 arcmsr_cdb->Flags |= ARCMSR_CDB_FLAG_SGL_BSIZE;
1174 if (pcmd->cmnd[0]|WRITE_6 || pcmd->cmnd[0]|WRITE_10 || pcmd->cmnd[0]|WRITE_12 ){
1175 arcmsr_cdb->Flags |= ARCMSR_CDB_FLAG_WRITE;
1176 }
1177 ccb->arc_cdb_size = arccdbsize;
Nick Cheng76d78302008-02-04 23:53:24 -08001178 return SUCCESS;
Erich Chen1c57e862006-07-12 08:59:32 -07001179}
1180
1181static void arcmsr_post_ccb(struct AdapterControlBlock *acb, struct CommandControlBlock *ccb)
1182{
Nick Chengcdd3cb12010-07-13 20:03:04 +08001183 uint32_t cdb_phyaddr_pattern = ccb->cdb_phyaddr_pattern;
Erich Chen1c57e862006-07-12 08:59:32 -07001184 struct ARCMSR_CDB *arcmsr_cdb = (struct ARCMSR_CDB *)&ccb->arcmsr_cdb;
Erich Chen1c57e862006-07-12 08:59:32 -07001185 atomic_inc(&acb->ccboutstandingcount);
1186 ccb->startdone = ARCMSR_CCB_START;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001187 switch (acb->adapter_type) {
1188 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00001189 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001190
1191 if (arcmsr_cdb->Flags & ARCMSR_CDB_FLAG_SGL_BSIZE)
Nick Chengcdd3cb12010-07-13 20:03:04 +08001192 writel(cdb_phyaddr_pattern | ARCMSR_CCBPOST_FLAG_SGL_BSIZE,
Erich Chen1c57e862006-07-12 08:59:32 -07001193 &reg->inbound_queueport);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001194 else {
Nick Chengcdd3cb12010-07-13 20:03:04 +08001195 writel(cdb_phyaddr_pattern, &reg->inbound_queueport);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001196 }
1197 }
1198 break;
1199
1200 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00001201 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001202 uint32_t ending_index, index = reg->postq_index;
1203
1204 ending_index = ((index + 1) % ARCMSR_MAX_HBB_POSTQUEUE);
1205 writel(0, &reg->post_qbuffer[ending_index]);
1206 if (arcmsr_cdb->Flags & ARCMSR_CDB_FLAG_SGL_BSIZE) {
Nick Chengcdd3cb12010-07-13 20:03:04 +08001207 writel(cdb_phyaddr_pattern | ARCMSR_CCBPOST_FLAG_SGL_BSIZE,\
Nick Cheng1a4f5502007-09-13 17:26:40 +08001208 &reg->post_qbuffer[index]);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001209 } else {
1210 writel(cdb_phyaddr_pattern, &reg->post_qbuffer[index]);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001211 }
1212 index++;
1213 index %= ARCMSR_MAX_HBB_POSTQUEUE;/*if last index number set it to 0 */
1214 reg->postq_index = index;
Nick Chengae52e7f2010-06-18 15:39:12 +08001215 writel(ARCMSR_DRV2IOP_CDB_POSTED, reg->drv2iop_doorbell);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001216 }
1217 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001218 case ACB_ADAPTER_TYPE_C: {
1219 struct MessageUnit_C *phbcmu = (struct MessageUnit_C *)acb->pmuC;
1220 uint32_t ccb_post_stamp, arc_cdb_size;
1221
1222 arc_cdb_size = (ccb->arc_cdb_size > 0x300) ? 0x300 : ccb->arc_cdb_size;
1223 ccb_post_stamp = (cdb_phyaddr_pattern | ((arc_cdb_size - 1) >> 6) | 1);
1224 if (acb->cdb_phyaddr_hi32) {
1225 writel(acb->cdb_phyaddr_hi32, &phbcmu->inbound_queueport_high);
1226 writel(ccb_post_stamp, &phbcmu->inbound_queueport_low);
1227 } else {
1228 writel(ccb_post_stamp, &phbcmu->inbound_queueport_low);
1229 }
1230 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001231 }
Erich Chen1c57e862006-07-12 08:59:32 -07001232}
1233
Nick Cheng1a4f5502007-09-13 17:26:40 +08001234static void arcmsr_stop_hba_bgrb(struct AdapterControlBlock *acb)
Erich Chen1c57e862006-07-12 08:59:32 -07001235{
Al Viro80da1ad2007-10-29 05:08:28 +00001236 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001237 acb->acb_flags &= ~ACB_F_MSG_START_BGRB;
1238 writel(ARCMSR_INBOUND_MESG0_STOP_BGRB, &reg->inbound_msgaddr0);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001239 if (!arcmsr_hba_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001240 printk(KERN_NOTICE
1241 "arcmsr%d: wait 'stop adapter background rebulid' timeout \n"
1242 , acb->host->host_no);
1243 }
1244}
1245
1246static void arcmsr_stop_hbb_bgrb(struct AdapterControlBlock *acb)
1247{
Al Viro80da1ad2007-10-29 05:08:28 +00001248 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001249 acb->acb_flags &= ~ACB_F_MSG_START_BGRB;
Nick Chengae52e7f2010-06-18 15:39:12 +08001250 writel(ARCMSR_MESSAGE_STOP_BGRB, reg->drv2iop_doorbell);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001251
Nick Chengcdd3cb12010-07-13 20:03:04 +08001252 if (!arcmsr_hbb_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001253 printk(KERN_NOTICE
1254 "arcmsr%d: wait 'stop adapter background rebulid' timeout \n"
1255 , acb->host->host_no);
Erich Chen1c57e862006-07-12 08:59:32 -07001256 }
1257}
1258
Nick Chengcdd3cb12010-07-13 20:03:04 +08001259static void arcmsr_stop_hbc_bgrb(struct AdapterControlBlock *pACB)
1260{
1261 struct MessageUnit_C *reg = (struct MessageUnit_C *)pACB->pmuC;
1262 pACB->acb_flags &= ~ACB_F_MSG_START_BGRB;
1263 writel(ARCMSR_INBOUND_MESG0_STOP_BGRB, &reg->inbound_msgaddr0);
1264 writel(ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE, &reg->inbound_doorbell);
1265 if (!arcmsr_hbc_wait_msgint_ready(pACB)) {
1266 printk(KERN_NOTICE
1267 "arcmsr%d: wait 'stop adapter background rebulid' timeout \n"
1268 , pACB->host->host_no);
1269 }
1270 return;
1271}
Erich Chen1c57e862006-07-12 08:59:32 -07001272static void arcmsr_stop_adapter_bgrb(struct AdapterControlBlock *acb)
1273{
Nick Cheng1a4f5502007-09-13 17:26:40 +08001274 switch (acb->adapter_type) {
1275 case ACB_ADAPTER_TYPE_A: {
1276 arcmsr_stop_hba_bgrb(acb);
1277 }
1278 break;
Erich Chen1c57e862006-07-12 08:59:32 -07001279
Nick Cheng1a4f5502007-09-13 17:26:40 +08001280 case ACB_ADAPTER_TYPE_B: {
1281 arcmsr_stop_hbb_bgrb(acb);
1282 }
1283 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001284 case ACB_ADAPTER_TYPE_C: {
1285 arcmsr_stop_hbc_bgrb(acb);
1286 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001287 }
Erich Chen1c57e862006-07-12 08:59:32 -07001288}
1289
1290static void arcmsr_free_ccb_pool(struct AdapterControlBlock *acb)
1291{
Nick Chengcdd3cb12010-07-13 20:03:04 +08001292 dma_free_coherent(&acb->pdev->dev, acb->uncache_size, acb->dma_coherent, acb->dma_coherent_handle);
Erich Chen1c57e862006-07-12 08:59:32 -07001293}
1294
Nick Cheng1a4f5502007-09-13 17:26:40 +08001295void arcmsr_iop_message_read(struct AdapterControlBlock *acb)
Erich Chen1c57e862006-07-12 08:59:32 -07001296{
Nick Cheng1a4f5502007-09-13 17:26:40 +08001297 switch (acb->adapter_type) {
1298 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00001299 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001300 writel(ARCMSR_INBOUND_DRIVER_DATA_READ_OK, &reg->inbound_doorbell);
1301 }
1302 break;
Erich Chen1c57e862006-07-12 08:59:32 -07001303
Nick Cheng1a4f5502007-09-13 17:26:40 +08001304 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00001305 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +08001306 writel(ARCMSR_DRV2IOP_DATA_READ_OK, reg->drv2iop_doorbell);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001307 }
1308 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001309 case ACB_ADAPTER_TYPE_C: {
1310 struct MessageUnit_C __iomem *reg = acb->pmuC;
1311 writel(ARCMSR_HBCMU_DRV2IOP_DATA_READ_OK, &reg->inbound_doorbell);
1312 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001313 }
1314}
1315
1316static void arcmsr_iop_message_wrote(struct AdapterControlBlock *acb)
1317{
1318 switch (acb->adapter_type) {
1319 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00001320 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001321 /*
1322 ** push inbound doorbell tell iop, driver data write ok
1323 ** and wait reply on next hwinterrupt for next Qbuffer post
1324 */
1325 writel(ARCMSR_INBOUND_DRIVER_DATA_WRITE_OK, &reg->inbound_doorbell);
1326 }
1327 break;
1328
1329 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00001330 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001331 /*
1332 ** push inbound doorbell tell iop, driver data write ok
1333 ** and wait reply on next hwinterrupt for next Qbuffer post
1334 */
Nick Chengae52e7f2010-06-18 15:39:12 +08001335 writel(ARCMSR_DRV2IOP_DATA_WRITE_OK, reg->drv2iop_doorbell);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001336 }
1337 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001338 case ACB_ADAPTER_TYPE_C: {
1339 struct MessageUnit_C __iomem *reg = acb->pmuC;
1340 /*
1341 ** push inbound doorbell tell iop, driver data write ok
1342 ** and wait reply on next hwinterrupt for next Qbuffer post
1343 */
1344 writel(ARCMSR_HBCMU_DRV2IOP_DATA_WRITE_OK, &reg->inbound_doorbell);
1345 }
1346 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001347 }
1348}
1349
Al Viro80da1ad2007-10-29 05:08:28 +00001350struct QBUFFER __iomem *arcmsr_get_iop_rqbuffer(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +08001351{
Al Viro0c7eb2e2007-10-29 05:08:58 +00001352 struct QBUFFER __iomem *qbuffer = NULL;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001353 switch (acb->adapter_type) {
1354
1355 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00001356 struct MessageUnit_A __iomem *reg = acb->pmuA;
1357 qbuffer = (struct QBUFFER __iomem *)&reg->message_rbuffer;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001358 }
1359 break;
1360
1361 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00001362 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +08001363 qbuffer = (struct QBUFFER __iomem *)reg->message_rbuffer;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001364 }
1365 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001366 case ACB_ADAPTER_TYPE_C: {
1367 struct MessageUnit_C *phbcmu = (struct MessageUnit_C *)acb->pmuC;
1368 qbuffer = (struct QBUFFER __iomem *)&phbcmu->message_rbuffer;
1369 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001370 }
1371 return qbuffer;
1372}
1373
Al Viro80da1ad2007-10-29 05:08:28 +00001374static struct QBUFFER __iomem *arcmsr_get_iop_wqbuffer(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +08001375{
Al Viro0c7eb2e2007-10-29 05:08:58 +00001376 struct QBUFFER __iomem *pqbuffer = NULL;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001377 switch (acb->adapter_type) {
1378
1379 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00001380 struct MessageUnit_A __iomem *reg = acb->pmuA;
1381 pqbuffer = (struct QBUFFER __iomem *) &reg->message_wbuffer;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001382 }
1383 break;
1384
1385 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00001386 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +08001387 pqbuffer = (struct QBUFFER __iomem *)reg->message_wbuffer;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001388 }
1389 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001390 case ACB_ADAPTER_TYPE_C: {
1391 struct MessageUnit_C *reg = (struct MessageUnit_C *)acb->pmuC;
1392 pqbuffer = (struct QBUFFER __iomem *)&reg->message_wbuffer;
1393 }
1394
Nick Cheng1a4f5502007-09-13 17:26:40 +08001395 }
1396 return pqbuffer;
1397}
1398
1399static void arcmsr_iop2drv_data_wrote_handle(struct AdapterControlBlock *acb)
1400{
Al Viro80da1ad2007-10-29 05:08:28 +00001401 struct QBUFFER __iomem *prbuffer;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001402 struct QBUFFER *pQbuffer;
Al Viro80da1ad2007-10-29 05:08:28 +00001403 uint8_t __iomem *iop_data;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001404 int32_t my_empty_len, iop_len, rqbuf_firstindex, rqbuf_lastindex;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001405 rqbuf_lastindex = acb->rqbuf_lastindex;
1406 rqbuf_firstindex = acb->rqbuf_firstindex;
1407 prbuffer = arcmsr_get_iop_rqbuffer(acb);
Al Viro80da1ad2007-10-29 05:08:28 +00001408 iop_data = (uint8_t __iomem *)prbuffer->data;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001409 iop_len = prbuffer->data_len;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001410 my_empty_len = (rqbuf_firstindex - rqbuf_lastindex - 1) & (ARCMSR_MAX_QBUFFER - 1);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001411
1412 if (my_empty_len >= iop_len)
1413 {
1414 while (iop_len > 0) {
1415 pQbuffer = (struct QBUFFER *)&acb->rqbuffer[rqbuf_lastindex];
Nick Chengcdd3cb12010-07-13 20:03:04 +08001416 memcpy(pQbuffer, iop_data, 1);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001417 rqbuf_lastindex++;
1418 rqbuf_lastindex %= ARCMSR_MAX_QBUFFER;
1419 iop_data++;
1420 iop_len--;
1421 }
1422 acb->rqbuf_lastindex = rqbuf_lastindex;
1423 arcmsr_iop_message_read(acb);
1424 }
1425
1426 else {
1427 acb->acb_flags |= ACB_F_IOPDATA_OVERFLOW;
1428 }
1429}
1430
1431static void arcmsr_iop2drv_data_read_handle(struct AdapterControlBlock *acb)
1432{
1433 acb->acb_flags |= ACB_F_MESSAGE_WQBUFFER_READED;
1434 if (acb->wqbuf_firstindex != acb->wqbuf_lastindex) {
1435 uint8_t *pQbuffer;
Al Viro80da1ad2007-10-29 05:08:28 +00001436 struct QBUFFER __iomem *pwbuffer;
1437 uint8_t __iomem *iop_data;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001438 int32_t allxfer_len = 0;
1439
1440 acb->acb_flags &= (~ACB_F_MESSAGE_WQBUFFER_READED);
1441 pwbuffer = arcmsr_get_iop_wqbuffer(acb);
1442 iop_data = (uint8_t __iomem *)pwbuffer->data;
1443
1444 while ((acb->wqbuf_firstindex != acb->wqbuf_lastindex) && \
1445 (allxfer_len < 124)) {
1446 pQbuffer = &acb->wqbuffer[acb->wqbuf_firstindex];
1447 memcpy(iop_data, pQbuffer, 1);
1448 acb->wqbuf_firstindex++;
1449 acb->wqbuf_firstindex %= ARCMSR_MAX_QBUFFER;
1450 iop_data++;
1451 allxfer_len++;
1452 }
1453 pwbuffer->data_len = allxfer_len;
1454
1455 arcmsr_iop_message_wrote(acb);
1456 }
1457
1458 if (acb->wqbuf_firstindex == acb->wqbuf_lastindex) {
1459 acb->acb_flags |= ACB_F_MESSAGE_WQBUFFER_CLEARED;
1460 }
1461}
1462
1463static void arcmsr_hba_doorbell_isr(struct AdapterControlBlock *acb)
1464{
1465 uint32_t outbound_doorbell;
Al Viro80da1ad2007-10-29 05:08:28 +00001466 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001467 outbound_doorbell = readl(&reg->outbound_doorbell);
1468 writel(outbound_doorbell, &reg->outbound_doorbell);
1469 if (outbound_doorbell & ARCMSR_OUTBOUND_IOP331_DATA_WRITE_OK) {
1470 arcmsr_iop2drv_data_wrote_handle(acb);
1471 }
1472
Nick Chengcdd3cb12010-07-13 20:03:04 +08001473 if (outbound_doorbell & ARCMSR_OUTBOUND_IOP331_DATA_READ_OK) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001474 arcmsr_iop2drv_data_read_handle(acb);
1475 }
1476}
Nick Chengcdd3cb12010-07-13 20:03:04 +08001477static void arcmsr_hbc_doorbell_isr(struct AdapterControlBlock *pACB)
1478{
1479 uint32_t outbound_doorbell;
1480 struct MessageUnit_C *reg = (struct MessageUnit_C *)pACB->pmuC;
1481 /*
1482 *******************************************************************
1483 ** Maybe here we need to check wrqbuffer_lock is lock or not
1484 ** DOORBELL: din! don!
1485 ** check if there are any mail need to pack from firmware
1486 *******************************************************************
1487 */
1488 outbound_doorbell = readl(&reg->outbound_doorbell);
1489 writel(outbound_doorbell, &reg->outbound_doorbell_clear);/*clear interrupt*/
1490 if (outbound_doorbell & ARCMSR_HBCMU_IOP2DRV_DATA_WRITE_OK) {
1491 arcmsr_iop2drv_data_wrote_handle(pACB);
1492 }
1493 if (outbound_doorbell & ARCMSR_HBCMU_IOP2DRV_DATA_READ_OK) {
1494 arcmsr_iop2drv_data_read_handle(pACB);
1495 }
1496 if (outbound_doorbell & ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE) {
1497 arcmsr_hbc_message_isr(pACB); /* messenger of "driver to iop commands" */
1498 }
1499 return;
1500}
Nick Cheng1a4f5502007-09-13 17:26:40 +08001501static void arcmsr_hba_postqueue_isr(struct AdapterControlBlock *acb)
1502{
1503 uint32_t flag_ccb;
Al Viro80da1ad2007-10-29 05:08:28 +00001504 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001505 struct ARCMSR_CDB *pARCMSR_CDB;
1506 struct CommandControlBlock *pCCB;
1507 bool error;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001508 while ((flag_ccb = readl(&reg->outbound_queueport)) != 0xFFFFFFFF) {
Nick Chengcdd3cb12010-07-13 20:03:04 +08001509 pARCMSR_CDB = (struct ARCMSR_CDB *)(acb->vir2phy_offset + (flag_ccb << 5));/*frame must be 32 bytes aligned*/
1510 pCCB = container_of(pARCMSR_CDB, struct CommandControlBlock, arcmsr_cdb);
1511 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE0) ? true : false;
1512 arcmsr_drain_donequeue(acb, pCCB, error);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001513 }
1514}
1515
1516static void arcmsr_hbb_postqueue_isr(struct AdapterControlBlock *acb)
1517{
1518 uint32_t index;
1519 uint32_t flag_ccb;
Al Viro80da1ad2007-10-29 05:08:28 +00001520 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001521 struct ARCMSR_CDB *pARCMSR_CDB;
1522 struct CommandControlBlock *pCCB;
1523 bool error;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001524 index = reg->doneq_index;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001525 while ((flag_ccb = readl(&reg->done_qbuffer[index])) != 0) {
1526 writel(0, &reg->done_qbuffer[index]);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001527 pARCMSR_CDB = (struct ARCMSR_CDB *)(acb->vir2phy_offset+(flag_ccb << 5));/*frame must be 32 bytes aligned*/
1528 pCCB = container_of(pARCMSR_CDB, struct CommandControlBlock, arcmsr_cdb);
1529 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE0) ? true : false;
1530 arcmsr_drain_donequeue(acb, pCCB, error);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001531 index++;
1532 index %= ARCMSR_MAX_HBB_POSTQUEUE;
1533 reg->doneq_index = index;
1534 }
1535}
Nick Chengcdd3cb12010-07-13 20:03:04 +08001536
1537static void arcmsr_hbc_postqueue_isr(struct AdapterControlBlock *acb)
1538{
1539 struct MessageUnit_C *phbcmu;
1540 struct ARCMSR_CDB *arcmsr_cdb;
1541 struct CommandControlBlock *ccb;
1542 uint32_t flag_ccb, ccb_cdb_phy, throttling = 0;
1543 int error;
1544
1545 phbcmu = (struct MessageUnit_C *)acb->pmuC;
1546 /* areca cdb command done */
1547 /* Use correct offset and size for syncing */
1548
1549 while (readl(&phbcmu->host_int_status) &
1550 ARCMSR_HBCMU_OUTBOUND_POSTQUEUE_ISR){
1551 /* check if command done with no error*/
1552 flag_ccb = readl(&phbcmu->outbound_queueport_low);
1553 ccb_cdb_phy = (flag_ccb & 0xFFFFFFF0);/*frame must be 32 bytes aligned*/
1554 arcmsr_cdb = (struct ARCMSR_CDB *)(acb->vir2phy_offset + ccb_cdb_phy);
1555 ccb = container_of(arcmsr_cdb, struct CommandControlBlock, arcmsr_cdb);
1556 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE1) ? true : false;
1557 /* check if command done with no error */
1558 arcmsr_drain_donequeue(acb, ccb, error);
1559 if (throttling == ARCMSR_HBC_ISR_THROTTLING_LEVEL) {
1560 writel(ARCMSR_HBCMU_DRV2IOP_POSTQUEUE_THROTTLING, &phbcmu->inbound_doorbell);
1561 break;
1562 }
1563 throttling++;
1564 }
1565}
Nick Cheng36b83de2010-05-17 11:22:42 +08001566/*
1567**********************************************************************************
1568** Handle a message interrupt
1569**
Nick Chengcdd3cb12010-07-13 20:03:04 +08001570** The only message interrupt we expect is in response to a query for the current adapter config.
Nick Cheng36b83de2010-05-17 11:22:42 +08001571** We want this in order to compare the drivemap so that we can detect newly-attached drives.
1572**********************************************************************************
1573*/
1574static void arcmsr_hba_message_isr(struct AdapterControlBlock *acb)
1575{
1576 struct MessageUnit_A *reg = acb->pmuA;
Nick Cheng36b83de2010-05-17 11:22:42 +08001577 /*clear interrupt and message state*/
1578 writel(ARCMSR_MU_OUTBOUND_MESSAGE0_INT, &reg->outbound_intstatus);
1579 schedule_work(&acb->arcmsr_do_message_isr_bh);
1580}
1581static void arcmsr_hbb_message_isr(struct AdapterControlBlock *acb)
1582{
1583 struct MessageUnit_B *reg = acb->pmuB;
1584
1585 /*clear interrupt and message state*/
Nick Chengae52e7f2010-06-18 15:39:12 +08001586 writel(ARCMSR_MESSAGE_INT_CLEAR_PATTERN, reg->iop2drv_doorbell);
Nick Cheng36b83de2010-05-17 11:22:42 +08001587 schedule_work(&acb->arcmsr_do_message_isr_bh);
1588}
Nick Chengcdd3cb12010-07-13 20:03:04 +08001589/*
1590**********************************************************************************
1591** Handle a message interrupt
1592**
1593** The only message interrupt we expect is in response to a query for the
1594** current adapter config.
1595** We want this in order to compare the drivemap so that we can detect newly-attached drives.
1596**********************************************************************************
1597*/
1598static void arcmsr_hbc_message_isr(struct AdapterControlBlock *acb)
1599{
1600 struct MessageUnit_C *reg = acb->pmuC;
1601 /*clear interrupt and message state*/
1602 writel(ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE_DOORBELL_CLEAR, &reg->outbound_doorbell_clear);
1603 schedule_work(&acb->arcmsr_do_message_isr_bh);
1604}
1605
Nick Cheng1a4f5502007-09-13 17:26:40 +08001606static int arcmsr_handle_hba_isr(struct AdapterControlBlock *acb)
1607{
1608 uint32_t outbound_intstatus;
Al Viro80da1ad2007-10-29 05:08:28 +00001609 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng36b83de2010-05-17 11:22:42 +08001610 outbound_intstatus = readl(&reg->outbound_intstatus) &
Nick Chengcdd3cb12010-07-13 20:03:04 +08001611 acb->outbound_int_enable;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001612 if (!(outbound_intstatus & ARCMSR_MU_OUTBOUND_HANDLE_INT)) {
1613 return 1;
1614 }
Erich Chen1c57e862006-07-12 08:59:32 -07001615 writel(outbound_intstatus, &reg->outbound_intstatus);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001616 if (outbound_intstatus & ARCMSR_MU_OUTBOUND_DOORBELL_INT) {
1617 arcmsr_hba_doorbell_isr(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001618 }
1619 if (outbound_intstatus & ARCMSR_MU_OUTBOUND_POSTQUEUE_INT) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001620 arcmsr_hba_postqueue_isr(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001621 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08001622 if(outbound_intstatus & ARCMSR_MU_OUTBOUND_MESSAGE0_INT) {
Nick Cheng36b83de2010-05-17 11:22:42 +08001623 /* messenger of "driver to iop commands" */
1624 arcmsr_hba_message_isr(acb);
1625 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001626 return 0;
1627}
1628
1629static int arcmsr_handle_hbb_isr(struct AdapterControlBlock *acb)
1630{
1631 uint32_t outbound_doorbell;
Al Viro80da1ad2007-10-29 05:08:28 +00001632 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +08001633 outbound_doorbell = readl(reg->iop2drv_doorbell) &
Nick Chengcdd3cb12010-07-13 20:03:04 +08001634 acb->outbound_int_enable;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001635 if (!outbound_doorbell)
1636 return 1;
1637
Nick Chengae52e7f2010-06-18 15:39:12 +08001638 writel(~outbound_doorbell, reg->iop2drv_doorbell);
Nick Cheng36b83de2010-05-17 11:22:42 +08001639 /*in case the last action of doorbell interrupt clearance is cached,
1640 this action can push HW to write down the clear bit*/
Nick Chengae52e7f2010-06-18 15:39:12 +08001641 readl(reg->iop2drv_doorbell);
1642 writel(ARCMSR_DRV2IOP_END_OF_INTERRUPT, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001643 if (outbound_doorbell & ARCMSR_IOP2DRV_DATA_WRITE_OK) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001644 arcmsr_iop2drv_data_wrote_handle(acb);
1645 }
1646 if (outbound_doorbell & ARCMSR_IOP2DRV_DATA_READ_OK) {
1647 arcmsr_iop2drv_data_read_handle(acb);
1648 }
1649 if (outbound_doorbell & ARCMSR_IOP2DRV_CDB_DONE) {
1650 arcmsr_hbb_postqueue_isr(acb);
1651 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08001652 if(outbound_doorbell & ARCMSR_IOP2DRV_MESSAGE_CMD_DONE) {
Nick Cheng36b83de2010-05-17 11:22:42 +08001653 /* messenger of "driver to iop commands" */
1654 arcmsr_hbb_message_isr(acb);
1655 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001656 return 0;
1657}
1658
Nick Chengcdd3cb12010-07-13 20:03:04 +08001659static int arcmsr_handle_hbc_isr(struct AdapterControlBlock *pACB)
1660{
1661 uint32_t host_interrupt_status;
1662 struct MessageUnit_C *phbcmu = (struct MessageUnit_C *)pACB->pmuC;
1663 /*
1664 *********************************************
1665 ** check outbound intstatus
1666 *********************************************
1667 */
1668 host_interrupt_status = readl(&phbcmu->host_int_status);
1669 if (!host_interrupt_status) {
1670 /*it must be share irq*/
1671 return 1;
1672 }
1673 /* MU ioctl transfer doorbell interrupts*/
1674 if (host_interrupt_status & ARCMSR_HBCMU_OUTBOUND_DOORBELL_ISR) {
1675 arcmsr_hbc_doorbell_isr(pACB); /* messenger of "ioctl message read write" */
1676 }
1677 /* MU post queue interrupts*/
1678 if (host_interrupt_status & ARCMSR_HBCMU_OUTBOUND_POSTQUEUE_ISR) {
1679 arcmsr_hbc_postqueue_isr(pACB); /* messenger of "scsi commands" */
1680 }
1681 return 0;
1682}
Nick Cheng1a4f5502007-09-13 17:26:40 +08001683static irqreturn_t arcmsr_interrupt(struct AdapterControlBlock *acb)
1684{
1685 switch (acb->adapter_type) {
1686 case ACB_ADAPTER_TYPE_A: {
1687 if (arcmsr_handle_hba_isr(acb)) {
1688 return IRQ_NONE;
1689 }
1690 }
1691 break;
1692
1693 case ACB_ADAPTER_TYPE_B: {
1694 if (arcmsr_handle_hbb_isr(acb)) {
1695 return IRQ_NONE;
1696 }
1697 }
1698 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001699 case ACB_ADAPTER_TYPE_C: {
1700 if (arcmsr_handle_hbc_isr(acb)) {
1701 return IRQ_NONE;
1702 }
1703 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001704 }
Erich Chen1c57e862006-07-12 08:59:32 -07001705 return IRQ_HANDLED;
1706}
1707
1708static void arcmsr_iop_parking(struct AdapterControlBlock *acb)
1709{
1710 if (acb) {
1711 /* stop adapter background rebuild */
1712 if (acb->acb_flags & ACB_F_MSG_START_BGRB) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001713 uint32_t intmask_org;
Erich Chen1c57e862006-07-12 08:59:32 -07001714 acb->acb_flags &= ~ACB_F_MSG_START_BGRB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001715 intmask_org = arcmsr_disable_outbound_ints(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001716 arcmsr_stop_adapter_bgrb(acb);
1717 arcmsr_flush_adapter_cache(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001718 arcmsr_enable_outbound_ints(acb, intmask_org);
Erich Chen1c57e862006-07-12 08:59:32 -07001719 }
1720 }
1721}
1722
Nick Cheng1a4f5502007-09-13 17:26:40 +08001723void arcmsr_post_ioctldata2iop(struct AdapterControlBlock *acb)
Erich Chen1c57e862006-07-12 08:59:32 -07001724{
Nick Cheng1a4f5502007-09-13 17:26:40 +08001725 int32_t wqbuf_firstindex, wqbuf_lastindex;
1726 uint8_t *pQbuffer;
Al Viro80da1ad2007-10-29 05:08:28 +00001727 struct QBUFFER __iomem *pwbuffer;
1728 uint8_t __iomem *iop_data;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001729 int32_t allxfer_len = 0;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001730 pwbuffer = arcmsr_get_iop_wqbuffer(acb);
1731 iop_data = (uint8_t __iomem *)pwbuffer->data;
1732 if (acb->acb_flags & ACB_F_MESSAGE_WQBUFFER_READED) {
1733 acb->acb_flags &= (~ACB_F_MESSAGE_WQBUFFER_READED);
1734 wqbuf_firstindex = acb->wqbuf_firstindex;
1735 wqbuf_lastindex = acb->wqbuf_lastindex;
1736 while ((wqbuf_firstindex != wqbuf_lastindex) && (allxfer_len < 124)) {
1737 pQbuffer = &acb->wqbuffer[wqbuf_firstindex];
1738 memcpy(iop_data, pQbuffer, 1);
1739 wqbuf_firstindex++;
1740 wqbuf_firstindex %= ARCMSR_MAX_QBUFFER;
1741 iop_data++;
1742 allxfer_len++;
1743 }
1744 acb->wqbuf_firstindex = wqbuf_firstindex;
1745 pwbuffer->data_len = allxfer_len;
1746 arcmsr_iop_message_wrote(acb);
1747 }
1748}
1749
Nick Cheng36b83de2010-05-17 11:22:42 +08001750static int arcmsr_iop_message_xfer(struct AdapterControlBlock *acb,
Nick Cheng1a4f5502007-09-13 17:26:40 +08001751 struct scsi_cmnd *cmd)
1752{
Erich Chen1c57e862006-07-12 08:59:32 -07001753 struct CMD_MESSAGE_FIELD *pcmdmessagefld;
1754 int retvalue = 0, transfer_len = 0;
1755 char *buffer;
FUJITA Tomonorideff2622007-05-14 19:25:56 +09001756 struct scatterlist *sg;
Erich Chen1c57e862006-07-12 08:59:32 -07001757 uint32_t controlcode = (uint32_t ) cmd->cmnd[5] << 24 |
1758 (uint32_t ) cmd->cmnd[6] << 16 |
1759 (uint32_t ) cmd->cmnd[7] << 8 |
1760 (uint32_t ) cmd->cmnd[8];
Nick Cheng1a4f5502007-09-13 17:26:40 +08001761 /* 4 bytes: Areca io control code */
FUJITA Tomonorideff2622007-05-14 19:25:56 +09001762 sg = scsi_sglist(cmd);
Jens Axboe45711f12007-10-22 21:19:53 +02001763 buffer = kmap_atomic(sg_page(sg), KM_IRQ0) + sg->offset;
FUJITA Tomonorideff2622007-05-14 19:25:56 +09001764 if (scsi_sg_count(cmd) > 1) {
1765 retvalue = ARCMSR_MESSAGE_FAIL;
1766 goto message_out;
Erich Chen1c57e862006-07-12 08:59:32 -07001767 }
FUJITA Tomonorideff2622007-05-14 19:25:56 +09001768 transfer_len += sg->length;
1769
Erich Chen1c57e862006-07-12 08:59:32 -07001770 if (transfer_len > sizeof(struct CMD_MESSAGE_FIELD)) {
1771 retvalue = ARCMSR_MESSAGE_FAIL;
1772 goto message_out;
1773 }
1774 pcmdmessagefld = (struct CMD_MESSAGE_FIELD *) buffer;
1775 switch(controlcode) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001776
Erich Chen1c57e862006-07-12 08:59:32 -07001777 case ARCMSR_MESSAGE_READ_RQBUFFER: {
Daniel Drake69e562c2008-02-20 13:29:05 +00001778 unsigned char *ver_addr;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001779 uint8_t *pQbuffer, *ptmpQbuffer;
1780 int32_t allxfer_len = 0;
Erich Chen1c57e862006-07-12 08:59:32 -07001781
Daniel Drake69e562c2008-02-20 13:29:05 +00001782 ver_addr = kmalloc(1032, GFP_ATOMIC);
1783 if (!ver_addr) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001784 retvalue = ARCMSR_MESSAGE_FAIL;
1785 goto message_out;
1786 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08001787
Daniel Drake69e562c2008-02-20 13:29:05 +00001788 ptmpQbuffer = ver_addr;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001789 while ((acb->rqbuf_firstindex != acb->rqbuf_lastindex)
1790 && (allxfer_len < 1031)) {
1791 pQbuffer = &acb->rqbuffer[acb->rqbuf_firstindex];
1792 memcpy(ptmpQbuffer, pQbuffer, 1);
1793 acb->rqbuf_firstindex++;
1794 acb->rqbuf_firstindex %= ARCMSR_MAX_QBUFFER;
1795 ptmpQbuffer++;
1796 allxfer_len++;
1797 }
1798 if (acb->acb_flags & ACB_F_IOPDATA_OVERFLOW) {
Erich Chen1c57e862006-07-12 08:59:32 -07001799
Al Viro80da1ad2007-10-29 05:08:28 +00001800 struct QBUFFER __iomem *prbuffer;
1801 uint8_t __iomem *iop_data;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001802 int32_t iop_len;
1803
1804 acb->acb_flags &= ~ACB_F_IOPDATA_OVERFLOW;
1805 prbuffer = arcmsr_get_iop_rqbuffer(acb);
Al Viro80da1ad2007-10-29 05:08:28 +00001806 iop_data = prbuffer->data;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001807 iop_len = readl(&prbuffer->data_len);
1808 while (iop_len > 0) {
1809 acb->rqbuffer[acb->rqbuf_lastindex] = readb(iop_data);
1810 acb->rqbuf_lastindex++;
1811 acb->rqbuf_lastindex %= ARCMSR_MAX_QBUFFER;
1812 iop_data++;
1813 iop_len--;
Erich Chen1c57e862006-07-12 08:59:32 -07001814 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001815 arcmsr_iop_message_read(acb);
1816 }
Daniel Drake69e562c2008-02-20 13:29:05 +00001817 memcpy(pcmdmessagefld->messagedatabuffer, ver_addr, allxfer_len);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001818 pcmdmessagefld->cmdmessage.Length = allxfer_len;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001819 if(acb->fw_flag == FW_DEADLOCK) {
Nick Chengae52e7f2010-06-18 15:39:12 +08001820 pcmdmessagefld->cmdmessage.ReturnCode = ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001821 }else{
1822 pcmdmessagefld->cmdmessage.ReturnCode = ARCMSR_MESSAGE_RETURNCODE_OK;
Nick Chengae52e7f2010-06-18 15:39:12 +08001823 }
Daniel Drake69e562c2008-02-20 13:29:05 +00001824 kfree(ver_addr);
Erich Chen1c57e862006-07-12 08:59:32 -07001825 }
1826 break;
Erich Chen1c57e862006-07-12 08:59:32 -07001827
Nick Cheng1a4f5502007-09-13 17:26:40 +08001828 case ARCMSR_MESSAGE_WRITE_WQBUFFER: {
Daniel Drake69e562c2008-02-20 13:29:05 +00001829 unsigned char *ver_addr;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001830 int32_t my_empty_len, user_len, wqbuf_firstindex, wqbuf_lastindex;
1831 uint8_t *pQbuffer, *ptmpuserbuffer;
1832
Daniel Drake69e562c2008-02-20 13:29:05 +00001833 ver_addr = kmalloc(1032, GFP_ATOMIC);
1834 if (!ver_addr) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001835 retvalue = ARCMSR_MESSAGE_FAIL;
1836 goto message_out;
1837 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08001838 if(acb->fw_flag == FW_DEADLOCK) {
1839 pcmdmessagefld->cmdmessage.ReturnCode =
Nick Cheng36b83de2010-05-17 11:22:42 +08001840 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001841 }else{
1842 pcmdmessagefld->cmdmessage.ReturnCode =
Nick Chengae52e7f2010-06-18 15:39:12 +08001843 ARCMSR_MESSAGE_RETURNCODE_OK;
Nick Cheng36b83de2010-05-17 11:22:42 +08001844 }
Daniel Drake69e562c2008-02-20 13:29:05 +00001845 ptmpuserbuffer = ver_addr;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001846 user_len = pcmdmessagefld->cmdmessage.Length;
1847 memcpy(ptmpuserbuffer, pcmdmessagefld->messagedatabuffer, user_len);
1848 wqbuf_lastindex = acb->wqbuf_lastindex;
1849 wqbuf_firstindex = acb->wqbuf_firstindex;
1850 if (wqbuf_lastindex != wqbuf_firstindex) {
1851 struct SENSE_DATA *sensebuffer =
1852 (struct SENSE_DATA *)cmd->sense_buffer;
1853 arcmsr_post_ioctldata2iop(acb);
1854 /* has error report sensedata */
1855 sensebuffer->ErrorCode = 0x70;
1856 sensebuffer->SenseKey = ILLEGAL_REQUEST;
1857 sensebuffer->AdditionalSenseLength = 0x0A;
1858 sensebuffer->AdditionalSenseCode = 0x20;
1859 sensebuffer->Valid = 1;
1860 retvalue = ARCMSR_MESSAGE_FAIL;
1861 } else {
1862 my_empty_len = (wqbuf_firstindex-wqbuf_lastindex - 1)
1863 &(ARCMSR_MAX_QBUFFER - 1);
1864 if (my_empty_len >= user_len) {
1865 while (user_len > 0) {
1866 pQbuffer =
1867 &acb->wqbuffer[acb->wqbuf_lastindex];
1868 memcpy(pQbuffer, ptmpuserbuffer, 1);
1869 acb->wqbuf_lastindex++;
1870 acb->wqbuf_lastindex %= ARCMSR_MAX_QBUFFER;
1871 ptmpuserbuffer++;
1872 user_len--;
1873 }
1874 if (acb->acb_flags & ACB_F_MESSAGE_WQBUFFER_CLEARED) {
1875 acb->acb_flags &=
1876 ~ACB_F_MESSAGE_WQBUFFER_CLEARED;
1877 arcmsr_post_ioctldata2iop(acb);
1878 }
1879 } else {
1880 /* has error report sensedata */
Erich Chen1c57e862006-07-12 08:59:32 -07001881 struct SENSE_DATA *sensebuffer =
1882 (struct SENSE_DATA *)cmd->sense_buffer;
Erich Chen1c57e862006-07-12 08:59:32 -07001883 sensebuffer->ErrorCode = 0x70;
1884 sensebuffer->SenseKey = ILLEGAL_REQUEST;
1885 sensebuffer->AdditionalSenseLength = 0x0A;
1886 sensebuffer->AdditionalSenseCode = 0x20;
1887 sensebuffer->Valid = 1;
1888 retvalue = ARCMSR_MESSAGE_FAIL;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001889 }
Erich Chen1c57e862006-07-12 08:59:32 -07001890 }
Daniel Drake69e562c2008-02-20 13:29:05 +00001891 kfree(ver_addr);
Erich Chen1c57e862006-07-12 08:59:32 -07001892 }
1893 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001894
Erich Chen1c57e862006-07-12 08:59:32 -07001895 case ARCMSR_MESSAGE_CLEAR_RQBUFFER: {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001896 uint8_t *pQbuffer = acb->rqbuffer;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001897 if (acb->acb_flags & ACB_F_IOPDATA_OVERFLOW) {
1898 acb->acb_flags &= ~ACB_F_IOPDATA_OVERFLOW;
1899 arcmsr_iop_message_read(acb);
1900 }
1901 acb->acb_flags |= ACB_F_MESSAGE_RQBUFFER_CLEARED;
1902 acb->rqbuf_firstindex = 0;
1903 acb->rqbuf_lastindex = 0;
1904 memset(pQbuffer, 0, ARCMSR_MAX_QBUFFER);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001905 if(acb->fw_flag == FW_DEADLOCK) {
Nick Chengae52e7f2010-06-18 15:39:12 +08001906 pcmdmessagefld->cmdmessage.ReturnCode =
1907 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001908 }else{
Nick Chengae52e7f2010-06-18 15:39:12 +08001909 pcmdmessagefld->cmdmessage.ReturnCode =
1910 ARCMSR_MESSAGE_RETURNCODE_OK;
1911 }
Erich Chen1c57e862006-07-12 08:59:32 -07001912 }
1913 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001914
Erich Chen1c57e862006-07-12 08:59:32 -07001915 case ARCMSR_MESSAGE_CLEAR_WQBUFFER: {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001916 uint8_t *pQbuffer = acb->wqbuffer;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001917 if(acb->fw_flag == FW_DEADLOCK) {
Nick Cheng36b83de2010-05-17 11:22:42 +08001918 pcmdmessagefld->cmdmessage.ReturnCode =
1919 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001920 }else{
Nick Chengae52e7f2010-06-18 15:39:12 +08001921 pcmdmessagefld->cmdmessage.ReturnCode =
1922 ARCMSR_MESSAGE_RETURNCODE_OK;
Nick Cheng36b83de2010-05-17 11:22:42 +08001923 }
Erich Chen1c57e862006-07-12 08:59:32 -07001924
Nick Cheng1a4f5502007-09-13 17:26:40 +08001925 if (acb->acb_flags & ACB_F_IOPDATA_OVERFLOW) {
1926 acb->acb_flags &= ~ACB_F_IOPDATA_OVERFLOW;
1927 arcmsr_iop_message_read(acb);
1928 }
1929 acb->acb_flags |=
1930 (ACB_F_MESSAGE_WQBUFFER_CLEARED |
1931 ACB_F_MESSAGE_WQBUFFER_READED);
1932 acb->wqbuf_firstindex = 0;
1933 acb->wqbuf_lastindex = 0;
1934 memset(pQbuffer, 0, ARCMSR_MAX_QBUFFER);
Erich Chen1c57e862006-07-12 08:59:32 -07001935 }
1936 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001937
Erich Chen1c57e862006-07-12 08:59:32 -07001938 case ARCMSR_MESSAGE_CLEAR_ALLQBUFFER: {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001939 uint8_t *pQbuffer;
Erich Chen1c57e862006-07-12 08:59:32 -07001940
Nick Cheng1a4f5502007-09-13 17:26:40 +08001941 if (acb->acb_flags & ACB_F_IOPDATA_OVERFLOW) {
1942 acb->acb_flags &= ~ACB_F_IOPDATA_OVERFLOW;
1943 arcmsr_iop_message_read(acb);
1944 }
1945 acb->acb_flags |=
1946 (ACB_F_MESSAGE_WQBUFFER_CLEARED
1947 | ACB_F_MESSAGE_RQBUFFER_CLEARED
1948 | ACB_F_MESSAGE_WQBUFFER_READED);
1949 acb->rqbuf_firstindex = 0;
1950 acb->rqbuf_lastindex = 0;
1951 acb->wqbuf_firstindex = 0;
1952 acb->wqbuf_lastindex = 0;
1953 pQbuffer = acb->rqbuffer;
1954 memset(pQbuffer, 0, sizeof(struct QBUFFER));
1955 pQbuffer = acb->wqbuffer;
1956 memset(pQbuffer, 0, sizeof(struct QBUFFER));
Nick Chengcdd3cb12010-07-13 20:03:04 +08001957 if(acb->fw_flag == FW_DEADLOCK) {
Nick Chengae52e7f2010-06-18 15:39:12 +08001958 pcmdmessagefld->cmdmessage.ReturnCode =
1959 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001960 }else{
Nick Chengae52e7f2010-06-18 15:39:12 +08001961 pcmdmessagefld->cmdmessage.ReturnCode =
1962 ARCMSR_MESSAGE_RETURNCODE_OK;
1963 }
Erich Chen1c57e862006-07-12 08:59:32 -07001964 }
1965 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001966
Erich Chen1c57e862006-07-12 08:59:32 -07001967 case ARCMSR_MESSAGE_RETURN_CODE_3F: {
Nick Chengcdd3cb12010-07-13 20:03:04 +08001968 if(acb->fw_flag == FW_DEADLOCK) {
Nick Cheng36b83de2010-05-17 11:22:42 +08001969 pcmdmessagefld->cmdmessage.ReturnCode =
1970 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001971 }else{
Nick Chengae52e7f2010-06-18 15:39:12 +08001972 pcmdmessagefld->cmdmessage.ReturnCode =
1973 ARCMSR_MESSAGE_RETURNCODE_3F;
Erich Chen1c57e862006-07-12 08:59:32 -07001974 }
1975 break;
Nick Chengae52e7f2010-06-18 15:39:12 +08001976 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001977 case ARCMSR_MESSAGE_SAY_HELLO: {
1978 int8_t *hello_string = "Hello! I am ARCMSR";
Nick Chengcdd3cb12010-07-13 20:03:04 +08001979 if(acb->fw_flag == FW_DEADLOCK) {
Nick Cheng36b83de2010-05-17 11:22:42 +08001980 pcmdmessagefld->cmdmessage.ReturnCode =
1981 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001982 }else{
Nick Chengae52e7f2010-06-18 15:39:12 +08001983 pcmdmessagefld->cmdmessage.ReturnCode =
1984 ARCMSR_MESSAGE_RETURNCODE_OK;
Nick Cheng36b83de2010-05-17 11:22:42 +08001985 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001986 memcpy(pcmdmessagefld->messagedatabuffer, hello_string
1987 , (int16_t)strlen(hello_string));
Erich Chen1c57e862006-07-12 08:59:32 -07001988 }
1989 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001990
Erich Chen1c57e862006-07-12 08:59:32 -07001991 case ARCMSR_MESSAGE_SAY_GOODBYE:
Nick Chengcdd3cb12010-07-13 20:03:04 +08001992 if(acb->fw_flag == FW_DEADLOCK) {
Nick Cheng36b83de2010-05-17 11:22:42 +08001993 pcmdmessagefld->cmdmessage.ReturnCode =
1994 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Cheng36b83de2010-05-17 11:22:42 +08001995 }
Erich Chen1c57e862006-07-12 08:59:32 -07001996 arcmsr_iop_parking(acb);
1997 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001998
Erich Chen1c57e862006-07-12 08:59:32 -07001999 case ARCMSR_MESSAGE_FLUSH_ADAPTER_CACHE:
Nick Chengcdd3cb12010-07-13 20:03:04 +08002000 if(acb->fw_flag == FW_DEADLOCK) {
Nick Cheng36b83de2010-05-17 11:22:42 +08002001 pcmdmessagefld->cmdmessage.ReturnCode =
2002 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Cheng36b83de2010-05-17 11:22:42 +08002003 }
Erich Chen1c57e862006-07-12 08:59:32 -07002004 arcmsr_flush_adapter_cache(acb);
2005 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002006
Erich Chen1c57e862006-07-12 08:59:32 -07002007 default:
2008 retvalue = ARCMSR_MESSAGE_FAIL;
2009 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002010 message_out:
FUJITA Tomonorideff2622007-05-14 19:25:56 +09002011 sg = scsi_sglist(cmd);
2012 kunmap_atomic(buffer - sg->offset, KM_IRQ0);
Erich Chen1c57e862006-07-12 08:59:32 -07002013 return retvalue;
2014}
2015
2016static struct CommandControlBlock *arcmsr_get_freeccb(struct AdapterControlBlock *acb)
2017{
2018 struct list_head *head = &acb->ccb_free_list;
2019 struct CommandControlBlock *ccb = NULL;
Nick Chengae52e7f2010-06-18 15:39:12 +08002020 unsigned long flags;
2021 spin_lock_irqsave(&acb->ccblist_lock, flags);
Erich Chen1c57e862006-07-12 08:59:32 -07002022 if (!list_empty(head)) {
2023 ccb = list_entry(head->next, struct CommandControlBlock, list);
Nick Chengae52e7f2010-06-18 15:39:12 +08002024 list_del_init(&ccb->list);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002025 }else{
Nick Chengae52e7f2010-06-18 15:39:12 +08002026 spin_unlock_irqrestore(&acb->ccblist_lock, flags);
2027 return 0;
Erich Chen1c57e862006-07-12 08:59:32 -07002028 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002029 spin_unlock_irqrestore(&acb->ccblist_lock, flags);
Erich Chen1c57e862006-07-12 08:59:32 -07002030 return ccb;
2031}
2032
2033static void arcmsr_handle_virtual_command(struct AdapterControlBlock *acb,
2034 struct scsi_cmnd *cmd)
2035{
2036 switch (cmd->cmnd[0]) {
2037 case INQUIRY: {
2038 unsigned char inqdata[36];
2039 char *buffer;
FUJITA Tomonorideff2622007-05-14 19:25:56 +09002040 struct scatterlist *sg;
Erich Chen1c57e862006-07-12 08:59:32 -07002041
2042 if (cmd->device->lun) {
2043 cmd->result = (DID_TIME_OUT << 16);
2044 cmd->scsi_done(cmd);
2045 return;
2046 }
2047 inqdata[0] = TYPE_PROCESSOR;
2048 /* Periph Qualifier & Periph Dev Type */
2049 inqdata[1] = 0;
2050 /* rem media bit & Dev Type Modifier */
2051 inqdata[2] = 0;
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002052 /* ISO, ECMA, & ANSI versions */
Erich Chen1c57e862006-07-12 08:59:32 -07002053 inqdata[4] = 31;
2054 /* length of additional data */
2055 strncpy(&inqdata[8], "Areca ", 8);
2056 /* Vendor Identification */
2057 strncpy(&inqdata[16], "RAID controller ", 16);
2058 /* Product Identification */
2059 strncpy(&inqdata[32], "R001", 4); /* Product Revision */
Erich Chen1c57e862006-07-12 08:59:32 -07002060
FUJITA Tomonorideff2622007-05-14 19:25:56 +09002061 sg = scsi_sglist(cmd);
Jens Axboe45711f12007-10-22 21:19:53 +02002062 buffer = kmap_atomic(sg_page(sg), KM_IRQ0) + sg->offset;
FUJITA Tomonorideff2622007-05-14 19:25:56 +09002063
Erich Chen1c57e862006-07-12 08:59:32 -07002064 memcpy(buffer, inqdata, sizeof(inqdata));
FUJITA Tomonorideff2622007-05-14 19:25:56 +09002065 sg = scsi_sglist(cmd);
2066 kunmap_atomic(buffer - sg->offset, KM_IRQ0);
Erich Chen1c57e862006-07-12 08:59:32 -07002067
Erich Chen1c57e862006-07-12 08:59:32 -07002068 cmd->scsi_done(cmd);
2069 }
2070 break;
2071 case WRITE_BUFFER:
2072 case READ_BUFFER: {
2073 if (arcmsr_iop_message_xfer(acb, cmd))
2074 cmd->result = (DID_ERROR << 16);
2075 cmd->scsi_done(cmd);
2076 }
2077 break;
2078 default:
2079 cmd->scsi_done(cmd);
2080 }
2081}
2082
2083static int arcmsr_queue_command(struct scsi_cmnd *cmd,
2084 void (* done)(struct scsi_cmnd *))
2085{
2086 struct Scsi_Host *host = cmd->device->host;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002087 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata;
Erich Chen1c57e862006-07-12 08:59:32 -07002088 struct CommandControlBlock *ccb;
2089 int target = cmd->device->id;
2090 int lun = cmd->device->lun;
Nick Cheng36b83de2010-05-17 11:22:42 +08002091 uint8_t scsicmd = cmd->cmnd[0];
Erich Chen1c57e862006-07-12 08:59:32 -07002092 cmd->scsi_done = done;
2093 cmd->host_scribble = NULL;
2094 cmd->result = 0;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002095 if ((scsicmd == SYNCHRONIZE_CACHE) ||(scsicmd == SEND_DIAGNOSTIC)){
2096 if(acb->devstate[target][lun] == ARECA_RAID_GONE) {
2097 cmd->result = (DID_NO_CONNECT << 16);
Nick Cheng36b83de2010-05-17 11:22:42 +08002098 }
2099 cmd->scsi_done(cmd);
2100 return 0;
2101 }
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002102 if (target == 16) {
Erich Chen1c57e862006-07-12 08:59:32 -07002103 /* virtual device for iop message transfer */
2104 arcmsr_handle_virtual_command(acb, cmd);
2105 return 0;
2106 }
Erich Chen1c57e862006-07-12 08:59:32 -07002107 if (atomic_read(&acb->ccboutstandingcount) >=
2108 ARCMSR_MAX_OUTSTANDING_CMD)
2109 return SCSI_MLQUEUE_HOST_BUSY;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002110 if ((scsicmd == SCSI_CMD_ARECA_SPECIFIC)) {
2111 printk(KERN_NOTICE "Receiveing SCSI_CMD_ARECA_SPECIFIC command..\n");
2112 return 0;
2113 }
Erich Chen1c57e862006-07-12 08:59:32 -07002114 ccb = arcmsr_get_freeccb(acb);
2115 if (!ccb)
2116 return SCSI_MLQUEUE_HOST_BUSY;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002117 if (arcmsr_build_ccb( acb, ccb, cmd ) == FAILED) {
Nick Cheng76d78302008-02-04 23:53:24 -08002118 cmd->result = (DID_ERROR << 16) | (RESERVATION_CONFLICT << 1);
2119 cmd->scsi_done(cmd);
2120 return 0;
2121 }
Erich Chen1c57e862006-07-12 08:59:32 -07002122 arcmsr_post_ccb(acb, ccb);
2123 return 0;
2124}
2125
Nick Chengae52e7f2010-06-18 15:39:12 +08002126static bool arcmsr_get_hba_config(struct AdapterControlBlock *acb)
Erich Chen1c57e862006-07-12 08:59:32 -07002127{
Al Viro80da1ad2007-10-29 05:08:28 +00002128 struct MessageUnit_A __iomem *reg = acb->pmuA;
Erich Chen1c57e862006-07-12 08:59:32 -07002129 char *acb_firm_model = acb->firm_model;
2130 char *acb_firm_version = acb->firm_version;
Nick Cheng36b83de2010-05-17 11:22:42 +08002131 char *acb_device_map = acb->device_map;
Al Viro80da1ad2007-10-29 05:08:28 +00002132 char __iomem *iop_firm_model = (char __iomem *)(&reg->message_rwbuffer[15]);
2133 char __iomem *iop_firm_version = (char __iomem *)(&reg->message_rwbuffer[17]);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002134 char __iomem *iop_device_map = (char __iomem *)(&reg->message_rwbuffer[21]);
Erich Chen1c57e862006-07-12 08:59:32 -07002135 int count;
Erich Chen1c57e862006-07-12 08:59:32 -07002136 writel(ARCMSR_INBOUND_MESG0_GET_CONFIG, &reg->inbound_msgaddr0);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002137 if (!arcmsr_hba_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002138 printk(KERN_NOTICE "arcmsr%d: wait 'get adapter firmware \
2139 miscellaneous data' timeout \n", acb->host->host_no);
Nick Chengae52e7f2010-06-18 15:39:12 +08002140 return false;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002141 }
Erich Chen1c57e862006-07-12 08:59:32 -07002142 count = 8;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002143 while (count){
Erich Chen1c57e862006-07-12 08:59:32 -07002144 *acb_firm_model = readb(iop_firm_model);
2145 acb_firm_model++;
2146 iop_firm_model++;
2147 count--;
2148 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002149
Erich Chen1c57e862006-07-12 08:59:32 -07002150 count = 16;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002151 while (count){
Erich Chen1c57e862006-07-12 08:59:32 -07002152 *acb_firm_version = readb(iop_firm_version);
2153 acb_firm_version++;
2154 iop_firm_version++;
2155 count--;
2156 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002157
Nick Chengcdd3cb12010-07-13 20:03:04 +08002158 count=16;
2159 while(count){
2160 *acb_device_map = readb(iop_device_map);
2161 acb_device_map++;
2162 iop_device_map++;
2163 count--;
2164 }
2165 printk(KERN_NOTICE "Areca RAID Controller%d: F/W %s & Model %s\n",
Nick Chengae52e7f2010-06-18 15:39:12 +08002166 acb->host->host_no,
2167 acb->firm_version,
2168 acb->firm_model);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002169 acb->signature = readl(&reg->message_rwbuffer[0]);
Erich Chen1c57e862006-07-12 08:59:32 -07002170 acb->firm_request_len = readl(&reg->message_rwbuffer[1]);
2171 acb->firm_numbers_queue = readl(&reg->message_rwbuffer[2]);
2172 acb->firm_sdram_size = readl(&reg->message_rwbuffer[3]);
2173 acb->firm_hd_channels = readl(&reg->message_rwbuffer[4]);
Nick Chengae52e7f2010-06-18 15:39:12 +08002174 acb->firm_cfg_version = readl(&reg->message_rwbuffer[25]); /*firm_cfg_version,25,100-103*/
2175 return true;
Erich Chen1c57e862006-07-12 08:59:32 -07002176}
Nick Chengae52e7f2010-06-18 15:39:12 +08002177static bool arcmsr_get_hbb_config(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +08002178{
Al Viro80da1ad2007-10-29 05:08:28 +00002179 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +08002180 struct pci_dev *pdev = acb->pdev;
2181 void *dma_coherent;
2182 dma_addr_t dma_coherent_handle;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002183 char *acb_firm_model = acb->firm_model;
2184 char *acb_firm_version = acb->firm_version;
Nick Cheng36b83de2010-05-17 11:22:42 +08002185 char *acb_device_map = acb->device_map;
Nick Chengae52e7f2010-06-18 15:39:12 +08002186 char __iomem *iop_firm_model;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002187 /*firm_model,15,60-67*/
Nick Chengae52e7f2010-06-18 15:39:12 +08002188 char __iomem *iop_firm_version;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002189 /*firm_version,17,68-83*/
Nick Chengae52e7f2010-06-18 15:39:12 +08002190 char __iomem *iop_device_map;
Nick Cheng36b83de2010-05-17 11:22:42 +08002191 /*firm_version,21,84-99*/
Nick Cheng1a4f5502007-09-13 17:26:40 +08002192 int count;
Nick Chengae52e7f2010-06-18 15:39:12 +08002193 dma_coherent = dma_alloc_coherent(&pdev->dev, sizeof(struct MessageUnit_B), &dma_coherent_handle, GFP_KERNEL);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002194 if (!dma_coherent){
Nick Chengae52e7f2010-06-18 15:39:12 +08002195 printk(KERN_NOTICE "arcmsr%d: dma_alloc_coherent got error for hbb mu\n", acb->host->host_no);
2196 return false;
2197 }
2198 acb->dma_coherent_handle_hbb_mu = dma_coherent_handle;
2199 reg = (struct MessageUnit_B *)dma_coherent;
2200 acb->pmuB = reg;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002201 reg->drv2iop_doorbell= (uint32_t __iomem *)((unsigned long)acb->mem_base0 + ARCMSR_DRV2IOP_DOORBELL);
Nick Chengae52e7f2010-06-18 15:39:12 +08002202 reg->drv2iop_doorbell_mask = (uint32_t __iomem *)((unsigned long)acb->mem_base0 + ARCMSR_DRV2IOP_DOORBELL_MASK);
2203 reg->iop2drv_doorbell = (uint32_t __iomem *)((unsigned long)acb->mem_base0 + ARCMSR_IOP2DRV_DOORBELL);
2204 reg->iop2drv_doorbell_mask = (uint32_t __iomem *)((unsigned long)acb->mem_base0 + ARCMSR_IOP2DRV_DOORBELL_MASK);
2205 reg->message_wbuffer = (uint32_t __iomem *)((unsigned long)acb->mem_base1 + ARCMSR_MESSAGE_WBUFFER);
2206 reg->message_rbuffer = (uint32_t __iomem *)((unsigned long)acb->mem_base1 + ARCMSR_MESSAGE_RBUFFER);
2207 reg->message_rwbuffer = (uint32_t __iomem *)((unsigned long)acb->mem_base1 + ARCMSR_MESSAGE_RWBUFFER);
2208 iop_firm_model = (char __iomem *)(&reg->message_rwbuffer[15]); /*firm_model,15,60-67*/
2209 iop_firm_version = (char __iomem *)(&reg->message_rwbuffer[17]); /*firm_version,17,68-83*/
2210 iop_device_map = (char __iomem *)(&reg->message_rwbuffer[21]); /*firm_version,21,84-99*/
Nick Cheng1a4f5502007-09-13 17:26:40 +08002211
Nick Chengae52e7f2010-06-18 15:39:12 +08002212 writel(ARCMSR_MESSAGE_GET_CONFIG, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002213 if (!arcmsr_hbb_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002214 printk(KERN_NOTICE "arcmsr%d: wait 'get adapter firmware \
2215 miscellaneous data' timeout \n", acb->host->host_no);
Nick Chengae52e7f2010-06-18 15:39:12 +08002216 return false;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002217 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002218 count = 8;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002219 while (count){
2220 *acb_firm_model = readb(iop_firm_model);
2221 acb_firm_model++;
2222 iop_firm_model++;
2223 count--;
2224 }
2225 count = 16;
2226 while (count){
2227 *acb_firm_version = readb(iop_firm_version);
2228 acb_firm_version++;
2229 iop_firm_version++;
2230 count--;
2231 }
2232
2233 count = 16;
2234 while(count){
2235 *acb_device_map = readb(iop_device_map);
2236 acb_device_map++;
2237 iop_device_map++;
2238 count--;
2239 }
2240
2241 printk(KERN_NOTICE "Areca RAID Controller%d: F/W %s & Model %s\n",
2242 acb->host->host_no,
2243 acb->firm_version,
2244 acb->firm_model);
2245
2246 acb->signature = readl(&reg->message_rwbuffer[1]);
2247 /*firm_signature,1,00-03*/
2248 acb->firm_request_len = readl(&reg->message_rwbuffer[2]);
2249 /*firm_request_len,1,04-07*/
2250 acb->firm_numbers_queue = readl(&reg->message_rwbuffer[3]);
2251 /*firm_numbers_queue,2,08-11*/
2252 acb->firm_sdram_size = readl(&reg->message_rwbuffer[4]);
2253 /*firm_sdram_size,3,12-15*/
2254 acb->firm_hd_channels = readl(&reg->message_rwbuffer[5]);
2255 /*firm_ide_channels,4,16-19*/
2256 acb->firm_cfg_version = readl(&reg->message_rwbuffer[25]); /*firm_cfg_version,25,100-103*/
2257 /*firm_ide_channels,4,16-19*/
2258 return true;
2259}
2260
2261static bool arcmsr_get_hbc_config(struct AdapterControlBlock *pACB)
2262{
2263 uint32_t intmask_org, Index, firmware_state = 0;
2264 struct MessageUnit_C *reg = pACB->pmuC;
2265 char *acb_firm_model = pACB->firm_model;
2266 char *acb_firm_version = pACB->firm_version;
2267 char *iop_firm_model = (char *)(&reg->msgcode_rwbuffer[15]); /*firm_model,15,60-67*/
2268 char *iop_firm_version = (char *)(&reg->msgcode_rwbuffer[17]); /*firm_version,17,68-83*/
2269 int count;
2270 /* disable all outbound interrupt */
2271 intmask_org = readl(&reg->host_int_mask); /* disable outbound message0 int */
2272 writel(intmask_org|ARCMSR_HBCMU_ALL_INTMASKENABLE, &reg->host_int_mask);
2273 /* wait firmware ready */
2274 do {
2275 firmware_state = readl(&reg->outbound_msgaddr1);
2276 } while ((firmware_state & ARCMSR_HBCMU_MESSAGE_FIRMWARE_OK) == 0);
2277 /* post "get config" instruction */
2278 writel(ARCMSR_INBOUND_MESG0_GET_CONFIG, &reg->inbound_msgaddr0);
2279 writel(ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE, &reg->inbound_doorbell);
2280 /* wait message ready */
2281 for (Index = 0; Index < 2000; Index++) {
2282 if (readl(&reg->outbound_doorbell) & ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE) {
2283 writel(ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE_DOORBELL_CLEAR, &reg->outbound_doorbell_clear);/*clear interrupt*/
2284 break;
2285 }
2286 udelay(10);
2287 } /*max 1 seconds*/
2288 if (Index >= 2000) {
2289 printk(KERN_NOTICE "arcmsr%d: wait 'get adapter firmware \
2290 miscellaneous data' timeout \n", pACB->host->host_no);
2291 return false;
2292 }
2293 count = 8;
Nick Chengae52e7f2010-06-18 15:39:12 +08002294 while (count) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002295 *acb_firm_model = readb(iop_firm_model);
2296 acb_firm_model++;
2297 iop_firm_model++;
2298 count--;
2299 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002300 count = 16;
Nick Chengae52e7f2010-06-18 15:39:12 +08002301 while (count) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002302 *acb_firm_version = readb(iop_firm_version);
2303 acb_firm_version++;
2304 iop_firm_version++;
2305 count--;
2306 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002307 printk(KERN_NOTICE "Areca RAID Controller%d: F/W %s & Model %s\n",
Nick Chengcdd3cb12010-07-13 20:03:04 +08002308 pACB->host->host_no,
2309 pACB->firm_version,
2310 pACB->firm_model);
2311 pACB->firm_request_len = readl(&reg->msgcode_rwbuffer[1]); /*firm_request_len,1,04-07*/
2312 pACB->firm_numbers_queue = readl(&reg->msgcode_rwbuffer[2]); /*firm_numbers_queue,2,08-11*/
2313 pACB->firm_sdram_size = readl(&reg->msgcode_rwbuffer[3]); /*firm_sdram_size,3,12-15*/
2314 pACB->firm_hd_channels = readl(&reg->msgcode_rwbuffer[4]); /*firm_ide_channels,4,16-19*/
2315 pACB->firm_cfg_version = readl(&reg->msgcode_rwbuffer[25]); /*firm_cfg_version,25,100-103*/
2316 /*all interrupt service will be enable at arcmsr_iop_init*/
Nick Chengae52e7f2010-06-18 15:39:12 +08002317 return true;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002318}
Nick Chengae52e7f2010-06-18 15:39:12 +08002319static bool arcmsr_get_firmware_spec(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +08002320{
Nick Chengae52e7f2010-06-18 15:39:12 +08002321 if (acb->adapter_type == ACB_ADAPTER_TYPE_A)
2322 return arcmsr_get_hba_config(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002323 else if (acb->adapter_type == ACB_ADAPTER_TYPE_B)
Nick Chengae52e7f2010-06-18 15:39:12 +08002324 return arcmsr_get_hbb_config(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002325 else
2326 return arcmsr_get_hbc_config(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002327}
2328
Nick Chengae52e7f2010-06-18 15:39:12 +08002329static int arcmsr_polling_hba_ccbdone(struct AdapterControlBlock *acb,
Erich Chen1c57e862006-07-12 08:59:32 -07002330 struct CommandControlBlock *poll_ccb)
2331{
Al Viro80da1ad2007-10-29 05:08:28 +00002332 struct MessageUnit_A __iomem *reg = acb->pmuA;
Erich Chen1c57e862006-07-12 08:59:32 -07002333 struct CommandControlBlock *ccb;
Nick Chengae52e7f2010-06-18 15:39:12 +08002334 struct ARCMSR_CDB *arcmsr_cdb;
Erich Chen1c57e862006-07-12 08:59:32 -07002335 uint32_t flag_ccb, outbound_intstatus, poll_ccb_done = 0, poll_count = 0;
Nick Chengae52e7f2010-06-18 15:39:12 +08002336 int rtn;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002337 bool error;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002338 polling_hba_ccb_retry:
Erich Chen1c57e862006-07-12 08:59:32 -07002339 poll_count++;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002340 outbound_intstatus = readl(&reg->outbound_intstatus) & acb->outbound_int_enable;
Erich Chen1c57e862006-07-12 08:59:32 -07002341 writel(outbound_intstatus, &reg->outbound_intstatus);/*clear interrupt*/
2342 while (1) {
2343 if ((flag_ccb = readl(&reg->outbound_queueport)) == 0xFFFFFFFF) {
Nick Chengcdd3cb12010-07-13 20:03:04 +08002344 if (poll_ccb_done){
Nick Chengae52e7f2010-06-18 15:39:12 +08002345 rtn = SUCCESS;
Erich Chen1c57e862006-07-12 08:59:32 -07002346 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002347 }else {
2348 msleep(25);
2349 if (poll_count > 100){
Nick Chengae52e7f2010-06-18 15:39:12 +08002350 rtn = FAILED;
Erich Chen1c57e862006-07-12 08:59:32 -07002351 break;
Nick Chengae52e7f2010-06-18 15:39:12 +08002352 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002353 goto polling_hba_ccb_retry;
Erich Chen1c57e862006-07-12 08:59:32 -07002354 }
2355 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002356 arcmsr_cdb = (struct ARCMSR_CDB *)(acb->vir2phy_offset + (flag_ccb << 5));
2357 ccb = container_of(arcmsr_cdb, struct CommandControlBlock, arcmsr_cdb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002358 poll_ccb_done = (ccb == poll_ccb) ? 1:0;
2359 if ((ccb->acb != acb) || (ccb->startdone != ARCMSR_CCB_START)) {
2360 if ((ccb->startdone == ARCMSR_CCB_ABORTED) || (ccb == poll_ccb)) {
2361 printk(KERN_NOTICE "arcmsr%d: scsi id = %d lun = %d ccb = '0x%p'"
Erich Chen1c57e862006-07-12 08:59:32 -07002362 " poll command abort successfully \n"
2363 , acb->host->host_no
2364 , ccb->pcmd->device->id
2365 , ccb->pcmd->device->lun
2366 , ccb);
2367 ccb->pcmd->result = DID_ABORT << 16;
Nick Chengae52e7f2010-06-18 15:39:12 +08002368 arcmsr_ccb_complete(ccb);
Erich Chen1c57e862006-07-12 08:59:32 -07002369 continue;
2370 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002371 printk(KERN_NOTICE "arcmsr%d: polling get an illegal ccb"
2372 " command done ccb = '0x%p'"
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002373 "ccboutstandingcount = %d \n"
Erich Chen1c57e862006-07-12 08:59:32 -07002374 , acb->host->host_no
2375 , ccb
2376 , atomic_read(&acb->ccboutstandingcount));
2377 continue;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002378 }
2379 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE0) ? true : false;
2380 arcmsr_report_ccb_state(acb, ccb, error);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002381 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002382 return rtn;
2383}
Nick Cheng1a4f5502007-09-13 17:26:40 +08002384
Nick Chengae52e7f2010-06-18 15:39:12 +08002385static int arcmsr_polling_hbb_ccbdone(struct AdapterControlBlock *acb,
Nick Cheng1a4f5502007-09-13 17:26:40 +08002386 struct CommandControlBlock *poll_ccb)
2387{
Nick Chengcdd3cb12010-07-13 20:03:04 +08002388 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +08002389 struct ARCMSR_CDB *arcmsr_cdb;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002390 struct CommandControlBlock *ccb;
2391 uint32_t flag_ccb, poll_ccb_done = 0, poll_count = 0;
Nick Chengae52e7f2010-06-18 15:39:12 +08002392 int index, rtn;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002393 bool error;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002394 polling_hbb_ccb_retry:
Nick Chengcdd3cb12010-07-13 20:03:04 +08002395 poll_count++;
2396 /* clear doorbell interrupt */
Nick Chengae52e7f2010-06-18 15:39:12 +08002397 writel(ARCMSR_DOORBELL_INT_CLEAR_PATTERN, reg->iop2drv_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002398 while(1){
2399 index = reg->doneq_index;
2400 if ((flag_ccb = readl(&reg->done_qbuffer[index])) == 0) {
2401 if (poll_ccb_done){
Nick Chengae52e7f2010-06-18 15:39:12 +08002402 rtn = SUCCESS;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002403 break;
2404 }else {
2405 msleep(25);
2406 if (poll_count > 100){
Nick Chengae52e7f2010-06-18 15:39:12 +08002407 rtn = FAILED;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002408 break;
Nick Chengae52e7f2010-06-18 15:39:12 +08002409 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08002410 goto polling_hbb_ccb_retry;
Erich Chen1c57e862006-07-12 08:59:32 -07002411 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08002412 }
2413 writel(0, &reg->done_qbuffer[index]);
2414 index++;
2415 /*if last index number set it to 0 */
2416 index %= ARCMSR_MAX_HBB_POSTQUEUE;
2417 reg->doneq_index = index;
2418 /* check if command done with no error*/
Nick Chengae52e7f2010-06-18 15:39:12 +08002419 arcmsr_cdb = (struct ARCMSR_CDB *)(acb->vir2phy_offset + (flag_ccb << 5));
2420 ccb = container_of(arcmsr_cdb, struct CommandControlBlock, arcmsr_cdb);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002421 poll_ccb_done = (ccb == poll_ccb) ? 1:0;
2422 if ((ccb->acb != acb) || (ccb->startdone != ARCMSR_CCB_START)) {
2423 if ((ccb->startdone == ARCMSR_CCB_ABORTED) || (ccb == poll_ccb)) {
Nick Chengae52e7f2010-06-18 15:39:12 +08002424 printk(KERN_NOTICE "arcmsr%d: scsi id = %d lun = %d ccb = '0x%p'"
2425 " poll command abort successfully \n"
Nick Chengcdd3cb12010-07-13 20:03:04 +08002426 ,acb->host->host_no
2427 ,ccb->pcmd->device->id
2428 ,ccb->pcmd->device->lun
2429 ,ccb);
2430 ccb->pcmd->result = DID_ABORT << 16;
Nick Chengae52e7f2010-06-18 15:39:12 +08002431 arcmsr_ccb_complete(ccb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002432 continue;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002433 }
2434 printk(KERN_NOTICE "arcmsr%d: polling get an illegal ccb"
2435 " command done ccb = '0x%p'"
2436 "ccboutstandingcount = %d \n"
2437 , acb->host->host_no
2438 , ccb
2439 , atomic_read(&acb->ccboutstandingcount));
2440 continue;
2441 }
2442 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE0) ? true : false;
2443 arcmsr_report_ccb_state(acb, ccb, error);
2444 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002445 return rtn;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002446}
2447
Nick Chengcdd3cb12010-07-13 20:03:04 +08002448static int arcmsr_polling_hbc_ccbdone(struct AdapterControlBlock *acb, struct CommandControlBlock *poll_ccb)
2449{
2450 struct MessageUnit_C *reg = (struct MessageUnit_C *)acb->pmuC;
2451 uint32_t flag_ccb, ccb_cdb_phy;
2452 struct ARCMSR_CDB *arcmsr_cdb;
2453 bool error;
2454 struct CommandControlBlock *pCCB;
2455 uint32_t poll_ccb_done = 0, poll_count = 0;
2456 int rtn;
2457polling_hbc_ccb_retry:
2458 poll_count++;
2459 while (1) {
2460 if ((readl(&reg->host_int_status) & ARCMSR_HBCMU_OUTBOUND_POSTQUEUE_ISR) == 0) {
2461 if (poll_ccb_done) {
2462 rtn = SUCCESS;
2463 break;
2464 } else {
2465 msleep(25);
2466 if (poll_count > 100) {
2467 rtn = FAILED;
2468 break;
2469 }
2470 goto polling_hbc_ccb_retry;
2471 }
2472 }
2473 flag_ccb = readl(&reg->outbound_queueport_low);
2474 ccb_cdb_phy = (flag_ccb & 0xFFFFFFF0);
2475 arcmsr_cdb = (struct ARCMSR_CDB *)(acb->vir2phy_offset + ccb_cdb_phy);/*frame must be 32 bytes aligned*/
2476 pCCB = container_of(arcmsr_cdb, struct CommandControlBlock, arcmsr_cdb);
2477 poll_ccb_done = (pCCB == poll_ccb) ? 1 : 0;
2478 /* check ifcommand done with no error*/
2479 if ((pCCB->acb != acb) || (pCCB->startdone != ARCMSR_CCB_START)) {
2480 if (pCCB->startdone == ARCMSR_CCB_ABORTED) {
2481 printk(KERN_NOTICE "arcmsr%d: scsi id = %d lun = %d ccb = '0x%p'"
2482 " poll command abort successfully \n"
2483 , acb->host->host_no
2484 , pCCB->pcmd->device->id
2485 , pCCB->pcmd->device->lun
2486 , pCCB);
2487 pCCB->pcmd->result = DID_ABORT << 16;
2488 arcmsr_ccb_complete(pCCB);
2489 continue;
2490 }
2491 printk(KERN_NOTICE "arcmsr%d: polling get an illegal ccb"
2492 " command done ccb = '0x%p'"
2493 "ccboutstandingcount = %d \n"
2494 , acb->host->host_no
2495 , pCCB
2496 , atomic_read(&acb->ccboutstandingcount));
2497 continue;
2498 }
2499 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE1) ? true : false;
2500 arcmsr_report_ccb_state(acb, pCCB, error);
2501 }
2502 return rtn;
2503}
Nick Chengae52e7f2010-06-18 15:39:12 +08002504static int arcmsr_polling_ccbdone(struct AdapterControlBlock *acb,
Nick Cheng1a4f5502007-09-13 17:26:40 +08002505 struct CommandControlBlock *poll_ccb)
2506{
Nick Chengae52e7f2010-06-18 15:39:12 +08002507 int rtn = 0;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002508 switch (acb->adapter_type) {
2509
2510 case ACB_ADAPTER_TYPE_A: {
Nick Chengae52e7f2010-06-18 15:39:12 +08002511 rtn = arcmsr_polling_hba_ccbdone(acb, poll_ccb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002512 }
2513 break;
2514
2515 case ACB_ADAPTER_TYPE_B: {
Nick Chengae52e7f2010-06-18 15:39:12 +08002516 rtn = arcmsr_polling_hbb_ccbdone(acb, poll_ccb);
Erich Chen1c57e862006-07-12 08:59:32 -07002517 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08002518 break;
2519 case ACB_ADAPTER_TYPE_C: {
2520 rtn = arcmsr_polling_hbc_ccbdone(acb, poll_ccb);
2521 }
Erich Chen1c57e862006-07-12 08:59:32 -07002522 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002523 return rtn;
Erich Chen1c57e862006-07-12 08:59:32 -07002524}
Nick Cheng1a4f5502007-09-13 17:26:40 +08002525
2526static int arcmsr_iop_confirm(struct AdapterControlBlock *acb)
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002527{
Nick Chengae52e7f2010-06-18 15:39:12 +08002528 uint32_t cdb_phyaddr, cdb_phyaddr_hi32;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002529 dma_addr_t dma_coherent_handle;
2530 /*
2531 ********************************************************************
2532 ** here we need to tell iop 331 our freeccb.HighPart
2533 ** if freeccb.HighPart is not zero
2534 ********************************************************************
2535 */
2536 dma_coherent_handle = acb->dma_coherent_handle;
2537 cdb_phyaddr = (uint32_t)(dma_coherent_handle);
Nick Chengae52e7f2010-06-18 15:39:12 +08002538 cdb_phyaddr_hi32 = (uint32_t)((cdb_phyaddr >> 16) >> 16);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002539 acb->cdb_phyaddr_hi32 = cdb_phyaddr_hi32;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002540 /*
2541 ***********************************************************************
2542 ** if adapter type B, set window of "post command Q"
2543 ***********************************************************************
2544 */
2545 switch (acb->adapter_type) {
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002546
Nick Cheng1a4f5502007-09-13 17:26:40 +08002547 case ACB_ADAPTER_TYPE_A: {
Nick Chengae52e7f2010-06-18 15:39:12 +08002548 if (cdb_phyaddr_hi32 != 0) {
Al Viro80da1ad2007-10-29 05:08:28 +00002549 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002550 uint32_t intmask_org;
2551 intmask_org = arcmsr_disable_outbound_ints(acb);
2552 writel(ARCMSR_SIGNATURE_SET_CONFIG, \
2553 &reg->message_rwbuffer[0]);
Nick Chengae52e7f2010-06-18 15:39:12 +08002554 writel(cdb_phyaddr_hi32, &reg->message_rwbuffer[1]);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002555 writel(ARCMSR_INBOUND_MESG0_SET_CONFIG, \
2556 &reg->inbound_msgaddr0);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002557 if (!arcmsr_hba_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002558 printk(KERN_NOTICE "arcmsr%d: ""set ccb high \
2559 part physical address timeout\n",
2560 acb->host->host_no);
2561 return 1;
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002562 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002563 arcmsr_enable_outbound_ints(acb, intmask_org);
2564 }
2565 }
2566 break;
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002567
Nick Cheng1a4f5502007-09-13 17:26:40 +08002568 case ACB_ADAPTER_TYPE_B: {
2569 unsigned long post_queue_phyaddr;
Al Viro80da1ad2007-10-29 05:08:28 +00002570 uint32_t __iomem *rwbuffer;
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002571
Al Viro80da1ad2007-10-29 05:08:28 +00002572 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002573 uint32_t intmask_org;
2574 intmask_org = arcmsr_disable_outbound_ints(acb);
2575 reg->postq_index = 0;
2576 reg->doneq_index = 0;
Nick Chengae52e7f2010-06-18 15:39:12 +08002577 writel(ARCMSR_MESSAGE_SET_POST_WINDOW, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002578 if (!arcmsr_hbb_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002579 printk(KERN_NOTICE "arcmsr%d:can not set diver mode\n", \
2580 acb->host->host_no);
2581 return 1;
2582 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002583 post_queue_phyaddr = acb->dma_coherent_handle_hbb_mu;
2584 rwbuffer = reg->message_rwbuffer;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002585 /* driver "set config" signature */
2586 writel(ARCMSR_SIGNATURE_SET_CONFIG, rwbuffer++);
2587 /* normal should be zero */
Nick Chengae52e7f2010-06-18 15:39:12 +08002588 writel(cdb_phyaddr_hi32, rwbuffer++);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002589 /* postQ size (256 + 8)*4 */
2590 writel(post_queue_phyaddr, rwbuffer++);
2591 /* doneQ size (256 + 8)*4 */
2592 writel(post_queue_phyaddr + 1056, rwbuffer++);
2593 /* ccb maxQ size must be --> [(256 + 8)*4]*/
2594 writel(1056, rwbuffer);
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002595
Nick Chengae52e7f2010-06-18 15:39:12 +08002596 writel(ARCMSR_MESSAGE_SET_CONFIG, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002597 if (!arcmsr_hbb_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002598 printk(KERN_NOTICE "arcmsr%d: 'set command Q window' \
2599 timeout \n",acb->host->host_no);
2600 return 1;
2601 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002602 arcmsr_hbb_enable_driver_mode(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002603 arcmsr_enable_outbound_ints(acb, intmask_org);
2604 }
2605 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002606 case ACB_ADAPTER_TYPE_C: {
2607 if (cdb_phyaddr_hi32 != 0) {
2608 struct MessageUnit_C *reg = (struct MessageUnit_C *)acb->pmuC;
2609
2610 if (cdb_phyaddr_hi32 != 0) {
2611 unsigned char Retries = 0x00;
2612 do {
2613 printk(KERN_NOTICE "arcmsr%d: cdb_phyaddr_hi32=0x%x \n", acb->adapter_index, cdb_phyaddr_hi32);
2614 } while (Retries++ < 100);
2615 }
2616 writel(ARCMSR_SIGNATURE_SET_CONFIG, &reg->msgcode_rwbuffer[0]);
2617 writel(cdb_phyaddr_hi32, &reg->msgcode_rwbuffer[1]);
2618 writel(ARCMSR_INBOUND_MESG0_SET_CONFIG, &reg->inbound_msgaddr0);
2619 writel(ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE, &reg->inbound_doorbell);
2620 if (!arcmsr_hbc_wait_msgint_ready(acb)) {
2621 printk(KERN_NOTICE "arcmsr%d: 'set command Q window' \
2622 timeout \n", acb->host->host_no);
2623 return 1;
2624 }
2625 }
2626 }
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002627 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002628 return 0;
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002629}
2630
Nick Cheng1a4f5502007-09-13 17:26:40 +08002631static void arcmsr_wait_firmware_ready(struct AdapterControlBlock *acb)
2632{
2633 uint32_t firmware_state = 0;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002634 switch (acb->adapter_type) {
2635
2636 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00002637 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002638 do {
2639 firmware_state = readl(&reg->outbound_msgaddr1);
2640 } while ((firmware_state & ARCMSR_OUTBOUND_MESG1_FIRMWARE_OK) == 0);
2641 }
2642 break;
2643
2644 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00002645 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002646 do {
Nick Chengae52e7f2010-06-18 15:39:12 +08002647 firmware_state = readl(reg->iop2drv_doorbell);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002648 } while ((firmware_state & ARCMSR_MESSAGE_FIRMWARE_OK) == 0);
Nick Chengae52e7f2010-06-18 15:39:12 +08002649 writel(ARCMSR_DRV2IOP_END_OF_INTERRUPT, reg->drv2iop_doorbell);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002650 }
2651 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002652 case ACB_ADAPTER_TYPE_C: {
2653 struct MessageUnit_C *reg = (struct MessageUnit_C *)acb->pmuC;
2654 do {
2655 firmware_state = readl(&reg->outbound_msgaddr1);
2656 } while ((firmware_state & ARCMSR_HBCMU_MESSAGE_FIRMWARE_OK) == 0);
2657 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002658 }
2659}
2660
Nick Cheng36b83de2010-05-17 11:22:42 +08002661static void arcmsr_request_hba_device_map(struct AdapterControlBlock *acb)
2662{
2663 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002664 if (unlikely(atomic_read(&acb->rq_map_token) == 0) || ((acb->acb_flags & ACB_F_BUS_RESET) != 0 ) || ((acb->acb_flags & ACB_F_ABORT) != 0 )){
2665 return;
2666 } else {
2667 acb->fw_flag = FW_NORMAL;
2668 if (atomic_read(&acb->ante_token_value) == atomic_read(&acb->rq_map_token)){
2669 atomic_set(&acb->rq_map_token, 16);
2670 }
2671 atomic_set(&acb->ante_token_value, atomic_read(&acb->rq_map_token));
2672 if (atomic_dec_and_test(&acb->rq_map_token))
2673 return;
2674 writel(ARCMSR_INBOUND_MESG0_GET_CONFIG, &reg->inbound_msgaddr0);
2675 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
2676 }
2677 return;
2678}
2679
2680static void arcmsr_request_hbb_device_map(struct AdapterControlBlock *acb)
2681{
2682 struct MessageUnit_B __iomem *reg = acb->pmuB;
2683 if (unlikely(atomic_read(&acb->rq_map_token) == 0) || ((acb->acb_flags & ACB_F_BUS_RESET) != 0 ) || ((acb->acb_flags & ACB_F_ABORT) != 0 )){
2684 return;
2685 } else {
2686 acb->fw_flag = FW_NORMAL;
2687 if (atomic_read(&acb->ante_token_value) == atomic_read(&acb->rq_map_token)) {
2688 atomic_set(&acb->rq_map_token,16);
2689 }
2690 atomic_set(&acb->ante_token_value, atomic_read(&acb->rq_map_token));
2691 if(atomic_dec_and_test(&acb->rq_map_token))
2692 return;
2693 writel(ARCMSR_MESSAGE_GET_CONFIG, reg->drv2iop_doorbell);
2694 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
2695 }
2696 return;
2697}
2698
2699static void arcmsr_request_hbc_device_map(struct AdapterControlBlock *acb)
2700{
2701 struct MessageUnit_C __iomem *reg = acb->pmuC;
Nick Chengae52e7f2010-06-18 15:39:12 +08002702 if (unlikely(atomic_read(&acb->rq_map_token) == 0) || ((acb->acb_flags & ACB_F_BUS_RESET) != 0) || ((acb->acb_flags & ACB_F_ABORT) != 0)) {
2703 return;
Nick Cheng36b83de2010-05-17 11:22:42 +08002704 } else {
Nick Chengae52e7f2010-06-18 15:39:12 +08002705 acb->fw_flag = FW_NORMAL;
2706 if (atomic_read(&acb->ante_token_value) == atomic_read(&acb->rq_map_token)) {
Nick Cheng36b83de2010-05-17 11:22:42 +08002707 atomic_set(&acb->rq_map_token, 16);
2708 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002709 atomic_set(&acb->ante_token_value, atomic_read(&acb->rq_map_token));
2710 if (atomic_dec_and_test(&acb->rq_map_token))
2711 return;
Nick Cheng36b83de2010-05-17 11:22:42 +08002712 writel(ARCMSR_INBOUND_MESG0_GET_CONFIG, &reg->inbound_msgaddr0);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002713 writel(ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE, &reg->inbound_doorbell);
2714 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
Nick Cheng36b83de2010-05-17 11:22:42 +08002715 }
Nick Cheng36b83de2010-05-17 11:22:42 +08002716 return;
2717}
2718
2719static void arcmsr_request_device_map(unsigned long pacb)
2720{
2721 struct AdapterControlBlock *acb = (struct AdapterControlBlock *)pacb;
Nick Cheng36b83de2010-05-17 11:22:42 +08002722 switch (acb->adapter_type) {
2723 case ACB_ADAPTER_TYPE_A: {
2724 arcmsr_request_hba_device_map(acb);
2725 }
2726 break;
2727 case ACB_ADAPTER_TYPE_B: {
2728 arcmsr_request_hbb_device_map(acb);
2729 }
2730 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002731 case ACB_ADAPTER_TYPE_C: {
2732 arcmsr_request_hbc_device_map(acb);
2733 }
Nick Cheng36b83de2010-05-17 11:22:42 +08002734 }
2735}
2736
Nick Cheng1a4f5502007-09-13 17:26:40 +08002737static void arcmsr_start_hba_bgrb(struct AdapterControlBlock *acb)
2738{
Al Viro80da1ad2007-10-29 05:08:28 +00002739 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002740 acb->acb_flags |= ACB_F_MSG_START_BGRB;
2741 writel(ARCMSR_INBOUND_MESG0_START_BGRB, &reg->inbound_msgaddr0);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002742 if (!arcmsr_hba_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002743 printk(KERN_NOTICE "arcmsr%d: wait 'start adapter background \
2744 rebulid' timeout \n", acb->host->host_no);
2745 }
2746}
2747
2748static void arcmsr_start_hbb_bgrb(struct AdapterControlBlock *acb)
2749{
Al Viro80da1ad2007-10-29 05:08:28 +00002750 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002751 acb->acb_flags |= ACB_F_MSG_START_BGRB;
Nick Chengae52e7f2010-06-18 15:39:12 +08002752 writel(ARCMSR_MESSAGE_START_BGRB, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002753 if (!arcmsr_hbb_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002754 printk(KERN_NOTICE "arcmsr%d: wait 'start adapter background \
2755 rebulid' timeout \n",acb->host->host_no);
2756 }
2757}
2758
Nick Chengcdd3cb12010-07-13 20:03:04 +08002759static void arcmsr_start_hbc_bgrb(struct AdapterControlBlock *pACB)
2760{
2761 struct MessageUnit_C *phbcmu = (struct MessageUnit_C *)pACB->pmuC;
2762 pACB->acb_flags |= ACB_F_MSG_START_BGRB;
2763 writel(ARCMSR_INBOUND_MESG0_START_BGRB, &phbcmu->inbound_msgaddr0);
2764 writel(ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE, &phbcmu->inbound_doorbell);
2765 if (!arcmsr_hbc_wait_msgint_ready(pACB)) {
2766 printk(KERN_NOTICE "arcmsr%d: wait 'start adapter background \
2767 rebulid' timeout \n", pACB->host->host_no);
2768 }
2769 return;
2770}
Nick Cheng1a4f5502007-09-13 17:26:40 +08002771static void arcmsr_start_adapter_bgrb(struct AdapterControlBlock *acb)
2772{
2773 switch (acb->adapter_type) {
2774 case ACB_ADAPTER_TYPE_A:
2775 arcmsr_start_hba_bgrb(acb);
2776 break;
2777 case ACB_ADAPTER_TYPE_B:
2778 arcmsr_start_hbb_bgrb(acb);
2779 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002780 case ACB_ADAPTER_TYPE_C:
2781 arcmsr_start_hbc_bgrb(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002782 }
2783}
2784
2785static void arcmsr_clear_doorbell_queue_buffer(struct AdapterControlBlock *acb)
2786{
2787 switch (acb->adapter_type) {
2788 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00002789 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002790 uint32_t outbound_doorbell;
2791 /* empty doorbell Qbuffer if door bell ringed */
2792 outbound_doorbell = readl(&reg->outbound_doorbell);
2793 /*clear doorbell interrupt */
2794 writel(outbound_doorbell, &reg->outbound_doorbell);
2795 writel(ARCMSR_INBOUND_DRIVER_DATA_READ_OK, &reg->inbound_doorbell);
2796 }
2797 break;
2798
2799 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00002800 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002801 /*clear interrupt and message state*/
Nick Chengae52e7f2010-06-18 15:39:12 +08002802 writel(ARCMSR_MESSAGE_INT_CLEAR_PATTERN, reg->iop2drv_doorbell);
2803 writel(ARCMSR_DRV2IOP_DATA_READ_OK, reg->drv2iop_doorbell);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002804 /* let IOP know data has been read */
2805 }
2806 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002807 case ACB_ADAPTER_TYPE_C: {
2808 struct MessageUnit_C *reg = (struct MessageUnit_C *)acb->pmuC;
2809 uint32_t outbound_doorbell;
2810 /* empty doorbell Qbuffer if door bell ringed */
2811 outbound_doorbell = readl(&reg->outbound_doorbell);
2812 writel(outbound_doorbell, &reg->outbound_doorbell_clear);
2813 writel(ARCMSR_HBCMU_DRV2IOP_DATA_READ_OK, &reg->inbound_doorbell);
2814 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002815 }
2816}
Erich Chen1c57e862006-07-12 08:59:32 -07002817
Nick Cheng76d78302008-02-04 23:53:24 -08002818static void arcmsr_enable_eoi_mode(struct AdapterControlBlock *acb)
2819{
2820 switch (acb->adapter_type) {
2821 case ACB_ADAPTER_TYPE_A:
2822 return;
2823 case ACB_ADAPTER_TYPE_B:
2824 {
2825 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +08002826 writel(ARCMSR_MESSAGE_ACTIVE_EOI_MODE, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002827 if (!arcmsr_hbb_wait_msgint_ready(acb)) {
Nick Cheng76d78302008-02-04 23:53:24 -08002828 printk(KERN_NOTICE "ARCMSR IOP enables EOI_MODE TIMEOUT");
2829 return;
2830 }
2831 }
2832 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002833 case ACB_ADAPTER_TYPE_C:
2834 return;
Nick Cheng76d78302008-02-04 23:53:24 -08002835 }
2836 return;
2837}
2838
Nick Cheng36b83de2010-05-17 11:22:42 +08002839static void arcmsr_hardware_reset(struct AdapterControlBlock *acb)
2840{
2841 uint8_t value[64];
Nick Chengcdd3cb12010-07-13 20:03:04 +08002842 int i, count = 0;
2843 struct MessageUnit_A __iomem *pmuA = acb->pmuA;
2844 struct MessageUnit_C __iomem *pmuC = acb->pmuC;
2845 u32 temp = 0;
Nick Cheng36b83de2010-05-17 11:22:42 +08002846 /* backup pci config data */
Nick Chengcdd3cb12010-07-13 20:03:04 +08002847 printk(KERN_NOTICE "arcmsr%d: executing hw bus reset .....\n", acb->host->host_no);
Nick Cheng36b83de2010-05-17 11:22:42 +08002848 for (i = 0; i < 64; i++) {
2849 pci_read_config_byte(acb->pdev, i, &value[i]);
2850 }
2851 /* hardware reset signal */
Nick Chengae52e7f2010-06-18 15:39:12 +08002852 if ((acb->dev_id == 0x1680)) {
Nick Chengcdd3cb12010-07-13 20:03:04 +08002853 writel(ARCMSR_ARC1680_BUS_RESET, &pmuA->reserved1[0]);
2854 } else if ((acb->dev_id == 0x1880)) {
2855 do {
2856 count++;
2857 writel(0xF, &pmuC->write_sequence);
2858 writel(0x4, &pmuC->write_sequence);
2859 writel(0xB, &pmuC->write_sequence);
2860 writel(0x2, &pmuC->write_sequence);
2861 writel(0x7, &pmuC->write_sequence);
2862 writel(0xD, &pmuC->write_sequence);
2863 } while ((((temp = readl(&pmuC->host_diagnostic)) | ARCMSR_ARC1880_DiagWrite_ENABLE) == 0) && (count < 5));
2864 writel(ARCMSR_ARC1880_RESET_ADAPTER, &pmuC->host_diagnostic);
Nick Chengae52e7f2010-06-18 15:39:12 +08002865 } else {
Nick Chengcdd3cb12010-07-13 20:03:04 +08002866 pci_write_config_byte(acb->pdev, 0x84, 0x20);
Nick Chengae52e7f2010-06-18 15:39:12 +08002867 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08002868 msleep(2000);
Nick Cheng36b83de2010-05-17 11:22:42 +08002869 /* write back pci config data */
2870 for (i = 0; i < 64; i++) {
2871 pci_write_config_byte(acb->pdev, i, value[i]);
2872 }
2873 msleep(1000);
2874 return;
2875}
Erich Chen1c57e862006-07-12 08:59:32 -07002876static void arcmsr_iop_init(struct AdapterControlBlock *acb)
2877{
Nick Cheng1a4f5502007-09-13 17:26:40 +08002878 uint32_t intmask_org;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002879 /* disable all outbound interrupt */
2880 intmask_org = arcmsr_disable_outbound_ints(acb);
Nick Cheng76d78302008-02-04 23:53:24 -08002881 arcmsr_wait_firmware_ready(acb);
2882 arcmsr_iop_confirm(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002883 /*start background rebuild*/
2884 arcmsr_start_adapter_bgrb(acb);
2885 /* empty doorbell Qbuffer if door bell ringed */
2886 arcmsr_clear_doorbell_queue_buffer(acb);
Nick Cheng76d78302008-02-04 23:53:24 -08002887 arcmsr_enable_eoi_mode(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002888 /* enable outbound Post Queue,outbound doorbell Interrupt */
2889 arcmsr_enable_outbound_ints(acb, intmask_org);
Erich Chen1c57e862006-07-12 08:59:32 -07002890 acb->acb_flags |= ACB_F_IOP_INITED;
2891}
2892
Nick Cheng36b83de2010-05-17 11:22:42 +08002893static uint8_t arcmsr_iop_reset(struct AdapterControlBlock *acb)
Erich Chen1c57e862006-07-12 08:59:32 -07002894{
Erich Chen1c57e862006-07-12 08:59:32 -07002895 struct CommandControlBlock *ccb;
2896 uint32_t intmask_org;
Nick Cheng36b83de2010-05-17 11:22:42 +08002897 uint8_t rtnval = 0x00;
Erich Chen1c57e862006-07-12 08:59:32 -07002898 int i = 0;
Erich Chen1c57e862006-07-12 08:59:32 -07002899 if (atomic_read(&acb->ccboutstandingcount) != 0) {
Erich Chen1c57e862006-07-12 08:59:32 -07002900 /* disable all outbound interrupt */
2901 intmask_org = arcmsr_disable_outbound_ints(acb);
Nick Cheng36b83de2010-05-17 11:22:42 +08002902 /* talk to iop 331 outstanding command aborted */
2903 rtnval = arcmsr_abort_allcmd(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07002904 /* clear all outbound posted Q */
Nick Cheng1a4f5502007-09-13 17:26:40 +08002905 arcmsr_done4abort_postqueue(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07002906 for (i = 0; i < ARCMSR_MAX_FREECCB_NUM; i++) {
2907 ccb = acb->pccb_pool[i];
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002908 if (ccb->startdone == ARCMSR_CCB_START) {
Nick Chengae52e7f2010-06-18 15:39:12 +08002909 arcmsr_ccb_complete(ccb);
Erich Chen1c57e862006-07-12 08:59:32 -07002910 }
2911 }
Nick Cheng36b83de2010-05-17 11:22:42 +08002912 atomic_set(&acb->ccboutstandingcount, 0);
Erich Chen1c57e862006-07-12 08:59:32 -07002913 /* enable all outbound interrupt */
2914 arcmsr_enable_outbound_ints(acb, intmask_org);
Nick Cheng36b83de2010-05-17 11:22:42 +08002915 return rtnval;
Erich Chen1c57e862006-07-12 08:59:32 -07002916 }
Nick Cheng36b83de2010-05-17 11:22:42 +08002917 return rtnval;
Erich Chen1c57e862006-07-12 08:59:32 -07002918}
2919
2920static int arcmsr_bus_reset(struct scsi_cmnd *cmd)
2921{
2922 struct AdapterControlBlock *acb =
2923 (struct AdapterControlBlock *)cmd->device->host->hostdata;
Nick Chengae52e7f2010-06-18 15:39:12 +08002924 uint32_t intmask_org, outbound_doorbell;
2925 int retry_count = 0;
2926 int rtn = FAILED;
Nick Chengae52e7f2010-06-18 15:39:12 +08002927 acb = (struct AdapterControlBlock *) cmd->device->host->hostdata;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002928 printk(KERN_ERR "arcmsr: executing bus reset eh.....num_resets = %d, num_aborts = %d \n", acb->num_resets, acb->num_aborts);
Nick Cheng36b83de2010-05-17 11:22:42 +08002929 acb->num_resets++;
Nick Cheng36b83de2010-05-17 11:22:42 +08002930
Nick Chengcdd3cb12010-07-13 20:03:04 +08002931 switch(acb->adapter_type){
2932 case ACB_ADAPTER_TYPE_A:{
2933 if (acb->acb_flags & ACB_F_BUS_RESET){
Nick Chengae52e7f2010-06-18 15:39:12 +08002934 long timeout;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002935 printk(KERN_ERR "arcmsr: there is an bus reset eh proceeding.......\n");
2936 timeout = wait_event_timeout(wait_q, (acb->acb_flags & ACB_F_BUS_RESET) == 0, 220*HZ);
Nick Chengae52e7f2010-06-18 15:39:12 +08002937 if (timeout) {
2938 return SUCCESS;
2939 }
2940 }
2941 acb->acb_flags |= ACB_F_BUS_RESET;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002942 if (!arcmsr_iop_reset(acb)) {
Nick Chengae52e7f2010-06-18 15:39:12 +08002943 struct MessageUnit_A __iomem *reg;
2944 reg = acb->pmuA;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002945 arcmsr_hardware_reset(acb);
2946 acb->acb_flags &= ~ACB_F_IOP_INITED;
Nick Cheng36b83de2010-05-17 11:22:42 +08002947sleep_again:
Nick Chengcdd3cb12010-07-13 20:03:04 +08002948 arcmsr_sleep_for_bus_reset(cmd);
Nick Chengae52e7f2010-06-18 15:39:12 +08002949 if ((readl(&reg->outbound_msgaddr1) & ARCMSR_OUTBOUND_MESG1_FIRMWARE_OK) == 0) {
Nick Chengcdd3cb12010-07-13 20:03:04 +08002950 printk(KERN_ERR "arcmsr%d: waiting for hw bus reset return, retry=%d \n", acb->host->host_no, retry_count);
2951 if (retry_count > retrycount) {
Nick Chengae52e7f2010-06-18 15:39:12 +08002952 acb->fw_flag = FW_DEADLOCK;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002953 printk(KERN_ERR "arcmsr%d: waiting for hw bus reset return, RETRY TERMINATED!! \n", acb->host->host_no);
Nick Chengae52e7f2010-06-18 15:39:12 +08002954 return FAILED;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002955 }
2956 retry_count++;
2957 goto sleep_again;
2958 }
2959 acb->acb_flags |= ACB_F_IOP_INITED;
2960 /* disable all outbound interrupt */
2961 intmask_org = arcmsr_disable_outbound_ints(acb);
Nick Chengae52e7f2010-06-18 15:39:12 +08002962 arcmsr_get_firmware_spec(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002963 arcmsr_start_adapter_bgrb(acb);
2964 /* clear Qbuffer if door bell ringed */
2965 outbound_doorbell = readl(&reg->outbound_doorbell);
2966 writel(outbound_doorbell, &reg->outbound_doorbell); /*clear interrupt */
2967 writel(ARCMSR_INBOUND_DRIVER_DATA_READ_OK, &reg->inbound_doorbell);
2968 /* enable outbound Post Queue,outbound doorbell Interrupt */
2969 arcmsr_enable_outbound_ints(acb, intmask_org);
2970 atomic_set(&acb->rq_map_token, 16);
Nick Chengae52e7f2010-06-18 15:39:12 +08002971 atomic_set(&acb->ante_token_value, 16);
2972 acb->fw_flag = FW_NORMAL;
2973 init_timer(&acb->eternal_timer);
2974 acb->eternal_timer.expires = jiffies + msecs_to_jiffies(6*HZ);
2975 acb->eternal_timer.data = (unsigned long) acb;
2976 acb->eternal_timer.function = &arcmsr_request_device_map;
2977 add_timer(&acb->eternal_timer);
2978 acb->acb_flags &= ~ACB_F_BUS_RESET;
2979 rtn = SUCCESS;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002980 printk(KERN_ERR "arcmsr: scsi bus reset eh returns with success\n");
Nick Chengae52e7f2010-06-18 15:39:12 +08002981 } else {
2982 acb->acb_flags &= ~ACB_F_BUS_RESET;
2983 if (atomic_read(&acb->rq_map_token) == 0) {
2984 atomic_set(&acb->rq_map_token, 16);
2985 atomic_set(&acb->ante_token_value, 16);
2986 acb->fw_flag = FW_NORMAL;
Nick Chengae52e7f2010-06-18 15:39:12 +08002987 init_timer(&acb->eternal_timer);
2988 acb->eternal_timer.expires = jiffies + msecs_to_jiffies(6*HZ);
2989 acb->eternal_timer.data = (unsigned long) acb;
2990 acb->eternal_timer.function = &arcmsr_request_device_map;
2991 add_timer(&acb->eternal_timer);
2992 } else {
2993 atomic_set(&acb->rq_map_token, 16);
2994 atomic_set(&acb->ante_token_value, 16);
2995 acb->fw_flag = FW_NORMAL;
2996 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6*HZ));
2997 }
2998 rtn = SUCCESS;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002999 }
3000 break;
3001 }
3002 case ACB_ADAPTER_TYPE_B:{
3003 acb->acb_flags |= ACB_F_BUS_RESET;
3004 if (!arcmsr_iop_reset(acb)) {
3005 acb->acb_flags &= ~ACB_F_BUS_RESET;
3006 rtn = FAILED;
3007 } else {
3008 acb->acb_flags &= ~ACB_F_BUS_RESET;
3009 if (atomic_read(&acb->rq_map_token) == 0) {
3010 atomic_set(&acb->rq_map_token, 16);
3011 atomic_set(&acb->ante_token_value, 16);
3012 acb->fw_flag = FW_NORMAL;
3013 init_timer(&acb->eternal_timer);
3014 acb->eternal_timer.expires = jiffies + msecs_to_jiffies(6*HZ);
3015 acb->eternal_timer.data = (unsigned long) acb;
3016 acb->eternal_timer.function = &arcmsr_request_device_map;
3017 add_timer(&acb->eternal_timer);
3018 } else {
3019 atomic_set(&acb->rq_map_token, 16);
3020 atomic_set(&acb->ante_token_value, 16);
3021 acb->fw_flag = FW_NORMAL;
3022 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6*HZ));
3023 }
3024 rtn = SUCCESS;
3025 }
3026 break;
3027 }
3028 case ACB_ADAPTER_TYPE_C:{
3029 if (acb->acb_flags & ACB_F_BUS_RESET) {
3030 long timeout;
3031 printk(KERN_ERR "arcmsr: there is an bus reset eh proceeding.......\n");
3032 timeout = wait_event_timeout(wait_q, (acb->acb_flags & ACB_F_BUS_RESET) == 0, 220*HZ);
3033 if (timeout) {
3034 return SUCCESS;
3035 }
3036 }
3037 acb->acb_flags |= ACB_F_BUS_RESET;
3038 if (!arcmsr_iop_reset(acb)) {
3039 struct MessageUnit_C __iomem *reg;
3040 reg = acb->pmuC;
3041 arcmsr_hardware_reset(acb);
3042 acb->acb_flags &= ~ACB_F_IOP_INITED;
3043sleep:
3044 arcmsr_sleep_for_bus_reset(cmd);
3045 if ((readl(&reg->host_diagnostic) & 0x04) != 0) {
3046 printk(KERN_ERR "arcmsr%d: waiting for hw bus reset return, retry=%d \n", acb->host->host_no, retry_count);
3047 if (retry_count > retrycount) {
3048 acb->fw_flag = FW_DEADLOCK;
3049 printk(KERN_ERR "arcmsr%d: waiting for hw bus reset return, RETRY TERMINATED!! \n", acb->host->host_no);
3050 return FAILED;
3051 }
3052 retry_count++;
3053 goto sleep;
3054 }
3055 acb->acb_flags |= ACB_F_IOP_INITED;
3056 /* disable all outbound interrupt */
3057 intmask_org = arcmsr_disable_outbound_ints(acb);
3058 arcmsr_get_firmware_spec(acb);
3059 arcmsr_start_adapter_bgrb(acb);
3060 /* clear Qbuffer if door bell ringed */
3061 outbound_doorbell = readl(&reg->outbound_doorbell);
3062 writel(outbound_doorbell, &reg->outbound_doorbell_clear); /*clear interrupt */
3063 writel(ARCMSR_HBCMU_DRV2IOP_DATA_READ_OK, &reg->inbound_doorbell);
3064 /* enable outbound Post Queue,outbound doorbell Interrupt */
3065 arcmsr_enable_outbound_ints(acb, intmask_org);
3066 atomic_set(&acb->rq_map_token, 16);
3067 atomic_set(&acb->ante_token_value, 16);
3068 acb->fw_flag = FW_NORMAL;
3069 init_timer(&acb->eternal_timer);
3070 acb->eternal_timer.expires = jiffies + msecs_to_jiffies(6 * HZ);
3071 acb->eternal_timer.data = (unsigned long) acb;
3072 acb->eternal_timer.function = &arcmsr_request_device_map;
3073 add_timer(&acb->eternal_timer);
3074 acb->acb_flags &= ~ACB_F_BUS_RESET;
3075 rtn = SUCCESS;
3076 printk(KERN_ERR "arcmsr: scsi bus reset eh returns with success\n");
3077 } else {
3078 acb->acb_flags &= ~ACB_F_BUS_RESET;
3079 if (atomic_read(&acb->rq_map_token) == 0) {
3080 atomic_set(&acb->rq_map_token, 16);
3081 atomic_set(&acb->ante_token_value, 16);
3082 acb->fw_flag = FW_NORMAL;
3083 init_timer(&acb->eternal_timer);
3084 acb->eternal_timer.expires = jiffies + msecs_to_jiffies(6*HZ);
3085 acb->eternal_timer.data = (unsigned long) acb;
3086 acb->eternal_timer.function = &arcmsr_request_device_map;
3087 add_timer(&acb->eternal_timer);
3088 } else {
3089 atomic_set(&acb->rq_map_token, 16);
3090 atomic_set(&acb->ante_token_value, 16);
3091 acb->fw_flag = FW_NORMAL;
3092 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6*HZ));
3093 }
3094 rtn = SUCCESS;
3095 }
3096 break;
Nick Chengae52e7f2010-06-18 15:39:12 +08003097 }
3098 }
3099 return rtn;
Erich Chen1c57e862006-07-12 08:59:32 -07003100}
3101
Nick Chengae52e7f2010-06-18 15:39:12 +08003102static int arcmsr_abort_one_cmd(struct AdapterControlBlock *acb,
Erich Chen1c57e862006-07-12 08:59:32 -07003103 struct CommandControlBlock *ccb)
3104{
Nick Chengae52e7f2010-06-18 15:39:12 +08003105 int rtn;
Nick Chengae52e7f2010-06-18 15:39:12 +08003106 rtn = arcmsr_polling_ccbdone(acb, ccb);
Nick Chengae52e7f2010-06-18 15:39:12 +08003107 return rtn;
Erich Chen1c57e862006-07-12 08:59:32 -07003108}
3109
3110static int arcmsr_abort(struct scsi_cmnd *cmd)
3111{
3112 struct AdapterControlBlock *acb =
3113 (struct AdapterControlBlock *)cmd->device->host->hostdata;
3114 int i = 0;
Nick Chengae52e7f2010-06-18 15:39:12 +08003115 int rtn = FAILED;
Erich Chen1c57e862006-07-12 08:59:32 -07003116 printk(KERN_NOTICE
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08003117 "arcmsr%d: abort device command of scsi id = %d lun = %d \n",
Erich Chen1c57e862006-07-12 08:59:32 -07003118 acb->host->host_no, cmd->device->id, cmd->device->lun);
Nick Chengae52e7f2010-06-18 15:39:12 +08003119 acb->acb_flags |= ACB_F_ABORT;
Erich Chen1c57e862006-07-12 08:59:32 -07003120 acb->num_aborts++;
Erich Chen1c57e862006-07-12 08:59:32 -07003121 /*
3122 ************************************************
3123 ** the all interrupt service routine is locked
3124 ** we need to handle it as soon as possible and exit
3125 ************************************************
3126 */
3127 if (!atomic_read(&acb->ccboutstandingcount))
Nick Chengae52e7f2010-06-18 15:39:12 +08003128 return rtn;
Erich Chen1c57e862006-07-12 08:59:32 -07003129
3130 for (i = 0; i < ARCMSR_MAX_FREECCB_NUM; i++) {
3131 struct CommandControlBlock *ccb = acb->pccb_pool[i];
3132 if (ccb->startdone == ARCMSR_CCB_START && ccb->pcmd == cmd) {
Nick Chengae52e7f2010-06-18 15:39:12 +08003133 ccb->startdone = ARCMSR_CCB_ABORTED;
3134 rtn = arcmsr_abort_one_cmd(acb, ccb);
Erich Chen1c57e862006-07-12 08:59:32 -07003135 break;
3136 }
3137 }
Nick Chengae52e7f2010-06-18 15:39:12 +08003138 acb->acb_flags &= ~ACB_F_ABORT;
3139 return rtn;
Erich Chen1c57e862006-07-12 08:59:32 -07003140}
3141
3142static const char *arcmsr_info(struct Scsi_Host *host)
3143{
3144 struct AdapterControlBlock *acb =
3145 (struct AdapterControlBlock *) host->hostdata;
3146 static char buf[256];
3147 char *type;
3148 int raid6 = 1;
Erich Chen1c57e862006-07-12 08:59:32 -07003149 switch (acb->pdev->device) {
3150 case PCI_DEVICE_ID_ARECA_1110:
Nick Cheng1a4f5502007-09-13 17:26:40 +08003151 case PCI_DEVICE_ID_ARECA_1200:
3152 case PCI_DEVICE_ID_ARECA_1202:
Erich Chen1c57e862006-07-12 08:59:32 -07003153 case PCI_DEVICE_ID_ARECA_1210:
3154 raid6 = 0;
3155 /*FALLTHRU*/
3156 case PCI_DEVICE_ID_ARECA_1120:
3157 case PCI_DEVICE_ID_ARECA_1130:
3158 case PCI_DEVICE_ID_ARECA_1160:
3159 case PCI_DEVICE_ID_ARECA_1170:
Nick Cheng1a4f5502007-09-13 17:26:40 +08003160 case PCI_DEVICE_ID_ARECA_1201:
Erich Chen1c57e862006-07-12 08:59:32 -07003161 case PCI_DEVICE_ID_ARECA_1220:
3162 case PCI_DEVICE_ID_ARECA_1230:
3163 case PCI_DEVICE_ID_ARECA_1260:
3164 case PCI_DEVICE_ID_ARECA_1270:
3165 case PCI_DEVICE_ID_ARECA_1280:
3166 type = "SATA";
3167 break;
3168 case PCI_DEVICE_ID_ARECA_1380:
3169 case PCI_DEVICE_ID_ARECA_1381:
3170 case PCI_DEVICE_ID_ARECA_1680:
3171 case PCI_DEVICE_ID_ARECA_1681:
Nick Chengcdd3cb12010-07-13 20:03:04 +08003172 case PCI_DEVICE_ID_ARECA_1880:
Erich Chen1c57e862006-07-12 08:59:32 -07003173 type = "SAS";
3174 break;
3175 default:
3176 type = "X-TYPE";
3177 break;
3178 }
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08003179 sprintf(buf, "Areca %s Host Adapter RAID Controller%s\n %s",
Erich Chen1c57e862006-07-12 08:59:32 -07003180 type, raid6 ? "( RAID6 capable)" : "",
3181 ARCMSR_DRIVER_VERSION);
3182 return buf;
3183}