blob: 33c52bc2c7b461033b8845e7e538f072f9ab671f [file] [log] [blame]
Erich Chen1c57e862006-07-12 08:59:32 -07001/*
2*******************************************************************************
3** O.S : Linux
4** FILE NAME : arcmsr_hba.c
NickCheng97b99122011-01-06 17:32:41 +08005** BY : Nick Cheng
Erich Chen1c57e862006-07-12 08:59:32 -07006** 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>
David Millera7c89622010-08-16 21:20:07 -070059#include <linux/slab.h>
Erich Chen1c57e862006-07-12 08:59:32 -070060#include <linux/pci.h>
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +080061#include <linux/aer.h>
Erich Chen1c57e862006-07-12 08:59:32 -070062#include <asm/dma.h>
63#include <asm/io.h>
Erich Chen1c57e862006-07-12 08:59:32 -070064#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);
Tomas Henzl8b7eb862011-04-29 16:28:24 +020077
78#define ARCMSR_SLEEPTIME 10
79#define ARCMSR_RETRYCOUNT 12
80
Nick Chengae52e7f2010-06-18 15:39:12 +080081wait_queue_head_t wait_q;
Nick Cheng1a4f5502007-09-13 17:26:40 +080082static int arcmsr_iop_message_xfer(struct AdapterControlBlock *acb,
83 struct scsi_cmnd *cmd);
84static int arcmsr_iop_confirm(struct AdapterControlBlock *acb);
Erich Chen1c57e862006-07-12 08:59:32 -070085static int arcmsr_abort(struct scsi_cmnd *);
86static int arcmsr_bus_reset(struct scsi_cmnd *);
87static int arcmsr_bios_param(struct scsi_device *sdev,
Nick Cheng1a4f5502007-09-13 17:26:40 +080088 struct block_device *bdev, sector_t capacity, int *info);
Jeff Garzikf2812332010-11-16 02:10:29 -050089static int arcmsr_queue_command(struct Scsi_Host *h, struct scsi_cmnd *cmd);
Erich Chen1c57e862006-07-12 08:59:32 -070090static int arcmsr_probe(struct pci_dev *pdev,
91 const struct pci_device_id *id);
92static void arcmsr_remove(struct pci_dev *pdev);
93static void arcmsr_shutdown(struct pci_dev *pdev);
94static void arcmsr_iop_init(struct AdapterControlBlock *acb);
95static void arcmsr_free_ccb_pool(struct AdapterControlBlock *acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +080096static u32 arcmsr_disable_outbound_ints(struct AdapterControlBlock *acb);
Erich Chen1c57e862006-07-12 08:59:32 -070097static void arcmsr_stop_adapter_bgrb(struct AdapterControlBlock *acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +080098static void arcmsr_flush_hba_cache(struct AdapterControlBlock *acb);
99static void arcmsr_flush_hbb_cache(struct AdapterControlBlock *acb);
Nick Cheng36b83de2010-05-17 11:22:42 +0800100static void arcmsr_request_device_map(unsigned long pacb);
101static void arcmsr_request_hba_device_map(struct AdapterControlBlock *acb);
102static void arcmsr_request_hbb_device_map(struct AdapterControlBlock *acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800103static void arcmsr_request_hbc_device_map(struct AdapterControlBlock *acb);
Nick Cheng36b83de2010-05-17 11:22:42 +0800104static void arcmsr_message_isr_bh_fn(struct work_struct *work);
Nick Chengae52e7f2010-06-18 15:39:12 +0800105static bool arcmsr_get_firmware_spec(struct AdapterControlBlock *acb);
Nick Cheng36b83de2010-05-17 11:22:42 +0800106static void arcmsr_start_adapter_bgrb(struct AdapterControlBlock *acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800107static void arcmsr_hbc_message_isr(struct AdapterControlBlock *pACB);
108static void arcmsr_hardware_reset(struct AdapterControlBlock *acb);
Erich Chen1c57e862006-07-12 08:59:32 -0700109static const char *arcmsr_info(struct Scsi_Host *);
110static irqreturn_t arcmsr_interrupt(struct AdapterControlBlock *acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800111static int arcmsr_adjust_disk_queue_depth(struct scsi_device *sdev,
Mike Christiee881a172009-10-15 17:46:39 -0700112 int queue_depth, int reason)
Erich Chen1c57e862006-07-12 08:59:32 -0700113{
Mike Christiee881a172009-10-15 17:46:39 -0700114 if (reason != SCSI_QDEPTH_DEFAULT)
115 return -EOPNOTSUPP;
116
Erich Chen1c57e862006-07-12 08:59:32 -0700117 if (queue_depth > ARCMSR_MAX_CMD_PERLUN)
118 queue_depth = ARCMSR_MAX_CMD_PERLUN;
119 scsi_adjust_queue_depth(sdev, MSG_ORDERED_TAG, queue_depth);
120 return queue_depth;
121}
122
123static struct scsi_host_template arcmsr_scsi_host_template = {
124 .module = THIS_MODULE,
Nick Chengcdd3cb12010-07-13 20:03:04 +0800125 .name = "ARCMSR ARECA SATA/SAS RAID Controller"
126 ARCMSR_DRIVER_VERSION,
Erich Chen1c57e862006-07-12 08:59:32 -0700127 .info = arcmsr_info,
128 .queuecommand = arcmsr_queue_command,
Nick Chengcdd3cb12010-07-13 20:03:04 +0800129 .eh_abort_handler = arcmsr_abort,
Erich Chen1c57e862006-07-12 08:59:32 -0700130 .eh_bus_reset_handler = arcmsr_bus_reset,
131 .bios_param = arcmsr_bios_param,
132 .change_queue_depth = arcmsr_adjust_disk_queue_depth,
Nick Chengae52e7f2010-06-18 15:39:12 +0800133 .can_queue = ARCMSR_MAX_FREECCB_NUM,
Nick Chengcdd3cb12010-07-13 20:03:04 +0800134 .this_id = ARCMSR_SCSI_INITIATOR_ID,
135 .sg_tablesize = ARCMSR_DEFAULT_SG_ENTRIES,
136 .max_sectors = ARCMSR_MAX_XFER_SECTORS_C,
Erich Chen1c57e862006-07-12 08:59:32 -0700137 .cmd_per_lun = ARCMSR_MAX_CMD_PERLUN,
138 .use_clustering = ENABLE_CLUSTERING,
139 .shost_attrs = arcmsr_host_attrs,
140};
Erich Chen1c57e862006-07-12 08:59:32 -0700141static struct pci_device_id arcmsr_device_id_table[] = {
142 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1110)},
143 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1120)},
144 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1130)},
145 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1160)},
146 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1170)},
Nick Cheng1a4f5502007-09-13 17:26:40 +0800147 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1200)},
148 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1201)},
149 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1202)},
Erich Chen1c57e862006-07-12 08:59:32 -0700150 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1210)},
151 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1220)},
152 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1230)},
153 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1260)},
154 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1270)},
155 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1280)},
156 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1380)},
157 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1381)},
158 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1680)},
159 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1681)},
Nick Chengae52e7f2010-06-18 15:39:12 +0800160 {PCI_DEVICE(PCI_VENDOR_ID_ARECA, PCI_DEVICE_ID_ARECA_1880)},
Erich Chen1c57e862006-07-12 08:59:32 -0700161 {0, 0}, /* Terminating entry */
162};
163MODULE_DEVICE_TABLE(pci, arcmsr_device_id_table);
164static struct pci_driver arcmsr_pci_driver = {
165 .name = "arcmsr",
Nick Chengcdd3cb12010-07-13 20:03:04 +0800166 .id_table = arcmsr_device_id_table,
Erich Chen1c57e862006-07-12 08:59:32 -0700167 .probe = arcmsr_probe,
168 .remove = arcmsr_remove,
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +0800169 .shutdown = arcmsr_shutdown,
Erich Chen1c57e862006-07-12 08:59:32 -0700170};
Nick Chengcdd3cb12010-07-13 20:03:04 +0800171/*
172****************************************************************************
173****************************************************************************
174*/
Nick Chengcdd3cb12010-07-13 20:03:04 +0800175
176static void arcmsr_free_hbb_mu(struct AdapterControlBlock *acb)
Nick Chengae52e7f2010-06-18 15:39:12 +0800177{
178 switch (acb->adapter_type) {
179 case ACB_ADAPTER_TYPE_A:
Nick Chengcdd3cb12010-07-13 20:03:04 +0800180 case ACB_ADAPTER_TYPE_C:
Nick Chengae52e7f2010-06-18 15:39:12 +0800181 break;
182 case ACB_ADAPTER_TYPE_B:{
Nick Chengcdd3cb12010-07-13 20:03:04 +0800183 dma_free_coherent(&acb->pdev->dev,
184 sizeof(struct MessageUnit_B),
185 acb->pmuB, acb->dma_coherent_handle_hbb_mu);
Nick Chengae52e7f2010-06-18 15:39:12 +0800186 }
187 }
188}
189
190static bool arcmsr_remap_pciregion(struct AdapterControlBlock *acb)
191{
192 struct pci_dev *pdev = acb->pdev;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800193 switch (acb->adapter_type){
Nick Chengae52e7f2010-06-18 15:39:12 +0800194 case ACB_ADAPTER_TYPE_A:{
Nick Chengcdd3cb12010-07-13 20:03:04 +0800195 acb->pmuA = ioremap(pci_resource_start(pdev,0), pci_resource_len(pdev,0));
Nick Chengae52e7f2010-06-18 15:39:12 +0800196 if (!acb->pmuA) {
197 printk(KERN_NOTICE "arcmsr%d: memory mapping region fail \n", acb->host->host_no);
198 return false;
199 }
200 break;
201 }
202 case ACB_ADAPTER_TYPE_B:{
203 void __iomem *mem_base0, *mem_base1;
204 mem_base0 = ioremap(pci_resource_start(pdev, 0), pci_resource_len(pdev, 0));
205 if (!mem_base0) {
206 printk(KERN_NOTICE "arcmsr%d: memory mapping region fail \n", acb->host->host_no);
207 return false;
208 }
209 mem_base1 = ioremap(pci_resource_start(pdev, 2), pci_resource_len(pdev, 2));
210 if (!mem_base1) {
211 iounmap(mem_base0);
212 printk(KERN_NOTICE "arcmsr%d: memory mapping region fail \n", acb->host->host_no);
213 return false;
214 }
215 acb->mem_base0 = mem_base0;
216 acb->mem_base1 = mem_base1;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800217 break;
218 }
219 case ACB_ADAPTER_TYPE_C:{
220 acb->pmuC = ioremap_nocache(pci_resource_start(pdev, 1), pci_resource_len(pdev, 1));
221 if (!acb->pmuC) {
222 printk(KERN_NOTICE "arcmsr%d: memory mapping region fail \n", acb->host->host_no);
223 return false;
224 }
225 if (readl(&acb->pmuC->outbound_doorbell) & ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE) {
226 writel(ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE_DOORBELL_CLEAR, &acb->pmuC->outbound_doorbell_clear);/*clear interrupt*/
227 return true;
228 }
229 break;
Nick Chengae52e7f2010-06-18 15:39:12 +0800230 }
231 }
232 return true;
233}
234
235static void arcmsr_unmap_pciregion(struct AdapterControlBlock *acb)
236{
237 switch (acb->adapter_type) {
Nick Chengcdd3cb12010-07-13 20:03:04 +0800238 case ACB_ADAPTER_TYPE_A:{
239 iounmap(acb->pmuA);
240 }
241 break;
242 case ACB_ADAPTER_TYPE_B:{
243 iounmap(acb->mem_base0);
244 iounmap(acb->mem_base1);
245 }
246
247 break;
248 case ACB_ADAPTER_TYPE_C:{
249 iounmap(acb->pmuC);
250 }
Nick Chengae52e7f2010-06-18 15:39:12 +0800251 }
252}
253
David Howells7d12e782006-10-05 14:55:46 +0100254static irqreturn_t arcmsr_do_interrupt(int irq, void *dev_id)
Erich Chen1c57e862006-07-12 08:59:32 -0700255{
256 irqreturn_t handle_state;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800257 struct AdapterControlBlock *acb = dev_id;
Erich Chen1c57e862006-07-12 08:59:32 -0700258
Erich Chen1c57e862006-07-12 08:59:32 -0700259 handle_state = arcmsr_interrupt(acb);
Erich Chen1c57e862006-07-12 08:59:32 -0700260 return handle_state;
261}
262
263static int arcmsr_bios_param(struct scsi_device *sdev,
264 struct block_device *bdev, sector_t capacity, int *geom)
265{
266 int ret, heads, sectors, cylinders, total_capacity;
267 unsigned char *buffer;/* return copy of block device's partition table */
268
269 buffer = scsi_bios_ptable(bdev);
270 if (buffer) {
271 ret = scsi_partsize(buffer, capacity, &geom[2], &geom[0], &geom[1]);
272 kfree(buffer);
273 if (ret != -1)
274 return ret;
275 }
276 total_capacity = capacity;
277 heads = 64;
278 sectors = 32;
279 cylinders = total_capacity / (heads * sectors);
280 if (cylinders > 1024) {
281 heads = 255;
282 sectors = 63;
283 cylinders = total_capacity / (heads * sectors);
284 }
285 geom[0] = heads;
286 geom[1] = sectors;
287 geom[2] = cylinders;
288 return 0;
289}
290
Nick Cheng1a4f5502007-09-13 17:26:40 +0800291static void arcmsr_define_adapter_type(struct AdapterControlBlock *acb)
Erich Chen1c57e862006-07-12 08:59:32 -0700292{
293 struct pci_dev *pdev = acb->pdev;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800294 u16 dev_id;
295 pci_read_config_word(pdev, PCI_DEVICE_ID, &dev_id);
Nick Chengae52e7f2010-06-18 15:39:12 +0800296 acb->dev_id = dev_id;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800297 switch (dev_id) {
Nick Chengcdd3cb12010-07-13 20:03:04 +0800298 case 0x1880: {
299 acb->adapter_type = ACB_ADAPTER_TYPE_C;
300 }
301 break;
302 case 0x1201: {
Nick Cheng1a4f5502007-09-13 17:26:40 +0800303 acb->adapter_type = ACB_ADAPTER_TYPE_B;
304 }
305 break;
Erich Chen1c57e862006-07-12 08:59:32 -0700306
Nick Chengcdd3cb12010-07-13 20:03:04 +0800307 default: acb->adapter_type = ACB_ADAPTER_TYPE_A;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800308 }
Tomas Henzl8b7eb862011-04-29 16:28:24 +0200309}
Nick Cheng1a4f5502007-09-13 17:26:40 +0800310
Nick Chengae52e7f2010-06-18 15:39:12 +0800311static uint8_t arcmsr_hba_wait_msgint_ready(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +0800312{
Nick Chengae52e7f2010-06-18 15:39:12 +0800313 struct MessageUnit_A __iomem *reg = acb->pmuA;
Tomas Henzl8b7eb862011-04-29 16:28:24 +0200314 int i;
Nick Chengae52e7f2010-06-18 15:39:12 +0800315
Tomas Henzl8b7eb862011-04-29 16:28:24 +0200316 for (i = 0; i < 2000; i++) {
317 if (readl(&reg->outbound_intstatus) &
318 ARCMSR_MU_OUTBOUND_MESSAGE0_INT) {
319 writel(ARCMSR_MU_OUTBOUND_MESSAGE0_INT,
320 &reg->outbound_intstatus);
321 return true;
322 }
323 msleep(10);
324 } /* max 20 seconds */
325
Nick Chengcdd3cb12010-07-13 20:03:04 +0800326 return false;
Nick Chengae52e7f2010-06-18 15:39:12 +0800327}
328
329static uint8_t arcmsr_hbb_wait_msgint_ready(struct AdapterControlBlock *acb)
330{
331 struct MessageUnit_B *reg = acb->pmuB;
Tomas Henzl8b7eb862011-04-29 16:28:24 +0200332 int i;
Nick Chengae52e7f2010-06-18 15:39:12 +0800333
Tomas Henzl8b7eb862011-04-29 16:28:24 +0200334 for (i = 0; i < 2000; i++) {
335 if (readl(reg->iop2drv_doorbell)
336 & ARCMSR_IOP2DRV_MESSAGE_CMD_DONE) {
337 writel(ARCMSR_MESSAGE_INT_CLEAR_PATTERN,
338 reg->iop2drv_doorbell);
339 writel(ARCMSR_DRV2IOP_END_OF_INTERRUPT,
340 reg->drv2iop_doorbell);
341 return true;
342 }
343 msleep(10);
344 } /* max 20 seconds */
345
Nick Chengcdd3cb12010-07-13 20:03:04 +0800346 return false;
Nick Chengae52e7f2010-06-18 15:39:12 +0800347}
348
Nick Chengcdd3cb12010-07-13 20:03:04 +0800349static uint8_t arcmsr_hbc_wait_msgint_ready(struct AdapterControlBlock *pACB)
350{
351 struct MessageUnit_C *phbcmu = (struct MessageUnit_C *)pACB->pmuC;
Tomas Henzl8b7eb862011-04-29 16:28:24 +0200352 int i;
353
354 for (i = 0; i < 2000; i++) {
355 if (readl(&phbcmu->outbound_doorbell)
356 & ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE) {
357 writel(ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE_DOORBELL_CLEAR,
358 &phbcmu->outbound_doorbell_clear); /*clear interrupt*/
359 return true;
360 }
361 msleep(10);
362 } /* max 20 seconds */
363
Nick Chengcdd3cb12010-07-13 20:03:04 +0800364 return false;
365}
Tomas Henzl8b7eb862011-04-29 16:28:24 +0200366
Nick Chengae52e7f2010-06-18 15:39:12 +0800367static void arcmsr_flush_hba_cache(struct AdapterControlBlock *acb)
368{
369 struct MessageUnit_A __iomem *reg = acb->pmuA;
370 int retry_count = 30;
Nick Chengae52e7f2010-06-18 15:39:12 +0800371 writel(ARCMSR_INBOUND_MESG0_FLUSH_CACHE, &reg->inbound_msgaddr0);
372 do {
Nick Chengcdd3cb12010-07-13 20:03:04 +0800373 if (arcmsr_hba_wait_msgint_ready(acb))
Nick Chengae52e7f2010-06-18 15:39:12 +0800374 break;
375 else {
376 retry_count--;
377 printk(KERN_NOTICE "arcmsr%d: wait 'flush adapter cache' \
378 timeout, retry count down = %d \n", acb->host->host_no, retry_count);
379 }
380 } while (retry_count != 0);
381}
382
383static void arcmsr_flush_hbb_cache(struct AdapterControlBlock *acb)
384{
385 struct MessageUnit_B *reg = acb->pmuB;
386 int retry_count = 30;
Nick Chengae52e7f2010-06-18 15:39:12 +0800387 writel(ARCMSR_MESSAGE_FLUSH_CACHE, reg->drv2iop_doorbell);
388 do {
Nick Chengcdd3cb12010-07-13 20:03:04 +0800389 if (arcmsr_hbb_wait_msgint_ready(acb))
Nick Chengae52e7f2010-06-18 15:39:12 +0800390 break;
391 else {
392 retry_count--;
393 printk(KERN_NOTICE "arcmsr%d: wait 'flush adapter cache' \
394 timeout,retry count down = %d \n", acb->host->host_no, retry_count);
395 }
396 } while (retry_count != 0);
397}
398
Nick Chengcdd3cb12010-07-13 20:03:04 +0800399static void arcmsr_flush_hbc_cache(struct AdapterControlBlock *pACB)
400{
401 struct MessageUnit_C *reg = (struct MessageUnit_C *)pACB->pmuC;
402 int retry_count = 30;/* enlarge wait flush adapter cache time: 10 minute */
403 writel(ARCMSR_INBOUND_MESG0_FLUSH_CACHE, &reg->inbound_msgaddr0);
404 writel(ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE, &reg->inbound_doorbell);
405 do {
406 if (arcmsr_hbc_wait_msgint_ready(pACB)) {
407 break;
408 } else {
409 retry_count--;
410 printk(KERN_NOTICE "arcmsr%d: wait 'flush adapter cache' \
411 timeout,retry count down = %d \n", pACB->host->host_no, retry_count);
412 }
413 } while (retry_count != 0);
414 return;
415}
Nick Chengae52e7f2010-06-18 15:39:12 +0800416static void arcmsr_flush_adapter_cache(struct AdapterControlBlock *acb)
417{
Nick Cheng1a4f5502007-09-13 17:26:40 +0800418 switch (acb->adapter_type) {
419
420 case ACB_ADAPTER_TYPE_A: {
Nick Chengae52e7f2010-06-18 15:39:12 +0800421 arcmsr_flush_hba_cache(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800422 }
423 break;
424
425 case ACB_ADAPTER_TYPE_B: {
Nick Chengae52e7f2010-06-18 15:39:12 +0800426 arcmsr_flush_hbb_cache(acb);
427 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800428 break;
429 case ACB_ADAPTER_TYPE_C: {
430 arcmsr_flush_hbc_cache(acb);
431 }
Nick Chengae52e7f2010-06-18 15:39:12 +0800432 }
433}
Nick Cheng1a4f5502007-09-13 17:26:40 +0800434
Nick Chengae52e7f2010-06-18 15:39:12 +0800435static int arcmsr_alloc_ccb_pool(struct AdapterControlBlock *acb)
436{
Nick Chengcdd3cb12010-07-13 20:03:04 +0800437 struct pci_dev *pdev = acb->pdev;
438 void *dma_coherent;
439 dma_addr_t dma_coherent_handle;
440 struct CommandControlBlock *ccb_tmp;
441 int i = 0, j = 0;
442 dma_addr_t cdb_phyaddr;
Tomas Henzl87f76152011-04-29 16:28:30 +0200443 unsigned long roundup_ccbsize;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800444 unsigned long max_xfer_len;
445 unsigned long max_sg_entrys;
446 uint32_t firm_config_version;
Tomas Henzl87f76152011-04-29 16:28:30 +0200447
Nick Chengcdd3cb12010-07-13 20:03:04 +0800448 for (i = 0; i < ARCMSR_MAX_TARGETID; i++)
449 for (j = 0; j < ARCMSR_MAX_TARGETLUN; j++)
450 acb->devstate[i][j] = ARECA_RAID_GONE;
Nick Chengae52e7f2010-06-18 15:39:12 +0800451
Nick Chengcdd3cb12010-07-13 20:03:04 +0800452 max_xfer_len = ARCMSR_MAX_XFER_LEN;
453 max_sg_entrys = ARCMSR_DEFAULT_SG_ENTRIES;
454 firm_config_version = acb->firm_cfg_version;
455 if((firm_config_version & 0xFF) >= 3){
456 max_xfer_len = (ARCMSR_CDB_SG_PAGE_LENGTH << ((firm_config_version >> 8) & 0xFF)) * 1024;/* max 4M byte */
Tomas Henzl87f76152011-04-29 16:28:30 +0200457 max_sg_entrys = (max_xfer_len/4096);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800458 }
459 acb->host->max_sectors = max_xfer_len/512;
460 acb->host->sg_tablesize = max_sg_entrys;
461 roundup_ccbsize = roundup(sizeof(struct CommandControlBlock) + (max_sg_entrys - 1) * sizeof(struct SG64ENTRY), 32);
Tomas Henzl87f76152011-04-29 16:28:30 +0200462 acb->uncache_size = roundup_ccbsize * ARCMSR_MAX_FREECCB_NUM;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800463 dma_coherent = dma_alloc_coherent(&pdev->dev, acb->uncache_size, &dma_coherent_handle, GFP_KERNEL);
464 if(!dma_coherent){
Tomas Henzl87f76152011-04-29 16:28:30 +0200465 printk(KERN_NOTICE "arcmsr%d: dma_alloc_coherent got error\n", acb->host->host_no);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800466 return -ENOMEM;
467 }
468 acb->dma_coherent = dma_coherent;
469 acb->dma_coherent_handle = dma_coherent_handle;
470 memset(dma_coherent, 0, acb->uncache_size);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800471 ccb_tmp = dma_coherent;
472 acb->vir2phy_offset = (unsigned long)dma_coherent - (unsigned long)dma_coherent_handle;
473 for(i = 0; i < ARCMSR_MAX_FREECCB_NUM; i++){
474 cdb_phyaddr = dma_coherent_handle + offsetof(struct CommandControlBlock, arcmsr_cdb);
475 ccb_tmp->cdb_phyaddr_pattern = ((acb->adapter_type == ACB_ADAPTER_TYPE_C) ? cdb_phyaddr : (cdb_phyaddr >> 5));
476 acb->pccb_pool[i] = ccb_tmp;
477 ccb_tmp->acb = acb;
478 INIT_LIST_HEAD(&ccb_tmp->list);
479 list_add_tail(&ccb_tmp->list, &acb->ccb_free_list);
480 ccb_tmp = (struct CommandControlBlock *)((unsigned long)ccb_tmp + roundup_ccbsize);
481 dma_coherent_handle = dma_coherent_handle + roundup_ccbsize;
Erich Chen1c57e862006-07-12 08:59:32 -0700482 }
Erich Chen1c57e862006-07-12 08:59:32 -0700483 return 0;
484}
Nick Cheng36b83de2010-05-17 11:22:42 +0800485
Nick Chengcdd3cb12010-07-13 20:03:04 +0800486static void arcmsr_message_isr_bh_fn(struct work_struct *work)
487{
488 struct AdapterControlBlock *acb = container_of(work,struct AdapterControlBlock, arcmsr_do_message_isr_bh);
Nick Cheng36b83de2010-05-17 11:22:42 +0800489 switch (acb->adapter_type) {
490 case ACB_ADAPTER_TYPE_A: {
491
492 struct MessageUnit_A __iomem *reg = acb->pmuA;
493 char *acb_dev_map = (char *)acb->device_map;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800494 uint32_t __iomem *signature = (uint32_t __iomem*) (&reg->message_rwbuffer[0]);
495 char __iomem *devicemap = (char __iomem*) (&reg->message_rwbuffer[21]);
Nick Cheng36b83de2010-05-17 11:22:42 +0800496 int target, lun;
497 struct scsi_device *psdev;
498 char diff;
499
500 atomic_inc(&acb->rq_map_token);
501 if (readl(signature) == ARCMSR_SIGNATURE_GET_CONFIG) {
Nick Chengcdd3cb12010-07-13 20:03:04 +0800502 for(target = 0; target < ARCMSR_MAX_TARGETID -1; target++) {
Nick Cheng36b83de2010-05-17 11:22:42 +0800503 diff = (*acb_dev_map)^readb(devicemap);
504 if (diff != 0) {
505 char temp;
506 *acb_dev_map = readb(devicemap);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800507 temp =*acb_dev_map;
508 for(lun = 0; lun < ARCMSR_MAX_TARGETLUN; lun++) {
509 if((temp & 0x01)==1 && (diff & 0x01) == 1) {
Nick Cheng36b83de2010-05-17 11:22:42 +0800510 scsi_add_device(acb->host, 0, target, lun);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800511 }else if((temp & 0x01) == 0 && (diff & 0x01) == 1) {
Nick Cheng36b83de2010-05-17 11:22:42 +0800512 psdev = scsi_device_lookup(acb->host, 0, target, lun);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800513 if (psdev != NULL ) {
Nick Cheng36b83de2010-05-17 11:22:42 +0800514 scsi_remove_device(psdev);
515 scsi_device_put(psdev);
516 }
517 }
518 temp >>= 1;
519 diff >>= 1;
520 }
521 }
522 devicemap++;
523 acb_dev_map++;
524 }
525 }
526 break;
527 }
528
529 case ACB_ADAPTER_TYPE_B: {
530 struct MessageUnit_B *reg = acb->pmuB;
531 char *acb_dev_map = (char *)acb->device_map;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800532 uint32_t __iomem *signature = (uint32_t __iomem*)(&reg->message_rwbuffer[0]);
533 char __iomem *devicemap = (char __iomem*)(&reg->message_rwbuffer[21]);
534 int target, lun;
535 struct scsi_device *psdev;
536 char diff;
537
538 atomic_inc(&acb->rq_map_token);
539 if (readl(signature) == ARCMSR_SIGNATURE_GET_CONFIG) {
540 for(target = 0; target < ARCMSR_MAX_TARGETID -1; target++) {
541 diff = (*acb_dev_map)^readb(devicemap);
542 if (diff != 0) {
543 char temp;
544 *acb_dev_map = readb(devicemap);
545 temp =*acb_dev_map;
546 for(lun = 0; lun < ARCMSR_MAX_TARGETLUN; lun++) {
547 if((temp & 0x01)==1 && (diff & 0x01) == 1) {
548 scsi_add_device(acb->host, 0, target, lun);
549 }else if((temp & 0x01) == 0 && (diff & 0x01) == 1) {
550 psdev = scsi_device_lookup(acb->host, 0, target, lun);
551 if (psdev != NULL ) {
552 scsi_remove_device(psdev);
553 scsi_device_put(psdev);
554 }
555 }
556 temp >>= 1;
557 diff >>= 1;
558 }
559 }
560 devicemap++;
561 acb_dev_map++;
562 }
563 }
564 }
565 break;
566 case ACB_ADAPTER_TYPE_C: {
567 struct MessageUnit_C *reg = acb->pmuC;
568 char *acb_dev_map = (char *)acb->device_map;
569 uint32_t __iomem *signature = (uint32_t __iomem *)(&reg->msgcode_rwbuffer[0]);
570 char __iomem *devicemap = (char __iomem *)(&reg->msgcode_rwbuffer[21]);
Nick Cheng36b83de2010-05-17 11:22:42 +0800571 int target, lun;
572 struct scsi_device *psdev;
573 char diff;
574
575 atomic_inc(&acb->rq_map_token);
576 if (readl(signature) == ARCMSR_SIGNATURE_GET_CONFIG) {
577 for (target = 0; target < ARCMSR_MAX_TARGETID - 1; target++) {
578 diff = (*acb_dev_map)^readb(devicemap);
579 if (diff != 0) {
580 char temp;
581 *acb_dev_map = readb(devicemap);
582 temp = *acb_dev_map;
583 for (lun = 0; lun < ARCMSR_MAX_TARGETLUN; lun++) {
584 if ((temp & 0x01) == 1 && (diff & 0x01) == 1) {
585 scsi_add_device(acb->host, 0, target, lun);
586 } else if ((temp & 0x01) == 0 && (diff & 0x01) == 1) {
587 psdev = scsi_device_lookup(acb->host, 0, target, lun);
588 if (psdev != NULL) {
589 scsi_remove_device(psdev);
590 scsi_device_put(psdev);
591 }
592 }
593 temp >>= 1;
594 diff >>= 1;
595 }
596 }
597 devicemap++;
598 acb_dev_map++;
599 }
600 }
601 }
602 }
603}
Erich Chen1c57e862006-07-12 08:59:32 -0700604
Nick Chengae52e7f2010-06-18 15:39:12 +0800605static int arcmsr_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Erich Chen1c57e862006-07-12 08:59:32 -0700606{
607 struct Scsi_Host *host;
608 struct AdapterControlBlock *acb;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800609 uint8_t bus,dev_fun;
Erich Chen1c57e862006-07-12 08:59:32 -0700610 int error;
Erich Chen1c57e862006-07-12 08:59:32 -0700611 error = pci_enable_device(pdev);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800612 if(error){
Nick Chengae52e7f2010-06-18 15:39:12 +0800613 return -ENODEV;
Erich Chen1c57e862006-07-12 08:59:32 -0700614 }
Nick Chengae52e7f2010-06-18 15:39:12 +0800615 host = scsi_host_alloc(&arcmsr_scsi_host_template, sizeof(struct AdapterControlBlock));
Nick Chengcdd3cb12010-07-13 20:03:04 +0800616 if(!host){
617 goto pci_disable_dev;
Nick Chengae52e7f2010-06-18 15:39:12 +0800618 }
Yang Hongyang6a355282009-04-06 19:01:13 -0700619 error = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
Nick Chengcdd3cb12010-07-13 20:03:04 +0800620 if(error){
Yang Hongyang284901a2009-04-06 19:01:15 -0700621 error = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Nick Chengcdd3cb12010-07-13 20:03:04 +0800622 if(error){
Erich Chen1c57e862006-07-12 08:59:32 -0700623 printk(KERN_WARNING
624 "scsi%d: No suitable DMA mask available\n",
625 host->host_no);
Nick Chengae52e7f2010-06-18 15:39:12 +0800626 goto scsi_host_release;
Erich Chen1c57e862006-07-12 08:59:32 -0700627 }
628 }
Nick Chengae52e7f2010-06-18 15:39:12 +0800629 init_waitqueue_head(&wait_q);
Erich Chen1c57e862006-07-12 08:59:32 -0700630 bus = pdev->bus->number;
631 dev_fun = pdev->devfn;
Nick Chengae52e7f2010-06-18 15:39:12 +0800632 acb = (struct AdapterControlBlock *) host->hostdata;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800633 memset(acb,0,sizeof(struct AdapterControlBlock));
Erich Chen1c57e862006-07-12 08:59:32 -0700634 acb->pdev = pdev;
Nick Chengae52e7f2010-06-18 15:39:12 +0800635 acb->host = host;
Erich Chen1c57e862006-07-12 08:59:32 -0700636 host->max_lun = ARCMSR_MAX_TARGETLUN;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800637 host->max_id = ARCMSR_MAX_TARGETID; /*16:8*/
638 host->max_cmd_len = 16; /*this is issue of 64bit LBA ,over 2T byte*/
639 host->can_queue = ARCMSR_MAX_FREECCB_NUM; /* max simultaneous cmds */
640 host->cmd_per_lun = ARCMSR_MAX_CMD_PERLUN;
Erich Chen1c57e862006-07-12 08:59:32 -0700641 host->this_id = ARCMSR_SCSI_INITIATOR_ID;
642 host->unique_id = (bus << 8) | dev_fun;
Nick Chengae52e7f2010-06-18 15:39:12 +0800643 pci_set_drvdata(pdev, host);
644 pci_set_master(pdev);
Erich Chen1c57e862006-07-12 08:59:32 -0700645 error = pci_request_regions(pdev, "arcmsr");
Nick Chengcdd3cb12010-07-13 20:03:04 +0800646 if(error){
Nick Chengae52e7f2010-06-18 15:39:12 +0800647 goto scsi_host_release;
Erich Chen1c57e862006-07-12 08:59:32 -0700648 }
Nick Chengae52e7f2010-06-18 15:39:12 +0800649 spin_lock_init(&acb->eh_lock);
650 spin_lock_init(&acb->ccblist_lock);
Erich Chen1c57e862006-07-12 08:59:32 -0700651 acb->acb_flags |= (ACB_F_MESSAGE_WQBUFFER_CLEARED |
Nick Chengcdd3cb12010-07-13 20:03:04 +0800652 ACB_F_MESSAGE_RQBUFFER_CLEARED |
653 ACB_F_MESSAGE_WQBUFFER_READED);
Erich Chen1c57e862006-07-12 08:59:32 -0700654 acb->acb_flags &= ~ACB_F_SCSISTOPADAPTER;
655 INIT_LIST_HEAD(&acb->ccb_free_list);
Nick Chengae52e7f2010-06-18 15:39:12 +0800656 arcmsr_define_adapter_type(acb);
657 error = arcmsr_remap_pciregion(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800658 if(!error){
Nick Chengae52e7f2010-06-18 15:39:12 +0800659 goto pci_release_regs;
660 }
661 error = arcmsr_get_firmware_spec(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800662 if(!error){
Nick Chengae52e7f2010-06-18 15:39:12 +0800663 goto unmap_pci_region;
664 }
Erich Chen1c57e862006-07-12 08:59:32 -0700665 error = arcmsr_alloc_ccb_pool(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800666 if(error){
Nick Chengae52e7f2010-06-18 15:39:12 +0800667 goto free_hbb_mu;
668 }
Nick Cheng36b83de2010-05-17 11:22:42 +0800669 arcmsr_iop_init(acb);
Erich Chen1c57e862006-07-12 08:59:32 -0700670 error = scsi_add_host(host, &pdev->dev);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800671 if(error){
Nick Chengae52e7f2010-06-18 15:39:12 +0800672 goto RAID_controller_stop;
673 }
674 error = request_irq(pdev->irq, arcmsr_do_interrupt, IRQF_SHARED, "arcmsr", acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800675 if(error){
Nick Chengae52e7f2010-06-18 15:39:12 +0800676 goto scsi_host_remove;
677 }
678 host->irq = pdev->irq;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800679 scsi_scan_host(host);
Nick Chengae52e7f2010-06-18 15:39:12 +0800680 INIT_WORK(&acb->arcmsr_do_message_isr_bh, arcmsr_message_isr_bh_fn);
Nick Cheng36b83de2010-05-17 11:22:42 +0800681 atomic_set(&acb->rq_map_token, 16);
Nick Chengae52e7f2010-06-18 15:39:12 +0800682 atomic_set(&acb->ante_token_value, 16);
683 acb->fw_flag = FW_NORMAL;
Nick Cheng36b83de2010-05-17 11:22:42 +0800684 init_timer(&acb->eternal_timer);
Nick Chengae52e7f2010-06-18 15:39:12 +0800685 acb->eternal_timer.expires = jiffies + msecs_to_jiffies(6 * HZ);
Nick Cheng36b83de2010-05-17 11:22:42 +0800686 acb->eternal_timer.data = (unsigned long) acb;
687 acb->eternal_timer.function = &arcmsr_request_device_map;
688 add_timer(&acb->eternal_timer);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800689 if(arcmsr_alloc_sysfs_attr(acb))
Nick Chengae52e7f2010-06-18 15:39:12 +0800690 goto out_free_sysfs;
Erich Chen1c57e862006-07-12 08:59:32 -0700691 return 0;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800692out_free_sysfs:
Nick Chengae52e7f2010-06-18 15:39:12 +0800693scsi_host_remove:
694 scsi_remove_host(host);
695RAID_controller_stop:
696 arcmsr_stop_adapter_bgrb(acb);
697 arcmsr_flush_adapter_cache(acb);
Erich Chen1c57e862006-07-12 08:59:32 -0700698 arcmsr_free_ccb_pool(acb);
Nick Chengae52e7f2010-06-18 15:39:12 +0800699free_hbb_mu:
Nick Chengcdd3cb12010-07-13 20:03:04 +0800700 arcmsr_free_hbb_mu(acb);
Nick Chengae52e7f2010-06-18 15:39:12 +0800701unmap_pci_region:
702 arcmsr_unmap_pciregion(acb);
703pci_release_regs:
Erich Chen1c57e862006-07-12 08:59:32 -0700704 pci_release_regions(pdev);
Nick Chengae52e7f2010-06-18 15:39:12 +0800705scsi_host_release:
Erich Chen1c57e862006-07-12 08:59:32 -0700706 scsi_host_put(host);
Nick Chengae52e7f2010-06-18 15:39:12 +0800707pci_disable_dev:
Erich Chen1c57e862006-07-12 08:59:32 -0700708 pci_disable_device(pdev);
Nick Chengae52e7f2010-06-18 15:39:12 +0800709 return -ENODEV;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800710}
711
Nick Cheng36b83de2010-05-17 11:22:42 +0800712static uint8_t arcmsr_abort_hba_allcmd(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +0800713{
Al Viro80da1ad2007-10-29 05:08:28 +0000714 struct MessageUnit_A __iomem *reg = acb->pmuA;
Erich Chen1c57e862006-07-12 08:59:32 -0700715 writel(ARCMSR_INBOUND_MESG0_ABORT_CMD, &reg->inbound_msgaddr0);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800716 if (!arcmsr_hba_wait_msgint_ready(acb)) {
Erich Chen1c57e862006-07-12 08:59:32 -0700717 printk(KERN_NOTICE
718 "arcmsr%d: wait 'abort all outstanding command' timeout \n"
719 , acb->host->host_no);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800720 return false;
Nick Cheng36b83de2010-05-17 11:22:42 +0800721 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800722 return true;
Erich Chen1c57e862006-07-12 08:59:32 -0700723}
724
Nick Cheng36b83de2010-05-17 11:22:42 +0800725static uint8_t arcmsr_abort_hbb_allcmd(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +0800726{
Al Viro80da1ad2007-10-29 05:08:28 +0000727 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800728
Nick Chengae52e7f2010-06-18 15:39:12 +0800729 writel(ARCMSR_MESSAGE_ABORT_CMD, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800730 if (!arcmsr_hbb_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +0800731 printk(KERN_NOTICE
732 "arcmsr%d: wait 'abort all outstanding command' timeout \n"
733 , acb->host->host_no);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800734 return false;
Nick Cheng36b83de2010-05-17 11:22:42 +0800735 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800736 return true;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800737}
Nick Chengcdd3cb12010-07-13 20:03:04 +0800738static uint8_t arcmsr_abort_hbc_allcmd(struct AdapterControlBlock *pACB)
739{
740 struct MessageUnit_C *reg = (struct MessageUnit_C *)pACB->pmuC;
741 writel(ARCMSR_INBOUND_MESG0_ABORT_CMD, &reg->inbound_msgaddr0);
742 writel(ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE, &reg->inbound_doorbell);
743 if (!arcmsr_hbc_wait_msgint_ready(pACB)) {
744 printk(KERN_NOTICE
745 "arcmsr%d: wait 'abort all outstanding command' timeout \n"
746 , pACB->host->host_no);
747 return false;
748 }
749 return true;
750}
Nick Cheng36b83de2010-05-17 11:22:42 +0800751static uint8_t arcmsr_abort_allcmd(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +0800752{
Nick Cheng36b83de2010-05-17 11:22:42 +0800753 uint8_t rtnval = 0;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800754 switch (acb->adapter_type) {
755 case ACB_ADAPTER_TYPE_A: {
Nick Cheng36b83de2010-05-17 11:22:42 +0800756 rtnval = arcmsr_abort_hba_allcmd(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800757 }
758 break;
759
760 case ACB_ADAPTER_TYPE_B: {
Nick Cheng36b83de2010-05-17 11:22:42 +0800761 rtnval = arcmsr_abort_hbb_allcmd(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800762 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800763 break;
764
765 case ACB_ADAPTER_TYPE_C: {
766 rtnval = arcmsr_abort_hbc_allcmd(acb);
767 }
Nick Cheng1a4f5502007-09-13 17:26:40 +0800768 }
Nick Cheng36b83de2010-05-17 11:22:42 +0800769 return rtnval;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800770}
771
Nick Chengae52e7f2010-06-18 15:39:12 +0800772static bool arcmsr_hbb_enable_driver_mode(struct AdapterControlBlock *pacb)
773{
774 struct MessageUnit_B *reg = pacb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +0800775 writel(ARCMSR_MESSAGE_START_DRIVER_MODE, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800776 if (!arcmsr_hbb_wait_msgint_ready(pacb)) {
Nick Chengae52e7f2010-06-18 15:39:12 +0800777 printk(KERN_ERR "arcmsr%d: can't set driver mode. \n", pacb->host->host_no);
778 return false;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800779 }
780 return true;
Nick Chengae52e7f2010-06-18 15:39:12 +0800781}
782
Erich Chen1c57e862006-07-12 08:59:32 -0700783static void arcmsr_pci_unmap_dma(struct CommandControlBlock *ccb)
784{
Erich Chen1c57e862006-07-12 08:59:32 -0700785 struct scsi_cmnd *pcmd = ccb->pcmd;
786
FUJITA Tomonorideff2622007-05-14 19:25:56 +0900787 scsi_dma_unmap(pcmd);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800788}
Erich Chen1c57e862006-07-12 08:59:32 -0700789
Nick Chengae52e7f2010-06-18 15:39:12 +0800790static void arcmsr_ccb_complete(struct CommandControlBlock *ccb)
Erich Chen1c57e862006-07-12 08:59:32 -0700791{
792 struct AdapterControlBlock *acb = ccb->acb;
793 struct scsi_cmnd *pcmd = ccb->pcmd;
Nick Chengae52e7f2010-06-18 15:39:12 +0800794 unsigned long flags;
Nick Chengae52e7f2010-06-18 15:39:12 +0800795 atomic_dec(&acb->ccboutstandingcount);
Erich Chen1c57e862006-07-12 08:59:32 -0700796 arcmsr_pci_unmap_dma(ccb);
Erich Chen1c57e862006-07-12 08:59:32 -0700797 ccb->startdone = ARCMSR_CCB_DONE;
Nick Chengae52e7f2010-06-18 15:39:12 +0800798 spin_lock_irqsave(&acb->ccblist_lock, flags);
Erich Chen1c57e862006-07-12 08:59:32 -0700799 list_add_tail(&ccb->list, &acb->ccb_free_list);
Nick Chengae52e7f2010-06-18 15:39:12 +0800800 spin_unlock_irqrestore(&acb->ccblist_lock, flags);
Erich Chen1c57e862006-07-12 08:59:32 -0700801 pcmd->scsi_done(pcmd);
802}
803
Nick Cheng1a4f5502007-09-13 17:26:40 +0800804static void arcmsr_report_sense_info(struct CommandControlBlock *ccb)
805{
806
807 struct scsi_cmnd *pcmd = ccb->pcmd;
808 struct SENSE_DATA *sensebuffer = (struct SENSE_DATA *)pcmd->sense_buffer;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800809 pcmd->result = DID_OK << 16;
810 if (sensebuffer) {
811 int sense_data_length =
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +0900812 sizeof(struct SENSE_DATA) < SCSI_SENSE_BUFFERSIZE
813 ? sizeof(struct SENSE_DATA) : SCSI_SENSE_BUFFERSIZE;
814 memset(sensebuffer, 0, SCSI_SENSE_BUFFERSIZE);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800815 memcpy(sensebuffer, ccb->arcmsr_cdb.SenseData, sense_data_length);
816 sensebuffer->ErrorCode = SCSI_SENSE_CURRENT_ERRORS;
817 sensebuffer->Valid = 1;
818 }
819}
820
821static u32 arcmsr_disable_outbound_ints(struct AdapterControlBlock *acb)
822{
823 u32 orig_mask = 0;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800824 switch (acb->adapter_type) {
Nick Cheng1a4f5502007-09-13 17:26:40 +0800825 case ACB_ADAPTER_TYPE_A : {
Al Viro80da1ad2007-10-29 05:08:28 +0000826 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng36b83de2010-05-17 11:22:42 +0800827 orig_mask = readl(&reg->outbound_intmask);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800828 writel(orig_mask|ARCMSR_MU_OUTBOUND_ALL_INTMASKENABLE, \
829 &reg->outbound_intmask);
830 }
831 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800832 case ACB_ADAPTER_TYPE_B : {
Al Viro80da1ad2007-10-29 05:08:28 +0000833 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +0800834 orig_mask = readl(reg->iop2drv_doorbell_mask);
835 writel(0, reg->iop2drv_doorbell_mask);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800836 }
837 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800838 case ACB_ADAPTER_TYPE_C:{
839 struct MessageUnit_C *reg = (struct MessageUnit_C *)acb->pmuC;
840 /* disable all outbound interrupt */
841 orig_mask = readl(&reg->host_int_mask); /* disable outbound message0 int */
842 writel(orig_mask|ARCMSR_HBCMU_ALL_INTMASKENABLE, &reg->host_int_mask);
843 }
844 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800845 }
846 return orig_mask;
847}
848
Nick Chengcdd3cb12010-07-13 20:03:04 +0800849static void arcmsr_report_ccb_state(struct AdapterControlBlock *acb,
850 struct CommandControlBlock *ccb, bool error)
Nick Cheng1a4f5502007-09-13 17:26:40 +0800851{
Nick Cheng1a4f5502007-09-13 17:26:40 +0800852 uint8_t id, lun;
853 id = ccb->pcmd->device->id;
854 lun = ccb->pcmd->device->lun;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800855 if (!error) {
Nick Cheng1a4f5502007-09-13 17:26:40 +0800856 if (acb->devstate[id][lun] == ARECA_RAID_GONE)
857 acb->devstate[id][lun] = ARECA_RAID_GOOD;
Julia Lawall7968f192010-08-05 22:19:36 +0200858 ccb->pcmd->result = DID_OK << 16;
859 arcmsr_ccb_complete(ccb);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800860 }else{
Nick Cheng1a4f5502007-09-13 17:26:40 +0800861 switch (ccb->arcmsr_cdb.DeviceStatus) {
862 case ARCMSR_DEV_SELECT_TIMEOUT: {
863 acb->devstate[id][lun] = ARECA_RAID_GONE;
864 ccb->pcmd->result = DID_NO_CONNECT << 16;
Nick Chengae52e7f2010-06-18 15:39:12 +0800865 arcmsr_ccb_complete(ccb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800866 }
867 break;
868
869 case ARCMSR_DEV_ABORTED:
870
871 case ARCMSR_DEV_INIT_FAIL: {
872 acb->devstate[id][lun] = ARECA_RAID_GONE;
873 ccb->pcmd->result = DID_BAD_TARGET << 16;
Nick Chengae52e7f2010-06-18 15:39:12 +0800874 arcmsr_ccb_complete(ccb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800875 }
876 break;
877
878 case ARCMSR_DEV_CHECK_CONDITION: {
879 acb->devstate[id][lun] = ARECA_RAID_GOOD;
880 arcmsr_report_sense_info(ccb);
Nick Chengae52e7f2010-06-18 15:39:12 +0800881 arcmsr_ccb_complete(ccb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800882 }
883 break;
884
885 default:
Nick Chengcdd3cb12010-07-13 20:03:04 +0800886 printk(KERN_NOTICE
887 "arcmsr%d: scsi id = %d lun = %d isr get command error done, \
888 but got unknown DeviceStatus = 0x%x \n"
889 , acb->host->host_no
890 , id
891 , lun
892 , ccb->arcmsr_cdb.DeviceStatus);
893 acb->devstate[id][lun] = ARECA_RAID_GONE;
894 ccb->pcmd->result = DID_NO_CONNECT << 16;
895 arcmsr_ccb_complete(ccb);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800896 break;
897 }
898 }
899}
900
Nick Chengcdd3cb12010-07-13 20:03:04 +0800901static void arcmsr_drain_donequeue(struct AdapterControlBlock *acb, struct CommandControlBlock *pCCB, bool error)
Nick Cheng1a4f5502007-09-13 17:26:40 +0800902{
Nick Chengae52e7f2010-06-18 15:39:12 +0800903 int id, lun;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800904 if ((pCCB->acb != acb) || (pCCB->startdone != ARCMSR_CCB_START)) {
905 if (pCCB->startdone == ARCMSR_CCB_ABORTED) {
906 struct scsi_cmnd *abortcmd = pCCB->pcmd;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800907 if (abortcmd) {
Nick Chengae52e7f2010-06-18 15:39:12 +0800908 id = abortcmd->device->id;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800909 lun = abortcmd->device->lun;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800910 abortcmd->result |= DID_ABORT << 16;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800911 arcmsr_ccb_complete(pCCB);
912 printk(KERN_NOTICE "arcmsr%d: pCCB ='0x%p' isr got aborted command \n",
913 acb->host->host_no, pCCB);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800914 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800915 return;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800916 }
917 printk(KERN_NOTICE "arcmsr%d: isr get an illegal ccb command \
918 done acb = '0x%p'"
919 "ccb = '0x%p' ccbacb = '0x%p' startdone = 0x%x"
920 " ccboutstandingcount = %d \n"
921 , acb->host->host_no
922 , acb
Nick Chengcdd3cb12010-07-13 20:03:04 +0800923 , pCCB
924 , pCCB->acb
925 , pCCB->startdone
Nick Cheng1a4f5502007-09-13 17:26:40 +0800926 , atomic_read(&acb->ccboutstandingcount));
Nick Chengcdd3cb12010-07-13 20:03:04 +0800927 return;
NickCheng97b99122011-01-06 17:32:41 +0800928 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800929 arcmsr_report_ccb_state(acb, pCCB, error);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800930}
931
932static void arcmsr_done4abort_postqueue(struct AdapterControlBlock *acb)
933{
934 int i = 0;
935 uint32_t flag_ccb;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800936 struct ARCMSR_CDB *pARCMSR_CDB;
937 bool error;
938 struct CommandControlBlock *pCCB;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800939 switch (acb->adapter_type) {
940
941 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +0000942 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800943 uint32_t outbound_intstatus;
Al Viro80da1ad2007-10-29 05:08:28 +0000944 outbound_intstatus = readl(&reg->outbound_intstatus) &
Nick Cheng1a4f5502007-09-13 17:26:40 +0800945 acb->outbound_int_enable;
946 /*clear and abort all outbound posted Q*/
947 writel(outbound_intstatus, &reg->outbound_intstatus);/*clear interrupt*/
Nick Chengcdd3cb12010-07-13 20:03:04 +0800948 while(((flag_ccb = readl(&reg->outbound_queueport)) != 0xFFFFFFFF)
Nick Cheng1a4f5502007-09-13 17:26:40 +0800949 && (i++ < ARCMSR_MAX_OUTSTANDING_CMD)) {
Nick Chengcdd3cb12010-07-13 20:03:04 +0800950 pARCMSR_CDB = (struct ARCMSR_CDB *)(acb->vir2phy_offset + (flag_ccb << 5));/*frame must be 32 bytes aligned*/
951 pCCB = container_of(pARCMSR_CDB, struct CommandControlBlock, arcmsr_cdb);
952 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE0) ? true : false;
953 arcmsr_drain_donequeue(acb, pCCB, error);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800954 }
955 }
956 break;
957
958 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +0000959 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800960 /*clear all outbound posted Q*/
NickCheng97b99122011-01-06 17:32:41 +0800961 writel(ARCMSR_DOORBELL_INT_CLEAR_PATTERN, reg->iop2drv_doorbell); /* clear doorbell interrupt */
Nick Cheng1a4f5502007-09-13 17:26:40 +0800962 for (i = 0; i < ARCMSR_MAX_HBB_POSTQUEUE; i++) {
963 if ((flag_ccb = readl(&reg->done_qbuffer[i])) != 0) {
964 writel(0, &reg->done_qbuffer[i]);
Nick Chengcdd3cb12010-07-13 20:03:04 +0800965 pARCMSR_CDB = (struct ARCMSR_CDB *)(acb->vir2phy_offset+(flag_ccb << 5));/*frame must be 32 bytes aligned*/
966 pCCB = container_of(pARCMSR_CDB, struct CommandControlBlock, arcmsr_cdb);
967 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE0) ? true : false;
968 arcmsr_drain_donequeue(acb, pCCB, error);
Nick Cheng1a4f5502007-09-13 17:26:40 +0800969 }
Nick Chengcdd3cb12010-07-13 20:03:04 +0800970 reg->post_qbuffer[i] = 0;
Nick Cheng1a4f5502007-09-13 17:26:40 +0800971 }
972 reg->doneq_index = 0;
973 reg->postq_index = 0;
974 }
975 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +0800976 case ACB_ADAPTER_TYPE_C: {
977 struct MessageUnit_C *reg = acb->pmuC;
978 struct ARCMSR_CDB *pARCMSR_CDB;
979 uint32_t flag_ccb, ccb_cdb_phy;
980 bool error;
981 struct CommandControlBlock *pCCB;
982 while ((readl(&reg->host_int_status) & ARCMSR_HBCMU_OUTBOUND_POSTQUEUE_ISR) && (i++ < ARCMSR_MAX_OUTSTANDING_CMD)) {
983 /*need to do*/
984 flag_ccb = readl(&reg->outbound_queueport_low);
985 ccb_cdb_phy = (flag_ccb & 0xFFFFFFF0);
986 pARCMSR_CDB = (struct ARCMSR_CDB *)(acb->vir2phy_offset+ccb_cdb_phy);/*frame must be 32 bytes aligned*/
987 pCCB = container_of(pARCMSR_CDB, struct CommandControlBlock, arcmsr_cdb);
988 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE1) ? true : false;
989 arcmsr_drain_donequeue(acb, pCCB, error);
990 }
991 }
Nick Cheng1a4f5502007-09-13 17:26:40 +0800992 }
993}
Erich Chen1c57e862006-07-12 08:59:32 -0700994static void arcmsr_remove(struct pci_dev *pdev)
995{
996 struct Scsi_Host *host = pci_get_drvdata(pdev);
997 struct AdapterControlBlock *acb =
998 (struct AdapterControlBlock *) host->hostdata;
Erich Chen1c57e862006-07-12 08:59:32 -0700999 int poll_count = 0;
Erich Chen1c57e862006-07-12 08:59:32 -07001000 arcmsr_free_sysfs_attr(acb);
1001 scsi_remove_host(host);
Tejun Heo43829732012-08-20 14:51:24 -07001002 flush_work(&acb->arcmsr_do_message_isr_bh);
Nick Cheng36b83de2010-05-17 11:22:42 +08001003 del_timer_sync(&acb->eternal_timer);
1004 arcmsr_disable_outbound_ints(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001005 arcmsr_stop_adapter_bgrb(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001006 arcmsr_flush_adapter_cache(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001007 acb->acb_flags |= ACB_F_SCSISTOPADAPTER;
1008 acb->acb_flags &= ~ACB_F_IOP_INITED;
1009
Nick Chengcdd3cb12010-07-13 20:03:04 +08001010 for (poll_count = 0; poll_count < ARCMSR_MAX_OUTSTANDING_CMD; poll_count++){
Erich Chen1c57e862006-07-12 08:59:32 -07001011 if (!atomic_read(&acb->ccboutstandingcount))
1012 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001013 arcmsr_interrupt(acb);/* FIXME: need spinlock */
Erich Chen1c57e862006-07-12 08:59:32 -07001014 msleep(25);
1015 }
1016
1017 if (atomic_read(&acb->ccboutstandingcount)) {
1018 int i;
1019
1020 arcmsr_abort_allcmd(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001021 arcmsr_done4abort_postqueue(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001022 for (i = 0; i < ARCMSR_MAX_FREECCB_NUM; i++) {
1023 struct CommandControlBlock *ccb = acb->pccb_pool[i];
1024 if (ccb->startdone == ARCMSR_CCB_START) {
1025 ccb->startdone = ARCMSR_CCB_ABORTED;
1026 ccb->pcmd->result = DID_ABORT << 16;
Nick Chengae52e7f2010-06-18 15:39:12 +08001027 arcmsr_ccb_complete(ccb);
Erich Chen1c57e862006-07-12 08:59:32 -07001028 }
1029 }
1030 }
Erich Chen1c57e862006-07-12 08:59:32 -07001031 free_irq(pdev->irq, acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001032 arcmsr_free_ccb_pool(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001033 arcmsr_free_hbb_mu(acb);
1034 arcmsr_unmap_pciregion(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001035 pci_release_regions(pdev);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001036 scsi_host_put(host);
Erich Chen1c57e862006-07-12 08:59:32 -07001037 pci_disable_device(pdev);
1038 pci_set_drvdata(pdev, NULL);
1039}
1040
1041static void arcmsr_shutdown(struct pci_dev *pdev)
1042{
1043 struct Scsi_Host *host = pci_get_drvdata(pdev);
1044 struct AdapterControlBlock *acb =
1045 (struct AdapterControlBlock *)host->hostdata;
Nick Cheng36b83de2010-05-17 11:22:42 +08001046 del_timer_sync(&acb->eternal_timer);
1047 arcmsr_disable_outbound_ints(acb);
Tejun Heo43829732012-08-20 14:51:24 -07001048 flush_work(&acb->arcmsr_do_message_isr_bh);
Erich Chen1c57e862006-07-12 08:59:32 -07001049 arcmsr_stop_adapter_bgrb(acb);
1050 arcmsr_flush_adapter_cache(acb);
1051}
1052
1053static int arcmsr_module_init(void)
1054{
1055 int error = 0;
Erich Chen1c57e862006-07-12 08:59:32 -07001056 error = pci_register_driver(&arcmsr_pci_driver);
1057 return error;
1058}
1059
1060static void arcmsr_module_exit(void)
1061{
1062 pci_unregister_driver(&arcmsr_pci_driver);
1063}
1064module_init(arcmsr_module_init);
1065module_exit(arcmsr_module_exit);
1066
Nick Cheng36b83de2010-05-17 11:22:42 +08001067static void arcmsr_enable_outbound_ints(struct AdapterControlBlock *acb,
Nick Cheng1a4f5502007-09-13 17:26:40 +08001068 u32 intmask_org)
Erich Chen1c57e862006-07-12 08:59:32 -07001069{
Erich Chen1c57e862006-07-12 08:59:32 -07001070 u32 mask;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001071 switch (acb->adapter_type) {
1072
Nick Chengcdd3cb12010-07-13 20:03:04 +08001073 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00001074 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001075 mask = intmask_org & ~(ARCMSR_MU_OUTBOUND_POSTQUEUE_INTMASKENABLE |
Nick Cheng36b83de2010-05-17 11:22:42 +08001076 ARCMSR_MU_OUTBOUND_DOORBELL_INTMASKENABLE|
1077 ARCMSR_MU_OUTBOUND_MESSAGE0_INTMASKENABLE);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001078 writel(mask, &reg->outbound_intmask);
1079 acb->outbound_int_enable = ~(intmask_org & mask) & 0x000000ff;
1080 }
1081 break;
Erich Chen1c57e862006-07-12 08:59:32 -07001082
Nick Chengcdd3cb12010-07-13 20:03:04 +08001083 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00001084 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng36b83de2010-05-17 11:22:42 +08001085 mask = intmask_org | (ARCMSR_IOP2DRV_DATA_WRITE_OK |
1086 ARCMSR_IOP2DRV_DATA_READ_OK |
1087 ARCMSR_IOP2DRV_CDB_DONE |
1088 ARCMSR_IOP2DRV_MESSAGE_CMD_DONE);
Nick Chengae52e7f2010-06-18 15:39:12 +08001089 writel(mask, reg->iop2drv_doorbell_mask);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001090 acb->outbound_int_enable = (intmask_org | mask) & 0x0000000f;
1091 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08001092 break;
1093 case ACB_ADAPTER_TYPE_C: {
1094 struct MessageUnit_C *reg = acb->pmuC;
1095 mask = ~(ARCMSR_HBCMU_UTILITY_A_ISR_MASK | ARCMSR_HBCMU_OUTBOUND_DOORBELL_ISR_MASK|ARCMSR_HBCMU_OUTBOUND_POSTQUEUE_ISR_MASK);
1096 writel(intmask_org & mask, &reg->host_int_mask);
1097 acb->outbound_int_enable = ~(intmask_org & mask) & 0x0000000f;
1098 }
Erich Chen1c57e862006-07-12 08:59:32 -07001099 }
1100}
1101
Nick Cheng76d78302008-02-04 23:53:24 -08001102static int arcmsr_build_ccb(struct AdapterControlBlock *acb,
Erich Chen1c57e862006-07-12 08:59:32 -07001103 struct CommandControlBlock *ccb, struct scsi_cmnd *pcmd)
1104{
1105 struct ARCMSR_CDB *arcmsr_cdb = (struct ARCMSR_CDB *)&ccb->arcmsr_cdb;
1106 int8_t *psge = (int8_t *)&arcmsr_cdb->u;
Al Viro80da1ad2007-10-29 05:08:28 +00001107 __le32 address_lo, address_hi;
Erich Chen1c57e862006-07-12 08:59:32 -07001108 int arccdbsize = 0x30;
Nick Chengae52e7f2010-06-18 15:39:12 +08001109 __le32 length = 0;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001110 int i;
Nick Chengae52e7f2010-06-18 15:39:12 +08001111 struct scatterlist *sg;
FUJITA Tomonorideff2622007-05-14 19:25:56 +09001112 int nseg;
Erich Chen1c57e862006-07-12 08:59:32 -07001113 ccb->pcmd = pcmd;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001114 memset(arcmsr_cdb, 0, sizeof(struct ARCMSR_CDB));
Erich Chen1c57e862006-07-12 08:59:32 -07001115 arcmsr_cdb->TargetID = pcmd->device->id;
1116 arcmsr_cdb->LUN = pcmd->device->lun;
1117 arcmsr_cdb->Function = 1;
Nick Chengae52e7f2010-06-18 15:39:12 +08001118 arcmsr_cdb->Context = 0;
Erich Chen1c57e862006-07-12 08:59:32 -07001119 memcpy(arcmsr_cdb->Cdb, pcmd->cmnd, pcmd->cmd_len);
Erich Chen1c57e862006-07-12 08:59:32 -07001120
FUJITA Tomonorideff2622007-05-14 19:25:56 +09001121 nseg = scsi_dma_map(pcmd);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001122 if (unlikely(nseg > acb->host->sg_tablesize || nseg < 0))
Nick Cheng76d78302008-02-04 23:53:24 -08001123 return FAILED;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001124 scsi_for_each_sg(pcmd, sg, nseg, i) {
1125 /* Get the physical address of the current data pointer */
1126 length = cpu_to_le32(sg_dma_len(sg));
1127 address_lo = cpu_to_le32(dma_addr_lo32(sg_dma_address(sg)));
1128 address_hi = cpu_to_le32(dma_addr_hi32(sg_dma_address(sg)));
1129 if (address_hi == 0) {
1130 struct SG32ENTRY *pdma_sg = (struct SG32ENTRY *)psge;
Erich Chen1c57e862006-07-12 08:59:32 -07001131
Nick Chengcdd3cb12010-07-13 20:03:04 +08001132 pdma_sg->address = address_lo;
1133 pdma_sg->length = length;
1134 psge += sizeof (struct SG32ENTRY);
1135 arccdbsize += sizeof (struct SG32ENTRY);
1136 } else {
1137 struct SG64ENTRY *pdma_sg = (struct SG64ENTRY *)psge;
Erich Chen1c57e862006-07-12 08:59:32 -07001138
Nick Chengcdd3cb12010-07-13 20:03:04 +08001139 pdma_sg->addresshigh = address_hi;
1140 pdma_sg->address = address_lo;
1141 pdma_sg->length = length|cpu_to_le32(IS_SG64_ADDR);
1142 psge += sizeof (struct SG64ENTRY);
1143 arccdbsize += sizeof (struct SG64ENTRY);
Erich Chen1c57e862006-07-12 08:59:32 -07001144 }
Erich Chen1c57e862006-07-12 08:59:32 -07001145 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08001146 arcmsr_cdb->sgcount = (uint8_t)nseg;
1147 arcmsr_cdb->DataLength = scsi_bufflen(pcmd);
1148 arcmsr_cdb->msgPages = arccdbsize/0x100 + (arccdbsize % 0x100 ? 1 : 0);
1149 if ( arccdbsize > 256)
1150 arcmsr_cdb->Flags |= ARCMSR_CDB_FLAG_SGL_BSIZE;
roel kluinc32e0612011-01-01 19:40:23 +01001151 if (pcmd->sc_data_direction == DMA_TO_DEVICE)
Nick Chengcdd3cb12010-07-13 20:03:04 +08001152 arcmsr_cdb->Flags |= ARCMSR_CDB_FLAG_WRITE;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001153 ccb->arc_cdb_size = arccdbsize;
Nick Cheng76d78302008-02-04 23:53:24 -08001154 return SUCCESS;
Erich Chen1c57e862006-07-12 08:59:32 -07001155}
1156
1157static void arcmsr_post_ccb(struct AdapterControlBlock *acb, struct CommandControlBlock *ccb)
1158{
Nick Chengcdd3cb12010-07-13 20:03:04 +08001159 uint32_t cdb_phyaddr_pattern = ccb->cdb_phyaddr_pattern;
Erich Chen1c57e862006-07-12 08:59:32 -07001160 struct ARCMSR_CDB *arcmsr_cdb = (struct ARCMSR_CDB *)&ccb->arcmsr_cdb;
Erich Chen1c57e862006-07-12 08:59:32 -07001161 atomic_inc(&acb->ccboutstandingcount);
1162 ccb->startdone = ARCMSR_CCB_START;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001163 switch (acb->adapter_type) {
1164 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00001165 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001166
1167 if (arcmsr_cdb->Flags & ARCMSR_CDB_FLAG_SGL_BSIZE)
Nick Chengcdd3cb12010-07-13 20:03:04 +08001168 writel(cdb_phyaddr_pattern | ARCMSR_CCBPOST_FLAG_SGL_BSIZE,
Erich Chen1c57e862006-07-12 08:59:32 -07001169 &reg->inbound_queueport);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001170 else {
Nick Chengcdd3cb12010-07-13 20:03:04 +08001171 writel(cdb_phyaddr_pattern, &reg->inbound_queueport);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001172 }
1173 }
1174 break;
1175
1176 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00001177 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001178 uint32_t ending_index, index = reg->postq_index;
1179
1180 ending_index = ((index + 1) % ARCMSR_MAX_HBB_POSTQUEUE);
1181 writel(0, &reg->post_qbuffer[ending_index]);
1182 if (arcmsr_cdb->Flags & ARCMSR_CDB_FLAG_SGL_BSIZE) {
Nick Chengcdd3cb12010-07-13 20:03:04 +08001183 writel(cdb_phyaddr_pattern | ARCMSR_CCBPOST_FLAG_SGL_BSIZE,\
Nick Cheng1a4f5502007-09-13 17:26:40 +08001184 &reg->post_qbuffer[index]);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001185 } else {
1186 writel(cdb_phyaddr_pattern, &reg->post_qbuffer[index]);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001187 }
1188 index++;
1189 index %= ARCMSR_MAX_HBB_POSTQUEUE;/*if last index number set it to 0 */
1190 reg->postq_index = index;
Nick Chengae52e7f2010-06-18 15:39:12 +08001191 writel(ARCMSR_DRV2IOP_CDB_POSTED, reg->drv2iop_doorbell);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001192 }
1193 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001194 case ACB_ADAPTER_TYPE_C: {
1195 struct MessageUnit_C *phbcmu = (struct MessageUnit_C *)acb->pmuC;
1196 uint32_t ccb_post_stamp, arc_cdb_size;
1197
1198 arc_cdb_size = (ccb->arc_cdb_size > 0x300) ? 0x300 : ccb->arc_cdb_size;
1199 ccb_post_stamp = (cdb_phyaddr_pattern | ((arc_cdb_size - 1) >> 6) | 1);
1200 if (acb->cdb_phyaddr_hi32) {
1201 writel(acb->cdb_phyaddr_hi32, &phbcmu->inbound_queueport_high);
1202 writel(ccb_post_stamp, &phbcmu->inbound_queueport_low);
1203 } else {
1204 writel(ccb_post_stamp, &phbcmu->inbound_queueport_low);
1205 }
1206 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001207 }
Erich Chen1c57e862006-07-12 08:59:32 -07001208}
1209
Nick Cheng1a4f5502007-09-13 17:26:40 +08001210static void arcmsr_stop_hba_bgrb(struct AdapterControlBlock *acb)
Erich Chen1c57e862006-07-12 08:59:32 -07001211{
Al Viro80da1ad2007-10-29 05:08:28 +00001212 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001213 acb->acb_flags &= ~ACB_F_MSG_START_BGRB;
1214 writel(ARCMSR_INBOUND_MESG0_STOP_BGRB, &reg->inbound_msgaddr0);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001215 if (!arcmsr_hba_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001216 printk(KERN_NOTICE
1217 "arcmsr%d: wait 'stop adapter background rebulid' timeout \n"
1218 , acb->host->host_no);
1219 }
1220}
1221
1222static void arcmsr_stop_hbb_bgrb(struct AdapterControlBlock *acb)
1223{
Al Viro80da1ad2007-10-29 05:08:28 +00001224 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001225 acb->acb_flags &= ~ACB_F_MSG_START_BGRB;
Nick Chengae52e7f2010-06-18 15:39:12 +08001226 writel(ARCMSR_MESSAGE_STOP_BGRB, reg->drv2iop_doorbell);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001227
Nick Chengcdd3cb12010-07-13 20:03:04 +08001228 if (!arcmsr_hbb_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001229 printk(KERN_NOTICE
1230 "arcmsr%d: wait 'stop adapter background rebulid' timeout \n"
1231 , acb->host->host_no);
Erich Chen1c57e862006-07-12 08:59:32 -07001232 }
1233}
1234
Nick Chengcdd3cb12010-07-13 20:03:04 +08001235static void arcmsr_stop_hbc_bgrb(struct AdapterControlBlock *pACB)
1236{
1237 struct MessageUnit_C *reg = (struct MessageUnit_C *)pACB->pmuC;
1238 pACB->acb_flags &= ~ACB_F_MSG_START_BGRB;
1239 writel(ARCMSR_INBOUND_MESG0_STOP_BGRB, &reg->inbound_msgaddr0);
1240 writel(ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE, &reg->inbound_doorbell);
1241 if (!arcmsr_hbc_wait_msgint_ready(pACB)) {
1242 printk(KERN_NOTICE
1243 "arcmsr%d: wait 'stop adapter background rebulid' timeout \n"
1244 , pACB->host->host_no);
1245 }
1246 return;
1247}
Erich Chen1c57e862006-07-12 08:59:32 -07001248static void arcmsr_stop_adapter_bgrb(struct AdapterControlBlock *acb)
1249{
Nick Cheng1a4f5502007-09-13 17:26:40 +08001250 switch (acb->adapter_type) {
1251 case ACB_ADAPTER_TYPE_A: {
1252 arcmsr_stop_hba_bgrb(acb);
1253 }
1254 break;
Erich Chen1c57e862006-07-12 08:59:32 -07001255
Nick Cheng1a4f5502007-09-13 17:26:40 +08001256 case ACB_ADAPTER_TYPE_B: {
1257 arcmsr_stop_hbb_bgrb(acb);
1258 }
1259 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001260 case ACB_ADAPTER_TYPE_C: {
1261 arcmsr_stop_hbc_bgrb(acb);
1262 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001263 }
Erich Chen1c57e862006-07-12 08:59:32 -07001264}
1265
1266static void arcmsr_free_ccb_pool(struct AdapterControlBlock *acb)
1267{
Nick Chengcdd3cb12010-07-13 20:03:04 +08001268 dma_free_coherent(&acb->pdev->dev, acb->uncache_size, acb->dma_coherent, acb->dma_coherent_handle);
Erich Chen1c57e862006-07-12 08:59:32 -07001269}
1270
Nick Cheng1a4f5502007-09-13 17:26:40 +08001271void arcmsr_iop_message_read(struct AdapterControlBlock *acb)
Erich Chen1c57e862006-07-12 08:59:32 -07001272{
Nick Cheng1a4f5502007-09-13 17:26:40 +08001273 switch (acb->adapter_type) {
1274 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00001275 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001276 writel(ARCMSR_INBOUND_DRIVER_DATA_READ_OK, &reg->inbound_doorbell);
1277 }
1278 break;
Erich Chen1c57e862006-07-12 08:59:32 -07001279
Nick Cheng1a4f5502007-09-13 17:26:40 +08001280 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00001281 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +08001282 writel(ARCMSR_DRV2IOP_DATA_READ_OK, reg->drv2iop_doorbell);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001283 }
1284 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001285 case ACB_ADAPTER_TYPE_C: {
1286 struct MessageUnit_C __iomem *reg = acb->pmuC;
1287 writel(ARCMSR_HBCMU_DRV2IOP_DATA_READ_OK, &reg->inbound_doorbell);
1288 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001289 }
1290}
1291
1292static void arcmsr_iop_message_wrote(struct AdapterControlBlock *acb)
1293{
1294 switch (acb->adapter_type) {
1295 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00001296 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001297 /*
1298 ** push inbound doorbell tell iop, driver data write ok
1299 ** and wait reply on next hwinterrupt for next Qbuffer post
1300 */
1301 writel(ARCMSR_INBOUND_DRIVER_DATA_WRITE_OK, &reg->inbound_doorbell);
1302 }
1303 break;
1304
1305 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00001306 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001307 /*
1308 ** push inbound doorbell tell iop, driver data write ok
1309 ** and wait reply on next hwinterrupt for next Qbuffer post
1310 */
Nick Chengae52e7f2010-06-18 15:39:12 +08001311 writel(ARCMSR_DRV2IOP_DATA_WRITE_OK, reg->drv2iop_doorbell);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001312 }
1313 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001314 case ACB_ADAPTER_TYPE_C: {
1315 struct MessageUnit_C __iomem *reg = acb->pmuC;
1316 /*
1317 ** push inbound doorbell tell iop, driver data write ok
1318 ** and wait reply on next hwinterrupt for next Qbuffer post
1319 */
1320 writel(ARCMSR_HBCMU_DRV2IOP_DATA_WRITE_OK, &reg->inbound_doorbell);
1321 }
1322 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001323 }
1324}
1325
Al Viro80da1ad2007-10-29 05:08:28 +00001326struct QBUFFER __iomem *arcmsr_get_iop_rqbuffer(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +08001327{
Al Viro0c7eb2e2007-10-29 05:08:58 +00001328 struct QBUFFER __iomem *qbuffer = NULL;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001329 switch (acb->adapter_type) {
1330
1331 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00001332 struct MessageUnit_A __iomem *reg = acb->pmuA;
1333 qbuffer = (struct QBUFFER __iomem *)&reg->message_rbuffer;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001334 }
1335 break;
1336
1337 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00001338 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +08001339 qbuffer = (struct QBUFFER __iomem *)reg->message_rbuffer;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001340 }
1341 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001342 case ACB_ADAPTER_TYPE_C: {
1343 struct MessageUnit_C *phbcmu = (struct MessageUnit_C *)acb->pmuC;
1344 qbuffer = (struct QBUFFER __iomem *)&phbcmu->message_rbuffer;
1345 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001346 }
1347 return qbuffer;
1348}
1349
Al Viro80da1ad2007-10-29 05:08:28 +00001350static struct QBUFFER __iomem *arcmsr_get_iop_wqbuffer(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +08001351{
Al Viro0c7eb2e2007-10-29 05:08:58 +00001352 struct QBUFFER __iomem *pqbuffer = 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 pqbuffer = (struct QBUFFER __iomem *) &reg->message_wbuffer;
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 pqbuffer = (struct QBUFFER __iomem *)reg->message_wbuffer;
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 *reg = (struct MessageUnit_C *)acb->pmuC;
1368 pqbuffer = (struct QBUFFER __iomem *)&reg->message_wbuffer;
1369 }
1370
Nick Cheng1a4f5502007-09-13 17:26:40 +08001371 }
1372 return pqbuffer;
1373}
1374
1375static void arcmsr_iop2drv_data_wrote_handle(struct AdapterControlBlock *acb)
1376{
Al Viro80da1ad2007-10-29 05:08:28 +00001377 struct QBUFFER __iomem *prbuffer;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001378 struct QBUFFER *pQbuffer;
Al Viro80da1ad2007-10-29 05:08:28 +00001379 uint8_t __iomem *iop_data;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001380 int32_t my_empty_len, iop_len, rqbuf_firstindex, rqbuf_lastindex;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001381 rqbuf_lastindex = acb->rqbuf_lastindex;
1382 rqbuf_firstindex = acb->rqbuf_firstindex;
1383 prbuffer = arcmsr_get_iop_rqbuffer(acb);
Al Viro80da1ad2007-10-29 05:08:28 +00001384 iop_data = (uint8_t __iomem *)prbuffer->data;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001385 iop_len = prbuffer->data_len;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001386 my_empty_len = (rqbuf_firstindex - rqbuf_lastindex - 1) & (ARCMSR_MAX_QBUFFER - 1);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001387
1388 if (my_empty_len >= iop_len)
1389 {
1390 while (iop_len > 0) {
1391 pQbuffer = (struct QBUFFER *)&acb->rqbuffer[rqbuf_lastindex];
Nick Chengcdd3cb12010-07-13 20:03:04 +08001392 memcpy(pQbuffer, iop_data, 1);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001393 rqbuf_lastindex++;
1394 rqbuf_lastindex %= ARCMSR_MAX_QBUFFER;
1395 iop_data++;
1396 iop_len--;
1397 }
1398 acb->rqbuf_lastindex = rqbuf_lastindex;
1399 arcmsr_iop_message_read(acb);
1400 }
1401
1402 else {
1403 acb->acb_flags |= ACB_F_IOPDATA_OVERFLOW;
1404 }
1405}
1406
1407static void arcmsr_iop2drv_data_read_handle(struct AdapterControlBlock *acb)
1408{
1409 acb->acb_flags |= ACB_F_MESSAGE_WQBUFFER_READED;
1410 if (acb->wqbuf_firstindex != acb->wqbuf_lastindex) {
1411 uint8_t *pQbuffer;
Al Viro80da1ad2007-10-29 05:08:28 +00001412 struct QBUFFER __iomem *pwbuffer;
1413 uint8_t __iomem *iop_data;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001414 int32_t allxfer_len = 0;
1415
1416 acb->acb_flags &= (~ACB_F_MESSAGE_WQBUFFER_READED);
1417 pwbuffer = arcmsr_get_iop_wqbuffer(acb);
1418 iop_data = (uint8_t __iomem *)pwbuffer->data;
1419
1420 while ((acb->wqbuf_firstindex != acb->wqbuf_lastindex) && \
1421 (allxfer_len < 124)) {
1422 pQbuffer = &acb->wqbuffer[acb->wqbuf_firstindex];
1423 memcpy(iop_data, pQbuffer, 1);
1424 acb->wqbuf_firstindex++;
1425 acb->wqbuf_firstindex %= ARCMSR_MAX_QBUFFER;
1426 iop_data++;
1427 allxfer_len++;
1428 }
1429 pwbuffer->data_len = allxfer_len;
1430
1431 arcmsr_iop_message_wrote(acb);
1432 }
1433
1434 if (acb->wqbuf_firstindex == acb->wqbuf_lastindex) {
1435 acb->acb_flags |= ACB_F_MESSAGE_WQBUFFER_CLEARED;
1436 }
1437}
1438
1439static void arcmsr_hba_doorbell_isr(struct AdapterControlBlock *acb)
1440{
1441 uint32_t outbound_doorbell;
Al Viro80da1ad2007-10-29 05:08:28 +00001442 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001443 outbound_doorbell = readl(&reg->outbound_doorbell);
1444 writel(outbound_doorbell, &reg->outbound_doorbell);
1445 if (outbound_doorbell & ARCMSR_OUTBOUND_IOP331_DATA_WRITE_OK) {
1446 arcmsr_iop2drv_data_wrote_handle(acb);
1447 }
1448
Nick Chengcdd3cb12010-07-13 20:03:04 +08001449 if (outbound_doorbell & ARCMSR_OUTBOUND_IOP331_DATA_READ_OK) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001450 arcmsr_iop2drv_data_read_handle(acb);
1451 }
1452}
Nick Chengcdd3cb12010-07-13 20:03:04 +08001453static void arcmsr_hbc_doorbell_isr(struct AdapterControlBlock *pACB)
1454{
1455 uint32_t outbound_doorbell;
1456 struct MessageUnit_C *reg = (struct MessageUnit_C *)pACB->pmuC;
1457 /*
1458 *******************************************************************
1459 ** Maybe here we need to check wrqbuffer_lock is lock or not
1460 ** DOORBELL: din! don!
1461 ** check if there are any mail need to pack from firmware
1462 *******************************************************************
1463 */
1464 outbound_doorbell = readl(&reg->outbound_doorbell);
1465 writel(outbound_doorbell, &reg->outbound_doorbell_clear);/*clear interrupt*/
1466 if (outbound_doorbell & ARCMSR_HBCMU_IOP2DRV_DATA_WRITE_OK) {
1467 arcmsr_iop2drv_data_wrote_handle(pACB);
1468 }
1469 if (outbound_doorbell & ARCMSR_HBCMU_IOP2DRV_DATA_READ_OK) {
1470 arcmsr_iop2drv_data_read_handle(pACB);
1471 }
1472 if (outbound_doorbell & ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE) {
1473 arcmsr_hbc_message_isr(pACB); /* messenger of "driver to iop commands" */
1474 }
1475 return;
1476}
Nick Cheng1a4f5502007-09-13 17:26:40 +08001477static void arcmsr_hba_postqueue_isr(struct AdapterControlBlock *acb)
1478{
1479 uint32_t flag_ccb;
Al Viro80da1ad2007-10-29 05:08:28 +00001480 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001481 struct ARCMSR_CDB *pARCMSR_CDB;
1482 struct CommandControlBlock *pCCB;
1483 bool error;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001484 while ((flag_ccb = readl(&reg->outbound_queueport)) != 0xFFFFFFFF) {
Nick Chengcdd3cb12010-07-13 20:03:04 +08001485 pARCMSR_CDB = (struct ARCMSR_CDB *)(acb->vir2phy_offset + (flag_ccb << 5));/*frame must be 32 bytes aligned*/
1486 pCCB = container_of(pARCMSR_CDB, struct CommandControlBlock, arcmsr_cdb);
1487 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE0) ? true : false;
1488 arcmsr_drain_donequeue(acb, pCCB, error);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001489 }
1490}
Nick Cheng1a4f5502007-09-13 17:26:40 +08001491static void arcmsr_hbb_postqueue_isr(struct AdapterControlBlock *acb)
1492{
1493 uint32_t index;
1494 uint32_t flag_ccb;
Al Viro80da1ad2007-10-29 05:08:28 +00001495 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001496 struct ARCMSR_CDB *pARCMSR_CDB;
1497 struct CommandControlBlock *pCCB;
1498 bool error;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001499 index = reg->doneq_index;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001500 while ((flag_ccb = readl(&reg->done_qbuffer[index])) != 0) {
1501 writel(0, &reg->done_qbuffer[index]);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001502 pARCMSR_CDB = (struct ARCMSR_CDB *)(acb->vir2phy_offset+(flag_ccb << 5));/*frame must be 32 bytes aligned*/
1503 pCCB = container_of(pARCMSR_CDB, struct CommandControlBlock, arcmsr_cdb);
1504 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE0) ? true : false;
1505 arcmsr_drain_donequeue(acb, pCCB, error);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001506 index++;
1507 index %= ARCMSR_MAX_HBB_POSTQUEUE;
1508 reg->doneq_index = index;
1509 }
1510}
Nick Chengcdd3cb12010-07-13 20:03:04 +08001511
1512static void arcmsr_hbc_postqueue_isr(struct AdapterControlBlock *acb)
1513{
1514 struct MessageUnit_C *phbcmu;
1515 struct ARCMSR_CDB *arcmsr_cdb;
1516 struct CommandControlBlock *ccb;
1517 uint32_t flag_ccb, ccb_cdb_phy, throttling = 0;
1518 int error;
1519
1520 phbcmu = (struct MessageUnit_C *)acb->pmuC;
1521 /* areca cdb command done */
1522 /* Use correct offset and size for syncing */
1523
1524 while (readl(&phbcmu->host_int_status) &
1525 ARCMSR_HBCMU_OUTBOUND_POSTQUEUE_ISR){
1526 /* check if command done with no error*/
1527 flag_ccb = readl(&phbcmu->outbound_queueport_low);
1528 ccb_cdb_phy = (flag_ccb & 0xFFFFFFF0);/*frame must be 32 bytes aligned*/
1529 arcmsr_cdb = (struct ARCMSR_CDB *)(acb->vir2phy_offset + ccb_cdb_phy);
1530 ccb = container_of(arcmsr_cdb, struct CommandControlBlock, arcmsr_cdb);
1531 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE1) ? true : false;
1532 /* check if command done with no error */
1533 arcmsr_drain_donequeue(acb, ccb, error);
1534 if (throttling == ARCMSR_HBC_ISR_THROTTLING_LEVEL) {
1535 writel(ARCMSR_HBCMU_DRV2IOP_POSTQUEUE_THROTTLING, &phbcmu->inbound_doorbell);
1536 break;
1537 }
1538 throttling++;
1539 }
1540}
Nick Cheng36b83de2010-05-17 11:22:42 +08001541/*
1542**********************************************************************************
1543** Handle a message interrupt
1544**
Nick Chengcdd3cb12010-07-13 20:03:04 +08001545** The only message interrupt we expect is in response to a query for the current adapter config.
Nick Cheng36b83de2010-05-17 11:22:42 +08001546** We want this in order to compare the drivemap so that we can detect newly-attached drives.
1547**********************************************************************************
1548*/
1549static void arcmsr_hba_message_isr(struct AdapterControlBlock *acb)
1550{
1551 struct MessageUnit_A *reg = acb->pmuA;
Nick Cheng36b83de2010-05-17 11:22:42 +08001552 /*clear interrupt and message state*/
1553 writel(ARCMSR_MU_OUTBOUND_MESSAGE0_INT, &reg->outbound_intstatus);
1554 schedule_work(&acb->arcmsr_do_message_isr_bh);
1555}
1556static void arcmsr_hbb_message_isr(struct AdapterControlBlock *acb)
1557{
1558 struct MessageUnit_B *reg = acb->pmuB;
1559
1560 /*clear interrupt and message state*/
Nick Chengae52e7f2010-06-18 15:39:12 +08001561 writel(ARCMSR_MESSAGE_INT_CLEAR_PATTERN, reg->iop2drv_doorbell);
Nick Cheng36b83de2010-05-17 11:22:42 +08001562 schedule_work(&acb->arcmsr_do_message_isr_bh);
1563}
Nick Chengcdd3cb12010-07-13 20:03:04 +08001564/*
1565**********************************************************************************
1566** Handle a message interrupt
1567**
1568** The only message interrupt we expect is in response to a query for the
1569** current adapter config.
1570** We want this in order to compare the drivemap so that we can detect newly-attached drives.
1571**********************************************************************************
1572*/
1573static void arcmsr_hbc_message_isr(struct AdapterControlBlock *acb)
1574{
1575 struct MessageUnit_C *reg = acb->pmuC;
1576 /*clear interrupt and message state*/
1577 writel(ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE_DOORBELL_CLEAR, &reg->outbound_doorbell_clear);
1578 schedule_work(&acb->arcmsr_do_message_isr_bh);
1579}
1580
Nick Cheng1a4f5502007-09-13 17:26:40 +08001581static int arcmsr_handle_hba_isr(struct AdapterControlBlock *acb)
1582{
1583 uint32_t outbound_intstatus;
Al Viro80da1ad2007-10-29 05:08:28 +00001584 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng36b83de2010-05-17 11:22:42 +08001585 outbound_intstatus = readl(&reg->outbound_intstatus) &
Nick Chengcdd3cb12010-07-13 20:03:04 +08001586 acb->outbound_int_enable;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001587 if (!(outbound_intstatus & ARCMSR_MU_OUTBOUND_HANDLE_INT)) {
1588 return 1;
1589 }
Erich Chen1c57e862006-07-12 08:59:32 -07001590 writel(outbound_intstatus, &reg->outbound_intstatus);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001591 if (outbound_intstatus & ARCMSR_MU_OUTBOUND_DOORBELL_INT) {
1592 arcmsr_hba_doorbell_isr(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001593 }
1594 if (outbound_intstatus & ARCMSR_MU_OUTBOUND_POSTQUEUE_INT) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001595 arcmsr_hba_postqueue_isr(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001596 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08001597 if(outbound_intstatus & ARCMSR_MU_OUTBOUND_MESSAGE0_INT) {
Nick Cheng36b83de2010-05-17 11:22:42 +08001598 /* messenger of "driver to iop commands" */
1599 arcmsr_hba_message_isr(acb);
1600 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001601 return 0;
1602}
1603
1604static int arcmsr_handle_hbb_isr(struct AdapterControlBlock *acb)
1605{
1606 uint32_t outbound_doorbell;
Al Viro80da1ad2007-10-29 05:08:28 +00001607 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +08001608 outbound_doorbell = readl(reg->iop2drv_doorbell) &
Nick Chengcdd3cb12010-07-13 20:03:04 +08001609 acb->outbound_int_enable;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001610 if (!outbound_doorbell)
1611 return 1;
1612
Nick Chengae52e7f2010-06-18 15:39:12 +08001613 writel(~outbound_doorbell, reg->iop2drv_doorbell);
Nick Cheng36b83de2010-05-17 11:22:42 +08001614 /*in case the last action of doorbell interrupt clearance is cached,
1615 this action can push HW to write down the clear bit*/
Nick Chengae52e7f2010-06-18 15:39:12 +08001616 readl(reg->iop2drv_doorbell);
1617 writel(ARCMSR_DRV2IOP_END_OF_INTERRUPT, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001618 if (outbound_doorbell & ARCMSR_IOP2DRV_DATA_WRITE_OK) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001619 arcmsr_iop2drv_data_wrote_handle(acb);
1620 }
1621 if (outbound_doorbell & ARCMSR_IOP2DRV_DATA_READ_OK) {
1622 arcmsr_iop2drv_data_read_handle(acb);
1623 }
1624 if (outbound_doorbell & ARCMSR_IOP2DRV_CDB_DONE) {
1625 arcmsr_hbb_postqueue_isr(acb);
1626 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08001627 if(outbound_doorbell & ARCMSR_IOP2DRV_MESSAGE_CMD_DONE) {
Nick Cheng36b83de2010-05-17 11:22:42 +08001628 /* messenger of "driver to iop commands" */
1629 arcmsr_hbb_message_isr(acb);
1630 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001631 return 0;
1632}
1633
Nick Chengcdd3cb12010-07-13 20:03:04 +08001634static int arcmsr_handle_hbc_isr(struct AdapterControlBlock *pACB)
1635{
1636 uint32_t host_interrupt_status;
1637 struct MessageUnit_C *phbcmu = (struct MessageUnit_C *)pACB->pmuC;
1638 /*
1639 *********************************************
1640 ** check outbound intstatus
1641 *********************************************
1642 */
1643 host_interrupt_status = readl(&phbcmu->host_int_status);
1644 if (!host_interrupt_status) {
1645 /*it must be share irq*/
1646 return 1;
1647 }
1648 /* MU ioctl transfer doorbell interrupts*/
1649 if (host_interrupt_status & ARCMSR_HBCMU_OUTBOUND_DOORBELL_ISR) {
1650 arcmsr_hbc_doorbell_isr(pACB); /* messenger of "ioctl message read write" */
1651 }
1652 /* MU post queue interrupts*/
1653 if (host_interrupt_status & ARCMSR_HBCMU_OUTBOUND_POSTQUEUE_ISR) {
1654 arcmsr_hbc_postqueue_isr(pACB); /* messenger of "scsi commands" */
1655 }
1656 return 0;
1657}
Nick Cheng1a4f5502007-09-13 17:26:40 +08001658static irqreturn_t arcmsr_interrupt(struct AdapterControlBlock *acb)
1659{
1660 switch (acb->adapter_type) {
1661 case ACB_ADAPTER_TYPE_A: {
1662 if (arcmsr_handle_hba_isr(acb)) {
1663 return IRQ_NONE;
1664 }
1665 }
1666 break;
1667
1668 case ACB_ADAPTER_TYPE_B: {
1669 if (arcmsr_handle_hbb_isr(acb)) {
1670 return IRQ_NONE;
1671 }
1672 }
1673 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001674 case ACB_ADAPTER_TYPE_C: {
1675 if (arcmsr_handle_hbc_isr(acb)) {
1676 return IRQ_NONE;
1677 }
1678 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001679 }
Erich Chen1c57e862006-07-12 08:59:32 -07001680 return IRQ_HANDLED;
1681}
1682
1683static void arcmsr_iop_parking(struct AdapterControlBlock *acb)
1684{
1685 if (acb) {
1686 /* stop adapter background rebuild */
1687 if (acb->acb_flags & ACB_F_MSG_START_BGRB) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001688 uint32_t intmask_org;
Erich Chen1c57e862006-07-12 08:59:32 -07001689 acb->acb_flags &= ~ACB_F_MSG_START_BGRB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001690 intmask_org = arcmsr_disable_outbound_ints(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07001691 arcmsr_stop_adapter_bgrb(acb);
1692 arcmsr_flush_adapter_cache(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001693 arcmsr_enable_outbound_ints(acb, intmask_org);
Erich Chen1c57e862006-07-12 08:59:32 -07001694 }
1695 }
1696}
1697
Nick Cheng1a4f5502007-09-13 17:26:40 +08001698void arcmsr_post_ioctldata2iop(struct AdapterControlBlock *acb)
Erich Chen1c57e862006-07-12 08:59:32 -07001699{
Nick Cheng1a4f5502007-09-13 17:26:40 +08001700 int32_t wqbuf_firstindex, wqbuf_lastindex;
1701 uint8_t *pQbuffer;
Al Viro80da1ad2007-10-29 05:08:28 +00001702 struct QBUFFER __iomem *pwbuffer;
1703 uint8_t __iomem *iop_data;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001704 int32_t allxfer_len = 0;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001705 pwbuffer = arcmsr_get_iop_wqbuffer(acb);
1706 iop_data = (uint8_t __iomem *)pwbuffer->data;
1707 if (acb->acb_flags & ACB_F_MESSAGE_WQBUFFER_READED) {
1708 acb->acb_flags &= (~ACB_F_MESSAGE_WQBUFFER_READED);
1709 wqbuf_firstindex = acb->wqbuf_firstindex;
1710 wqbuf_lastindex = acb->wqbuf_lastindex;
1711 while ((wqbuf_firstindex != wqbuf_lastindex) && (allxfer_len < 124)) {
1712 pQbuffer = &acb->wqbuffer[wqbuf_firstindex];
1713 memcpy(iop_data, pQbuffer, 1);
1714 wqbuf_firstindex++;
1715 wqbuf_firstindex %= ARCMSR_MAX_QBUFFER;
1716 iop_data++;
1717 allxfer_len++;
1718 }
1719 acb->wqbuf_firstindex = wqbuf_firstindex;
1720 pwbuffer->data_len = allxfer_len;
1721 arcmsr_iop_message_wrote(acb);
1722 }
1723}
1724
Nick Cheng36b83de2010-05-17 11:22:42 +08001725static int arcmsr_iop_message_xfer(struct AdapterControlBlock *acb,
Nick Cheng1a4f5502007-09-13 17:26:40 +08001726 struct scsi_cmnd *cmd)
1727{
Erich Chen1c57e862006-07-12 08:59:32 -07001728 struct CMD_MESSAGE_FIELD *pcmdmessagefld;
1729 int retvalue = 0, transfer_len = 0;
1730 char *buffer;
FUJITA Tomonorideff2622007-05-14 19:25:56 +09001731 struct scatterlist *sg;
Erich Chen1c57e862006-07-12 08:59:32 -07001732 uint32_t controlcode = (uint32_t ) cmd->cmnd[5] << 24 |
1733 (uint32_t ) cmd->cmnd[6] << 16 |
1734 (uint32_t ) cmd->cmnd[7] << 8 |
1735 (uint32_t ) cmd->cmnd[8];
Nick Cheng1a4f5502007-09-13 17:26:40 +08001736 /* 4 bytes: Areca io control code */
FUJITA Tomonorideff2622007-05-14 19:25:56 +09001737 sg = scsi_sglist(cmd);
Cong Wang77dfce02011-11-25 23:14:23 +08001738 buffer = kmap_atomic(sg_page(sg)) + sg->offset;
FUJITA Tomonorideff2622007-05-14 19:25:56 +09001739 if (scsi_sg_count(cmd) > 1) {
1740 retvalue = ARCMSR_MESSAGE_FAIL;
1741 goto message_out;
Erich Chen1c57e862006-07-12 08:59:32 -07001742 }
FUJITA Tomonorideff2622007-05-14 19:25:56 +09001743 transfer_len += sg->length;
1744
Erich Chen1c57e862006-07-12 08:59:32 -07001745 if (transfer_len > sizeof(struct CMD_MESSAGE_FIELD)) {
1746 retvalue = ARCMSR_MESSAGE_FAIL;
1747 goto message_out;
1748 }
1749 pcmdmessagefld = (struct CMD_MESSAGE_FIELD *) buffer;
1750 switch(controlcode) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001751
Erich Chen1c57e862006-07-12 08:59:32 -07001752 case ARCMSR_MESSAGE_READ_RQBUFFER: {
Daniel Drake69e562c2008-02-20 13:29:05 +00001753 unsigned char *ver_addr;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001754 uint8_t *pQbuffer, *ptmpQbuffer;
1755 int32_t allxfer_len = 0;
Erich Chen1c57e862006-07-12 08:59:32 -07001756
Daniel Drake69e562c2008-02-20 13:29:05 +00001757 ver_addr = kmalloc(1032, GFP_ATOMIC);
1758 if (!ver_addr) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001759 retvalue = ARCMSR_MESSAGE_FAIL;
1760 goto message_out;
1761 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08001762
Daniel Drake69e562c2008-02-20 13:29:05 +00001763 ptmpQbuffer = ver_addr;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001764 while ((acb->rqbuf_firstindex != acb->rqbuf_lastindex)
1765 && (allxfer_len < 1031)) {
1766 pQbuffer = &acb->rqbuffer[acb->rqbuf_firstindex];
1767 memcpy(ptmpQbuffer, pQbuffer, 1);
1768 acb->rqbuf_firstindex++;
1769 acb->rqbuf_firstindex %= ARCMSR_MAX_QBUFFER;
1770 ptmpQbuffer++;
1771 allxfer_len++;
1772 }
1773 if (acb->acb_flags & ACB_F_IOPDATA_OVERFLOW) {
Erich Chen1c57e862006-07-12 08:59:32 -07001774
Al Viro80da1ad2007-10-29 05:08:28 +00001775 struct QBUFFER __iomem *prbuffer;
1776 uint8_t __iomem *iop_data;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001777 int32_t iop_len;
1778
1779 acb->acb_flags &= ~ACB_F_IOPDATA_OVERFLOW;
1780 prbuffer = arcmsr_get_iop_rqbuffer(acb);
Al Viro80da1ad2007-10-29 05:08:28 +00001781 iop_data = prbuffer->data;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001782 iop_len = readl(&prbuffer->data_len);
1783 while (iop_len > 0) {
1784 acb->rqbuffer[acb->rqbuf_lastindex] = readb(iop_data);
1785 acb->rqbuf_lastindex++;
1786 acb->rqbuf_lastindex %= ARCMSR_MAX_QBUFFER;
1787 iop_data++;
1788 iop_len--;
Erich Chen1c57e862006-07-12 08:59:32 -07001789 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001790 arcmsr_iop_message_read(acb);
1791 }
Daniel Drake69e562c2008-02-20 13:29:05 +00001792 memcpy(pcmdmessagefld->messagedatabuffer, ver_addr, allxfer_len);
Nick Cheng1a4f5502007-09-13 17:26:40 +08001793 pcmdmessagefld->cmdmessage.Length = allxfer_len;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001794 if(acb->fw_flag == FW_DEADLOCK) {
Nick Chengae52e7f2010-06-18 15:39:12 +08001795 pcmdmessagefld->cmdmessage.ReturnCode = ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001796 }else{
1797 pcmdmessagefld->cmdmessage.ReturnCode = ARCMSR_MESSAGE_RETURNCODE_OK;
Nick Chengae52e7f2010-06-18 15:39:12 +08001798 }
Daniel Drake69e562c2008-02-20 13:29:05 +00001799 kfree(ver_addr);
Erich Chen1c57e862006-07-12 08:59:32 -07001800 }
1801 break;
Erich Chen1c57e862006-07-12 08:59:32 -07001802
Nick Cheng1a4f5502007-09-13 17:26:40 +08001803 case ARCMSR_MESSAGE_WRITE_WQBUFFER: {
Daniel Drake69e562c2008-02-20 13:29:05 +00001804 unsigned char *ver_addr;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001805 int32_t my_empty_len, user_len, wqbuf_firstindex, wqbuf_lastindex;
1806 uint8_t *pQbuffer, *ptmpuserbuffer;
1807
Daniel Drake69e562c2008-02-20 13:29:05 +00001808 ver_addr = kmalloc(1032, GFP_ATOMIC);
1809 if (!ver_addr) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001810 retvalue = ARCMSR_MESSAGE_FAIL;
1811 goto message_out;
1812 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08001813 if(acb->fw_flag == FW_DEADLOCK) {
1814 pcmdmessagefld->cmdmessage.ReturnCode =
Nick Cheng36b83de2010-05-17 11:22:42 +08001815 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001816 }else{
1817 pcmdmessagefld->cmdmessage.ReturnCode =
Nick Chengae52e7f2010-06-18 15:39:12 +08001818 ARCMSR_MESSAGE_RETURNCODE_OK;
Nick Cheng36b83de2010-05-17 11:22:42 +08001819 }
Daniel Drake69e562c2008-02-20 13:29:05 +00001820 ptmpuserbuffer = ver_addr;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001821 user_len = pcmdmessagefld->cmdmessage.Length;
1822 memcpy(ptmpuserbuffer, pcmdmessagefld->messagedatabuffer, user_len);
1823 wqbuf_lastindex = acb->wqbuf_lastindex;
1824 wqbuf_firstindex = acb->wqbuf_firstindex;
1825 if (wqbuf_lastindex != wqbuf_firstindex) {
1826 struct SENSE_DATA *sensebuffer =
1827 (struct SENSE_DATA *)cmd->sense_buffer;
1828 arcmsr_post_ioctldata2iop(acb);
1829 /* has error report sensedata */
1830 sensebuffer->ErrorCode = 0x70;
1831 sensebuffer->SenseKey = ILLEGAL_REQUEST;
1832 sensebuffer->AdditionalSenseLength = 0x0A;
1833 sensebuffer->AdditionalSenseCode = 0x20;
1834 sensebuffer->Valid = 1;
1835 retvalue = ARCMSR_MESSAGE_FAIL;
1836 } else {
1837 my_empty_len = (wqbuf_firstindex-wqbuf_lastindex - 1)
1838 &(ARCMSR_MAX_QBUFFER - 1);
1839 if (my_empty_len >= user_len) {
1840 while (user_len > 0) {
1841 pQbuffer =
1842 &acb->wqbuffer[acb->wqbuf_lastindex];
1843 memcpy(pQbuffer, ptmpuserbuffer, 1);
1844 acb->wqbuf_lastindex++;
1845 acb->wqbuf_lastindex %= ARCMSR_MAX_QBUFFER;
1846 ptmpuserbuffer++;
1847 user_len--;
1848 }
1849 if (acb->acb_flags & ACB_F_MESSAGE_WQBUFFER_CLEARED) {
1850 acb->acb_flags &=
1851 ~ACB_F_MESSAGE_WQBUFFER_CLEARED;
1852 arcmsr_post_ioctldata2iop(acb);
1853 }
1854 } else {
1855 /* has error report sensedata */
Erich Chen1c57e862006-07-12 08:59:32 -07001856 struct SENSE_DATA *sensebuffer =
1857 (struct SENSE_DATA *)cmd->sense_buffer;
Erich Chen1c57e862006-07-12 08:59:32 -07001858 sensebuffer->ErrorCode = 0x70;
1859 sensebuffer->SenseKey = ILLEGAL_REQUEST;
1860 sensebuffer->AdditionalSenseLength = 0x0A;
1861 sensebuffer->AdditionalSenseCode = 0x20;
1862 sensebuffer->Valid = 1;
1863 retvalue = ARCMSR_MESSAGE_FAIL;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001864 }
Erich Chen1c57e862006-07-12 08:59:32 -07001865 }
Daniel Drake69e562c2008-02-20 13:29:05 +00001866 kfree(ver_addr);
Erich Chen1c57e862006-07-12 08:59:32 -07001867 }
1868 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001869
Erich Chen1c57e862006-07-12 08:59:32 -07001870 case ARCMSR_MESSAGE_CLEAR_RQBUFFER: {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001871 uint8_t *pQbuffer = acb->rqbuffer;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001872 if (acb->acb_flags & ACB_F_IOPDATA_OVERFLOW) {
1873 acb->acb_flags &= ~ACB_F_IOPDATA_OVERFLOW;
1874 arcmsr_iop_message_read(acb);
1875 }
1876 acb->acb_flags |= ACB_F_MESSAGE_RQBUFFER_CLEARED;
1877 acb->rqbuf_firstindex = 0;
1878 acb->rqbuf_lastindex = 0;
1879 memset(pQbuffer, 0, ARCMSR_MAX_QBUFFER);
Nick Chengcdd3cb12010-07-13 20:03:04 +08001880 if(acb->fw_flag == FW_DEADLOCK) {
Nick Chengae52e7f2010-06-18 15:39:12 +08001881 pcmdmessagefld->cmdmessage.ReturnCode =
1882 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001883 }else{
Nick Chengae52e7f2010-06-18 15:39:12 +08001884 pcmdmessagefld->cmdmessage.ReturnCode =
1885 ARCMSR_MESSAGE_RETURNCODE_OK;
1886 }
Erich Chen1c57e862006-07-12 08:59:32 -07001887 }
1888 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001889
Erich Chen1c57e862006-07-12 08:59:32 -07001890 case ARCMSR_MESSAGE_CLEAR_WQBUFFER: {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001891 uint8_t *pQbuffer = acb->wqbuffer;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001892 if(acb->fw_flag == FW_DEADLOCK) {
Nick Cheng36b83de2010-05-17 11:22:42 +08001893 pcmdmessagefld->cmdmessage.ReturnCode =
1894 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001895 }else{
Nick Chengae52e7f2010-06-18 15:39:12 +08001896 pcmdmessagefld->cmdmessage.ReturnCode =
1897 ARCMSR_MESSAGE_RETURNCODE_OK;
Nick Cheng36b83de2010-05-17 11:22:42 +08001898 }
Erich Chen1c57e862006-07-12 08:59:32 -07001899
Nick Cheng1a4f5502007-09-13 17:26:40 +08001900 if (acb->acb_flags & ACB_F_IOPDATA_OVERFLOW) {
1901 acb->acb_flags &= ~ACB_F_IOPDATA_OVERFLOW;
1902 arcmsr_iop_message_read(acb);
1903 }
1904 acb->acb_flags |=
1905 (ACB_F_MESSAGE_WQBUFFER_CLEARED |
1906 ACB_F_MESSAGE_WQBUFFER_READED);
1907 acb->wqbuf_firstindex = 0;
1908 acb->wqbuf_lastindex = 0;
1909 memset(pQbuffer, 0, ARCMSR_MAX_QBUFFER);
Erich Chen1c57e862006-07-12 08:59:32 -07001910 }
1911 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001912
Erich Chen1c57e862006-07-12 08:59:32 -07001913 case ARCMSR_MESSAGE_CLEAR_ALLQBUFFER: {
Nick Cheng1a4f5502007-09-13 17:26:40 +08001914 uint8_t *pQbuffer;
Erich Chen1c57e862006-07-12 08:59:32 -07001915
Nick Cheng1a4f5502007-09-13 17:26:40 +08001916 if (acb->acb_flags & ACB_F_IOPDATA_OVERFLOW) {
1917 acb->acb_flags &= ~ACB_F_IOPDATA_OVERFLOW;
1918 arcmsr_iop_message_read(acb);
1919 }
1920 acb->acb_flags |=
1921 (ACB_F_MESSAGE_WQBUFFER_CLEARED
1922 | ACB_F_MESSAGE_RQBUFFER_CLEARED
1923 | ACB_F_MESSAGE_WQBUFFER_READED);
1924 acb->rqbuf_firstindex = 0;
1925 acb->rqbuf_lastindex = 0;
1926 acb->wqbuf_firstindex = 0;
1927 acb->wqbuf_lastindex = 0;
1928 pQbuffer = acb->rqbuffer;
1929 memset(pQbuffer, 0, sizeof(struct QBUFFER));
1930 pQbuffer = acb->wqbuffer;
1931 memset(pQbuffer, 0, sizeof(struct QBUFFER));
Nick Chengcdd3cb12010-07-13 20:03:04 +08001932 if(acb->fw_flag == FW_DEADLOCK) {
Nick Chengae52e7f2010-06-18 15:39:12 +08001933 pcmdmessagefld->cmdmessage.ReturnCode =
1934 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001935 }else{
Nick Chengae52e7f2010-06-18 15:39:12 +08001936 pcmdmessagefld->cmdmessage.ReturnCode =
1937 ARCMSR_MESSAGE_RETURNCODE_OK;
1938 }
Erich Chen1c57e862006-07-12 08:59:32 -07001939 }
1940 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001941
Erich Chen1c57e862006-07-12 08:59:32 -07001942 case ARCMSR_MESSAGE_RETURN_CODE_3F: {
Nick Chengcdd3cb12010-07-13 20:03:04 +08001943 if(acb->fw_flag == FW_DEADLOCK) {
Nick Cheng36b83de2010-05-17 11:22:42 +08001944 pcmdmessagefld->cmdmessage.ReturnCode =
1945 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001946 }else{
Nick Chengae52e7f2010-06-18 15:39:12 +08001947 pcmdmessagefld->cmdmessage.ReturnCode =
1948 ARCMSR_MESSAGE_RETURNCODE_3F;
Erich Chen1c57e862006-07-12 08:59:32 -07001949 }
1950 break;
Nick Chengae52e7f2010-06-18 15:39:12 +08001951 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001952 case ARCMSR_MESSAGE_SAY_HELLO: {
1953 int8_t *hello_string = "Hello! I am ARCMSR";
Nick Chengcdd3cb12010-07-13 20:03:04 +08001954 if(acb->fw_flag == FW_DEADLOCK) {
Nick Cheng36b83de2010-05-17 11:22:42 +08001955 pcmdmessagefld->cmdmessage.ReturnCode =
1956 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Chengcdd3cb12010-07-13 20:03:04 +08001957 }else{
Nick Chengae52e7f2010-06-18 15:39:12 +08001958 pcmdmessagefld->cmdmessage.ReturnCode =
1959 ARCMSR_MESSAGE_RETURNCODE_OK;
Nick Cheng36b83de2010-05-17 11:22:42 +08001960 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001961 memcpy(pcmdmessagefld->messagedatabuffer, hello_string
1962 , (int16_t)strlen(hello_string));
Erich Chen1c57e862006-07-12 08:59:32 -07001963 }
1964 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001965
Erich Chen1c57e862006-07-12 08:59:32 -07001966 case ARCMSR_MESSAGE_SAY_GOODBYE:
Nick Chengcdd3cb12010-07-13 20:03:04 +08001967 if(acb->fw_flag == FW_DEADLOCK) {
Nick Cheng36b83de2010-05-17 11:22:42 +08001968 pcmdmessagefld->cmdmessage.ReturnCode =
1969 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Cheng36b83de2010-05-17 11:22:42 +08001970 }
Erich Chen1c57e862006-07-12 08:59:32 -07001971 arcmsr_iop_parking(acb);
1972 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001973
Erich Chen1c57e862006-07-12 08:59:32 -07001974 case ARCMSR_MESSAGE_FLUSH_ADAPTER_CACHE:
Nick Chengcdd3cb12010-07-13 20:03:04 +08001975 if(acb->fw_flag == FW_DEADLOCK) {
Nick Cheng36b83de2010-05-17 11:22:42 +08001976 pcmdmessagefld->cmdmessage.ReturnCode =
1977 ARCMSR_MESSAGE_RETURNCODE_BUS_HANG_ON;
Nick Cheng36b83de2010-05-17 11:22:42 +08001978 }
Erich Chen1c57e862006-07-12 08:59:32 -07001979 arcmsr_flush_adapter_cache(acb);
1980 break;
Nick Cheng1a4f5502007-09-13 17:26:40 +08001981
Erich Chen1c57e862006-07-12 08:59:32 -07001982 default:
1983 retvalue = ARCMSR_MESSAGE_FAIL;
1984 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08001985 message_out:
FUJITA Tomonorideff2622007-05-14 19:25:56 +09001986 sg = scsi_sglist(cmd);
Cong Wang77dfce02011-11-25 23:14:23 +08001987 kunmap_atomic(buffer - sg->offset);
Erich Chen1c57e862006-07-12 08:59:32 -07001988 return retvalue;
1989}
1990
1991static struct CommandControlBlock *arcmsr_get_freeccb(struct AdapterControlBlock *acb)
1992{
1993 struct list_head *head = &acb->ccb_free_list;
1994 struct CommandControlBlock *ccb = NULL;
Nick Chengae52e7f2010-06-18 15:39:12 +08001995 unsigned long flags;
1996 spin_lock_irqsave(&acb->ccblist_lock, flags);
Erich Chen1c57e862006-07-12 08:59:32 -07001997 if (!list_empty(head)) {
1998 ccb = list_entry(head->next, struct CommandControlBlock, list);
Nick Chengae52e7f2010-06-18 15:39:12 +08001999 list_del_init(&ccb->list);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002000 }else{
Nick Chengae52e7f2010-06-18 15:39:12 +08002001 spin_unlock_irqrestore(&acb->ccblist_lock, flags);
2002 return 0;
Erich Chen1c57e862006-07-12 08:59:32 -07002003 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002004 spin_unlock_irqrestore(&acb->ccblist_lock, flags);
Erich Chen1c57e862006-07-12 08:59:32 -07002005 return ccb;
2006}
2007
2008static void arcmsr_handle_virtual_command(struct AdapterControlBlock *acb,
2009 struct scsi_cmnd *cmd)
2010{
2011 switch (cmd->cmnd[0]) {
2012 case INQUIRY: {
2013 unsigned char inqdata[36];
2014 char *buffer;
FUJITA Tomonorideff2622007-05-14 19:25:56 +09002015 struct scatterlist *sg;
Erich Chen1c57e862006-07-12 08:59:32 -07002016
2017 if (cmd->device->lun) {
2018 cmd->result = (DID_TIME_OUT << 16);
2019 cmd->scsi_done(cmd);
2020 return;
2021 }
2022 inqdata[0] = TYPE_PROCESSOR;
2023 /* Periph Qualifier & Periph Dev Type */
2024 inqdata[1] = 0;
2025 /* rem media bit & Dev Type Modifier */
2026 inqdata[2] = 0;
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002027 /* ISO, ECMA, & ANSI versions */
Erich Chen1c57e862006-07-12 08:59:32 -07002028 inqdata[4] = 31;
2029 /* length of additional data */
2030 strncpy(&inqdata[8], "Areca ", 8);
2031 /* Vendor Identification */
2032 strncpy(&inqdata[16], "RAID controller ", 16);
2033 /* Product Identification */
2034 strncpy(&inqdata[32], "R001", 4); /* Product Revision */
Erich Chen1c57e862006-07-12 08:59:32 -07002035
FUJITA Tomonorideff2622007-05-14 19:25:56 +09002036 sg = scsi_sglist(cmd);
Cong Wang77dfce02011-11-25 23:14:23 +08002037 buffer = kmap_atomic(sg_page(sg)) + sg->offset;
FUJITA Tomonorideff2622007-05-14 19:25:56 +09002038
Erich Chen1c57e862006-07-12 08:59:32 -07002039 memcpy(buffer, inqdata, sizeof(inqdata));
FUJITA Tomonorideff2622007-05-14 19:25:56 +09002040 sg = scsi_sglist(cmd);
Cong Wang77dfce02011-11-25 23:14:23 +08002041 kunmap_atomic(buffer - sg->offset);
Erich Chen1c57e862006-07-12 08:59:32 -07002042
Erich Chen1c57e862006-07-12 08:59:32 -07002043 cmd->scsi_done(cmd);
2044 }
2045 break;
2046 case WRITE_BUFFER:
2047 case READ_BUFFER: {
2048 if (arcmsr_iop_message_xfer(acb, cmd))
2049 cmd->result = (DID_ERROR << 16);
2050 cmd->scsi_done(cmd);
2051 }
2052 break;
2053 default:
2054 cmd->scsi_done(cmd);
2055 }
2056}
2057
Jeff Garzikf2812332010-11-16 02:10:29 -05002058static int arcmsr_queue_command_lck(struct scsi_cmnd *cmd,
Erich Chen1c57e862006-07-12 08:59:32 -07002059 void (* done)(struct scsi_cmnd *))
2060{
2061 struct Scsi_Host *host = cmd->device->host;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002062 struct AdapterControlBlock *acb = (struct AdapterControlBlock *) host->hostdata;
Erich Chen1c57e862006-07-12 08:59:32 -07002063 struct CommandControlBlock *ccb;
2064 int target = cmd->device->id;
2065 int lun = cmd->device->lun;
Nick Cheng36b83de2010-05-17 11:22:42 +08002066 uint8_t scsicmd = cmd->cmnd[0];
Erich Chen1c57e862006-07-12 08:59:32 -07002067 cmd->scsi_done = done;
2068 cmd->host_scribble = NULL;
2069 cmd->result = 0;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002070 if ((scsicmd == SYNCHRONIZE_CACHE) ||(scsicmd == SEND_DIAGNOSTIC)){
2071 if(acb->devstate[target][lun] == ARECA_RAID_GONE) {
2072 cmd->result = (DID_NO_CONNECT << 16);
Nick Cheng36b83de2010-05-17 11:22:42 +08002073 }
2074 cmd->scsi_done(cmd);
2075 return 0;
2076 }
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002077 if (target == 16) {
Erich Chen1c57e862006-07-12 08:59:32 -07002078 /* virtual device for iop message transfer */
2079 arcmsr_handle_virtual_command(acb, cmd);
2080 return 0;
2081 }
Erich Chen1c57e862006-07-12 08:59:32 -07002082 if (atomic_read(&acb->ccboutstandingcount) >=
2083 ARCMSR_MAX_OUTSTANDING_CMD)
2084 return SCSI_MLQUEUE_HOST_BUSY;
Erich Chen1c57e862006-07-12 08:59:32 -07002085 ccb = arcmsr_get_freeccb(acb);
2086 if (!ccb)
2087 return SCSI_MLQUEUE_HOST_BUSY;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002088 if (arcmsr_build_ccb( acb, ccb, cmd ) == FAILED) {
Nick Cheng76d78302008-02-04 23:53:24 -08002089 cmd->result = (DID_ERROR << 16) | (RESERVATION_CONFLICT << 1);
2090 cmd->scsi_done(cmd);
2091 return 0;
2092 }
Erich Chen1c57e862006-07-12 08:59:32 -07002093 arcmsr_post_ccb(acb, ccb);
2094 return 0;
2095}
2096
Jeff Garzikf2812332010-11-16 02:10:29 -05002097static DEF_SCSI_QCMD(arcmsr_queue_command)
2098
Nick Chengae52e7f2010-06-18 15:39:12 +08002099static bool arcmsr_get_hba_config(struct AdapterControlBlock *acb)
Erich Chen1c57e862006-07-12 08:59:32 -07002100{
Al Viro80da1ad2007-10-29 05:08:28 +00002101 struct MessageUnit_A __iomem *reg = acb->pmuA;
Erich Chen1c57e862006-07-12 08:59:32 -07002102 char *acb_firm_model = acb->firm_model;
2103 char *acb_firm_version = acb->firm_version;
Nick Cheng36b83de2010-05-17 11:22:42 +08002104 char *acb_device_map = acb->device_map;
Al Viro80da1ad2007-10-29 05:08:28 +00002105 char __iomem *iop_firm_model = (char __iomem *)(&reg->message_rwbuffer[15]);
2106 char __iomem *iop_firm_version = (char __iomem *)(&reg->message_rwbuffer[17]);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002107 char __iomem *iop_device_map = (char __iomem *)(&reg->message_rwbuffer[21]);
Erich Chen1c57e862006-07-12 08:59:32 -07002108 int count;
Erich Chen1c57e862006-07-12 08:59:32 -07002109 writel(ARCMSR_INBOUND_MESG0_GET_CONFIG, &reg->inbound_msgaddr0);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002110 if (!arcmsr_hba_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002111 printk(KERN_NOTICE "arcmsr%d: wait 'get adapter firmware \
2112 miscellaneous data' timeout \n", acb->host->host_no);
Nick Chengae52e7f2010-06-18 15:39:12 +08002113 return false;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002114 }
Erich Chen1c57e862006-07-12 08:59:32 -07002115 count = 8;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002116 while (count){
Erich Chen1c57e862006-07-12 08:59:32 -07002117 *acb_firm_model = readb(iop_firm_model);
2118 acb_firm_model++;
2119 iop_firm_model++;
2120 count--;
2121 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002122
Erich Chen1c57e862006-07-12 08:59:32 -07002123 count = 16;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002124 while (count){
Erich Chen1c57e862006-07-12 08:59:32 -07002125 *acb_firm_version = readb(iop_firm_version);
2126 acb_firm_version++;
2127 iop_firm_version++;
2128 count--;
2129 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002130
Nick Chengcdd3cb12010-07-13 20:03:04 +08002131 count=16;
2132 while(count){
2133 *acb_device_map = readb(iop_device_map);
2134 acb_device_map++;
2135 iop_device_map++;
2136 count--;
2137 }
2138 printk(KERN_NOTICE "Areca RAID Controller%d: F/W %s & Model %s\n",
Nick Chengae52e7f2010-06-18 15:39:12 +08002139 acb->host->host_no,
2140 acb->firm_version,
2141 acb->firm_model);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002142 acb->signature = readl(&reg->message_rwbuffer[0]);
Erich Chen1c57e862006-07-12 08:59:32 -07002143 acb->firm_request_len = readl(&reg->message_rwbuffer[1]);
2144 acb->firm_numbers_queue = readl(&reg->message_rwbuffer[2]);
2145 acb->firm_sdram_size = readl(&reg->message_rwbuffer[3]);
2146 acb->firm_hd_channels = readl(&reg->message_rwbuffer[4]);
Nick Chengae52e7f2010-06-18 15:39:12 +08002147 acb->firm_cfg_version = readl(&reg->message_rwbuffer[25]); /*firm_cfg_version,25,100-103*/
2148 return true;
Erich Chen1c57e862006-07-12 08:59:32 -07002149}
Nick Chengae52e7f2010-06-18 15:39:12 +08002150static bool arcmsr_get_hbb_config(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +08002151{
Al Viro80da1ad2007-10-29 05:08:28 +00002152 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +08002153 struct pci_dev *pdev = acb->pdev;
2154 void *dma_coherent;
2155 dma_addr_t dma_coherent_handle;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002156 char *acb_firm_model = acb->firm_model;
2157 char *acb_firm_version = acb->firm_version;
Nick Cheng36b83de2010-05-17 11:22:42 +08002158 char *acb_device_map = acb->device_map;
Nick Chengae52e7f2010-06-18 15:39:12 +08002159 char __iomem *iop_firm_model;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002160 /*firm_model,15,60-67*/
Nick Chengae52e7f2010-06-18 15:39:12 +08002161 char __iomem *iop_firm_version;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002162 /*firm_version,17,68-83*/
Nick Chengae52e7f2010-06-18 15:39:12 +08002163 char __iomem *iop_device_map;
Nick Cheng36b83de2010-05-17 11:22:42 +08002164 /*firm_version,21,84-99*/
Nick Cheng1a4f5502007-09-13 17:26:40 +08002165 int count;
Nick Chengae52e7f2010-06-18 15:39:12 +08002166 dma_coherent = dma_alloc_coherent(&pdev->dev, sizeof(struct MessageUnit_B), &dma_coherent_handle, GFP_KERNEL);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002167 if (!dma_coherent){
Nick Chengae52e7f2010-06-18 15:39:12 +08002168 printk(KERN_NOTICE "arcmsr%d: dma_alloc_coherent got error for hbb mu\n", acb->host->host_no);
2169 return false;
2170 }
2171 acb->dma_coherent_handle_hbb_mu = dma_coherent_handle;
2172 reg = (struct MessageUnit_B *)dma_coherent;
2173 acb->pmuB = reg;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002174 reg->drv2iop_doorbell= (uint32_t __iomem *)((unsigned long)acb->mem_base0 + ARCMSR_DRV2IOP_DOORBELL);
Nick Chengae52e7f2010-06-18 15:39:12 +08002175 reg->drv2iop_doorbell_mask = (uint32_t __iomem *)((unsigned long)acb->mem_base0 + ARCMSR_DRV2IOP_DOORBELL_MASK);
2176 reg->iop2drv_doorbell = (uint32_t __iomem *)((unsigned long)acb->mem_base0 + ARCMSR_IOP2DRV_DOORBELL);
2177 reg->iop2drv_doorbell_mask = (uint32_t __iomem *)((unsigned long)acb->mem_base0 + ARCMSR_IOP2DRV_DOORBELL_MASK);
2178 reg->message_wbuffer = (uint32_t __iomem *)((unsigned long)acb->mem_base1 + ARCMSR_MESSAGE_WBUFFER);
2179 reg->message_rbuffer = (uint32_t __iomem *)((unsigned long)acb->mem_base1 + ARCMSR_MESSAGE_RBUFFER);
2180 reg->message_rwbuffer = (uint32_t __iomem *)((unsigned long)acb->mem_base1 + ARCMSR_MESSAGE_RWBUFFER);
2181 iop_firm_model = (char __iomem *)(&reg->message_rwbuffer[15]); /*firm_model,15,60-67*/
2182 iop_firm_version = (char __iomem *)(&reg->message_rwbuffer[17]); /*firm_version,17,68-83*/
2183 iop_device_map = (char __iomem *)(&reg->message_rwbuffer[21]); /*firm_version,21,84-99*/
Nick Cheng1a4f5502007-09-13 17:26:40 +08002184
Nick Chengae52e7f2010-06-18 15:39:12 +08002185 writel(ARCMSR_MESSAGE_GET_CONFIG, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002186 if (!arcmsr_hbb_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002187 printk(KERN_NOTICE "arcmsr%d: wait 'get adapter firmware \
2188 miscellaneous data' timeout \n", acb->host->host_no);
Nick Chengae52e7f2010-06-18 15:39:12 +08002189 return false;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002190 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002191 count = 8;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002192 while (count){
2193 *acb_firm_model = readb(iop_firm_model);
2194 acb_firm_model++;
2195 iop_firm_model++;
2196 count--;
2197 }
2198 count = 16;
2199 while (count){
2200 *acb_firm_version = readb(iop_firm_version);
2201 acb_firm_version++;
2202 iop_firm_version++;
2203 count--;
2204 }
2205
2206 count = 16;
2207 while(count){
2208 *acb_device_map = readb(iop_device_map);
2209 acb_device_map++;
2210 iop_device_map++;
2211 count--;
2212 }
2213
2214 printk(KERN_NOTICE "Areca RAID Controller%d: F/W %s & Model %s\n",
2215 acb->host->host_no,
2216 acb->firm_version,
2217 acb->firm_model);
2218
2219 acb->signature = readl(&reg->message_rwbuffer[1]);
2220 /*firm_signature,1,00-03*/
2221 acb->firm_request_len = readl(&reg->message_rwbuffer[2]);
2222 /*firm_request_len,1,04-07*/
2223 acb->firm_numbers_queue = readl(&reg->message_rwbuffer[3]);
2224 /*firm_numbers_queue,2,08-11*/
2225 acb->firm_sdram_size = readl(&reg->message_rwbuffer[4]);
2226 /*firm_sdram_size,3,12-15*/
2227 acb->firm_hd_channels = readl(&reg->message_rwbuffer[5]);
2228 /*firm_ide_channels,4,16-19*/
2229 acb->firm_cfg_version = readl(&reg->message_rwbuffer[25]); /*firm_cfg_version,25,100-103*/
2230 /*firm_ide_channels,4,16-19*/
2231 return true;
2232}
2233
2234static bool arcmsr_get_hbc_config(struct AdapterControlBlock *pACB)
2235{
2236 uint32_t intmask_org, Index, firmware_state = 0;
2237 struct MessageUnit_C *reg = pACB->pmuC;
2238 char *acb_firm_model = pACB->firm_model;
2239 char *acb_firm_version = pACB->firm_version;
2240 char *iop_firm_model = (char *)(&reg->msgcode_rwbuffer[15]); /*firm_model,15,60-67*/
2241 char *iop_firm_version = (char *)(&reg->msgcode_rwbuffer[17]); /*firm_version,17,68-83*/
2242 int count;
2243 /* disable all outbound interrupt */
2244 intmask_org = readl(&reg->host_int_mask); /* disable outbound message0 int */
2245 writel(intmask_org|ARCMSR_HBCMU_ALL_INTMASKENABLE, &reg->host_int_mask);
2246 /* wait firmware ready */
2247 do {
2248 firmware_state = readl(&reg->outbound_msgaddr1);
2249 } while ((firmware_state & ARCMSR_HBCMU_MESSAGE_FIRMWARE_OK) == 0);
2250 /* post "get config" instruction */
2251 writel(ARCMSR_INBOUND_MESG0_GET_CONFIG, &reg->inbound_msgaddr0);
2252 writel(ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE, &reg->inbound_doorbell);
2253 /* wait message ready */
2254 for (Index = 0; Index < 2000; Index++) {
2255 if (readl(&reg->outbound_doorbell) & ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE) {
2256 writel(ARCMSR_HBCMU_IOP2DRV_MESSAGE_CMD_DONE_DOORBELL_CLEAR, &reg->outbound_doorbell_clear);/*clear interrupt*/
2257 break;
2258 }
2259 udelay(10);
2260 } /*max 1 seconds*/
2261 if (Index >= 2000) {
2262 printk(KERN_NOTICE "arcmsr%d: wait 'get adapter firmware \
2263 miscellaneous data' timeout \n", pACB->host->host_no);
2264 return false;
2265 }
2266 count = 8;
Nick Chengae52e7f2010-06-18 15:39:12 +08002267 while (count) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002268 *acb_firm_model = readb(iop_firm_model);
2269 acb_firm_model++;
2270 iop_firm_model++;
2271 count--;
2272 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002273 count = 16;
Nick Chengae52e7f2010-06-18 15:39:12 +08002274 while (count) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002275 *acb_firm_version = readb(iop_firm_version);
2276 acb_firm_version++;
2277 iop_firm_version++;
2278 count--;
2279 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002280 printk(KERN_NOTICE "Areca RAID Controller%d: F/W %s & Model %s\n",
Nick Chengcdd3cb12010-07-13 20:03:04 +08002281 pACB->host->host_no,
2282 pACB->firm_version,
2283 pACB->firm_model);
2284 pACB->firm_request_len = readl(&reg->msgcode_rwbuffer[1]); /*firm_request_len,1,04-07*/
2285 pACB->firm_numbers_queue = readl(&reg->msgcode_rwbuffer[2]); /*firm_numbers_queue,2,08-11*/
2286 pACB->firm_sdram_size = readl(&reg->msgcode_rwbuffer[3]); /*firm_sdram_size,3,12-15*/
2287 pACB->firm_hd_channels = readl(&reg->msgcode_rwbuffer[4]); /*firm_ide_channels,4,16-19*/
2288 pACB->firm_cfg_version = readl(&reg->msgcode_rwbuffer[25]); /*firm_cfg_version,25,100-103*/
2289 /*all interrupt service will be enable at arcmsr_iop_init*/
Nick Chengae52e7f2010-06-18 15:39:12 +08002290 return true;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002291}
Nick Chengae52e7f2010-06-18 15:39:12 +08002292static bool arcmsr_get_firmware_spec(struct AdapterControlBlock *acb)
Nick Cheng1a4f5502007-09-13 17:26:40 +08002293{
Nick Chengae52e7f2010-06-18 15:39:12 +08002294 if (acb->adapter_type == ACB_ADAPTER_TYPE_A)
2295 return arcmsr_get_hba_config(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002296 else if (acb->adapter_type == ACB_ADAPTER_TYPE_B)
Nick Chengae52e7f2010-06-18 15:39:12 +08002297 return arcmsr_get_hbb_config(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002298 else
2299 return arcmsr_get_hbc_config(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002300}
2301
Nick Chengae52e7f2010-06-18 15:39:12 +08002302static int arcmsr_polling_hba_ccbdone(struct AdapterControlBlock *acb,
Erich Chen1c57e862006-07-12 08:59:32 -07002303 struct CommandControlBlock *poll_ccb)
2304{
Al Viro80da1ad2007-10-29 05:08:28 +00002305 struct MessageUnit_A __iomem *reg = acb->pmuA;
Erich Chen1c57e862006-07-12 08:59:32 -07002306 struct CommandControlBlock *ccb;
Nick Chengae52e7f2010-06-18 15:39:12 +08002307 struct ARCMSR_CDB *arcmsr_cdb;
Erich Chen1c57e862006-07-12 08:59:32 -07002308 uint32_t flag_ccb, outbound_intstatus, poll_ccb_done = 0, poll_count = 0;
Nick Chengae52e7f2010-06-18 15:39:12 +08002309 int rtn;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002310 bool error;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002311 polling_hba_ccb_retry:
Erich Chen1c57e862006-07-12 08:59:32 -07002312 poll_count++;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002313 outbound_intstatus = readl(&reg->outbound_intstatus) & acb->outbound_int_enable;
Erich Chen1c57e862006-07-12 08:59:32 -07002314 writel(outbound_intstatus, &reg->outbound_intstatus);/*clear interrupt*/
2315 while (1) {
2316 if ((flag_ccb = readl(&reg->outbound_queueport)) == 0xFFFFFFFF) {
Nick Chengcdd3cb12010-07-13 20:03:04 +08002317 if (poll_ccb_done){
Nick Chengae52e7f2010-06-18 15:39:12 +08002318 rtn = SUCCESS;
Erich Chen1c57e862006-07-12 08:59:32 -07002319 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002320 }else {
2321 msleep(25);
2322 if (poll_count > 100){
Nick Chengae52e7f2010-06-18 15:39:12 +08002323 rtn = FAILED;
Erich Chen1c57e862006-07-12 08:59:32 -07002324 break;
Nick Chengae52e7f2010-06-18 15:39:12 +08002325 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002326 goto polling_hba_ccb_retry;
Erich Chen1c57e862006-07-12 08:59:32 -07002327 }
2328 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002329 arcmsr_cdb = (struct ARCMSR_CDB *)(acb->vir2phy_offset + (flag_ccb << 5));
2330 ccb = container_of(arcmsr_cdb, struct CommandControlBlock, arcmsr_cdb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002331 poll_ccb_done = (ccb == poll_ccb) ? 1:0;
2332 if ((ccb->acb != acb) || (ccb->startdone != ARCMSR_CCB_START)) {
2333 if ((ccb->startdone == ARCMSR_CCB_ABORTED) || (ccb == poll_ccb)) {
2334 printk(KERN_NOTICE "arcmsr%d: scsi id = %d lun = %d ccb = '0x%p'"
Erich Chen1c57e862006-07-12 08:59:32 -07002335 " poll command abort successfully \n"
2336 , acb->host->host_no
2337 , ccb->pcmd->device->id
2338 , ccb->pcmd->device->lun
2339 , ccb);
2340 ccb->pcmd->result = DID_ABORT << 16;
Nick Chengae52e7f2010-06-18 15:39:12 +08002341 arcmsr_ccb_complete(ccb);
Erich Chen1c57e862006-07-12 08:59:32 -07002342 continue;
2343 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002344 printk(KERN_NOTICE "arcmsr%d: polling get an illegal ccb"
2345 " command done ccb = '0x%p'"
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002346 "ccboutstandingcount = %d \n"
Erich Chen1c57e862006-07-12 08:59:32 -07002347 , acb->host->host_no
2348 , ccb
2349 , atomic_read(&acb->ccboutstandingcount));
2350 continue;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002351 }
2352 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE0) ? true : false;
2353 arcmsr_report_ccb_state(acb, ccb, error);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002354 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002355 return rtn;
2356}
Nick Cheng1a4f5502007-09-13 17:26:40 +08002357
Nick Chengae52e7f2010-06-18 15:39:12 +08002358static int arcmsr_polling_hbb_ccbdone(struct AdapterControlBlock *acb,
Nick Cheng1a4f5502007-09-13 17:26:40 +08002359 struct CommandControlBlock *poll_ccb)
2360{
Nick Chengcdd3cb12010-07-13 20:03:04 +08002361 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +08002362 struct ARCMSR_CDB *arcmsr_cdb;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002363 struct CommandControlBlock *ccb;
2364 uint32_t flag_ccb, poll_ccb_done = 0, poll_count = 0;
Nick Chengae52e7f2010-06-18 15:39:12 +08002365 int index, rtn;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002366 bool error;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002367 polling_hbb_ccb_retry:
NickCheng97b99122011-01-06 17:32:41 +08002368
Nick Chengcdd3cb12010-07-13 20:03:04 +08002369 poll_count++;
2370 /* clear doorbell interrupt */
Nick Chengae52e7f2010-06-18 15:39:12 +08002371 writel(ARCMSR_DOORBELL_INT_CLEAR_PATTERN, reg->iop2drv_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002372 while(1){
2373 index = reg->doneq_index;
2374 if ((flag_ccb = readl(&reg->done_qbuffer[index])) == 0) {
2375 if (poll_ccb_done){
Nick Chengae52e7f2010-06-18 15:39:12 +08002376 rtn = SUCCESS;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002377 break;
2378 }else {
2379 msleep(25);
2380 if (poll_count > 100){
Nick Chengae52e7f2010-06-18 15:39:12 +08002381 rtn = FAILED;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002382 break;
Nick Chengae52e7f2010-06-18 15:39:12 +08002383 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08002384 goto polling_hbb_ccb_retry;
Erich Chen1c57e862006-07-12 08:59:32 -07002385 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08002386 }
2387 writel(0, &reg->done_qbuffer[index]);
2388 index++;
2389 /*if last index number set it to 0 */
2390 index %= ARCMSR_MAX_HBB_POSTQUEUE;
2391 reg->doneq_index = index;
2392 /* check if command done with no error*/
Nick Chengae52e7f2010-06-18 15:39:12 +08002393 arcmsr_cdb = (struct ARCMSR_CDB *)(acb->vir2phy_offset + (flag_ccb << 5));
2394 ccb = container_of(arcmsr_cdb, struct CommandControlBlock, arcmsr_cdb);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002395 poll_ccb_done = (ccb == poll_ccb) ? 1:0;
2396 if ((ccb->acb != acb) || (ccb->startdone != ARCMSR_CCB_START)) {
2397 if ((ccb->startdone == ARCMSR_CCB_ABORTED) || (ccb == poll_ccb)) {
Nick Chengae52e7f2010-06-18 15:39:12 +08002398 printk(KERN_NOTICE "arcmsr%d: scsi id = %d lun = %d ccb = '0x%p'"
2399 " poll command abort successfully \n"
Nick Chengcdd3cb12010-07-13 20:03:04 +08002400 ,acb->host->host_no
2401 ,ccb->pcmd->device->id
2402 ,ccb->pcmd->device->lun
2403 ,ccb);
2404 ccb->pcmd->result = DID_ABORT << 16;
Nick Chengae52e7f2010-06-18 15:39:12 +08002405 arcmsr_ccb_complete(ccb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002406 continue;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002407 }
2408 printk(KERN_NOTICE "arcmsr%d: polling get an illegal ccb"
2409 " command done ccb = '0x%p'"
2410 "ccboutstandingcount = %d \n"
2411 , acb->host->host_no
2412 , ccb
2413 , atomic_read(&acb->ccboutstandingcount));
2414 continue;
2415 }
2416 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE0) ? true : false;
2417 arcmsr_report_ccb_state(acb, ccb, error);
2418 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002419 return rtn;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002420}
2421
Nick Chengcdd3cb12010-07-13 20:03:04 +08002422static int arcmsr_polling_hbc_ccbdone(struct AdapterControlBlock *acb, struct CommandControlBlock *poll_ccb)
2423{
2424 struct MessageUnit_C *reg = (struct MessageUnit_C *)acb->pmuC;
2425 uint32_t flag_ccb, ccb_cdb_phy;
2426 struct ARCMSR_CDB *arcmsr_cdb;
2427 bool error;
2428 struct CommandControlBlock *pCCB;
2429 uint32_t poll_ccb_done = 0, poll_count = 0;
2430 int rtn;
2431polling_hbc_ccb_retry:
2432 poll_count++;
2433 while (1) {
2434 if ((readl(&reg->host_int_status) & ARCMSR_HBCMU_OUTBOUND_POSTQUEUE_ISR) == 0) {
2435 if (poll_ccb_done) {
2436 rtn = SUCCESS;
2437 break;
2438 } else {
2439 msleep(25);
2440 if (poll_count > 100) {
2441 rtn = FAILED;
2442 break;
2443 }
2444 goto polling_hbc_ccb_retry;
2445 }
2446 }
2447 flag_ccb = readl(&reg->outbound_queueport_low);
2448 ccb_cdb_phy = (flag_ccb & 0xFFFFFFF0);
2449 arcmsr_cdb = (struct ARCMSR_CDB *)(acb->vir2phy_offset + ccb_cdb_phy);/*frame must be 32 bytes aligned*/
2450 pCCB = container_of(arcmsr_cdb, struct CommandControlBlock, arcmsr_cdb);
2451 poll_ccb_done = (pCCB == poll_ccb) ? 1 : 0;
2452 /* check ifcommand done with no error*/
2453 if ((pCCB->acb != acb) || (pCCB->startdone != ARCMSR_CCB_START)) {
2454 if (pCCB->startdone == ARCMSR_CCB_ABORTED) {
2455 printk(KERN_NOTICE "arcmsr%d: scsi id = %d lun = %d ccb = '0x%p'"
2456 " poll command abort successfully \n"
2457 , acb->host->host_no
2458 , pCCB->pcmd->device->id
2459 , pCCB->pcmd->device->lun
2460 , pCCB);
2461 pCCB->pcmd->result = DID_ABORT << 16;
2462 arcmsr_ccb_complete(pCCB);
2463 continue;
2464 }
2465 printk(KERN_NOTICE "arcmsr%d: polling get an illegal ccb"
2466 " command done ccb = '0x%p'"
2467 "ccboutstandingcount = %d \n"
2468 , acb->host->host_no
2469 , pCCB
2470 , atomic_read(&acb->ccboutstandingcount));
2471 continue;
2472 }
2473 error = (flag_ccb & ARCMSR_CCBREPLY_FLAG_ERROR_MODE1) ? true : false;
2474 arcmsr_report_ccb_state(acb, pCCB, error);
2475 }
2476 return rtn;
2477}
Nick Chengae52e7f2010-06-18 15:39:12 +08002478static int arcmsr_polling_ccbdone(struct AdapterControlBlock *acb,
Nick Cheng1a4f5502007-09-13 17:26:40 +08002479 struct CommandControlBlock *poll_ccb)
2480{
Nick Chengae52e7f2010-06-18 15:39:12 +08002481 int rtn = 0;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002482 switch (acb->adapter_type) {
2483
2484 case ACB_ADAPTER_TYPE_A: {
Nick Chengae52e7f2010-06-18 15:39:12 +08002485 rtn = arcmsr_polling_hba_ccbdone(acb, poll_ccb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002486 }
2487 break;
2488
2489 case ACB_ADAPTER_TYPE_B: {
Nick Chengae52e7f2010-06-18 15:39:12 +08002490 rtn = arcmsr_polling_hbb_ccbdone(acb, poll_ccb);
Erich Chen1c57e862006-07-12 08:59:32 -07002491 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08002492 break;
2493 case ACB_ADAPTER_TYPE_C: {
2494 rtn = arcmsr_polling_hbc_ccbdone(acb, poll_ccb);
2495 }
Erich Chen1c57e862006-07-12 08:59:32 -07002496 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002497 return rtn;
Erich Chen1c57e862006-07-12 08:59:32 -07002498}
Nick Cheng1a4f5502007-09-13 17:26:40 +08002499
2500static int arcmsr_iop_confirm(struct AdapterControlBlock *acb)
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002501{
Nick Chengae52e7f2010-06-18 15:39:12 +08002502 uint32_t cdb_phyaddr, cdb_phyaddr_hi32;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002503 dma_addr_t dma_coherent_handle;
2504 /*
2505 ********************************************************************
2506 ** here we need to tell iop 331 our freeccb.HighPart
2507 ** if freeccb.HighPart is not zero
2508 ********************************************************************
2509 */
2510 dma_coherent_handle = acb->dma_coherent_handle;
2511 cdb_phyaddr = (uint32_t)(dma_coherent_handle);
Nick Chengae52e7f2010-06-18 15:39:12 +08002512 cdb_phyaddr_hi32 = (uint32_t)((cdb_phyaddr >> 16) >> 16);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002513 acb->cdb_phyaddr_hi32 = cdb_phyaddr_hi32;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002514 /*
2515 ***********************************************************************
2516 ** if adapter type B, set window of "post command Q"
2517 ***********************************************************************
2518 */
2519 switch (acb->adapter_type) {
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002520
Nick Cheng1a4f5502007-09-13 17:26:40 +08002521 case ACB_ADAPTER_TYPE_A: {
Nick Chengae52e7f2010-06-18 15:39:12 +08002522 if (cdb_phyaddr_hi32 != 0) {
Al Viro80da1ad2007-10-29 05:08:28 +00002523 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002524 uint32_t intmask_org;
2525 intmask_org = arcmsr_disable_outbound_ints(acb);
2526 writel(ARCMSR_SIGNATURE_SET_CONFIG, \
2527 &reg->message_rwbuffer[0]);
Nick Chengae52e7f2010-06-18 15:39:12 +08002528 writel(cdb_phyaddr_hi32, &reg->message_rwbuffer[1]);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002529 writel(ARCMSR_INBOUND_MESG0_SET_CONFIG, \
2530 &reg->inbound_msgaddr0);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002531 if (!arcmsr_hba_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002532 printk(KERN_NOTICE "arcmsr%d: ""set ccb high \
2533 part physical address timeout\n",
2534 acb->host->host_no);
2535 return 1;
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002536 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002537 arcmsr_enable_outbound_ints(acb, intmask_org);
2538 }
2539 }
2540 break;
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002541
Nick Cheng1a4f5502007-09-13 17:26:40 +08002542 case ACB_ADAPTER_TYPE_B: {
2543 unsigned long post_queue_phyaddr;
Al Viro80da1ad2007-10-29 05:08:28 +00002544 uint32_t __iomem *rwbuffer;
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002545
Al Viro80da1ad2007-10-29 05:08:28 +00002546 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002547 uint32_t intmask_org;
2548 intmask_org = arcmsr_disable_outbound_ints(acb);
2549 reg->postq_index = 0;
2550 reg->doneq_index = 0;
Nick Chengae52e7f2010-06-18 15:39:12 +08002551 writel(ARCMSR_MESSAGE_SET_POST_WINDOW, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002552 if (!arcmsr_hbb_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002553 printk(KERN_NOTICE "arcmsr%d:can not set diver mode\n", \
2554 acb->host->host_no);
2555 return 1;
2556 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002557 post_queue_phyaddr = acb->dma_coherent_handle_hbb_mu;
2558 rwbuffer = reg->message_rwbuffer;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002559 /* driver "set config" signature */
2560 writel(ARCMSR_SIGNATURE_SET_CONFIG, rwbuffer++);
2561 /* normal should be zero */
Nick Chengae52e7f2010-06-18 15:39:12 +08002562 writel(cdb_phyaddr_hi32, rwbuffer++);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002563 /* postQ size (256 + 8)*4 */
2564 writel(post_queue_phyaddr, rwbuffer++);
2565 /* doneQ size (256 + 8)*4 */
2566 writel(post_queue_phyaddr + 1056, rwbuffer++);
2567 /* ccb maxQ size must be --> [(256 + 8)*4]*/
2568 writel(1056, rwbuffer);
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002569
Nick Chengae52e7f2010-06-18 15:39:12 +08002570 writel(ARCMSR_MESSAGE_SET_CONFIG, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002571 if (!arcmsr_hbb_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002572 printk(KERN_NOTICE "arcmsr%d: 'set command Q window' \
2573 timeout \n",acb->host->host_no);
2574 return 1;
2575 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002576 arcmsr_hbb_enable_driver_mode(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002577 arcmsr_enable_outbound_ints(acb, intmask_org);
2578 }
2579 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002580 case ACB_ADAPTER_TYPE_C: {
2581 if (cdb_phyaddr_hi32 != 0) {
2582 struct MessageUnit_C *reg = (struct MessageUnit_C *)acb->pmuC;
2583
Tomas Henzl8b7eb862011-04-29 16:28:24 +02002584 printk(KERN_NOTICE "arcmsr%d: cdb_phyaddr_hi32=0x%x\n",
2585 acb->adapter_index, cdb_phyaddr_hi32);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002586 writel(ARCMSR_SIGNATURE_SET_CONFIG, &reg->msgcode_rwbuffer[0]);
2587 writel(cdb_phyaddr_hi32, &reg->msgcode_rwbuffer[1]);
2588 writel(ARCMSR_INBOUND_MESG0_SET_CONFIG, &reg->inbound_msgaddr0);
2589 writel(ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE, &reg->inbound_doorbell);
2590 if (!arcmsr_hbc_wait_msgint_ready(acb)) {
2591 printk(KERN_NOTICE "arcmsr%d: 'set command Q window' \
2592 timeout \n", acb->host->host_no);
2593 return 1;
2594 }
2595 }
2596 }
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002597 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002598 return 0;
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002599}
2600
Nick Cheng1a4f5502007-09-13 17:26:40 +08002601static void arcmsr_wait_firmware_ready(struct AdapterControlBlock *acb)
2602{
2603 uint32_t firmware_state = 0;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002604 switch (acb->adapter_type) {
2605
2606 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00002607 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002608 do {
2609 firmware_state = readl(&reg->outbound_msgaddr1);
2610 } while ((firmware_state & ARCMSR_OUTBOUND_MESG1_FIRMWARE_OK) == 0);
2611 }
2612 break;
2613
2614 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00002615 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002616 do {
Nick Chengae52e7f2010-06-18 15:39:12 +08002617 firmware_state = readl(reg->iop2drv_doorbell);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002618 } while ((firmware_state & ARCMSR_MESSAGE_FIRMWARE_OK) == 0);
Nick Chengae52e7f2010-06-18 15:39:12 +08002619 writel(ARCMSR_DRV2IOP_END_OF_INTERRUPT, reg->drv2iop_doorbell);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002620 }
2621 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002622 case ACB_ADAPTER_TYPE_C: {
2623 struct MessageUnit_C *reg = (struct MessageUnit_C *)acb->pmuC;
2624 do {
2625 firmware_state = readl(&reg->outbound_msgaddr1);
2626 } while ((firmware_state & ARCMSR_HBCMU_MESSAGE_FIRMWARE_OK) == 0);
2627 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002628 }
2629}
2630
Nick Cheng36b83de2010-05-17 11:22:42 +08002631static void arcmsr_request_hba_device_map(struct AdapterControlBlock *acb)
2632{
2633 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002634 if (unlikely(atomic_read(&acb->rq_map_token) == 0) || ((acb->acb_flags & ACB_F_BUS_RESET) != 0 ) || ((acb->acb_flags & ACB_F_ABORT) != 0 )){
NickCheng97b99122011-01-06 17:32:41 +08002635 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
Nick Chengcdd3cb12010-07-13 20:03:04 +08002636 return;
2637 } else {
2638 acb->fw_flag = FW_NORMAL;
2639 if (atomic_read(&acb->ante_token_value) == atomic_read(&acb->rq_map_token)){
2640 atomic_set(&acb->rq_map_token, 16);
2641 }
2642 atomic_set(&acb->ante_token_value, atomic_read(&acb->rq_map_token));
NickCheng97b99122011-01-06 17:32:41 +08002643 if (atomic_dec_and_test(&acb->rq_map_token)) {
2644 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
Nick Chengcdd3cb12010-07-13 20:03:04 +08002645 return;
NickCheng97b99122011-01-06 17:32:41 +08002646 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08002647 writel(ARCMSR_INBOUND_MESG0_GET_CONFIG, &reg->inbound_msgaddr0);
2648 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
2649 }
2650 return;
2651}
2652
2653static void arcmsr_request_hbb_device_map(struct AdapterControlBlock *acb)
2654{
2655 struct MessageUnit_B __iomem *reg = acb->pmuB;
2656 if (unlikely(atomic_read(&acb->rq_map_token) == 0) || ((acb->acb_flags & ACB_F_BUS_RESET) != 0 ) || ((acb->acb_flags & ACB_F_ABORT) != 0 )){
NickCheng97b99122011-01-06 17:32:41 +08002657 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
Nick Chengcdd3cb12010-07-13 20:03:04 +08002658 return;
2659 } else {
2660 acb->fw_flag = FW_NORMAL;
2661 if (atomic_read(&acb->ante_token_value) == atomic_read(&acb->rq_map_token)) {
NickCheng97b99122011-01-06 17:32:41 +08002662 atomic_set(&acb->rq_map_token, 16);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002663 }
2664 atomic_set(&acb->ante_token_value, atomic_read(&acb->rq_map_token));
NickCheng97b99122011-01-06 17:32:41 +08002665 if (atomic_dec_and_test(&acb->rq_map_token)) {
2666 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
Nick Chengcdd3cb12010-07-13 20:03:04 +08002667 return;
NickCheng97b99122011-01-06 17:32:41 +08002668 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08002669 writel(ARCMSR_MESSAGE_GET_CONFIG, reg->drv2iop_doorbell);
2670 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
2671 }
2672 return;
2673}
2674
2675static void arcmsr_request_hbc_device_map(struct AdapterControlBlock *acb)
2676{
2677 struct MessageUnit_C __iomem *reg = acb->pmuC;
Nick Chengae52e7f2010-06-18 15:39:12 +08002678 if (unlikely(atomic_read(&acb->rq_map_token) == 0) || ((acb->acb_flags & ACB_F_BUS_RESET) != 0) || ((acb->acb_flags & ACB_F_ABORT) != 0)) {
NickCheng97b99122011-01-06 17:32:41 +08002679 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
Nick Chengae52e7f2010-06-18 15:39:12 +08002680 return;
Nick Cheng36b83de2010-05-17 11:22:42 +08002681 } else {
Nick Chengae52e7f2010-06-18 15:39:12 +08002682 acb->fw_flag = FW_NORMAL;
2683 if (atomic_read(&acb->ante_token_value) == atomic_read(&acb->rq_map_token)) {
Nick Cheng36b83de2010-05-17 11:22:42 +08002684 atomic_set(&acb->rq_map_token, 16);
2685 }
Nick Chengae52e7f2010-06-18 15:39:12 +08002686 atomic_set(&acb->ante_token_value, atomic_read(&acb->rq_map_token));
NickCheng97b99122011-01-06 17:32:41 +08002687 if (atomic_dec_and_test(&acb->rq_map_token)) {
2688 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
Nick Chengae52e7f2010-06-18 15:39:12 +08002689 return;
NickCheng97b99122011-01-06 17:32:41 +08002690 }
Nick Cheng36b83de2010-05-17 11:22:42 +08002691 writel(ARCMSR_INBOUND_MESG0_GET_CONFIG, &reg->inbound_msgaddr0);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002692 writel(ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE, &reg->inbound_doorbell);
2693 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
Nick Cheng36b83de2010-05-17 11:22:42 +08002694 }
Nick Cheng36b83de2010-05-17 11:22:42 +08002695 return;
2696}
2697
2698static void arcmsr_request_device_map(unsigned long pacb)
2699{
2700 struct AdapterControlBlock *acb = (struct AdapterControlBlock *)pacb;
Nick Cheng36b83de2010-05-17 11:22:42 +08002701 switch (acb->adapter_type) {
2702 case ACB_ADAPTER_TYPE_A: {
2703 arcmsr_request_hba_device_map(acb);
2704 }
2705 break;
2706 case ACB_ADAPTER_TYPE_B: {
2707 arcmsr_request_hbb_device_map(acb);
2708 }
2709 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002710 case ACB_ADAPTER_TYPE_C: {
2711 arcmsr_request_hbc_device_map(acb);
2712 }
Nick Cheng36b83de2010-05-17 11:22:42 +08002713 }
2714}
2715
Nick Cheng1a4f5502007-09-13 17:26:40 +08002716static void arcmsr_start_hba_bgrb(struct AdapterControlBlock *acb)
2717{
Al Viro80da1ad2007-10-29 05:08:28 +00002718 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002719 acb->acb_flags |= ACB_F_MSG_START_BGRB;
2720 writel(ARCMSR_INBOUND_MESG0_START_BGRB, &reg->inbound_msgaddr0);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002721 if (!arcmsr_hba_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002722 printk(KERN_NOTICE "arcmsr%d: wait 'start adapter background \
2723 rebulid' timeout \n", acb->host->host_no);
2724 }
2725}
2726
2727static void arcmsr_start_hbb_bgrb(struct AdapterControlBlock *acb)
2728{
Al Viro80da1ad2007-10-29 05:08:28 +00002729 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002730 acb->acb_flags |= ACB_F_MSG_START_BGRB;
Nick Chengae52e7f2010-06-18 15:39:12 +08002731 writel(ARCMSR_MESSAGE_START_BGRB, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002732 if (!arcmsr_hbb_wait_msgint_ready(acb)) {
Nick Cheng1a4f5502007-09-13 17:26:40 +08002733 printk(KERN_NOTICE "arcmsr%d: wait 'start adapter background \
2734 rebulid' timeout \n",acb->host->host_no);
2735 }
2736}
2737
Nick Chengcdd3cb12010-07-13 20:03:04 +08002738static void arcmsr_start_hbc_bgrb(struct AdapterControlBlock *pACB)
2739{
2740 struct MessageUnit_C *phbcmu = (struct MessageUnit_C *)pACB->pmuC;
2741 pACB->acb_flags |= ACB_F_MSG_START_BGRB;
2742 writel(ARCMSR_INBOUND_MESG0_START_BGRB, &phbcmu->inbound_msgaddr0);
2743 writel(ARCMSR_HBCMU_DRV2IOP_MESSAGE_CMD_DONE, &phbcmu->inbound_doorbell);
2744 if (!arcmsr_hbc_wait_msgint_ready(pACB)) {
2745 printk(KERN_NOTICE "arcmsr%d: wait 'start adapter background \
2746 rebulid' timeout \n", pACB->host->host_no);
2747 }
2748 return;
2749}
Nick Cheng1a4f5502007-09-13 17:26:40 +08002750static void arcmsr_start_adapter_bgrb(struct AdapterControlBlock *acb)
2751{
2752 switch (acb->adapter_type) {
2753 case ACB_ADAPTER_TYPE_A:
2754 arcmsr_start_hba_bgrb(acb);
2755 break;
2756 case ACB_ADAPTER_TYPE_B:
2757 arcmsr_start_hbb_bgrb(acb);
2758 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002759 case ACB_ADAPTER_TYPE_C:
2760 arcmsr_start_hbc_bgrb(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002761 }
2762}
2763
2764static void arcmsr_clear_doorbell_queue_buffer(struct AdapterControlBlock *acb)
2765{
2766 switch (acb->adapter_type) {
2767 case ACB_ADAPTER_TYPE_A: {
Al Viro80da1ad2007-10-29 05:08:28 +00002768 struct MessageUnit_A __iomem *reg = acb->pmuA;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002769 uint32_t outbound_doorbell;
2770 /* empty doorbell Qbuffer if door bell ringed */
2771 outbound_doorbell = readl(&reg->outbound_doorbell);
2772 /*clear doorbell interrupt */
2773 writel(outbound_doorbell, &reg->outbound_doorbell);
2774 writel(ARCMSR_INBOUND_DRIVER_DATA_READ_OK, &reg->inbound_doorbell);
2775 }
2776 break;
2777
2778 case ACB_ADAPTER_TYPE_B: {
Al Viro80da1ad2007-10-29 05:08:28 +00002779 struct MessageUnit_B *reg = acb->pmuB;
Nick Cheng1a4f5502007-09-13 17:26:40 +08002780 /*clear interrupt and message state*/
Nick Chengae52e7f2010-06-18 15:39:12 +08002781 writel(ARCMSR_MESSAGE_INT_CLEAR_PATTERN, reg->iop2drv_doorbell);
2782 writel(ARCMSR_DRV2IOP_DATA_READ_OK, reg->drv2iop_doorbell);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002783 /* let IOP know data has been read */
2784 }
2785 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002786 case ACB_ADAPTER_TYPE_C: {
2787 struct MessageUnit_C *reg = (struct MessageUnit_C *)acb->pmuC;
2788 uint32_t outbound_doorbell;
2789 /* empty doorbell Qbuffer if door bell ringed */
2790 outbound_doorbell = readl(&reg->outbound_doorbell);
2791 writel(outbound_doorbell, &reg->outbound_doorbell_clear);
2792 writel(ARCMSR_HBCMU_DRV2IOP_DATA_READ_OK, &reg->inbound_doorbell);
2793 }
Nick Cheng1a4f5502007-09-13 17:26:40 +08002794 }
2795}
Erich Chen1c57e862006-07-12 08:59:32 -07002796
Nick Cheng76d78302008-02-04 23:53:24 -08002797static void arcmsr_enable_eoi_mode(struct AdapterControlBlock *acb)
2798{
2799 switch (acb->adapter_type) {
2800 case ACB_ADAPTER_TYPE_A:
2801 return;
2802 case ACB_ADAPTER_TYPE_B:
2803 {
2804 struct MessageUnit_B *reg = acb->pmuB;
Nick Chengae52e7f2010-06-18 15:39:12 +08002805 writel(ARCMSR_MESSAGE_ACTIVE_EOI_MODE, reg->drv2iop_doorbell);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002806 if (!arcmsr_hbb_wait_msgint_ready(acb)) {
Nick Cheng76d78302008-02-04 23:53:24 -08002807 printk(KERN_NOTICE "ARCMSR IOP enables EOI_MODE TIMEOUT");
2808 return;
2809 }
2810 }
2811 break;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002812 case ACB_ADAPTER_TYPE_C:
2813 return;
Nick Cheng76d78302008-02-04 23:53:24 -08002814 }
2815 return;
2816}
2817
Nick Cheng36b83de2010-05-17 11:22:42 +08002818static void arcmsr_hardware_reset(struct AdapterControlBlock *acb)
2819{
2820 uint8_t value[64];
Nick Chengcdd3cb12010-07-13 20:03:04 +08002821 int i, count = 0;
2822 struct MessageUnit_A __iomem *pmuA = acb->pmuA;
2823 struct MessageUnit_C __iomem *pmuC = acb->pmuC;
Dan Carpenter6ad819b2012-06-09 12:10:19 +03002824
Nick Cheng36b83de2010-05-17 11:22:42 +08002825 /* backup pci config data */
Nick Chengcdd3cb12010-07-13 20:03:04 +08002826 printk(KERN_NOTICE "arcmsr%d: executing hw bus reset .....\n", acb->host->host_no);
Nick Cheng36b83de2010-05-17 11:22:42 +08002827 for (i = 0; i < 64; i++) {
2828 pci_read_config_byte(acb->pdev, i, &value[i]);
2829 }
2830 /* hardware reset signal */
Nick Chengae52e7f2010-06-18 15:39:12 +08002831 if ((acb->dev_id == 0x1680)) {
Nick Chengcdd3cb12010-07-13 20:03:04 +08002832 writel(ARCMSR_ARC1680_BUS_RESET, &pmuA->reserved1[0]);
2833 } else if ((acb->dev_id == 0x1880)) {
2834 do {
2835 count++;
2836 writel(0xF, &pmuC->write_sequence);
2837 writel(0x4, &pmuC->write_sequence);
2838 writel(0xB, &pmuC->write_sequence);
2839 writel(0x2, &pmuC->write_sequence);
2840 writel(0x7, &pmuC->write_sequence);
2841 writel(0xD, &pmuC->write_sequence);
Dan Carpenter6ad819b2012-06-09 12:10:19 +03002842 } while (((readl(&pmuC->host_diagnostic) & ARCMSR_ARC1880_DiagWrite_ENABLE) == 0) && (count < 5));
Nick Chengcdd3cb12010-07-13 20:03:04 +08002843 writel(ARCMSR_ARC1880_RESET_ADAPTER, &pmuC->host_diagnostic);
Nick Chengae52e7f2010-06-18 15:39:12 +08002844 } else {
Nick Chengcdd3cb12010-07-13 20:03:04 +08002845 pci_write_config_byte(acb->pdev, 0x84, 0x20);
Nick Chengae52e7f2010-06-18 15:39:12 +08002846 }
Nick Chengcdd3cb12010-07-13 20:03:04 +08002847 msleep(2000);
Nick Cheng36b83de2010-05-17 11:22:42 +08002848 /* write back pci config data */
2849 for (i = 0; i < 64; i++) {
2850 pci_write_config_byte(acb->pdev, i, value[i]);
2851 }
2852 msleep(1000);
2853 return;
2854}
Erich Chen1c57e862006-07-12 08:59:32 -07002855static void arcmsr_iop_init(struct AdapterControlBlock *acb)
2856{
Nick Cheng1a4f5502007-09-13 17:26:40 +08002857 uint32_t intmask_org;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002858 /* disable all outbound interrupt */
2859 intmask_org = arcmsr_disable_outbound_ints(acb);
Nick Cheng76d78302008-02-04 23:53:24 -08002860 arcmsr_wait_firmware_ready(acb);
2861 arcmsr_iop_confirm(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002862 /*start background rebuild*/
2863 arcmsr_start_adapter_bgrb(acb);
2864 /* empty doorbell Qbuffer if door bell ringed */
2865 arcmsr_clear_doorbell_queue_buffer(acb);
Nick Cheng76d78302008-02-04 23:53:24 -08002866 arcmsr_enable_eoi_mode(acb);
Nick Cheng1a4f5502007-09-13 17:26:40 +08002867 /* enable outbound Post Queue,outbound doorbell Interrupt */
2868 arcmsr_enable_outbound_ints(acb, intmask_org);
Erich Chen1c57e862006-07-12 08:59:32 -07002869 acb->acb_flags |= ACB_F_IOP_INITED;
2870}
2871
Nick Cheng36b83de2010-05-17 11:22:42 +08002872static uint8_t arcmsr_iop_reset(struct AdapterControlBlock *acb)
Erich Chen1c57e862006-07-12 08:59:32 -07002873{
Erich Chen1c57e862006-07-12 08:59:32 -07002874 struct CommandControlBlock *ccb;
2875 uint32_t intmask_org;
Nick Cheng36b83de2010-05-17 11:22:42 +08002876 uint8_t rtnval = 0x00;
Erich Chen1c57e862006-07-12 08:59:32 -07002877 int i = 0;
NickCheng97b99122011-01-06 17:32:41 +08002878 unsigned long flags;
2879
Erich Chen1c57e862006-07-12 08:59:32 -07002880 if (atomic_read(&acb->ccboutstandingcount) != 0) {
Erich Chen1c57e862006-07-12 08:59:32 -07002881 /* disable all outbound interrupt */
2882 intmask_org = arcmsr_disable_outbound_ints(acb);
Nick Cheng36b83de2010-05-17 11:22:42 +08002883 /* talk to iop 331 outstanding command aborted */
2884 rtnval = arcmsr_abort_allcmd(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07002885 /* clear all outbound posted Q */
Nick Cheng1a4f5502007-09-13 17:26:40 +08002886 arcmsr_done4abort_postqueue(acb);
Erich Chen1c57e862006-07-12 08:59:32 -07002887 for (i = 0; i < ARCMSR_MAX_FREECCB_NUM; i++) {
2888 ccb = acb->pccb_pool[i];
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08002889 if (ccb->startdone == ARCMSR_CCB_START) {
NickCheng97b99122011-01-06 17:32:41 +08002890 scsi_dma_unmap(ccb->pcmd);
2891 ccb->startdone = ARCMSR_CCB_DONE;
2892 ccb->ccb_flags = 0;
2893 spin_lock_irqsave(&acb->ccblist_lock, flags);
2894 list_add_tail(&ccb->list, &acb->ccb_free_list);
2895 spin_unlock_irqrestore(&acb->ccblist_lock, flags);
Erich Chen1c57e862006-07-12 08:59:32 -07002896 }
2897 }
Nick Cheng36b83de2010-05-17 11:22:42 +08002898 atomic_set(&acb->ccboutstandingcount, 0);
Erich Chen1c57e862006-07-12 08:59:32 -07002899 /* enable all outbound interrupt */
2900 arcmsr_enable_outbound_ints(acb, intmask_org);
Nick Cheng36b83de2010-05-17 11:22:42 +08002901 return rtnval;
Erich Chen1c57e862006-07-12 08:59:32 -07002902 }
Nick Cheng36b83de2010-05-17 11:22:42 +08002903 return rtnval;
Erich Chen1c57e862006-07-12 08:59:32 -07002904}
2905
2906static int arcmsr_bus_reset(struct scsi_cmnd *cmd)
2907{
NickCheng97b99122011-01-06 17:32:41 +08002908 struct AdapterControlBlock *acb;
Nick Chengae52e7f2010-06-18 15:39:12 +08002909 uint32_t intmask_org, outbound_doorbell;
2910 int retry_count = 0;
2911 int rtn = FAILED;
Nick Chengae52e7f2010-06-18 15:39:12 +08002912 acb = (struct AdapterControlBlock *) cmd->device->host->hostdata;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002913 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 +08002914 acb->num_resets++;
Nick Cheng36b83de2010-05-17 11:22:42 +08002915
Nick Chengcdd3cb12010-07-13 20:03:04 +08002916 switch(acb->adapter_type){
2917 case ACB_ADAPTER_TYPE_A:{
2918 if (acb->acb_flags & ACB_F_BUS_RESET){
Nick Chengae52e7f2010-06-18 15:39:12 +08002919 long timeout;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002920 printk(KERN_ERR "arcmsr: there is an bus reset eh proceeding.......\n");
2921 timeout = wait_event_timeout(wait_q, (acb->acb_flags & ACB_F_BUS_RESET) == 0, 220*HZ);
Nick Chengae52e7f2010-06-18 15:39:12 +08002922 if (timeout) {
2923 return SUCCESS;
2924 }
2925 }
2926 acb->acb_flags |= ACB_F_BUS_RESET;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002927 if (!arcmsr_iop_reset(acb)) {
Nick Chengae52e7f2010-06-18 15:39:12 +08002928 struct MessageUnit_A __iomem *reg;
2929 reg = acb->pmuA;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002930 arcmsr_hardware_reset(acb);
2931 acb->acb_flags &= ~ACB_F_IOP_INITED;
Nick Cheng36b83de2010-05-17 11:22:42 +08002932sleep_again:
Tomas Henzl8b7eb862011-04-29 16:28:24 +02002933 ssleep(ARCMSR_SLEEPTIME);
Nick Chengae52e7f2010-06-18 15:39:12 +08002934 if ((readl(&reg->outbound_msgaddr1) & ARCMSR_OUTBOUND_MESG1_FIRMWARE_OK) == 0) {
Tomas Henzl8b7eb862011-04-29 16:28:24 +02002935 printk(KERN_ERR "arcmsr%d: waiting for hw bus reset return, retry=%d\n", acb->host->host_no, retry_count);
2936 if (retry_count > ARCMSR_RETRYCOUNT) {
Nick Chengae52e7f2010-06-18 15:39:12 +08002937 acb->fw_flag = FW_DEADLOCK;
Tomas Henzl8b7eb862011-04-29 16:28:24 +02002938 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 +08002939 return FAILED;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002940 }
2941 retry_count++;
2942 goto sleep_again;
2943 }
2944 acb->acb_flags |= ACB_F_IOP_INITED;
2945 /* disable all outbound interrupt */
2946 intmask_org = arcmsr_disable_outbound_ints(acb);
Nick Chengae52e7f2010-06-18 15:39:12 +08002947 arcmsr_get_firmware_spec(acb);
Nick Chengcdd3cb12010-07-13 20:03:04 +08002948 arcmsr_start_adapter_bgrb(acb);
2949 /* clear Qbuffer if door bell ringed */
2950 outbound_doorbell = readl(&reg->outbound_doorbell);
2951 writel(outbound_doorbell, &reg->outbound_doorbell); /*clear interrupt */
2952 writel(ARCMSR_INBOUND_DRIVER_DATA_READ_OK, &reg->inbound_doorbell);
2953 /* enable outbound Post Queue,outbound doorbell Interrupt */
2954 arcmsr_enable_outbound_ints(acb, intmask_org);
2955 atomic_set(&acb->rq_map_token, 16);
Nick Chengae52e7f2010-06-18 15:39:12 +08002956 atomic_set(&acb->ante_token_value, 16);
2957 acb->fw_flag = FW_NORMAL;
NickCheng97b99122011-01-06 17:32:41 +08002958 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
Nick Chengae52e7f2010-06-18 15:39:12 +08002959 acb->acb_flags &= ~ACB_F_BUS_RESET;
2960 rtn = SUCCESS;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002961 printk(KERN_ERR "arcmsr: scsi bus reset eh returns with success\n");
Nick Chengae52e7f2010-06-18 15:39:12 +08002962 } else {
2963 acb->acb_flags &= ~ACB_F_BUS_RESET;
NickCheng97b99122011-01-06 17:32:41 +08002964 atomic_set(&acb->rq_map_token, 16);
2965 atomic_set(&acb->ante_token_value, 16);
2966 acb->fw_flag = FW_NORMAL;
2967 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6*HZ));
Nick Chengae52e7f2010-06-18 15:39:12 +08002968 rtn = SUCCESS;
Nick Chengcdd3cb12010-07-13 20:03:04 +08002969 }
2970 break;
2971 }
2972 case ACB_ADAPTER_TYPE_B:{
2973 acb->acb_flags |= ACB_F_BUS_RESET;
2974 if (!arcmsr_iop_reset(acb)) {
2975 acb->acb_flags &= ~ACB_F_BUS_RESET;
2976 rtn = FAILED;
2977 } else {
2978 acb->acb_flags &= ~ACB_F_BUS_RESET;
NickCheng97b99122011-01-06 17:32:41 +08002979 atomic_set(&acb->rq_map_token, 16);
2980 atomic_set(&acb->ante_token_value, 16);
2981 acb->fw_flag = FW_NORMAL;
2982 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
Nick Chengcdd3cb12010-07-13 20:03:04 +08002983 rtn = SUCCESS;
2984 }
2985 break;
2986 }
2987 case ACB_ADAPTER_TYPE_C:{
2988 if (acb->acb_flags & ACB_F_BUS_RESET) {
2989 long timeout;
2990 printk(KERN_ERR "arcmsr: there is an bus reset eh proceeding.......\n");
2991 timeout = wait_event_timeout(wait_q, (acb->acb_flags & ACB_F_BUS_RESET) == 0, 220*HZ);
2992 if (timeout) {
2993 return SUCCESS;
2994 }
2995 }
2996 acb->acb_flags |= ACB_F_BUS_RESET;
2997 if (!arcmsr_iop_reset(acb)) {
2998 struct MessageUnit_C __iomem *reg;
2999 reg = acb->pmuC;
3000 arcmsr_hardware_reset(acb);
3001 acb->acb_flags &= ~ACB_F_IOP_INITED;
3002sleep:
Tomas Henzl8b7eb862011-04-29 16:28:24 +02003003 ssleep(ARCMSR_SLEEPTIME);
Nick Chengcdd3cb12010-07-13 20:03:04 +08003004 if ((readl(&reg->host_diagnostic) & 0x04) != 0) {
Tomas Henzl8b7eb862011-04-29 16:28:24 +02003005 printk(KERN_ERR "arcmsr%d: waiting for hw bus reset return, retry=%d\n", acb->host->host_no, retry_count);
3006 if (retry_count > ARCMSR_RETRYCOUNT) {
Nick Chengcdd3cb12010-07-13 20:03:04 +08003007 acb->fw_flag = FW_DEADLOCK;
Tomas Henzl8b7eb862011-04-29 16:28:24 +02003008 printk(KERN_ERR "arcmsr%d: waiting for hw bus reset return, RETRY TERMINATED!!\n", acb->host->host_no);
Nick Chengcdd3cb12010-07-13 20:03:04 +08003009 return FAILED;
3010 }
3011 retry_count++;
3012 goto sleep;
3013 }
3014 acb->acb_flags |= ACB_F_IOP_INITED;
3015 /* disable all outbound interrupt */
3016 intmask_org = arcmsr_disable_outbound_ints(acb);
3017 arcmsr_get_firmware_spec(acb);
3018 arcmsr_start_adapter_bgrb(acb);
3019 /* clear Qbuffer if door bell ringed */
3020 outbound_doorbell = readl(&reg->outbound_doorbell);
3021 writel(outbound_doorbell, &reg->outbound_doorbell_clear); /*clear interrupt */
3022 writel(ARCMSR_HBCMU_DRV2IOP_DATA_READ_OK, &reg->inbound_doorbell);
3023 /* enable outbound Post Queue,outbound doorbell Interrupt */
3024 arcmsr_enable_outbound_ints(acb, intmask_org);
3025 atomic_set(&acb->rq_map_token, 16);
3026 atomic_set(&acb->ante_token_value, 16);
3027 acb->fw_flag = FW_NORMAL;
NickCheng97b99122011-01-06 17:32:41 +08003028 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6 * HZ));
Nick Chengcdd3cb12010-07-13 20:03:04 +08003029 acb->acb_flags &= ~ACB_F_BUS_RESET;
3030 rtn = SUCCESS;
3031 printk(KERN_ERR "arcmsr: scsi bus reset eh returns with success\n");
3032 } else {
3033 acb->acb_flags &= ~ACB_F_BUS_RESET;
NickCheng97b99122011-01-06 17:32:41 +08003034 atomic_set(&acb->rq_map_token, 16);
3035 atomic_set(&acb->ante_token_value, 16);
3036 acb->fw_flag = FW_NORMAL;
3037 mod_timer(&acb->eternal_timer, jiffies + msecs_to_jiffies(6*HZ));
Nick Chengcdd3cb12010-07-13 20:03:04 +08003038 rtn = SUCCESS;
3039 }
3040 break;
Nick Chengae52e7f2010-06-18 15:39:12 +08003041 }
3042 }
3043 return rtn;
Erich Chen1c57e862006-07-12 08:59:32 -07003044}
3045
Nick Chengae52e7f2010-06-18 15:39:12 +08003046static int arcmsr_abort_one_cmd(struct AdapterControlBlock *acb,
Erich Chen1c57e862006-07-12 08:59:32 -07003047 struct CommandControlBlock *ccb)
3048{
Nick Chengae52e7f2010-06-18 15:39:12 +08003049 int rtn;
Nick Chengae52e7f2010-06-18 15:39:12 +08003050 rtn = arcmsr_polling_ccbdone(acb, ccb);
Nick Chengae52e7f2010-06-18 15:39:12 +08003051 return rtn;
Erich Chen1c57e862006-07-12 08:59:32 -07003052}
3053
3054static int arcmsr_abort(struct scsi_cmnd *cmd)
3055{
3056 struct AdapterControlBlock *acb =
3057 (struct AdapterControlBlock *)cmd->device->host->hostdata;
3058 int i = 0;
Nick Chengae52e7f2010-06-18 15:39:12 +08003059 int rtn = FAILED;
Erich Chen1c57e862006-07-12 08:59:32 -07003060 printk(KERN_NOTICE
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08003061 "arcmsr%d: abort device command of scsi id = %d lun = %d \n",
Erich Chen1c57e862006-07-12 08:59:32 -07003062 acb->host->host_no, cmd->device->id, cmd->device->lun);
Nick Chengae52e7f2010-06-18 15:39:12 +08003063 acb->acb_flags |= ACB_F_ABORT;
Erich Chen1c57e862006-07-12 08:59:32 -07003064 acb->num_aborts++;
Erich Chen1c57e862006-07-12 08:59:32 -07003065 /*
3066 ************************************************
3067 ** the all interrupt service routine is locked
3068 ** we need to handle it as soon as possible and exit
3069 ************************************************
3070 */
3071 if (!atomic_read(&acb->ccboutstandingcount))
Nick Chengae52e7f2010-06-18 15:39:12 +08003072 return rtn;
Erich Chen1c57e862006-07-12 08:59:32 -07003073
3074 for (i = 0; i < ARCMSR_MAX_FREECCB_NUM; i++) {
3075 struct CommandControlBlock *ccb = acb->pccb_pool[i];
3076 if (ccb->startdone == ARCMSR_CCB_START && ccb->pcmd == cmd) {
Nick Chengae52e7f2010-06-18 15:39:12 +08003077 ccb->startdone = ARCMSR_CCB_ABORTED;
3078 rtn = arcmsr_abort_one_cmd(acb, ccb);
Erich Chen1c57e862006-07-12 08:59:32 -07003079 break;
3080 }
3081 }
Nick Chengae52e7f2010-06-18 15:39:12 +08003082 acb->acb_flags &= ~ACB_F_ABORT;
3083 return rtn;
Erich Chen1c57e862006-07-12 08:59:32 -07003084}
3085
3086static const char *arcmsr_info(struct Scsi_Host *host)
3087{
3088 struct AdapterControlBlock *acb =
3089 (struct AdapterControlBlock *) host->hostdata;
3090 static char buf[256];
3091 char *type;
3092 int raid6 = 1;
Erich Chen1c57e862006-07-12 08:59:32 -07003093 switch (acb->pdev->device) {
3094 case PCI_DEVICE_ID_ARECA_1110:
Nick Cheng1a4f5502007-09-13 17:26:40 +08003095 case PCI_DEVICE_ID_ARECA_1200:
3096 case PCI_DEVICE_ID_ARECA_1202:
Erich Chen1c57e862006-07-12 08:59:32 -07003097 case PCI_DEVICE_ID_ARECA_1210:
3098 raid6 = 0;
3099 /*FALLTHRU*/
3100 case PCI_DEVICE_ID_ARECA_1120:
3101 case PCI_DEVICE_ID_ARECA_1130:
3102 case PCI_DEVICE_ID_ARECA_1160:
3103 case PCI_DEVICE_ID_ARECA_1170:
Nick Cheng1a4f5502007-09-13 17:26:40 +08003104 case PCI_DEVICE_ID_ARECA_1201:
Erich Chen1c57e862006-07-12 08:59:32 -07003105 case PCI_DEVICE_ID_ARECA_1220:
3106 case PCI_DEVICE_ID_ARECA_1230:
3107 case PCI_DEVICE_ID_ARECA_1260:
3108 case PCI_DEVICE_ID_ARECA_1270:
3109 case PCI_DEVICE_ID_ARECA_1280:
3110 type = "SATA";
3111 break;
3112 case PCI_DEVICE_ID_ARECA_1380:
3113 case PCI_DEVICE_ID_ARECA_1381:
3114 case PCI_DEVICE_ID_ARECA_1680:
3115 case PCI_DEVICE_ID_ARECA_1681:
Nick Chengcdd3cb12010-07-13 20:03:04 +08003116 case PCI_DEVICE_ID_ARECA_1880:
Erich Chen1c57e862006-07-12 08:59:32 -07003117 type = "SAS";
3118 break;
3119 default:
3120 type = "X-TYPE";
3121 break;
3122 }
nickcheng(鄭守謙a1f6e022007-06-15 11:43:32 +08003123 sprintf(buf, "Areca %s Host Adapter RAID Controller%s\n %s",
Erich Chen1c57e862006-07-12 08:59:32 -07003124 type, raid6 ? "( RAID6 capable)" : "",
3125 ARCMSR_DRIVER_VERSION);
3126 return buf;
3127}